body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #000722;
}

.content {
    flex: 1;
    background-color: #000722;
    max-width: 800px;
    width: 100%;
    margin: auto;
}
.footer-wrap {
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 800px;
    margin: auto;
    height: 180px;
    background: #282828;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
  
    cursor: pointer;
    transition: height 0.3s ease;
}

.footer .handle-bar {
    
    background: #282828;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    height: 10px;
    padding: 10px;
    
}
.handle-bar> .line {
    width: 35px;
    height: 4px;
    background-color: white;
 
}

.footer .expanded-content {
    display: block;
    padding: 10px;
    background: #282828;
    color: white;
    flex: 1;
    width: 100%;
}

.footer.expanded {
    height: calc(100% - 60px);
}

.footer.expanded .expanded-content {
    display: block;
}

.tab {
    display: grid;
    grid-template-columns: repeat(auto-fill, 50%);
    
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: 300;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 10px;
    position: relative;
    padding: 10px;
    border-bottom: 1px solid rgb(41, 41, 41);
}
 
.expanded-small {
    display: flex;
    flex-direction: column;
}
 
.sblock1 > div {
    display: flex;
    justify-content: space-between;
    margin: 0px 15px 5px 15px;
    color: rgb(190, 190, 190);
}
.bottom-pop {
    position: absolute;
    bottom: 0;
    height: 300px;
    background: black;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.bottom-pop > div > input {
    margin-top: 10px;
    padding: 5px;
    border-radius: 5px;
}
.clip {
    background-color: #eb8136;
    border: 1px solid #eb8136;
    padding: 2px 5px;
    border-radius: 5px;
    font-size: 15px;
}