.main__calendar{
    width: 100%;
}
.ebala{
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 920px){
    /* main */
    .ebala{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    

}



/* услуги записи календаря */
.selectWrapper{
    margin-top: 25px;
    width: 420px;
}


#calendarService {
    width: 420px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    background: none;
    border: none;
}
@media screen and (max-width: 1400px){
    .selectWrapper, #calendarService {
        width: 300px;
    }
}
@media screen and (max-width: 920px){
    .selectWrapper{
        margin-top: 20px;
        width: 478px;
    }
    #calendarService{
        width: 100%;
        height: 39px;
        border: 1px solid var(--COLORE_YELLOW);
        border-radius: 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        -khtml-border-radius: 8px;
        background-color: var(--COLORE_BLACK);
        color: var(--COLORE_UIText);
        font-family: "Jost-Regular";
        font-weight: 400;
        font-size: 13px;
        letter-spacing: 0.05em;
        cursor: pointer;
    }
}
#calendarService:focus-visible {
    outline: none;
}
.calendarServiceOption {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    border-radius: 10px;
    color: var(--COLORE_UIText);
    font-family: "Jost-Regular";
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.05em;
    cursor: pointer;
}
@media (max-width: 1120px){
    .calendarServiceOption{
        margin-bottom: 15px;
    }
}
.active__service{
    background: var(--COLORE_GREEN);
}

/*Календарь*/
.calendar {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 21px;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 5px;
    border: 1px solid var(--COLORE_YELLOW);
    border-radius: 12px;
}
#calendarTrue {
    -webkit-transition: 1s -webkit-filter linear;
    -moz-transition: 1s -moz-filter linear;
    -moz-transition: 1s filter linear;
    -ms-transition: 1s -ms-filter linear;
    -o-transition: 1s -o-filter linear;
    transition: 1s filter linear, 1s -webkit-filter linear;
    /*filter: blur(0);*/
}
/* заголоаок*/
.calendarHeader {
    display: flex;
    justify-content: space-between;
}
.month{
    color: var(--COLORE_Text);
    font-family: "Jost-Bold";
    font-weight: 700;
    font-size: 24px;
    text-align: center;
}
.calendarHeader-btn{
    display: flex;
    gap: 16px;
}
.calendarHeader-btn button{
    background: none;
    border: none;
}
#prevMonth,
#nextMonth {
    height: 100%;
    border-style: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}
/*Календарь таблица*/
.calendarTable {
    display: flex;
    flex-direction: column;
}
.calendarTable-thead{
    display: flex;
    gap: 7px;
    margin-bottom: 7px;
}
.title-day{
    width: 56px;
    height: 35px;
    color: var(--COLORE_Text);
    font-family: "Inter-Medium";
    font-weight: 500;
    font-size: 24px;
    text-align: center;
}
.calendarBody{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.tr-line{
    display: flex;
    gap: 7px;
    justify-content: flex-end;
}
.tr-line:last-child{
    justify-content: flex-start;
}
.calendarTd {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    transition: all 0.4s ease;
    font-family: "Inter-Medium";
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    color: #ccc;
}
.calendarTd:not(.disable):hover {
    transform: scale(1.5);
}
.calendarTd.disable {
    background-color: var(--COLORE_RED);
}
.calendarTd.active {
    background-color: var(--COLORE_YELLOW);
}
.wednesday.calendarTd.disable {
    background-color: black;
}
/* время*/
.times {
    border-radius: 10px;
    padding: 5px;
    display: flex;
    justify-content: space-around;
    border: 1px solid var(--COLORE_YELLOW);
    border-radius: 8px;
    margin-bottom: 20px;
}
.time {
    border-radius: 5px;
    padding: 5px;
    transition: all 0.5s ease;
    color: var(--COLORE_Text);
    font-family: "Jost-SemiBold";
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}
.time.disable {
    background-color: var(--COLORE_RED);
}
@media (max-width: 1120px){
    .title-day {
        width: 40px;
    }
    .calendarTd {
        width: 40px;
        height: 40px;
    }
}
@media screen and (max-width: 920px){
    .title-day {
        width: 56px;
    }
    .calendarTd {
        width: 56px;
        height: 56px;
    }
}
@media (max-width: 600px){
    .selectWrapper {
        margin-top: 20px;
        width: 366px;
    }
    .title-day {
        width: 40px;
    }
    .calendarTd {
        width: 40px;
        height: 40px;
    }
    #recordForm {
        width: 366px;
    }
}

/* форма записаться */
form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 25px;
}
@media screen and (max-width: 920px){
    /* main */
    form {
        margin-top: 0;
    }
}
#recordForm {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 393px;
    padding: 21px 13px;
    border: 1px solid var(--COLORE_YELLOW);
    border-radius: 21px;
}
@media (max-width: 1120px){
    #recordForm  {
        gap: 15px;
    }
}
.form-input{
    width: 100%;
    padding: 0;
    color: var(--COLORE_UIText);
    font-family: "Jost-Regular";
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.05em;
}
@media (max-width: 1400px){
    #recordForm {
        width: 260px;
    }
}
@media (max-width: 1120px){
    #recordForm {
        width: 195px;
    }
}
@media screen and (max-width: 920px){
    #recordForm {
        width: 434px;
        padding: 21px 21px;
    }
}
@media (max-width: 600px){
    #recordForm {
        width: 324px;
    }
}
#recordButton {
    width: 100%;
    border: 1px solid #b78b4c;
    border-radius: 8px;
    padding: 10px 45px;
    height: 39px;
    box-shadow: 0 4px 4px -4px rgba(183, 139, 76, 0.1), 0 16px 16px -8px rgba(183, 139, 76, 0.2);
    cursor: pointer;
    color: var(--COLORE_BLACK);
    font-family: "Jost-Regular";
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.05em;
}
/*рекорд*/
.record {
    text-align: center;
    margin-top: 15px;
    color: var(--COLORE_UIText);
    font-family: "Jost-Regular";
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.05em;
}
.calendarDeleteButton {
    background-color: var(--COLORE_YELLOW);
    cursor: pointer;
    border-radius: 5px;
    border: none;
}



/* модальное окно о записи*/
.recordDialog {
    position: fixed;
    max-width: 100%;
    opacity: 0;
    z-index: -3;
    background: rgba(20, 24, 27, 0.70);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease;
}
.recordMessage {
    background-color: var(--COLORE_BLACK);
    padding: 30px 50px;
    border: 1px solid var(--COLORE_Text);
    border-radius: 10px;
    color: var(--COLORE_Text);
    margin: 10px;
}
.show {
    opacity: 1;
    z-index: 10;
}
#massag-dialog {
    opacity: 0;
    z-index: -2;
    transition: all .65s ease-in-out;
}
.main-checkbox{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}
.checkbox-input{
    position: relative;
    border: 1px solid var(--COLORE_YELLOW);
    border-radius: 5px;
    background-color: var(--COLORE_BLACK);
    width: 30px;
    height: 30px;
    margin: 0;
}
.checkbox-span{
    color: var(--COLORE_UIText);
    font-family: "Jost-Regular";
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.no-active{
    pointer-events: none;
    background: #b78b4c69;
}
.active-btn{
    background: var(--COLORE_YELLOW);
}




/*-----------------

@media (max-width: 600px) {
    .ebala {
        margin-top: calc(var(--vh)*100 - 100vh);
    }
}



----------*/

