
#kbn button{
    background-color: white;
    border: 1px solid #61799E;
    display: block;
    width: 200px;
    height: 62px;
    margin-bottom: 5px;
    font-size: 110%;
}
#kbn button:hover{
    background-color: #967DFF;
    color: white;
    cursor: pointer;
}

#kbn button.active{
    font-weight: bold;
    background-color: #563DE1;
    color: white;
}




#list{
    display: grid;
    grid-template-columns: 250px 1000px;
    grid-gap: 10px;
    margin-bottom: 50px;
}

h4{
    color: #563DE1;
    font-size: 200%;
    border-bottom: 3px solid #563DE1;
    margin-top: 0;
}

.tab{
    display: none;
}
.tab.active{
    display: block;
}

.box{
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,.3);
    display: none;
}
.box.active{
    display: block;
}

.ditail{
    display: none;
}
.ditail.active{
    display: block;
}
.tab li{
    list-style-type: none;
    float: left;
    display: block;
    width: 250px;
    font-size: 1.2rem;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 20px;
    margin-right: 10px;
}
.tab li a{
    text-decoration:none;
    color : #002;
    padding: 10px;
}
.tab li a:hover{
    background-color: #eee;
}
.tab li a span{
    font-size: 15px;
    display: inline-block;
    margin-top: -50px;
}
.tab {
    clear: both;
}


#close{
    position: absolute;top:2px;right: 5px;padding: 1px 10px;
    background-color: #563DE1;
    color:white;
}