.month_zone{
    width: 80%;
    margin: 20px auto;
    display: flex;
    justify-content: space-around;
    align-content: center;
}

.week_zone {

    display: inline-flex;
    min-height: 500px;
    width: 100%;
}
.in-container#display_zone{
    padding: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    width: 60%;
}
@media screen and (max-width:1025px) {
    .content {
        width: 90% !important;
        margin-left: 5% !important;
    }

    .week_zone {
        display: block !important;
    }

    .month {
        width: 90% !important;
    }

    .month_start {
        width: 90% !important;
    }

    .display_zone_text {
        width: 80% !important;
        margin: 0 !important;
    }

    .nav_month button {
        width: 20% !important;
    }
}

.column_week {
    display: inline-grid;
    background-color: white;
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    font-family: 'Poppins';
}
.column_week a{
    color: var(--dark-blue);
}
.nav_month {
    text-align: center;
    padding: 5px;
    background-color: var(--orange);
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.nav_month button {
    width: 30%;
    border: none;
    height: 100%;
    margin-top: 0;
}

.button_month {
    background-color: var(--blue);
    color:var(--white);
    border: none;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    transition: all .2s ease-in-out;
    box-shadow: 4px 2px 8px rgb(0, 0, 0,.6);
    font-family: 'Poppins';
}

.button_month:hover {
    transform: scale(1.1);
}


.button_prev_month {
    float: left;
    border-right: 1px solid var(--dark-blue) !important;
    background-color: transparent;
}

.button_next_month {
    float: right;
    border-left: 1px solid var(--dark-blue) !important;
    background-color: transparent;
}

.nav_month button:hover .left{
    transition: .1s ease-out;
    -webkit-transform: .1s ease-out;
    transform: translate(-5px) rotate(135deg);
    -webkit-transform:translate(-5px) rotate(135deg); /* Safari and Chrome */

}
.nav_month button:hover .right{
    transition: .1s ease-out;
    -webkit-transform: .1s ease-out;
    transform: translate(5px) rotate(-45deg);
    -webkit-transform:translate(5px) rotate(-45deg); /* Safari and Chrome */
}

.week {
    display: none;
}

.week1 {
    display: block;
}

.month {
    display: none;
    width: 25%;
    margin: 3%;
}

.month_start {
    display: block;
    width: 25%;
    margin: 3%;
}

.arrow {
    border: double var(--dark-blue);
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 5px;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}


.button_week {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    background-color: rgba(200, 200, 200, 0.1);
    border: none;
    border-top: 1px solid #ccc;
    font-family: 'Poppins';
}

.unabled {
    background-color: rgba(200, 200, 200, 0.6) !important;
}

.unabled:hover {
    background-color: rgba(200, 200, 200, 0.6) !important;
}

.button_week:hover {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    padding-left: 20px;
    background-color: #eee;
    border: none;
    border-top: 1px solid #ccc;
    /*transform: scale(1.1);*/
    /*box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);*/
}


.display_zone {
    width: 70%;
    margin: 15px;
    margin-left: 5%;
    border-radius: 5px;
    padding: 20px;
    background-color: rgba(242, 238, 246, 0.7);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5)
        /*
 rgba(134,196,141,1);
rgb(134,196,141);
rgb(78, 94, 170);*/
}
