@layer base.general {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.3s;
    animation-timing-function: ease-in-out;
  }
}


.w-full .iti {
    width: 100%;
}

.pulse-circle-indicator {
  border-radius: 50%; /* Makes it a circle */
  animation: pulse 1.5s infinite ease-in-out; /* Apply the animation */
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 38, 0, 0.7); /* Initial shadow state */
  }
  50% {
    transform: scale(1.1); /* Element grows slightly */
    box-shadow: 0 0 0 5px rgba(0, 123, 255, 0); /* Shadow expands and fades */
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 38, 0, 0.7); /* Returns to initial state */
  }
}

html {
    interpolate-size: allow-keywords;
    /* The interpolate-size CSS property sets whether
       animations and transitions interpolate between
       a numeric value and a keyword value, such as
       from a fixed length to auto or fit-content.
       (experemental)
       https://caniuse.com/?search=interpolate-size
    */
}

.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 600;
    color: #242a30;
}

/*form stuff */

.d-label {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: #242a30;
    font-weight: 600;
}

.kwikbiForm {
    @supports (-webkit-appearance: none) or (-moz-appearance: none) {
        --active: var(--green, #275efe);
        --active-inner: #fff;
        --focus: 2px rgba(39, 94, 254, .3);
        /*--border: #bbc1e1;*/
        --border: #D5DBE0;
        /*--border-hover: #275efe;*/
        --border-hover: var(--active, #275efe);
        /*--background: #fff;*/
        --background: #D5DBE0;
        --disabled: #f6f8ff;
        --disabled-inner: #e1e6f9;

        & input:is([type='checkbox'], [type='radio']) {
            -webkit-appearance: none;
            -moz-appearance: none;
            /*height: 21px;*/
            height: 16px;
            min-height: 16px;
            outline: none;
            display: inline-block;
            vertical-align: top;
            position: relative;
            margin: 0;
            cursor: pointer;
            border: 1px solid var(--bc, var(--border));
            background: var(--b, var(--background));
            transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
        }

        & input[type='checkbox'].switch {
            height: 21px;
            min-height: 21px;
            --background: #fff;
        }

        & input:is([type='checkbox'], [type='radio']):after {
            content: '';
            display: block;
            left: 0;
            top: 0;
            position: absolute;
            transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
        }

        & input[role="chip"] {
          appearance: none;
          position: absolute;
          top: 0;
          left: 0;
          width: 100% !important;
          height: 100% !important;
          margin: 0;
          cursor: pointer;
          /*border: 0;*/
          background: transparent;
        }

        & input[role="chip"]:is(:disabled) {
          cursor: not-allowed;
        }
        & input[role="chip"]:before, & input[role="chip"]:after {
            content: none;
        }

        & chip {
          display: inline-block;
          background-color: var(--background, #ccc);
          padding: .5rem 1rem;
          border-radius: .25rem;
          position: relative;
          transition: background-color .1s ease-in-out, color .1s ease-in-out;
          /*font-size: ;*/
        }

        .chipsgroup {
            border-radius: .25rem;
            overflow: hidden;
        }

        & .chipsgroup chip {
            border-radius: 0;
        }

        & chip:has(input:checked) {
          background-color: var(--active, #383ad1);
          color: var(--active-inner);
        }

        & chip:has(input:checked) *:is(label, .d-label) {
            color: var(--active-inner);
        }

        & chip:has(input:is(:disabled, .disabled)) {
          background-color: var(--disabled, #b7b8ee);
          color: var(--border);
/*          text-shadow:
            -2px -2px 0 var(--border),
             1px -1px 0 var(--border),
            -1px  1px 0 var(--border),
             1px  1px 0 var(--border);*/
        }

        & chip:has(input:is(:disabled, .disabled)) *:is(label, .d-label) {
            /*color: var(--border);*/
        }

        & input[type='checkbox']:checked, input[type='radio']:checked {
            --b: var(--active);
            --bc: var(--active);
            --d-o: 0.3s;
            --d-t: 0.6s;
            --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
        }
        & input[type='checkbox']:is(:disabled, .disabled), input[type='radio']:is(:disabled, .disabled) {
            --b: var(--disabled);
            cursor: not-allowed;
            /*opacity: 0.9;*/
        }
        & input[type='checkbox']:is(:disabled, .disabled):checked, input[type='radio']:is(:disabled, .disabled):checked {
            --b: var(--disabled-inner);
            --bc: var(--border);
        }
        & input[type='checkbox']:is(:disabled, .disabled) + *:is(label), input[type='radio']:is(:disabled, .disabled) + *:is(label) {
            cursor: not-allowed;
        }
        & input[type='checkbox']:hover:not(:checked):not(:is(:disabled, .disabled)), input[type='radio']:hover:not(:checked):not(:is(:disabled, .disabled)) {
            --bc: var(--border-hover);
        }
        & input[type='checkbox']:focus, input[type='radio']:focus {
            box-shadow: 0 0 0 var(--focus);
        }
        & input[type='checkbox']:not(.switch), input[type='radio']:not(.switch) {
            /*width: 21px;*/
            width: 16px;
            min-width: 16px;
        }
        & input[type='checkbox']:not(.switch):after, input[type='radio']:not(.switch):after {
            opacity: var(--o, 0);
        }
        & input[type='checkbox']:not(.switch):checked, input[type='radio']:not(.switch):checked {
            --o: 1;
        }
        & chip *:is(label, .d-label), input[type='checkbox'] + *:is(label, .d-label), input[type='radio'] + *:is(label, .d-label) {
            font-size: 14px;
            /*line-height: 16px;*/
            line-height: 1.5;
            display: inline-block;
            vertical-align: top;
            /*cursor: pointer;*/
            /*margin-left: 4px;*/
        }

        & chip *:is(label), input[type='checkbox'] + *:is(label), input[type='radio'] + *:is(label) {
            cursor: pointer;
        }

        & input[type='checkbox']:not(.switch, [role="chip"]) {
            border-radius: 3px;
        }

        & input[role="chip"] {
            border-radius: 3px;
        }

        & input[type='checkbox']:not(.switch):after {
            width: 5px;
            min-width: 5px;
            height: 9px;
            min-height: 9px;
            border: 2px solid var(--active-inner);
            border-top: 0;
            border-left: 0;
/*            left: 7px;
            top: 4px;*/
            left: 5px;
            top: 1px;
            transform: rotate(var(--r, 20deg));
        }
        & input[type='checkbox']:not(.switch):checked {
            --r: 43deg;
        }
        & input[type='checkbox'].switch {
            width: 38px;
            min-width: 38px;
            border-radius: 11px;
        }
        & input[type='checkbox'].switch:after {
            left: 2px;
            top: 2px;
            border-radius: 50%;
            width: 15px;
            min-width: 15px;
            min-height: 15px;
            height: 15px;
            background: var(--ab, var(--border));
            transform: translateX(var(--x, 0));
        }
        & input[type='checkbox'].switch:checked {
            --ab: var(--active-inner);
            --x: 17px;
        }
        & input[type='checkbox'].switch:is(:disabled, .disabled):not(:checked):after {
            opacity: 0.6;
        }
        & input[type='radio']:not([role="chip"]) {
            border-radius: 50%;
        }
        & input[type='radio']:not([role="chip"]):after {
            width: 14px;
            min-width: 14px;
            min-height: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--active-inner);
            /*opacity: 0;*/
            transform: scale(var(--s, 0.7));
        }

        & input[type='radio']:not([role="chip"]):checked {
            --s: 0.5;
        }


    }
}


.iti:has(.form-control.w-100) {
    display: block;
}

.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: .25rem !important;
}

.gap-2 {
    gap: .5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}


.popover.alert.alert-success .arrow:after {
    border-bottom-color: #b3e6e6;
}

.nav {
    &.nav-wizards-1 {
        flex-wrap: nowrap;
        
        & .nav-item {
            padding: 0;

            & :is(.disabled) {
                z-index: 2;
            }
            
            & .nav-link {
                padding: 0;
                position: relative;
                color: red;
                
                & .nav-no {
                    width: 45px;
                    height: 45px;
                    margin: 0 auto;
                    font-weight: bold;
                    background: none;
                    border: 2px solid gray;
                    position: relative;
                    z-index: 10;
                    font-size: 16px;
                    border-radius: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all .2s linear;
                }
                & .nav-text {
                    text-align: center;
                    margin-top: 10px;
                    font-weight: bold;
                    font-size: 14px;
                }
                &.active,
                &.completed {
                    color: #32a932;
                    
                    & .nav-no {
                        border-color: #32a932;
                        color: #32a932;
                    }
                    &:before,
                    &:after {
                        background: #32a932;
                    }
                    &:after {
                        width: calc(50% - 21px);
                    }
                }

                &.active,
                &.completed {
                    &:after {
                        inset-inline-start: calc(50% + 21px);
                        z-index: 1;
                        transform: scaleX(2) translateX(25%);
                    }
                }





                &.active {
                    & .nav-no {
                        box-shadow: 0 0 0 5px rgba(#32a932, .2);
                    }
                }
                &.disabled {
                    color: grey;
                }
                &:before,
                &:after {
                    content: '';
                    position: absolute;
                    top: 20px;
                    height: 2px;
                    background: gray;
                    inset-inline-start: 0;
                    inset-inline-end: calc(50% + 21px);
                }
                &:after {
                    transition: all .2s linear;
                    inset-inline-start: calc(50% + 21px);
                    inset-inline-end: 0;
                }
            }
            &:first-child {
                & .nav-link {
                    &:before,
                    &:after {
                        inset-inline-start: calc(50% + 21px);
                    }
                }
            }
            &:last-child {
                & .nav-link {
                    &:before {
                        inset-inline-end: calc(50% + 21px);
                    }
                    &.active,
                    &.completed {
                        &:before {
                            background: #32a932;
                        }
                    }
                    &:after {
                        display: none;
                    }
                }
            }
        }
    }

}

.page-item.active .page-link {
    margin-left: 5px;
    border-radius: 6px !important;
}

.page-item.disabled .page-link {
    margin-left: 5px;
    border-radius: 6px !important;
}

.checkbox.checkbox-css label {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    /* or 14px */


    /* Font */

    color: #333333;
}

.checkbox.checkbox-css {
    padding-bottom: 5px;
}

.checkbox.checkbox-css.drag_and_drop {
    border-bottom: grey dashed 1px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    line-height: 14px;
    min-height: 33px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
}

.checkbox.checkbox-css.drag_and_drop>* {
    position: relative;
}

.checkbox.checkbox-css.drag_and_drop label:before,
.checkbox.checkbox-css.drag_and_drop input:checked+label:after {
    top: 0;
}

.checkbox.checkbox-css.drag_and_drop:hover #icon-drag {
    display: block;
}

.drag_list.checkbox-css.drag_and_drop {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    border-bottom: grey dashed 1px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
    min-height: 33px;
    align-items: flex-end;
}

.form-check.radio-css {
    padding-top: 7px;
    padding-bottom: 5px;
}

.form-check.radio-css label {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
}

#icon-drag {
    opacity: 0;
}

.drag_list.checkbox-css.drag_and_drop #icon-drag {
    align-self: center;
    margin-top: -5px;
}

.checkbox.checkbox-css.drag_and_drop:hover #icon-drag,
.drag_list.checkbox-css.drag_and_drop:hover #icon-drag {
    opacity: 1;
}

.block-space-around {
    display: flex;
    justify-content: space-around;
    /* Равномерное распределение элементов */
    align-items: center;
    /* Выравнивание по центру */
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}
.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.list-group-item {
    display: flex;
    justify-content: space-between; /* Размещаем текст слева, кнопку справа */
    align-items: center;
}
.delete-btn {
    margin-left: 10px;
    padding: 2px 6px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
.delete-btn:hover {
    background-color: darkred;
}

.v-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*border: 1px dashed deeppink;*/
}

#header~.v-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100vw;
    min-height: calc(100vh - 51px);
}

#header~.v-center>* {
    width: 100%;
}

/* start time_type */
.table-no-border,
.table-no-border td,
.table-no-border th {
    border: none;
    border-bottom: none;
}

.table-cell-padding-minimum td {
    padding: 5px 7px;
}

.td-column-by-content {
    width: 1%;
    white-space: nowrap;
}

.btn-collapse[aria-expanded="true"]::before {
    content: "\f077";
    /*вверх*/
}

.btn-collapse[aria-expanded="false"]::before {
    content: "\f078";
    /*вниз*/
}

/* end time_type */
.icon-my {
    display: inline-block;
    width: 32px;
    height: 24px;
    background-size: cover;
    margin-right: 18px;
    margin-bottom: -6px;
}

.icon-my-heder {
    display: inline-block;
    left: 1.56%;
    right: 1.56%;
    top: 1.56%;
    bottom: 1.56%;
    color: white;
}

.icon-clinic-medical-solid-white {
    display: inline-block;
    width: 14px;
    height: 12px;
    background-size: cover;
    margin-right: 8px;
    /*margin-bottom: -6px;*/

    background-image: url(/img/icons/clinic-medical-solid-white.svg);
}

.icon-solid {
    font-size: 28px;
    color: #0aad2e;
    line-height: 1em;
    margin-right: 18px;
    vertical-align: middle !important;
}

.table.baseline thead th {
    vertical-align: baseline;
}

.form-check {
    padding-top: 0px;
}

.checkbox-clinics {
    margin-left: 20px;
}

.timeForbiddenSeparator:after {
    content: '';
    width: 4%;
    border-bottom: solid 1px #242a30;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 0;
    margin-left: 98%;
}


.btn {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    align-items: center;
    text-align: center;
}

.btn.btn-collapse {
    font-family: "Font Awesome 5 Free";
    padding: 3px 9px;
    margin-right: 10px;
    font-size: 9px;
}

.btn.btn-white {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    align-items: center;
    text-align: center;
    background: none;
}

.panel-title {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 138%;
    /* or 25px */


    color: #FFFFFF;

}

/*
.btn.btn-danger {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    align-items: center;
    text-align: center;

    color: #FF5E59;
    background: none;
}

.btn.btn-info {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    align-items: center;
    text-align: center;
    background: #008EE0;
    border-radius: 4px;
}
*/

.clinic-title {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 100%;
}

.clinic-checkbox {}

span.clinic-address {
    display: block;
    color: #8c8c8c;
    margin-top: 4px;
}

.btn-50 {
    margin-top: 10px;
    width: 50%;
}

.title-red {

    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 100%;
    /* or 15px */


    /* Red */

    color: #FF5E59;
}

.payment-status-succeeded {
    color: #089904;

}

.payment-status-pending {
    color: #ffbf00;

}

.payment-status-waiting_for_capture {
    color: #00c4ff;

}

.payment-status-canceled {
    color: #bf0429;
}

.payments {}

#ext-smstxt {
    font-weight: bold;
    font-style: italic;
}

.banner-sidebar {
    padding: 0px 9px;
}

#sortable {
    list-style-type: none;
    padding-left: 0px;
    margin-left: 48px;
}

.ui-state-default {
    border: none;
    background: none;
}

.label-count-available {
    border-radius: 4px;
    /*background: #F1F2F3;*/
    width: 30px;
    /* height: 24px; */
    text-align: center;
    /* vertical-align: baseline; */
    padding: 4px;
}

.count-available-warning {
    /*color:#F1F2F3;*/

}

.count-available-danger {
    color: #FE9B24;
    ;

}

.count-available {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
}

.count-available-danger>.label-count-available {
    background: #FE9B24;
    ;
}

.count-available-warning>.label-count-available {
    background: #F1F2F3;
}

.modal-available-info {
    background: #E8ECEE;
    border-radius: 3px;
    width: 100%;
    padding: 16px;
    box-shadow: inset 3px 0px #B2C0C7;
    font-weight: 600;
}

.modal-available-info-img {
    background: #B2C0C7;
    border-radius: 0px;
    padding: 8px;
    float: left;
    /*width:  56px;*/
}

.checker-modal-title {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 17px;
    line-height: 25px;
    display: flex;
    align-items: center;
    color: #242A30;
}

.modal-available-info-text {
    margin-left: 93px;
}

.alertCheckTime {
    height: 30px;
    width: 250px;
    margin-bottom: 10px;
}

/*.inputForm{
    margin-bottom: 10px;
    margin-right: 8px;
}*/
.divBtnGroup {
    width: 241px;
}

@media (max-width: 768px) {

    /*    .inputForm{
        width:100%;
        margin-right: 0;
    }*/
    .alertCheckTime {
        width: 100%;
    }
}

.blockCol {
    min-width: 241px;
}

.customCheckbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    margin: 6px 0 0 6px
}

.customCheckboxText {
    position: relative;
    padding: 2px 0 0 36px;
    cursor: pointer
}

.customCheckboxText:before {
    content: '';
    position: absolute;
    top: -2.5px;
    left: 0;
    width: 45px;
    height: 25px;
    border-radius: 12px;
    background: #cdd1da;
    -webkit-box-shadow: inset 0 1.2px 1.8px rgba(0, 0, 0, .2);
    box-shadow: inset 0 1.2px 1.8px rgba(0, 0, 0, .2);
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

.customCheckboxText:after {
    content: '';
    position: absolute;
    top: -.5px;
    left: 2px;
    width: 21px;
    height: 21px;
    border-radius: 10px;
    background: #fff;
    -webkit-box-shadow: 0 1.2px 3px rgba(0, 0, 0, .3);
    box-shadow: 0 1.2px 3px rgba(0, 0, 0, .3);
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

.customCheckbox input:checked+.customCheckboxText:before {
    background: #00A9AA
}

.customCheckbox input:checked+.customCheckboxText:after {
    left: 22px
}

.customCheckbox input:focus+.customCheckboxText:before {
    -webkit-box-shadow: inset 0 1.2px 1.8px rgba(0, 0, 0, .2);
    box-shadow: inset 0 1.2px 1.8px rgba(0, 0, 0, .2)
}

.stepActive {
    /*height: 60px;*/
    background-color: #008DE2;
    /*padding: 15px 15px;*/
}

.stepActive h5 {
    color: #fff;
    margin-top: 5px;
}

.stepActive h5 span {
    background-color: #0070B4;
    border-radius: 10px;
    width: 20px;
    height: 20px;
    text-align: center;
    display: inline-block;
    padding-top: 2px;
    margin-right: 8px;
}

.stepNoActive {
    /*height: 60px;*/
    background-color: #F2F3F4;
    /*padding: 15px 15px;*/
}

.stepActive,
.stepNoActive,
.stepOk {
    min-height: 60px;
    padding: 14px 15px;
}

.stepNoActive h5 {
    color: #6F8293;
    margin-top: 5px;

}

.stepNoActive h5 span {
    background-color: #D5DBE0;
    color: #000;
    border-radius: 10px;
    width: 20px;
    height: 20px;
    text-align: center;
    display: inline-block;
    padding-top: 2px;
    margin-right: 8px;
}

.stepOk {
    /*height: 60px;*/
    background-color: #F2F3F4;
    /*padding: 10px 15px;*/
    float: left;
}

.stepOk h5 {
    margin: 0;
    color: #6F8293;
}

.stepOk h6 {
    color: #6F8293;
}

.stepOk a {
    margin-top: 5px;
    color: #2D353C;
}

.check-icon {
    font-size: 22px;
    color: #000;
    margin-right: 8px;
    margin-top: 5px;
}

.backgroundStep {
    background-color: #fff;
    padding: 10px;
}

.alertStep {
    max-width: 700px;
}

.footerStep1 {
    background-color: #F2F3F4;
    height: 60px;
}

.titleStep {
    font-size: 18px;
    font-weight: bold;
    padding-left: 10px;
}

.lab {
    font-size: 15px;
}

#nameStep::placeholder {
    color: red;
}

.labImg {
    background-color: #e8e8e8;
}

.doctorWidgets {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 19px;
}

.panel-heading-link {
    background-color: #6F7BB4;
    border-radius: 0.12rem;
}

.h5-heading-link {
    padding: 4px 8px 4px 16px;
    color: white;
    float: left;
}

.form-search {
    float: left;
    height: 30px;
    margin: -2px 14px 0 0;
}

.btn-green {
    background: #00A634;
}

.input-search-heading {
    height: 30px;
}

/*table.table>thead>tr {
    border-top: hidden;
}*/

.btn-clinics {
    width: 240px;
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
}

.btn-select.two {
    width: 200px;
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
    padding: 2px 4px;
    text-align: left;
}

.monthsList {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    align-items: center;
    text-align: center;
    color: #6F8293;
}

.btn-white-green:not([disabled]) {
    background: #fff;
    color: #2E353C;
}

.btn-white-green:hover {
    background: #F1F2F3;
}

.btn-white-green:active {
    background: #00A634;
    color: #fff;
}

.btn-white-green:disabled {
    background: #F1F2F3;
    color: #6F7275;
}

#results {
    display: block;
    position: relative
}

.ui-autocomplete {
    position: absolute;
    max-height: 200px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
}

.ui-menu-item {
    font-size: 18px;
}

.step5lable {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    /*font-size: 15px;*/
    font-size: 18px;
    line-height: 40px;
    /* or 267% */
    text-align: right;
    /* Шрифт / Неактивн */
    color: #6F7275;
    overflow: hidden;
}

.step5value {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    /* or 18px */
    color: #272D33;
}

.btn-timeType {
    margin-left: 20px;
    margin-top: 10px;
}

.overflow-f-div {
    overflow-x: hidden;
    -ms-overflow-x: hidden;
    overflow-y: auto;
    -ms-overflow-y: auto;
}

.overflow-g-div {
    overflow-x: hidden;
    -ms-overflow-x: hidden;
    overflow-y: auto;
    -ms-overflow-y: auto;
}

.overflow-div {
    overflow-x: hidden;
    -ms-overflow-x: hidden;
    overflow-y: auto;
    -ms-overflow-y: auto;
}

.overflow-div-doc {
    height: 505px;
    overflow-x: hidden;
    -ms-overflow-x: hidden;
    overflow-y: auto;
    -ms-overflow-y: auto;
}

.guideHeader {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 100%;
    color: #333333;
}

.listDoc {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 100%;
    color: #333333;
    margin-bottom: 16px;
    display: inline-block;
}

.fa-li {
    color: #A6AAAF;
}

.timeTipeTitle {
    color: #00A9AA;
}

.guideLike {
    font-size: 110px;
    color: #00A634;
}

.guideDivRow {
    height: 55px;
}

.roundGreen {
    width: 24px;
    height: 24px;
    border: 3px solid #00A634;
    border-radius: 50%;
    background: #D9E0E7;
}

.roundGreenSenter {
    position: absolute;
    left: 7px;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00A634;
}

.roundGrey {
    width: 20px;
    height: 20px;
    border: 5px solid #485057;
    border-radius: 50%;
}

.roundWarning {
    width: 24px;
    height: 24px;
    border: 3px solid #FE9B24;
    border-radius: 50%;
    background: #D9E0E7;
}

.guideBlackText {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    /* or 100% */
    display: flex;
    align-items: center;
    /* Шрифт / Основной */
    color: #333333;
}

.vlGreyStart {
    position: absolute;
    left: 10.5px;
    top: 27px;
    border-left: 3px solid #9BA8B4;
    height: 21px;
}

.vlGreyUp {
    position: absolute;
    left: 8.5px;
    top: -25px;
    border-left: 3px solid #485057;
    height: 25px;
}

.vlGreyDown {
    position: absolute;
    left: 8.5px;
    top: 20px;
    border-left: 3px solid #485057;
    height: 26px;
}

.vlGreenUp {
    position: absolute;
    left: 10.5px;
    top: -24px;
    border-left: 3px solid #00A634;
    height: 25px;
}

.vlGreenDown {
    position: absolute;
    left: 10.5px;
    top: 24px;
    border-left: 3px solid #00A634;
    height: 25px;
}

.guideLayoutBar,
.guideDivRow {
    height: 100%;
}

.vlGreyDown,
.vlGreenDown {
    bottom: 0;
    height: 100%;
}

.guideGreyText {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    /* or 100% */
    display: flex;
    align-items: center;
    /* Шрифт / Неактивн */
    color: #6F7275;
}

.guideCheck {
    position: absolute;
    left: 5px;
    top: -2px;
    color: #2F373E;
    font-size: 18px;
}

.guideExclamation {
    position: absolute;
    left: 9.7px;
    top: 2px;
    color: #FE9B24;
    font-size: 14px;
}

.mt-for-guide-text {
    margin-top: -5px;
}

.checkerGreenText {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #00A634;
}

.checker-gray-text {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #707478;
}

.check-modal-alert {
    width: 110px;
    padding: 8px 12px;
}

.check-modal-month-name {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 8px;
    color: #333333;
}

.check-modal-count-green {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #00A634;
}

.check-modal-table tbody>tr>td {
    padding: 8px;
}

.check-modal-button-text {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 11px;
    color: #2E353C;
}

.roundFastStart {
    width: 111px;
    height: 111px;
    border-radius: 50%;
    background: #E3F1F9;
}

.divArrow {
    position: absolute;
    padding-left: 2px;
    padding-top: 32px;
}

#long-arrow-alt-left {

    padding-left: 36px;
    font-size: 40px;
    line-height: 0.5;
    color: #00A634;
}

#long-arrow-alt-right {

    padding-left: 36px;
    font-size: 38px;
    line-height: 0.3;
    color: #00A634;
}

.divServer {
    position: absolute;
    z-index: 2;
    padding-right: 125px;
}

#serverFastStart {
    font-size: 60px;
    line-height: 1;
    color: #3A5862;
}

.divServer2 {
    position: absolute;
    z-index: 3;
    padding-left: 125px;
}

#serverFastStart2 {
    font-size: 60px;
    line-height: 1;
    color: #3A5862;
}

.divSpace {
    height: 100px;
}

#progressFastStart {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    height: 2rem;
    border-radius: 1.25rem;
    font-size: 18px;
}

.alertFastStartPurpur {
    background-color: #6F7BB4;
    color: white;
}

.alertFastStartGreen {
    background-color: #85C74C;
    color: white;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    padding: 12px;
}

.alertFastStartDanger {
    background-color: #DC3545;
    color: white;
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
}

.fa-checkFastStart {
    font-size: 24px;
}

.fa-bookFastStart {
    color: #008EE0;
}

.btn-black-schedule {
    background-color: black;
    padding: 10px 15px;
    margin: 0;
    font-size: 14px;
}

.btn-transparent-schedule {
    background-color: rgba(0, 0, 0, 0);
    padding: 10px 15px;
    color: #6D7078;
    margin: 0;
    font-size: 14px;
    border: none;
}

.mos-ru-tabs {
    background: none;
    border-bottom: 1px solid gray !important;
}

.nav-link.font-weight-bold.mos-ru-nav-link.active {
    background-color: #00acac;
    color: white;
}

.container-schedule {
    background: white;
    margin-top: 15px;
    padding: 15px;
}

.btn-green-schedule {
    background: #00A9AA;
    border: none;
}

.autocompleteName {
    font-family: Open Sans;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: #2F373E;
}

.autocompletePhone {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 100%;
    color: #4E5C68;
}

.autocompletePatients {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 100%;
    color: #4E5C68;
}

.pet-type {
    display: inline-block;
    width: 16px;
    height: 16px;
}

.pet-type.pet2 {
    background-image: url("../../tabletAssets/maket/global/resources/images/pet-types/dog.svg");
    background-repeat: no-repeat;
    margin: 0 5px;
}

.pet-type.pet1 {
    background-image: url("../../tabletAssets/maket/global/resources/images/pet-types/cat.svg");
    background-repeat: no-repeat;
    margin: 0 5px;
}

.pet-type.pet4 {
    background-image: url("../../tabletAssets/maket/global/resources/images/pet-types/bird.svg");
    background-repeat: no-repeat;
    margin: 0 5px;
}

.pet-type.pet6 {
    background-image: url("../../tabletAssets/maket/global/resources/images/pet-types/horse.svg");
    background-repeat: no-repeat;
    margin: 0 5px;
}

.pet-type.pet3 {
    background-image: url("../../tabletAssets/maket/global/resources/images/pet-types/rabbit.svg");
    background-repeat: no-repeat;
    margin: 0 5px;
}

.pet-type.pet5 {
    background-image: url("../../tabletAssets/maket/global/resources/images/pet-types/reptile.svg");
    background-repeat: no-repeat;
    margin: 0 5px;
}

.autocompleteHr {
    border: none;
    height: 1px;
    background: #d9dde2;
    margin: 0;
    padding: 0;
}

.alertify-logs {
    top: 50px;
    left: calc(50% - 100px);
    margin: 0 auto;
    right: unset;
    height: fit-content;
}

.form-control.editable-number-custom-class {
    width: 80px !important;
}

.form-control.editable-number-custom-class~.editable-clear-x {
    right: 8px !important;
}

.banner-sidebar a[href*="dashly.open()"]>i.fas {
    color: #a8acb1;
    font-size: 40px;
    display: none;
}

.page-sidebar-minified .banner-sidebar a[href*="dashly.open()"]>i.fas {
    display: inline-block;
}

.page-sidebar-minified .banner-sidebar a[href*="dashly.open()"]>img {
    display: none;
}

.page-header-fixed.has-scroll #header {
    z-index: 1022;
}


/*.fieldsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 15px 30px;
}*/

.responsiveGrid {
    display: -ms-grid;
    display: grid;

    /*default config, if unsapport vars*/
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    grid-gap: 15px 30px;


    /*set this variable values in your's selector*/
    /*
        css:
        .yoursSelector1 .responsiveGrid,
        .yoursSelector2.responsiveGrid {
            --col-width: 100px;
            --grid-fill: auto-fit;
        }

        html: <yoursTag class="responsiveGrid" style="--col-width: 300px;"></yoursTag>
    */
    --col-width: 300px;
    --row-gap: 15px;
    --col-gap: 30px;
    --grid-fill: auto-fill;
    /*auto-fill or auto-fit*/
    /*see more*/
    /*https://medium.com/@stasonmars/%D0%BA%D0%B0%D0%BA-%D1%80%D0%B0%D0%B1%D0%BE%D1%82%D0%B0%D1%8E%D1%82-auto-fill-%D0%B8-auto-fit-%D0%B2-css-grid-7d903a6c678e*/

    grid-template-columns: repeat(var(--grid-fill), minmax(min(var(--col-width), 100%), 1fr));
    grid-gap: var(--row-gap) var(--col-gap);
}

/* admission logs */

.logs_snippet .popover {
    max-height: calc(100% - 20px);
}

.logs_snippet .popover-body {
    line-height: 1.333;
    padding-bottom: 30px !important;
}

/* end admission logs */

.review-color-picker-label-review {
    font-family: Open Sans;
    font-style: normal;
    font-size: 12px;
    line-height: 120%;
    color: #899297;
    padding-left: 8px;
}

.checkbox_brand {
    margin-bottom: -5px;
}

.label_checkbox_brand {
    margin-left: 60px;
}

.file_download_logo_widget,
.file_download_reset_logo_widget {
    line-height: 24px;
}

.file_download_reset_logo_widget {
    width: 38px;
}

.label_settings_preview_widget {
    font-family: Open Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 11px;
    line-height: 120%;
    padding-right: 0;
    /* identical to box height, or 13px */

    display: flex;
    align-items: center;
    color: #767C81;
}

.div_checkbox_brand {
    clear: both;
}

.first_border {
    border: 2px solid #C7CFD7;
    border-radius: 3px;
    height: 604px;
}

.second_border {
    background-color: #EAEEF2;
    border: 5px solid #EAEEF2;
    border-radius: 7px;
}

.third_border {
    border: 2px solid #C7CFD7;
    border-radius: 9px;
    height: 618px;
}

.legs {
    width: 122px;
    height: 15px;
    background-color: #D7DFE5;
    border: 2px solid #C7CFD7;
    border-top: 0px;
    border-bottom: 0px;
}

.sole {
    width: 214px;
    height: 18px;
    background-color: #E4EBF1;
    border: 2px solid #C7CFD7;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.mob_first_border {
    border: 2px solid #C7CFD7;
    border-radius: 7px;
    height: 604px;
    width: 354px;
}

.mob_second_border {
    background-color: #EAEEF2;
    border-color: #EAEEF2;
    border-style: solid;
    border-width: 11px 7px;
    border-radius: 7px;
    width: 368px;
}

.mob_third_border {
    border: 2px solid #C7CFD7;
    border-radius: 9px;
    height: 630px;
    width: 372px;
}

.mob_panel_info {
    height: 21px;
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: rgba(0, 0, 0, 0.4);
}

.text_panel_info_left {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    /* identical to box height */
    color: #FFFFFF;
    float: left;
}

.text_panel_info_right {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
    /* identical to box height */
    color: #FFFFFF;
    float: right;
}

.mob_panel_btn {
    height: 33px;
    width: 100%;
    background-color: #000;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#v-pills-settings-tab.nav-link-comp.width-more {
    width: 170px;
}

.widget_palette {
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #D3D8DE;
}

/*For intro js widget/fastStart/finish*/
.introjs-fixedTooltip {
    background-color: rgb(255 255 255 /50%);
}


@media (max-width: 1750px) {
    #divCreateInterval .background-create-manually>* {
        flex-basis: 100%;
        max-width: none;
    }

    #divCreateInterval .background-create-manually>*+* {
        margin-top: 10px;
    }
}

@media (max-width: 1550px) {

    /* /fastStrat */
    .guideHeader+.row>.col-3>a {
        width: 100%;
    }

    .guideHeader+.row>.col-3>a+a {
        margin-top: 10px;
    }

    /* /fastStrat  end*/

}

@media (max-width: 1280px) {
    .overflow-div-doc {
        height: auto;
    }

    [class*="specialization-fwin-"] form .overflow-f-div,
    [class*="specialization-fwin-"] form .overflow-div,
    [class*="service-fwin-"] form .overflow-f-div,
    [class*="service-fwin-"] form .overflow-div {
        height: auto !important;
    }

    .timeForbiddenCont>div {
        flex-basis: 100%;
        max-width: none;
        margin-bottom: 10px;
    }

    .timeForbiddenCont .timeForbiddenSeparator:after {
        content: none;
    }

    .timeForbiddenCont+div .checkbox-clinics {
        margin-left: 0;
    }

    #mos-ru-breeds-settings>div>.col-5,
    #mos-ru-services-settings>div>.col-5 {
        max-width: none;
        flex-basis: 100%;
        max-height: 200px;
        overflow: auto;
        position: relative;
    }

    #mos-ru-breeds-settings>div>.col-5 h5,
    #mos-ru-services-settings>div>.col-5 h5,
    {
    position: sticky;
    top: 0;
    background: white;
}

#mos-ru-breeds-settings>div>.col-7,
#mos-ru-services-settings>div>.col-7 {
    order: -1;
    flex-basis: 100%;
    max-width: none;
    position: sticky;
    top: 0;
}

}

@media (max-width: 1024px) {
    .panel-title {
        font-size: 16px;
    }

    .guideLayout {
        margin: 0 !important;
        padding: 0 10px;
    }

    .guideLayout>* {
        max-width: 100%;
        flex-basis: 100%;
    }

    .guideLayoutBar {
        display: flex;
        align-items: center;
        padding: 5px 10px !important;

        margin: 10px 0 !important;
        border-top: 1px solid;
        border-bottom: 1px solid;
        flex-wrap: wrap;
    }

    .guideLayoutBar>* {
        padding: 0 !important;
        height: auto;
        margin: 5px 0;
    }

    .guideLayoutBar>*+* {
        /*margin-left: 15px !important;*/
        margin-left: -1px;
    }

    .guideDivRow>.col-md-2.p-0 {
        display: none;
    }

    .guideDivRow {
        position: relative;
        left: 5px;
    }

    .guideDivRow .col-md-10 {
        max-width: none;
        margin: 0 !important;
    }

    .guideDivRow .guideBlackText,
    .guideDivRow .guideGreyText {
        z-index: 1;
        position: relative;
        padding: 5px 10px;

    }

    .guideDivRow .guideBlackText:before,
    .guideDivRow .guideGreyText:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        -webkit-transform: skew(-15deg);
        -moz-transform: skew(-15deg);
        -o-transform: skew(-15deg);
        transform: skew(-15deg);
    }

    .guideDivRow .guideBlackText:before {
        background: rgb(0 166 52 / 35%);
        box-shadow: 0px 0px 0px 1px #00A634 inset;
    }

    .guideDivRow .guideGreyText:before {
        box-shadow: 0px 0px 0px 1px #9BA8B4 inset;
    }

    .guideDivRow.guideDivRow__check .guideGreyText:before {
        box-shadow: 0px 0px 0px 1px #00A634 inset;
        background: repeating-linear-gradient(271deg, transparent, transparent 7px, rgb(0 166 52 / 35%) 7px, rgb(0 166 52 / 35%) 14px);
    }

}

@media (max-width: 767px) {
    .header .navbar-brand {
        width: auto;
        max-width: 74%;
        overflow: hidden;
        white-space: nowrap;
    }

    .guideHeader {
        text-align: center;
        justify-content: center;
    }

    /* /fastStrat */
    .guideHeader+.row>.col.mx-0 {
        order: 1;
    }

    .guideHeader+.row>.col-3 {
        max-width: 100%;
        width: 100%;
        flex-basis: 100%;
    }

    /* /fastStrat  end*/

    .step5lable {
        text-align: left !important;
    }

    #mos-ru-breeds-settings>div>.col-7,
    #mos-ru-services-settings>div>.col-7 {
        padding: 0 !important;
        overflow: auto !important;
    }





}

@media (max-width: 400px) {
    /*    .fieldsGrid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    } */
}


@media (max-width: 365px) {
    .footerStep1 .btn {
        font-size: 9px;
    }
}
