/*================= SPACER =================*/
.cdo-spacer{
	clear:both; 
	display:block; 
	margin-left:0px; 
	margin-right:0px; 
	padding:0;
}

.clear{clear:both;}


/*================= BUTTON =================*/

.button, button, input[type="submit"], .cdo-button {
	font-size: 10px;
	background: #272727;
	font-weight: 700;
	text-transform: uppercase;
	padding: 13px 23px;
	font-family: 'Montserrat', sans-serif;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	border: 1px solid transparent;
	white-space: nowrap;
	color: #fff;
	line-height: 1.42857;
	letter-spacing:1px;
	margin-bottom:0px;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
}
.button:hover, .button:focus, .button:active, .button.active, button:hover, input[type="submit"]:hover, .cdo-button:hover {
	background:transparent;
	border-color:#292929;
	color:#292929;
}
.cdo-button.small {
	font-size: 12px;
	padding: 10px 16px;
}
.cdo-button.medium{
	font-size: 14px;
}
.cdo-button.large {
	padding: 15px 28px;
	font-size: 16px;
}
.cdo-button:focus,
.cdo-button:active:focus,
.cdo-button.active:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
.cdo-button:hover,
.cdo-button:focus {
	text-decoration: none;
}
.cdo-button:active,
.cdo-button.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.cdo-button.disabled,
.cdo-button[disabled],
fieldset[disabled] .cdo-button {
	cursor: not-allowed;
	pointer-events: none;
	opacity: 0.65;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
}
.cdo-button-block {
	display: block;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}
.cdo-button.square{
	margin-left:0;
}
button.radius,
.cdo-button.radius {
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
button.round,
.cdo-button.round {
	-webkit-border-radius: 1000px;
	border-radius: 1000px;
} 
.cdo-button i {
	position: relative;
	top: 1px;
	margin-left: 5px;
}
.cdo-button.green {
	background: #9ac23d;
}
.cdo-button.green:hover, .cdo-button.green:focus{
	background: transparent;
	border-color: #a2ca47;
	color: #a2ca47;
}
.cdo-button.blue {
	background: #29a7e4;
}
.cdo-button.blue:hover, .cdo-button.blue:focus{
	background: transparent;
	border-color: #56baea;
	color: #56baea;
}
.cdo-button.yellow {
	background: #f1c40f;
}
.cdo-button.yellow:hover, .cdo-button.yellow:focus{
	background: transparent;
	border-color: #fbab35;
	color: #fbab35;
}
.cdo-button.red {
	background: #f15c44;
}
.cdo-button.red:hover, .cdo-button.red:focus{
	background: transparent;
	border-color: #f58573;
	color: #f58573;
}
.cdo-button.grey {
	background: #95a5a6;
}
.cdo-button.grey:hover, .cdo-button.grey:focus{
	background: transparent;
	border-color: #b1bdbd;
	color: #b1bdbd;
}
.cdo-button.black {
	background: #292929;
}
.cdo-button.black:hover, .cdo-button.black:focus{
	background: transparent;
	border-color:#292929;
	color:#292929;
}
.cdo-button.white {
	color: #999;
	background: #fafafa;
}
.cdo-button.white:hover, .cdo-button.white:focus{
	background: #fff;
	color:#7b7b7b !important;
}

/*================= GOOGLE MAP =================*/
.google_map{margin-bottom:34px;}
	
/*================= TAB  & ACCORDION =================*/
.resp-tabs-left,
.resp-tabs-right,
.resp-tabs-top,
.resp-tabs-bottom,
.resp-accordion {
	*zoom: 1;
}
.resp-tabs-list {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}
.resp-tabs-list:before, .resp-tabs-list:after {
	content: " ";
	display: table;
}
.resp-tabs-list:after {
	clear: both;
}
h4.resp-accordion:hover,
h4.resp-accordion:focus,
.resp-tabs-list li:hover,
.resp-tabs-list li:focus {
	text-decoration: none;
	background-color: #eee;
	border-color: #eee #eee #ddd;
	cursor: pointer;
	color: #3498db;
}

h4.resp-accordion,
.resp-tabs-list li {
	position: relative;
	font-size: 16px;
	background: #fafafa;
	line-height: 1.42857;
	padding: 10px 15px;
	border: 1px solid #ddd;
	margin-bottom: 10px;
	transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
}
h4.resp-accordion.resp-tab-active, h4.resp-accordion.resp-tab-active:hover, h4.resp-accordion.resp-tab-active:active,
.resp-tabs-list li.resp-tab-active,
.resp-tabs-list li.resp-tab-active:hover,
.resp-tabs-list li.resp-tab-active:active {
	color: #fff;
	background: #272727;
	border: 1px solid #272727;
}
.resp-tab-content {
	display: none;
	padding: 0px;
	border: 1px solid #e3e3e3;
	margin-bottom: 10px;
}
.resp-arrow {
	float: right;
	font-weight:400;
}
.resp-arrow:before {
	font-family: "FontAwesome";
	content: "\f054";
	background: none;
	width: auto;
	height: auto;
	font-style: normal;
	font-size: 10px;
	position: relative;
}
.resp-tab-active .resp-arrow {
	float: right;
}
.resp-tab-active .resp-arrow:before {
	font-family: "FontAwesome";
	content: '\f078';
}
h4.resp-accordion {
	cursor: pointer;
	display: none;
}
.resp-content-active,
.resp-accordion-active {
	display: block;
}

/* responsive tab top */
.resp-tabs-top .resp-tabs-list li {
	display: block;
	float: left;
	margin-bottom: -1px;
	margin-right: 2px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
}
.resp-tabs-top .resp-tabs-list li.resp-tab-active, .resp-tabs-top .resp-tabs-list li.resp-tab-active:hover, .resp-tabs-top .resp-tabs-list li.resp-tab-active:active {
	border-bottom-color: transparent;
	cursor: default;
}
.resp-tabs-top .resp-tab-content {
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/* responsive tab bottom */
.resp-tabs-bottom .resp-tabs-list li {
	display: block;
	float: left;
	margin-top: -1px;
	margin-right: 2px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
}
.resp-tabs-bottom .resp-tabs-list li.resp-tab-active, .resp-tabs-bottom .resp-tabs-list li.resp-tab-active:hover, .resp-tabs-bottom .resp-tabs-list li.resp-tab-active:active {
	border-top-color: transparent;
	cursor: default;
}
.resp-tabs-bottom .resp-tab-content {
	margin-bottom: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
}

/* responsive tab left */
.resp-tabs-left .resp-tabs-list {
	float: left;
	width: 30%;
}
.resp-tabs-left .resp-tabs-list li {
	margin-right: -1px;
	margin-bottom: -1px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.resp-tabs-left .resp-tabs-list li.resp-tab-active, .resp-tabs-left .resp-tabs-list li.resp-tab-active:hover, .resp-tabs-left .resp-tabs-list li.resp-tab-active:active {
	border-right: none;
	cursor: default;
}
.resp-tabs-left .resp-tabs-container {
	float: left;
	width: 70%;
}
.resp-tabs-left .resp-tab-content {
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/* responsive tab right */
.resp-tabs-right .resp-tabs-list {
	float: right;
	width: 30%;
}
.resp-tabs-right .resp-tabs-list li {
	margin-left: -1px;
	margin-bottom: 2px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.resp-tabs-right .resp-tabs-list li.resp-tab-active, .resp-tabs-right .resp-tabs-list li.resp-tab-active:hover, .resp-tabs-right .resp-tabs-list li.resp-tab-active:active {
	border-left: none;
	cursor: default;
}
.resp-tabs-right .resp-tabs-container {
	float: left;
	width: 70%;
}
.resp-tabs-right .resp-tab-content {
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/* Accordion */
.resp-accordion h4.resp-accordion {
	display: block;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.resp-accordion .resp-tab-content {
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/* Overwrite */
.resp-tabs-list {
	margin-left: 0;
}
.resp-tabs-list li {
	font-size: 16px;
	padding: 16px 20px 17px 60px;
	border-color: #dedede;
	background: #fbfbfb;
	position:relative;
}
.resp-tabs-list li.resp-tab-active, .resp-tabs-list li.resp-tab-active:hover {
	color: #929292;
	background: #fff;
	border-color: #dedede;
}

.resp-tab-content {
	border: solid 1px #e3e3e3;
	box-shadow: none !important;
	padding:0;
}

.cdo-tab-content{padding:20px;}

.resp-tab-content .row {
	margin: 0;
}
.resp-tab-content .accordion-tab-column {
	margin: 0 -0.9375rem;
}

.resp-tabs-top .resp-tabs-list li,
.resp-tabs-bottom .resp-tabs-list li,
.resp-tabs-left .resp-tabs-list li,
.resp-tabs-right .resp-tabs-list li {
	margin-right: -1px;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.resp-tabs-top .resp-tabs-list li.resp-tab-active:before, .resp-tabs-top .resp-tabs-list li.resp-tab-active:hover:before,
.resp-tabs-bottom .resp-tabs-list li.resp-tab-active:before,
.resp-tabs-bottom .resp-tabs-list li.resp-tab-active:hover:before,
.resp-tabs-left .resp-tabs-list li.resp-tab-active:before,
.resp-tabs-left .resp-tabs-list li.resp-tab-active:hover:before,
.resp-tabs-right .resp-tabs-list li.resp-tab-active:before,
.resp-tabs-right .resp-tabs-list li.resp-tab-active:hover:before {
	content: "";
	height: 3px;
	width: -moz-calc(100% + 2px);
	width: -webkit-calc(100% + 2px);
	width: -o-calc(100% + 2px);
	width: calc(100% + 2px);
	display: block;
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
}
.resp-tabs-top .resp-tabs-list li:hover,
.resp-tabs-bottom .resp-tabs-list li:hover,
.resp-tabs-left .resp-tabs-list li:hover,
.resp-tabs-right .resp-tabs-list li:hover {
	color: #fff;
}
.resp-tabs-top .resp-tabs-list li i,
.resp-tabs-bottom .resp-tabs-list li i,
.resp-tabs-left .resp-tabs-list li i,
.resp-tabs-right .resp-tabs-list li i {
	font-size: 22px;
	font-weight:300;
	position: absolute;
	left: 20px;
	top: 15px;
	transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
}

.resp-tabs-left .resp-tab-content,
.resp-tabs-right .resp-tab-content {
	padding:20px;
}
.resp-tabs-left .resp-tabs-list li,
.resp-tabs-right .resp-tabs-list li {
	padding: 16px 20px 17px 50px;
	margin-bottom:-1px;
}
.resp-tabs-left .resp-tabs-list li.resp-tab-active:before, .resp-tabs-left .resp-tabs-list li.resp-tab-active:hover:before,
.resp-tabs-right .resp-tabs-list li.resp-tab-active:before,
.resp-tabs-right .resp-tabs-list li.resp-tab-active:hover:before {
	content: "";
	width: 3px;
	height: -moz-calc(100% + 2px);
	height: -webkit-calc(100% + 2px);
	height: -o-calc(100% + 2px);
	height: calc(100% + 2px);
	display: block;
	position: absolute;
	bottom: -1px;
	left: -1px;
	right: -1px;
}

.resp-tabs-right .resp-tabs-list li {
	text-align: left;
}
.resp-tabs-right .resp-tabs-list li.resp-tab-active:before, .resp-tabs-right .resp-tabs-list li.resp-tab-active:hover:before {
	left: auto;
}

.resp-tabs-bottom .resp-tabs-list li.resp-tab-active:before, .resp-tabs-bottom .resp-tabs-list li.resp-tab-active:hover:before {
	display: none;
}
.resp-tabs-bottom .resp-tabs-list li.resp-tab-active:after, .resp-tabs-bottom .resp-tabs-list li.resp-tab-active:hover:after {
	content: "";
	height: 3px;
	width: -moz-calc(100% + 2px);
	width: -webkit-calc(100% + 2px);
	width: -o-calc(100% + 2px);
	width: calc(100% + 2px);
	display: block;
	position: absolute;
	bottom: -1px;
	left: -1px;
	right: -1px;
}

h4.resp-accordion,
.resp-tabs-list li {
	background: transparent;
	border: 1px solid #e3e3e3;
	margin-bottom: -1px;
	padding: 16px 20px 17px 60px;
	position: relative;
	font-weight:400;
}
h4.resp-accordion i,
.resp-tabs-list li i {
	font-size: 14px;
	font-weight:400;
	position: absolute;
	left: 20px;
	top: 13px;
	transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
}

.resp-tabs-list li:hover,
h4.resp-accordion:hover,
h4.resp-accordion.resp-tab-active,
h4.resp-accordion.resp-tab-active:hover,
h4.resp-accordion.resp-tab-active:active,
.resp-tabs-list li.resp-tab-active,
.resp-tabs-list li.resp-tab-active:hover,
.resp-tabs-list li.resp-tab-active:active {
	background: #272727;
	border: 1px solid #272727;
	color:#fff;
}
.resp-tabs-list li:hover i,
h4.resp-accordion:hover i,
h4.resp-accordion.resp-tab-active i,
h4.resp-accordion.resp-tab-active:hover i,
h4.resp-accordion.resp-tab-active:active i,
.resp-tabs-list li.resp-tab-active i,
.resp-tabs-list li.resp-tab-active:hover i,
.resp-tabs-list li.resp-tab-active:active i {
	color: #fff !important;
}

.resp-tabs-list li:hover,
h4.resp-accordion:hover,
h4.resp-accordion.resp-tab-active,
h4.resp-accordion.resp-tab-active:hover,
h4.resp-accordion.resp-tab-active:active {
	color: #fff;
}
.resp-tabs-list li:hover .resp-arrow,
h4.resp-accordion:hover .resp-arrow,
h4.resp-accordion.resp-tab-active .resp-arrow,
h4.resp-accordion.resp-tab-active:hover .resp-arrow,
h4.resp-accordion.resp-tab-active:active .resp-arrow {
	border:0;
}
.resp-tabs-list li:hover .resp-arrow:before,
h4.resp-accordion:hover .resp-arrow:before,
h4.resp-accordion.resp-tab-active .resp-arrow:before,
h4.resp-accordion.resp-tab-active:hover .resp-arrow:before,
h4.resp-accordion.resp-tab-active:active .resp-arrow:before {
	color: #fff;
	top: -3px;
}

@media only screen and (max-width: 768px) {
  ul.resp-tabs-list {
    display: none;
  }
  

  h4.resp-accordion {
    display: block;
	width:100%;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
     -moz-box-shadow:none;
    -webkit-box-shadow:none;
    box-shadow:none;

  }

  .resp-tabs-container {
    width: 100% !important ;
	margin-bottom:30px
  }

  .resp-tab-content {
    -moz-border-radius: 0px !important;
    -webkit-border-radius:0px;
    border-radius: 0px !important;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    box-shadow:none;
  }
}



/*================= ACCORDION, TOGGLE =================*/
.cdo-toggle, .cdo-accordion { margin: -1px 0 0 0; }
.cdo-toggle .cdo-toggle-title, .cdo-accordion .cdo-accordion-title {
	display: block;
	cursor:pointer;
	letter-spacing: -0.5px;
	-webkit-font-smoothing: antialiased;
	font-size:16px;
	font-weight:400;
	background-color:#fff;
	border:1px solid #e3e3e3;
	padding: 16px 20px 17px 60px;
	clear:both;
	transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-o-transition: all 0.4s ease-in-out 0s;
	-ms-transition: all 0.4s ease-in-out 0s;
	position:relative;
	outline:0;
}
.cdo-toggle.bgtransparent .cdo-toggle-title, .cdo-accordion.bgtransparent .cdo-accordion-title{background:transparent;}
.cdo-toggle .ui-accordion-header-active, .cdo-accordion .ui-accordion-header-active,
.cdo-toggle.bgtransparent .ui-accordion-header-active, .cdo-accordion.bgtransparent .ui-accordion-header-active{
	border:solid 1px #272727;
	color:#fff;
	outline:0;
	background:#272727;	
}
.cdo-toggle .cdo-toggle-title:hover, .cdo-accordion .cdo-accordion-title:hover {}
.cdo-toggle .cdo-toggle-title i, .cdo-accordion .cdo-accordion-title i{
	margin-right:10px;
	top:2px;
	font-size:22px;
	font-weight:300;
	position: absolute;
	left: 20px;
	top: 18px;
	transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	-webkit-transition: all 0.4s ease-in-out 0s;
}
.cdo-toggle .cdo-toggle-title.ui-accordion-header-active i, .cdo-accordion .cdo-accordion-title.ui-accordion-header-active i{color:#fff;}
.cdo-toggle-inner, .cdo-accordion-inner {
	margin:0;
	padding:20px;
	position:relative;
	border:solid 1px #e3e3e3;
	border-width:0 1px 1px 1px;
	height:auto !important;
}
.cdo-toggle.bgtransparent .cdo-toggle-inner, .cdo-accordion.bgtransparent .cdo-accordion-inner{background:transparent;}
.cdo-toggle span.ui-icon, .cdo-accordion span.ui-icon{}
.cdo-toggle span.ui-icon:before, .cdo-accordion span.ui-icon:before {
	font-family: "FontAwesome";
	content: "\f107";
	background: none;
	width: 20px;
	height: 20px;
	line-height:16px;
	font-style: normal;
	float:right;
	color: #909090;
	font-size: 14px;
	position: relative;
	top: 4px;
	border:solid 2px #909090;
	text-align:center;
}
.cdo-toggle .ui-state-active .ui-icon:before, .cdo-accordion .ui-state-active .ui-icon:before {
  font-family: "FontAwesome";
  content: "\f106";
  color:#fff;
  border:solid 2px #fff;
}

/*================= ICON =================*/
.cdo-icon.x-small{font-size:20px;}
.cdo-icon.small{font-size:34px;}
.cdo-icon.default{font-size:34px;}
.cdo-icon.medium{font-size:44px;}
.cdo-icon.large{font-size:56px;}
.icon-left {
	margin:2px 20px 0 0 !important;
	float:left !important;
}
.icon-nonposition{display:block; float:none; margin-bottom:10px}
.icon-right {
	margin:2px 0 0 20px !important;
	float:right !important;
}
.icon-center {
	margin:0 auto 10px auto !important;
	float:none !important;
	display:block;
	text-align:center
}
.icon-shape, .icon-shape.medium-size{
	background:#fff;
	width: 64px;
	height: 64px;
	line-height: 64px;
	text-align:center;

}
.icon-shape.small-size{width:42px; height:42px;  line-height:42px}
.icon-shape.large-size{width:84px; height:84px; line-height:84px;}
.icon-shape i, .icon-shape.medium-size i{
	line-height: 64px;
	font-size: 37px;
	color: #cecece;
	margin:0 auto;
}
.icon-shape.small-size i{font-size:22px; line-height:42px}
.icon-shape.large-size i{font-size:52px; line-height:84px }

.icon-shape.nobgcolor, .icon-shape.medium-size.nobgcolor{width:54px; height:54px;  line-height:54px}
.icon-shape.nobgcolor i, .icon-shape.medium-size.nobgcolor i{font-size:54px; line-height:54px}
.icon-shape.small-size.nobgcolor{width:32px; height:32px;  line-height:32px}
.icon-shape.small-size.nobgcolor i{font-size:32px; line-height:32px}
.icon-shape.large-size.nobgcolor{width:64px; height:64px; line-height:64px;}
.icon-shape.large-size.nobgcolor i{font-size:64px; line-height:64px}

.icon-shape.has-stroke, .icon-shape.medium-size.has-stroke{width:64px; height:64px; line-height:64px;}
.icon-shape.has-stroke i, .icon-shape.medium-size.has-stroke i{font-size: 37px; line-height: 64px;}
.icon-shape.small-size.has-stroke{width:42px; height:42px; line-height:42px;}
.icon-shape.small-size.has-stroke i{font-size: 22px; line-height: 42px;}
.icon-shape.large-size.has-stroke{width:84px; height:84px; line-height:84px;}
.icon-shape.large-size.has-stroke i{font-size: 52px; line-height: 84px;}
.icon-shape.has-stroke{border:solid 2px}

.icon-shape.circle{
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.icon-shape.square,
.text-shape.square {
	-webkit-border-radius: 0;
	border-radius: 0;
}
.icon-shape.radius,
.text-shape.radius {
	-webkit-border-radius: 8px;
	border-radius: 8x;
}

.text-overflow{overflow:hidden;}
.text-overflow h4{font-weight:400; overflow:hidden; display:inline-block; margin:0}
.text-nonposition{overflow:auto;}
.icon-shape.noborder{border:0;}


.icon-image,
.icon-text {
  display: inline-block;
  vertical-align: top;
}
.icon-image {
  padding-top: 7px;
}
.icon-text {
  margin-left: 10px;
}
.icon-text h4 {
  font-size: 12px;
  font-weight:700;
  letter-spacing: 1px;
  line-height: 10px !important;
  margin-bottom: 0 !important;
  margin-top: 10px;
}
.icon-text p {
  margin-bottom: 0;
  color: #b0b0b0;
}
@media (max-width: 768px) {
  .icon-text p {
    margin-bottom: 10px;
  }
}
.footer-service {
  padding: 10px 0;
}
@media (max-width: 768px) {
  .footer-service {
    text-align: center;
  }
}

i.fa.custom1:before{
	content:url('images/icon1.png');
}

i.fa.custom2:before{
	content:url('images/icon2.png');
}

i.fa.custom3:before{
	content:url('images/icon3.png');
}

i.fa.custom4:before{
	content:url('images/icon4.png');
}

/*================= TABLES =================*/
table {
	width:100%;
	margin:0 0 20px;
}

table th {
	color:#525252;
	font-size:13px;
	text-align:left;
	padding:9px 13px;
	font-weight:400;
}

table td {
	border-bottom: 1px solid #e6e6e6;
	background-color:#f0f0f0;
	text-align:left;
	padding:9px 13px;
}

table td.highlight {
	color:#fff;
	font-weight:300;
}

.cdo-table-green th {background:#1abc9c; color:#fff}
.cdo-table-blue th {background:#3498db;  color:#fff}
.cdo-table-orange th {background:#e67e22; color:#fff}
.cdo-table-red th {background:#e74c3c; color:#fff}
.cdo-table-grey th{background:#95a5a6; color:#fff}
.cdo-table-white th{background:#fff; text-shadow:none; border-bottom: 1px solid #e6e6e6; border-top: 1px solid #e6e6e6;}
table tr.even td,table tr.odd td {background-color:#fff;}
table tr td.highlight,.table-black table tr th {background-color:#f9f9f9;}


/*================= LIST =================*/
ul.square li ul, ul.circle li ul, ul.disc li ul {list-style: inherit;}
ul.square {list-style-type: square; list-style-position:inside}
ul.circle {list-style-type: circle; list-style-position:inside}
ul.disc {list-style-type: disc; list-style-position:inside}
ul.nobullet {list-style: none; padding-left:0;}
ul.inlineblock{list-style:none; padding-left:0;}
ul.inlineblock li{display:inline-block}
ul.children{list-style-type:none; margin:0 0 0 20px}

ul.arrow, ul.check, ul.nobullet, ul.square_check {list-style: none; padding-left:0; line-height:26px; margin-bottom:20px; margin-left:0}

ul.arrow li:before,
ul.check li:before,
ul.square_check li:before{font-family: 'FontAwesome'; background:none;width:auto; height:auto; font-style:normal;  font-size:12px; margin-right:9px; position:relative; top:-1px;}

ul.arrow li:before {content: "\f101";}
ul.arrow ul.children{list-style-type:none; margin-left:0}
ul.check li:before {content: "\f058";}
ul.square_check li:before {content: "\f046";}


ul.arrow li a, ul.arrow li a:visited,
ul.check li a, ul.check li a:visited,
ul.square_check li a, ul.square_check li a:visited   {color:#292929; text-decoration:none;}

ul.arrow li a:hover,
ul.check li a:hover,
ul.square_check a:hover{color:#7b7b7b; text-decoration:none;}


/*================= DROPCAP =================*/
.cdo-dropcap{
	text-align: center;
	font-size: 52px;
	line-height:30px;
	float: left;
	margin: 13px 12px 0 0;
	padding: 0;
}
.cdo-dropcap.square, .cdo-dropcap.round{
	width: 48px;
	height: 48px;
	color: #fff;
	font-size: 38px;
	line-height: 48px;
	margin: 8px 12px 0 0;
	background: #272727;
}
.cdo-dropcap.round {
	-webkit-border-radius: 500px;
	-moz-border-radius: 500px;
	border-radius: 500px;
}


/*================= PULLQUOTE =================*/
.cdo-pullquote-right, .cdo-pullquote-left {
	float:right;
	font-family:"Goudy Bookletter 1911", serif;
	font-size:18px;
	line-height:28px;
	letter-spacing:0;
	margin-bottom:0;
	margin-top:9px;
	margin-left:0px;
	padding-left:15px;
	width:50%;
	font-style:italic;
	line-height:26px;
	border-left:2px solid #ccc;
}
.cdo-pullquote-left {
	border-right:2px solid #ccc;
	border-left:none;
	float:left;
	margin-left:10px;
	margin-right:15px;
	padding-right:0px;
	padding-left:0;
}

/*================= Banner Slider =================*/
.cdo-banner-container .title-section{margin-bottom:0; text-align:left}
.cdo-banner-container .title-section:after{background:transparent}
.cdo-banner{width:auto;}
.banner-item{
	position:relative;
	min-height: 200px;
    padding: 15px 20px;
    margin-bottom: 20px;
	background-size:cover !important;
	background-position:top right !important
}
.cdo-banner.type2 .banner-item{
	background-repeat:repeat !important;
	background-position:center;
	background-size:contain !important;
}
.item-text{
	letter-spacing:2px;
	font: 35px "Montserrat";
	font-weight:700;
	text-transform:uppercase;
	margin-bottom:10px;
}

.cdo-banner.type2 .item-text{
	text-align:center;
	font-size:20px;
	margin-top:30px;
	color:#fff;
}

.cdo-banner.type2 .col-sm-7{width:100%;}

.title-white .item-text{color:#fff;}

.item-text2 {
    background-color: #ffffff;
    padding: 10px;
    text-align: center;
    color: #292929;
	font: 35px "Montserrat";
	font-weight:700;
	text-transform:uppercase;
}
.cdo-banner.type2 .item-text2{
    background:transparent;
    padding:0px;
	margin-bottom:10px;
	color:#fff;
}

.item-text3{
	text-align:left;
	text-transform: uppercase;
    font: 15px "Montserrat";
	font-weight:700;
    color: #fff;
    letter-spacing: 2px;
    cursor: pointer;
}
.cdo-banner.type2 .item-text3{
	text-align:center;
}
.item-text3 a, .item-text3 a:visited{
	color:#fff;
	border-bottom: 2px solid #ffffff;
}
.item-text3 a:hover{text-decoration:none;}


.cdo-banner.owl-theme .owl-controls .owl-buttons{
	position:absolute;
	top:-49px;
	right:0;	
}
.cdo-banner.owl-theme .owl-controls .owl-buttons div{
	border-radius:0;
	-webkit-border-radius:0px;
    -moz-border-radius:0px;
	opacity:1;
	background:#949494;
	text-transform:uppercase;
	padding: 3px 10px;
	margin:0;
	line-height:17px;
}

.cdo-banner.owl-theme .owl-controls .owl-buttons .owl-prev{margin-right:5px;}
.cdo-banner .owl-prev:hover, .cdo-banner .owl-next:hover{background:#292929 !important;}

/*================= PRODUCT BY ID =================*/
.cdo-product-grid {
  position: relative;
  margin: 0 auto;
  width: 100%;
  list-style: none;
  text-align: center;
}
.cdo-product-grid figure {
  position: relative;
  float: left;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  text-align: center;
  cursor: pointer;
}
.cdo-product-grid figure img {
  position: relative;
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.cdo-product-grid figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cdo-product-grid figure figcaption::before,
.cdo-product-grid figure figcaption::after {
  pointer-events: none;
}
.cdo-product-grid figure figcaption,
.cdo-product-grid figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.cdo-product-grid figure figcaption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}
.cdo-product-grid figure h2 {
  word-spacing: -0.15em;
  font-weight: 300;
}
.cdo-product-grid figure h2 span {
  font-weight: 800;
}
.cdo-product-grid figure h2,
.cdo-product-grid figure p {
  margin: 0;
}
.cdo-product-grid figure p {
  letter-spacing: 1px;
  font-size:16px;
  text-align:right;
}

figure.effect-zoe figcaption {
  top: auto;
  bottom: 0;
  padding: 1em;
  height: 4.0em;
  background: #fff;
  color: #3c4a50;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  border: solid 1px #f0f0f0;
}
figure.effect-zoe h2 {
  float: left;
}
figure.effect-zoe p.icon-links a {
  float: right;
  color: #3c4a50;
  font-size: 1.4em;
}
figure.effect-zoe:hover p.icon-links a:hover,
figure.effect-zoe:hover p.icon-links a:focus {
  color: #252d31;
}
figure.effect-zoe h2,
figure.effect-zoe p.icon-links a {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
}
figure.effect-zoe p.icon-links a span::before {
  display: inline-block;
  padding: 8px 10px;
  font-family: 'feathericons';
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-eye::before {
  content: '\e000';
}
.icon-paper-clip::before {
  content: '\e001';
}
.icon-heart::before {
  content: '\e024';
}
figure.effect-zoe h2 {
  display: inline-block;
}
figure.effect-zoe:hover p.description {
  opacity: 1;
}
figure.effect-zoe:hover figcaption,
figure.effect-zoe:hover h2,
figure.effect-zoe:hover p.icon-links a {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
figure.effect-zoe:hover h2 {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
figure.effect-zoe:hover p.icon-links a:nth-child(3) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
figure.effect-zoe:hover p.icon-links a:nth-child(2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
figure.effect-zoe:hover p.icon-links a:first-child {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

figure.effect-zoe figcaption .add_to_cart_inline{

	padding:0 !important;
	border:0 !important;
}

figure.effect-zoe figcaption .add_to_cart_inline .button{display:none;}
figure.effect-zoe p.icon-links del, figure.effect-zoe p.icon-links ins{font-size:16px; display:block}
figure.effect-zoe p.icon-links ins{text-decoration:none;}
figure.effect-zoe p.icon-links del{margin-top:-15px;}


.bow-products-content .cdo-product-grid figure {
  margin: 0 auto;
}
.bow-products-section h1.top-arrivals {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .bow-products-section h1.top-arrivals {
    margin-top: 100px;
    margin-bottom: 40px;
  }
}
.bow-products-section .content-arrivals-style {
  background-color: #f5f5f5;
  border: solid 1px #f0f0f0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.bow-products-section .content-arrivals-style a {
  /*display: block;*/
}

.bow-products-section .content-arrivals-style:hover {
  opacity: 0.8;
  cursor: pointer;
}
.bow-products-section .content-arrivals-style .img-arrivals {
  text-align: center;
  padding: 25px;
}
.bow-products-section .content-arrivals-style .img-arrivals h3 {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform:uppercase;
  font-weight:700;
}

.bow-products-section a{text-decoration:none;}
.bow-products-section .custom-arrivals a.button, .bow-products-section .custom-arrivals a.added_to_cart {
	background-color: #f4cd59;
	color: #ffffff;
	padding: 15px 30px;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	border:0;
	text-decoration:none;
	text-transform:uppercase;
	font-weight:400;
	letter-spacing:1px;
	margin:50px 0px;
}
.bow-products-section .custom-arrivals a.button.added{display:none;}
.bow-products-section .custom-arrivals a.button:hover, .bow-products-section .custom-arrivals a.added_to_cart:hover {
	background-color: #f1bf29;
	color: #ffffff;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	border:0
}

.bow-products-section .custom-arrivals .amount{
	font-family: 'Montserrat', sans-serif;
    font-size: 27px;
	font-weight:400;
    padding-bottom: 20px;
}
.bow-products-section .custom-arrivals del .amount{font-size:18px;}
.bow-products-section .custom-arrivals ins{text-decoration:none;}
.bow-products-section .custom-arrivals .add_to_cart_inline{padding:10px 0 0 0 !important; border:0 !important; margin:0 !important;}
.bow-products-section .custom-arrivals .center-hr{
	margin-top:0;
}

.bow-products-section .custom-arrivals .owl-controls{
	margin:0 0 16px 0;
	padding:0;

}
.bow-products-section .custom-arrivals .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.bow-products-section .custom-arrivals  .owl-controls .owl-page span{
	display: block;
	width: 12px;
	height: 12px;
	margin: 0px 7px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #f4cd59;
}

.bow-products-section .custom-arrivals  .owl-controls .owl-page.active span,
.bow-products-section .custom-arrivals  .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}

.bow-products-section .custom-arrivals .item {
  margin: 3px;
}
.bow-products-section .custom-arrivals .item img {
  display: block;
  margin: 0 auto;
  text-align: center;
  height: auto;
}

.bow-products-section .custom-arrivals .product-desc{
	line-height:20px;
	text-align:center;
	margin-bottom:20px;
}

.bow-products-section .pull-left{text-align:center; display:block; width:100%;}

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}
/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}
.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}
/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}
.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}
/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}
.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}
/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}
.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}
/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}


/*================= IMAGE WITH TEXT =================*/
.cdo-image-text{
	width:100%;
	height:auto;
	overflow:hidden;
	position:relative;
	margin:0 0;
}
.text-table-bow-con{
	position: absolute;
	top: 0px;
	width: 100%;
	height: 100%;
}
.cdo-image-text .text-table-bow {
    display: table;
    width: 100%;
    height: 100%;
}

.cdo-image-text .text-center-bow {
    display: table-cell;
    vertical-align: middle;
    margin: 0px auto;
    text-align: center;
}

.text-table-bow .text-center-bow h3 {
	font-family:'Lato';
    text-transform: uppercase;
    letter-spacing: 20px;
    font-size: 30px;
	color:#fff;
	font-weight:500;
}

.col-sm-6 .text-table-bow .text-center-bow h3 {
	font-size:18px;
	line-height:25px;
	letter-spacing:2px;
	font-weight:400;
	margin-top:0;
}

.text-table-bow .text-center-bow h2{
	text-transform: uppercase;
    font-size: 90px;
	line-height:90px;
	font-weight:700;
	letter-spacing: 9px;
	color:#fff;
}

.col-sm-6 .text-table-bow .text-center-bow h2{
	 font-size: 35px;
	 line-height:38px;
	 letter-spacing:2px;
	 margin-top:0
}

.text-table-bow .text-center-bow a, .text-table-bow .text-center-bow span {
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-size: 20px;
}

.col-sm-6 .text-table-bow .text-center-bow a, .col-sm-6 .text-table-bow .text-center-bow span {
	font-size:15px;
	letter-spacing:2px;
}

.cdo-image-text.vertical .text-table-bow .text-center-bow h3 {
	font-size:24px;
	letter-spacing:1px;
	text-transform:capitalize;
}

.cdo-image-text.vertical .text-center-bow h2{
	text-transform:capitalize;
    font-size: 60px;
	line-height:60px;
	letter-spacing:2px;
}
.cdo-image-text.vertical.custom .text-center-bow h2{
	text-transform:capitalize;
    font-size: 50px;
	line-height:50px;
	letter-spacing:2px;
}
.cdo-image-text.vertical .text-table-bow .text-center-bow a, .cdo-image-text.vertical .text-table-bow .text-center-bow span {
    text-transform:capitalize;
    letter-spacing:1px;
    font-size: 20px;
}

.cdo-box-text{
	background:#f4cd59;
	text-align:center;
	margin:0px 0;
	position:relative;
}

.cdo-box-text .text-table-bow {
    display: table;
    width: 100%;
    height: 100%;
}

.cdo-box-text .text-center-bow {
    display: table-cell;
    vertical-align: middle;
    margin: 0px auto;
    text-align: center;
}

.cdo-box-text .text-table-bow-con{
	position: absolute;
	top: 0px;
	width: 100%;
	height: 100%;
}

.cdo-box-text .text-table-bow .text-center-bow h3 {
	font-family: 'Montserrat', sans-serif;
	font-size:25px;
	letter-spacing:2px;
	font-weight:700;
	color:#292929
}

.cdo-box-text .text-table-bow .text-center-bow .intro{
	font-size:20px;
}

.cdo-box-text .text-table-bow .text-center-bow a, .cdo-box-text .text-table-bow .text-center-bow span {
    color: #292929;
    text-transform:capitalize;
    letter-spacing:1px;
    font-size:14px;
}
.cdo-box-text form{width:90%; margin:20px auto 0 auto; text-align:center}
.cdo-box-text  .wpcf7-submit{width:100%; font-size:14px;}


/*================= HEADING =================*/
.title-section{
	text-transform:uppercase;
	font-weight:700;
	font-size:35px;
	letter-spacing:2px;
	text-align:center
}
.title-section:after{content:''; width:95px; display:block; margin:6px auto 0 auto; height:7px; background:#292929;}
.subtitle-link{text-transform:uppercase; text-align:center; letter-spacing:2px}
.title-section.text-left{margin-left:15px;}
.title-section.text-left:after{margin:6px 0 0 0}
.title-section.text-left + .subtitle-link{text-align:left; padding-left:15px}
.title-section.text-right{margin-right:15px;}
.title-section.text-right:after{margin:6px 0 0 0}
.title-section.text-right + .subtitle-link{text-align:right; padding-right:15px}

/*================= PRODUCT SLIDER =================*/
.bow-featured-wrap .product-grid{}
.bow-featured-wrap .title-section-container{
	text-align:center;
	margin-bottom:35px;
}
.bow-featured-wrap .subtitle-section{
	text-transform:uppercase;
	letter-spacing:2px;
}
.bow-featured-wrap .woocommerce ul.products li{width:100% !important;}
@media only screen and (min-width: 768px) and (max-width: 959px) {
.bow-featured-wrap .woocommerce ul.products li.product{width:100% !important;}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
.bow-featured-wrap .woocommerce ul.products li.product{width:100% !important;}
}

.cdo-products-slider{display:none;}
.cdo-products-slider .col-sm-12{}
.cdo-products-slider i {
    font-size: 20px;
	line-height:45px;
}
.woocommerce ul.products.cdo-products-slider li.product .onsale {
    margin: 0;
    left: auto;
    right: 15px;
}
.cdo-products-slider .owl-controls {
    position: absolute;
    top: 30%;
    width: 100%;
    margin-top: 0 !important;
}
.cdo-products-slider .owl-controls .owl-buttons .owl-prev,
.cdo-products-slider .owl-controls .owl-buttons .owl-next {
    position: absolute;
    margin-right: -10px;
    top: 0;
    right: 0;
	text-align:center;
	width:45px;
	height:45px;
	padding:0;
	border-radius:45px;
}

.cdo-products-slider .owl-controls .owl-buttons .owl-prev {
    margin-right:0px;
	margin-left:-10px;
	right:auto;
    left: 0;
}

/*================= WRAPBOX =================*/
.extendfull{
	margin: 0 -50% 0 -50%!important;
    position: relative;
    width: auto;
	overflow: hidden;
}


.lookbook-top {
  padding: 10px;
  background: -webkit-linear-gradient(90deg, #b9a2fd 10%, #9572fe 90%);
  /* Chrome 10+, Saf5.1+ */
  background: -moz-linear-gradient(90deg, #b9a2fd 10%, #9572fe 90%);
  /* FF3.6+ */
  background: -ms-linear-gradient(90deg, #b9a2fd 10%, #9572fe 90%);
  /* IE10 */
  background: -o-linear-gradient(90deg, #b9a2fd 10%, #9572fe 90%);
  /* Opera 11.10+ */
  background: linear-gradient(90deg, #b9a2fd 10%, #9572fe 90%);
  /* W3C */
}
.lookbook-top h1 {
  font-size: 30px;
  text-align: center;
  font-size: 70px;
  line-height:70px;
  padding-top: 100px;
  vertical-align: bottom;
  color: white;
  font-weight:700;
  text-transform:uppercase;
}
@media (min-width: 768px) {
  .lookbook-top h1 {
    font-size: 100px;
	line-height:100px
  }
}
.lookbook-bottom h1 {
  font-size: 30px;
  text-align: center;
  font-size: 70px;
  line-height:70px;
  color: #292929;
  font-weight:700;
  text-transform:uppercase;
}
@media (min-width: 768px) {
  .lookbook-bottom h1 {
    font-size: 100px;
	line-height:100px;
  }
}
.lookbook-bottom h4 {
  font-family: 'times-new-roman';
  font-style: italic;
  font-weight: bold;
  text-align: center;
  font-size: 50px;
  line-height:52px;
  color: #9640d9;
}
.lookbook-footer {
  margin: 20px 0;
  margin-top: 0px;
}
@media (min-width: 768px) {
  .lookbook-footer {
    margin-top: 200px;
  }
}
.lookbook-footer .look-footer {
  padding: 10px;
  background: -webkit-linear-gradient(90deg, #b9a2fd 10%, #41deed 90%);
  /* Chrome 10+, Saf5.1+ */
  background: -moz-linear-gradient(90deg, #b9a2fd 10%, #41deed 90%);
  /* FF3.6+ */
  background: -ms-linear-gradient(90deg, #b9a2fd 10%, #41deed 90%);
  /* IE10 */
  background: -o-linear-gradient(90deg, #b9a2fd 10%, #41deed 90%);
  /* Opera 11.10+ */
  background: linear-gradient(90deg, #b9a2fd 10%, #41deed 90%);
  /* W3C */
}
.lookbook-footer .look-footer a {
  font-size: 30px;
  vertical-align: top;
  color: white;
  font: 70px "Montserrat";
  line-height:100px;
  text-transform: uppercase;
  font-weight:700;
  display: block;
  text-align: center;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.lookbook-footer .look-footer a:hover {
  text-decoration: none;
  background-color: #B9A2FD;
}
@media (min-width: 768px) {
  .lookbook-footer .look-footer a {
    font-size: 100px;
	line-height:142px;
  }
}
.lookbook-content {
  padding-top: 20px;
}
.lookbook-content h4 {
  font-family: 'times-new-roman';
  font-style: italic;
  font-weight: bold;
  text-align: center;
  font-size: 30px;
  color: #292929;
}
.lookbook-content.look-pink h1 {
  color: #FDB3BB;
  text-align: center;
  letter-spacing: 3px;
  font-weight:700;
  font-size:35px;
  line-height:37px;
  margin-top:0
}
.lookbook-content.look-orange h1 {
  color: #FFC035;
  text-align: center;
  letter-spacing: 3px;
  font-weight:700;
  font-size:35px;
  line-height:37px;
  margin-top:0
}
.lookbook-content.look-green h1 {
  color: #02B594;
  text-align: center;
  letter-spacing: 3px;
  font-weight:700;
  font-size:35px;
  line-height:37px;
  margin-top:0
}
.lookbook-content .cdo-button {
  margin: 20px auto;
  text-align: center;
  padding: 10px 30px;
  width:auto;
}
.lookbook-content .lookbook-color {
  width: 100%;
  height: 400px;
  position: relative;
  padding: 40px;
}
.lookbook-content .lookbook-color .lookbook-white {
  background-color: #ffffff;
  height: 100%;
}
.lookbook-content .lookbook-color .lookbook-white .img-abs-look {
  position: absolute;
  top: 20%;
  right: 0;
}
.lookbook-content .lookbook-color.look-pink {
  background: -webkit-linear-gradient(90deg, #fc8492 10%, #fda1ac 90%);
  /* Chrome 10+, Saf5.1+ */
  background: -moz-linear-gradient(90deg, #fc8492 10%, #fda1ac 90%);
  /* FF3.6+ */
  background: -ms-linear-gradient(90deg, #fc8492 10%, #fda1ac 90%);
  /* IE10 */
  background: -o-linear-gradient(90deg, #fc8492 10%, #fda1ac 90%);
  /* Opera 11.10+ */
  background: linear-gradient(90deg, #fc8492 10%, #fda1ac 90%);
  /* W3C */
}
@media (max-width: 768px) {
  .lookbook-content .lookbook-color.look-pink {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .lookbook-content .lookbook-color.look-pink img {
    width: 100%;
  }
}
.lookbook-content .lookbook-color.look-orange {
  background: -webkit-linear-gradient(90deg, #fed988 10%, #ffc035 90%);
  /* Chrome 10+, Saf5.1+ */
  background: -moz-linear-gradient(90deg, #fed988 10%, #ffc035 90%);
  /* FF3.6+ */
  background: -ms-linear-gradient(90deg, #fed988 10%, #ffc035 90%);
  /* IE10 */
  background: -o-linear-gradient(90deg, #fed988 10%, #ffc035 90%);
  /* Opera 11.10+ */
  background: linear-gradient(90deg, #fed988 10%, #ffc035 90%);
  /* W3C */
}
@media (max-width: 768px) {
  .lookbook-content .lookbook-color.look-orange {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .lookbook-content .lookbook-color.look-orange img {
    width: 70%;
  }
}
.lookbook-content .lookbook-color.look-green {
  background: -webkit-linear-gradient(90deg, #95f58a 10%, #88f37c 90%);
  /* Chrome 10+, Saf5.1+ */
  background: -moz-linear-gradient(90deg, #95f58a 10%, #88f37c 90%);
  /* FF3.6+ */
  background: -ms-linear-gradient(90deg, #95f58a 10%, #88f37c 90%);
  /* IE10 */
  background: -o-linear-gradient(90deg, #95f58a 10%, #88f37c 90%);
  /* Opera 11.10+ */
  background: linear-gradient(90deg, #95f58a 10%, #88f37c 90%);
  /* W3C */
}
@media (max-width: 768px) {
  .lookbook-content .lookbook-color.look-green {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .lookbook-content .lookbook-color.look-green img {
    width: 70%;
  }
}

/*================= TESTIMONIAL =================*/
.cdo-testimonial-section blockquote{border:0;  padding:20px; background:#f5f5f5; border-radius:10px;}
.cdo-testimonial-section .testi-text {
   
    letter-spacing: 0;
	
}
.cdo-testimonial-section .testi-text p:before,
.cdo-testimonial-section .testi-text p:after{content:'\0022'; padding-right:5px}
.cdo-testimonial-section .testi-text p:after{padding-left:5px;}

.cdo-testimonial-section .testi-text p{font-size:18px; line-height:24px;  font-style: italic;
    text-align: center;
    font-family: 'Georgia', "times-new-roman";}
.testi-image, .testi-name{text-align:center;}
.testi-image img{width:60px; border-radius:60px}

.cdo-testimonial-section > div{margin-bottom:30px;}
.cdo-testimonial-section .company-name{color:#323232}

/*================= TEAM =================*/
.cdo-team-section img{display:block; margin:0 auto}
.cdo-team-section h5{margin-bottom:0}
.cdo-team-section > div{margin-bottom:30px;}
.cdo-team-section h5,
.cdo-team-section p{text-align:center}
.cdo-team-section i{font-size:20px; margin:0 5px}

/*================= PORTFOLIO =================*/
#cdo-pffilter{margin-bottom:30px;}
#cdo-pffilter ul li{display:inline-block; margin-right:10px}
#cdo-pffilter ul li a{text-decoration:none;}
#cdo-pffilter ul li a.selected{font-weight:700}
.cdo-pf-container{clear:both;}
.pf-title{font-size:18px;}
.cdo-pf-container figure{position:relative;}
.cdo-pf-container > div{margin-bottom:30px;}
.pf-button-container{
	width: 100%;
	height: 100%;
	position:absolute;
	opacity: 0;
	visibility:hidden;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	top: 0;
	text-align:center;
	color:#fff;
	background-color: #f5f5f5;
	z-index:3;
}

.pf-button{
	width: 100%;
	height: 100%;
	display:table;
}

.pf-button-icon{
	width: 100%;
	height: 100%;
	display:table-cell;
	vertical-align:middle;
}

.cdo-pf-container figure:hover .pf-button-container {
    opacity: 1;
	visibility:visible;
}

.pf-button a {
    font-size: 20px;
    background: #d6d6d6 !important;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 0 !important;
    white-space: nowrap;
    color: #292929;
    margin: 0 5px 0 0 !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    box-shadow: none;
    -webkit-box-shadow: none;
    text-shadow: none;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50px !important;
}

.pf-button a:hover {
	color:#292929;
	opacity:.5;
	border:0 !important;
}