body {
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#box {
    margin: 10px auto;
    height: 100vh;
    width: 95vw;
    max-width: 730px;
    height: max-content;
    padding: 50px 0px 25px 0px;
    border-radius: 50px;
    background: #ecf0f3;
    box-shadow: 13px 13px 20px #cbced1,
                -13px -13px 20px #ffffff;
}
.lab {
    position: relative;
    text-align: center;
    max-width: 770px;
}
a {
    color:black;
    text-decoration:none;
    text-align: center;
    font-size: 28px;
    padding-top: 24px;
    letter-spacing: 0.5px;
}

table {
    background-color: transparent;
    border-collapse: separate;
    width: 60%;
    max-width: 440px;
    margin: 20px auto;
    border-spacing: 6px;
}

th, td {
    border: hidden;
    text-align: center;
    padding: 10px;
}
.upper{
    outline: none;
    border:none;
    width:100%;
    height: 20px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    color:#fff;
    text-align: center;
    background: #24cfaa;
    box-shadow: 3px 3px 8px #b1b1b1,
                -3px -3px 8px #ffffff;
}
.tab {
    margin-bottom: 30px;
    border-radius: 25px;
    box-shadow: inset 8px 8px 8px #cbced1,
                inset -8px -8px 8px #ffffff;
}
.topBtn {
    line-height: 40%;
    text-align: center;
    width: 30px;
    height: 30px;
	position: fixed;
	right: 5%;
	bottom: 20px;
	display: none;
    border-radius: 50%;
    margin:0 auto;
    box-shadow: 
    /* logo shadow */
    0px 0px 2px #5f5f5f,
    /* offset */
    0px 0px 0px 5px #ecf0f3,
    /*bottom right */
     8px 8px 15px #a7aaaf,
    /* top left */
    -8px -8px 15px #ffffff 
}


.slide-open{
    z-index: 2;
    position:absolute;
    top: 0;
    right: 3%;
    width:50px;
    height:50px;
    cursor:pointer;
}
.burgur{
    right: 15px;
    top: 23px;
    position: absolute;
    width: 20px;
    height: 2px;
    background: #000000;
}
.burgur .top-line{
    width: 20px;
    height: 2px;
    background-color: #000000;
    bottom: -5px;
    content: '';
    position: absolute;
    right: 0;
    -webkit-transition:  -webkit-transform .3s;
    transition: transform .3s;

}
.burgur .bot-line {
    width: 20px;
    height: 2px;
    background-color: #000000;
    top: -5px;
    content: '';
    position: absolute;
    right: 0;
    -webkit-transition:  -webkit-transform .3s;
    transition: transform .3s;
}

.burgur.on {
    width: 0;
}
.burgur.on .bot-line {
    -webkit-transform: translateY(5px) rotate(135deg);
    transform: translateY(5px) rotate(135deg);
    }
.burgur.on .top-line{
    -webkit-transform: translateY(-5px) rotate(-135deg);
    transform: translateY(-5px) rotate(-135deg);
}
.slide{
    width:30%;
    height: 100%;
    position:absolute;
    left:-100%;
    top:0;
    right:0;
    bottom:0;
    -webkit-transition: left .3s;
    -moz-transition: left .3s;
    -ms-transition: left .3s;
    -o-transition: left .3s;
    transition: left .3s;
    background-color:#cccccc;
}
.slide-title{
    width:100%;
    height:80px;
    font-size:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-bottom:1px solid #e1e1e1;
}
.slide.on{
    left:0;
}
.slide ul li{
    display:inline-block;
    width:80%;
    padding:15px;
    border-bottom:1px solid #e1e1e1;
}

@media (min-width: 620px) and (max-width: 770px) {
    .slide{
        width:85%;
    }
    table{
        width: 360px;
    }
}

@media (min-width: 325px) and (max-width: 619px) {
    .slide{
        width:85%;
    }
    table{
        width: 220px;
    }
}
@media (max-width: 324px) {
    .slide{
        width: 80%;
        min-width: 240px;
    }
    table{
        width: 145px;
    }
}