/* GLOBAL STYLES
-------------------------------------------------- */

.no-js .prel-icon { display: none;  }
.js .prel-icon { display: block;  }

.prel-icon {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url(../images/preloader.gif) center center no-repeat #fff;
}


/* Padding below the footer and lighter body text */

body, html {
  width: 100%;
  height: 100%;
  font-family: 'Roboto', serif;
}


a:focus, input:focus, button:focus { 
    outline: none;
    -webkit-appearance:none;
}


.divider {
    width: 200px;
    height: 2px;
    margin: 0 auto;
    background-color: #7C6858;
    
}

/* CUSTOMIZE THE NAVBAR
-------------------------------------------------- */


.navbar-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  font-weight: 600;
  margin-top: 20px;
}

.navbar-wrapper .navbar-default {
    background-color: rgba(0,0,0,0);
    border: none;
}

.navbar-wrapper .navbar-default .navbar-brand  {
    padding: 0;
    height: 60px;
}


.navbar-wrapper .navbar-default .navbar-nav > li > a {
    color: #FEF4ED;
    text-transform: uppercase;
    margin-top: 5px;
}

.navbar-wrapper .navbar-default .navbar-nav > .open > a,  .navbar-wrapper .navbar-default .navbar-nav > .open > a:focus, .navbar-wrapper .navbar-default .navbar-nav > .open > a:hover {
    color: #FEF4ED;
    background-color: rgba(0,0,0,0);
}

.dropdown-menu {
    border: none;
    box-shadow: none;
    background-color: rgba(0,0,0,0);
    min-width: inherit;
    text-align: right;

}

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
    color: #FEF4ED;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    background-color: rgba(0,0,0,0);

}
.dropdown-menu > li > a {
   text-align: right;
   padding: 3px;
   color: #FEF4ED;
   font-weight: 500;
}

.navbar-wrapper > .container {
  padding-right: 0;
  padding-left: 0;
}
.navbar-wrapper .navbar {
  padding-right: 15px;
  padding-left: 15px;
}
.navbar-wrapper .navbar .container {
  width: auto;
}

.biglogo {
    display: block;
}
.smalllogo {
    display: none !important;
}

.navbar-wrapper.affix {
     position: fixed;
     top: 0;
     width: 100%;
     margin: 0;
     height: 50px;
     background-color: #B2947E;
     z-index: 10000;
    }
.navbar-wrapper.affix .navbar {
    padding-top: 3px;
}

 
.navbar-wrapper.affix li a {
     padding: 0.5em;
 }       
     
.navbar-wrapper.affix .navbar .navbar-brand .biglogo {
    display: none;
}

.navbar-wrapper.affix .navbar .navbar-brand .smalllogo {
    display: block !important;
}

.navbar-wrapper.affix .navbar .navbar-brand {
    height: 40px;
}

.navbar-wrapper.affix .navbar .navbar-toggle {    
    margin-top: 5px;
}

.navbar-wrapper.affix .dropdown-menu > li, .navbar-wrapper.affix .dropdown-menu > li > a {
   background-color: rgba(178,148,126, 0.5); 
}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    background-color: #FEF4ED;
}

.overlay {
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    right: 0px;
    width: 100%;
    height: 30%;
    background-image: linear-gradient(to top, transparent 0px, rgba(0, 0, 0, 0.3) 100%);
    background-image: -webkit-linear-gradient(to top, transparent 0px, rgba(0, 0, 0, 0.3) 100%);
    background-image: -moz-linear-gradient(to top, transparent 0px, rgba(0, 0, 0, 0.3) 100%);
    background-image: -o-linear-gradient(to top, transparent 0px, rgba(0, 0, 0, 0.3) 100%);
    background-image: -ms-linear-gradient(to top, transparent 0px, rgba(0, 0, 0, 0.3) 100%);
    z-index:1;
}


/* Underline From Left */
.hvr-underline-from-left {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}
.hvr-underline-from-left:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #FEE9DA;
  height: 1px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  right: 0;
}

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(124,104,88,0.5);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: #FEF4ED;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}



/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
.carousel-caption {
  z-index: 10;
  margin-bottom: 50px;
}

.carousel-caption p {
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 1.4;
    color: #FEF4ED;
}


.carousel .item {
  background-color: #B2947E;
}

.carousel h1 {
    text-transform: uppercase;
    color: #FEF4ED;
}

.carousel-inner > .item > img {
  width: 100%;
}

.carousel-indicators li  {
    border: 1px solid #FEF4ED;
}

.carousel-indicators .active {
    background-color: #FEF4ED;
}

/*Scrollingdown*/

.godown {
    font-size: 200%;
    color: #FEF4ED;
}

.godown:hover, .godown:focus {
    color: #7C6858;
}

/*main content*/
.textcont {
    padding-top: 20px;
}

.textcont h2 {
    color: #7C6858;
    text-align: center;
    margin-bottom: 15px;
}

.textcont h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    margin-top: 20px;
    text-transform: uppercase;
    color: #7C6858;
    text-align: center;
}

.textcont p {
    font-size: 1.3em;
    color: #B2947E;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 50px;
}

.articleBody p, .articleBody li {
	text-align: left;
	font-size: 1.5em;
}

#aboutUs, .articleBody {
    margin-bottom: 50px;
	color: #B2947E;
}

#aboutUs .godown, #mainp_faq .godown, #spInfo_prices .godown {
   color: #7C6858; 
}

#aboutUs .godown:hover, #mainp_faq .godown:hover, #spInfo_prices .godown:hover {
    color: #B2947E;
}

#aboutUs h1, #MedServices h1, #special_info h1, .articleBody h1 {
    color: #B2947E;
	text-transform: none;
	margin-bottom:0;
}


#MedServices li {
	color:  #B2947E;
}


#aboutUs h3, #MedServices h3, #special_info h3, .articleBody h3 {
    font-size: 1.7em;
	text-align:center;
	color: #7C6858;
}

#aboutUs  li, #MedServices li {
   font-size: 1.3em;
}

#aboutUs ul, #MedServices ul, .articleBody ul {
   margin-bottom: 50px;
 }

#faq, #special_info{
    background-color: #FEF4ED;
}

#mainp_faq, #spInfo_prices {
    background-color: #FEF4ED;
}

#mainp_faq .row, #spInfo_prices .row {
    margin-top: 50px;
    margin-bottom: 50px;
}


.mainp_faq_item {
    background-color: #B2947E;
    padding: 0;
    text-align: center;
    margin-bottom: 10px;
    border: 1px solid #7C6858;
}

.mainp_faq_info {
    padding: 0 10px 20px 10px;
    font-size: 1.1em;
}

.mainp_faq_info a h2 {
    color: #7C6858;
    font-size: 1.4em;
    font-weight: 600;  
}

.mainp_faq_info a h1 {
    text-transform: uppercase;
    font-size: 1.3em;
    color: #FEE9DA;     
}

.mainp_faq_info a p {
    color: #FEF4ED;    
}

.mainp_faq_info a {
    text-decoration: none;
}

#mainp_faq .mainGetAppointmentRef, #spInfo_prices .mainGetAppointmentRef {
    font-weight: 500;
    margin: 10px 0 0 0;
    font-size: 1.1em;
}


.mainp_faq_img {
    overflow: hidden;
}

.mainp_faq_item img {
    transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -webkit-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
}

.mainp_faq_item:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1); 
    transform: scale(1.1);
    -o-transition: scale(1.1);
}

.mainp_faq_item:hover {
    box-shadow:  0 0 5px 1px #B2947E;
}



#spacerparallax {
  background-image: url(../images/quarantine-1.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: #FEF4ED;
}

#spacerparallax h1 {
    text-transform: uppercase;
    font-size: 2.5em;

}

#spacerparallax p {
    text-transform: uppercase;
    font-size: 1.3em;
  
}

#spacerparallax a {
   color: #FEF4ED;
}

#textinspacerparallax  {  
    margin-top: 10%;
    margin-bottom:8%;
    padding: 30px 10px 30px 10px;
    background-image: radial-gradient(farthest-side, rgba(178,148,126, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-radial-gradient(farthest-side, rgba(178,148,126, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -moz-radial-gradient(farthest-side, rgba(178,148,126, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -o-radial-gradient(farthest-side, rgba(178,148,126, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-radial-gradient(farthest-side, rgba(178,148,126, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}


.articlesparallax{
  background-image: url('../images/likar-articles1.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: #FEF4ED;
}

.articlesparallax h1 {
    text-transform: uppercase;
    font-size: 2.5em;

}

.articlesparallax p {
    text-transform: uppercase;
    font-size: 1.3em;
  
}

.articlesparallax a {
   color: #FEF4ED;
}

.textinarticlesparallax  {  
    margin-top: 10%;
    margin-bottom:8%;
    padding: 30px 10px 30px 10px;
    background-image: radial-gradient(farthest-side, rgba(178,148,126, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -webkit-radial-gradient(farthest-side, rgba(178,148,126, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -moz-radial-gradient(farthest-side, rgba(178,148,126, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -o-radial-gradient(farthest-side, rgba(178,148,126, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-radial-gradient(farthest-side, rgba(178,148,126, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.articlesHeading {
  color: #FEE9DA !important;
}

/*Special offers*/

#specialoffersmp {
    background-color: #FEF4ED;
    padding-bottom: 40px;
}

#spoffer-slider {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #FEF4ED;
}


#spoffer-slider .carousel-inner .item{
    background-color: #FEF4ED;
}

#spoffer-slider .carousel-inner .container {
    background-color: #B2947E;
    padding: 0;
    border: 1px solid #7C6858;
}

#spoffer-slider .carousel-inner .container .offerimg {
        overflow: hidden;
}

#spoffer-slider .carousel-inner .container:hover {
 box-shadow:  0 0 5px 1px #B2947E; 
 
}

#spoffer-slider .carousel-inner .container img {
     transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -webkit-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s; 
}

#spoffer-slider .carousel-inner .container:hover img {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1); 
    transform: scale(1.1);
    -o-transition: scale(1.1);
}

#spoffer-slider .carousel-control.left {
    background-image: none;
}

#spoffer-slider .carousel-control.right {
    background-image: none;
}

#spoffer-slider .carousel-indicators li {
    border: 1px solid #7C6858;
}
 
#spoffer-slider .carousel-indicators .active {
    background-color: #B2947E;
}
 

#specialoffersmp .godown:hover {
    color: #B2947E;
}

#specialoffersmp .godown {
    color: #B2947E;
}

.offercontent {
    padding: 2% 30px 2% 30px;
    height: 100%;
}


.offercontent a h1 {
    color: #7C6858;
    font-size: 1.4em;
    margin-bottom: 20px;
    text-transform: none;
    font-weight: 600;
}

.offercontent a h3 {
    text-transform: uppercase;
    font-size: 1.2em;
    color: #FEE9DA;   
}

.offercontent a li {
    color: #FEF4ED;
}

.offercontent a ul {
   margin-bottom: 25px;    
}

.offercontent a h2 {
    color: #FEF4ED;
    margin-bottom: 25px;
    text-transform: uppercase;   
    font-size: 1.4em;
}

.offercontent .mainGetAppointmentRef {
    margin: 0;
    font-weight: 400;
}


.offercontent a {
    text-decoration: none;
}

/*Footer*/

#footer {
  color:#FEE9DA;
  background-color: #B2947E;
  
}

.footer-top {
  position: relative;
  padding: 10px 5px 20px 5px;


}

#socialfotter {
    border-bottom: 1px solid #FEF4ED;
    padding-bottom: 5px;
}

#contactfotter {
   padding-top: 10px;
   color: #FEF4ED;
}

#contactfotter .phoneRef {
    color:  #FEF4ED;
}

#address div, #phones div {
   text-transform: uppercase;
   font-size: 12px;  
   float: left;   
   padding-right: 10px; 
   padding-bottom: 10px;
}

#footer .footer-top a {
    text-decoration: none;
    color: #FEF4ED;
    padding-right: 5px;
    padding-left: 5px;
}

#address, #phones {
    display: inline-block;
}

#address {
 float: right;    
}

#footer .footer-bottom {
  background-color: #FEF4ED;
  padding: 10px 0 10px;
  color: #B2947E;
}

#footer .footer-bottom a {
    color: #B2947E;
    font-size: 15px;
    font-weight: 600;
    padding: 5px;
}

#footer .footer-bottom a:hover, #footer .footer-bottom a:focus{
  text-decoration: none;
  color: #FEF4ED;
}


#footer .social-icons {
  margin-top: 15px;
}

#footer .social-icons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .social-icons ul li a {
  background-color: rgba(0,0,0,.2);
  border-radius: 4px;
  line-height: 33px;
}

#footer .social-icons ul li a:hover {
  color: #fff
}

#footer .social-icons ul li a.envelope:hover {
  background-color: #CECB26;
}

#footer .social-icons ul li a.facebook:hover {
  background-color: #3b5999;
}
#footer .social-icons ul li a.twitter:hover {
  background-color: #2ac6f7;
}
#footer .social-icons ul li a.dribbble:hover {
  background-color: #ff5b92;
}
#footer .social-icons ul li a.linkedin:hover {
  background-color: #036dc0;
}
#footer .social-icons ul li a.tumblr:hover {
  background-color: #ff6b00;
}

#footer .social-icons ul li a.instagram:hover {
  background-color: #406E95;
}

#footer .social-icons ul li a.tripadvisor:hover {
  background-color: #60A248;
}

#footer .social-icons ul li a.google-plus:hover {
  background-color: #BA3225;
}

#footer .social-icons ul li a.vk:hover {
  background-color: #45668E;
}



.social-icons {
  margin-top:30px;
  text-align: center;
}

.social-icons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.social-icons ul li {
  float: left;
  margin-right: 8px;
}

.social-icons ul li:last-child {
  margin-right: 0;
}

.social-icons ul li a {
  color:#fff;
  background-color: #d9d9d9;
  height: 36px;
  width: 36px;
  line-height: 36px;
  display: block;
  font-size: 16px;
  opacity: 0.8;
}

.social-icons ul li a:hover {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.scrolltotop {
  position: fixed;
  display: none;
  bottom: 20px;
  right: 30px;
  z-index: 5000;  
}

.scrolltotop > i {
   width: 35px;
}

.booking {
  position: fixed;
  right: 30px; 
  z-index: 5000;   
  display: none;
  
}

.booking i {
    padding-left: 10px;
    padding-right: 10px;
}


.booking {
    top: 30%;
}


.item-fixed  > i {
  height: 35px;
  line-height: 35px;
  font-size: 18px;
  text-align: center;
  border-radius: 100%;
  color: #7C6858;
  background-color: rgba(254,233,218, 0.8);
  box-shadow: inset 0 0 0 3px #7C6858;
  -webkit-box-shadow: inset 0 0 0 2px #7C6858;
  transition: background-color 400ms, background-color 400ms;
  position: relative;
}

.item-fixed span {
    display: none;
    color: #FEE9DA;
    line-height: 20px;
    font-size: 13px;
    padding-left: 5px;
    text-transform: uppercase;
}

.scrolltotop:hover > i {
  background-color: #7C6858;
  color: #FEE9DA;
  box-shadow: inset 0 0 0 4px #FEF4ED;
  -webkit-box-shadow: inset 0 0 0 4px #FEF4ED;
}

.booking:hover > i {
  background-color: #7C6858;
  color: #FEE9DA;
  box-shadow: inset 0 0 0 2px #FEF4ED;
  -webkit-box-shadow: inset 0 0 0 2px #FEF4ED;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  
}


.booking i:hover span {
    display: inline-block;
    color: #FEE9DA;
}



#mainpGetAppoint {
  height: 300px;
  width: 300px;
  border-radius: 100%;
  box-shadow: inset 0 0 0 3px #7C6858;
  -webkit-box-shadow: inset 0 0 0 3px #7C6858;
  position: absolute;
  top: 18%;
  left: 65%;
  z-index: 9999;
  background-image: linear-gradient(rgba(124,104,88, 0.3), rgba(124,104,88, 0.3)), url(../images/appointment300x300.jpg);
  background-image: -moz-linear-gradient(rgba(124,104,88, 0.3), rgba(124,104,88, 0.3)), url(../images/appointment300x300.jpg);
  background-image: -webkit-linear-gradient(rgba(124,104,88, 0.3), rgba(124,104,88, 0.3)), url(../images/appointment300x300.jpg);
  background-image: -ms-linear-gradient(rgba(124,104,88, 0.3), rgba(124,104,88, 0.3)), url(../images/appointment300x300.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  }



#mainpGetAppoint  {
    transition: all 1s ease-in-out 0s;
    -moz-transition: all 1s ease-in-out 0s;
    -webkit-transition: all 1s ease-in-out 0s;
    -o-transition: all 1s ease-in-out 0s;
}

#mainpGetAppoint:hover {
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05); 
    transform: scale(1.05);
    -o-transition: scale(1.05);
    box-shadow: inset 0 0 0 4px #FEF4ED;
    -webkit-box-shadow: inset 0 0 0 4px #FEF4ED;
    background-image: linear-gradient(rgba(124,104,88, 0.3), rgba(124,104,88, 0.05)), url(../images/appointment300x300.jpg);
    background-image: -moz-linear-gradient(rgba(124,104,88, 0.3), rgba(124,104,88, 0.05)), url(../images/appointment300x300.jpg);
    background-image: -webkit-linear-gradient(rgba(124,104,88, 0.3), rgba(124,104,88, 0.05)), url(../images/appointment300x300.jpg);
    background-image: -ms-linear-gradient(rgba(124,104,88, 0.3), rgba(124,104,88, 0.05)), url(../images/appointment300x300.jpg);
    z-index: 11000;
}

.mainGetAppointmentRef {
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px;
  font-size: 1.2em;
  border: 1px solid #B2947E;
  background-color: rgba(254,233,218, 0.8);
  font-weight: 600;
  border-radius: 3px;
  color: #7C6858; 
  margin: 130px 0 0 25px;
}

.mainGetAppointmentRef:hover {
    color: #FEF4ED;
    text-decoration: none;
}

#mainScheduleRef {
   margin: 10px 0 0 80px;
   font-weight: 500;
   font-size: 1.1em;
}

#mainScheduleRef:visited, #mainScheduleRef:active, #mainScheduleRef:focus {
    text-decoration: none;
}

.app-icon-box  > i {
  font-size: 22px;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 100%;
  background-image: -moz-linear-gradient(90deg, rgba(254,233,218, 0.8) 0%, #7C6858 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(254,233,218, 0.8) 0%, #7C6858 100%);
  background-image: -ms-linear-gradient(90deg, rgba(254,233,218, 0.8) 0%, #7C6858 100%);
  color: #FEE9DA;
  box-shadow: inset 0 0 0 2px #FEF4ED;
  -webkit-box-shadow: inset 0 0 0 2px #FEF4ED;
  transition: background-color 400ms, background-color 400ms;
}

.app-icon-box:hover > i {
  color: #7C6858;
  background: rgba(254,233,218, 0.8);
  box-shadow: inset 0 0 0 3px #7C6858;
  -webkit-box-shadow: inset 0 0 0 2px #7C6858;
}

#mainpAppPhone {
    top: -10%;
    left: 20%;
}

#mainpAppOnline {
    top: 3%;
    left: 1%;
}

#mainpAppAddress {
   top: 24%;
   left: -9%;  
}

#mainpAppOnline, #mainpAppPhone, #mainpAppAddress {
    z-index: 10000;
    position: absolute;
}

#mainpAppOnline:hover, #mainpAppPhone:hover, #mainpAppAddress:hover {
    z-index: 15000;
}


#phoneModal, .appScheduleModal {
    color: #7C6858;
    text-transform: uppercase;
    z-index: 20000;
}

.phoneRef {
    text-decoration: none;
    color: #7C6858;
    padding: 5px;
}

.phoneRef:hover {
    text-decoration: none;
    color: #7C6858;
}

#phoneModal h1, .appScheduleModal h1 {
    font-size: 1.2em;
}

#phoneModal, .appScheduleModal li {
    font-size: 1.3em;
}

#phoneModal i, .appScheduleModal i {
    height: 35px;
    width: 35px;
    line-height: 35px;
    border: 2px solid #7C6858;
    border-radius: 100%;
}


.appScheduleModal li, .appScheduleModal p {
    text-transform: none;
}

.appScheduleModal p {
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
}

.appScheduleModal a {
    margin-top: 10px;
}

#appFixed {
    position: fixed;
    top: 25%;
    left: 70%;
    width: 250px;   
    border-radius: 50%;
}

#appFixed h1 {
    font-size: 1.5em;
    color:#B2947E;
    margin-top: 0;
    margin-bottom: 20px;
}

#appFixed h2 {
   font-size: 1.5em;
}

.formfieldstyle {
    color: #7C6858;
    background-color: #FEF4ED;
    border-color: #7C6858;
    border-radius: 2px;
}

.formfieldstyle:focus {
  border-color:rgba(254,233,218, 0.8);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(254,233,218, 0.6);
}

#main-contact-form .formfieldstyle:focus {
  border-color:rgba(124,104,88, 0.8);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124,104,88, 0.8);
}

.separateMin {
    height: 1px;
    width: 210px;
    background-color: #7C6858;
    margin-top: 20px;
    margin-bottom: 20px;
}

.inner-addon { 
    position: relative; 
    margin-bottom: 20px;
}

.inner-addon .glyphicon {
  position: absolute;
  padding: 10px;
  pointer-events: none;
}

.left-addon .glyphicon  { left:  0px;}
.right-addon .glyphicon { right: 0px;}

.left-addon input  { padding-left:  30px; }
.right-addon input { padding-right: 30px; }

#map {
    height: 400px;
    width: 100%;
    overflow: hidden;
    background-color: #7C6858;
}
#contact-us .divider {
    margin-bottom: 40px;
}

#contact-us p {
    margin-bottom: 5px;
    margin-top: 0;
    padding: 0;
}

#contact-us p span {
   font-weight: 600;
}

#contact-us .mainGetAppointmentRef {
    font-weight: 400;
    margin: 0;
    border-radius: 2px;
}

#contact-us p .mainGetAppointmentRef {
    font-size: 0.8em;
}

.contactUsResp {
    display: inline-block;
}

.contact-form {
    margin-top: 20px;
    margin-bottom: 40px;
   /* border: 1px solid #B2947E; */
}


.formDiv {
    background-color: #B2947E;
    min-height: 400px;
}

.FbDiv {
	/*background-color: #B2947E;*/
	text-align: center; 
}

#FbCont {
	
   margin-top: 15px;
   margin-bottom: 15px;
   display: inline-block;
   border: 1px solid #B2947E;
}


 #contactMapDiv {
   padding: 0;
}

.formDiv h2 {
  color: #FEE9DA;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 1.5em;
  text-align: center;
}


/*orderForm*/

#orderwrapper {        
  color: #B2947E;
} 

#orderwrapper h1 {        
  color: #7C6858;
}  
 
#formTitle {
  font-size: 35px;
  text-transform:uppercase; 
}
 
#orderFormHome .navbar-wrapper {
  position: relative;
  background-color: #B2947E;
  margin-top: 0;
}

#orderFormHome .navbar-wrapper .navbar-default {
    padding-top: 20px;
}		

#formDivF {
    min-height: 580px;
}

.formDiv .mainGetAppointmentRef {
margin-top: 0 !important;
}

.formDiv p {
 color: #FEF4ED;
 font-size: 15px;
}	
	
.intl-tel-input {
width: 100%;
}


#selectOption .btn {
    text-transform: uppercase;
    font-weight: 500;
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
	margin-bottom: 8px;
}
   
#selectOption .btn:nth-child(3) {
       margin-right: 0;
}
     
#selectOption .active {
    color: #7C6858;
    background-color: #FEF4ED;
    border-color: #7C6858;
    border-radius: 2px;
    z-index: 1;

}




#timeSelected {
    margin-top: 25px;
}

#timeSelected .btn {
    margin-right: 1px;
    padding: 5px 10px 5px 10px;
    font-size: 17px;
}

     
#timeSelected .active {
    color: #7C6858;
    background-color: #FEF4ED;
    border-color: #7C6858;
    border-radius: 2px;
    z-index: 2;

}

#error-msg {
	color: #91091D;
}

#error-msg  span {
    font-weight: 500;
}

#valid-msg {
	color: #FEE9DA;
}

#upperImgCont {
  margin: 20px 10px 20px 10px;
}

#upperImgCont  h1 {
   font-size: 20px;
   margin: 0 0 5px 0;
}

#upperImgCont  h2 {
   font-size: 15px;
   margin: 0 0 5px 0;
}

#upperImgCont  a {
  color: #7C6858;
  padding: 3px;
}

#upperImgCont  a:hover {
  text-decoration:none;
} 
 
#doctorImg {
  max-height: 430px;
  transition: all 1s ease-in-out 0s;
  -moz-transition: all 1s ease-in-out 0s;
  -webkit-transition: all 1s ease-in-out 0s;
  -o-transition: all 1s ease-in-out 0s;
  filter: gray; 
  filter: grayscale(1); 
  -webkit-filter: grayscale(1); 
}
 
.contact-form .row {
   overflow: hidden;
 }
 
.contact-form .row:hover #doctorImg {
  filter: none;
  -webkit-filter: grayscale(0);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1); 
  transform: scale(1.1);
  -o-transition: scale(1.1);
}


.sendingfeedback {
    margin-top: 20px;
    background-color: #fff;
    border: 1px solid;
    border-radius: 0;
} 

.positivefeedback {
    color: #FEF4ED;
    border-color: #FEF4ED;
    background-color: #B2947E;
}   

.negativefeedback {
    color: #91091D;
    border-color: #91091D;
    background-color: #FEE9DA;
}


/* Grow Shadow */
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}
.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  background-color: #7C6858;
}

#timeIsNotAvailable {
    display: none;
}

#timefield .formfieldstyle:focus {
  border-color:rgba(124,104,88, 0.8);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124,104,88, 0.8);
}


/*Login Form*/

#loginDiv {
  text-align: center;
  margin-top: 4%;   
  margin-bottom: 4%;
}

#loginDiv h1 {
   color: #7C6858;
   font-size: 1.8em; 
   text-transform: uppercase;
   margin-bottom: 40px;
}

#loginfail {
 margin-top: 10px;
 display: none;
 text-align: left;
}

.addinputstyle {
   margin-bottom: 15px;
}

#loginDiv .mainGetAppointmentRef {
    padding-left: 10px;
    padding-right: 10px;
    margin: 30px 0 0 0;
}

#loginDiv .formfieldstyle:focus {
  border-color:rgba(124,104,88, 0.8);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124,104,88, 0.8);
}

/*Stat form*/

#statHeader .navbar-wrapper {
  position: relative;
  background-color: #B2947E;
  width: 100%;
  margin: 0;
  height: 50px;
}

#statHeader .navbar-wrapper .navbar-default {
  padding-top: 3px; 
}	

#statHeader .navbar-wrapper li a {
     padding: 0.5em;
 } 	

#statHeader .dropdown-menu > li > a {
   color: #7C6858;
   z-index: 1000;
}

#statHeader .dropdown-menu > li > a:focus, #statHeader .dropdown-menu > li > a:hover {
    color: #FEE9DA;
}

#statContainer {
    margin: 0;
}

#statContainer h1{  
   color: #7C6858;
   font-size: 25px; 
   text-transform: uppercase;
   margin-bottom: 20px;
}

#statContainer .divider {
    margin: 0;
}

#statContainer h2 {
  text-transform: none;
  font-size: 20px; 
  color: #7C6858;
  margin-bottom: 15px;
}


#statContainer h3 {
    margin-top: 20px;
    font-size: 17px;
    text-transform: none;
    color: #B2947E;
}


#selectOptionFilter .btn {
    font-size: 15px;
    padding: 5px;
    color: #B2947E;
}


#selectOptionFilter .active {
    color: #7C6858;
    background-color: #FEF4ED;
    border-color: #7C6858;
    border-radius: 2px;
    z-index: 1;

}

#filterDiv {
    margin-bottom: 30px;
}

#filterDiv .formfieldstyle:focus {
  border-color:rgba(124,104,88, 0.8);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(124,104,88, 0.8);
}

#filterDiv .mainGetAppointmentRef {
    margin: 30px 5px 0 5px;
    font-weight: 500;
    font-size: 17px;
}

#infoCont {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #7C6858;
  font-size: 15px;
}

 .selected {
  font-weight: bold;
}

 .nowrap {
  white-space: nowrap;
}

#infoCont button {
  font-size: 18px;
  background-color: #FEE9DA;
}

#editModal button {
   font-size: 18px;
}

#deleteBtn {
   background-color: #FEE9DA;
}

#cancelBtn { 
  background-color: #fff;
  border: 1px solid #7C6858;
}

#cancelBtn: hover { 
  background-color: #7C6858;
  color: #fff;
}

#editModal {
    color: #7C6858;
    z-index: 20000;
}

#editModal h1 {
    font-size: 1.2em;
}

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #B2947E;
  border-radius: 0;
}
ul.breadcrumb li {
  display: inline;
  font-size: 22px;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: #7C6858;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: #FEF4ED;
  text-decoration: none;
  padding-left: 10px;
  padding-right: 10px;  
}

.contractRef {
	margin:5px;
	font-size: 15px;
}








