﻿/*

	Author       : themesvila.
	Template Name: Logic - Material Design Agency Template
	Version      : 1.0

*/
/*=============================================================
    CSS INDEX
    =============================
    01. Typography
    02. Preloader
    03. Section Title
    04. Menu
    05. Slider
    06. About
    07. Services
    08. Work
    09. Team
    10. Skill
    11. Video
    12. Pricing
    13. Testmonial
    14. Counter
    15. Blog
    16. Client
    17. Contact
    18. Footer

  =============================================================*/


/* Typography */

body {
	font-family: 'Comfortaa', sans-serif;
	font-weight: 400;
	color: #23262e;
	font-size: 15px;
	line-height: 26px;
	min-width: 450px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Comfortaa', sans-serif;
	color:#222;
	margin-top: 0px;
	margin-bottom:20px;
	font-weight: 600;
	line-height: normal;
}
p {
	margin-bottom: 24px;
}

img {
    max-width: 100%;
    height: auto
}
a {
    transition: all 0.3s ease 0s;
    text-decoration: none;
}

a{
	color:#0F96E2;
    transition: .5s;
}

a:hover,
a:active {
	color:#888;
	outline: 0 none;
	text-decoration: none;
}

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0
}



/* Preloader*/

.preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.status-mes {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    font-size: 10px;
    text-indent: -12345px;
    z-index: 10000;
}


.loader{
    width: 50px;
    height: 50px;
    -webkit-animation: loading-1 2s infinite ease-in-out;
    animation: loading-1 2s infinite ease-in-out;
}
.loader .loader-inner{
    width: 0px;
    height: 0px;
    border-style: solid;
    position: absolute;
    top: 0;
    left: 0;
}
.loader .loader-inner:nth-child(1){
    -webkit-animation: loading-2 2s ease-in-out infinite;
    animation: loading-2 2s ease-in-out infinite;
	top: 10px;
	border-width: 30px 0px 0px 50px;
	border-color: transparent transparent transparent #23262e;
}
.loader .loader-inner:nth-child(2){
    -webkit-animation: loading-3 2s ease-in-out infinite;
    animation: loading-3 2s ease-in-out infinite;
	top: 10px;
	border-width: 0px 50px 30px 0px;
	border-color: transparent #23262e transparent transparent;
}
.loader .loader-inner:nth-child(3){
    -webkit-animation: loading-4 2s ease-in-out infinite;
    animation: loading-4 2s ease-in-out infinite;
	left: 10px;
	border-width: 50px 30px 0px 0px;
	border-color: #23262e transparent transparent transparent;
}
.loader .loader-inner:nth-child(4){
    -webkit-animation: loading-5 2s ease-in-out infinite;
    animation: loading-5 2s ease-in-out infinite;
	left: 10px;
	border-width: 0px 0px 50px 30px;
	border-color: transparent transparent #23262e transparent;
}

@-webkit-keyframes loading-1{
    0%{
        transform:rotate(0deg);
    }
    50%{
        transform:rotate(-90deg);
    }
    100%{
        transform:rotate(-180deg);
    }
}
@keyframes loading-1{
    0%{
        transform:rotate(0deg);
    }
    50%{
        transform:rotate(-90deg);
    }
    100%{
        transform:rotate(-180deg);
    }
}
@-webkit-keyframes loading-2{
    0%{
        transform:translate(0);
    }
    50%{
        transform:translate(-50px, 0);
		border-color: transparent transparent transparent #80B71B;
    }
    100%{
        transform:translate(0);
    }
}
@keyframes loading-2{
    0%{
        transform:translate(0);
    }
    50%{
        transform:translate(-50px, 0);
		border-color: transparent transparent transparent #80B71B;
    }
    100%{
        transform:translate(0);
    }
}
@-webkit-keyframes loading-3{
    0%{
        transform:translate(0);
    }
    50%{
        transform:translate(50px, 0);
		border-color: transparent #E42A18 transparent transparent;
    }
    100%{
        transform:translate(0);
    }
}
@keyframes loading-3{
    0%{
        transform:translate(0);
    }
    50%{
        transform:translate(50px, 0);
		border-color: transparent #E42A18 transparent transparent;
    }
    100%{
        transform:translate(0);
    }
}
@-webkit-keyframes loading-4{
    0%{
        transform: translate(0);
    }
    50%{
        transform: translate(0, -50px);
		border-color: #007797 transparent transparent transparent;
    }
    100%{
        transform:translate(0);
    }
}
@keyframes loading-4{
    0%{
        transform: translate(0);
    }
    50%{
        transform: translate(0, -50px);
		border-color: #007797 transparent transparent transparent;
    }
    100%{
        transform:translate(0);
    }
}
@-webkit-keyframes loading-5{
    0%{
        transform:translate(0);
    }
    50%{
        transform:translate(0, 50px);
		border-color: transparent transparent #A1AFAC transparent;
    }
    100%{
        transform:translate(0);
    }
}
@keyframes loading-5{
    0%{
        transform:translate(0);
    }
    50%{
        transform:translate(0, 50px);
		border-color: transparent transparent #A1AFAC transparent;
    }
    100%{
        transform:translate(0);
    }
}

/*----- Icon -----*/
.ico-spin {
  -webkit-animation: ico-spin 2s infinite linear;
  animation: ico-spin 2s infinite linear;
}
@-webkit-keyframes ico-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes ico-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.btn_close_box i{
    float: right;
    margin-left: 2px;
    margin-top: -2px;
    font-size: 18px;
}

/*----- Section Title -----*/

.section_title{
	margin: 50px 0px;
}
.section_title h1 {
	position: relative;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 25px;
	margin-top: 20px;
	margin-bottom: 15px;
	font-family: 'Comfortaa', sans-serif;
}
.white_title,
.white_title h1{
	color: #fff;
}
.title_border{
	border: 1px solid #0F96E2;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	margin:  auto;
	position: relative;
	margin-top: 50px;
}
.title_border:before{
	position: absolute;
	content: '';
	height: 20px;
	width: 1px;
	background: #0F96E2;
	bottom: 12px;
	left: 3px
}
.section_title p {
	margin: 40px 0px;
}
.section_padding{
	padding: 60px 0px;
}

/*----- Shadowbox -----*/

#loading-div-modal {
	position: absolute;
	background-color: #fff;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0.8;
	filter: Alpha(opacity=80); /* IE8 and earlier */
}
#loading-div-modal div{
	text-align: center;
	margin-top: 75px;
}
#loading-div-modal div img{
	width: 100px;
}
.modal-body form input{
	height: 30px;
	padding: 0px 6px;
	margin-bottom: 10px;
}
.modal-body form select{
    height: 30px;
	padding: 0px 6px;
	margin-bottom: 10px;
}
.modal-body form i{
    font-size: 16px !important; 
    position: absolute;
    margin-top: 4px;	
}
.modal-body .left-ico {
	float: left;
	margin: -5px 5px 0px 0px;
	font-size: 31px;
	cursor: default;
}
.modal-body .right-ico {
    float: right;
    margin: -8px 5px 0px 0px;
    font-size: 37px;
    cursor: pointer;
    opacity: 0.5;
    filter: Alpha(opacity=50); /* IE8 and earlier */
}
.modal-body .right-wrt {
    float: right;
    margin: -8px 5px 0px 0px;
    font-size: 25px;
    cursor: default;
}
.modal-body .right-ico:hover{
    opacity: 1;
    filter: Alpha(opacity=100); /* IE8 and earlier */
}
.modal-body .menu-ico{
	height: 105px;
    text-align: center;
    opacity: 0.5;
    filter: Alpha(opacity=50); /* IE8 and earlier */
}
.modal-body .menu-ico:hover{
    opacity: 1;
    filter: Alpha(opacity=100); /* IE8 and earlier */
}
.modal-body .menu-ico i{
    font-size: 70px;
    cursor: pointer;
}
.modal-body .menu-ico div{
	font-size: 11px;
    line-height: 18px;
	cursor: default;
}
.modal-body .menu-ico span{
    position: absolute;
    font-size: 45px;
    margin-top: 20px;
    font-family: arial;
    font-weight: 700;
    cursor: pointer;
}
.modal-body .main_error_msg{
    position: fixed;
    margin-top: -40px;
}
.modal-body .line {
	margin: 5px -15px;
	border-bottom: 1px solid #e5e5e5;
}
.modal-body .confirm{
    position: absolute;
    padding: 25% 10px 10px 10px;
    text-align: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1;
    margin: -15px;
    border-radius: 5px 5px 0 0;
}
.modal-body .justify{
    text-align: justify;
	padding: 10px;
}
.modal-body .title{
	font-size: 15px;
	font-weight: 800;
}
.modal-body .list{
	margin-bottom: 24px;
}
.modal-body .list .title{
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: 800;
}
.modal-body .list .points{
	padding: 0px 10px 0px 20px;
}
.modal-footer .btn_close{
	font-size: 11px;
	padding: 2px 2px 1px 4px;
	font-weight: 800;
}
.modal-footer .btn_close i{
	float: right;
	margin-left: 2px;
	margin-top: -2px;
	font-size: 18px;
}
.modal-body .lock {
	width: 100%;
    height: 30px;
    background-color: #ebebe4;
    border: 1px solid darkgrey;
    cursor: default;
}
.modal-body .disabled {
	opacity: 0.5;
	filter: Alpha(opacity=50);
	cursor: default !important;
}
.modal-body .search_result {
    position: absolute;
    background-color: #fff;
    z-index: 1;
    margin-top: -9px;
    font-size: 13px;
}
.modal-body .search_result .items_search{
    border: 1px solid darkgrey;
    padding: 4px 10px 0px;
	cursor: pointer;
}
.modal-body .search_result .btn_search{
    text-align: center;
    background-color: darkgrey;
    color: #fff;
}
.modal-body #active_list .btn_add{
	float: left;
	margin: -5px 5px 0px 0px;
	font-size: 31px;
    cursor: pointer;
    opacity: 0.5;
    filter: Alpha(opacity=50); /* IE8 and earlier */
}
.modal-body #active_list .btn_add:hover{
    opacity: 1;
    filter: Alpha(opacity=100); /* IE8 and earlier */
}
.modal-body #active_list .line{
    margin-left: 0px;
	margin-right: 0px;
}
.modal-body #active_list .details{
	margin-top: 5px;
    font-size: 12px;
	line-height: 17px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.modal-body #active_list .list_point{
	padding: 5px 10px;
	min-height: 70px;
	margin-bottom: 5px;
	background-color: #ececec;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.modal-body #active_list .list_point div{
	font-size: 12px;
	line-height: 17px;
	cursor: default;
}
.modal-body #active_list .list_point div div{
	font-size: 10px;
    line-height: 16px;
	padding: 0px;
}
.modal-body #active_list .list_point .radio{
	width: 20px;
	cursor: pointer;
	margin-top: 11px;
}
.modal-body #active_list .info_extra {
	background-color: #23262e;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 17px;
	text-align: center;
	border: 5px solid #ececec;
}
.modal-body #active_list .list_point_act{
	padding: 5px 10px;
	min-height: 70px;
	margin-bottom: 5px;
	background-color: #ececec;
	cursor: pointer;
}
.modal-body #active_list .list_point_act div{
	font-size: 12px;
	line-height: 17px;
}
.modal-body #active_list .list_point_act:hover{
	background-color: #23262e;
	color: #fff;
}
.modal-body #active_list .list_warning{
	background-color: #ffdada;
	cursor: pointer;
}
.modal-body #active_list .list_warning:hover{
	background-color: red;
	color: #fff;
}
.modal-body #active_list .check_list{
	padding: 10px 10px 0px 10px;
}
.modal-body #active_list .check_list input{
    height: 12px;
    margin-bottom: 0px;
	cursor: pointer;
}
.modal-body #active_list .list_point_slim{
	padding: 4px 10px 7px;
    background-color: #cccccc;
    color: #23262e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	cursor: default;
}
.modal-body #active_list .line{
	border-top: 1px solid #fff;
	margin-top: -4px;
	margin-bottom: 0px;
}
.modal-body #active_list .list_point_slim div{
	font-size: 12px;
	line-height: 14px;
}
.modal-body #active_list .list_point_slim .button{
	display: inline;
    text-align: center;
    font-size: 11px;
    color: #fff;
    padding: 4px 8px 3px;
    background-color: #23262e;
}
.modal-body #active_list .list_point_slim .button_ico{
	float: right;
    text-align: center;
    font-size: 11px;
    color: #23262e;
    padding: 0px;
	cursor: pointer;
}
.modal-body #active_list .list_point_slim .button_ico i{
    float: left;
}
.modal-body #active_list .list_point_slim .button_ico i:hover{
    color: #0F96E2;
}
.modal-body #active_list .list_point_slim div div{
	font-size: 8px;
    line-height: 16px;
	padding: 0px;
}
.modal-body #active_list .mini_btn{
	display: initial;
	font-size: 8px !important;
	padding: 3px 5px 1px !important;
	background-color: #23262e !important;
	color: #fff;
	cursor: pointer;
}
.modal-body #active_list .mini_btn:hover{
	background-color: #0F96E2 !important;
}
.modal-body #active_list .sub_list_dark{
	min-height: 0px;
	margin-bottom: 0px;
	border-top: 1px solid #fff;
	background-color: #ececec;
	color: #23262e;
}
.order_status{
	width: 13px;
    height: 13px;
    margin: 0 auto;
    margin-top: 1px;
}
.order_status_5{
	background-color: gray;
}
.order_status_99{
	border: 3px solid gray;
}
.order_status_50{
	border-bottom: 3px solid gray;
	margin-top: -4px;
}
.order_status_10{
	background-color: red;
}
.order_status_15{
	background-color: orange;
}
.order_status_16{
	background-color: orange;
}
.order_status_20{
	background-color: green;
}

/*----- Personalizzazione -----*/

				.divBtnAnnulla{
					background-color: #F10381;
					height: 38px;
					position: absolute;
					bottom:0px;
					vertical-align: middle;
					font-size: 22px;
					width: inherit;
				}
				.arrowsButtonsDiv{
					height:100px;
					margin:0 auto !important;
				}
				.arrowsButtonsDiv div{
					text-align: center;
				}
				.arrowsButtonsDiv div i{
					font-size: 67px;
					line-height: 67px;
					cursor: pointer;
				}
				.creaCoverLink{
					font-size:38pt; 
					position: relative; 
					
				}		
				#canvas_fabric {
					margin: 0px auto;
					width: 252px;
					height: 439px;
					position: absolute;
					left: 0px;
					top: 10px;
					user-select: none;
				}			
				#scale {
					background-color: #ffffff;
					width: 612.283464558px;
					height: 1096.06299211px;
				}
				.btn_checked, .btn_checked:hover {
					color: black;
				}
				.cursor: pointer; {
					cursor: pointer;
				}						
				input[type='range'] {
					-webkit-appearance: none;
					width: 100%;
					height: 3px;
					border-radius: 5px;   
					background: #d3d3d3;
					outline: none;
					opacity: 0.7;
					-webkit-transition: .2s;
					transition: opacity .2s;
				}
				input[type='range']::-moz-range-track {
					-webkit-appearance: none;
					width: 100%;
					height: 3px;
					border-radius: 5px;   
					background: #d3d3d3;
					outline: none;
					opacity: 0.7;
					-webkit-transition: .2s;
					transition: opacity .2s;
				}
				input[type='range']::-webkit-slider-thumb {
					-webkit-appearance: none;
					appearance: none;
					width: 36px;
					height: 36px;
					border-radius: 50%; 
					background: #23262e;
					cursor: pointer;
					z-index: 100;
				}
				input[type='range']::-moz-range-thumb {
					width: 36px;
					height: 36px;
					border-radius: 50%;
					background: #23262e;
					cursor: pointer;
					z-index: 100;
				}							
				#loading-div-background {
					display: none;
					position: fixed;
					top: 0;
					left: 0;
					background: black;
					width: 100%;
					height: 100%;
				}
				@media screen and (min-width: 1281) {
					.creaCoverLink{
						top:40px;
					}
				}
				@media screen and (max-width: 1280) {
					.creaCoverLink{
						top:-10px;
					}
				}
				.popup_window{
					padding:15px;
					z-index:100;
					display:inline-block;
					overflow:hidden;
					width:auto
				}
				.popup_panel{
					padding:5px;
					display:inline-block;
					background:#fff;
					border:2px solid #ef2929;
					border-radius:5px!important
				}
				.btn_popup{
					display:inline-block;
					height:30px;
					padding:5px
				}
				.btn_font{
					font-size:70%
				}
				canvas{
					width:252.669291335;
					height:439.77836103179;
					border:none;
				}
				.panel-popup-main{
					position: absolute;
					z-index: 100;					
				}
				.panel-popup-settings{
					background-color: #23262e;
					border: 2px solid #23262e;
					padding: 5px;
				}
				#panel-popup-text div div div{
					width: 45px;
					height: 45px;
					background-color: #fff;
					margin: 0 auto;
					border-radius: 7px !important;
					margin-top: 15px;
					color: #23262e;
					text-align: center;
					line-height: 45px;
					font-size: 25px;
					cursor: pointer;
				}
				#panel-popup-color div div div{
					height: 50px;
					margin-bottom: 11px;
					cursor: pointer;
					border-radius: 7px !important;
				}
				#panel-popup-font div div div{
					background-color: #fff;
					text-align: center;
					cursor: pointer;
					border-radius: 4px !important;
					margin-bottom: 4px;
					padding: 4px 0px;
					white-space: nowrap;
					overflow: hidden;
					text-overflow: ellipsis;
				}
				#panel-popup-coverbackground-color div div div{
					height: 50px;
					margin-bottom: 11px;
					cursor: pointer;
					border-radius: 7px !important;
				}
				.panel-popup-coverbackground-btn{
					background-color: #fff;
					border-radius: 5px !important;
					color: #23262e;
					text-align: center;
					line-height: 23px;
					font-size: 16px;
					cursor: pointer;
					margin-top: 18px;
					padding: 19px 5px;
					font-weight: 700;
				}
				.panel-popup-close{
					background-color: #fff;
					border-radius: 5px !important;
					color: #23262e;
					font-size: 12px;
					cursor: pointer;
					float: right;
					padding: 2px 9px 0px;
					font-weight: 700;					
				}
				.panel-popup-arrow{
					margin: 0 auto;
					width: 0;
					height: 0;
					border-style: solid;
					border-width: 31px 31px 0 31px;
					border-color: #23262e transparent transparent transparent;"
				}
				.btn_delete_image{
					cursor: pointer;
					position: absolute;
					text-align: center;
					width: 6%;
					min-width: 28px;
					height: 28px;
					border-radius: 14px !important;
					color: #fff;
					background-color: #23262e;
					left: 70%;
					top: -5px;
				}
				.btn_upload_file{
					border: 2px solid #23262e;
					height: 64px;
					margin: 2px;
				}
				.btn_upload_file img{
					height:60px;
					width:100%;
					cursor:pointer;
				}
				.btn_upload_file textarea{
					cursor: pointer;
					color: #fff;
					height: 60px;
					width: 100%;
					resize: none;
					background-color: #23262e;
					border: 0px solid;
				}
				.image_check{
					display: none;
					position: absolute;
					text-align: center;
					width: 20px;
					height: 20px;
					color: #fff;
					top: 50px;
					border-radius: 10px !important;
					background-color: #23262e;
				}
				#btn_new_text i{
					font-size: 72px;
					line-height: 67px;
					cursor: pointer;
					color: #23262e;
				}
				#panel_popup_rotate {
					color: #23262e;
					margin-bottom: 50px;
				}
				#panel_popup_rotate div{
					height:18px;
					margin:0 auto !important;
				}
				#panel_popup_rotate .main-rotate{
					padding: 0px;
					text-align: center;
				}
				#panel_popup_rotate .main-rotate i{
					font-size: 23px;
					cursor: pointer;
				}
				#panel_popup_rotate .sub-rotate{
					line-height: 10px;
					cursor: pointer;
				}
				#panel_popup_rotate .sub-rotate i{
					font-size: 19px;
				}
				#slider_custom {
					float:left;
					width:100%;
					margin-top: 6px;
				}
				#panel_popup_zoom{
					clear:left;
					color: #23262e;
				}
				#panel_popup_zoom div{
					height: 55px;
					margin:0 auto;
				}
				#panel_popup_zoom .main-zoom{
					padding: 0px;
					text-align: center;
				}
				#panel_popup_zoom .main-zoom i{
					font-size: 23px;
				}
				#sliderzoom_custom {
					float:left;
					width:100%;
					margin-top: 6px;
				}
				#panel-text-font-settings-div {
					height: 100px;
					color: #23262e;
				}
				#panel-text-font-settings-div div{
					position:relative;
				}
				#panel-text-font-settings-div div div{
					text-align: center;
				}
				#panel-text-font-settings-div div div i{
					font-size: 67px;
					line-height: 67px;
					cursor: pointer;
				}	
				#set-color-btn_area{
					padding: 0px;
					cursor: pointer;
				}
				#set-color-btn_area div{
					text-align: center;
					font-size: 21px;
					padding: 14px 10px 8px;
					background-color: #23262e;
					color: #fff;
				}

/*----- Main Menu -----*/
.bundle_bar{
	background-color: #0f96e2;
	color: #fff;
	line-height: 56px;
	width: 100%;
	height: 50px;
	position: fixed;
	bottom: 0px;
	z-index: 9999;
	letter-spacing: 3px;
	cursor: default;
}
.bundle_bar i{
	font-size: 38px;
    float: right;
    margin: 7px 0 0 9px;
}
.bundle_bar i:hover{
	color: #23262e;
}
.bundle_border{
	border: 2px solid #0f96e2 !important;
    box-shadow: 0px 0px 15px #0f96e2 !important;
}
.bundle_prd_header{
	height: 30px;
	width: 100%;
	background-color: #0f96e2;
	color: #fff;
	text-align: center;
	line-height: 31px;
	letter-spacing: 3px;
	cursor: default;
	position: absolute;
    opacity: 0.6;
    filter: Alpha(opacity=60); /* IE8 and earlier */
}
.bundle_filter_cover{
    width: 100%;
    height: 100%;
    background-color: #ececec;
    position: absolute;
    z-index: 1;
    opacity: 0.5;
	filter: Alpha(opacity=50); /* IE8 and earlier */
}
.top-menu-area{
	position: fixed;
	width: 100%;
	height: 43px;
	background-color: #fff;
    z-index: 997;
	box-shadow: inset 2px 4px 6px rgba(0, 0, 0, 0.2);
}
.top-menu-row{
	max-width: 1170px;
    margin: 0 auto;
}
.top-menu-box{
	height: 35px;
    padding-top: 10px;
}
.login_obj{
	height: 27px;
	font-size: 12px;
    padding: 3px 10px 2px !important;
	float: right;
	margin-right: 10px;
}
.login_input{
	width: 34%;
	max-width: 150px;
}
.header_shw{
    position: fixed;
	width: 100%;
    height: 10px;
	margin-top: 50px;
    z-index: 998;
}
.header_shw_btm{
    -webkit-box-shadow: 0px -4px 5px 0px rgba(0,0,0,0.40);
	-moz-box-shadow: 0px -4px 5px 0px rgba(0,0,0,0.40);
	box-shadow: 0px -4px 5px 0px rgba(0,0,0,0.40);
}

/*----- Setting menu -----*/

#setting_menu {
	margin-top: 7px;
}
#setting_menu i{
    cursor: pointer;
    float: right;
    margin: 0 0 0 15px;
    color: #aba9a6;
}
#setting_menu .left{
    margin: 0 5px 0 0;
    float: left;
}
#setting_menu div{
    float: left;
    margin-top: 7px;
    max-width: 200px;
    cursor: default;
    margin-right: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	padding-right: 2px;
}
#setting_menu i:hover{
	color: #23262e;
}
.navbar-free-search{
	float: right !important;
    margin: 5px 10px 0px 14px !important;
}
.navbar-free-search input{
	width: 200px;
    height: 26px;
    font-size: 12px;
    padding: 2px 8px 0px;
}
.navbar-free-search div{
	position: absolute;
	margin-top: 0px !important;
    background: white;
    border: 1px solid #cccccc;
    width: 200px;
    font-size: 11px;
    line-height: 23px;
    padding: 5px 8px 0px;
}
.navbar-free-search div a{
	cursor: pointer;
	color: #23262e;
}
.navbar-free-search div a:hover{
	color: #0F96E2;
}

/*----- Menu -----*/

#header {
	top: 0;
	width: 100%;
	min-width: 360px;
	position: fixed;
	z-index: 999;
	background: transparent;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;	
	padding: 12px 0;
	height: 91px;
}
.header_rs {
	height: 57px !important;
}
.logo_area {
	float: left;
}
.logo_area img{
	max-height: 65px;
	width: 168px;
	transition-property: width;
	transition-duration: 0.4s;
	margin-left: 0;
}
.logo_area_rs img{
	width: 80px;
}
#header.menu-shrink {
    background-color: #fff !important;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.1);
    width: 100%;
}
#header.menu-shrink-blk {
    background-color: #23262e;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.1);
    width: 100%;
}
#main_menu{
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
	margin-top: 17px;
}
.main_menu_rs {
	margin-top: 0px !important;
}
.nav > li{
	padding: 7px 8px;
}
.nav > li > a {
	transition: .5s;
	color: #fff;
	padding: 0;
	margin-top: 0px;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	font-family: 'Comfortaa', sans-serif;
	transition: .5s;
}
#header.menu-shrink .nav > li > a{
	color: #333;
}
.nav > li > a:hover {
	background: transparent;
	color: #0F96E2;
}
#header .nav > li.current > a,
#header.menu-shrink .nav > li.current a,
#header.menu-shrink .nav > li > a:hover{

	color: #0F96E2;
}
.nav > li > a:hover, 
.nav > li > a:focus {
	text-decoration: none;
	background-color: transparent;
}
.navbar-toggle {
	position: relative;
	float: right;
	margin-right: 10px;
	padding: 9px 10px;
	margin-top: 19px;
	margin-bottom: 0;
}
.navbar-toggle .icon-bar{
	background-color: #fff;
}

.navbar-circle-box {
	width: 90px;
	float: right;
	margin-top: 26px;
	padding-bottom: 11px;
}
.navbar-circle {
	cursor: pointer;
}
.navbar-circle-log{
	padding: 4px 0 0 4px !important;
    font-size: 24px !important;
}
.navbar-circle-logout{
	position: absolute;
    font-size: 34px;
    margin-top: -4px;
    margin-left: -5px;
    color: #ff0000;
	display: none;
}
.navbar-circle-log:hover > .navbar-circle-logout{
	display: block !important;
}
.navbar-circle-std {
	width: 34px;
    height: 34px;
    border-radius: 17px;
    margin-top: -6px;
    font-size: 22px;
    padding: 6px 0 0 5px;
}
.navbar-circle-big {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin-top: -16px;
    font-size: 32px;
    padding: 9px 0 0 9px;
}
.navbar-circle-wht {
	border: 1px solid #fff;
    color: #fff;
}
.navbar-circle-wht:hover {
	background-color: #fff;
	color: #0F96E2;
}
.navbar-circle-wht-sel {
	background-color: #fff;
	color: #0F96E2;
}
.navbar-circle-blk {
	border: 1px solid #23262e;
    color: #23262e;
}
.navbar-circle-blk:hover {
	border: 1px solid #0F96E2;
	color: #0F96E2;
}
.navbar-circle-blk-sel {
	border: 1px solid #fff;
	background-color: #fff;
	color: #0F96E2;
}
.navbar-circle-product-xs{
	margin: 0 auto;
    padding: 14px 0 0 0 !important;
    margin-top: -12px !important;
    margin-bottom: -1px;
    font-size: 35px !important;
}
.navbar-circle-brand-xs{
	margin: 0 auto;
    padding: 8px 0 0 0 !important;
    margin-top: -7px !important;
    margin-bottom: -6px;
    font-size: 38px !important;
}
.navbar-circle-device-xs{
	margin: 0 auto;
    padding: 8px 0 0 0 !important;
    margin-top: -6px !important;
    margin-bottom: -7px;
    font-size: 35px !important;
}
.navbar-circle-product{
	padding: 7px 0 0 7px !important;
	transition-property: size;
	transition-duration: 0.2s;
	font-size: 34px !important;
}
.navbar-circle-product_rs{
	font-size: 21px !important;
	padding: 6px 0 0 6px !important;
}
.navbar-circle-brand{
	padding: 6px 0 0 6px !important;
	transition-property: size;
	transition-duration: 0.2s;
	font-size: 37px !important;
}
.navbar-circle-brand_rs{
	font-size: 21px !important;
	padding: 6px 0 0 6px !important;
}
.navbar-circle-device{
	font-size: 32px !important;
	transition-property: size;
	transition-duration: 0.2s;
	padding: 9px 0 0 9px !important;
}
.navbar-circle-device_rs{
	font-size: 21px !important;
	padding: 6px 0 0 6px !important;
}
.navbar-circle-expo{
	padding: 8px 0 0 8px !important;
	transition-property: size;
	transition-duration: 0.2s;
	font-size: 33px !important;
}
.navbar-circle-expo_rs{
	font-size: 21px !important;
	padding: 6px 0 0 6px !important;
}
.navbar-circle-tool_rs{
	font-size: 21px !important;
	padding: 6px 0 0 6px !important;
}
.navbar-device-search{
	border-radius: 0px !important;
}
.navbar-search-device:hover{
	background-color: #f2f2f2;
	cursor: pointer;
}
.navbar-device-search h5{
	margin-bottom: 5px;
}
.navbar-device-search .btn_close_box{
	margin-top: 7px;
	background-color: #CCCCCC;
	color: #23262e;
}
.navbar-search-device-model_box span{
	font-weight: bolder;
}
.navbar-search-device-mark {
	width: 5px;
    background-color: #0f96e2;
    position: absolute;
    margin: -6px 0px 0px -10px;
	display: none;
}
.navbar-circle-cart{
	font-size: 32px !important;
	transition-property: size;
	transition-duration: 0.2s;
	padding: 9px 0 0 9px !important;
}
.navbar-circle-cart_rs{
	font-size: 21px !important;
	padding: 6px 0 0 6px !important;
}
.navbar-circle-pay{
	font-size: 32px !important;
	transition-property: size;
	transition-duration: 0.2s;
	padding: 9px 0 0 7px !important;
}
.navbar-circle-pay_rs{
	font-size: 21px !important;
	padding: 6px 0 0 5px !important;
}
#space_area {
	height: 141px;
}

/*----- Slide menu -----*/
#slide-menu{
    position: fixed;
    top: 141px;
    width: 100%;
    z-index: 900;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
}
.slide-menu-box {
    padding: 10px 30px;
    background-color: #fff;
    border-top: 5px solid #0F96E2;
    border-bottom: 10px solid #0F96E2;
	display: table;
}
.slide-menu-box div {
	padding: 0px 5px 0px 5px;
}
.slide-menu-box div:hover > ul li h4{
    background-color: #23262e;
	color: #fff;
	border-bottom: 4px solid #0F96E2;
	cursor: default;
}
.slide-menu-box div:hover > ul li a h5{
    background-color: #f2f2f2;
}
.slide-menu-box div ul li{
    color: #23262e;
}
.slide-menu-box div ul li div{
	padding: 0px !important;
    position: absolute;
    margin-left: -5px;
    border-right: 1px solid #f2f2f2;
    height: 40px;
	margin-top: -30px;
}
.slide-menu-box div ul li h4{
	padding: 15px 10px;
    margin-bottom: 0px;
	border-bottom: 4px solid #fff;
	font-size: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slide-menu-box div ul li a h5{
	padding: 10px;
    margin-bottom: 0px;
	cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slide-menu-box div ul li a h5:hover{
	background-color: #0F96E2;
	color: #fff;
	font-weight: 800;
}
.slide-menu-box .btn-setting{
    float: right;
    margin-bottom: -45px;
    margin-top: 10px;
    line-height: 23px;
}
.slide-menu-box .btn-setting i{
    float: left;
    margin-right: 4px;
	font-size: 21px;
}
.slide_int_hide_menu {
	position: absolute;
	background-color: #fff;
	z-index: 999;
	width: 96%;
}
#slide-menu-brand .img{
	background-color: #fff !important;
	padding: 12px 10px 5px;
	min-height: 55px;
	cursor: pointer;
	color: #23262e;
}
#slide-menu-brand .img img{
	max-height: 32px;
}

/*----- Cart -----*/
.navbar-cart-count{
	position: absolute;
    padding: 3px 4px 1px 5px;
    border-radius: 8px;
    text-align: center;
    font-size: 10px;
    font-family: 'Comfortaa', sans-serif;
    background-color: #0F96E2;
    color: #fff;
}
.navbar-cart-count-xs{
    margin-top: -37px;
    margin-left: 17px;
}
.navbar-cart-count-sm-std{
    top: -8px;
    right: 7px;
}
.navbar-cart-count-sm-big{
    top: -14px;
    right: 10px;
}
.navbar-cart-arrow{
	position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent;
}
.navbar-cart-arrow-std{
    margin: 9px 0 0 1px;
}
.navbar-cart-arrow-big{
    margin: 11px 0 0 5px;
}
.navbar-cart-menu{
	position: absolute;
	margin: 10px 0 0 -200px;
    padding: 13px;
    width: 280px;
    background-color: #FFFFFF;
    border: 1px solid #23262e;
	font-family: 'Comfortaa', sans-serif;
	z-index: 999;
}
.navbar-cart-menu h6{
	line-height: 18px;
}
.navbar-cart-menu .btn_close_box{
	background-color: #23262e;
	color: #FFF;
}
.prd-cart{
	padding: 10px 0 10px 10px;
	border-bottom: 1px solid #23262e;
}
.prd-cart img{
	width: 80px;
}
.prd-cart p{
    float: right;
    width: 155px;
    margin-bottom: 0px;
    margin-top: 5px;
    line-height: 18px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.prd-cart p span{
	font-weight: 700;
	font-size: 15px;
	color: #0F96E2;
}
.totale-cart{
	text-align: right;
	padding: 10px 0 15px 0;
}
.totale-cart h6{
	display: inline;
}
.totale-cart h3{
	display: inline;
	color: #0F96E2;
}
.main-btn-rs{
	padding: 6px 10px 3px !important;
}
.btn-right{
	float: right;
	margin-right: 10px;
}
.btn-left{
	float: left;
	margin-left: 10px;
}
#action_cart{
    position: fixed;
    bottom: 55px;
    left: 20px;
    z-index: 1000;
}
#action_cart div{
    width: 100px;
	height: 100px;
	border: 4px solid #fff;
	border-radius: 50px;
	text-align: center;
	cursor: default;
}
#action_cart div i{
	font-size: 58px;
}

/*----- Cart2 -----*/
.navbar-cart2-count{
	position: absolute;
    padding: 3px 4px 1px 5px;
    border-radius: 8px;
    text-align: center;
    font-size: 10px;
    font-family: 'Comfortaa', sans-serif;
    background-color: #0F96E2;
    color: #fff;
}
.navbar-cart2-count-xs{
    margin-top: -37px;
    margin-left: 17px;
}
.navbar-cart2-count-sm-std{
    top: -8px;
    right: 7px;
}
.navbar-cart2-count-sm-big{
    top: -14px;
    right: 10px;
}
.navbar-cart2-arrow{
	position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff transparent;
}
.navbar-cart2-arrow-std{
    margin: 9px 0 0 1px;
}
.navbar-cart2-arrow-big{
    margin: 11px 0 0 5px;
}
.navbar-cart2-menu{
	position: absolute;
	margin: 10px 0 0 -200px;
    padding: 13px;
    width: 280px;
    background-color: #FFFFFF;
    border: 1px solid #23262e;
	font-family: 'Comfortaa', sans-serif;
	z-index: 999;
}
.navbar-cart2-menu h6{
	line-height: 18px;
}
.navbar-cart2-menu .btn_close_box{
	background-color: #23262e;
	color: #FFF;
}

/*----- Slider -----*/
#slider_area div{
	background-position: center top !important;
	position: relative;
	z-index: 1;
}

.slider_item:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #333;
    opacity: 0.65;
    z-index: -1;
}

.single-slide-item-table {
    display: table;
    text-align: center;
    width: 100%;
}

.single-slide-item-tablecell {
    display: table-cell;
    vertical-align: middle;

}
.slider_content{
	padding-top: 5%;
}
.slider_content h2 {
	color: #0F96E2;
	font-size: 13px;
	text-transform: uppercase;
	display: inline-block;
	border-radius: 4px ;
	font-weight: 700;
	margin-bottom: 40px;
	background: #fff;
	padding: 12px 30px;
}
.slider_content h1 {
	color: #0F96E2;
	display: block;
	font-size: 60px;
	font-weight: 800;
	margin: 0;
	letter-spacing: 8px;
	line-height: normal;
	text-transform: uppercase;
	font-family: 'Comfortaa', sans-serif;
}
.slider_content h1 span {
	color: #fff;
}
.slider_content p {
	color: #fff;
	margin-bottom: 35px;
	padding: 10px 0;
	font-weight: 300;
	font-size: 16px;
}
.slider_input {
    color: #fff;
    font-size: 22px;
    width: 50%;
    margin: 0 auto;
    max-width: 600px;
    min-width: 350px;
	line-height: 33px;
}
.slider_input input{
    height: 50px;
    font-size: 18px;
	margin-top: 7px;
}

/*----- Device info -----*/
#device_info {
    position: fixed;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 890;
	background-color: #fff;
	color: #23262e;
	height: 90px;
	line-height: 90px;
	font-size: 24px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
}
#device_info_dett {
    background-color: #cccccc;
    padding: 10px 0px 15px 0px;
    border-top: 3px solid #23262e;
    border-bottom: 6px solid #23262e;
}
#device_info_dett .container{
    padding-left: 0px;
    padding-right: 0px;
}
.device_info_blk {
	background-color: #CCCCCC !important;
	height: 30px !important;
	line-height: 30px !important;
	font-size: 15px !important;
}
#device_info .container div{
	float: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#device_info .released{
	position: absolute;
    margin-top: -32px;
    line-height: 12px;
    font-size: 10px;
    margin-left: 7px;
}
#device_info span{
	font-weight: 800;
}
#device_info img{
    height: 70px;
    margin: 10px 10px 0 0;
	float: left;
}
.device_car_box{
	min-width: 100px;
	padding: 6px 0 0 0;
	cursor: help;
}
.device_car_box_ico{
	font-size: 30px;
	width: 100%;
	padding-left: 10px;
}
.device_car_box_info{
	height: 30px;
	line-height: 30px;
	width: 100%;
	padding-left: 10px;
}
.device_car_box_info2{
	line-height: 18px;
	width: 100%;
	font-size: 14px;
	padding-left: 10px;
}
.btn-info-device{
    position: fixed;
    right: 0;
    z-index: 891;
    line-height: 18px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
}
.btn-info-device i{
    float: left;
    margin-right: 4px;
    font-size: 18px;
}

/*----- Back-link info -----*/
#back_link_page {
    position: fixed;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 890;
	background-color: #cccccc;
	color: #23262e;
	height: 30px;
	line-height: 30px;
	font-size: 15px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
}
#back_link_page .container div{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#back_link_page span{
	font-weight: 800;
}
#back_link_page i{
	font-size: 20px;
    float: left;
    margin: 5px;
}
#back_link_page a{
	color: #23262e;
}
#back_link_page .pagination {
	margin: 0px;
}
#back_link_page .pagination li a{
	padding: 3px 12px 4px;
	border-color: #ccc;
}
#back_link_page .pagination .active a{
	background-color: #23262e;
	border-color: #23262e;
	color: #fff;
	font-weight: 800;
}
#back_link_page .pagination i{
	float: none;
	margin: 0px;
}


#back_link {
    position: fixed;
    box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 890;
	background-color: #cccccc;
	color: #23262e;
	height: 30px;
	line-height: 30px;
	font-size: 15px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
}
#back_link .container div{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#back_link span{
	font-weight: 800;
}
#back_link i{
	font-size: 20px;
    float: left;
    margin: 5px;
}
#back_link a{
	color: #23262e;
}
#back_link .pagination {
	margin: 0px;
}
#back_link .pagination li a{
	padding: 3px 12px 4px;
	border-color: #ccc;
}
#back_link .pagination .active a{
	background-color: #23262e;
	border-color: #23262e;
	color: #fff;
	font-weight: 800;
}
#back_link .pagination i{
	float: none;
	margin: 0px;
}


/*----- Products filter -----*/

#products_list{
	max-width: 1350px;
	margin: 0 auto;
	margin-top: 60px;
}
.device_top{
	margin-top: 120px !important;
}
#filter_menu_box{
	padding-right: 0px;
	z-index: 99;
}
#products_list_filter_menu{
	position: absolute;
	width: 100%;
}
#products_list_filter_menu .view{
	background-color: #cccccc;
	color: #23262e;
	height: 33px;
	margin-bottom: 5px;
	line-height: 22px;
}
#products_list_filter_menu .view div{
	padding: 0px;
	text-align: center;
}
#products_list_filter_menu .view div:nth-child(1){
	border-right: 2px solid #ffffff;
}
#products_list_filter_menu .view div:nth-child(2){
	border-left: 2px solid #ffffff;
}
#products_list_filter_menu .view .btn_view{
	margin-top: 5px;
	color: #23262e;
	cursor: pointer;
}
#products_list_filter_menu .view .btn_view:hover{
	color: #0F96E2; 
}
#products_list_filter_menu .view .active{
	color: #0F96E2;
	cursor: default;
}
#products_list_filter_menu .title{
	background-color: #cccccc;
	color: #23262e;
	line-height: 33px;
	padding-left: 10px;
	padding-right: 3px;
	font-weight: 800;
}
#products_list_filter_menu .title i:nth-child(1){
	float: right;
	margin-top: 4px;
    color: #23262e;
	cursor: pointer;
}
#products_list_filter_menu .title i:nth-child(1):hover{
	color: #0F96E2;
}
#products_list_filter_menu .title i:nth-child(1).active{
	color: #0F96E2!important;
    cursor: default;
}
#products_list_filter_menu .categories{
	background-color: #ececec;
}
#products_list_filter_menu .categories .category_title{
	padding: 5px 10px 0px 10px;
	font-weight: 800;
	line-height: 26px;
}
#products_list_filter_menu .categories .category_list{
    padding-left: 12px;
    font-size: 12px;
    line-height: 20px;
}
#products_list_filter_menu .categories .category_list div{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	cursor: pointer;
}
#products_list_filter_menu .categories .category_list div a{
	color: #23262e;
}
#products_list_filter_menu .categories .category_list div i{
    font-size: 13px;
    margin: 3px;
    float: left;
	cursor: pointer;
}
#products_list_filter_menu .categories .category_list div span{
    font-size: 11px;
}
#products_list_filter_menu .categories  .category_list .st_category_list{
    display: none;
    padding-left: 12px;
}
#filter_menu_check {
    float: left;
    font-size: 15px;
    margin: 8px 3px 0px 0px;
    cursor: default;
}
#filter_menu_input {
    float: left !important;
    font-size: 15px !important;
    margin: 8px 3px 0px 0px !important;
    cursor: default !important;
	color: #23262e !important;
}
.check_enable{
	cursor: pointer !important;
}

.clear_filter{
	position: absolute;
	left: 6px;
	color: #ff0000;
	font-size: 23px;
}
#products_list_filter_menu .categories .filter_menu_autocomplete{
	width: 90%;
	margin: 0 auto;
	padding: 8px 0px;
}
#products_list_filter_menu .categories  .filter-device-search{
	width: 250px;
}
#products_list_filter_menu .categories  .filter-device-search-box{
	position: absolute;
    margin: 1px 0 0 0 !important;
    padding: 7px;
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    font-family: 'Comfortaa', sans-serif;
    z-index: 990;
}
#products_list_filter_menu .categories  .filter-search-device{
    display: inline-block;
    width: 100%;
    padding: 6px 6px 6px 0px;
}
#products_list_filter_menu .categories  .filter-search-device:hover{
	background-color: #f2f2f2;
	cursor: pointer;
}
#products_list_filter_menu .categories  .filter-search-device-model_box{
	max-width: 234px;
    font-size: 13px;
	margin-left: 10px;
    line-height: 16px;
    margin-top: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
#products_list_filter_menu .categories  .filter-search-device-model_box span{
	font-weight: bolder;
}

/*----- Products list -----*/

.product_box{
	box-shadow: 1px 1px 3px #888889;
	margin-bottom: 25px;
	position: relative;
}
.product_box img{
	width: 100%;
	border: 2px solid #ececec;
}
.product_box .generic_info-box{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: center top 0;
    transition: all 0.5s ease 0s;
}
.product_box .generic_info-box .info{
    padding: 15px;
    color: #ffffff;
	line-height: 18px;
}
.product_box .generic_info-box .info span{
    font-size: 11px;
}
.product_box .generic_info-box .click_to_close{
    text-align: center;
    position: absolute;
    bottom: 0px;
    width: 100%;
	cursor: pointer;
	padding: 0px 10px 10px;
}
.product_box .generic_info-box-hover{
	z-index: 1;
    opacity: 1!important;
    transform: perspective(400px) rotateX(0deg)!important;
}
.product_elenco{
	box-shadow: 1px 1px 3px #888889;
	margin-bottom: 10px;
	background-color: #ececec;
}
.product_elenco a{
	padding: 0px;
	text-align: center;
}
.product_elenco img{
	height: 45px;
    border: 1px solid #cccccc;
    margin: 2px 0px 3px;
}

.product_box_info{
	background-color: #ececec;
	padding: 5px;
}
.product_box .product_box_info{
	width: 100%;
}
.product_box_info .title{
	font-weight: 800;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: uppercase;
}
.product_box .product_box_info .title{
	line-height: 14px;
	width: 100%;
}
.product_box .product_promo_btn {
	width: 50px;
    text-align: center;
    padding: 6px 0px;
    font-size: 9px;
    color: #23262e;
    cursor: pointer;
    background-color: #0F96E2;
    position: absolute;
    border: solid 2px #ececec;
}
.product_box .product_promo_btn i{
	margin-top: 0px;
    color: #ffffff;
    font-size: 33px;
}
.product_box .product_promo_btn div{
	margin: -13px 0 -6px;
    font-size: 9px;
    color: #fff;
}
.product_elenco .product_promo_btn {
    width: 33px;
    height: 37px;
    margin-top: 1px;
    right: -20px;
    text-align: center;
    padding: 6px 0px;
    font-size: 9px;
    color: #23262e;
    cursor: pointer;
    background-color: #0F96E2;
    position: absolute;
}
.product_elenco .product_promo_btn i{
    margin-top: -2px;
    color: #ffffff;
    font-size: 23px;
}
.product_elenco .product_promo_btn div{
    margin: -19px 0 -6px;
    font-size: 6px;
    color: #fff;
}
.product_elenco .product_box_info .title{
	line-height: 40px;
	cursor: default;
}
.product_box_info .sub_title{
	font-weight: 800;
	font-size: 20px;
	line-height: 25px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: uppercase;
}
.product_elenco .cart_area{
	margin-top: 5px;
	float: right;
}
.product_elenco .cart_area input{
	width: 35px;
}
.product_elenco .btn_area{
	float: left;
}
.btn_nudo_lab {
	height: 70px;
    background-size: cover;
}
.btn_nudo_lab div:nth-child(1){
	font-size: 23px;
    padding: 25px 8px 0px 21px;
    float: left;
    color: #23262e;
    width: 79%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn_nudo_lab div:nth-child(2){
	width: 100%;
	height: 70px;
	background-color: #fff; 
	opacity: 0.6;
	filter: Alpha(opacity=60); /* IE8 and earlier */
	padding: 0px;
}
.btn_nudo_lab img{
    position: absolute;
    height: 70px;
    border: 0px;
    margin-top: -70px;
    right: 15px;
}
}

/*----- Products details -----*/

#product_details{
	margin: 50px 0px;
}
#product_details .img_cat{
	width: 80px;
	height: 80px;
	position: absolute;
}
#product_details .img_prd{
	max-height: 400px;
}
#product_details .img_prd{
	max-height: 400px;
}
#product_details .product_text h2{
	font-weight: 600;
	font-size: 27px;
	line-height: 33px;
}
#product_details .product_text p {
	margin-bottom: 15px;
	text-align: justify;
}
#product_details .product_int {
    float: left;
	background-color: #ececec;
	border-right: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
	margin-bottom: 20px;
    width: 290px;
}
#product_details .product_cart_area{
	padding: 13px 10px;
}
#product_details .product_cart_area .cart_area{
	float: right;
	margin-top: 0px;
}
#product_details .product_cart_area .btn_area{
    float: right;
	height: 30px;
    min-width: 100px;
    margin-top: -4px;
}
#product_details .product_cart_area .btn_area div{
	float: right;
    margin-left: 8px;
}
#product_details .product_price_area{
	padding: 15px 10px 2px;
}
#product_details .price_area{
	text-align: center;
}
#product_details .price_area div{
	padding: 0px;
    margin-top: -5px;
	cursor: default;
}
#product_details .price_area div div{
	line-height: 16px;
    padding: 2px 0px 0px;
    background-color: #23262e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    max-width: 90%;
    margin: 0 auto;
    border-right: 1px solid #ececec;
}
#product_details .product_promo_area{
	width: 50px;
    text-align: center;
    padding: 6px 0px;
    font-size: 9px;
	color: #23262e;
	cursor: pointer;
}
#product_details .product_promo_area:hover{
    background-color: #222;
	color: #ffffff;
}
#product_details .product_promo_area i{
	margin-top: 0px;
    color: #0F96E2;
    font-size: 33px;
}
#product_details .product_promo_area div{
	line-height: 10px;
    margin-top: -9px;
}

/*----- Products details -----*/
.btn_products_dwn a div{
	width: 150px;
	height: 150px;
	border-radius: 75px;
	border: 5px solid #23262e;
	margin: 0 auto;
	color: #23262e;
	cursor: pointer;
}
.btn_products_dwn a div:hover{
	color: #0f96e2;
	border: 5px solid #0f96e2;
}

/*----- Home Page -----*/
#main_home_view {
	margin-top: 30px;
}
#main_home_view .auto-height{
	height: 100%;
}
.line_home{
	clear: both;
	border-bottom: 2px solid #aba9a6;
	margin: 2px 15px 27px;
}
.line_home div{
    position: absolute;
    background-color: white;
    padding: 0px 7px;
    margin: -11px 24px;
    font-size: 14px;
    color: #aba9a6;
    font-weight: 800;
}

/*----- Market Place -----*/
#market_place_view .container{
    margin-top: 30px;
    padding-left: 0px;
    padding-right: 0px;
}
#market_place_view .ad{
    margin-bottom: 30px;
}
.market_place_box{
	box-shadow: 2px 2px 3px #888889;
	position: relative;
}
.market_place_box img{
	width: 100%;
	border: 2px solid #ececec;
}
.market_place_box .generic_info-box{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: center top 0;
    transition: all 0.5s ease 0s;
	cursor: default;
}
.market_place_box .offer_msg{
    position: absolute;
    text-align: center;
    width: 100%;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.market_place_box .offer_msg_end{
    background-color: red;
}
.market_place_box .offer_msg_new{
    background-color: #0f96e2;
}
.market_place_box .generic_info-box .info{
    padding: 15px;
    color: #ffffff;
	line-height: 18px;
	text-align: center;
    margin-top: 10%;
}
.market_place_box .generic_info-box .click_to_go{
    text-align: center;
    position: absolute;
    bottom: 12px;
    width: 100%;
	cursor: default;
}
.market_place_box .generic_info-box .click_to_go div{
    line-height: 13px;
}
.market_place_box .generic_info-box .click_to_go div i{
    font-size: 38px;
    margin-bottom: 15px;
    color: #fff;
	cursor: pointer;
}
.market_place_box .generic_info-box .click_to_go div i:hover{
    color: #0f96e2;
}
.market_place_box .generic_info-box .click_to_go div div{
    margin-top: -3px;
    font-size: 13px;
}
.market_place_box .generic_info-box-hover{
	z-index: 1;
    opacity: 1!important;
    transform: perspective(400px) rotateX(0deg)!important;
}

/*----- Trovausati -----*/
.trovausati {
	border: 3px solid #db372c;
	font-family: Source Sans Pro,sans-serif;
	color: #000;
}
.trovausati_header{
	padding-top: 5px;
}
.trovausati_body #product_detail_video{
	padding: 10px 0px;
}
.trovausati_body #product_detail_video:after{
    background: none;
}
.trovausati_body #video{
	width: 100%;
    background: none;
}
.trovausati_body #form{
    padding: 19px;
    text-align: center;
}
.trovausati_body #form input{
	width: 100%;
    padding: 2px 5px;
}
.trovausati_footer {
	position: absolute;
    bottom: 15px;
    left: 0px;
}
.trovausati_btn{
    background-color: #db372c;
    text-align: center;
    color: #fff;
    margin-top: 10px;
	cursor: pointer;
}
.trovausati_cdown{
    text-align: center;
	font-size: 17px;
    margin-top: 10px;
	cursor: default;
}

/*----- Generic Page -----*/

#center_message{
	text-align: center;
	padding: 100px;
}

/*----- Device List -----*/

#device_list{
	margin-top: 30px;
}
.navbar-search-device_list{
	padding: 5px;
}
.navbar-search-device_list-mark {
	padding: 15px 40px;
}
.navbar-search-device_list-mark a{
	text-decoration: none;
	color: #23262e;
}
.navbar-search-device_list-mark a:hover {
	font-weight: 800;
	text-decoration: underline;
}
.navbar-search-device_list-img_box{
	text-align: center;
}
.navbar-search-device_list-img_box img{
	width: 80px;
}
.navbar-search-device_list-model_box{
	text-align: center;
	margin: 0 auto;	
	margin-top: 7px;
	line-height: 19px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*----- Products details - generic image -----*/

#product_generic_image{
	padding: 80px 0 50px;
	position: relative;
	color: #fff;
	height: 350px;
	background-size: cover; 
	background-attachment: fixed;
}
#product_generic_image:before{
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	position: absolute;
}


/*----- Products details - info box -----*/

.product_info_box_title{
	width: 188px;
    margin: 0 auto;
	height: 32px;
}
.product_info_box_title div{
	font-size: 23px;
	float: left;
}
.product_info_box_title .material-icons{
	font-size: 39px;
    margin-right: 7px;
}
.product_info_box_title .warning{
	margin-top: -14px;
}
.product_info_box_title .warning_orange{
	color: #ff9900;
}
.product_info_box_title .warning_red{
	color: #ff0000;
}
.product_info_box_title .photo{
	margin-top: -10px;
    font-size: 37px;
}
.product_info_box_title .video{
	margin-top: -8px;
    margin-left: 34px;
}
.product_info_box_text{
	clear: both;
}

/*----- Products details - product alert -----*/

#product_alert{
	background: #f8f8f8;
	padding: 80px 0px;
}

/*----- Products details - detail images -----*/

#product_detail_images {
    background: #fff;
	padding: 80px 0px;
}

.product_img_box{
	clear: both;
	padding-top: 30px;
}
.single_detail{
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
	max-width: 280px;
    margin: 0 auto;
	margin-bottom: 20px;
}
.single_detail img{
    width: 100%;
    height: auto;
}
.single_detail .box-content{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: center top 0;
    transition: all 0.5s ease 0s;
}
.single_detail .more_info{
	position: absolute;
	bottom: 0px;
	left: 0px;
	transition: all 900ms ease 0s;	
	color: #fff;
	width: 100%;
	background: #0F96E2;
	border-radius: 2px;
	padding: 5px 9px;
}
.single_detail:hover .more_info{ bottom: -100px; }
.single_detail:hover .box-content{
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
}
.single_detail .info{
    padding: 0px 15px;
    color: #ffffff;
}

/*----- Products details - detail video -----*/

#product_detail_video {
	padding: 40px 0px;
    background: url(img/video-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

#product_detail_video:after {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.70);
    z-index: -1;
}

#product_detail_video:before {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    top: 0;
    background: url(img/pattarn.png);
    background-repeat: repeat;
}
#video {
  position: relative;
  background: #000;
  width: 640px;
  margin: 0px auto;
}

#video img,
#video iframe { display: block; }

#play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: url('img/play-button.png') no-repeat 50% 50%;
  background-size: auto, cover;
  z-index: 9999;
}

#play:hover { background-color: rgba(0,0,0,0.2) !important; }

.center-block{
	float: inherit;
}





/*----- cart area -----*/

.cart_area{
	background-color: #CCCCCC;
	height: 30px;
	margin-top: 5px;
	padding: 0px 5px;
}
.cart_area i:nth-child(2){
	float: left;
	margin-top: 3px;
	cursor: help;
}
.cart_area .dispon_1{
	color: #008000;
}
.cart_area .dispon_0{
	color: #ff0000;
}
.cart_area .dispon_99{
	color: #ff9800;
}
.cart_area .dispon_98{
	color: #0f96e2;
}
.cart_area .dispon_100{
	color: #fff;
}
.cart_area .dispo_txt{
	float: left;
	font-weight: 800;
}
.cart_area div .cart{
	color: #ececec;
	font-size: 20px;
	margin-top: 5px !important;
	float: right !important;
}
.cart_area input{
	width: 40px;
    height: 20px;
    float: right;
    margin: 5px 5px;
    font-size: 12px;
    line-height: 20px;
    padding: 0px 2px;
    text-align: center;
}
.cart_area div{
	float: right;
    font-size: 12px;
    margin-top: 0px;
    line-height: 30px;
	cursor: default;
}

/*----- price_area -----*/
.price_area{
	cursor: default;
}
.price_area .title{
	font-size: 9px;
	background: #23262e;
	color: #fff;
	height: 15px;
}
.price_area .title div{
	padding: 0px 10px;
	width: 50%;
	float: left;
	line-height: 16px;
	text-align: center;
}
.price_area .val{
	height: 29px;
	border-bottom: 1px solid #23262e;
}
.price_area .val div{
	padding: 0px 10px;
	width: 50%;
	float: left;
	line-height: 30px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 27px;
	text-align: center;
}
.price_area .val div span{
	font-size: 9px;
}

/*----- btn area -----*/

.btn_area{
	height: 35px;
}
.btn_area div{
	padding: 0px;
	text-align: center;
}
.btn_area i{
	cursor: pointer;
}
.btn_area a{
	color: #23262e;
}
.btn_area a:hover{
	color: #0F96E2;
}
.btn_area a:focus{
	outline: none;
}
.btn_area .dispon_1{
	color: #008000;
	margin-top: 7px;
	cursor: help;
}
.btn_area .dispon_1:hover{
	color: #008000;
}
.btn_area .dispon_0{
	color: #ff0000;
	margin-top: 7px;
	cursor: help;
}
.btn_area .dispon_0:hover{
	color: #ff0000;
}
.btn_area .dispon_99{
	color: #ff9800;
    margin-top: 7px;
	cursor: help;
}
.btn_area .dispon_99:hover{
	color: #ff9800;
}
.btn_area .dispon_98{
	color: #0F96E2;
    margin-top: 7px;
	cursor: help;
}
.btn_area .dispon_98:hover{
	color: #0F96E2;
}
.btn_area .dispon_100{
	color: #fff;
    margin-top: 7px;
	cursor: help;
}
.btn_area .dispon_100:hover{
	color: #fff;
}
.btn_area .reservation{
	margin-top: 10px;
	font-size: 20px;
}
.btn_area .generic_info{
	margin-top: 5px;
	font-size: 30px;
}
.btn_area .wish_list{
	margin-top: 7px;
	font-size: 26px;
}
.btn_area .prd_details{
	margin-top: 7px;
	font-size: 26px;
	color: #23262e;
}
.btn_area .prd_gift{
	margin-top: 8px;
	font-size: 24px;
	color: #23262e;
}
.btn_area .nohover{
	color: #cccccc;
	cursor: default;
}
.btn_area .nohover:hover{
	color: #cccccc;
}
.btn_area i:hover{
	color: #0F96E2;
}
.btn_area .wish_list_check{
	color: #0F96E2;
	margin-top: 7px;
	font-size: 26px;
}
.btn_area .prd_gift_check{
	margin-top: 8px;
	font-size: 24px;
	color: #0F96E2;
}



/*----- About -----*/

#about_area {
	position: relative;
	overflow: hidden;
}
.about_text h2 {
	font-weight: 600;
	font-size: 27px;
	line-height: 33px;
}
.about_text p {
	margin-bottom: 15px
}
.about_img{
	display: inline-block;
}
#about_area .owl-prev{
	left: 20px;
}
#about_area .owl-next{
	right: 20px;
}
#about_area .owl-prev,
#about_area .owl-next{
	position: absolute;
	top: 45%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #fff;
	color: #0F96E2;
	border-radius: 50%;
	transition: 0.5s;
}
#about_area .owl-prev:hover,
#about_area .owl-next:hover{
	background: #0F96E2;
	color: #fff;
}
#about_area .main_bg_btn{
	margin-top: 25px;
}
.main_bg_btn {
	background-color: #23262e;
    color: #fff;
    font-weight: 700;
    padding: 6px 15px;
    font-family: 'Comfortaa', sans-serif;
}
.main_bg_btn:hover,
.main_bg_btn:focus{
	color: #fff;
	background-color: #0F96E2;
}
.btn_x:hover,
.btn_x:focus{
	color: #fff !important;
	background-color: #FF0000 !important;
}
.btn_close_box{
    cursor: pointer;
    position: absolute;
    right: -1px;
    font-weight: 800;
    line-height: 15px;
    font-size: 11px;
    padding: 2px 2px 1px 4px;
}

/*----- Services  -----*/

.gray_section{
	background: #f8f8f8;
}

#service_area {
	
}

.serviceBox{
    text-align: center;
    padding: 30px;
    overflow: hidden;
    position: relative;
	background: #fff;
	margin-bottom: 30px;
}
.serviceBox .service-content{
    position: relative;
    transition: all 0.3s ease-in-out 0s;
	z-index: 1;
}

.serviceBox .service-content i{
    font-size: 22px;
	width: 70px;
	height: 70px;
	line-height: 70px;
	border-radius: 50%;
	background: #0F96E2;
	color: #fff;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out 0s;
}
.serviceBox:hover .service-content i{
    transform: rotate(360deg);
}
.serviceBox .title{
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
}
.serviceBox .description{
    font-size: 14px;
    line-height: 25px;
}
.serviceBox .icon-bg{
    font-size: 250px;
    color: rgba(22, 162, 232, 0.03);
    line-height: 120px;
    position: absolute;
    bottom: 0;
    right: -30px;
    transition: all 0.3s ease-in-out 0s;
}
.serviceBox:hover .icon-bg{
    transform: rotate(360deg);
}


/*----- Work css -----*/

#work_area{
	position:relative;
}
.mix{
	display: none;
}
.portfolio_item .mix{
	display: none;
}

.portfolio_filter ul {
	margin: 0px 0 40px;
	padding: 0;
	list-style: none;
}
.portfolio_filter ul li{
	font-weight: 600;
	text-transform: capitalize;
	display:inline-block;
	cursor: pointer;
	padding: 0 10px;
	font-size: 13px;
	transition: .5s;
}
.portfolio_filter .filter.active {
	color: #0F96E2;
}


.single_portfolio{
    text-align: center;
    overflow: hidden;
    position: relative;
	margin-bottom: 30px;
}
.portfolio_item .col-md-4{
	
}
.single_portfolio:after{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(4, 155, 230, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease 0s;
}
.single_portfolio:hover:after{
    opacity: 1;
}
.single_portfolio img{
    width: 100%;
    height: auto;
    transition: all 1.5s ease 0s;
}
.single_portfolio:hover img{
    transform: scale(1.2);
}
.single_portfolio .icon{
    width: 100%;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.single_portfolio .icon li{
    display: inline-block;
}
.single_portfolio .icon li a{
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    position: absolute;
    margin: 0 auto;
    top: 50%;
    font-size: 20px;
    color: #fff;
    opacity: 0;
    transition: all 0.6s ease 0s;
}
.single_portfolio:hover .icon li a{
    top: 30%;
    opacity: 1;
}
.single_portfolio .icon li a:hover{
    background: #fff;
    color: #02a2dd;
}
.single_portfolio .icon li:first-child a{
    left: -90%;
    right: 0;
}
.single_portfolio:hover .icon li:first-child a{
    left: -55px;
}
.single_portfolio .icon li:last-child a{
    right: -90%;
    left: 0;
}
.single_portfolio:hover .icon li:last-child a{
    right: -55px;
}
.single_portfolio .box-content{
    width: 100%;
    padding: 20px 10px;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -100px;
    left: 0;
    z-index: 1;
    transition: all 0.6s ease 0s;
}
.single_portfolio:hover .box-content{
    bottom: 0;
}
.single_portfolio .title {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	margin-top: 0;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.single_portfolio .post{
    display: block;
    font-size: 14px;
    color: #fff;
}


/*----- Team -----*/

#team_area {
    background: #fff;
	overflow: hidden;
}


.single_team{
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}
.single_team img{
    width: 100%;
    height: auto;
}
.single_team .box-content{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: center top 0;
    transition: all 0.5s ease 0s;
}
.single_team:hover .box-content{
    opacity: 1;
    transform: perspective(400px) rotateX(0deg);
}
.single_team .team_content{
	position: absolute;
	bottom: 0px;
	left: 0px;
	transition: all 900ms ease 0s;	
	color: #fff;
	width: 100%;
	background: #0F96E2;
	border-radius: 2px;
	padding: 5px 9px;
}
.single_team .title{
    display: inline-block;   
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 5px;

}
.single_team:hover .team_content{ bottom: -100px; }
.single_team .icon{
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 42%;
    left: 0;
    right: 0;
}
.single_team .icon li{ display: inline-block; }
.single_team .icon li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #0F96E2;
    text-align: center;
    font-size: 20px;
    color: #fff;
    margin-right: 7px;
    transition: all 0.35s ease 0s;
}
.single_team .icon li a:hover{
    background: #fff;
    color: #000;
}



/*----- Skill  -----*/

#skill_area{
	overflow: hidden;
	padding-top: 60px;
}
#skill_area .section_title{
	margin-bottom: 30px;
}
#skill_area .section_title h1{
	position: relative;
	padding-bottom: 20px;
	margin-top: 0;
	margin-bottom: 0;
}
#skill_area .section_title h1:after{
	content: '';
	width: 40px;
	height: 4px;
	background: #0F96E2;
	left: 0;
	bottom: 0;
	position: absolute;
}
.skill_content {
	margin-top: 0px;
}

.skill_content .section_divider{
	float: left;
}
.skill_content p {
	margin-bottom:30px;
}

.progress_area{
    float:left;
    width:100%;
    margin:0 0 -50px;
}
.skillbar{
    margin:0 0 20px;
    float:left;
    width:100%;
}
.skillbar > span{
    font-size:15px;
    line-height:1;
    display:table;
    margin:0 0 10px;
	font-family: 'Comfortaa', sans-serif;
	text-transform: uppercase;
}
.skillbar > .progress{
    border-radius:0;
    height:5px;
    background:#ebebeb;
    overflow:visible;
}
.skillbar > .progress .progress-bar {
	height: 100%;
	position: relative;
	background: #0F96E2;
}
.skillbar > .progress .progress-bar span {
	position: absolute;
	right: -8px;
	bottom: 100%;
	background: #0F96E2;
	padding: 2px 9px;
	font-size: 12px;
	margin-bottom: -14px;
	border-radius: 2px;
}
.progress {
	box-shadow: none;
}
.progress-bar {
	box-shadow: none;
}

/*----- Pricing -----*/

.pricingtable{
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 50px 0 25px;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
	background: #fff;
}
.pricingtable .pricing-icon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    position: absolute;
    top: -40px;
    left: 50%;
    padding: 5px;
    transform: translateX(-50%);
    transition: all 0.5s ease 0s;
}
.pricingtable:hover .pricing-icon{
    border: 1px solid #0F96E2;
    background: #0F96E2;
}
.pricingtable .pricing-icon i{
    width: 100%;
    height: 100%;
    line-height: 62px;
    border-radius: 50%;
    background: #0F96E2;
    font-size: 25px;
    color: #fff;
    transition: all 0.5s ease 0s;
	 display: block;
}
.pricingtable:hover .pricing-icon i{
    color: #fff;
    background: #0F96E2;
	
}
.pricingtable .price-value{
    display: inline-block;
    font-size: 35px;
    color: #494949;
    position: relative;
	margin-top: 30px;
	font-weight: 700;
}
.pricingtable .currency{
    font-size: 25px;
    position: absolute;
    top: 18px;
    left: -18px;
}
.pricingtable .month{
    display: block;
    text-transform: capitalize;
}
.pricingtable .pricingheader{
    position: relative;
    z-index: 1;
	margin-top: 20px;
}
.pricingtable .pricingheader:after{
    content: "";
    width: 100%;
    height: 1px;
    background: #eee;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
}

.pricingtable .title {
	width: 45%;
	background: #0F96E2;
	margin: 10px auto;
	padding: 8px 0;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	position: relative;
	z-index: 1;
}
.pricingtable .pricing-content ul{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 25px;
}
.pricingtable .pricing-content ul li{
	line-height: 35px;
}



/*----- Testmonial  -----*/


.testimonial {
	background: #fff;
	padding: 20px 40px 20px 40px;
	margin: 10px 10px 40px;
	position: relative;
	box-shadow: 0 0 8px rgba(221,221,221,0.3);
	display: block;
	border: 1px solid #fafafa;
}
.testimonial .testimonial-title{
    font-size: 16px;
    font-weight: 700;
    color: #0F96E2;
    margin-bottom: 15px;
}
.testimonial .description{
    font-style: italic;
    color: #0b132b;
}
.testimonial .test_website{
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
}
.testimonial .pic{
    width: 70px;
    height: 70px; 
    position: absolute;
    bottom: -35px;
    right: 23px;

}
.testimonial .pic img{
    width: 100%;
    height: auto;
	box-shadow: 0 0 30px rgba(4, 155, 230, 0.2);
	border-radius: 50%;

}



/*----- Counter  -----*/

#counter_area{
	padding: 80px 0 50px;
	position: relative;
	color: #fff;
}
#counter_area:before{
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	top: 0;
	position: absolute;
}
.counter-items{
	margin: 30px 0px;
	border-right: 1px solid #fff;
	cursor: default;
}

.counter-items .number-number{
	color: #fff;

}
.no_border{
	border: none;
}
.counter_icon {	
	margin-bottom: 15px;
	display: inline-block
}

.counter_icon img{
	cursor: default;
	width: 40px;
	transition: .5s;
}
.counter-items:hover div{
	transform: scale(1.1);
}
.number-number {
	font-size: 35px;
	font-weight: 700;
	letter-spacing: 4px;

}
.counter {
  text-align: center;
}
.number-desc {
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 15px;
}

/*----- Blog -----*/

#blog_area{
	padding-bottom: 20px;
}
.single_post{
	margin-bottom: 30px;
}
.single_post .post-img{
    position: relative;
	overflow: hidden;
	text-align: center;
}
.single_post .post-img > a{
    display:inline-block;
}
.single_post .post-img img{
    width: 100%;
    height:auto;
	transition: .5s;
	
	
}
.single_post .post-img:before{
	transition: .5s;
	background-color: rgba(4, 155, 230, 0.5);
	opacity: 0;
	width: 100%;
	height:100%;
    content: "";
    position: absolute;	
	z-index: 1;
	
}
.single_post:hover .post-img:before{
	opacity: 1;

	
}
.single_post:hover  .post-img img{
	transform: scale(1.2);
}

.single_post .post-title{
    margin-top: 20px;
    margin-bottom: 14px;
}
.single_post .post-title > a{
    display: block;
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
}
.single_post .post-title > a:hover,
.single_post .post-title > a:focus{
    text-decoration: none;
    color:#0F96E2;
}
.single_post .post-bar{
    padding: 0;
    list-style: none;
}
.single_post .post-bar > li{
    display: inline-block;
}
.single_post .post-date,
.single_post .author,
.single_post .author > a{
    color:#8f8f8f;
    font-size: 12px;
    margin-right: 16px;
    text-transform: uppercase;
	font-weight: 800;
}
.single_post .post-date > i,
.single_post .author > i{
    margin-right: 5px;
}
.single_post .author > a:hover{
    color:#0F96E2;
}
.single_post .post-description{
    padding-top: 5px;
}

.post_btn_area{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: auto;	
	right: auto;	
	opacity: 0;
	transition: all 0.3s ease 0s;
	z-index: 100;	
}

.post_btn{
	padding: 0;
	margin: 0;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	text-align: center;
	position: absolute;
	right: 10px;	
	bottom: 10px;	
	border: 1px solid #fff;
	border-radius: 50%;
	color: #fff;
	z-index: 100;	
	transition: .5s;
}
.single_post:hover .post_btn_area{
	opacity: 1;
}
.post_btn:hover,
.post_btn:focus{
	color: #0F96E2;
	background: #fff;
}

/*----- Client css -----*/

.client_area{
	padding: 60px 0;
}
.single_client {
	
}
.single_client a{

	display: block;
	transition: .5s;
}



/*----- Contact  -----*/

#contact_area {
    position: relative;
    z-index: 1;
}

.contact_form {
	padding: 0 50px 50px 50px;
}
.contact_form .form-control {
	display: block;
	width: 100%;
	height: 55px;
	line-height: 55px;
	padding: 6px 15px;
	border:none;
	border: 1px solid #e5e5e5;	
	margin-bottom: 15px;
	border-radius:2px;
	background:#fff;
	position:relative;
	box-shadow: inherit;
}
.contact_form textarea.form-control{
	height: 120px;
	line-height: 35px;
}
.form-control:focus{
    border-color: #0F96E2;
	box-shadow:none;
}

.no_padding {
	padding: 0px;
}
#map{
	height: 470px;
}


/*----- Footer -----*/

#footer_area{
	background:#0F96E2;
	padding:30px 0;
	color: #fff;
	font-size: 13px;
}
#footer_area a:hover{
	color: #0F96E2;
}
.footer_social_icons{
	float: right;
}
.footer_social_icons a {
	color: #fff;
	transition:.6s;
}
.footer_social_icons a:hover {
	color: #fff!important;
}
.footer_social_icons ul li {
	display: inline-block;
	font-size: 20px;
	padding: 0 12px;
	margin-bottom: 0px;
	transition:.6s;
}
.footer_social_icons ul li:hover {
	transform: rotate(360deg);
}


@-webkit-keyframes pulse {
 0% {
 -webkit-transform: scale(1, 1);
}
 50% {
 -webkit-transform: scale(1.1, 1.1);
}
 100% {
 -webkit-transform: scale(1, 1);
};
}

@keyframes pulse {
 0% {
 transform: scale(1, 1);
}
 50% {
 transform: scale(1.1, 1.1);
}
 100% {
transform: scale(1, 1);
};
}

.pulse_element {
	-webkit-animation: pulse 1s linear infinite;
	animation: pulse 1s linear infinite;
}

.pulse_element:hover {
	-webkit-animation: none;
	animation:none;
}

/*----- End Style  -----*/

a.tooltips {
  position: relative;
  display: inline;
}
a.tooltips span {
  position: absolute;
  color: #FFFFFF;
  background: #0f96e2;
  line-height: 26px;
  text-align: justify;
  visibility: hidden;
  padding: 17px 17px;
  width: 500px;
  left: -500px;
  top: 17px;
  z-index: 1;
  font-size: 14px !important;
}
a.tooltips img {
  width: 12px;
  margin-left: 1px;
  margin-top: -1px;
  cursor: help;
}
a.tooltips i {
  position: relative;
  font-size: 13px !important;
}
a:hover.tooltips span {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}