html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, menu, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: inherit;
    vertical-align: baseline;
    font-family: 'Poppins', sans-serif;
}
body{
    overflow: hidden;
}

#app {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 0px;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    width: 100%;
    height: 100%;
    touch-action: none;
    -ms-touch-action: none;
}

.main-container {
    flex-grow: 1;
    flex: 1 1 0%;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 24px 12px;
    height: 100%;
}

.main {
    margin: 0px auto;
    height: 88vh;
    width: 100%;
    max-width: 680px;
    padding-bottom: 80px;
}

.logo-section {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 16px;
    width: 100%;
    display: flex;
    justify-content: center;

    /*height: 100%;*/
}

.logo-section .logo {
    width: 137px;
    height: 104px;
    bottom: -35px;
    background-color: #fff;
    border-radius: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50%;
    box-shadow: 0 6px 20px 0 rgb(0 0 0 );
}
.logo-section .default {
    border-radius: 0 !important;
}

.account-name {
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 32px;
}

.buttons {
    overflow-y: scroll;
    max-height: 60%;
    height: 60%;
}

.buttons::-webkit-scrollbar {
    background-color: transparent;
    width: 100%;
    height: 10px;
}

.background {
    background: linear-gradient(0deg, rgb(154, 155, 155), rgb(63, 64, 73));
    z-index: -1;
    inset: 0px;
    position: absolute;
}

.link-btn {
    padding: 16px 20px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    margin-bottom: 16px;
    transition: box-shadow 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, border-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, transform 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s, background-color 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99) 0s;
    background-color: #fff;
    color: rgb(105, 79, 246);
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    white-space: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: 0.25s;
    border-radius: 2px;
}

.link-btn img{
    position: absolute;
    left: 27px;
    top: 50%;
    transform: translate(-50%,-50%);
}
.footer {
    display: flex;
    position: fixed;
    align-items: center;
    bottom: 6px;
    width: 95%;
}

.social-container {
    display: flex;
    /*padding-top: 16px;*/
    /*padding-bottom: 16px;*/
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: flex-end;
    -webkit-box-align: center;
    align-items: center;
    align-self: center;
    width: 50%;
    height: 100%;
}

.social-link {
    transition: transform 0s cubic-bezier(0.23, 1, 0.32, 1) 0s;
    z-index: 0;
    /*padding-bottom: 12px;*/
    padding-left: 8px;
    padding-right: 8px;
    color: inherit;
    text-decoration: underline;
}

.social-link svg {
    fill: rgb(255, 255, 255);
    width: 32px;
    height: 32px;
    pointer-events: none;
}

.powered-by {
    width: 50%;
    text-align: left;
    color: #fff;
    font-weight: 700;
    margin-top: 6px;
    display: flex;
    justify-content: start;
    align-items: self-start;
}

.powered-by a {
    font-size: 18px;
    text-decoration: none;
    font-weight: 900;
}
.okmenu-logo{
    width: 22px;
    height: 22px;
    margin-top: 2px;
    margin-right: 6px;
}
@media (min-width: 320px) and (max-width: 350px) {
    .social-link svg {
        fill: rgb(255, 255, 255);
        width: 18px;
        height: 18px;
        pointer-events: none;
    }

    .buttons {
        max-height: 40%;
        height: 40%;
    }

    .powered-by {
        font-size: 13px;
        margin-top: 0;

    }

    .powered-by a {
        font-size: 13px;
    }
    .okmenu-logo{
        margin-top: 0;
    }
}

@media (min-width: 350px) and (max-width: 900px) {
    .main-container{
        margin: 35px 0;
    }
    .social-link svg {
        fill: rgb(255, 255, 255);
        width: 23px;
        height: 23px;
        pointer-events: none;
    }
    .powered-by {
        margin-top: 0;
    }
}