@import url("//cdn.jsdelivr.net/gh/wan2land/d2coding/d2coding-full.css");
body {
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    align-items: center;
}
* {
    box-sizing: border-box !important;
}
*,
*::after,
*::before {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}
.d_flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

  }
#box {
    margin: 10px auto;
    height: 100vh;
    width: 95vw;
    max-width: 1395px;
    height: max-content;
    padding: 30px 0px 25px 0px;
    border-radius: 50px;
    background: #ecf0f3;
    box-shadow: 13px 13px 20px #cbced1,
                -13px -13px 20px #ffffff;
}
.lab {
    position: relative;
    text-align: center;
}
.title {
    margin-bottom: 20px;
    position: relative;
    text-align: center;
    font-size: 35px;
}

a {
    color:black;
    text-decoration:none;
    text-align: center;
    font-size: 25px;
    padding-top: 24px;
    letter-spacing: 0.5px;
}
html {
    font-family: 'D2Coding', monospace;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }
table {
    display: table;
    text-indent: initial;
    border-color: inherit;
    background-color: transparent;
    border-collapse: separate;
    margin: 20px;
}
tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}
.tg {
    overflow: auto;
    border-collapse: collapse;
    border-spacing: 0;
    text-align: center;
    table-layout: fixed;
  }
  .tg td{
    display: table-cell;
    vertical-align: inherit;
    table-layout: fixed;
    word-break:normal;
    overflow:hidden;
    padding:10px 5px;
  }
  .tg th{
    position: sticky;
    max-width: 150px;
    min-width: 150px;
    height: 50px;
    table-layout: fixed;
    display: table-cell;
    text-align: inherit;
    vertical-align: inherit;
    word-break:normal;
  }

.upper{
    font-size: 20px;
    font-family: 'Lato', sans-serif;
    color:#fff;
    background: #24cfaa;
    box-shadow: 3px 3px 8px #b1b1b1,
                -3px -3px 8px #ffffff;
}
.tab {
    box-shadow: inset 8px 8px 8px #cbced1,
                inset -8px -8px 8px #ffffff;
}
.tab_r {
    background: rgb(245, 216, 216);
    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%;
    }

}

@media (min-width: 325px) and (max-width: 619px) {
    .slide{
        width:85%;
    }

}
@media (max-width: 324px) {
    .slide{
        width: 80%;
        min-width: 240px;
    }

}