body{
    padding: 0;
    margin: 0;
}
.main{
    width: 100%;
    box-sizing: border-box;
}
.check{
    display: flex;
    justify-content: space-between;
    background: #f5f5f5;
    padding-top: 10px;
}
.label{
    width: 48%;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    box-sizing: border-box;
    padding: 5px 0;
    background: white;
    border-radius: 8px 8px 0 0;
}
.label-date {
    font-size: 12px;
    margin-top: 0;
}
.active{
    background: #07c160;
    border-radius: 8px 8px 0 0;
    color: white;
}
.ctn{
    width: 100%;
    border: 1px solid #07c160;
    box-sizing: border-box;
    padding: 10px;
}
.open-title{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    gap: 100px;
}
.f14{
    font-size: 14px;
}
.red{
    color: red;
}
.green{
    color: green;
}
.open-ball{
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;

    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;

    box-sizing: border-box;
}
.ojra {
    &:nth-child(7n) {
        margin-right: 0;
    }
}
.fitem{
    width: 14%;
    height: auto;
}
.item {
    width: 100%;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}
.item-wds{
    font-size: 30px;
    text-align: center;
}
.plus-icon{
    position: relative;
}
.plus-icon::before{
    content: '+';
    position: absolute;
    top: 20%;
    left: -15px;
    font-size: 35px;
    font-weight: bold;
}
.period{
    text-align: center;
    font-size: 24px;
    color: red;
}
.bblue {
    background-image: url('/static/blue.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.bred {
    background-image: url('/static/red.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.bgreen {
    background-image: url('/static/green.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

@media (max-width: 800px) {
    .item{
        font-size: 18px;
        min-height: 50px;
    }
    .plus-icon::before{
        top: 23%;
        font-size: 14px;
        left: -4px;
    }
    .item-wds{
        font-size: 12px;
    }
    .period{
        font-size: 14px;
    }
    .open-title{
        gap: 50px;
    }
}