@font-face {
    font-family: "OpenSans";
    font-weight: normal;
    src: url("../fonts/fontawesome-webfont.woff");
}
:root {
    --dark-color: #180235;
    --gray-color: #1d2331;
    --active-color: #c6005f;
    --hover-color: #b9095e;
    --gradient-color: linear-gradient(270.66deg, #ff0071 3.95%, #a2028b 96.47%);
}
input,
button,
textarea,
select {
    font-family: "Montserrat", sans-serif;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: normal;
    color: #fff;
    font-size: 16px;
    background: var(--dark-color);
}

.page-lang__he {
    direction: rtl;
}

html,
body {
    padding: 0;
    margin: 0;
    height: 100vh;
    height: var(--doc-height);
}

.page-wrapper {
    overflow: hidden;
    position: relative;
    margin-left: auto;
    position: relative;
    min-height: 100vh;
    padding: 100px 0 132px;
    background-image: url("../img/bg_head.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*.page-wrapper::before {
    content: "";
    position: absolute;
    top: 70%;
    width: 120%;
    height: 50%;
    left: -10%;
    border-radius: 100%;
    background: var(--active-color);
    filter: blur(50px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}*/

.container {
    width: 1280px;
    max-width: 100%;
    margin: 0 auto;
}

.modal {
    height: 100%;
}

.modal-overlay {
    height: 100%;
}

.modal-list {
    height: 100%;
}

.page-padding {
    padding: 40px 0;
    width: 100%;
}

.page-title {
    color: #fff;
    font-weight: bold;
    font-size: 48px;
    margin-bottom: 40px;
}

.clients-item {
    width: calc(50% - 10px);
    margin-top: 20px;
    /*background: #f8f8fb;*/
    border-radius: 12px;
    padding: 11px;
    /*border: 1px solid var(--active-color);*/
    font-size: 18px;
    line-height: 24px;
    background: var(--gradient-color);
}
.clients-item__photo {
    width: 120px;
    min-width: 120px;
    height: 120px;
    margin-left: 20px;
}
.clients-item__photo img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}
.clients-item__name {
    font-weight: bold;
    color: #fff;
}
.clients-item__phone {
    color: #fff;
    text-decoration: none;
    margin-top: 10px;
}
.clients-item__link {
    margin-right: auto;
    filter: brightness(0) invert(1);
}
.clients-item__link:hover {
    transform: translate(3px, -3px);
}

.btn {
    text-decoration: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: all 0.4s;
    padding: 0 32px;
    height: 50px;
    background: var(--active-color);
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    max-width: 100%;
    white-space: nowrap;
}
.btn:hover {
    background: var(--hover-color);
}
.btn.btn-border {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}
.btn.btn-border:hover {
    background: #fff;
    color: var(--active-color);
}
.btn.btn-red {
    background: red;
    color: #fff;
}
.btn.btn-red:hover {
    background: rgb(214, 6, 6);
    color: #fff;
}
.btn.btn-white {
    background: #fff;
    color: var(--dark-color);
    border: none;
}
.btn.btn-white:hover {
    background: var(--dark-color);
    color: #fff;
}

.toggle-color__btn {
    margin-left: 16px;
}

.file-img {
    display: block;
    width: 140px;
    min-width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 100%;
}

.pay-radios.mb {
    margin-bottom: 16px;
}

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

.w-500 {
    width: 500px;
}

.success-fill__btn.btn {
    width: 100%;
    padding: 0;
}

.input {
    display: flex;
    width: 100%;
    align-items: center;
    padding-right: 14px;
    height: 50px;
    border-radius: 10px;
    font-size: 16px;
    color: var(--dark-color);
    border: 1px solid var(--dark-color);
    font-size: 18px;
}
textarea.input {
    display: block !important;
    padding-top: 12px;
    height: 120px;
    width: 100%;
    resize: none;
}

.form-error {
    background: red;
    color: #fff;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    border-radius: 12px;
    margin-top: 24px;
}

.date-title span {
    white-space: nowrap;
}

.menu {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 20;
    /*background: #A594F9;*/
    padding: 16px;
    pointer-events: none;
}

.toggle {
    background: #ddd;
    width: 32px;
    min-width: 32px;
    height: 16px;
    border-radius: 32px;
    display: block;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    cursor: pointer;
    float: left;
}
.toggle:after {
    content: "";
    background: #999;
    display: block;
    height: 16px;
    width: 16px;
    border-radius: 100%;
    position: absolute;
    left: 0px;
    transform: scale(0.9);
    cursor: pointer;
    transition: all 0.4s ease;
}
.toggle:checked {
    background: #eee;
}
.toggle:checked:after {
    background: #09f;
    left: 16px;
}

.clients-form {
    margin-bottom: 32px;
    width: 100%;
}
.clients-btn {
    margin-right: 16px;
}
.menu-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-color);
    border-radius: 12px;
    height: 100px;
    overflow: hidden;
}
.menu-list > *,
.menu-list > *::before,
.menu-list > *::after {
    pointer-events: auto;
}

.menu-nav {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-nav li {
    display: block;
}
.menu-nav li a {
    text-decoration: none;
    outline: none;
    display: inline-flex;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100px;
    align-content: center;
    transition: all 0.4s;
    padding: 0 24px;
}
.menu-nav li a:hover {
    background: var(--active-color);
}
.menu-nav li a img {
    width: 40px;
    display: block;
    margin: 0 auto;
}
.menu-nav li a span {
    /*position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% + 10px);*/
    /*background: var(--active-color);
    padding: 4px;
    border-radius: 4px;*/
    color: #fff;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    order: 1;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
}

.pagination {
    margin-top: 32px;
}
.pagination-content {
    margin: 0;
    font-size: 16px;
    color: #fff;
}
.pagination-prev {
    margin-left: 24px;
}
.pagination-next {
    margin-right: 24px;
}

.clientsProfile-img {
    width: 120px;
    height: 120px;
    min-width: 120px;
    margin-left: 24px;
    border-radius: 100%;
    object-fit: cover;
}
.icon-link {
    margin-right: 12px;
    width: 30px;
}
.icon-link:hover {
    opacity: 0.8;
}
.clientsProfile-title {
    font-size: 24px;
    line-height: 32px;
    color: #fff;
}
.clientsProfile-text {
    margin-top: 10px;
    color: #fff;
    font-size: 18px;
}
.clientsProfile-text a {
    color: #fff;
    text-decoration: underline;
}
.clientsProfile-orders {
    padding-top: 12px;
}
.menu-nav__center a {
    background: var(--active-color);
    padding: 0 12px;
}
.menu-nav__center {
    margin: 0 12px;
}
.clientsProfile-item {
    margin-top: 20px;
    background: var(--gradient-color);
    border-radius: 12px;
    padding: 11px;
    /*border: 1px solid #A594F9;*/
    font-size: 16px;
    transition: all 0.4s;
}
.clientsProfile-item:hover {
    box-shadow: 0 0 4px 4px rgba(255, 255, 255, 0.1);
}
.clientsProfile-item__date {
    width: 150px;
    min-width: 150px;
}
.clientsProfile-item__price {
    margin-right: auto;
}
.clientsProfile-item__status {
    height: 30px;
    padding: 0;
    width: 132px;
    min-width: 132px;
    background: #a06cd5;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 14px;
    position: relative;
    z-index: 4;
    margin-right: 32px;
    justify-content: center;
    text-align: center;
    transition: all 0.4s;
}
.clientsProfile-item__status:hover {
    opacity: 0.9;
}
.clientsProfile-item__status.red {
    background: #fe5f55;
}
.clientsProfile-item__status.green {
    background: #69b992;
}
.clientsProfile-item__status.blue {
    background: #00afb5;
}
.clientsProfile-item__first {
    background: var(--gray-color);
    box-shadow: none !important;
}
.clientsProfile-item__first .clientsProfile-item__status {
    padding: 0;
    background: transparent;
}

.clientsProfile-item__link {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 20;
    background: #110125;
}
.header-list {
    height: 100px;
}
.header-logo {
    font-weight: bold;
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
}
.header-logo img {
    width: 60px;
    /*margin-left: 18px;*/
}
.empty-text {
    margin-top: 24px;
    text-align: center;
}
.header-profile img {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    min-width: 60px;
    margin-right: 10px;
    object-fit: cover;
    border: 2px solid var(--active-color);
}
.header-profile span {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.dashboard-block {
    width: 33.333%;
    margin-top: 40px;
}
.dashboard-block.w50 {
    width: 50%;
}
.dashboard-item {
    /*background: var(--gray-color);*/
    background: var(--gradient-color);
    height: 160px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 18px;
    /*border: 2px solid var(--gray-color);*/
    transition: all 0.4s;
}
.dashboard-item:hover {
    border-color: var(--active-color);
}
.dashboard-item span {
    font-weight: bold;
}

.dashboard-item img {
    width: 80px;
    min-width: 80px;
    margin-left: 20px;
}
.header-logout {
    margin-left: 16px;
}
.header-logout:hover {
    opacity: 0.7;
}
.select {
    height: 50px;
    width: 300px;
    max-width: 100%;
    position: relative;
}
.select select {
    display: none;
}
.select .nice-select {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 16px;
    border: 1px solid #ccc;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 16px;
    border-radius: 12px;
    background: #fff;
}
.dashboard-select {
    margin-left: 20px;
}
.select .nice-select::after {
    display: none;
}
.select .nice-select::before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    left: 12px;
    top: calc(50% - 12px);
    background-image: url("../img/select-arrow.svg");
    background-size: 24px;
}
.nice-select.open .nice-select-dropdown {
    width: 100%;
    border-radius: 12px;
    text-align: right;
}
.nice-select .option {
    text-align: right;
}

.login-form {
    border-radius: 24px;
    background: #fff;
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
}
select.select2 {
    display: none;
}
.login-form__title {
    background: linear-gradient(135deg, #5c2fd3 0%, #f80d75 100%);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 26px;
    border-radius: 20px 20px 0 0;
}
.login-form__input {
    margin-bottom: 24px;
}
.login-form__input-title {
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    font-size: 16px;
}
.login-form__input input {
    padding-right: 15px;
    height: 50px;
}
.login-form__wrapper {
    padding: 24px;
}
.login {
    margin: auto;
}
.login-form__btn {
    padding: 0;
    width: 100%;
}

.clientsProfile-item__status {
    position: relative;
}

.clientsProfile-item__status-change {
    position: absolute;
    top: 100%;
    left: 0;
}

.modal-container {
    width: 500px;
    border-radius: 20px;
    background: #fff;
    color: var(--dark-color);
    padding: 0;
    overflow: hidden;
}
.modal-close svg {
    width: 16px;
    height: 16px;
}
.modal-close {
    right: 16px;
    top: 18px;
}
.changeStatus-form {
    padding: 32px 24px;
}
.changeStatus-form__btn {
    padding: 0;
    width: 100%;
    margin-top: 24px;
}
.changeStatus-form__label {
    width: calc(50% - 12px);
    height: 32px;
    transition: all 0.4s;
    user-select: none;
    color: #fff;
    background: #a06cd5;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 12px;
}
.changeStatus-form__label input {
    display: none;
}
.changeStatus-form__label span {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all 0.4s;
    border-radius: 12px;
    display: block;
    opacity: 0;
    border: 2px solid var(--active-color);
    z-index: 2;
}
.changeStatus-form__label b {
    position: relative;
    z-index: 3;
    font-weight: 500;
}
.changeStatus-form__label input:checked + span {
    opacity: 1;
}
.changeStatus-form__label:hover {
    opacity: 0.9;
}
.changeStatus-form__label.red {
    background: #fe5f55;
}
.changeStatus-form__label.green {
    background: #69b992;
}
.changeStatus-form__label.blue {
    background: #00afb5;
}

/*.header-lang__btn {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: block;
}*/
/*.header-lang {
    margin-right: 40px;
    margin-left: auto;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    border: 2px solid var(--active-color);
}*/

.header-login .header-lang {
    margin-left: 0;
    margin-right: auto;
}

.page-lang__he input {
    text-align: right;
}

.success {
    background: green;
    color: #fff;
    border-radius: 12px;
    padding: 14px 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 0 16px;
}
.error-block {
    background: red;
    color: #fff;
    border-radius: 12px;
    padding: 14px 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 0 16px;
}

.login-form__select.select .nice-select {
    border: 1px solid var(--dark-color);
}
.login-form__select .nice-select .nice-select-search {
    margin: 0;
}
.login-form__select {
    width: 100%;
    margin: 0;
}
.login-form__select.select .nice-select .nice-select-dropdown {
    border: 1px solid var(--dark-color);
}

.radios {
    margin-bottom: -12px;
}

.form-dates .login-form__input {
    margin: 0 0 0 16px;
}
.form-dates .login-form__input-title {
    color: #fff;
}
.nice-select .list {
    padding-bottom: 20px;
}
.nice-select .option.selected,
.nice-select .option:hover {
    background-color: #f6f6f6 !important;
}
.time-select .nice-select .option {
    width: 33.333%;
}
.time-select .nice-select .list {
    display: flex;
    flex-wrap: wrap;
}

.categories-title {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 12px;
}

.services-wrapper {
    padding: 20px 20px 0;
    border: 1px solid #ccc;
    border-radius: 16px;
    margin: 24px 0;
}
.categories-box {
    padding: 20px;
    background: var(--gray-color);
    border-radius: 16px;
    margin-bottom: 24px;
}
.services-input,
.services-btn {
    width: calc(33% - 8px);
    margin-bottom: 20px;
}
.input-categories {
    width: 100%;
}
.categories-flex__block {
    width: calc(33.333% - 8px);
}
.services-save__btn {
    margin-top: 24px;
}
.services-red__btn {
    margin-right: 20px;
}

.select2-container {
    width: 100% !important;
}
.select2-results__option {
    color: var(--dark-color);
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    display: flex;
    flex-wrap: wrap;
}
.select2-container--default .select2-selection--multiple {
    min-height: 50px !important;
    border: 1px solid var(--dark-color) !important;
    border-radius: 10px !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background: linear-gradient(135deg, #5c2fd3 0%, #f80d75 100%);
    border: none;
    font-size: 14px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
}

.dashboard-users .login-form__input-title {
    color: #fff;
}

.form-dates .option {
    width: 100%;
}
.nice-select-search-box input {
    width: 100%;
    margin: 0;
}

.error-active .select2-selection,
.error-active input,
input.error-active,
.error-active .nice-select {
    border-color: red !important;
}
.error-active.schedule-block {
    border: 2px solid red;
}

.radios-time {
    margin-left: -8px;
    margin-top: -8px;
    user-select: none;
}
.radios-time label {
    width: calc(33.333% - 8px);
    background: var(--gray-color);
    border-radius: 12px;
    padding: 12px;
    margin-left: 8px;
    margin-top: 8px;
}
.dashboard-block.w100 {
    width: 100%;
}
.radios-time label.w100 {
    width: 100%;
}
.radios-time span {
    margin-right: 8px;
}

.radios-time__wrapper {
    margin-bottom: 24px;
}

.radios-time__wrapper {
    font-size: 12px;
}
.radios-time__wrapper label {
    position: relative;
    justify-content: flex-end;
    width: calc(50% - 8px);
    min-height: 40px;
}
.radios-time__wrapper label input {
    order: 1;
    margin-left: 0;
    margin-right: 8px;
}
.radios-time__wrapper label img {
    order: -1;
    margin-left: auto;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    object-fit: cover;
}

.form-info {
    background: var(--gray-color);
    padding: 0 12px 12px;
    margin: 24px 0;
    color: #fff;
    border-radius: 12px;
}
.form-info__text {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #ccc;
}
.form-info__text:first-child {
    margin-top: 0;
    border: none;
}
.form-info__text b {
    display: block;
    margin-bottom: 4px;
}
.phone-mask,
#date_from,
#date_to,
#date {
    direction: ltr;
    text-align: right;
}

.pay-radios span {
    margin-right: 0;
}
.pay-radios label {
    justify-content: space-between;
}

.widget-block {
    background: var(--gray-color);
    color: #fff;
    border-radius: 12px;
    margin-top: 16px;
}
.widget-block:first-child {
    margin-top: 0;
}

.widget-title {
    user-select: none;
    font-weight: bold;
    font-size: 20px;
    padding: 12px;
}
.widget-services {
    display: none;
}
.widget-title img {
    filter: brightness(0) invert(1);
}
.widget-title.open img {
    transform: rotate(180deg);
}
.widget-services {
    padding: 0 12px 12px;
}
.widget-services__item {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    color: var(--dark-color);
    user-select: none;
    cursor: pointer;
    margin-top: 10px;
}
.widget-services__item:first-child {
    margin-top: 0;
}
.widget-services__item b {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 1px solid var(--dark-color);
    position: relative;
    min-width: 24px;
    margin-right: auto;
    order: 1;
    display: block;
    transition: all 0.4s;
}
.widget-services__item b::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: 16px;
    background-image: url("../img/check.svg");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
}
.widget-services__item.active b {
    border-color: var(--active-color);
    background: var(--active-color);
}
.widget-services__item.active b::before {
    opacity: 1;
}
.widget-wrapper {
    margin-bottom: 24px;
}

.date-slider {
    color: #000;
}

.next-wrapper {
    display: none;
}

.slot-empty {
    background: var(--active-color);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    display: block;
    text-align: center;
}

.alert {
    margin: 24px 0;
    padding: 16px;
    border-radius: 12px;
    color: #58151c;
    border: 1px solid #f1aeb5;
    background: #f8d7da;
    text-align: center;
}
.alert.mb {
    margin-bottom: 24px;
    margin-top: 0;
}
.alert.mt {
    margin-bottom: 0;
    margin-top: 24px;
}

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

.widget-other {
    display: none;
}

.date-wrapper {
    color: #000;
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    align-items: flex-start;
}
.date-block {
    width: calc(33.333% - 12px);
    margin-right: 12px;
    margin-top: 12px;
}

.date-services {
    display: none;
}
.date-title {
    background: var(--gray-color);
    color: #fff;
    border-radius: 12px;
    font-size: 16px;
    padding: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    user-select: none;
}
.date-title input,
.date-services__item input {
    display: none;
}
.date-title b,
.date-services__item b {
    display: block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 100%;
    border: 1px solid #fff;
    position: relative;
    margin-left: 6px;
}
.date-title b::before,
.date-services__item b::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #fff;
    transition: all 0.4s;
    opacity: 0;
}
.date-title input:checked + b::before,
.date-services__item input:checked + b::before {
    opacity: 1;
}
.date-title.active {
    border-radius: 12px 12px 0 0;
}
.date-services {
    border-radius: 0 0 12px 12px;
    background: var(--active-color);
    padding: 4px 12px 12px;
    color: #fff;
}
.date-wrapper {
    margin-top: -12px;
}
.date-services__item {
    margin-top: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}
.date-wrapper {
    margin-bottom: 24px;
}
.date-services__item b {
    margin: 0;
}
.date-services__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.date-services__item {
    width: 43%;
    font-size: 12px;
}

.checkbox-validate.error-active {
    border: 1px solid red;
    border-radius: 12px;
}

.file-btn input {
    display: none;
}
.file-btn img {
    margin-left: 5px;
}
.file-wrapper {
    margin-bottom: 24px;
}
.clients-item__buttons {
    text-align: left;
    margin-right: auto;
    width: 220px;
    max-width: 100%;
}
.clients-item__red {
    margin-top: 12px;
}
.services_user {
    color: var(--dark-color);
}
.form-user__services .radios-time span {
    margin-left: auto;
    margin-right: 0;
}
.back-link {
    border-radius: 100%;
    padding: 0;
    width: 40px;
    min-width: 40px;
    height: 40px;
}
.back-link img {
    width: 14px;
    width: 10px;
    margin-right: 1px;
    transition: all 0.4s;
}
.df.login-form__title {
    text-align: right;
}
.ui-widget.ui-widget-content {
    z-index: 8 !important;
}
.back-link:hover img {
    filter: brightness(0);
}

.time-select .nice-select .nice-select-dropdown {
    top: auto;
    bottom: 100%;
    margin: 0 0 5px;
}

.plus {
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 0;
    order: 1;
    margin-right: 12px;
}

.popup-inputs {
    padding: 32px 24px;
    text-align: right;
}
.popup-inputs input {
    text-align: right;
}

.header-burger {
    width: 32px;
    margin-right: 16px;
    cursor: pointer;
    user-select: none;
    display: none;
}
.header-burger span {
    display: block;
    height: 3px;
    border-radius: 4px;
    background: #fff;
    width: 100%;
    margin-top: 8px;
}
.header-burger span:first-child {
    margin-top: 0;
}
.menu-close {
    display: none;
}

.plus-order {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: var(--active-color);
    display: none;
    right: 10px;
    bottom: 10px;
    z-index: 20;
    position: fixed;
}
.plus-order img {
    width: 26px;
}

.page-top .page-title {
    margin: 0 !important;
}
.page-top {
    margin-bottom: 32px;
}
.services-input__title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
}
.order-list {
    order: -1;
    margin-bottom: 24px;
}
.wallet-item {
    border-radius: 12px;
    background: var(--gray-color);
    color: #fff;
    padding: 10px;
    margin-top: 16px;
    width: calc(33.333% - 16px);
    margin-right: 16px;
    border: 2px solid var(--active-color);
}
.wallet-items {
    margin-right: -16px;
}
.wallet-item__img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 100%;
    min-width: 50px;
    margin-left: 20px;
}
.wallet-item__name {
    font-weight: bold;
    font-size: 20px;
}
.wallet-item__block {
    padding: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-top: 6px;
}
.wallet-item__block:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
}

.master-schedule__toggle {
    cursor: pointer;
    user-select: none;
    background: var(--gradient-color);
    padding: 12px 24px;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    border-radius: 12px;
}
.master-schedule__toggle::after {
    content: "";
    background-image: url("../img/select-arrow.svg");
    width: 32px;
    height: 32px;
    min-width: 32px;
    transition: all 0.4s;
    margin-right: auto;
    background-size: 32px;
    filter: brightness(0) invert(1);
}
.master-schedule__toggle img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    display: block;
    min-width: 50px;
    margin-left: 20px;
    border-radius: 100%;
}
.master-schedule__btn {
    margin-top: 20px;
}
.master-schedule__wrapper {
    display: none;
}
.master-schedule {
    margin-top: 24px;
}
.master-schedule:first-child {
    margin-top: 0;
}
.master-schedule__toggle.open::after {
    transform: rotate(180deg);
}
.schedule-label {
    user-select: none;
}
.schedule-time {
    width: 100%;
}
.time-inputs__block {
    width: calc(25% - 6px);
    margin-top: 16px;
}
.white-text {
    color: #fff !important;
}
.master-schedule__bottom {
    margin-top: 40px;
}
.time-inputs {
    display: none;
}
.active.time-inputs {
    display: flex;
}
.master-schedule__toggle.open {
    border-radius: 12px 12px 0 0;
}
.master-schedule__wrapper {
    border-radius: 0 0 12px 12px;
    background: #fff;
    padding: 20px;
}
.schedule-block {
    margin-top: 16px;
    background: var(--gray-color);
    border-radius: 8px;
    padding: 16px;
}
/*.schedule-block:first-child {
    margin-top: 0;
}*/
.schedule-bold {
    font-weight: bold;
    color: #fff;
    font-size: 20px;
}
.schedule-label {
    margin: 20px 0 0 0;
}
.schedule-label span {
    display: block;
    margin-right: 12px;
}
.master-schedule.block-error {
    border: 1px solid red;
    border-radius: 12px;
}
.master-schedule.block-error .master-schedule__toggle::after {
    transform: rotate(180deg);
}
.ui-widget.ui-widget-content {
    background: var(--gradient-color);
    border: none;
    color: #fff;
    border-radius: 8px;
    outline: none;
}
.ui-datepicker .ui-datepicker-header {
    background: var(--gray-color);
    border-radius: 4px;
    border: none;
}
.ui-datepicker .ui-datepicker-title {
    color: #fff;
}
.ui-datepicker-rtl .ui-datepicker-prev,
.ui-datepicker-rtl .ui-datepicker-next {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    filter: brightness(0) invert(1);
    cursor: pointer;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    background: #fff;
    color: var(--dark-color);
    border: none;
    border-radius: 4px;
    text-align: center;
}
.ui-widget.ui-widget-content {
    border: none !important;
}
.calendar-item {
    margin-top: 24px;
    background: var(--gray-color);
    border-radius: 12px;
    overflow: hidden;
}
.calendar-item__user {
    background: var(--active-color);
    padding: 8px;
    width: 200px;
    min-width: 200px;
    align-content: center;
}
.calendar-item__user p {
    width: 100%;
}
.calendar-item__user img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    margin: 0 auto 8px;
    display: block;
    object-fit: cover;
    border-radius: 100%;
}
.calendar-item__user {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
}

.form-arrow {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    transition: all 0.4s;
    margin-left: 16px;
}
.form-next img {
    transform: rotate(90deg);
}
.form-prev img {
    transform: rotate(-90deg);
}
.form-arrow:hover {
    background: rgba(255, 255, 255, 0.7);
}

.calendar-item__orders {
    min-height: 100%;
    overflow-x: auto;
    /*margin-right: 16px;*/
    display: flex;
    align-items: center;
    padding: 12px 16px 12px 0;
}

.calendar-item__order .clientsProfile-item__status {
    margin-right: 0;
    margin-top: 12px;
}
.calendar-item__order {
    background: #fff;
    color: var(--dark-color);
    border-radius: 10px;
    padding: 10px;
    min-width: 200px;
    width: 200px;
    margin-left: 16px;
}
.calendar-item__orders::-webkit-scrollbar {
    height: 8px;
}
.calendar-item__orders::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.calendar-item__orders::-webkit-scrollbar-thumb {
    background: var(--active-color);
}
.calendar-item__orders::-webkit-scrollbar-thumb:hover {
    background: var(--hover-color);
}

.calendar-item__link {
    color: var(--active-color);
    text-decoration: underline;
    margin-bottom: 4px;
}
.calendar-item__link:hover {
    text-decoration: none;
}

.calendar-contact__wrapper {
    z-index: 2;
    left: 8px;
    top: 8px;
}
.calendar-contact__hover .icon-link {
    width: 24px;
    margin-right: 0;
    margin-left: 0px;
}

.calendar-contact__wrapper {
    z-index: 4;
}
[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 7px;
    display: inline-flex;
    white-space: nowrap;
    border-radius: 3px;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 10px;
    max-width: 120px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s;
}
.calendar-item__order-info::before {
    white-space: normal !important;
}
[data-tooltip]:hover::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.calendar-item__order-info::before {
    top: auto;
    bottom: 100%;
}
.calendar-item__order-info {
    left: 8px;
    bottom: 11px;
    z-index: 5;
    user-select: none;
}

.client-popup__block {
    margin-bottom: 16px;
    color: var(--dark-color);
}
.client-popup__block:last-child {
    margin-bottom: 0;
}
.client-popup__block a {
    color: var(--active-color);
    transition: all 0.4s;
    font-weight: bold;
    text-decoration: none;
}
.client-popup__block a:hover {
    color: var(--hover-color);
    text-decoration: underline;
}
.header-lang .nice-select {
    background: transparent;
    color: #fff;
    display: inline-flex;
    border: none;
    padding: 0 0 0 30px;
}
.header-lang .nice-select .list {
    padding: 0;
}
.header-lang .nice-select .option.disabled {
    display: none;
}
.header-lang .nice-select .option {
    padding: 0;
    color: var(--dark-color);
    text-align: center;
}
.header-lang .nice-select.open .nice-select-dropdown {
    width: 100px;
    left: calc(50% - 50px);
    transition: all 0.1s;
    transform-origin: center;
}
.header-lang .nice-select::before {
    left: 0;
}
.header-lang .select {
    width: auto;
}
.header-lang {
    margin-left: auto;
    margin-right: 32px;
}
.wallet-item__btn {
    margin-top: 8px;
}
.wallet-item__type {
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #fff;
    font-weight: bold;
    margin: 12px 0;
}

.flat-table {
    display: block;
    font-family: sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow: auto;
    width: auto;
    font-size: 14px;
    width: 100%;
}
.flat-table tbody,
.flat-table thead {
    display: block;
    width: 100%;
}
.flat-table tr {
    display: flex;
    font-size: 14px;
}
.flat-table th {
    background-color: rgb(112, 196, 105);
    color: white;
    font-weight: normal;
    padding: 12px;
    width: 25%;
    display: flex;
    align-items: center;
    text-align: right;
}
.flat-table td {
    color: rgb(111, 111, 111);
    padding: 12px;
    width: 25%;
    display: flex;
    align-items: center;
    text-align: right;
}
.flat-table td.w20,
.flat-table th.w20 {
    width: 20%;
}
.flat-table tr {
    background-color: rgb(238, 238, 238);
}
.flat-table tr:nth-child(even) {
    background-color: rgb(222, 220, 220);
}
.flat-table td a {
    color: var(--active-color);
    text-decoration: none;
}
.flat-table td a:hover {
    text-decoration: underline;
}

.schedule-checkbox {
    left: 12px;
    top: 12px;
    z-index: 4;
    user-select: none;
    border-radius: 4px;
    background-color: #fff;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
}
.schedule-checkbox.check-active {
    background-image: url("/assets/img/check-dark.svg");
}

.checkbox-btn.btn {
    color: var(--active-color);
    border-color: var(--active-color);
    display: none;
    margin-top: 20px;
}
.checkbox-btn.btn.show {
    display: inline-flex;
}
.checkbox-btn.btn:hover {
    background: var(--active-color);
    color: #fff;
}

.ui-datepicker-rtl .ui-datepicker-prev {
    right: auto !important;
    left: 2px !important;
}
.ui-datepicker-rtl .ui-datepicker-next {
    right: 2px !important;
    left: auto !important;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    transform: rotate(180deg);
}

.menu-nav li.active {
    background: #333b4c;
}
.menu-nav li.active a:hover {
    background: transparent;
}

.clientsBox .clientsProfile-item__text {
    width: 200px;
    min-width: 200px;
}
.clientsBox .clientsProfile-item__text.email-box {
    width: 300px;
    min-width: 300px;
}
.clientsBox .clientsProfile-item__text a {
    position: relative;
    z-index: 4;
    color: #fff;
    text-decoration: none;
}
.clientsBox .clientsProfile-item__text a:hover {
    text-decoration: underline;
}

.clientsProfile-item__text .icon-link {
    width: 24px;
    margin-left: 0 !important;
    margin-right: 8px !important;
}

.mb-form {
    margin-bottom: 32px;
}

.mobile-menu {
    display: none;
}

.payment-btn.btn {
    width: 100%;
    border-color: var(--active-color);
    color: var(--active-color);
    margin-bottom: 10px;
}
.payment-btn.btn:hover {
    color: #fff;
    background: var(--active-color);
    border-color: var(--active-color);
}

.pay-box {
    border-radius: 12px;
}

.btn-export {
    margin: 12px auto;
    width: calc(100% - 24px);
    padding-left: 0;
    padding-right: 0;
}

.w50-block.dashboard-block {
    width: 50%;
}

.profile-ml {
    margin-right: auto;
}
.clientsProfile-edit {
    margin-right: 20px;
}
.client-box__items {
    display: none;
}

.categories-flex {
    margin-bottom: 24px;
}

.time-inputs, .active.time-inputs {
    display: none !important;
}
.master-schedule__items {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
}
.schedule-block {
    margin-top: 10px;
    margin-right: 10px;
    width: calc((100% / 7) - 10px);
    padding: 8px;
}
.master-schedule__wrapper {
    padding-top: 10px;
}

.svg-close {
    background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_2393_5675)"><path d="M23.4607 20.8521L14.6024 11.9759L23.4126 3.14821C24.1311 2.42792 24.1311 1.2603 23.4126 0.540411C22.6938 -0.179486 21.5289 -0.179486 20.81 0.540411L11.9998 9.36812L3.19001 0.540411C2.47115 -0.179486 1.30624 -0.179486 0.58738 0.540411C-0.131482 1.2607 -0.131482 2.42831 0.58738 3.14821L9.39718 11.9759L0.53817 20.8521C-0.180692 21.5724 -0.180692 22.7396 0.53817 23.4599C0.897601 23.8201 1.36844 23.9999 1.83968 23.9999C2.31092 23.9999 2.78176 23.8201 3.14119 23.4599L11.9998 14.5837L20.858 23.4599C21.2175 23.8201 21.6883 23.9999 22.1595 23.9999C22.6308 23.9999 23.1016 23.8201 23.4611 23.4599C24.1791 22.74 24.1791 21.5724 23.4607 20.8521Z" fill="%231D2331"/></g><defs><clipPath id="clip0_2393_5675"><rect width="24" height="24" fill="white"/></clipPath></defs></svg>');
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
}
.schedule-link__btn {
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 5;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23.7129 14.4L22.4281 13.7C21.0362 12.9 21.0362 11 22.4281 10.2L23.7129 9.5C24.7836 8.9 25.1048 7.7 24.4624 6.8L23.3917 5.1C22.7493 4.1 21.4645 3.8 20.5009 4.4L19.2161 5.1C17.8242 5.9 16.004 4.9 16.004 3.4V2C16.004 0.9 15.0404 0 13.8627 0H11.7213C10.5436 0 9.57996 0.9 9.57996 2V3.3C9.57996 4.8 7.75981 5.8 6.36792 5L5.08311 4.4C4.01243 3.8 2.72762 4.2 2.19228 5.1L1.1216 6.8C0.586264 7.8 0.907467 9 1.87108 9.6L3.15589 10.3C4.54777 11 4.54777 13 3.15589 13.7L1.87108 14.4C0.800399 15 0.479196 16.2 1.1216 17.1L2.19228 18.8C2.83469 19.8 4.1195 20.1 5.08311 19.5L6.36792 18.9C7.75981 18.1 9.57996 19.1 9.57996 20.6V22C9.57996 23.1 10.5436 24 11.7213 24H13.8627C15.0404 24 16.004 23.1 16.004 22V20.7C16.004 19.2 17.8242 18.2 19.2161 19L20.5009 19.7C21.5716 20.3 22.8564 19.9 23.3917 19L24.4624 17.3C24.9977 16.2 24.6765 15 23.7129 14.4ZM12.792 16C10.4365 16 8.50928 14.2 8.50928 12C8.50928 9.8 10.4365 8 12.792 8C15.1475 8 17.0747 9.8 17.0747 12C17.0747 14.2 15.1475 16 12.792 16Z" fill="white"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
    display: none;
}
.checked .schedule-link__btn {
    display: block;
}
.schedule-link__btn:hover {
    opacity: 0.7;
}
.schedule-label input {
    transition: opacity 0.4s;
}
.schedule-label input:hover {
    opacity: 0.7;   
}
.schedule-checkbox {
    left: 0 !important;
    top: 0 !important;
    right: auto !important;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 3;
}
.schedule-block {
    padding: 14px;
    border: 3px solid var(--gray-color);
}
.check-block-active {
    border: 3px solid #12ff19;
}
.schedule-label {
    pointer-events: none;
}
.schedule-label input {
    pointer-events: auto;
    z-index: 4;
}
.schedule-bold {
    font-size: 16px;
}
.schedule-label {
    margin-top: 10px;
}
.schedule-label span {
    margin-left: 4px;
    font-size: 12px;
}

.modal-container .time-inputs, .active.time-inputs {
    display: flex !important;
}

.schedule-block .modal-container {
    padding: 32px 24px;
    text-align: right;
}
.schedule-block .modal-title {
    text-align: center;
}
.schedule-block .login-form__input-title {
    color: #111 !important;
}
.schedule-block .time-inputs__block {
    width: calc(50% - 6px);
}
.modal-title {
    font-size: 18px;
    font-weight: bold;
    color: #111 !important;
}

.modal-btn__save {
    margin-top: 24px;
}
.widget-other .radios-time__wrapper, .payment-btn.btn {
    display: none !important;
}
.calendar-top__list .page-title {
    margin: 0 0 0 auto;
}
.calendar-top__list {
    margin-bottom: 24px;
}
.calendar-top__link {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--dark-color);
    margin-right: 8px;
}
.calendar-top__link.active {
    background: var(--active-color);
}
.calendar-top__link span {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}
.type-list span {
    background-image: url('data:image/svg+xml,<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_1015_102)"><path d="M8.079 4.7998H3.02637V19.1998H8.079V4.7998Z" fill="white"/><path d="M15.6576 4.7998H9.3418V19.1998H15.6576V4.7998Z" fill="white"/><path d="M21.9735 4.7998H16.9209V19.1998H21.9735V4.7998Z" fill="white"/><path d="M0.5 2.3999V21.5999H24.5V2.3999H0.5ZM23.2368 20.3999H1.76316V3.5999H23.2368V20.3999Z" fill="white"/></g><defs><clipPath id="clip0_1015_102"><rect width="24" height="24" fill="white" transform="translate(0.5)"/></clipPath></defs></svg>');
}
.type-row span {
    width: 18px;
    height: 18px;
    background-size: 18px;
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.57146 9.42871H1.2856C0.928569 9.42871 0.624925 9.55368 0.374899 9.8037C0.124919 10.0536 0 10.3571 0 10.7144V13.2861C0 13.6431 0.124919 13.9465 0.374899 14.1964C0.624925 14.4464 0.928569 14.5714 1.2856 14.5714H5.57146C5.92849 14.5714 6.23213 14.4464 6.48216 14.1964C6.73218 13.9465 6.85706 13.6431 6.85706 13.2861V10.7144C6.85706 10.3571 6.73218 10.0536 6.48216 9.8037C6.23213 9.55382 5.92849 9.42871 5.57146 9.42871Z" fill="white"/><path d="M5.57146 2.57129H1.2856C0.928569 2.57129 0.624925 2.69621 0.374899 2.94623C0.124919 3.19626 0 3.4999 0 3.85693V6.42854C0 6.78581 0.124919 7.08954 0.374899 7.33938C0.624925 7.58927 0.928569 7.71437 1.2856 7.71437H5.57146C5.92849 7.71437 6.23213 7.58927 6.48216 7.33938C6.73218 7.0895 6.85706 6.78595 6.85706 6.42868V3.85712C6.85706 3.50009 6.73218 3.19645 6.48216 2.94628C6.23213 2.69635 5.92849 2.57129 5.57146 2.57129Z" fill="white"/><path d="M5.57146 16.2856H1.2856C0.928569 16.2856 0.624925 16.4105 0.374899 16.6606C0.124919 16.9107 0 17.2143 0 17.5713V20.1432C0 20.5002 0.124919 20.8039 0.374899 21.0537C0.624925 21.3038 0.928569 21.4285 1.2856 21.4285H5.57146C5.92849 21.4285 6.23213 21.3036 6.48216 21.0537C6.73218 20.8039 6.85706 20.5002 6.85706 20.1432V17.5713C6.85706 17.2143 6.73218 16.9107 6.48216 16.6608C6.23213 16.4108 5.92849 16.2856 5.57146 16.2856Z" fill="white"/><path d="M22.714 9.42871H9.85688C9.49972 9.42871 9.19621 9.55368 8.94619 9.8037C8.69616 10.0537 8.57129 10.3571 8.57129 10.7144V13.2861C8.57129 13.6431 8.69616 13.9465 8.94619 14.1964C9.19607 14.4464 9.49972 14.5714 9.85688 14.5714H22.7143C23.0713 14.5714 23.375 14.4464 23.6248 14.1964C23.8749 13.9465 23.9998 13.6431 23.9998 13.2861V10.7144C23.9998 10.3571 23.8749 10.0536 23.6247 9.8037C23.3747 9.55368 23.0713 9.42871 22.714 9.42871Z" fill="white"/><path d="M22.714 16.2856H9.85688C9.49972 16.2856 9.19621 16.4105 8.94619 16.6606C8.69616 16.9107 8.57129 17.2142 8.57129 17.5711V20.1429C8.57129 20.4999 8.69616 20.8038 8.94619 21.0537C9.19607 21.3036 9.49972 21.4284 9.85688 21.4284H22.7143C23.0713 21.4284 23.375 21.3035 23.6248 21.0537C23.8749 20.8036 23.9998 20.4999 23.9998 20.1429V17.5711C23.9998 17.2142 23.8749 16.9104 23.6247 16.6606C23.3747 16.4108 23.0713 16.2856 22.714 16.2856Z" fill="white"/><path d="M23.6247 2.94623C23.3747 2.69635 23.0713 2.57129 22.714 2.57129H9.85688C9.49972 2.57129 9.19621 2.69621 8.94619 2.94623C8.69616 3.19626 8.57129 3.4999 8.57129 3.85693V6.42854C8.57129 6.78581 8.69616 7.08917 8.94619 7.33924C9.19607 7.58913 9.49972 7.71423 9.85688 7.71423H22.7143C23.0713 7.71423 23.3747 7.58913 23.6248 7.33924C23.8749 7.08936 23.9998 6.78581 23.9998 6.42854V3.85693C23.9998 3.49986 23.8749 3.19626 23.6247 2.94623Z" fill="white"/></svg>');
}

.calendar-tabs {
    background: var(--gray-color);
    border-radius: 8px;
    overflow: hidden;
}
.calendar-tab:first-child {
    margin-top: 0 !important;
}
.calendar-tab {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    padding: 16px 0;
    user-select: none;
    width: 100%;
    margin-top: 1px;
    background: rgba(255, 255, 255, 0.05);
}
.calendar-tab img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto 8px;
}
.calendar-tab.active {
    background: var(--active-color);
}

.calendar-content {
    display: none;
}
.calendar-content:first-child {
    display: block;
}
.calendar-flex {
    min-height: calc(100vh - 400px);
}
.calendar-flex__left {
    width: 100px;
    min-width: 100px;
}
.calendar-contents {
    width: 100%;
}
.calendar-contents .calendar-item__order {
    margin: 0;
    width: 100%;
    min-width: auto;
}
.calendar-contents .calendar-item__orders {
    padding: 0;
}
.calendar-tabs {
    min-height: calc(100% - 12px);
}
.calendar-item__order-wrapper {
    margin-top: 16px;
}
.calendar-item__order-wrapper:first-child {
    margin-top: 0;
}
.calendar-day {
    width: 500px;
    min-width: 500px;
    margin-left: 16px;
    position: relative;
}
.calendar-day::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--active-color);
    width: 2px;
}
.box-time {
    background: #fff;
    color: var(--dark-color);
    font-size: 10px;
    padding: 4px;
    border-radius: 5px;
    right: -55px;
    width: 50px;
}
.start-time {
    top: 0;
}
.end-time {
    bottom: 0;
}
.calendar-day__title {
    background: #fff;
    border-radius: 8px;
    width: calc(100% + 33px);
    color: var(--dark-color);
    font-weight: bold;
    font-size: 18px;
    padding: 7px;
    margin-right: -33px;
    border: 1px solid var(--active-color);
}
.calendar-items__wrapper::-webkit-scrollbar {
    height: 4px;
}
.calendar-items__wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.calendar-items__wrapper::-webkit-scrollbar-thumb {
    background: #888;
}
.calendar-items__wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.calendar-items__wrapper {
    overflow-x: auto;
    width: calc(100vw - 100px);
    padding-right: 24px;
    padding-left: 24px;
    cursor: grab;
    padding-bottom: 12px;
}
.form-dates .login-form__input:last-child {
    margin-left: 0 !important;
}

.calendar-contents .alert {
    width: 1000px;
    margin: 0 auto;
    max-width: calc(100% - 32px);
}

.calendar-item__order-wrapper .clientsProfile-item__status {
    width: 100px;
    min-width: 100px;
    height: 20px;
    font-size: 10px;
    border-radius: 4px;
    margin-top: 6px;
}
.calendar-item__order-info {
    width: 18px;
}
.calendar-contact__wrapper img {
    width: 18px;
}
.calendar-item__order-wrapper {
    font-size: 10px;
    margin: 0;
}

.calendar-item__hover-block {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    top: 0;
    left: 0;
    z-index: 8;
    background: #fff;
    width: 100%;
    transition: all 0.1s;
}
.calendar-item__order-wrapper:hover .calendar-item__hover-block {
    top: calc(100% - 4px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border-radius: 0 0 8px 8px;
    padding: 10px;
}
.calendar-item__order {
    border-radius: 8px;
    padding: 4px 8px;
    height: 100%;
}
.calendar-day__right-block {
    width: 100%;
}

.calendar-day {
    margin-top: 44px;
}
.calendar-day__title {
    top: -44px;
    left: 0;
    width: 100%;
    position: absolute;
}
[data-order-time] {
    position: absolute;
    right: 100%;
    width: 450px;
    height: calc(100% - 2px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    transition: all 0.1s;
}
[data-order-time]:hover {
    background: rgba(255, 255, 255, 0.3);
}
.time-flex {
    position: relative;
}
.timeline-block {
    line-height: 15px;
}

.timeline {
    position: relative;
    font-size: 9px;
    width: 34px;
    min-width: 34px;
}
.calendar-day__right-block {
    pointer-events: none;
}
.calendar-item__order-wrapper {
    pointer-events: auto;
}

.user-modal-block .modal-container {
    text-align: left;
}
.calendar-item__order-wrapper::after {
    content: "";
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid var(--active-color);
    opacity: 0;
    transition: all 0.4s;
}
.calendar-item__order-wrapper.active {
    z-index: 6;
    pointer-events: none;
}
.calendar-item__order-wrapper.active::after {
    opacity: 1;
}

.time-flex .active {
    background: var(--active-color);
}
.calendar-item__order-wrapper .clientsProfile-item__status {
    font-size: 8px;
    width: 70px;
    min-width: 70px;
    margin: 0;
}
.calendar-item__order-info {
    margin: 0;
    position: relative;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    display: inline-flex;
}
.calendar-contact__wrapper .icon-link {
    padding: 0;
    margin: 0;
    width: auto;
}
.calendar-item__link {
    margin: 0;
}
.calendar-item__flex-center {
    margin: 6px 0;
}
.calendar-contact__wrapper {
    width: 100%;
    justify-content: space-between;
    position: relative;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    width: 100%;
}
.widget-wrapper.block-error .widget-block {
    border: 1px solid red;
}


.text-elipsis {
    overflow: hidden;
    max-height: 100%;
}
.text-elipsis > a, .text-elipsis > p {
    display: inline;
}

.categories-colors__item {
    margin-left: 16px;
    margin-bottom: 24px;
}
.categories-colors__item input {
    display: none;
}
.categories-colors__item b {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    min-width: 32px;
    border: 1px solid transparent;
}
.categories-colors__item input:checked + b {
    border-color: #fff !important;
}
.calendar-item__order-colorWrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    user-select: none;
    pointer-events: none;
    z-index: 3;
    padding: 0;
    background-color: var(--gray-color);
}
.calendar-item__order-color {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    left: 0;
    top: 0;
}
/*.calendar-item__order-bigColor {
    border-width: 3px;
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    z-index: 2;
}*/

.changeColor-label {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-right: 20px;
    border-radius: 100%;
    position: relative;
}
.changeColor-label span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    border: 2px solid var(--active-color);
    opacity: 0;
    transition: all 0.4s;
    border-radius: 100%;
    display: block;
}
.changeColor-label span b {
    display: block;
    border: 2px solid #fff;
    width: 100%;
    height: 100%;
    border-radius: 100%;
}
.changeColor-label input:checked + span {
    opacity: 1;
}
.changeColor-label.red {
    background: red;
}
.changeColor-label.green {
    background: green;
}
.changeColor-label.blue {
    background: blue;
}
.changeColor-label input {
    display: none;
}
.changeColor-label.orange {
    background: orange;
}
.changeColor-label.orange {
    background: orange;
}
.calendar-item__order-color {
    position: relative;
    z-index: 2;
}
.calendar-item__order-color .calendar-item__order-color {
    z-index: 3;
    border-radius: 6px;
    padding: 0;
}



.calendar-item__order p {
    position: relative;
    z-index: 4;
}
.link-name {
    color: #fff !important;
    text-decoration: underline;
    position: relative;
    z-index: 4;
}
.calendar-item__order {
    color: #fff;
}
.calendar-item__hover-block {
    color: var(--dark-color)
}

.settings-list .login-form__input-title {
    width: calc(100% - 12px);
    margin-right: 12px;
}
.settings-list {
    margin-right: -12px;
}
.settings-list .login-form__input {
    margin-right: 12px;
    width: calc(50% - 12px);
    flex-grow: 1;
}

.clientsProfile-tags__item {
    margin-left: 16px;
    color: #fff;
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 8px;
}
.clientsProfile-tags__item a {
    display: block;
    margin-left: 6px;
    transition: all 0.4s;
}
.clientsProfile-tags__item a:hover {
    opacity: 0.8;
}
.clientsProfile-tags__item img {
    width: 16px;
    display: block;
}
.clientsProfile-tags__plus {
    margin-top: 12px;
    margin-bottom: 8px;
    margin-left: 16px;
    color: #fff;
    text-decoration: none;
}
.clientsProfile-tags__plus img {
    margin-right: 8px;
}
.clientsProfile-tags__plus:hover {
    opacity: 0.8;
}

.header-settings {
    margin-left: 16px;
}
.header-settings img {
    width: 24px;
}
.client_popup_block .clientsProfile-tags__plus {
    color: #000;
}
.client_popup_block .clientsProfile-tags__item {
    color: #000;
}
.client_popup_block .clientsProfile-tags__plus img {
    filter: brightness(0);
}

.client_popup_border.btn {
    color: var(--active-color);
    border-color: var(--active-color);
}
.client_popup_border.btn:hover {
    background: var(--active-color);
    color: #fff;
}
.clientsProfile-tags__item a:first-child {
    margin: 0;
    color: #fff;
}
.clientsProfile-tags__item a:hover {
    text-decoration: underline;
}
.client_popup_block .clientsProfile-tags__item a {
    color: #000;
}
.clientsProfile-list .clientsProfile-tags__plus img {
    margin-right: 0;
    margin-left: 6px;
}
.clientsProfile-list .clientsProfile-tags__item a {
    margin-left: 0;
    margin-right: 6px;
}
.tags-select .nice-select .list {
    max-height: 100px;
}
.tags-select {
    margin-bottom: 24px;
}
/*.widget-services__item span {
    margin-right: 3px;
}*/
.login-form.mt {
    margin-top: 32px;
}
.status-inputs .login-form__input:last-child {
    margin-bottom: 0;
}
.status-inputs {
    width: 100%;
    /*display: none;*/
}
.w100-block {
    width: 100% !important;
}

.categories-box .widget-block {
    order: 1;
    width: 100%;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}
.categories-box .widget-services {
    margin-right: -8px;
    margin-top: -8px;
    flex-wrap: wrap;
}
.categories-box .widget-block {
    background: var(--gradient-color);
}
.categories-box .widget-services.open {
    display: flex !important;
}
.categories-box .widget-services__item input {
    display: none;
}
.categories-box .widget-services__item input:checked + span + b {
    border-color: var(--active-color);
    background: var(--active-color);
}
.categories-box .widget-services__item input:checked + span + b::before {
    opacity: 1;
}
.categories-box .widget-services__item {
    width: calc(25% - 8px);
    margin-top: 8px !important;
    margin-right: 8px !important;
}
.services_radios {
    margin-bottom: 24px;
    width: calc(100% + 16px);
}
.services_radios label {
    background: var(--gradient-color) !important;
}

.categories-box .widget-services__item.current-label {
    display: none;
}

.cancel-form__btn {
    margin: 32px auto;
}
.cancel-form__link {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}

.cancel-form__title {
    font-size: 32px;
    line-height: 40px;
    color: #fff;
    font-weight: bold;
}

.settings-whatsapp__box.disabled {
    display: none;
}

.select-w100 {
    width: 100%;
}

.whatsapp-top__btn {
    height: auto;
    padding: 16px 8px;
    margin: 0 auto 32px;
    width: 500px;
    max-width: 100%;
    background: #25d366;
    white-space: normal;
}


.empty-balance {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.empty-balance::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-color);
    opacity: 0.95;
}
.empty-balance__title {
    font-weight: bold;
    font-size: 18px;
    line-height: 160%;
    color: var(--gray-color)
}
.empty-balance__box {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    z-index: 2;
}
.empty-balance__btn {
    margin-top: 20px;
}
.url-block img {
    width: 100px;
    height: auto;
}
.url-block__copy svg {
    margin-left: 10px;
    stroke: #fff;
}
.url-block__copy span {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: calc(100% - 63px);
}
.url-block__copy {
    background: var(--gray-color);
    color: #fff;
    border-radius: 8px;
    height: 40px;
    width: calc(100% - 120px);
    border: 1px solid #fff;
    font-size: 10px;
    font-weight: bold;
    color: #fff;
}
.url-block {
    width: 500px;
    max-width: 100%;
    margin: 0 auto 20px;
}
.url-block__copy.active::before {
    content: "Copied";
    position: absolute;
    bottom: 100%;
    right: 0;
    border-radius: 4px;
    padding: 4px;
    background: #14ca14;
    color: #fff;
    font-size: 10px;
    font-weight: normal;
}
.url-block__copy.active svg {
    stroke: #14ca14;
}
.url-block__copy.active {
    border-color: #14ca14;
    color: #14ca14;
}


.clients-top__btn {
    margin-left: 24px;
}
.clients-top__btn svg {
    margin-left: 8px;
    margin-right: 0;
}
.page-top .page-title {
    margin-left: auto !important;
}
.file-btn.w100 {
    width: 100% !important;
}
.import-btn {
    padding: 0;
    width: 100%;
    border: 1px solid var(--active-color);
    background: transparent;
    color: var(--active-color);
}
.import-btn:hover {
    color: #fff;
}

.import-instruction {
    margin-bottom: 24px;
    color: #000;
    font-weight: 500;
}

.import-instruction {
    line-height: 24px;
}

.schedule-block__empty {
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
}

.questionnaire-item {
    border-radius: 16px;
    border: 1px solid #fff;
    padding: 19px;
    margin-top: 24px;
    background: var(--gray-color);
}
.questionnaire-item__name {
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    margin-left: auto;
}
.questionnaire-item__default {
    margin-left: 20px;
}
.questionnaire-item__edit {
    margin-left: 20px;
}
.clients-questionnaire__btn.btn {
    margin-left: 24px;
}

.questionnaire-create__form .btn {
    width: 100%;
    margin-top: 16px !important;
}
.questionnaire-create__form .btn.btn-border {
    border-color: var(--active-color);
    color: var(--active-color);
}
.questionnaire-create__form .btn.btn-border:hover {
    color: #fff;
    background: var(--active-color);
}

.questionnaire-profile__wrapper {
    border-radius: 16px;
    background: var(--active-color);
    border-radius: 16px;
    padding: 16px;
    margin-top: 24px;
}
.questionnaire-profile__list .url-block__copy {
    width: calc(100% - 64px);
    margin: 0 !important;
}
.questionnaire-profile__wrapper .login-form__input {
    display: flex;
    align-items: center;
}
.questionnaire-profile__wrapper .login-form__input-title {
    margin-bottom: 0;
    margin-right: 20px;
    color: #fff;
}
.questionnaire-profile__link {
    background: var(--gray-color);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.toggle-color__btn.toggle-margin {
    margin-right: 16px;
    margin-left: 0;
}

.dark-color .toggle-color__btn {
    filter: brightness(0) invert(1);
}

.toggle-color__btn button {
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.toggle-color__btn {
    margin-bottom: 0 !important;
}


.login-after__block {
    width: calc(50% - 6px);
}
.login-after__label input {
    display: none;
}
.login-after__label img {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.login-after__label {
    border-radius: 12px;
    overflow: hidden;
}
.login-after__zoom {
    right: 10px;
    top: 10px;
    background: var(--active-color);
    width: 32px;
    height: 32px;
    border-radius: 100%;
    z-index: 5;
}
.login-after__zoom:hover {
    background: var(--gray-color);
}
.login-after__label span {
    width: 100%;
    aspect-ratio: 1;
    color: #fff;
    font-size: 80px;
    background: var(--active-color);
}
.login-after__block {
    background: var(--gray-color);
    border-radius: 16px;
    padding: 12px;
}
.login-after__title {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: bold;
    text-align: center;
}


.order-page__search .select {
    width: 240px;
    min-width: 240px;
    margin-right: 12px;
}

.clients-sorting__text {
    order: -1;
    margin-left: 20px;
    margin-right: 0;
    white-space: nowrap;
}
.clients-sorting {
    margin-bottom: 32px;
}


.calendar-item__order-wrapper .text-elipsis, .calendar-item__hover-block {
    font-size: 14px;
}

.clientsProfile-gallery__block {
    width: 25%;
    margin-top: 20px;
}
.clientsProfile-gallery {
    padding-top: 20px;
}
.clientsProfile-gallery__item {
    background: #fff;
    border-radius: 20px;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}
.clientsProfile-gallery__item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.clientsProfile-gallery__wrapper {
    padding-top: 80px;
}

.clients-sorting__text {
    color: #000;
}
.dark-color .clients-sorting__text {
    color: #fff;
}


.clientsProfile-gallery__block .login-after__block {
    width: 100% !important;
}

.remove-image-form {
    position: absolute;
    z-index: 9;
    top: 10px;
    right: 25px;
    display: block;
}
.clientsProfile-gallery__block {
    position: relative;
}
.remove-image-btn {
    background: var(--active-color);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    color: #fff;
    font-size: 23px;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}








@media (max-width: 1320px) {
    .container {
        width: 940px;
    }
    .schedule-block__empty {
        display: none;
    }
    .categories-box .widget-services__item {
        width: calc(33.333% - 8px);
    }
    .dashboard-item img {
        width: 50px;
        min-width: 50px;
        margin-left: 10px;
    }
    .schedule-block {
        width: calc(25% - 10px);
    }
    .dashboard-item {
        font-size: 16px;
    }
    .menu-nav li a img {
        width: 32px;
    }
    .menu-nav li a span {
        font-size: 10px;
        margin-top: 8px;
    }
    .menu-nav li a,
    .menu-list {
        height: 80px;
    }
    .page-wrapper {
        padding: 80px 0 90px;
    }
    .clients-item {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
    }
    .clients-item__buttons {
        margin-right: auto;
        margin-left: 0;
    }
    .services-btn {
        font-size: 14px;
        width: calc(50% - 6px);
        margin-bottom: 16px;
    }
    .services-input {
        width: calc(50% - 6px);
        margin-bottom: 16px;
    }
    .clients-box .clients-item {
        width: calc(50% - 8px);
    }
    .clients-box .clients-item__link img {
        width: 32px;
    }
    .clientsProfile-item {
        font-size: 14px;
    }
    .clientsProfile-item {
        padding: 7px;
        margin-top: 10px;
    }
    .clientsProfile-item__date {
        width: 120px;
        min-width: 120px;
    }
    .clientsBox .clientsProfile-item__text {
        width: 150px;
        min-width: 150px;
    }
    .clientsBox .clientsProfile-item__text.email-box {
        width: 230px;
        min-width: 230px;
    }
    .clientsBox .clientsProfile-item__text.phone-td {
        min-width: 180px;
    }
}
@media (max-width: 992px) {
    .container {
        width: 730px;
    }
    .dashboard-block,
    .dashboard-block.w50 {
        width: 100%;
        margin-top: 20px;
    }
    .page-title {
        margin-bottom: 24px;
        font-size: 30px;
    }
    .form-dates {
        display: block;
    }
    .login-form__input-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .select {
        width: 100%;
    }
    .form-dates .login-form__input {
        margin: 0 0 10px 0;
    }
    .menu.mobile-menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        right: auto;
        bottom: auto;
        z-index: 40;
        padding: 0;
        background: var(--dark-color);
        overflow-x: auto;
        display: none;
        pointer-events: auto;
    }
    .menu.mobile-menu .container {
        width: 100% !important;
        padding: 0 !important;
    }
    .menu.mobile-menu .menu-list {
        height: auto;
        padding: 70px 16px 24px;
        border-radius: 0;
        background: transparent;
    }
    .menu.mobile-menu .menu-nav {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .menu.mobile-menu .menu-nav li {
        width: calc(50% - 7px);
    }
    .menu.mobile-menu .menu-nav li a {
        width: 100%;
        height: auto;
        padding: 10px 0;
    }
    .menu.mobile-menu .menu-nav li {
        margin-top: 16px;
    }
    .page-wrapper {
        padding: 80px 0 30px;
    }
    .menu.mobile-menu .menu-nav li.menu-nav__center {
        margin: 0 !important;
        width: 100%;
    }
    .header-burger {
        display: block;
    }
    .header-lang {
        margin-right: 24px;
    }
    .menu.mobile-menu .menu-nav__center {
        margin-top: 0;
        order: -1;
    }
    .menu.mobile-menu .menu-nav li a {
        background: var(--gray-color);
        border-radius: 4px;
    }
    .menu.mobile-menu li.menu-nav__center a {
        background: var(--active-color);
    }
    .menu.mobile-menu .menu-close {
        display: block;
        position: absolute;
        right: 24px;
        top: 24px;
        cursor: pointer;
        z-index: 3;
    }
    .plus-order {
        display: flex;
    }
    .login-form__title {
        font-size: 16px;
    }
    .input {
        font-size: 16px;
    }
    .file-btn {
        width: 100%;
    }
    .file-wrapper {
        display: block;
    }
    .file-img {
        margin: 0 auto 10px;
    }
    .modal-list {
        padding: 16px;
    }
    .clients-box {
        margin-top: -20px;
    }
    .clients-box .clients-item {
        display: flex;
        align-items: center;
    }
    .clients-item__content {
        text-align: right;
    }
    .clients-item__phone {
        margin-top: 4px;
    }
    .table-container {
        width: 100% !important;
        padding: 0 !important;
    }
    .clientsProfile-scroll {
        width: 100%;
        min-width: 940px;
    }
    .clientsProfile-scroll__wrapper {
        overflow-x: auto;
        padding: 0 16px;
    }
    .select .nice-select {
        font-size: 14px;
    }
    .dashboard-item {
        height: 100px;
    }
    .wallet-item {
        width: calc(50% - 16px);
    }
    .wallet-item__img {
        margin-left: 12px;
    }
    .time-inputs__block {
        width: calc(50% - 12px);
    }
    .calendar-container {
        width: 100% !important;
        padding: 0 16px 0 0 !important;
    }
    .calendar-form .login-form__input input {
        margin: 0 !important;
    }
    .calendar-form {
        display: flex;
        align-items: flex-start;
    }
    .form-arrow {
        margin-top: 6px;
    }
    .form-next {
        margin-right: 16px;
    }
    .calendar-container .alert {
        margin-left: 16px;
    }
    .menu-default .menu-item-schedule,
    .menu-default .menu-item-dashboard,
    .menu-default .menu-item-services_edit,
    .menu-default .menu-item-users,
    .menu-default .menu-item-orders,
    .menu-default .menu-item-services {
        display: none;
    }
    .page-wrapper {
        padding-bottom: 60px;
    }
    .menu-default .menu-list {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        border-radius: 0;
    }
    .menu-default {
        padding: 0;
    }
    .menu-default li {
        flex-grow: 1;
    }
    .menu-default .menu-nav__center {
        order: 1;
        margin: 0;
    }
    .menu-default .menu-nav li a img {
        width: 20px;
    }
    .menu-default .menu-nav li a {
        font-size: 14px;
        padding: 0 8px;
    }
    .menu-default .menu-nav {
        width: 100%;
    }
    .menu-default .menu-nav li a {
        width: 100%;
    }
    .menu-default .menu-nav li a,
    .menu-default .menu-list {
        height: 60px;
    }
    .menu-default .container {
        padding: 0 !important;
        width: 100% !important;
    }
    .w50-block.dashboard-block {
        width: 100%;
    }
    .clientsProfile-list {
        display: block;
    }
    .clientsProfile-edit {
        margin-right: 0;
    }
    .clientsProfile-edit {
        width: 100%;
        margin-top: 16px;
    }
    .categories-flex__block {
        width: 100%;
        margin-bottom: 20px;
    }
    .schedule-block {
        width: calc(33.333% - 10px);
    }
    .calendar-top__list {
        flex-wrap: wrap;
    }
    .calendar-top__list form {
        width: 100%;
        margin-top: 8px;
        order: 1;
    }
    .calendar-top__list .login-form__input {
        margin: 0 !important;
        width: calc(50% - 4px) !important;
    }
    .calendar-top__list form {
        justify-content: space-between;
    }
    .categories-box .widget-services__item {
        width: calc(50% - 8px);
        min-width: calc(50% - 8px);
    }
    .cancel-form__title {
        font-size: 20px;
    }
    .cancel-form__btn {
        margin: 24px auto;
    }
    .questionnaire-item {
        display: block;
        text-align: center;
    }
    .questionnaire-item .btn {
        margin: 12px 0 0 0 !important;
        width: 100%;
        padding: 0;
    }
    .questionnaire-profile__wrapper .login-form__input {
        display: block;
    }
    .questionnaire-profile__wrapper .login-form__input-title {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .clients-sorting {
        margin-bottom: 24px;
    }
    .clientsProfile-gallery__block {
        width: 50%;
    }
}
@media (max-width: 767px) {
    .container {
        width: 530px;
    }
    .questionnaire-top__btn {
        width: 100%;
    }
    .clients-item__buttons {
        width: 100%;
    }
    .clients-item__content {
        text-align: center;
    }
    .schedule-block {
        width: calc(50% - 5px);
        margin-right: 5px;
        margin-top: 5px;
    }
    .master-schedule__items {
        margin-right: -5px;
    }
    .master-schedule__wrapper {
        padding: 6px 6px 6px;
    }
    .schedule-bold {
        font-size: 16px;
    }
    .clients-item {
        display: block;
        text-align: center;
    }
    .schedule-bold {
        font-size: 14px;
    }
    .clients-item__btn {
        width: 100%;
        display: flex;
        padding: 0;
        margin: 10px 0;
    }
    .clients-item__red {
        width: 100%;
        display: flex;
        padding: 0;
    }
    .clients-item__photo {
        margin: 0 auto 8px;
    }
    .page-top {
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }
    .page-top .page-title {
        margin-bottom: 16px !important;
    }
    .bottom__btn.services-red__btn {
        margin-top: 12px;
        margin-right: 0;
    }
    .bottom__btn {
        width: 100%;
    }
    .categories-title {
        font-size: 16px;
    }
    .services-save__btn {
        width: 100%;
        margin-top: 16px;
    }
    .btn-bottom__category {
        width: 100%;
    }
    .clients-btn {
        margin-right: 12px;
        padding: 0 20px;
        font-size: 14px;
    }
    .master-schedule__toggle {
        font-size: 18px;
    }
    .clients-top__btn.btn, .clients-top__border.btn, .clients-questionnaire__btn.btn {
        font-size: 14px;
        width: 100%;
        margin: 10px 0 0 0 !important;
    }
    .page-top__clients.page-top {
        align-items: flex-start;
        justify-content: space-between;
        display: flex;
        flex-wrap: wrap;
    }
    .page-top__clients.page-top .page-title {
        width: 100%;
    } 
    .questionnaire-profile__list .url-block__copy {
        width: calc(100% - 54px);
    }
    .order-page__search {
        display: block;
    }
    .order-page__search .clients-btn {
        margin: 0;
        width: 100%;
    }
    .order-page__search .select {
        margin: 10px 0;
        width: 100%;
        min-width: 100%;
    }
}
@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 16px;
    }
    .login-after__zoom {
        right: 4px;
        top: 4px;
    }
    .toggle-color__btn.toggle-margin {
        margin-right: 12px;
        margin-left: 0;
    }
    .toggle-color__btn {
        width: 20px;
        height: auto;
    }
    .header-lang {
        margin-right: 10px;
    }
    .header-lang .nice-select {
        padding-left: 12px;
    }
    .select .nice-select::before {
        width: 12px;
        height: 12px;
        background-size: 12px;
        top: calc(50% - 6px);
    }
    .schedule-block .time-inputs__block {
        width: 100%;
    }
    .clients-top__btn.btn, .clients-top__border.btn {
        font-size: 14px;
        width: 100%;
        margin-top: 10px;
    }
    .page-top__clients.page-top .page-title {
        margin-bottom: 10px;
    }
    .clients-top__btn.btn svg {
        width: 24px;
        height: 24px;
    }
    .services-btn {
        width: 100%;
    }
    .wallet-item {
        width: calc(100% - 16px);
    }
    .calendar-container .alert {
        margin-right: 16px;
    }
    .dashboard-item img {
        width: 40px;
        min-width: 40px;
    }
    .changeStatus-form__label {
        width: 100%;
    }
    .header-profile span {
        display: none;
    }
    .header-profile img {
        margin-right: 0;
    }
    .header-logout {
        margin-left: 12px;
    }
    .date-block {
        width: calc(50% - 12px);
    }
    .radios-time__wrapper label {
        width: calc(100% - 8px);
    }
    .login-form__wrapper {
        padding: 24px 16px;
    }
    .services-input {
        width: 100%;
    }
    .services-input__title {
        margin-bottom: 6px;
        font-size: 14px;
    }
    .services-wrapper {
        padding: 16px 16px 0;
    }
    .clients-box .clients-item {
        width: 100%;
        margin-top: 10px;
    }
    .mobile-placeholder {
        font-size: 14px;
    }
    .pagination-prev,
    .pagination-next {
        padding: 0 20px;
        font-size: 14px;
    }
    .pagination-content {
        font-size: 14px;
    }
    .pagination-prev {
        margin-left: 16px;
    }
    .pagination-next {
        margin-right: 16px;
    }
    .plus {
        width: 100%;
        font-size: 0;
        margin: 0 0 8px;
    }
    .plus-wrapper {
        width: 100%;
        display: block;
    }
    .plus::after {
        content: attr(title);
        font-size: 14px;
        color: #fff;
    }
    .time-inputs__block {
        width: 100%;
        margin-top: 12px;
    }
    .master-schedule__wrapper {
        padding: 10px;
    }
    .form-arrow {
        width: 40px;
        min-width: 40px;
    }
    .calendar-form .login-form__input {
        width: calc(100% - 80px - 32px);
    }
    .calendar-form {
        justify-content: space-between;
    }
    .calendar-item {
        display: block;
        overflow: visible;
        border-radius: 0;
    }
    .calendar-container {
        padding: 0 !important;
    }
    .calendar-item__user {
        width: 100%;
        margin-bottom: 10px;
    }
    .flat-table td {
        font-size: 12px;
        padding: 6px;
    }
    .flat-table th {
        font-size: 12px;
        padding: 6px;
    }
    .master-schedule__btn,
    .checkbox-btn.btn {
        width: 100%;
    }
    .flat-table td.w20,
    .flat-table th.w20 {
        width: 21%;
        padding: 6px 3px;
    }
    .flat-table td.w20:last-child,
    .flat-table th.w20:last-child {
        width: 16%;
    }
    .flat-table td.w20:first-child,
    .flat-table th.w20:first-child {
        padding-right: 8px;
    }
    .flat-table td.w20,
    .flat-table th.w20 {
        font-size: 10px;
    }
    .calendar-items__wrapper::-webkit-scrollbar {
        display: none;
    }
    .calendar-flex {
        min-height: auto;
        display: block;
    }
    .calendar-tabs::-webkit-scrollbar {
        display: none;
    }
    .calendar-tabs {
        width: 100%;
        display: flex;
        margin-bottom: 12px;
        overflow-x: auto;
    }
    .calendar-tab {
        width: 90px;
        min-width: 90px;
        padding: 8px 0;
        margin: 0 0 0 2px !important;
        font-size: 12px;
    }
    .calendar-tab img {
        margin-bottom: 4px;
    }
    .calendar-flex__left {
        border-radius: 10px;
        padding-left: 16px;
        padding-right: 16px;
        width: 100%;
    }
    .calendar-top__list {
        margin-bottom: 12px;
    }
    .calendar-items__wrapper {
        width: 100%;
    }
    .calendar-items__wrapper {
        padding-right: 16px;
        padding-left: 16px;
    }
    .categories-box .widget-services__item {
        width: calc(100% - 8px);
        min-width: calc(100% - 8px);
    }
    .empty-balance__title {
        font-size: 16px;
        line-height: 22px;
    }
    .empty-balance__box {
        padding: 24px 12px;
    }
    .url-block {
        text-align: center;
        display: block;
    }
    .url-block__copy {
        width: 100%;
        margin-bottom: 10px;
    }
    .url-block img {
        margin: 0 auto;
    }
    .toggle-color__btn svg {
        width: 20px;
    }
}

@media (max-width: 360px) {
    .mobile-placeholder {
        font-size: 13px;
    }
    .pagination-prev {
        margin-left: 8px;
    }

    .pagination-next {
        margin-right: 8px;
    }
    .pagination-content {
        font-size: 12px;
    }
    .header-settings {
        margin-left: 10px;
    }
    .header-profile img {
        width: 40px;
        height: 40px;
    }
    .header-burger {
        width: 24px;
    }
    .header-burger span {
        margin-top: 5px;
    }
    .header-logo img {
        width: 40px;
    }
    .header-logout {
        margin-left: 10px;
    }
    .header-settings img, .header-logout img {
        width: 20px;
    }
    .header-profile img {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    .header-lang {
        margin-right: 12px;
    }
}
