.calendar__container{
    width: 100%;
    height: 100%;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;

    z-index: 1000000000;
    font-size: 14px;
}
.calendar__container_modal{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    bottom: 0;
    transform: translate(calc(var(--offset-lg)*(-1)), 0);
    z-index: 1000000000;
    font-size: 14px;
}
.tb0{
    left: 0;
}
.blokC{
    display: flex;
    justify-content: center;
    align-items: center;
}
/*@media screen and (min-width: 900px) {*/
/*    .calendar__container_modal{*/
/*        width: 100%;*/
/*        height: 100%;*/
/*        color: black;*/
/*        display: flex;*/
/*        justify-content: center;*/
/*        align-items: center;*/
/*        position: absolute;*/
/*        left: 0;*/
/*        z-index: 1000000000;*/
/*        font-size: 14px;*/
/*    }*/
/*}*/
.gross__calendar{
    width: 250px;
    height: 300px;
    background-color: white;
    box-shadow: 0 0.5em 3em rgba(0,0,0,0.4);
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100000000;
}
.gross__calendar_mobile{
    z-index: 1000000;
    width: 300px;
    height: 400px;
    background-color: white;
    box-shadow: 0 0.5em 3em rgba(0,0,0,0.4);
    border-radius: 5px;
}
.gross__calendar hr{
    margin: 0;
    padding: 0;
 }
.gross__calendar_mobile hr{
    margin: 0;
    padding: 0;
}
.date_info{
    border-radius: 5px;
    width: 100%;
    min-height: 15%;
    background-color: #f6f7f8;
    display: flex;
    align-items: center;
}
.selected__date{
    margin-left: 10%;
    width: 75%;
    font-size: 11px;
}
.month{
    min-height: 10%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.current__month{
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    width: 40%;
}
.current__month_text{
    width: 60%;
    text-align: center;
}
.current__month_year{
    width: 40%;
    text-align: center;
}

.weekdays{
    min-height: 10%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}
.days{
    width: 100%;
    height: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.days div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 14.25%;
    height: 14.25%;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.date_footer{
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}
.date_footer_mobile{
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: start;
    margin: 0;
    padding: 0;
}
.prev-date{
    color: #99a1ab;
}
.next-date{
    color: #99a1ab;
}
[x-cloak] { display: none !important; }
.hide{
    display: none;
}
.selectedDay{
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    background: var(--c3);
    color: white;
}
.selectedDaySecond{
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    background: var(--c3);
    color: white;
}
.closedDay{
    background: #e8e7e7;
}
.yearsScroller{
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.years{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow-y:scroll;
}
.year{
    width: 25%;
    height: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.nonActiveYear{
    color: #99a1ab;
}
.selectedYear{
    border-bottom: yellow 5px solid;
}
.SelectedDays{
    background: #d3e5d3;
}
.current__year{
    cursor: pointer;
}
.prevM{
    cursor: pointer;
}
.nextM{
    cursor: pointer;
}