.tabs {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    background: white;
    padding: 50px;
    padding-bottom: 80px;
    height: auto;
    border-radius: 5px;
    min-width: 240px;
    margin: 3em 0;
    webkit-box-shadow: 0px 0px 22px -12px rgb(68 68 68);
    -moz-box-shadow: 0px 0px 22px -12px rgba(68,68,68,1);
    box-shadow: 0px 0px 22px -12px rgb(68 68 68);
}

    .tabs input[name=tab-control] {
        display: none;
    }




    .tabs ul li label {
        font-weight: bold;
        font-size: 22px;
        font-family: 'Gilroy-SemiBold';
    }

.month-info {
    padding: 2em 0;
}

    .month-info ul li {
        text-align: left !important;
    }


.week {
    font-family: 'Gilroy-SemiBold';
    box-sizing: border-box;
    flex: none !important;
    width: 100% !important;
    padding: 0 10px;
    text-align: left !important;
    line-height: 1.5 !important;
    list-style: disc !important;
    font-size: 22px;
    margin: .8em 0 !important;
    color: #0095AB;
}

    .week ul li {
        list-style: circle !important;
        color: black;
        width: 100% !important;
        flex: none !important;
        font-size: 18px;
        list-style: none !important;
    }

        .week ul li span {
            display: inline-block;
            font-family: 'Gilroy-Regular';
            margin-bottom: 1em;
        }

        .week ul li ul li {
            font-family: 'Gilroy-Regular';
            list-style: disc !important;
            flex: none !important;
            width: 100% !important;
            margin-left: 1em;
        }



.tabs ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

    .tabs ul li {
        box-sizing: border-box;
        flex: 1;
        width: 25%;
        padding: 0 10px;
        text-align: center;
    }

        .tabs ul li label {
            transition: all 0.3s ease-in-out;
            padding: 5px auto;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            white-space: nowrap;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            background: #FF61BE;
            color: white;
            padding: 12px;
        }

            .tabs ul li label br {
                display: none;
            }


.tabs .content {
    margin-top: 30px;
}

    .tabs .content section {
        display: none;
        -webkit-animation-name: content;
        animation-name: content;
        -webkit-animation-direction: normal;
        animation-direction: normal;
        -webkit-animation-duration: 0.3s;
        animation-duration: 0.3s;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        line-height: 1.4;
    }

.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
    cursor: default;
    background: #0095AB;
    color: white;
}


.tabs input[name=tab-control]:nth-of-type(1):checked ~ .content > section:nth-child(1) {
    display: block;
}

.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
    cursor: default;
    background: #0095AB;
    color: white;
}


.tabs input[name=tab-control]:nth-of-type(2):checked ~ .content > section:nth-child(2) {
    display: block;
}

.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
    cursor: default;
    background: #0095AB;
    color: white;
}


.tabs input[name=tab-control]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
    display: block;
}

.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
    cursor: default;
    background: #0095AB;
    color: white;
}


.tabs input[name=tab-control]:nth-of-type(4):checked ~ .content > section:nth-child(4) {
    display: block;
}

@-webkit-keyframes content {
    from {
        opacity: 0;
        transform: translateY(5%);
    }

    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

@keyframes content {
    from {
        opacity: 0;
        transform: translateY(5%);
    }

    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

@media (max-width: 1000px) {
    .tabs ul li label {
        white-space: initial;
    }

        .tabs ul li label br {
            display: initial;
        }
}

@media (max-width: 850px) {
    .tabs {
        margin: 0 0;
    }

        .tabs ul li label {
            padding: 5px;
        }

        .tabs ul li {
            flex: none;
            width: 100%;
        }


        .tabs .content {
            margin-top: 20px;
        }

            .tabs .content section h2 {
                display: block;
            }
}