.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 56px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 0 24px;
    z-index: 100;
}

.header-menu {
    margin-right: 24px;
    cursor: pointer;
    display: none;
}

.header-logo {
    height: 28px;
}

.header-wrapper .header-left-content {
    display: flex;
}

.header-wrapper ul.header-right-content {
    display: flex;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    cursor: pointer;
    list-style: none;
}

.header-wrapper ul.header-right-content li {
    padding: 0 24px;
    border-right: 1px solid #c4c4c4;
    position: relative;
    display: flex;
    white-space: nowrap;
}

.header-wrapper ul.header-right-content li:last-child {
    padding: 0 24px;
    border-right: none;
}

.contact-us-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-us-content-wrapper p {
    text-align: center;
}

.contact-us-content-wrapper span {
    font-weight: 700;
}

.contact-us-content-wrapper .contact-us-content-app-link {
    margin-top: 24px;
}

.provide-biometrics-wrapper p {
    color: #616161;
    line-height: 24px;
    margin-bottom: 20px;
}  

.biometrics-header p {
    margin-bottom: 0px;
}

.biometrics-header-mobile {
    display: none;
}

.provide-biometrics-wrapper .guide-download-app {
    display: flex;
    align-items: center;
}

.provide-biometrics-wrapper .guide-download-app .content {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.provide-biometrics-wrapper .guide-download-app .content .scan-download-app {
   font-size: 14px;
   line-height: 21px;
   display: inline-grid;
   margin-left: 5px;
}

.provide-biometrics-wrapper .footer-web {
    display: flex;
    justify-content: end;
}

.provide-biometrics-wrapper .footer-mobile {
    display: none;
}

.biometrics-header-web p {
    margin-bottom: 0px;
}

.sidebar {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 0px 6px 16px 2px rgba(0, 0, 0, 0.12);
    transition: 0.1s;
    z-index: 102;
}

.sidebar-menu-item {
    display: flex;
    justify-content: space-between;
    margin: 44px 16px 44px 0;
    cursor: pointer;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    height: 72px;
    align-items: center;
    padding: 0 28px;
}

.sidebar-header img {
    cursor: pointer;
}

.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    transition: 0.5s;
    overflow: hidden;
    z-index: 101;
    display: none;
}

.overlay.active {
    display: block;
}

.switch {
    width: 65px;
    height: 30px;
    border: 1px solid #dedede;
    border-radius: 15px;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.switch-item {
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    line-height: 20px;
}

.switch-item.lang {
    width: 35px;
    font-weight: 500;
}

.flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.login-footer {
    color: #fff;
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    padding: 24px 16px 10px 16px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .header-wrapper {
        height: 72px;
    }
    .header-wrapper ul.header-right-content {
        display: none;
    }
    .header-menu {
        display: block;
    }
    .header-logo {
        height: 24px;
    }
}

@media (max-width: 500px) {
    .biometrics-header-web {
        display: none;
    }

    .biometrics-header {
        display: none;
    }
    
    .biometrics-header-mobile {
        display: block;
        text-align: center;
        font-weight: bold;
        font-size: 20px;
    }

    .biometrics-header-mobile img {
        margin: 0 auto 20px;
    }

    .biometrics-header-mobile p {
        line-height: 24px;
    }

    .provide-biometrics-wrapper p {
       text-align: center;
       font-size: 15px;
       line-height: 20px;
    } 

    .provide-biometrics-wrapper .footer-web {
       display: none;
    }

    .provide-biometrics-wrapper .footer-mobile {
        display: block;
        margin-bottom: 15px;
        text-align: center;
    }

    .provide-biometrics-wrapper .footer-mobile .mr-10 {
        margin-right: 10px;
    }

    .provide-biometrics-wrapper .guide-download-app {
        display: none;
    }
}
