@import url('https://fonts.googleapis.com/css?family=Esteban|Montserrat|Open+Sans|Source+Sans+Pro');
@import url('normalize.css');


/*
	Theme Name: Name.
	Created : DD MM YYYY
	Updated : None
	Version: 1.0

*/

/* ========================================================================== */
/* ========================================================================== */
							/* [Table of contents] */
/* ========================================================================== */
/* ========================================================================== */
    
/*	

	1. BASE MODULE.	
		1.1. RESET
		1.2. TYPOGRAPHY
		1.3. BUTTONS
		1.4. BOOTSTRAP ELEMENTS RESET
		1.5  LOADER

	2. LAYOUT MODULE.
		2.1 SPACING AND ALIGNMENT
		2.2 HEADER
		2.3 CONTENT
		2.4 SIDEBAR
		2.5 FOOTER

	3. PAGES MODULE.
		3.1 COMMON STYLES
		.....

	4. COMPONENTS MODULE.
		4.1 SCROLLING TOP
		4.2 TESTIMONIAL SLIDER
		......
		
	5. MEDIA QUERIES MODULE.
		5.1 TYPOGRAPHY BREAKPOINTS VIEW
		5.2 THEME BREAKPOINTS VIEW
		
*/ 

/* ==========================================================================
   	1. BASE MODULE.
   ========================================================================== */

/* ================== 
	1.1. RESET. 
   ================== */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
    overflow-x: hidden;
}
ol {
	/*list-style: none;*/
    font-size:14px;
    padding-left:17px;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
    /*color: white;*/
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

/* ================== 
	1.2. TYPOGRAPHY. 
   ================== */
h1{
    font-size: 24px;
	font-family: 'Montserrat', sans-serif;
}

h2{
    font-size: 22px;
	font-family: 'Open Sans', sans-serif;
}

h3{
    font-size: 20px;
    font-family: 'Source Sans Pro', sans-serif;
}

h4{
    font-size: 18px;
	font-family: 'Open Sans', sans-serif;
}

h5{
    font-size: 16px;
	font-family: 'Montserrat', sans-serif;
}

h6{
    font-size: 18px;
	font-family: 'Open Sans', sans-serif;
}

p{
    font-size: 14px;
	font-family: 'Open Sans', sans-serif;
}

/* ================== 
	1.3. BUTTONS. 
   ================== */
.btn {
    position:center;
  display: inline-block;
  padding: 6px 18px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.7;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn-custom {
  color: #FFF;
  background-color: #FF404C;
  border-color: #FF404C;
  transition: 0.3s;
}
.btn-custom:focus,
.btn-custom.focus {
  color: #FFF;
  background-color: #ff1a29;
  border-color: #ff1a29;
}
.btn-custom:hover {
  color: #FFF;
  background-color: #ff1a29;
  border-color: #ff1a29;
}
.btn-custom:active,
.btn-custom.active,
.open > .dropdown-toggle.btn-custom {
  color: #FFF;
  background-color: #ff1a29;
  border-color: #ff1a29;
}

.btn-info {
  color: #333;
  background-color: #cccccc;
  border-color: #cccccc;
  transition: 0.3s;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-info:hover {
  color: #fff;
  background-color: #595959;
  border-color: #595959;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #595959;
  border-color: #595959;
}

.btn-more {
  color: #FFF;
  background-color: #FF404C;
  border-color: #FF404C;
  transition: 0.3s;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
    margin-top: 10px;
}
.btn-more:focus,
.btn-more.focus {
  color: #FFF;
  background-color: #FF404C;
  border-color: #FF404C;
}
.btn-more:hover {
  color: #FFF;
  background-color: #FF404C;
  border-color: #FF404C;
}
.btn-more:active,
.btn-more.active,
.open > .dropdown-toggle.btn-default {
  color: #FFF;
  background-color: #FF404C;
  border-color: #FF404C;
}


/* ===============================
	1.4. BOOTSTRAP ELEMENTS RESET. 
   =============================== */
hr.center{
    width: 80px;
    border-top: 3px solid #FF404C;
    margin: 15px auto 15px auto;
}
/* ================== 
	1.5. LOADER. 
   ================== */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1031;
  background-color: #F2F2F2;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 3px solid transparent;
  border-top-color: #FF404C;
  border-radius: 50%;
  animation: loader 2s linear infinite;
}
#loader::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 3px solid transparent;
  border-top-color: #FF404C;
  border-radius: 50%;
  animation: loader 3s linear infinite;
}
#loader::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid transparent;
  border-top-color: #FF404C;
  border-radius: 50%;
  animation: loader 1.5s linear infinite;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   	2. LAYOUT MODULE.
   ========================================================================== */


/* ================== 
	2.1. SPACING AND ALIGNMENT. 
   ================== */
.wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: -70px;
}

.main{
    margin: 0px 0px 50px 0px;
}

.no-margin-bottom{
    margin: 50px 0px 0px 0px;
}

.section{
    padding: 15px;
    margin: 0px auto 0px auto;
}

.section-full{
    padding: 15px;
    padding: 0px 15px 0px 15px;
    margin: 0px auto 0px auto;
}

.color-background {
    background-image: url("../img/images/medical/image45.jpg");
    padding: 40px 0px 40px 0px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top:40px;
}
.color-background1 {
    padding: 40px 0px 40px 0px;
    background: #f9f9f9;
    margin-top: -50px;
}

.color-background2 {
    padding: 40px 0px 40px 0px;
    background: #f9f9f9;
    margin-top: -60px;
    margin-bottom: -65px;
}

@media (min-width: 1200px) {
.section {
    width: 1200px;
}
    
.section-full {
    width: 1800px;
}
	
hr.top-line{
	width: 1170px;
}
 
}
hr.top-line{
    border-top: 1px solid #fff;
    margin: 0px auto 0px auto;
}
 

/* ================== 
	2.2. HEADER. 
   ================== */
.main-nav .section{
	padding: 0px;
}

.header{
	width: 100%;
	background: transparent;
	margin-bottom: 60px;
  
}

.top-header{
    margin-top: -15px;
    height: 50px;
    transition: 0.5s;
    background: #0798BC;
	padding: 15px 0px 15px 0px;
	transition: 0.3s;
}

.content p{
	color: #FFF;
	transition: 0.3s;
}

.leftside{
	float: left;
}

.rightside{
	float: right;
}

.social-items{
	display: inline-block;
	margin-right: 10px;
}

.social-items .fa{
	font-size: 16px;
	transition: 0.3s;
}

.social-items .fa:hover{
	color: #2D527C;
}

.location-top{
	display: inline-block;
	margin-right: 10px;
}

.hero {
  position: relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  text-align: center;
  color: #fff;
  padding-top: 280px;
  min-height: 750px;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
}
.hero h1 span {
  font-size: 60px;
  color: #1abeff;
  line-height: 1.5;
  font-family: 'Anton', sans-serif;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.main-hero{
    margin-top: -20px;
}

.button-container{
    margin: 30px 0px 30px 0px;
}

.navbar-brand{
	width: 150px;
}

.navbar-brand img{
	width: 100%;
}

.main-slider{
    z-index: 0;
}

.main-nav{
    z-index: 2; 
}

.main-header{
    height: 100%;
    background: transparent;
}

/* ================== 
	2.4. SIDEBAR. 
   ================== */
.sidebar{
    height: 100%;
    clear: both;
}

/* ================== 
	2.5. FOOTER. 
   ================== */
.footer {
    width: 100%;
    background: #333;
    height: 420px;
}

.footer .main {
    margin: 20px 0px 50px 0px;
}

.footer .main .section {
    padding: 60px 15px 0px 15px;
}

.footer a:link {
    text-decoration: none;
    color: #d9d9d9;
}
.footer a:visited {
    text-decoration: none;
    color: #d9d9d9;
}

.footer a:hover {
    text-decoration: none;
    color: #fff;
}

.footer a:active {
    text-decoration: none;
    color: #d9d9d9;
}

hr.line-footer {
    border-top: 1px solid #595959;
    margin: 30px auto 30px auto;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}
.footer-logo img {
    width: 100%;
}

.about-footer p {
    color: #d9d9d9;
}

.social-footer {
    margin-top: 30px;
}

.social-footer h6 {
    color: #d9d9d9;
}

.social-items{
    display: inline-block;
    margin: 10px 5px 0px 0px;
}

.social-items .fa{
    color: #fff;
	font-size: 18px;
	transition: 0.3s;
}

.social-items .fa:hover{
    color: #fff;
}

.icon-fa{
    display:inline-block !important;
    font-size: 25px !important;
    line-height: 32px !important;
    background: #595959;
    color: #FFF;
    width: 40px !important;
    height: 40px !important;
    text-align: center;
    vertical-align: bottom;
    border-radius: 5px !important;
    float: left;
	border: solid 1px #595959;
	transition: 0.3s !important;
}

.icon-fa:hover{
    background: #FF404C;
	border: solid 1px #FF404C;
}

.footer-categories h6{
	color: #FF404C;
}

.categories-list {
    margin: 10px 15px 0px 0px !important;
    display: inline-block;
    font-size: 14px !important;
    font-family: 'Open Sans', sans-serif;
    line-height: 2;
}
.categories-list-2{
	margin-top: 10px;
	display: inline-block;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
}

.left-footer{
	float: left;
}

.right-footer{
	float: right;
	color: #595959;
}

.left-footer p{
	color: #d9d9d9;
	font-size: 13px;
}

.right-footer p{
	color: #d9d9d9;
	font-size: 13px;
	transition: 0.3s;
}

.subscribe-footer h6{
	color: #FF404C;
	margin-bottom: 10px;
}

.subscribe-footer p{
	color: #d9d9d9;
}

.newsletter-box {
	margin: 15px 0px 15px 0px;
}

.newsletter-box form {
  	display: flex;
  	align-items: center;
}

.newsletter-box .input {
  	width: 75%;
  	height: 38px;
  	background: #FDFCFB;
  	border: none;
  	font-family: inherit;
  	color: #737373;
  	letter-spacing: 1px;
  	text-indent: 5%;
  	font-size: 13px;
	font-family: 'Open Sans', sans-serif;
}

.newsletter-box .button {
  	width: 25%;
  	height: 38px;
  	background-color: #FF404C;
  	border: none;
  	border-radius: 0 5px 5px 0;
  	font-family: inherit;
  	font-weight: 500;
  	color: inherit;
  	letter-spacing: 1px;
  	cursor: pointer;
  	color: #FFF;
  	font-size: 13px;
	font-family: 'Open Sans', sans-serif;
}

p.cursive{
	font-style: italic;
}

/* ==========================================================================
   	3. PAGES MODULE.
   ========================================================================== */

/* ================== 
	3.1. THEME PAGES COMMON STYLES. 
   ================== */
.pages-header {
    background-image: url(../img/images/medical/1.jpg);
    /*background: #012C40;*/
    height: 350px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: 60px;
}

.section-heading{
    width: 100%;
    position: absolute;
    bottom: 0;
}

.span-title h1{
    color: #FFF;
}

.span-title p{
    color: #FFF;
}

.section-title h2{
    text-align: center;
}

.section-title{
    margin-bottom: 30px;
    padding: 0px 120px 0px 120px;
}

.section-title p{
    text-align: center;
    color: #8C8C8C;
    margin-top: 10px;
}

/* ================== 
	3.2. ABOUT PAGE. 
   ================== */

/* ================== 
	3.3. PAGE NAME. 
   ================== */

/* ================== 
	3.4. PAGE NAME.  
   ================== */


/* ==========================================================================
   	4. COMPONENTS MODULE.
   ========================================================================== */

/* ===================== 
	4.1. SCROLLING TOP. 
   ==================== */
@media only screen and (min-width: 1024px) {
  main p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(255, 64, 76, 1) url(../img/master/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  border-radius: 5px;  
  background-color: #FF404C;    
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #CC0023;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  } 
}

@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}

/* ======================== 
	4.2 TESTIMONIAL SLIDER.
   ======================== */


/* ==========================================================================
   	5. MEDIA QUERIES MODULE.
   ========================================================================== */

/* ================================== 
	5.1. TYPOGRAPHY BREAKPOINTS VIEW. 
   ================================== */
@media (min-width:576px) {
h1 {
    font-size: 24px;
} 

h2 {
    font-size: 22px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}
    
}

@media (min-width:768px) {
h1 {
    font-size: 26px;
  }  
    
h2 {
    font-size: 24px;
    line-height: 1.2;
  }
    
h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}
    
}

@media (min-width:992px) {
h1 {
    font-size: 32px;
  }  
    
h2 {
    font-size: 28px;
  }
    
h3 {
    font-size: 26px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}
    
}

/* ============================ 
	5.2 THEME BREAKPOINTS VIEW
   ============================ */

@media (max-width:992px) {  

/* ============================ 
	1. BASE MODULE BREAKPOINTS. 
   ============================ */
	
/* ============================== 
	2. LAYOUT MODULE BREAKPOINTS. 
   ============================== */
.footer{
	height: 1100px !important;
}
	
.footer .main .section{
	padding: 40px 15px 20px 15px;
}
	
	
.center-column{
	margin: 30px 0px 30px 0px;
}
    
.sidebar{
    margin-top: 30px;
}

	
/* ============================= 
	3. PAGES MODULE BREAKPOINTS. 
   ============================= */
.pages-header{
    height: 250px; 
}
	
/* ================================== 
	4. COMPONENTS MODULE BREAKPOINTS. 
   ================================== */
}

@media (max-width:767px) {
	
/* ============================ 
	1. BASE MODULE BREAKPOINTS. 
   ============================ */

/* ============================== 
	2. LAYOUT MODULE BREAKPOINTS. 
   ============================== */
.bottom-footer{
	text-align: center;
}
	
.left-footer{
	float: none;
}

.right-footer{
	float: none;
	color: #595959;
}
	
.footer .main .section{
	padding: 40px 15px 10px 15px;
}
	
.footer-logo{
	width: 80px;
	margin-bottom: 20px;
}

	
/* ============================= 
	3. PAGES MODULE BREAKPOINTS. 
   ============================= */
.section-title{
    padding: 0px 20px 0px 20px;
}
    
/* ================================== 
	4. COMPONENTS MODULE BREAKPOINTS. 
   ================================== */


}

@media (max-width:576px) {
	
/* ============================ 
	1. BASE MODULE BREAKPOINTS. 
   ============================ */
.btn {
  padding: 4px 12px;
  font-size: 14px;
}

/* ============================== 
	2. LAYOUT MODULE BREAKPOINTS. 
   ============================== */
	
/* ============================= 
	3. PAGES MODULE BREAKPOINTS. 
   ============================= */
	
/* ================================== 
	4. COMPONENTS MODULE BREAKPOINTS. 
   ================================== */
}

@media (max-width:450px) {
	
/* ============================ 
	1. BASE MODULE BREAKPOINTS. 
   ============================ */
	
/* ============================== 
	2. LAYOUT MODULE BREAKPOINTS. 
   ============================== */
	
/* ============================= 
	3. PAGES MODULE BREAKPOINTS. 
   ============================= */
	
/* ================================== 
	4. COMPONENTS MODULE BREAKPOINTS. 
   ================================== */
}
.about-content h3 {
    font-weight: 600;
    color: #333;
    margin-left:20px;
}

.about-content h6 {
    font-style: italic;
    margin-left: 20px;
}

.about-content p {
    margin: 10px 10px 10px 20px;
    color: #808080;
    font-size: 15px;
    line-height: 1.7;
}

.about-signature {
    float: right;
    width: 200px;
    margin-right: 20px;
}

    .about-signature img {
        width: 100%;
    }
.about-image-3 img {
    width: 100%;
    box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
    border-radius: 10px;

}
.icon-boxes-shadow {
    width: 100%;
    height: 235px;
    background: #FFF !important;
    padding: 35px 15px 40px 15px;
    position: relative !important;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset !important;
}

    .icon-boxes-shadow:before, .icon-boxes-shadow:after {
        content: "";
        position: absolute;
        z-index: -1;
        -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.8);
        -moz-box-shadow: 0 0 20px rgba(0,0,0,0.8);
        box-shadow: 0 0 20px rgba(0,0,0,0.8);
        top: 0;
        bottom: 0;
        left: 10px;
        right: 10px;
        -moz-border-radius: 100px / 10px;
        border-radius: 100px / 10px;
    }

    .icon-boxes-shadow:after {
        right: 10px;
        left: auto;
        -webkit-transform: skew(8deg) rotate(3deg);
        -moz-transform: skew(8deg) rotate(3deg);
        -ms-transform: skew(8deg) rotate(3deg);
        -o-transform: skew(8deg) rotate(3deg);
        transform: skew(8deg) rotate(3deg);
    }

    .icon-boxes-shadow .fa {
        font-size: 40px;
        color: #808080;
        margin-bottom: 10px;
    }

    .icon-boxes-shadow p {
        text-align: center;
        color: #333;
    }

    .icon-boxes-shadow h3 {
        text-align: center;
        color: #333;
        font-size: 20px;
        margin-bottom: 10px;
    }
.icon-boxes-shadow {
    width: 100%;
    height: 100%;
    padding: 35px 15px 50px 15px;
}
.team-headshot img {
    width: 100%;
}

.team-headshot:hover .overlay-2 {
    opacity: 1;
}

.team-headshot .overlay-2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    margin: 0px;
    padding: 160px 20px 160px 20px;
}
.team-headshot {
    margin: 20px 0px 20px 0px !important;
}
.images-group {
    display: flex;
    flex-wrap: wrap;
}

    .images-group .image {
        width: 100%;
        cursor: pointer;
    }

.image img {
    width: 100%;
}

.lightbox {
    z-index: 1;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .lightbox .mobile {
        width: 100%;
        height: auto;
    }

    .lightbox span {
        color: white;
        cursor: pointer;
        position: absolute;
        top: 30px;
        right: 30px;
        z-index: 1;
    }

    .lightbox p {
        color: white;
        font-size: 20px;
        text-align: center;
        word-wrap: break-word;
        position: relative;
        margin: 0;
    }

    .lightbox.active {
        visibility: visible;
        opacity: 1;
    }
.promo-banner {
    margin-top: 30px;
}

    .promo-banner img {
        width: 100% !important;
    }
.shop-banner-img img {
    width: 100%;
}

.shop-front-thumbs {
    background: #FFF;
    padding: 20px;
    height: 420px;
    margin: 20px 0px 20px 0px;
}

    .shop-front-thumbs:hover {
        box-shadow: 0 0 10px rgba(204,204,204,0.6);
        -moz-box-shadow: 0 0 10px rgba(204,204,204,0.6);
        -webkit-box-shadow: 0 0 10px rgba(204,204,204,0.6);
        -o-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    }

hr.shop {
    width: 100%;
    border-top: 1px solid #ddd;
    margin: 18px auto 15px auto;
}

.shop-thumb-img {
    width: 200px;
    margin: auto;
}

.top-caption {
    margin-bottom: 10px;
    width: 200px;
    height: 60px;
}

    .top-caption h6 {
        color: #1f5fc7;
        line-height: 1.3;
        font-size: 16px;
        font-weight: 500;
    }

.bottom-caption {
    margin: 20px 0px 20px 0px;
    clear: both;
}

    .bottom-caption h6 {
        color: #333;
        line-height: 1.3;
        font-size: 16px;
        font-weight: 500;
    }

old-price {
    text-decoration: line-through;
}

.rating-box .ratingp-stars {
    display: inline-block;
    margin-right: 2px;
    font-size: 13px;
}

.bottom-caption-left {
    float: left;
}

.bottom-caption-right {
    float: right;
}

hr.more-product {
    width: 100%;
    border-top: 1px solid #e6e6e6;
    margin: 20px 0px 20px 0px;
}


.next :hover {
    cursor: pointer;
}

@media screen and (max-width: 800px) {
    .next, .prev {
        display: none !important;
    }
}

#carousel-example-generic {
    display: inline-block;
}
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 200px;
    height: 200px;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(255, 64, 76, 0.5);
    border-radius: 50%;
    margin: 0px auto 0px auto;
}
.shop-left-sidebar {
    background: #fff;
    margin-top: 20px;
    padding: 30px 20px 30px 20px;
}
    .shop-left-sidebar .search-box {
        width: 100%;
        background: #f2f2f2;
    }

        .shop-left-sidebar .search-box .search-container .form-group .input-group .form-control {
            display: block;
            width: 100%;
            height: 40px;
            padding: 6px 12px;
            font-size: 14px;
            line-height: 1.42857143;
            color: #555;
            background: #f2f2f2;
            background-image: none;
            border: none;
            border-radius: 0px;
            -webkit-box-shadow: none;
            box-shadow: none;
            -webkit-transition: none;
            -o-transition: none;
            transition: none;
        }

    .shop-left-sidebar .search-box {
        width: 100%;
        height: 40px;
        background: #ddd;
        padding: 0px;
        margin: 0px;
    }

        .shop-left-sidebar .search-box .search-container .form-group .input-group .input-group-addon {
            background: #f2f2f2;
            border: none;
            border-radius: 0px;
            height: 40px;
        }

            .shop-left-sidebar .search-box .search-container .form-group .input-group .input-group-addon .fa {
                font-size: 18px;
                color: #1f5fc7;
            }

.sidebar-header {
    margin: 20px 0px 20px 0px;
    color: #1f5fc7;
}

.inner-categories .list-group-item {
    position: relative;
    display: block;
    padding: 10px 0px;
    margin-bottom: -1px;
    background-color: #fff;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #333;
    transition: 0.3s;
}
.inner-categories .list-group-item:hover {
    color: #cccccc;
    background: #FFF;
}

    .inner-categories .list-group-item:hover .badge .fa {
        color: #cccccc;
    }

.inner-categories .list-group-item.active > .badge,
.inner-categories .nav-pills > .active > a > .badge {
    color: #333;
    background-color: #fff;
}

.inner-categories .badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    color: #333;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: transparent;
    border-radius: 0px;
}

.inner-categories .list-group-item .fa {
    font-size: 16px;
}
.inner-rating-star {
    display: inline-block;
    margin-right: 2px;
    color: #FF404C;
}
.divider-categories {
    border-top: 1px solid #e6e6e6;
    margin: 3px auto 3px auto;
}

ul.thumbnails-carousel {
    padding: 30px 0 0 0;
    margin: 0;
    list-style-type: none;
    text-align: center;
}

    ul.thumbnails-carousel .center {
        display: inline-block;
    }

    ul.thumbnails-carousel li {
        margin: 0px 1px 0px 1px;
        float: left;
        cursor: pointer;
        max-width: 104px;
    }

        ul.thumbnails-carousel li img {
            width: 100%;
        }
.nav-tab {
    border-bottom: 1px solid #ddd !important;
    padding-top: 215px;
}

    .nav-tab > li {
        float: none !important;
        margin-bottom: -1px !important;
        display: inline-block !important;
    }

        .nav-tab > li > a {
            margin-right: 2px !important;
            line-height: 1.42857143 !important;
            border: none !important;
            border-bottom: solid 1px transparent !important;
            border-radius: 4px 4px 0 0 !important;
            font-size: 14px !important;
            text-align: center !important;
            font-family: 'Archivo Narrow', sans-serif !important;
            color: #333 !important;
        }

            .nav-tab > li > a:hover {
                border-color: transparent !important;
                background: transparent !important;
            }

        .nav-tab > li.active > a,
        .nav-tab > li.active > a:hover,
        .nav-tab > li.active > a:focus {
            color: #00a4e6 !important;
            cursor: default !important;
            background-color: #F9F9F9 !important;
            border: none !important;
            border-bottom: solid 2px #00a4e6 !important;
        }

    .nav-tab.nav-justified {
        width: 100% !important;
        border-bottom: 0 !important;
    }

        .nav-tab.nav-justified > li {
            float: none !important;
        }

            .nav-tab.nav-justified > li > a {
                margin-bottom: 5px !important;
                text-align: center !important;
            }

        .nav-tab.nav-justified > .dropdown .dropdown-menu {
            top: auto !important;
            left: auto !important;
        }
table {
    font-family: 'Open Sans', sans-serif !important;
    border-collapse: collapse !important;
    width: 100% !important;
    font-size: 14px !important;
}

td, th {
    border: 1px solid #f2f2f2 !important;
    text-align: left !important;
    padding: 8px !important;
}

tr:nth-child(even) {
    background-color: #f2f2f2 !important;
}

th {
    font-weight: 600 !important;
}

td.justified {
    text-align: left !important;
}

    td.justified .fa {
        color: #666 !important;
    }

th.justified {
    text-align: left !important;
}
.navigation-arrows {
    float: right;
    margin-top: -35px;
}

    /* Custom Arrow */
    .navigation-arrows .prev {
        color: #666;
        display: inline-block;
        padding: 5px 12px 5px 12px;
        transition: 0.3s;
    }

        .navigation-arrows .prev:hover {
            color: #333;
        }
.navigation-arrows .prev .fa {
    font-size: 25px;
}

.prev :hover {
    cursor: pointer;
}

.navigation-arrows .next {
    color: #666;
    display: inline-block;
    transition: 0.3s;
}

    .navigation-arrows .next:hover {
        color: #333;
    }

    .navigation-arrows .next .fa {
        font-size: 25px;
    }

.next :hover {
    cursor: pointer;
}
.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f8fa;
    z-index: 9998;
    text-align: center;
}

.plane-container {
    position: absolute;
    top: 50%;
    left: 50%;
}
#map {
    height: 100%;
    margin-top: -60px;
    margin-bottom: -20px;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

.single-shop-item img {
    /*margin-bottom: 50px !important;*/
    max-width: 100% !important;
    height: auto !important;
}

    .single-shop-item .img-box {
        border: 2px solid #f6f6f6 !important;
        margin-bottom: 26px !important;
        transition: all 0.3s ease 0s !important;
    }

    .single-shop-item:hover .img-box {
        border-color: #24aadb !important;
    }

    .single-shop-item a h3 {
        color: #343434 !important;
        font-size: 18px !important;
        font-weight: bold !important;
        margin: 0 0 9px !important;
        text-transform: uppercase !important;
    }

    .single-shop-item a:hover h3 {
        color: #C00D18 !important;
    }

    .single-shop-item ul.price {
        margin-bottom: 24px !important;
    }

        .single-shop-item ul.price li span {
            font-size: 18px !important;
            color: #BA0913 !important;
            font-weight: 400 !important;
            font-family: 'Open Sans' !important;
        }

            .single-shop-item ul.price li span.past-price {
                font-size: 15px !important;
                color: #797979 !important;
                text-decoration: line-through !important;
            }

    .single-shop-item .review-box {
        position: relative !important;
        top: -3px !important;
    }

        .single-shop-item .review-box i {
            font-size: 13px !important;
            color: #BA0913 !important;
        }

    .single-shop-item .aut-cr-btn {
        background: #f6f6f6 none repeat scroll 0 0 !important;
        border-color: #f6f6f6 !important;
        border-radius: 3px !important;
        color: #797979 !important;
        width: 140px !important;
    }

        .single-shop-item .aut-cr-btn:hover {
            background: #C20F19 !important;
            border-color: #C20F19 !important;
            color: #fff !important;
        }