body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'RobotoRegular';
}

@font-face {
    font-family: 'RobotoRegular';
    src: url('../fonts/Roboto-Regular.ttf');
}

@font-face {
    font-family: 'RobotoMedium';
    src: url('../fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: 'RobotoBold';
    src: url('../fonts/Roboto-Bold.ttf');
}

@font-face {
    font-family: 'sakkalmajala';
    src: url('../fonts/sakkalmajalla.ttf');
}

@font-face {
    font-family: 'samarkan';
    src: url('../fonts/samarkan.ttf');
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

a,
a:hover {
    text-decoration: none;
    color: #323232;
}

:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

h2 {
    color: green;
    font-size: 1.8em;
}


/*============= Header ===============*/

.highlight-text {
    margin-top: 2%;
}
.highlight-text a {
    color: white !important;
}
.highlight-text li {
    -webkit-animation: color-change 3s infinite;
    -moz-animation: color-change 3s infinite;
    -o-animation: color-change 3s infinite;
    -ms-animation: color-change 3s infinite;
    animation: color-change 3s infinite;
    /* padding: 0px 10px;*/
    padding: 6%;
    font-size: 1.2em;
    border-radius: 10%;
    border: 2px solid #CDDC39;
}

@-webkit-keyframes color-change {
    0% {
        background-color: orange;
    }
    50% {
        background-color: green;
    }
    100% {
        background-color: orange;
    }
}

@-moz-keyframes color-change {
    0% {
        background-color: orange;
    }
    50% {
        background-color: green;
    }
    100% {
        background-color: orange;
    }
}

@-ms-keyframes color-change {
    0% {
        background-color: orange;
    }
    50% {
        background-color: green;
    }
    100% {
        background-color: orange;
    }
}

@-o-keyframes color-change {
    0% {
        background-color: orange;
    }
    50% {
        background-color: green;
    }
    100% {
        background-color: orange;
    }
}

@keyframes color-change {
    0% {
        background-color: orange;
    }
    50% {
        background-color: green;
    }
    100% {
        background-color: orange;
    }
}

#header {
    border-bottom: 2px solid orange;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.27);
}

.breadcrumb {
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: transparent;
}

.template-body-bg {
    background: #fff url(../images/body-bg.png);
}


/*============= Home Page===============*/

.navigation {
    width: 100%;
    background: #f2f2f2;
    padding: 7px 15px;
    text-align: center;
}

.navigation ul li {
    display: inline-block;
    font-family: 'RobotoMedium';
    font-size: 16px;
    padding-left: 15px;
}

.navigation ul li a {
    color: #4d4d4d;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.navigation ul li a img {
    padding-right: 5px;
}

.navigation ul li a:hover {
    color: #f7931e;
}

.logo img {
    /*width: 100%;*/
    padding: 10px 0px 0px 0px;
    max-height: 105px;
    width: auto;
}

.search-bx {
    width: 100%;
    float: left;
    padding: 15px 0 0;
}

.search-bx ul li {
    float: right;
    margin-left: 20px;
    position: relative;
}

.search-bx ul li input {
    border: 0;
    background: #f2f2f2;
    width: 400px;
    padding: 10px 40px 10px 10px;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.search-bx ul li input:focus {
    box-shadow: 0 0 3px rgba(247, 147, 30, 0.7);
    background: #fff;
}

.search-bx ul li a {
    background: #f7931e;
    padding: 10px 15px;
    display: block;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
    font-family: 'RobotoMedium';
    font-size: 16px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.search-bx ul li a:hover {
    background: #009245;
}

.search-bx ul li.search_d a {
    background: transparent;
    position: absolute;
    padding: 0;
    top: 5px;
    right: 10px;
}

.toogle-menu {
    width: 50px;
    height: 50px;
    background: url(../images/menu.png);
    float: left;
    cursor: pointer;
    display: none;
    border: 2px solid #009245;
    padding: 5px 7px;
    margin: 6px 5px;
    border-radius: 3px;
    background-repeat: no-repeat;
    background-position: center;
}

.right-menu {
    width: 100%;
    float: left;
    text-align: right;
    padding: 5px 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.right-menu ul {}

.right-menu ul li {
    display: inline-block;
    padding: 0 5px;
    position: relative;
}

.right-menu ul li a {
    font-family: 'RobotoBold';
    font-size: 1.25em;
    text-transform: unset;
    padding: 10px 15px;
    display: block;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.mobile-menu-close {
    display: none;
}

.right-menu ul li a i {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.right-menu ul li a:before {
    content: '';
    background: #f7931e;
    right: 0;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.right-menu ul li a:hover {
    color: #f7931e
}

.right-menu ul li a:hover:before {
    width: 100%;
}

.right-menu ul ul {
    position: absolute;
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    border-radius: 3px;
    width: 320px;
    text-align: left;
    -webkit-transform: translateY(4%);
    -moz-transform: translateY(4%);
    transform: translateY(4%);
    opacity: 0;
    z-index: 999;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
}

.right-menu ul ul li {
    width: 100%;
    padding: 0;
}

.right-menu ul ul li a {
    padding: 5px 10px;
    font-family: 'RobotoMedium';
    border-bottom: 1px solid #e6e6e6;
    font-size: 16px;
}

.right-menu ul ul li a:before {
    display: none;
}

.right-menu ul ul li a:hover {
    color: #fff;
    background: #009245;
}

.right-menu ul li:hover ul {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
}

.slider-rel-cls {
    position: relative;
}

.health-read-slider .owl-dots,
.package-slider .owl-dots {
    margin-top: 20px !important;
}

.health-read-slider .owl-dots .owl-dot span,
.package-slider .owl-dots .owl-dot span {
    margin: 3px 5px 5px 3px;
    background: #f7931e;
}

.health-read-slider .owl-dots .owl-dot.active span,
.package-slider .owl-dots .owl-dot.active span {
    width: 20px;
}

.health-read-slider .owl-dots .owl-dot.active span,
.health-read-slider .owl-dots .owl-dot:hover span,
.package-slider .owl-dots .owl-dot.active span,
.package-slider .owl-dots .owl-dot:hover span {
    background: #026635;
}

.book-appoiments-popup {
    background: #009245;
    float: right;
    padding: 20px 20px;
    width: 30%;
    /*margin-right: 15px;*/
    position: absolute;
    top: 0px;
    z-index: 2;
}

.book-appoiments-inner {}

.book-appoiments-inner h3 {
    color: #fff;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.slider-rel-cls {
    width: 100% !important;
    float: left;
    background: url(../images/1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    text-align: right;
}

.book-appoiments-inner p {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
}

ul.appointment-form li {
    width: 100%;
    float: left;
}

ul.appointment-form li input {
    width: 100%;
    padding: 7px 15px;
    border: 0;
    margin-bottom: 15px;
    border-radius: 3px;
    font-size: 16px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

ul.appointment-form li input:focus {
    box-shadow: 0 0 5px rgba(0, 0, 0, 1);
}

ul.appointment-form li select {
    width: 100%;
    padding: 7px 10px;
    border: 0;
    border-radius: 3px;
    font-size: 16px;
}

ul.appointment-form li a {
    background: #f7931e;
    color: #fff;
    display: block;
    padding: 8px 10px;
    text-transform: capitalize;
    font-size: 18px;
    text-align: center;
    border-radius: 50px;
    margin-top: 15px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.treatment-main {
    float: left;
    width: 100%;
    padding: 15px 0 0;
}

.treatment-heading-old h1 {
    text-transform: capitalize;
    font-size: 32px;
    font-family: 'RobotoMedium';
    margin-bottom: 15px;
}

.treatment-heading h1 {
    text-transform: capitalize;
    font-size: 5em;
    font-family: 'sakkalmajala';
    margin-bottom: 15px;
    text-align: left;
    /*background: #fff7f2;*/
    color: #009245;
    font-variant: all-small-caps;
    border-radius: 50px;
}

.treatment-box {
    position: relative;
    overflow: hidden;
    border: 3px solid #009245;
    /* border-radius: 50%; */
    margin-bottom: 10px;
    height: 85%;
    width: 85%;
    text-align: center;
    margin: 0 auto;
}

.treatment-name-header {
    background-color: #009245;
    font-weight: bold;
    padding: 5px;
    text-align: center;
    width: 75%;
    margin: 0 auto;
    margin-top: -20px;
    border-radius: 5px;
    position: inherit;
}

.treatment-name-header h5 {
    margin-bottom: 0px;
}

.treatment-name-header h5 a {
    font-size: 1em;
    color: white;
}


/*
.treatment-box {
	position: relative;
	overflow: hidden;
    border: 3px solid #f7931e;
    border-radius: 50%;
    margin-bottom: 20px;
}
*/

.treatment-box img {
    width: 100%;
}

.treatment-name {
    position: absolute;
    top: 0;
    bottom: 0;
    background: rgba(51, 51, 51, 0.4);
    right: 0;
    left: 0;
    transform: scale(0);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.treatment-name h5 a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.2em;
    text-align: center;
}

.treatment-box:hover .treatment-name {
    transform: scale(1);
}

.hr-box {
    position: relative;
    overflow: hidden;
}

.hr-box-details {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    color: #fff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    padding: 90px 15px 0 15px;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 59%, rgba(0, 0, 0, 0.65) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 59%, rgba(0, 0, 0, 0.65) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 59%, rgba(0, 0, 0, 0.65) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.hr-box-details h5 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.hr-box:hover .hr-box-details {
    bottom: 0;
}


/*==========  Treatment Menu / Card Accordion   ==========]*/

.card {
    border: 0px !important;
    border-radius: 0px !important;
}

.card-body {
    padding: 10px !important;
}

.card-body ul li {
    border-bottom: 1px solid #e2e2e2;
    padding: 3px 0px;
}

.card-header {
    padding: .5rem .75rem !important;
    background: green;
    border-radius: 0px !important;
    border: 0px !important;
    border-bottom: 1px solid rgba(0, 0, 0, .125) !important;
}

.card-header a {
    color: white !important;
}

.card-header h5 {
    font-size: 0.9rem !important;
    margin-bottom: 0px;
}

.card-header h5 i {
    float: right;
}


/*==========  Ayurvedic Treatment Menu Wrapper  ==========]*/

.wrapper-packages-menu {
    background-color: #f2f2f2;
    border-radius: 3px;
    padding: 10px;
}

.wrapper-packages-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    margin-top: 3px;
    margin-bottom: 3px;
    text-transform: capitalize;
    padding: 5px 5px;
    display: block;
    background-color: green;
}

.wrapper-packages-menu ul {
    margin-left: 10px;
}

.wrapper-packages-menu ul li a {
    font-weight: 100;
    border-bottom: 1px dashed;
    display: block;
    padding: 3px 0px;
    background-color: transparent;
    color: green;
}

.ayu_content_wrapper hr {
    display: block;
    border-top: 1px solid #4CAF50;
    width: 100%;
}

.package-content {
    font-style: italic;
    font-size: 1.5em;
}

.img-icons {
    width: 175px;
    height: 175px;
}

.footer-header {
    color: #827e7e;
    font-size: 2.2em;
    font-style: italic;
    font-family: serif;
    margin-bottom: 15px;
    background-color: white;
    border: 2px dashed #b7b2b2;
    text-align: center;
    border-radius: 3px;
}

.footer-text {
    margin-top: 20px;
}

.header-background {
    background-color: green;
    color: white;
    padding: 5px;
    text-align: center;
    border-radius: 3px;
    background: rgba(210, 255, 82, 1);
    background: -moz-linear-gradient(left, rgba(210, 255, 82, 1) 0%, rgba(145, 232, 66, 1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(210, 255, 82, 1)), color-stop(100%, rgba(145, 232, 66, 1)));
    background: -webkit-linear-gradient(left, rgba(210, 255, 82, 1) 0%, rgba(145, 232, 66, 1) 100%);
    background: -o-linear-gradient(left, rgba(210, 255, 82, 1) 0%, rgba(145, 232, 66, 1) 100%);
    background: -ms-linear-gradient(left, rgba(210, 255, 82, 1) 0%, rgba(145, 232, 66, 1) 100%);
    background: linear-gradient(to right, rgb(0, 128, 0) 0%, rgb(247, 147, 30) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#d2ff52', endColorstr='#91e842', GradientType=1);
}

.call-design {
    background-color: orange;
    color: white;
    padding: 14px 0px;
    border-radius: 30px;
    font-size: 1.5em;
    text-align: center;
    font-weight: bold;
    width: 82%;
}

.call-design a {
    color: white !important;
}

.mail-design {
    color: green;
    font-size: 1.3em;
}

.hideform {
    display: none;
}

.showmsg {
    display: block !important;
    text-align: center;
}
#SuccessMSg {
    display: none;
}

/*==========  Treatment Content Wrapper  ==========]*/

.ayu_content_wrapper {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: justify;
}

.ayu_content_wrapper a {
    color: orange;
}

.ayu_content_wrapper h2 {
    color: green;
    font-size: 1.8em;
}

.ayu_content_wrapper p {}

.ayu_content_wrapper ul {
    list-style-type: disc;
    margin: 0 0 20px 30px;
}

.ayu_content_wrapper article_title {}

.ayu_content_wrapper article_content {}


/*==========  packages   ==========]*/

.packages-img {
    position: relative;
    margin-bottom: 15px;
}

.packages-img img {
    width: 100%;
}

.package-detail-main {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: #8c6239;
    width: 420px;
    padding: 20px 0;
}

.package-detail-inner h5 {
    text-transform: capitalize;
    color: #fff;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 10px;
    border-bottom: 2px solid #754c24;
    padding: 0 0 10px 0;
}

.package-detail-inner p {
    text-transform: capitalize;
    color: #fff;
    text-align: left;
    font-size: 18px;
    margin-bottom: 20px;
}

.package-detail-inner {
    padding: 0 15px;
}

.package-detail-inner ul {
    text-align: left;
    padding-left: 20px;
}

.package-detail-inner ul li {
    color: #fff;
    font-size: 1.3em;
    padding: 2px 0;
    text-transform: uppercase;
}

.package-detail-inner button {
    border: 0;
    width: 100%;
    background: #f7931e;
    color: #fff;
    display: block;
    padding: 8px 10px;
    text-transform: capitalize;
    font-size: 18px;
    text-align: center;
    border-radius: 50px;
    margin-top: 15px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

.testimonial-content {}

.testimonial-content video {
    width:100%;
}

.testi-pro-name {
    text-transform: capitalize;
    font-size: 20px;
    color: #777;
}

.testi-content p {
    padding: 10px 0 15px 40px;
    margin: 0 0;
    font-size: 16px;
    color: #323232;
}

.testi-date {
    text-align: center;
    font-size: 16px;
    color: #666;
}

.testi-date span {}


/*=========== book appointment =============*/

.fbook-appointment-main {
    background: #f7921e;
    padding: 30px 10px;
    border: 4px solid #019245;
    border-radius: 3px;
    margin-top: 40px;
}

.fbook-appointment-main input {
    width: 100%;
    border: 0;
    padding: 8px 15px;
    font-family: 'RobotoMedium';
    font-size: 16px;
    border-radius: 5px;
}

.BA-button {
    text-align: center;
    padding: 15px 0 5px 0;
}

.BA-button button {
    display: inline-block;
    border: 0;
    background: #f15a25;
    color: #fff;
    padding: 8px 40px;
    text-transform: capitalize;
    font-size: 18px;
    text-align: center;
    border-radius: 50px;
    margin-top: 15px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

.book-appointment-sidebar {
    background-color: #009245;
    padding: 7px;
    color: white;
}

.subscribe-newsletter-sidebar {
    background-color: #e2e2e2;
    color: #6d6d6d;
    border-radius: 3px;
    padding: 7px;
}

.subscribe-newsletter-sidebar p {
    font-size: 0.88em;
}

.membership-packages-sidebar {
    background-color: #795548;
    color: white;
    border-radius: 3px;
    padding: 7px;
    border: 3px solid #582818;
}

.membership-packages-sidebar p {
    font-size: 1.1em;
}

.membership-packages-sidebar ul li {
    color: : white;
    border-bottom: 1px solid #582818;
    padding: 3px 0px;
}

.membership-packages-sidebar ul li a {
    color: white !important;
}

.membership-wrapper {
    margin-bottom: 40px;
    transition: all 1s ease;
    margin-top: 25px;
}

.membership-wrapper:hover {
    top: -20px;
}

.sidebar-button button {
    display: inline-block;
    border: 0;
    background: #f15a25;
    color: #fff;
    padding: 4px 6px;
    text-transform: capitalize;
    font-size: 1.1em;
    text-align: center;
    border-radius: 50px;
    margin-top: 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}


/*============== Footer ===============*/

.footer-pragraph {
    background: #666;
    padding-top: 30px;
    /*    margin-top: 30px;*/
    padding-bottom: 30px;
}

.footer-pragraph p {
    font-family: 'RobotoMedium';
    color: #fff;
    font-size: 1em;
    margin-bottom: 20px;
}

ul.caption-footer li {
    float: left;
    padding: 0 10px;
    border-right: 2px solid #cccc;
    margin: 5px 0;
}

ul.caption-footer li:last-child {
    border-right: 0;
}

ul.caption-footer li a {
    text-transform: capitalize;
    color: #fff;
    font-size: 0.9em;
}

.footer-main {
    float: left;
    width: 100%;
    padding: 0 0;
    border-top: 2px solid #4d4d4d;
    padding-top: 20px;
    margin-top: 20px;
}

.footer-two-col {
    border-right: 2px solid #4d4d4d;
}

.footer-two-col ul li {
    padding: 0 10px;
}

.footer-two-col ul li a {
    color: #fff;
    font-family: 'RobotoMedium';
    font-size: 16px;
    padding: 6px 0;
    display: inline-block;
    text-transform: capitalize;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.footer-two-col ul li a:hover {
    color: #f7931e;
}

.footer-social ul li {
    float: left;
    margin-bottom: 15px;
}

.footer-social ul li a {
    display: block;
    background: #fff;
    width: 1.8em;
    height: 1.8em;
    line-height: 1.8em;
    text-align: center;
    border-radius: 50%;
    font-size: 22px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.footer-social ul li a.s-facebook:hover {
    background: #3b5998;
    color: #fff;
}

.footer-social ul li a.s-youtube:hover {
    background: #bb0000;
    color: #fff;
}

.footer-social ul li a.s-whatsapp:hover {
    background: #25D366;
    color: #fff;
}

.footer-social ul li a.s-instagram:hover {
    background: #bc2a8d;
    color: #fff;
}

.footer-social ul li a.s-twitter:hover {
    background: #00aced;
    color: #fff;
}

.footer-news-latter {
    text-align: center;
}

.footer-news-latter h3 input {
    font-size: 18px;
    padding: 10px 15px;
    border: 0;
    width: 95%;
    border-radius: 3px;
    float: left;
}

.footer-news-latter button {
    border: 0;
    background: #f7931e;
    color: #fff;
    display: inline-block;
    padding: 10px 15px;
    text-transform: capitalize;
    font-size: 18px;
    text-align: center;
    font-family: 'RobotoMedium';
    border-radius: 50px;
    margin-top: 15px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

.date-selct-main i {
    position: absolute;
    right: 30px;
    top: 10px;
    font-size: 18px;
}

.dropdown-menu {
    width: 270px;
    height: 270px;
}

.table-condensed {
    width: 100%;
}

.datepicker-days,
.table-condensed {
    height: 100%;
}

.datepicker table tr td.active.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active.disabled:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active[disabled] {
    background-color: #019245;
    background: #019245;
}

.btn-primary {
    color: #fff !important;
    background-color: #009245;
    border-color: #009245;
}

.btn-primary:hover {
    color: #fff;
    background-color: #04753a;
    border-color: #04753a;
}

.fix-call-btn {
    position: fixed;
    top: 30%;
    z-index: 99;
    right: -170px;
    background: transparent;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    padding: 0 0 0 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.fix-call-btn.active {
    right: 0;
    background: #f7921e;
}

.fix-call-btn.active .fix-call-btn-inner {
    animation: none;
}

.fix-call-btn-inner {
    background: #009245;
    float: left;
    cursor: pointer;
    width: 60px;
    height: 60px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
    animation: right-fix-call 2s infinite;
    border: 2px solid #f7921e;
}

.fix-call-btn span {
    color: #fff;
    font-size: 20px;
    padding: 12px 10px;
    display: inline-block;
}

.fix-call-btn-inner img {
    filter: brightness(100);
    -webkit-filter: brightness(100);
}

.requist-appointment-fix {}

.requist-appointment-fix-inner {
    position: fixed;
    top: 40%;
    right: -273px;
    z-index: 999;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
    background: #009245;
    padding: 0 0 0 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.fix-requist-appointment-fild-inner {}

.requist-appointment-fix-inner h4 {
    text-transform: capitalize;
    background: #f7921e;
    color: #fff;
    border: 3px solid #009245;
    padding: 7px 15px;
    font-family: 'RobotoMedium';
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.input-cls {
    width: 100%;
    padding: 7px 15px;
    border: 0;
    margin-bottom: 15px;
    border-radius: 3px;
    font-size: 16px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.fix-requist-appointment-fild {
    -webkit-wtransform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
    padding: 0 40px 0 27px;
    width: 320px;
    position: relative;
    bottom: 0;
}

.fix-requist-appointment-fild h5 {
    text-transform: capitalize;
    color: #fff;
}

.fix-requist-appointment-fild p {
    color: #fff;
}

.requist-appointment-fix-inner.active {
    right: 0;
}

.fix-call-btn-inner.active {
    right: 0;
}

.menu-open .right-menu {
    right: 0;
}

.fixed-header {
    position: fixed;
    z-index: 99;
    background: #fff;
    top: 0;
    left: 0;
    animation: smoothScroll 0.5s forwards;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 5px 15px 0 15px;
}

.fixed-header .search-bx {
    display: none;
}

.fixed-header .logo img {
    width: 60%;
    padding: 0px 0px 0px 0px;
}

.m-bookappointe-fix {
    display: none;
}

@keyframes smoothScroll {
    0% {
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    100% {
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes right-fix-call {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 146, 69, 1);
        box-shadow: 0 0 0 0 rgba(0, 146, 69, 1);
    }
    70% {
        -moz-box-shadow: 0 0 0 17px rgba(0, 146, 69, 0);
        box-shadow: 0 0 0 17px rgba(0, 146, 69, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 146, 69, 0);
        box-shadow: 0 0 0 0 rgba(0, 146, 69, 0);
    }
}

@media screen and (max-width: 1199px) {
    .right-menu ul li {
        padding: 0;
    }
    .right-menu ul li a {
        font-size: 18px;
        padding: 10px 15px;
    }
    .package-detail-main {
        position: relative;
        width: 100%;
        padding: 15px 0;
        margin-top: 5px;
    }
}

@media screen and (max-width: 991px) {
    .logo {
        text-align: center;
    }
    .logo img {
        width: 30%;
    }
    .fixed-header .logo img {
        width: 25%;
    }
    .search-bx {
        text-align: center;
    }
    .search-bx ul li {
        float: none;
        display: inline-block;
    }
}

@media screen and (max-width: 767px) {
    .toogle-menu {
        display: block;
    }
    .right-menu {
        /*display: none;*/
        position: fixed;
        top: 0;
        z-index: 99;
        background: #fff;
        right: -100%;
        left: auto;
        width: 75%;
        bottom: 0;
    }
    .right-menu ul.ovr-auto {
        overflow: auto;
        height: 100%;
    }
    .right-menu ul li a i {
        display: inline-block;
        position: absolute;
        right: 8px;
        font-size: 22px;
        transition: all 0.3s;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
    }
    .right-menu ul li.active a i {
        -webkit-transform: translateY(-50%) rotate(180deg);
        -moz-transform: translateY(-50%) rotate(180deg);
        transform: translateY(-50%) rotate(180deg);
    }
    .mobile-menu-close {
        display: block;
        position: absolute;
        right: auto;
        background: #ffffff;
        color: #323232;
        width: 50px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        z-index: 9999;
        top: 0;
        cursor: pointer;
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
        box-shadow: -2px 0px 2px rgba(0, 0, 0, 0.3);
        font-size: 22px;
        left: -50px;
    }
    .right-menu ul li a {
        text-align: left;
        padding: 5px 10px;
        border-top: 1px solid #ccc;
    }
    .right-menu ul ul {
        position: relative;
        display: none;
    }
    .right-menu ul li.active ul {
        display: block;
        margin: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    .right-menu ul li {
        width: 100%;
    }
    .m-menu-fix .container {
        padding: 0px;
    }
    .logo {
        text-align: center;
        max-width: 220px;
        float: left;
        padding: 3px 0;
        text-align: left;
    }
    .logo img {
        width: 90%;
        padding: 0px;
    }
    .fixed-header .logo img {
        width: 95%;
    }
    .navigation ul li {
        text-align: left;
        font-size: 13px;
        padding-left: 10px;
        width: 100%;
    }
    .toogle-menu {
        float: right;
    }
    .navigation ul li a img {
        display: none;
    }
    .book-appoiments-popup {
        width: 90%;
    }
    .package-detail-main {
        position: relative;
        width: 100%;
        padding: 15px 0;
    }
    .package-detail-inner h5 {
        font-size: 18px;
        margin-bottom: 5px;
        padding-bottom: 5px;
    }
    .package-detail-inner p {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .package-detail-inner ul li {
        font-size: 18px;
    }
    .testi-content p {
        padding: 10px 0 15px 0px;
        font-size: 15px;
    }
    .package-detail-inner ul {
        margin-left: 10px;
        margin-left: 0;
    }
    .search-bx ul li {
        float: left;
        margin-left: 0;
        width: 50%;
    }
    .search-bx ul li a {
        padding: 12px 3px;
        border-radius: 5px;
        font-size: 12px;
    }
    .search-bx ul li input {
        width: 100%;
        margin-left: 5px
    }
    .fbook-appointment-main input {
        margin-bottom: 10px;
    }
    .footer-two-col {
        border-right: 0;
        border-bottom: 2px solid #4d4d4d;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    .requist-appointment-fix,
    .fix-call-btn,
    .search-bx,
    .navigation ul li:last-child {
        display: none;
    }
    .menu-open {
        overflow: hidden;
    }
    .menu-open:before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 80;
    }
    .fixed-header {
        position: relative;
        animation: none;
    }
    .fixed-header1 {
        position: fixed;
        z-index: 99;
        background: #fff;
        top: 0;
        left: 0;
        animation: smoothScroll 0.5s forwards;
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
        padding: 0 10px 0 15px;
        right: 0;
    }
    .m-bookappointe-fix {
        position: fixed;
        bottom: 0;
        background: #e8e8e8;
        left: 0;
        right: 0;
        text-align: center;
        padding: 0 0 10px 0;
        z-index: 99;
        display: block;
    }
    .footer-pragraph {
        padding-bottom: 80px;
    }
    .m-bookappointe-fix a {
        border: 0;
        background: #f7931e;
        color: #fff;
        display: inline-block;
        padding: 8px 30px;
        text-transform: capitalize;
        font-size: 18px;
        text-align: center;
        font-family: 'RobotoMedium';
        border-radius: 5px;
        margin-top: 15px;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        cursor: pointer;
    }
}