.rating-wrap .rating-message {
    display: none !important;
}

.mobile-header-login, .mobile-header-search-btn, .footer-mobile-logo {
    display: none;
}

.facebook-like-side-btn {
    display: flex;
    position: fixed;
    top: 80%;
    left: 0;
    z-index: 99;
}

.footer-2nd-menu {
    display: none;
}

.modal {
    z-index: 999999999999 !important;
}

.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.85) !important;
}

.lg-outer .lg-inner {
    display: flex !important;
    align-items: center !important;
}

.lg-outer .lg-item {
    height: 85% !important;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
    background: #ffffff !important;
}

.lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
    color: #000 !important;
}

.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateX(-120%);
        transform: translateX(-120%);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateX(-120%);
        transform: translateX(-120%);
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.get-discount-btn {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    background: #019cdc;
    color: #ffffff;
    position: fixed;
    padding: 8px 12px;
    top: 40%;
    z-index: 1;
}

.get-discount-mobile {
    position: fixed;
    left: 50px;
    top: 40%;
    z-index: 1;
}

.get-discount-mobile-message {
    cursor: pointer;
    display: none;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #999;
    color: #000000;
    padding: 10px;
    font-size: 12px;
    border-radius: 5px;
    padding: 18px;
}

.discount-btn-desktop {
    left: -60px;
    font-size: 18px;
    transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    border-radius: 0 0 7px 7px;
}

.discount-btn-mobile {
    left: 0;
    font-size: 32px;
    border-radius: 40px;
    padding: 9px 11px;
}

#offer-popup .scissor-devider {
    background: url('/images/sprites.png') -976px -60px no-repeat;
    height: 23px;
    position: relative;
}

#offer-popup .modal-dialog {
    z-index: 9;
}

#offer-popup .popup_wrapper {
    display: none;
}

#offer-popup .social-follow {
    display: flex;
    align-items: center;
    border-radius: 5px;
    padding: 5px 10px;
    color: #ffffff;
    margin-left: 10px;
    font-weight: 600;
}

#offer-popup .insta-icon {
    background: #991587;
}

#offer-popup .facebook-icon {
    background: #3b5998;
}

#offer-popup .wrapper-discount-code {
    background: url('/images/bg-discount-code.png') no-repeat;
    padding: 20px 40px;
    background-size: 100% 100%;
    width: 300px;
}

#offer-popup .wrapper-discount-code .code {
    font-size: 24px;
    border: 1px dashed #e9e9e9;
    padding: 3px;
    text-align: center;
}

#offer-popup .coupon-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#offer-popup .social-follow i {
    margin-right: 5px;
}

#offer-popup .scissor-devider .dashed-line {
    border-bottom: 2px dashed #ddd;
    position: absolute;
    top: 9px;
    width: calc(100% - 20px);
    z-index: 0;
    margin-left: 20px;
}

#offer-popup input.email {
    padding: 6px 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.footer-link-row a:last-child .footer-link-divider {
    display: none;
}

#bkt--qfc .bkt--qfc_button {
    margin-bottom: 0 !important;
}

#uh-oh .uh-oh-heading {
    font-weight: 500;
}

#uh-oh .uh-oh-message {
    max-width: 300px;
    margin: auto;
    margin-top: 20px;
}

#uh-oh .close-btn {
    color: #bdbdbd !important;
    margin-right: 30px;
}

#uh-oh .close-btn:hover {
    color: #333 !important;
}

#request-call-back .request-heading {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #ee2634;
    padding: 0 25px 4px;
}

#request-call-back .modal-dialog {
    max-width: 500px;
    margin: 10px auto;
}

#request-call-back .request-detail {
    text-align: center;
    padding: 20px 40px;
    font-size: 13px;
}

#request-call-back .callback-form {
    background: #f2f2f2;
    padding: 15px 30px;
}

#request-call-back .callback-form .input-block .label {
    color: #333;
    padding: 0;
}

#request-call-back .callback-form .form-heading {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

#request-call-back .callback-form input {
    margin-top: 7px;
    border: 1px solid #e2e2e2;
    padding: 5px 8px;
    outline: none;
}

#request-call-back .callback-form .input-block {
    margin-bottom: 10px;
}

#request-call-back .callback-form .cols .input-block {
    width: 48%;
}

#request-call-back .callback-footer {
    font-weight: 500;
    padding: 15px 0
}

#request-call-back h4 {
    color: #ee2634;
}

#request-call-back .request-btn {
    font-size: 13px;
    border: 0;
    align-items: center;
    display: flex;
    padding: 7px 30px;
}

#request-call-back .request-btn i {
    margin-right: 5px;
}

.albumCover {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.album_wrap {
    width: 23%;
    float: left;
    margin-bottom: 20px;
    position: relative;
    height: 215px;
    overflow: hidden;
}

a.cover_title, .album_wrap.no-img .album_img, .album_wrap .desc_div, .left_album .desc_div {
    display: none;
}

a.cover_img {
    height: 215px;
    overflow: hidden;
    display: block;
}

.cover_img img {
    height: 215px;
    max-width: initial;
    width: auto;
}

.album_wrap.no-img .desc_div {
    display: block;
}

.album_wrap.no-img .wrap_inner {
    background: url(/images/L1.png) no-repeat scroll left top;
}

.cover_title a {
    font-size: 18px;
    line-height: 21px;
    color: #555;
    font-weight: 600;
}

.loading-overlay {
    display: none;
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #ee2634;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loading-block {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    display: none;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

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

.salon_category {
    background: #337ab7;
    color: #ffffff !important;
    padding: 5px 10px;
    font-weight: 600 !important;
    border-radius: 5px;
}

.cover_title {
    /*height: 40px;*/
    text-align: center;
    padding: 10px 25px 0;
    text-transform: uppercase;
    /*overflow: hidden;*/
    margin-bottom: 5px;
}

.album_like {
    text-align: center;
    color: #ee2634 !important;
    font-size: 13px;
    line-height: 24px;
    margin-top: 10px;
    font-weight: 600;
}

.wrap_inner {
    padding: 18px;
}

.album_wrap.no-img .desc_div {
    background: url(/images/L.png) no-repeat scroll 99% bottom;
    height: 215px;
}

.album_img {
    height: 215px;
    margin-bottom: 20px;
    text-align: center;
}

.hamburger {
    background: none;
    position: absolute;
    /*-old- top: 0;*/
    /*top: 50px;*/
    right: 0;
    line-height: 45px;
    padding: 5px 15px 0px 15px;
    color: #ee2634;
    border: 0;
    font-size: 1.4em;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    z-index: 10000000000000;
}

.cross {
    background: none;
    position: absolute;
    /*-old- top: 0;*/
    top: 5px;
    right: 0;
    padding: 0 15px 0px 15px;
    color: #ee2634;
    border: 0;
    font-size: 3em;
    line-height: 45px;
    cursor: pointer;
    outline: none;
    z-index: 10000000000000;
}

.signup-form-new input {
    border: 0;
    border-bottom: solid 1px #777;
    padding: 5px 0px;
    outline: none;
}

.signup-right-sidebar {
    padding: 20px;
    border-left: 1px solid #777;
}

.signup-left-sidebar {
    padding: 20px;
}

.footer-social-link:hover {
    background: #ffffff;
}

.footer-social-link:hover i {
    color: #f1222c !important;
}

.footer-link-row a:last-child .footer-link-divider {
    display: none;
}

.footer-link-row a .footer-link-divider {
    color: #ffffff;
}

.menu {
    z-index: 999999999999;
    font-weight: bold;
    font-size: 0.8em;
    width: 100%;
    background: #ffffff;
    position: fixed;
    text-align: left;
    font-size: 12px;
    /*-old- margin-top: 88px;*/
    /*margin-top: 60px;*/
    margin-top: -73px;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none;
}

.menu li {
    display: block;
    padding: 15px 0 15px 0;
    border-bottom: #dddddd 1px solid;
}

.menu li:hover {
    display: block;
    background: #ffffff;
    padding: 15px 0 15px 0;
    border-bottom: #dddddd 1px solid;
}

.menu ul li a {
    text-decoration: none;
    margin: 0 0 0 20px;
    color: #666;
}

.menu ul li a:hover {
    color: #666;
    text-decoration: none;
}

.menu a {
    text-decoration: none;
    color: #666;
}

.menu a:hover {
    text-decoration: none;
    color: #666;
}

.glyphicon-home {
    color: white;
    font-size: 1.5em;
    margin-top: 5px;
    margin: 0 auto;
}

.header-lower .select2-container {
    width: 100% !important;
}

.header-lower .search-compare-container .select2-container {
    width: 100% !important;
}

.header-lower .search-compare-container .select2-container--classic .select2-selection--single:focus {
    border: 1px solid rgba(0, 0, 0, 0.1);

}

.header-lower .select2-container--classic .select2-selection--single:focus {
    border: solid 2px #e7e7e7;
}

.header-lower .search-compare-container .select2-container--classic .select2-selection--single, .header-.header-lower .search-compare-container .select2-container--classic.select2-container--open.select2-container--below .select2-selection--single, .header-lower .search-compare-container .select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    background: transparent;
    font-weight: lighter;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 0 15px;
    color: rgba(0, 0, 0, 0.7);
    font-size: 13px;
    letter-spacing: 2px;
    outline: none;
    height: 60px;
    text-align: left;
}

.header-lower .select2-container--classic .select2-selection--single, .header-lower .select2-container--classic.select2-container--open.select2-container--below .select2-selection--single, .header-lower .select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
    background: transparent;
    border-radius: 5px;
    border: solid 1px #e7e7e7;
    /*border: solid 2px #ffffff;*/
    /*padding: 10px 15px;*/
    padding: 5px 15px;
    color: #black;
    /*font-size: 18px;*/
    font-size: 16px;
    outline: none;
    height: 100%;
    text-align: left;
}

.header-lower .search-compare-container .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0 15px;
    color: rgba(0, 0, 0, 0.7);
    font-size: 13px;
    outline: none;
    height: 100%;
    line-height: 55px;
    text-align: left;
}

.header-lower .search-compare-container .search-compare-container .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: rgba(0, 0, 0, 0.7);
}

.header-lower .search-compare-container .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: rgba(0, 0, 0, 0.7);
    line-height: 55px;
}

.header-lower .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #2c2c2c;
}

.header-lower .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
}

.header-lower .select2-container--classic .select2-selection--single .select2-selection__arrow {
    display: none;
}

.header-lower .select2-container--classic .select2-results__option--highlighted[aria-selected] {
    display: block !important;
}

.header-lower .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #2c2c2c;
}

body, h1, h2, h3, h4, h5, h6, p, a {
    font-family: Raleway;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #000000;
}

body {
    background: #f8f8f8;
}

div.content {
    padding-top: 10px;
    background: #f8f8f8;
}

.header-lower {
    /*margin-top: 5px;*/
    /*border-top: 1px solid #e7e7e7;*/
    padding: 10px 0;
    display: flex;
}

.morecontent span {
    display: none;
}

.morelink {
    display: block;
}

.review__card .file {
    width: 100%;
    margin-top: 20px;
}

.review__card .file img {
    width: 100%;
}

.scrollup {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: none;
    z-index: 10;
    background: url('/images/up.png');
    background-size: 100%;
}

[data-letters]:before {
    content: attr(data-letters);
    display: inline-block;
    font-size: 1em;
    width: 3.5em;
    height: 3.5em;
    line-height: 3.5em;
    text-align: center;
    border-radius: 50%;
    background: #ee2634;
    font-weight: 600;
    vertical-align: middle;
    margin-right: 1em;
    color: white;
}

.compare-result-name:hover h5 {
    color: #ee2634 !important;
}

.password-reset-block .btn-red {
    font-size: 16px !important;
}

.cutted-price {
    margin-right: 10px;
}

.compare-result-area {
    max-height: 400px;
    overflow-y: scroll;
}

.compare-book-now {
    background: #363457 !important;
}

.compare-result-heading {
    padding: 10px;
    font-family: 'Montserrat';
    background: #f9f9f9;
    border: 1px solid #eee;
    color: #333;
    font-size: 1.1em;
}

.compare-result-detail {
    display: flex;
    flex-direction: column;
}

.compare-result-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px 10px 20px;
    border: 1px solid #eee;
    border-top: 0;
    align-items: center;
}

.compare-result-block {
    display: none;
    margin-top: 10px;
    border-bottom: 1px solid #eee;

}

.verify-otp-block {
    /*padding-top: 80px;*/
}

.verify-otp-block .section-title, .verify-otp-block h3 {
    color: #4a4a4a !important;
    padding-bottom: 5px;
}

.verify-otp-buttons {
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.verify-otp-block article {
    margin: 30px 0 30px 0;
    color: #4a4a4a;
    background: #ffffff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    padding: 10px 40px 10px;
}

.verify-otp-block input[type='text'] {
    height: 50px;
    margin: 0;
    padding: 0 18px;
    font-size: 16px;
    width: 50%;
    color: #939393;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.verify-otp-block .message {
    color: #939393;
}

.border-bottom-light {
    border-bottom: 1px solid #ddd;
}

#search-popup-container {
    display: none;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background: rgb(255, 255, 255);
    z-index: 5;
    position: fixed;
    padding: 130px 50px 50px 50px;
    /*-old- padding: 100px 50px 50px 50px;*/
}

#search-popup-container .main-compare-btn {
    background: #f16664;
    border: 0;
    padding: 10px 40px;
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    outline: none;
}

.main-search-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.main-search-container input[type="text"] {
    width: 100%;
    display: inline-block;
    float: left;
    height: 60px;
    font-size: 13px;
    letter-spacing: 2px;
    padding-left: 15px;
    font-weight: lighter;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    outline: none;
}

.compare-popular-services {
    display: inline-flex;
    justify-content: space-between;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 5px 20px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.header_inner .fa-map-marker {
    color: #ee2634;
    font-size: x-large;
    margin-right: 10px;
}

.header-location {
    border: 1px solid #a2a2a2;
    padding: 3px 10px;
    background: #ffffff;
    color: #2c2c2c;
    outline: none;
    border-radius: 5px;
    /*-webkit-appearance: none;*/
}

.services__content a {
    color: #333;
}

.call-us {
    padding: 8px 10px;
    border: 1px solid #ee2634;
    color: #ee2634 !important;
    border-radius: 5px;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.call-us:hover {
    background: #ee2634;
    color: #ffffff !important;
}

.img-block {
    position: relative;
}

.rating-block {
    position: absolute;
    top: 0;
    right: 0;

}

.search-card_salon-detail, .salon_detail-name_rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    padding: 6px 12px;
    font-family: sans-serif;
    background: #ee2634;
}

.fa-star {
    margin-right: 5px;
    font-size: small !important;
}

.pagination-block {
    display: flex;
    justify-content: center;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #f1222c;
    border-color: #f1222c;
}

.red-font {
    color: #ee2634;
}

.btn-red:hover, .btn-red.active, .btn-red:focus {
    color: #ffffff;
}

label {
    margin-bottom: 0;
}

a:focus, a.active {
    text-decoration: none !important;
}

a:focus, a:hover {
    color: #ee2634;
}

a:hover {
    text-decoration: none !important;
}

.modal-open {
    overflow: visible;
}

span.has-error {
    color: darkred;
}

body {
    padding-right: 0px !important;
    overflow-x: hidden;
}

.space-between {
    display: flex;
    justify-content: space-between;
}

.font-red {
    color: #ee2634;
}

.modal {
    overflow-x: hidden;
    overflow-y: auto;
}

#sign-up-modal .birthday {
    margin: 0 0 15px 0;
}

#sign-up-modal .message {
    margin: 10px 0 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: #9b9b9b;
}

#sign-up-modal .terms {
    margin-top: 5px;
}

#sign-up-modal .terms p {
    margin: 0;
}

#email_notification {
    margin-top: 0;
    height: 30px;
    width: 30px;
    margin-right: 10px;
}

#sign-up-modal .gender label {
    margin-right: 15px;
}

#sign-up-modal .links {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 10px !important;
}

#sign-up-modal .links .link {
    font-weight: bold;
    color: #ee2634;
}

.space-between {
    display: flex;
    justify-content: space-between;
}

.login-form .email {
    background-size: 25px !important;
    background: url("/images/email.png") no-repeat 98% center;
}

.login-form .password {
    background-size: 20px !important;
    background: url("/images/lock.png") no-repeat 98% center;
    margin-top: 0;
}

.login-form .actions, .signup-form .actions {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.login-form input, .signup-form input {
    margin-top: 20px;
    border: solid 1px #4a4a4a;
    padding: 12px 20px;
}

.signup-form input {
    margin-top: 0;
}

.login-form input[type="checkbox"] {
    margin-top: 0;
    margin-right: 10px;
}

.forgot-password {
    font-weight: bold;
    color: #ee2634;
}

.remember-me {
    font-weight: bold;
    color: #000000;
}

.modal .sign-facebook, .modal .fa-facebook {
    background: #3b5998;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal .fa-facebook {
    font-size: x-large !important;
}

.fa-google {
    color: #000000;
}

.google-btn img {
    width: 20px;
    height: 20px;
    margin-left: 14px;
}

.signup-left-sidebar .google-btn img {
    margin-left: 5px;
}

.social-btns {
    flex-direction: column;
}

.social-btns a {
    margin-bottom: 20px;
}

.social-btns a:hover {
    text-decoration: none;
}

.social-btn {
    padding: 14px 0;
    font-size: 16px;
    border-radius: 0 5px 5px 0;
    text-align: center;
}

.signup-left-sidebar .social-btn {
    padding: 5px 0;
    font-size: 14px;
}

.google-btn {
    border-radius: 5px;
    border: solid 1px #bfb5c3;
    align-items: center;
    /*margin-bottom: 20px !important;*/
}

.sign-google {
    color: #000000;
}

.sign-facebook {
    color: #ffffff;
}

#sign-in-modal i, #sign-up-modal i {
    display: flex;
    align-items: center;
    padding: 16px;
    color: #ffffff;
    border-radius: 5px 0 0 5px;
}

#sign-up-modal .signup-left-sidebar i {
    padding: 5px;
}

.text-center {
    text-align: center;
}

.or {
    position: relative;
    background: white;
    padding: 0 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.filled-btn {
    background-color: #ee2634;
    color: #ffffff;
    font-weight: 500;
    border: 0 !important;
    font-size: 16px;
    padding: 12px 40px;
    border-radius: 5px;
    outline: none;
}

.filled-btn.active, .filled-btn:focus {
    color: #ffffff;
    outline: none;
}

.border-btn {
    background-color: transparent;
    color: #ee2634;
    font-weight: 500;
    border: 1px solid #000000 !important;
    font-size: 16px;
    padding: 12px 40px;
    border-radius: 5px;
}

.submit-btn {
    border-radius: 5px;
    background-color: #ee2634;
    color: #ffffff;
    font-weight: 500;
    border: 0 !important;
    font-size: 16px;
}

.submit-btn:hover, .filled-btn:hover {
    color: #ffffff !important;
}

.or-seperator {
    width: 100%;
    height: 1px;
    background: #939393;
    position: relative;
    top: 11px;
}

.seperator {
    width: 100%;
    height: 1px;
    background: #939393;
}

.full-width {
    width: 100%;
}

.align-center {
    display: flex;
    align-items: center;
}

.select2-results__option {
    padding: 15px !important;
    border-bottom: 1px solid #e2e2e2 !important;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    background-color: rgb(62, 32, 92) !important;
    color: #ffffff !important;
}

.select2-container--classic.select2-container--open .select2-dropdown {
    border: 0 !important;
    border-radius: 0px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

/*.select2-container--classic .select2-results>.select2-results__options {*/
/*max-height: 200px;*/
/*overflow-y: auto;*/
/*}*/

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.pd-0 {
    padding: 0;
}

.tag:hover {
    cursor: pointer;
}

.fixed-header, .grey-header {
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.fixed-header, .white-header {
    background: #ffffff;
}

.white-header {
    padding-top: 50px;
    border-bottom: 1px solid #e7e7e7;
    /*-old- padding-top: 85px;*/
}

.top-bar {
    background: #ee2634;
    padding: 4px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    box-shadow: 1px 0px 5px 0px #555;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

#shaker {
    background: #337ab7;
    color: #ffffff;
    font-weight: 600;
    margin-left: 10px;
    padding: 2px 10px;
}

.grey-header {
    background: #f1f1f1;
    box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.1) !important;
}

.grey-header .header_inner {
    max-height: 50px !important;
}

section {
    margin-top: 50px;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.container {
    width: 90%;
    margin: 0 auto;
}

.header__left_side .logo {
    width: 80px;
    height: 48px;
    margin-right: 20px;
}

.header__left_side {
    align-items: center;
    display: flex;
}

.header_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.fixed-header .header_inner {
    min-height: 60px;
}

.dropdown-menu:before {
    position: absolute;
    top: -7px;
    left: 9px;
    display: inline-block;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-left: 7px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}

.dropdown-menu:after {
    position: absolute;
    top: -6px;
    left: 10px;
    display: inline-block;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ffffff;
    border-left: 6px solid transparent;
    content: '';
}

ul.header__right_side {
    min-width: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
}

ul.header__right_side > li {
    margin-left: 20px;
}

.profile-picture {
    height: 30px;
    width: 30px;
    border-radius: 50px;
    margin-left: 5px;
    margin-right: 5px;
}

.header-user-name {
    color: #ee2634;
    font-weight: 500;
}

ul.header__right_side li a {
    color: #2c2c2c;
    font-size: 14px;
    font-family: Raleway;
}

ul.header__right_side li a:hover {
    color: #f1222c;
}

ul.header__right_side li a i {
    margin-right: 5px;
}

.home-top {
    background-size: cover;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    min-height: 540px;
    background: url('/images/bg.png') top center no-repeat fixed;
    /*background-attachment: fixed;*/
    /*background-size: 100% 500px;*/
    /*background-position-y: -45px;*/
    /*padding-top: 70px;*/
    /*-old- padding-top: 30px;*/
    /*position: absolute;*/
}

.search {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.search .search__left, .search .search__right {
    text-align: center;
}

.search h2 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 24px;
}

.search .mobile-heading {
    display: none;
}

.home-top .search input[type="text"] {
    background: transparent;
    border-radius: 5px;
    border: solid 2px #ffffff;
    padding: 10px 15px;
    color: #ffffff;
    font-size: 20px;
    outline: none;
}

.search .search__left .search__left-2nd_row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.home-top .search .btn-red {
    /*padding: 10px 15px;*/
    padding: 8px 15px;
}

.home-top .search .search__right-2nd_row .btn-red {
    border: 2px solid #ee2634;
    outline: none;
}

.home-top .search .btn-red-white_border {
    /*border: solid 2px #ffffff;*/
    border: solid 1px #ffffff;
}

.home-top .search input[type="text"]::placeholder {
    color: #ffffff;
}

.home-top .search {
    margin-top: 50px;
}

.btn-red {
    border-radius: 5px;
    background-color: #ee2634;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.search__left-2nd_row__input-0_right_border {
    border-right: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.search__left-2nd_row__input-0_left_border {
    border-left: 0 !important;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.search__left .search__left__input-big {
    width: 100%;
}

.heading {
    text-align: center;
}

.heading h2 {
    margin-top: 0;
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 10px;
}

.red-underline {
    width: 150px;
    height: 3px;
    background: #ee2836;
    margin: auto;
}

.services__content .services__content-card img {
    width: 50px;
    height: 50px;
}

.services__content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.services__content-services {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.services__content .services__content-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.services__content .services__content-card img {
    -webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
}

.services__content .services__content-card:hover {
    cursor: pointer;
    /*text-decoration: underline;*/
}

.services__content .services__content-card {
    border: 1px solid transparent;
    border-radius: 2px;
}

.services__content .services__content-card:hover {
    border: 1px solid #ee2836;
}

/*.services__content .services__content-card:hover img {*/
/*-webkit-transform: scale(1.2);*/
/*-moz-transform: scale(1.2);*/
/*-o-transform: scale(1.2);*/
/*transform: scale(1.2);*/
/*-webkit-transition-duration: 0.6s;*/
/*-moz-transition-duration: 0.6s;*/
/*-o-transition-duration: 0.6s;*/
/*transition-duration: 0.6s;*/
/*!*text-decoration: underline;*!*/
/*}*/

.services__content .services__content-card p {
    margin-top: 20px;
}

.btn-red:hover {
    color: #ffffff;
}

.olready-way img {
    width: 100%;
    max-height: 420px;
}

.handpicked_cards-card {
    width: 190px;
    height: auto;
}

.trending_salons_cards-card {
    width: 250px;
    height: auto;
}

.trending_offers_cards-card .trending_offers-card_heading {
    background: #ee2836;
    text-align: center;
    padding: 13px 0;
}

.trending_offers_cards-card .trending_offers-card_get {
    text-align: center;
    padding: 7px;
    /*box-shadow: 0 2px 4px 0 #9b9b9b;*/
    border: 1px solid #9b9b9b;
    border-top: 0;
}

.trending_offers_cards-card .trending_offers-card_get a {
    font-size: 16px;
    font-weight: bold;
    color: #363457;
}

.trending_offers_cards-card .trending_offers-card_heading h5 {
    color: #ffffff;
    margin: 0;
}

.trending_offers_cards-card {
    width: 230px;
    height: auto;
}

.trending_salons_cards-card img {
    width: 320px;
    height: 180px;
}

.trending_offers-card_image img {
    width: 230px;
    height: 140px;
}

.handpicked_cards-card img {
    width: 190px;
    height: 120px;
}

.handpicked_cards, .trending_salons_cards, .trending_offers_cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
}

.trending_salons_cards-detail_name {
    color: #ee2634;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 2px;
}

.handpicked_cards-detail {
    background-color: #363457;
    height: 45px;
    color: #ffffff;
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.handpicked, .trending_salons, .trending_offers {
    position: relative;
}

.handpicked__carousel_button, .trending_salons__carousel_button, .trending_offers__carousel_button {
    font-size: 28px !important;
    position: absolute;
    /*top: 180px;*/
    top: 50%;
    color: #363457 !important;
    cursor: pointer;
}

.pl-0 {
    padding-left: 0;
}

.handpicked__carousel_button-left, .trending_salons__carousel_button-left, .trending_offers__carousel_button-left {
    left: -30px;
}

.handpicked__carousel_button-right, .trending_salons__carousel_button-right, .trending_offers__carousel_button-right {
    right: -30px;
}

.trending_salons_cards-detail_address {
    font-size: 13px;
    color: #000000;
}

.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    line-height: normal;
}

.trending_salons_cards-detail_tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer-menu a:hover {
    color: #ee2634 !important;
}

.trending_salons_card-tag {
    font-size: 12px;
    padding: 5px 10px;
    background-color: #ee2634;
    color: #ffffff;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 8px;
}

.trending_salons-detail {
    border: solid 1px #bbb8bc;
    border-top: 0;
    padding: 8px 8px 0 8px;
}

.hot_tags-section {
    background: #363457;
}

.hot_tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 80px 0;
    padding: 50px;
}

.hot_tags a {
    color: #ffffff;
    margin-bottom: 20px;
}

.hot_tags a .hot_tags-category_cards .hot_tags-img img {
    transition: 800ms;
    -webkit-transition: 800ms;
    -o-transition: 800ms;
    -moz-transition: 800ms;
}

.hot_tags a:hover .hot_tags-category_cards .hot_tags-img img {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -o-transform: scale(1.3);
}

.hot_tags-img {
    padding: 20px;
    background: #ffffff;
    border-radius: 100px;
    height: 120px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hot_tags-img img {
    width: 60px;
}

.hot_tags-img-bigger img {
    width: 80px;
}

.hot_tags-category_cards {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.hot_tags-head {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
}

.stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 45px 50px;
    text-align: center;
    flex-wrap: wrap;
}

.stats .stats-cards {
    display: flex;
    flex-direction: column;
    align-content: center;
    padding: 0 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.stats .stats-cards .stats-head {
    font-size: 30px;
    font-family: Montserrat;
    font-weight: bold;
    color: #ffffff;
}

.stats .stats-cards .stats-name {
    margin-top: 5px;
    font-family: Montserrat;
    font-size: 18px;
    color: #ffffff;
}

.stats-section {
    background-color: #363457;
}

.reviews__add-btn {
    background: #ee2836;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 15px;
    position: absolute;
    top: 0;
    right: 0;
}

.reviews__see_all-btn {
    background: #ee2836;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 15px;
}

.font-red {
    color: #ee2836;
}

.reviews__heading {
    position: relative;
}

.reviews__link-btn {
    font-size: 17px;
    font-weight: 400;
    color: #e72735;
}

.reviews__link-btn.active {
    font-weight: 700;
}

.product-review-list table td, .product-review-list table th {
    padding: 5px 8px;
    border-top: 1px solid #ddd;
}

.review__links {
    display: flex;
    justify-content: space-around;
    width: 50%;
    margin: auto;
    margin-top: 50px;
}

.salon_review__card .salon_review__card_name {
    font-weight: bold;
    color: #ee2836;
    width: 85%;
    margin-top: 0;
    margin-bottom: 0;
}

.review__card_name {
    color: #ee2836;
    width: 85%;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 500;
}

.salon_review__card .salon_review__card_address {
    font-size: 12px;
    color: #000000;
}

.review__card {
    width: 31%;
}

.review__card {
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.review__card:hover {
    -webkit-transform: translate3d(0px, -5px, 0px);
    -moz-transform: translate3d(0px, -5px, 0px);
    -o-transform: translate3d(0px, -5px, 0px);
    transform: translate3d(0px, -5px, 0px);
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.12);
}

.review__card {
    position: relative;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 1px 4px 0 #e7e7e7;
    padding: 20px;
    /*margin: auto;*/
    /*margin-bottom: 50px;*/
    /*margin-top: 0;*/
    margin: 0 auto 50px auto;
}

.review__cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
}

.review_avatar {
    width: 60px;
    height: 60px;
    border-radius: 100px;
}

.salon_review__card_detail, .review__card_detail {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.review__card_info {
    padding-left: 15px;
}

.review__card_info h4 {
    margin-top: 0;
    font-weight: 300;
    font-size: 16px;
    color: #000000;
    margin-bottom: 2px;
}

.review_follow {
    border-radius: 5px;
    border: 1px solid #363457;
    padding: 4px 14px;
    color: #363457;
    font-size: 13px;
    margin-top: 10px;
}

.review_follow:hover {
    background: #363457;
    color: #ffffff;
}

.review_time {
    font-size: 12px;
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.review__cards {
    margin-top: 50px;
}

.review_social_media img {
    width: 24px;
    height: 24px;
    margin-right: 2px;
}

.mt-10 {
    margin-top: 10px;
}

.review_social_media {
    margin-top: 20px;
}

.salon_review_description {
    margin-bottom: -10px;
}

.reviews__see-all {
    text-align: center;
}

.brand__logos img {
    height: 40px;
    width: auto;
    margin: auto;
}

.brand__logos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 50px;
}

.blogs-section {
    background: #363457;
    padding: 80px 0;
}

.blogs {
    padding: 0 80px;
}

.blogs .grid-item-content h4 {
    margin-top: 15px;
    text-transform: capitalize;
    text-align: center;
}

.follow {
    background: #f1222c;
    padding: 30px 0;
}

.social-link-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.social-link-wrapper .social-link i {
    color: #ffffff;
    font-size: initial;
}

.social-link-wrapper .social-link {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-right: 5px;
    text-align: center;
}

.follow_heading {
    text-align: center;
    font-size: 16px;
    color: #ffffff;
}

.static-footer-header {
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
}

#static-footer-container a {
    color: #fff;
    font-size: 0.8em;
}

#static-footer-container ul, .links {
    padding: 0;
    list-style: none;
}

.links li a, .links li {
    color: #fff;
    font-size: 0.8em;
    padding: 2px 0px;
}

.secure_payment {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.secure_payment-heading {
    font-family: Raleway;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    margin-right: 10px;
}

.secure_payment img {
    width: 50px;
    height: 35px;
    margin-right: 5px;
}

.search-filter, .search-filter div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.search-and-compare-heading {
    font-size: 2.4em;
    color: #ee2634;
    margin-left: 0px;
    padding: 0px;
    border: none;
}

.search-filter .offers-only input, .search-filter .offers-only label {
    margin: 0;
}

.search-filters .close, .show-filters {
    display: none;
}

.search-filter .offers-only img {
    height: 20px;
    width: 20px;
}

@media only screen and (max-width: 740px) {
    .discount-btn-desktop {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .album_wrap {
        width: 49%;
    }

    .top-bar {
        font-size: 10px !important;
    }

    #shaker {
        font-size: 10px !important;
    }

    .header__right_side {
        display: none !important;
    }

    .header_inner {
        flex-direction: row;
        /*justify-content: center;*/
        height: auto;
    }

    .search .search__left .search__left-2nd_row {
        flex-direction: column !important;
        align-items: center;
    }

    .search__left-2nd_row .search-salons {
        width: 100% !important;
    }

    .search__left-2nd_row .area-block {
        width: 50% !important;
    }

    .header__right_side {
        padding-left: 0;
        flex-wrap: wrap !important;
        margin-bottom: 10px !important;
    }

    .services__content {
        flex-wrap: wrap;
    }

    .reviews__add-btn {
        position: inherit;
        top: 15px;
    }

    .review__links {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .review__links a {
        padding: 0 20px;
    }

    .review__card {
        width: 90% !important;
    }

    .call-us {
        padding: 5px 20px;
    }

    .blogs {
        padding: 0;
    }

    .search-card__row-1 {
        flex-direction: column !important;
    }

    .search-card__row-1 img {
        width: 100% !important;
        margin-bottom: 20px;
        height: 250px !important;
        margin-right: 0 !important;
    }

    .search-card__row.action-btns {
        flex-direction: column !important;
    }

    .search-card__row.action-btns .action-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .search-card__row .action-btns:first-child {
        margin-top: 0;
    }

    /*.search-card__row-2 {*/
    /*flex-direction: column;*/
    /*}*/
}

@media only screen and (max-width: 1200px) {
    .search, .services__content, .stats, .hot_tags {
        justify-content: center;
    }

    .search__left-2nd_row .area-block {
        width: 300px;
    }

    .search__left-2nd_row .search-salons {
        width: 700px;
    }

    .handpicked__carousel_button-left, .trending_salons__carousel_button-left, .trending_offers__carousel_button-left {
        left: -30px;
    }

    .handpicked__carousel_button-right, .trending_salons__carousel_button-right, .trending_offers__carousel_button-right {
        right: -30px;
    }

    .handpicked__carousel_button, .trending_salons__carousel_button, .trending_offers__carousel_button {
        font-size: 25px !important;
    }
}

@media (max-width: 1024px) {
    .review__card {
        width: 48%;
    }

    .search-result-description {
        font-size: 18px;
    }

    .brand__logos img {
        margin-bottom: 20px !important;
    }

    .search-and-compare-heading {
        font-size: 1.4em !important;
    }

    .search-salons {
        padding: 0;
    }

    .main-search-container {
        flex-direction: column;
        text-align: center;
        text-align: -webkit-center;
    }

    .olready-way img {
        /*height: 150px;*/
    }

    .carousel-inner {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .services__content-services {
        display: block !important;
        column-count: 2;
    }

    .services__content a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-inner {
        height: 150px;
    }

    .album_wrap {
        width: 80%;
        margin-left: 10%;
    }

    .search-results-top {
        position: relative !important;
        right: 0 !important;
    }

    .search__left-2nd_row .area-block {
        width: 180px;
    }

    .search__left-2nd_row .search-salons {
        width: 300px;
    }

    .search-card__row-1 img {
        width: 100% !important;
        margin-bottom: 20px;
        height: 150px !important;
        margin-right: 0 !important;
    }
}

@media (min-width: 1024px) {
    .carousel-inner {
        height: 420px;
    }
}

@media (min-width: 740px) {
    .hamburger {
        display: none;
    }

    .get-discount-mobile {
        display: none;
    }

    .header__right_side {
        display: block;
    }
}

@media (max-width: 768px) {
    .services__content .services__content-card {
        padding: 10px 10px !important;
    }

    .services__content .services__content-card p {
        font-size: 13px !important;
    }

    .search__left-2nd_row .area-block {
        display: none;
    }

    .search .search__right {
        margin-top: 40px;
    }

    .search .mobile-top-devider {
        width: calc(100% + 60px);
        height: 1px;
        background: #ee2634;
        margin: 30px 0 20px -30px;
    }

    .carousel-inner {
        height: 260px;
    }

    #request-call-back .callback-form {
        margin: 10px -15px;
    }

    .search-filters .close {
        display: block;
        font-size: 40px;
        font-weight: 500;
    }

    .show-filters {
        display: block;
    }

    .search-filters {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        margin: auto;
        width: 100%;
        z-index: 1111;
    }

    .area-search-box {
        margin-bottom: 10px;
    }

    .home-top {
        background: #3e205c !important;
        min-height: 420px !important;
    }

    .search .mobile-heading {
        display: block;
    }

    .search .desktop-heading {
        display: none;
    }

    .search__left-2nd_row .area-block {
        width: 250px;
    }

    .search__left-2nd_row .search-salons {
        width: 500px;
    }

}

@media (max-width: 550px) {
    .timing-row {
        flex-direction: column !important;
        margin-top: 10px;
    }

    .container {
        width: 100%;
    }

    .handpicked, .trending_salons, .trending_offers {
        margin: auto;
        margin-top: 50px;
        width: 90%;
    }

    .checkout-block {
        padding: 15px !important;
    }

    .date-time-heading h2 {
        font-size: 20px !important;
    }

    .date-time-detail h2 {
        font-size: 12px !important;
        font-weight: 600 !important;
    }

    .salon-heading {
        font-size: 15px !important;
        font-weight: 600 !important;
    }

    .compare-result-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .timing-row .search-card__row-heading {
        text-align: center !important;
    }

    .timing-detail {
        flex-direction: column !important;
    }

    .search__left-2nd_row .area-block {
        width: 250px;
    }

    .search__left-2nd_row .search-salons {
        width: 420px;
    }

    .search-card__row .open-status {
        margin-right: 0 !important;
    }

    .search-card__row.featured-in {
        flex-direction: column !important;
    }

    .search-sidebar__block_content-card {
        width: 100% !important;
    }

    .search-sidebar__block_content-card img {
        height: 200px !important;
    }

    .search-card__row-2 h4 {
        width: 100% !important;
        text-align: center !important;
    }

    .services-sublist > li {
        padding: 10px 0 10px 15px !important;
    }

    .search-card__row-2 {
        flex-direction: column !important;
        justify-content: center !important;
    }

    .search-result-container, .search-result-col {
        padding: 0 !important;
    }

    .search-card {
        padding: 20px !important;
    }
}

@media (min-width: 768px) {
    #sign-in-modal .modal-dialog {
        width: 400px;
    }

    #request-call-back .callback-form {
        margin: 10px -30px;
    }

    #sign-up-modal .modal-dialog {
        width: 750px;
    }

    .modal .modal-body {
        padding: 20px 30px;
    }
}

@media (min-width: 1400px) {
    .container {
        width: 1440px;
    }

    .home-top {
        width: 1440px;
        margin: 0px auto;
    }
}

.fa-chevron-circle-right, .fa-chevron-circle-left {
    z-index: 2;
    color: #fff;
    /*box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);*/
}

