
.menu_data{
    display: flex;
    margin-bottom: 100px;
}
#menu_month{
    font-family: 'Century Gothic';
    font-style: normal;
    font-weight: 400;
    font-size: 60px;
    line-height: 74px;
    width: 105px;
    display: flex;
    justify-content: center;
    color: #595959;
}
#menu_month:hover{
    color: white;
}
#menu_month:focus{
    color: red;
}
.menu_months{
    width: 586px;
    height: 282px;
    border: 2px solid #DEDEDE;
    overflow-y: scroll;
    display: flex;
    justify-content: center;
}
.menu_months::-webkit-scrollbar { width: 0; }
.menu_months { -ms-overflow-style: none; }

.menu_list{
    list-style: none;
    padding-inline-start: 0px;
}
.menu_list li{
    margin-bottom: 30px;
}
.menu_list li:first-child{
    margin-top: 100px;
}
#main {
    display: grid;
    grid-row-gap: 6px;
    grid-column-gap: 6px;
    grid-template-columns: repeat(5, 90px);
    margin-left: 120px;
}
.item{
    width: 87px;
    height: 87px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #262626;
    margin: 0px;
}

.item:hover {
    border: 2px solid darkred;
    transition: 0.7s;
}
/*}*/

/*.product-list .item {*/
/*    background-color: red;*/
/*    border-radius: 10px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    position: relative;*/
/*    width: calc(33.333% - 20px);*/
/*    margin: 10px;*/
/*    box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 16px 20px rgba(0,0,0,0.2);*/
/*    opacity: 0.95;*/
/*}*/

/*.product-list .item:hover:before {*/
/*    opacity: 1;*/
/*}*/

/*.product-list .item:before,*/
/*.product-list .item:after {*/
/*    border-radius: inherit;*/
/*    content: "";*/
/*    height: 100%;*/
/*    left: 0px;*/
/*    opacity: 0;*/
/*    position: absolute;*/
/*    top: 0px;*/
/*    transition: opacity 500ms;*/
/*    width: 100%;*/
/*}*/

/*.product-list .item:before {*/
/*    background: radial-gradient(20px circle at var(--mouse-x) var(--mouse-y), rgba(191, 226, 255, 0.4), transparent 40%);*/
/*    z-index: 3;*/
/*}*/

/*.product-list .item:after {*/
/*    background: radial-gradient(10px circle at var(--mouse-x) var(--mouse-y), darkred, transparent 40%);*/
/*    z-index: 1;*/
/*}*/

/*.product-list .item p {*/
/*    background-color: ;*/
/*    border-radius: inherit;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: space-between;*/
/*    text-align: center;*/
/*    padding: 78px 16px 16px;*/
/*    z-index: 2;*/
/*    height: 100%;*/
/*    line-height: 1.2;*/
/*    margin: 2px;*/
/*}*/

.days{
    display: none;
}
.menu_day{
    font-family: 'Century Gothic';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 49px;
}
.menu_prev{
    transform: rotate(270deg);
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border: 3px solid white;
    border-radius: 50%;
    backdrop-filter: blur(11px);

}
.menu_next {
    transform: rotate(90deg);
    transition: background 0.2s;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border: 3px solid white;
    border-radius: 50%;
    backdrop-filter: blur(11px);
    margin: auto -20px;
}
@media screen and (max-width: 1199px) {
    .menu_data {
        max-width: 375px;
        display: flex;
        flex-direction: column;
    }
    .menu_months {
        width: 333px;
    }
    #menu_month{
        font-size: 40px;
    }
    #main {
        display: grid;
        grid-row-gap: 9px;
        grid-column-gap: 9px;
        grid-template-columns: repeat(5, 60px);
        margin-top: 70px;
        margin-left: 0;
    }
    .item {
        width: 57px;
        height: 57px;
    }
    .menu_day {
        font-size: 20px;
    }
}
