/* OVERRIDES */

#Content {
    min-height: calc(100vh - 160px - 250px);
}

.h-100 {
    height: 100%!important;
}

.w-100 {
    width: 100%!important;
}

.w-90 {
   width: 90%!important;
}

.mw-40 {
    max-width: 40%;
}

.w-180px {
    width: 180px;
}



/* BEAUTY COLOR THEMES */

.beauty-color-picker-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #FFF;
    padding: 2px;
    position: relative;
    cursor: pointer;
    transition: .3s all ease-in;
}

.beauty-color-picker-box:not(:last-child) {
    margin-bottom: 5px;
}

.day-box-date{
    text-align: center;
}

.get-previous-week,
.get-previous-month,
.get-previous-year{
    cursor: pointer;
    margin-right: 10px;
}

.currently-selected-month,
.currently-selected-year{
    text-align: center;
    margin-bottom: 15px;
}

.selected-time-wrapper{
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.get-next-week,
.get-next-month,
.get-next-year{
    cursor: pointer;
    margin-left: 10px;
}

.beauty-color-picker-box.selected:after {
    content: "\2713";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.beauty-color-picker-box:hover {
    filter: saturate(200%) brightness(110%);
}

.beauty-profile-color-teal {
    background: #006767;
}

.beauty-profile-color-beige {
    background: #e3d2c2;
}

.beauty-profile-color-brown {
    background: #BD9E7E;
}

.beauty-profile-color-pink {
    background: #ce84e1;
}

.beauty-profile-color-babyblue {
    background: #00b2c4;
}


/* END COLOR THEMES */


.col {
    box-sizing: border-box;
}

i.far, i.fas {
    font-style: normal;
}

a.beauty-teal-text-link,
a.beauty-teal-text-link:link,
a.beauty-teal-text-link:hover,
a.beauty-teal-text-link:visited {
    text-decoration: none;
    color: #006767;
}

a.beauty-gold-text-link,
a.beauty-gold-text-link:link,
a.beauty-gold-text-link:hover,
a.beauty-gold-text-link:visited {
    text-decoration: none;
    color: rgba(189,158,126,1);
}



.button-default button.btn-secondary {
    background-color: #006767!important;
    border-color: #006767!important;
}

.full-width-form .form-control {
    width: 100%;
    border-radius: 5px;
    box-shadow: none;
}

input.error,
select.error,
textarea.error{
    border-color: #feabab!important;
    background-color: #ffecec!important;
}

.beauty-user-profile .btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .5rem .75rem;
    font-size: 14px;
    line-height: 1.25;
    border-radius: 1.5rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.beauty-user-profile .btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.beauty-user-profile .btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.beauty-user-profile .btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-beauty-teal {
    color: #fff!important;
    background-color: #006767!important;
    border-color: #006767!important;
}

.btn-beauty-teal:hover {
    background-color: #038a8a!important;
    border-color: #038a8a!important;
}

.beauty-user-profile label,
.labels-inputs-row .form-group > div:first-child {
    font-weight: 500;
    text-transform: uppercase;
}

.labels-inputs-row .form-group {
    display: flex;
    align-items: center;
}

.labels-inputs-row .form-group label:not(.custom-checkbox-label),
.labels-inputs-row .form-group > div:first-child {
    width: 40%;
    margin-bottom: 0;
}

.labels-inputs-row .form-group .form-control,
.labels-inputs-row .form-group > div:last-child {
    width: 60%;
    margin-bottom: 0;
}

/* main profile classes */
.beauty-user-profile {
    min-height: 50vh;
}

.beauty-user-profile h3 {
    color: #006767;
}

.text-beauty-teal {
    color: #006767!important;
}

.text-beauty-gold {
    color: #c9a887!important;
}

/* profile sidebar */

ul.profile-sidebar-list {
    list-style-type: none!important;
    list-style-image: none!important;
    text-transform: uppercase;
}

.profile-sidebar-list li.active {
    border-bottom: 1px solid #006767;
    display: inline-block;
    padding-right: 10px;
}

.profile-sidebar-list li.active a {
    color: #006767;
    font-weight: 500;
}

.profile-sidebar-list a.beauty-tab-link {
    transition: 0.5s all;
}

.profile-sidebar-list a.beauty-tab-link:hover {
    text-decoration: none;
    color: #00aaaa;
}

/* services */
.service-box{
    padding: 1em;
    border: 1px solid #006767;
    border-radius: 6px;
}

.service-box:not(:last-child) {
    margin-bottom: 1.5em;
}

.service-title {
    display: flex;
    align-items: center;
    position: relative;
    line-break: anywhere;
}

.service-status {
    min-width: 10px;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background-color: gray;
    margin-right: 8px;
}

.service-active {
    background-color: green;
}

.service-inactive {
    background-color: red;
}

/* modal */
.button-default .modal button,
.modal button {
    background-color: transparent;
    color: #000;
    box-shadow: none;
}

.form-check-children {
    padding-left: 15px;
}

.service-product-header > *:not(:first-child),
.service-product > *:not(:first-child) {
    width: 30%;
}

.service-product-header > *:last-child,
.service-product > *:last-child {
    width: 40px;
}

.service-product-header > *:not(:last-child) {
    margin-right: 8px;
}

.service-product:not(:last-child),
.service-day:not(:last-child) {
    margin-bottom: 10px;
}

.service-product > select {
    border-color: #EBEBEB;
    height: 35px;
}

.service-product > select,
.service-product > input:not(:last-child) {
    margin-right: 8px;
}

.service-product > input,
.service-product > select {
    margin-bottom: 0!important;
}

.service-product-header > span:not(:first-child),
.service-product > input:not(:first-child) {
    width: 30%;
}

.service-day .day-name {
    width: 30%;
}

input.timepicker {
    position: relative;
}

.ui-timepicker-standard {
    z-index: 9999!important;
/*    margin-top: -30px;*/
}

.ui-timepicker-container .ui-timepicker {
    border: none!important;
}



/* SERVICE PAGE */
.single-service {
    font-size: 16px;
}

.single-service #Top_bar .menu > li > a {
    padding: 5px 0;
}

.single-service .single-service-page-logo {
    position: absolute;
    top: 10px;
    right: -150px;
}

.single-service .menu_wrapper {
    margin-right: 0;
}

.single-service .single-service-header {
    height: 100px;
}



.single-service .salone .btn.btn-view-service-map {
    background-color: transparent;
    box-shadow: none;
    color: rgba(189,158,126,1);
    padding: 0;
    font-weight: 500;
    line-height: 100%;
    font-size: inherit;
    padding: 5px;
}

.single-service .salone {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.single-service .salone .description-box {
    border-bottom: 1px solid rgba(189,158,126,0.4);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.single-service .salone h4 {
    color: #006767;
}

.single-service .salone .service-categories {
    font-size: 18px;
    font-weight: 400;
}

.single-service .day-box {
    width: 40px;
    height: 40px;
    background: rgba(189,158,126,1);
    line-height: 40px;
    font-size: 18px;
    color: #FFFFFF;
    cursor: pointer;
    margin: 0 4px;
}

.single-service .day-box.current-selected-day {
    /*border: 3px solid rgba(0, 103, 103, 1);
    line-height: 34px;*/
    background: rgba(0, 103, 103, 0.85);
}

.single-service .day-box.day-box-inactive {
    opacity: 0.2;
    cursor: default;
}

.single-service .inline-edit,
.single-service .inline-edit:focus {
    width: 100%;
    background: transparent;
    background-color: transparent !important;
    border: 2px solid transparent;
    font-size: 18pt;
    margin-bottom: 0.5em;
    color: #006767;
    padding: 0;
    margin: 0;
    font-weight: 600;
    box-shadow: none;
    position: relative;
    transition: 0.5s all;
}

.single-service .inline-edit:focus {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.tooltip {
    pointer-events: none;
    text-decoration: none;
    border-bottom: none!important;
}

.tooltip:after {
    border-bottom: none!important;
}

.single-service .service-content-header {
    position: relative;
    height: 340px;
    margin-bottom: 40px;
}

.single-service .service-header-background-color {
    position: absolute;
    top: 0;
    left: 0;
    height: 270px;
    width: 100%;
    background-color: rgba(201, 168, 135, 0.5);
    padding-bottom: 4em;
}

.single-service .profile-edit-menu {
    padding-top: 20px;
    position: absolute;
    bottom: -50px;
    right: 15px;
    display: inline-block;
    width: 100%;
    text-align: right;
}

.single-service .service-profile-image {
    height: 300px;
    position: relative;
}

.single-service .service-profile-image .beauty-service-image-edit-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.5s all;
    font-size: 60px;
}

.single-service .service-profile-image .beauty-service-image-edit-container a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
    flex-direction: column;
    color: #FFF;
}

.single-service .service-profile-image .beauty-service-image-edit-container a p{
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
    line-height: 1.75;
    margin-bottom: 0;
}

.single-service .service-profile-image > img {
    transition: 0.5s all;
}

.single-service .service-profile-image.can-edit:hover > img {
    opacity: 0.6;
    filter: blur(4px);
}

.single-service .service-profile-image:hover > .beauty-service-image-edit-container {
    opacity: 1;
}

.single-service .profile-edit-menu ul > li > ul {
    opacity: 0;
    display: none;
    transition: 1s all;
    position: absolute;
    top: -20px;
    right: 50px;
    height: max-content;
    width: max-content;
    background: #FFF;
    padding: 20px;
    z-index: 9999;
}

.single-service .profile-edit-menu ul > li > ul > li {
    font-size: 16px;
}

.single-service .profile-edit-menu ul > li {
    position: relative;
    cursor: pointer;
    font-size: 36px;
    color: #FFF;
    opacity: 0.7;
    transition: 0.5s all;
}

.single-service .profile-edit-menu ul > li:hover {
    opacity: 1;
}

.single-service .profile-edit-menu ul > li:hover > ul {
    opacity: 1;
    display: block;
    border-right: 2px solid white;
    padding-right: 8px;
}

.single-service .profile-edit-menu ul > li:hover > ul > li {
    opacity: 1;
}

.single-service .profile-edit-menu ul > li > ul > li > a {
    color: rgba(0, 103, 103, 0.85);
    opacity: 0.7;
    transition: 0.5s all;
    font-weight: 400;
}

.single-service .profile-edit-menu ul > li > ul > li > a:hover {
    color: rgba(0, 103, 103, 1);
    text-decoration: none;
    opacity: 1;
}

.single-service .profile-edit-menu ul > li > ul > li > a > i {
    margin-left: 10px;
}

.single-service .service-profile-image img {
    border-radius: 50% !important;
    height: 100% !important;
}

.single-service .profile-rating-total {
    font-size: 2em;
    height: 30px;
    line-height: 30px;
}

.single-service .booking-wrapper-border {
    border: 2px solid rgba(201, 168, 135, 0.5);
    border-radius: 15px;
    padding: 15px;
    height: 100%;
    box-shadow: -5px 5px 5px rgba(201, 168, 135, 0.5);
}

.single-service .next-available-times h5 {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.single-service .book-time-product-select {
    width: 100%;
    border: none;
    box-shadow: none;
    text-align: center;
    border-bottom: 1px solid rgba(189,158,126,1);
    background: transparent;
    background-color: transparent!important;
    color: #626262;
    font-size: 16px;
    position: relative;
    margin-bottom: 16px;
    transition: .5s all;
}

.select-arrow {
    position: relative;
}

.select-arrow > .chevron {
    position: absolute;
    top: calc(50% - 10px);
    right: 20px;
    width: 20px;
    height: 20px;
    pointer-events: none;
    color: rgba(189,158,126,1);
}

.single-service .book-time-product-select:focus,
.single-service .book-time-product-select:active,
.single-service .book-time-product-select:checked {
    background: transparent;
    background-color: transparent!important;
    color: #626262;
    box-shadow: none!important;
}

.single-service .book-time-product-select:hover {
    background-color: rgba(189,158,126, 0.2)!important;
    cursor: pointer;
}


.single-service .book-time-product-select:focus > option:focus,
.single-service .book-time-product-select:focus > option:hover,
.single-service .book-time-product-select:focus > option:checked {
    background: rgba(189,158,126, 1)!important;
    background-color: rgba(189,158,126, 1)!important;
    color: #fff;
}

.single-service .selected-product-price {
    width: 100%;
    text-align: center;
    font-size: 22px;
    font-weight: 400;
}

.single-service .another-date-button {
    background-color: transparent;
    color: rgba(189,158,126,1);
    border: 2px solid rgba(189,158,126,1);
    box-shadow: none;
    opacity: 0.8;
}

.single-service .another-date-button:hover {
    opacity: 1;
}

.single-service .another-date-button:hover:after {
    background: rgba(189,158,126, 0.1);
}

.single-service .booking-button-container .btn-beauty-teal {
    padding: 8px 20px;
    border-radius: 25px;
}

.single-service .selected-date-display {
    font-size: 12px;
    line-height: 14px;
    padding-top: 8px;
    color: rgba(189,158,126, 1);
    font-weight: 400;
}

.single-service .loading-times {
    width: 100%;
    text-align: center;
    padding: 12px;
    color: rgba(189,158,126, 1);
}


.single-service .reviews-containter {
    max-height: 50vh;
    overflow: auto;
    padding-right: 15px;
}

.service-new-wrapper-border {
    border: 2px solid rgba(201, 168, 135, 0.5);
    border-radius: 15px;
    max-height: calc(50vh + 30px + 30px); /* account for padding + the avg rating height from reviews */
    overflow: hidden;
    padding: 15px;
    box-shadow: -5px 5px 5px rgba(201, 168, 135, 0.5);
}

.single-service .service-news {
    max-height: calc(50vh + 30px);
    overflow: auto;
    padding-right: 15px;
}

.submit-single-service-review:after{
    display: none !important;
}

#single-service-leave-review{
    padding: 0;
}

@media only screen and (min-width: 767px){
    #single-service-leave-review{
        padding-right: 15px;
    }
}

/* width */
.single-service .service-news::-webkit-scrollbar,
.single-service .reviews-containter::-webkit-scrollbar {
    width: 10px;
    margin-right: 10px;
}

/* Track */
.single-service .service-news::-webkit-scrollbar-track,
.single-service .reviews-containter::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.single-service .service-news::-webkit-scrollbar-thumb,
.single-service .reviews-containter::-webkit-scrollbar-thumb {
/*    background: rgba(0, 103, 103, 0.5);*/
    background: rgba(201, 168, 135, 0.5);
}

/* Handle on hover */
.single-service .service-news::-webkit-scrollbar-thumb:hover ,
.single-service .reviews-containter::-webkit-scrollbar-thumb:hover {
/*    background: rgba(0, 103, 103, 0.85);*/
    background: rgba(201, 168, 135, 0.85);
}



.single-service .reviews-containter .review {
    padding-bottom: 10px;
}

.single-service .reviews-containter .review:not(:last-child) {
    margin-bottom: 10px;
    border-bottom: 1px solid #00676726;
}

.single-service .author-initial {
    width: 40px;
    height: 40px;
    background: rgba(0, 103, 103, 0.85);
    border-radius: 50%;
    line-height: 40px;
    font-size: 20px;
    text-align: center;
    color: #FFF;
    text-indent: -2px;
    margin-right: 8px;
}

.single-service .review-rating,
.single-service .review-date {
    font-size: 12px;
}

.single-service .review-rating i.fas {
    color: #c9a887;
}

.single-service .review-rating i.far {
    color: #c9a887;
    opacity: 0.3;
}

.single-service .salone:hover {
    box-shadow: none;
}

.single-service .beauty-star-rating {
    margin-top: 10px;
}

.single-service .social-media-links a {
    opacity: 0.5;
    transition: .5s all;
}

.single-service .social-media-links a:hover {
    text-decoration: none!important;
    opacity: 1;
}

.single-service .social-media-links a svg {
    fill: rgba(189,158,126,1);
}

.single-service .salone i {
    opacity: 0.5;
    color: rgba(189,158,126,1);
    fill: rgba(189,158,126,1);
    margin-left: 3px;
    margin-right: 5px;
}

.salone  img.service-language-icon {
    border-radius: 0!important;
    margin: 0;
    padding: 0;
    margin-right: 5px;
}

.single-service .salone .pro-feature i {
    opacity: 1;
    color: rgba(255, 189, 0, 1);
    margin-left: 3px;
    margin-right: 5px;
}

.tooltip {
    margin-bottom: 0px;
}

.tooltip .arrow::before,
.tooltip .arrow::after {
    border-top-color: rgba(0, 103, 103, 1);

}

.tooltip .tooltip-inner {
    background: rgba(0, 103, 103, 1);
}

.service-reviews, .service-news .news {
    padding-bottom: 5px;
    position: relative;
}

.service-reviews, .service-news .news:not(:last-child) {
    border-bottom: 1px solid #bda49f;
    margin-bottom: 15px;
}

.service-reviews, .service-news .news .post-date {
    color: rgba(189,158,126,1);
    font-weight: 400;
}

.service-reviews, .service-news .news .delete-post {
    position: absolute;
    top: 5px;
    right: 5px;
    opacity: 0.4;
    transition: 0.5s all;
}

.service-reviews, .service-news .news .delete-post a {
    color: rgba(189,158,126,1);
}

.service-reviews, .service-news .news .delete-post:hover {
    opacity: 1;
}

.splide .splide__arrow {
    background: transparent;
    box-shadow: none;
    transition: 0.5 all;
}

.splide .splide__arrow:hover {
    fill: #006767;
}

.splide .splide__arrow:hover::after {
    width: 0%;
}

.splide .splide__arrow[disabled] {
    opacity: 0.3;
    cursor: none;
    pointer-events: none;
}

.splide__arrow--prev {
    left: 0em;
}

.splide__arrow--next {
    right: 0em;
}

#splide-featured-gallery {
    min-height: 50px;
}

.service-reviews li,
.service-news li {
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.service-reviews li .review {
    padding: 10px 20px;
    background: rgba(0, 103, 103, 0.85);
    color: #FFF;
    border-radius: 20px;
}

.service-news li .news {
    padding: 10px 20px;
    border-left: 4px solid rgba(0, 103, 103, 0.85);
    border-right: none;
    max-width: 90%;
}

.service-news li .news p {
    margin-bottom: 0;
}

.service-news li:nth-child(even) .news {
    border-left: none;
    border-right: 4px solid rgba(0, 103, 103, 0.85);
}

.service-reviews li:nth-child(even),
.service-news li:nth-child(even) {
    justify-content: flex-end;
}

.service-border-bottom {
    position: relative;
    margin-bottom: 30px;
}

.service-border-bottom::after {
    content: "\0020";
    display: block;
    width: calc(100% - 30px);
    height: 1px;
    margin: 0 auto;
    background: rgba(201, 168, 135, 0.5);
    margin-top: 40px;
}

#service-map {
    height: 40vh;
    border-radius: 10px;
}

.single-service-header {
    height: 70px;
}

.single-service #Top_bar .top_bar_left{
    width: 100%;
    height: 100px;
}

.single-service * {
    box-sizing: border-box!important;
}

.single-service #Subheader {
    padding: 150px 0 0px;
}

.single-service #Content {
    min-height: 70vh;
}

.single-service .address {
    border-bottom: 1px solid gray;
}

.single-service .products {
    width: 100%;
    border-spacing: 10px;
}

.single-service .last-seen-box {
    padding: 15px;
    cursor: pointer;
    width: 20%;
}

.single-service .last-seen-box:hover > a > .last-seen-image {
    transform: scale(1.05, 1.05);
}

.single-service .last-seen-box:hover > a,
.single-service .last-seen-box a:hover {
    text-decoration: none;
    color: rgba(102, 92, 82, 1);
}

.single-service .last-seen-box a {
    color: rgba(102, 92, 82, 0.7);
    transition: 0.5s all;
}

.single-service .last-seen-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    transition: 0.5s all;
    margin: 0 auto;
}

.single-service .last-seen-title {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 400;
}

.rating {
    color: #c9a887;
}

.time-loading {
    font-size: 1.3em
}

.service-image {
    position: relative;
}

.profile-featured-images {
    padding: 0 20px;
}

.profile-featured-image-box {
    padding: 10px;
    position: relative;
    text-align: center;
}

.profile-featured-image-box .remove-feature-image-button {
    position: absolute;
    top: 6px;
    left: calc(50% - 10px);
    opacity: 0;
    transition: .5s all;
}

.profile-featured-image-box .remove-feature-image-button i {
    color: #006767;
}

.profile-featured-image-box:hover > .remove-feature-image-button {
    opacity: 1;
}

#Content .profile-featured-image-box img {
    border-radius: 0px;
}

.calendar-day-box,
.calendar-buttons-box {
    margin-bottom: 20px;
    display: flex;
}

.calendar-day-box .inner {
    width: 100%;
    padding: 8px;
    border: 2px solid #006767;
    border-radius: 5px;
}

.calendar-buttons-box .inner {
    width: 100%;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.calendar-day-box .calendar-date {
    border-bottom: 2px solid #006767;
    background: #006767;
    text-align: center;
    font-weight: 500;
    color: #FFF;
    margin: -8px -8px 10px -8px;
    padding: 8px;
}

.appointments .appointment-data:not(:last-child) {
    border-bottom: 1px solid #006767;
    margin-bottom: 14px;
    padding-bottom: 8px;
}

.appointments .appointment-data:odd {

}

.appointment-data .a-time {
    display: block;
    color: #006767;
    font-weight: 600;
    font-size: 1.2em;
}

.appointment-data .a-user {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.appointment-data .a-time i,
.appointment-data .a-user i {
    margin-right: 8px;
}

.book-appointment-manually-container {
    border-top: 1px solid #006767;
}

#Content .profile-highlight-image-box img {
    border-radius: 0px;
}

.um-page-password-reset #Subheader,
.um-page-register #Subheader,
.um-page-login #Subheader,
.beauty-user-profile #Subheader {
    padding: 52px 0 52px;
}

.um-page-password-reset .um input[type=submit].um-button,
.um-page-login .um input[type=submit].um-button{
    background: linear-gradient(45deg, rgba(156,125,98,1) 0%, rgba(156,128,97,1) 27%, rgba(210,178,141,1) 52%, rgba(233,209,179,1) 71%, rgba(189,158,126,1) 89%, rgba(189,158,126,1) 100%);
    border-color: #bfa586;
    padding-left: 20px;
    padding-right: 20px;
}

.profile-highlight-images {
    gap: 10px;
}

.profile-highlight-image-box {
    position: relative;
    width: 30%;
    height: 100px;
    overflow: hidden;
    border-radius: 5px;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.profile-highlight-image-box a {
    width: 100%;
    height: 100%;
}

.sl-wrapper .sl-close,
.sl-wrapper button.sl-prev,
.sl-wrapper button.sl-next {
    background: #FFF;
    border: none;
    box-shadow: none;
}

/* SERVICE CATEGORY PAGE OVERRIDES */

.beauty-home-template *,
.service-category-template * {
    box-sizing: border-box;
}

.salone .btn, a.btn {
    border-radius: 4px!important;
}

.salon_text {
    min-height: 80px;
    display: block;
    word-wrap: break-word;
}

.home-page-header-containter,
.service-category-header {
    background-color: #006767;
}

.home-page-header-image,
.service-category-image {
    background-repeat: no-repeat;
    background-position: center;
    min-height: 550px;
    background-size: cover;
}

.home-page-header-containter {
  border-bottom: 2px solid white;
}

.home-page-header-image {
    border-right: 2px solid white;
}

.modal .btn.btn-primary {
    background: linear-gradient(45deg, rgba(156,125,98,1) 0%, rgba(156,128,97,1) 27%, rgba(210,178,141,1) 52%, rgba(233,209,179,1) 71%, rgba(189,158,126,1) 89%, rgba(189,158,126,1) 100%);
    border-color: #bfa586;
    padding-left: 20px;
    padding-right: 20px;
}

/* search form */

.beauty-search-form {
    padding: 12rem 3rem 2rem 1rem;
}

.beauty-search-form h2 {
    color:#fff !important;
    padding-bottom:2rem;
}

.search-submit-button {
    margin: 0;
    background: linear-gradient(45deg, rgba(156,125,98,1) 0%, rgba(156,128,97,1) 27%, rgba(210,178,141,1) 52%, rgba(233,209,179,1) 71%, rgba(189,158,126,1) 89%, rgba(189,158,126,1) 100%);
    font-size: 1.1em!important;
    min-width: 110px;
    color: #000!important;
    font-weight: 500;
    height: 48px;
}

.location-search {
    position: relative;
}

.map-icon {
    position: absolute;
    top: 8px;
    right: 10px;
    height: 30px;
    font-size: 30px;
    color: #006767;
    cursor: pointer;
    opacity: 0.7;
}

#find-beauticians-loading {
    font-size: 1.5em;
}

#find-beauticians-results{
    display: flex;
    flex-wrap: wrap;
}

/* menu */

#Top_bar #menu {
    background: transparent!important;
}

.menu_wrapper {
    margin-right: 2rem;
}

.wpml-ls-menu-item a span:after {
    content: ".";
    opacity: 0;
}

body #Top_bar .menu > li > a,
body #Top_bar #menu ul li.submenu .menu-toggle,
body #Top_bar .menu > li.current_page_item > a {
    color: #FFF;
}

body #Top_bar .menu > li.current_page_item > a {
  text-decoration: underline;
}

body:not(.template-slider) #Top_bar .menu > li > a,
body:not(.template-slider) #Top_bar #menu ul li.submenu .menu-toggle {
    color: #FFF;
}

body.home #Top_bar .menu li ul {
    top: calc(100% - 40px)!important;
    text-align: left;
}

#Top_bar .menu {
    display: inline-block!important;
}

body.tax-service_category #Top_bar .top_bar_left {
    width: 100%!important;
    display: flex;
}

body.tax-service_category #Top_bar .logo {
    position: relative;
    right: auto;
    margin: 0!important;
}

body.tax-service_category #Top_bar #logo {
    height: 100%;
}

.content_slider.carousel .content_slider_ul li .title {
    text-align: center;
}

/* service cat page */
.beauty-star-rating {
    color: #ccd6df;
    font-family: eicons;
    display: inline-block;
}

.beauty-star-rating i {
    display: inline-block;
    position: relative;
    font-style: normal;
    cursor: default;
}

/*.elementor-star-rating i:before {
    content: "\e934";
    display: block;
    font-size: inherit;
    font-family: inherit;
    position: absolute;
    overflow: hidden;
    color: #f0ad4e;
    top: 0;
    left: 0;
}*/

.beauty-star-rating i:before {
    color: #c9a887;
}

.beauty-star-rating :nth-child(1) {
    left: -5.5px;
    top: -7.4px;
}

.beauty-star-rating :nth-child(2) {
    left: -3.5px;
    top: -2.5px;
}

.beauty-star-rating :nth-child(3) {
    left: 0px;
    top: 0px;
}

.beauty-star-rating :nth-child(4) {
    left: 3.5px;
    top: -2.5px;
}

.beauty-star-rating :nth-child(5) {
    left: 5.5px;
    top: -7.5px;
}

.hint {
    font-style: italic;
    color: #b2b2b2;
}

/* subscriptions page */
.subscription-separator {
    width: 4px;
    background: #006767;
    opacity: 0.5;
}

.subscription-type-box {
    position: relative;
    overflow: hidden;
    width: calc((100% - 20px) / 2);
    padding: 20px;
}

.subscription-type-box.current-tier-box {
    background: rgba(0, 103, 103, 0.1);
    border-radius: 10px;
}

.subscription-type-box h2 {
    color: #006767;
    padding-bottom: 20px;
    border-bottom: 3px solid #006767;
}

.current-tier {
    position: absolute;
    top: 30px;
    right: -60px;
    background: #006767;
    color: #FFF;
    transform: rotate(45deg);
    padding: 10px 40px;
    width: 260px;
    text-align: center;

    background: linear-gradient(45deg, rgba(156,125,98,1) 0%, rgba(156,128,97,1) 27%, rgba(210,178,141,1) 52%, rgba(233,209,179,1) 71%, rgba(189,158,126,1) 89%, rgba(189,158,126,1) 100%);
    border-color: #bfa586;
}

.sub-price {
    font-size: 40px;
    color: #006767;
    padding: 20px 0;
    font-weight: 600;
}

button.btn.sub-buy-now {
    background: linear-gradient(45deg, rgba(156,125,98,1) 0%, rgba(156,128,97,1) 27%, rgba(210,178,141,1) 52%, rgba(233,209,179,1) 71%, rgba(189,158,126,1) 89%, rgba(189,158,126,1) 100%);
    border-color: #bfa586;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #FFF;
}

.subscription-description ol {
    list-style-type: circle;
}

.subscription-buttons-container a {
    color: #006767;
    font-weight: 500;
}

.appointment-box:nth-child(odd) {
    background: #bda49f30;
}

.appointment-box {
    border-bottom: 1px solid #bda49f;
    padding-bottom: 15px;
    padding-top: 15px;
}

.appointment-buttons a {
    display: inline-block;
    padding: 4px 10px;
    background: #006767;
    color: #FFF;
    border-radius: 8px;
    transition: .5s all;
}

.appointment-buttons a:hover {
    text-decoration: none;
    color: #FFF;
    background: #1b9595;
}

.appointment-buttons a i {
    margin-right: 5px;
}

.review-rating-star {
    color: #c9a887;
    transition: .5s allö
}

.review-rating-star:hover {
    text-decoration: none;
    color: #d9b48f;
}

.form-control:focus {
    background-color: #fff!important;
    border-color: #b8b8b8!important;
}

span.description {
    display: block;
    font-style: italic;
}


.home-page-search-section {
    padding-top: 40px;
    padding-left: 10%;
    padding-right: 10%;
    background-color: #006767;
}

.salone img {
    max-width: 100%;
}

.button-default button.toast-close-button {
    background-color: transparent;
}

.appointment-actions{
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.delete-appointment{
    font-size: 20px;
    margin-right: 10px;
    color: #dc3545;
    cursor: pointer;
}

.edit-appointment{
    font-size: 20px;
    color: #BD9E7E;
    cursor: pointer;
}

/* media overrides */


@media only screen and (min-width: 1240px) and (max-width: 1520px) {
    #menu > ul > li > a, a.action_button, #overlay-menu ul li a {
        font-size: 13px!important;
    }

    #Top_bar .menu > li > a span:not(.description) {
        padding: 0 10px!important;
    }

    .beauty-logo {
        width: 60px;
    }

    .beauty-logo img {
        max-width: 100%;
    }
}

@media only screen and (min-width: 1300px) and (max-width: 1520px) {
    #menu > ul > li > a, a.action_button, #overlay-menu ul li a {
        font-size: 15px!important;
    }
}


/* mobile */
@media only screen and (max-width: 767px) {
    /* hide the logo on mobile */
    #Top_bar .logo {
        display: none;
    }

    #Top_bar a.responsive-menu-toggle {
        top: 27px!important;
    }

    .home-page-search-section {
        padding: 40px 20px 0px 20px;
    }

    .home-page-search-section > .mcb-section-inner {
        max-width: 100% !important;
    }

    .home-page-search-container > .mcb-wrap-inner {
        display: flex;
        flex-wrap: wrap;
    }

    .home-page-search-container > .mcb-wrap-inner > .search_image {
        width: auto!important;
        flex-grow: 0;
        flex-basis: 30%;
    }

    .home-page-search-container > .mcb-wrap-inner > .search_title {
        width: auto!important;
        flex-grow: 0;
        flex-basis: 70%;
        display: flex;
        align-items: center;
        text-align: center;
    }

    .home-page-search-container > .mcb-wrap-inner > .search_form {
        flex-basis: 100%;
    }

    .slider-main-text {
        font-size: 20px!important;
        padding-right: 40px;
    }

    .single-service #Top_bar {
        background-color: transparent !important;
    }

    .single-service .single-service-header {
        align-content: center;
        justify-content: center;
    }

    .single-service .single-service-header > div {
        width: 100%;
    }

    .um-page-user #Top_bar a.responsive-menu-toggle,
    .single-service #Top_bar a.responsive-menu-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        color: #006767;
        height: 100%;
    }

    .profile-sidebar-list {
        margin: 0!important;
        padding: 0!important;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 20px!important;
    }

    .profile-sidebar-list > li:not(:nth-child(3)) {
        margin-right: 20px;
    }

    .my-subcription-wrapper {
        flex-wrap: wrap;
    }

    .subscription-type-box {
        width: 100%;
        border: 2px solid;
        border-color: rgba(0, 103, 103, 0.1);
        border-radius: 10px;
    }

    .subscription-type-box:not(:last-child) {
        margin-bottom: 20px;
    }

    body.admin-bar .modal {
        top: 40px!important;
        height: calc(100% - 40px);
    }
}

.theme-selector {
    position: absolute;
    top: 0;
    right: -90px;
}

#updating-container {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    color: #006767;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s all;
    text-transform: uppercase;
    font-size: 2em;
}

#updating-container.shown {
    opacity: 1;
    pointer-events: all;
}

@media screen  and (min-width:1470px){
    .beauty-search-form h2 {
        color: #fff !important;
        padding-bottom: 2rem;
        padding-left: 1.7rem;
    }
    
    .beauty-search-form {
        padding: 10rem 3rem 2rem 1rem !important;
    }
}

@media only screen and (max-width: 1630px) {
    .beauty-search-form h2 {
        font-size: 40px;
    }
    
    #search-form input, #search-form select {
    }
    
    .search-submit-button {
    }
    
    .beauty-search-form {
        padding: 10rem 3rem 2rem 1rem !important;
    }
}

@media only screen and (max-width: 1470px) {
    .beauty-search-form {
        padding: 9rem 3rem 1rem 1rem !important
    }
    
    .beauty-search-form h2 {
        font-size: 38px;
        padding-bottom: 1rem;
    }
    
    #search-form input, #search-form select {
        font-size: 12px;
        padding: 5px;
    }
    
    .map-icon {
        font-size: 24px;
        top: 6px;
    }
    
    .search-submit-button {
        height: 38px;
    }
}

/* where mobile menu appears */
@media only screen and (max-width: 1240px) {
    .beauty-search-form h2 {
        font-size: 30px;
    }
    
    .beauty-search-form {
        padding: 4.5rem 3rem 2rem 1rem !important
    }
}

#loginModal .error-message{
    margin-bottom: 10px;
    border: 1px solid #c3313e;
    border-radius: 5px;
    color: #c3313e;
    padding: 10px 0px;
    font-size: 15px;
}

.product-validation-error{
    border: 1px solid #c3313e;
    border-radius: 5px;
    color: #c3313e;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    display: inline-block;
}

.area-codes{
    max-height: 100px;
    overflow: scroll;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-areacode-selector img{
    border-radius: 0 !important;
    width: 17.6px;
    height: 11.7px !important;
    max-width: 17.6px !important;
}

.selected-area-code{
    border: 1px solid rgba(0,0,0,.08);
    height: 35px;
    width: 100px;
    margin-right: 15px;
    margin-left: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-areacode-selector{
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 5px;
}

.service-areacode-selector .selected-option{
    padding: 0 5px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    text-align: center;
    height: 33px;
    display: flex;
    align-items: center;
}

.area-code-selection{
    font-size: 14px;
    color: #626262;
    font-weight: 400;
}

.service-areacode-selector .option{
    display: flex;
    padding: 5px;
}

.service-CRUD-buttons{
    display: flex;
    flex-direction: column;
}

.editable-field[data-field="service-title"]{
    line-break: anywhere;
    padding-right: 25px;
}

.service-CRUD-buttons .btn{
    margin: 5px 0px;
}

.search-form-error{
    color: #c3313e;
    background: #FFF;
    border-radius: 5px;
    padding: 0 7px;
}

.search-form-error-field{
    border: 1px solid #c3313e;
    border-bottom: 2px solid #c3313e;
    position: relative;
}

.short-desc-trigger{
    font-size: 13px;
    text-decoration: underline;
}

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