﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --primary-background: #10C6CA;
    --secondary-background: #FB8D20;
    --primary-color: #444;
    --secondary-color: #10C6CA;
}

body {
    background: #F9F9F9;
    font-family: 'Roboto';
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Bottom Navigation Menu
--------------------------------------------------------------*/
.footer-navbar {
    position: sticky;
    bottom: 0;
    width: 100%;
    background: #FFF;
    filter: drop-shadow(0px -1px 4px rgba(0, 0, 0, 0.10));
    z-index: 10;
}

    .footer-navbar .tabs {
        display: flex;
        justify-content: space-around;
        padding: 16px 0;
        margin: 0;
    }

        .footer-navbar .tabs li {
            list-style: none;
            text-align: center;
            display: block;
        }

            .footer-navbar .tabs li a {
                text-decoration: none;
                padding: 0 20px;
                display: block;
            }

                .footer-navbar .tabs li a .icon {
                    width: 100%;
                    height: 26px;
                    margin-bottom: 5px;
                }

                    .footer-navbar .tabs li a .icon ion-icon,
                    .footer-navbar .tabs li a .icon i {
                        width: 100%;
                        height: 100%;
                        color: #CCC;
                        font-size: 26px;
                    }

                .footer-navbar .tabs li a .text {
                    font-size: 12px;
                    color: #CCC;
                    letter-spacing: .15px;
                }

                .footer-navbar .tabs li a.active ion-icon,
                .footer-navbar .tabs li a.active i,
                .footer-navbar .tabs li a.active .text {
                    color: #1FD8D8;
                }

/*--------------------------------------------------------------
# Marketing Register
--------------------------------------------------------------*/

.mktng-signup {
    padding: 60px 20px;
}

    .mktng-signup .signup-title {
        color: #444;
        text-align: center;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 1.5rem;
    }

    .mktng-signup .btn-manual-reg {
        width: 100%;
        height: 50px;
        background: var(--primary-background);
        color: #FFF;
        text-align: center;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 0.375rem;
    }

    .mktng-signup .btn-google {
        border-radius: 0.375rem;
        height: 50px;
        color: #FFF;
        font-size: 18px;
        font-weight: 700;
        width: 100%;
        display: flex;
        align-items: center;
        background: #4285F4;
        padding-left: 2px;
    }

    .mktng-signup .btn-fb {
        width: 100%;
        height: 50px;
        background: #1877F2;
        border-radius: 0.375rem;
        height: 50px;
        color: #FFF;
        font-size: 18px;
        font-weight: 700;
        width: 100%;
        display: flex;
        align-items: center;
        padding-left: 2px;
    }

    .mktng-signup .btn-apple {
        width: 100%;
        height: 50px;
        background: #000;
        border-radius: 0.375rem;
        height: 50px;
        color: #FFF;
        font-size: 18px;
        font-weight: 700;
        width: 100%;
        display: flex;
        align-items: center;
        padding-left: 2px;
    }

/*--------------------------------------------------------------
# Manual Register
--------------------------------------------------------------*/

.manual-reg .header {
    width: 100%;
    height: 80px;
    border: 1px solid #CCC;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    position: fixed;
}

    .manual-reg .header .title {
        color: var(--primary-color);
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.15px;
        position: relative;
    }

    .manual-reg .header .bx-chevron-left {
        position: absolute;
        left: 10px;
        bottom: 23px;
    }

.manual-reg .container {
    padding-top: 82px;
}

.manual-reg .personal-content,
.manual-reg .contact-content,
.manual-reg .password-content {
    padding: 1rem;
}

.manual-reg .title-detail {
    color: #ACACAC;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 1rem;
}

.manual-reg .detail-input-box {
    border-radius: 12px;
    border: 1px solid #AAA;
    background: #FFF;
    height: 59px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: .7rem;
}

    .manual-reg .detail-input-box .detail-input {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 6px 12px;
    }

        .manual-reg .detail-input-box .detail-input .label-title {
            display: none;
            font-size: 12px;
            color: #ACACAC;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 6px;
        }

        .manual-reg .detail-input-box .detail-input input {
            outline: 0;
            border: 0;
            background: #FFF;
            padding: 0;
            width: 100%;
        }

            .manual-reg .detail-input-box .detail-input input::placeholder {
                font-weight: 400;
                line-height: normal;
                color: #ACACAC;
            }

        .manual-reg .detail-input-box .detail-input .input-container {
            position: relative;
        }

        .manual-reg .detail-input-box .detail-input .fl-asterisk {
            position: absolute;
            left: 85px;
            top: 50%;
            transform: translateY(-50%);
            color: red;
            pointer-events: none;
        }

        .manual-reg .detail-input-box .detail-input .e-asterisk {
            position: absolute;
            left: 109px;
            top: 50%;
            transform: translateY(-50%);
            color: red;
            pointer-events: none;
        }

.manual-reg hr {
    margin: 0;
    color: #DFE4E5;
}

.manual-reg .detail-input-box .detail-input .icon {
    position: absolute;
    top: 25px;
    right: 25px;
}

.manual-reg .contact-content .user-code {
    cursor: pointer;
}

.manual-reg .contact-content .user-phone {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.manual-reg .contact-content .user-code #DialCodeDropDown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Prevent interaction when hidden */
    display: none
}

    .manual-reg .contact-content .user-code #DialCodeDropDown.expanded {
        opacity: 1;
        visibility: visible;
        pointer-events: auto; /* Enable interaction when visible */
        display: block;
    }

.manual-reg .contact-content .user-code .select-dp {
    width: 300px;
    background: #FFF;
    max-height: 350px;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 65px;
    left: 0;
    border-radius: 12px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 10;
}

    .manual-reg .contact-content .user-code .select-dp .scrollable-content {
        overflow-y: auto;
        max-height: calc(280px - 8px);
    }

    .manual-reg .contact-content .user-code .select-dp li {
        padding: 10px;
    }

    .manual-reg .contact-content .user-code .select-dp .dc.selected {
        background: var(--primary-background);
        color: #FFF;
    }

        .manual-reg .contact-content .user-code.select-dp .dc.selected .dialcode {
            color: #FFF;
        }

    .manual-reg .contact-content .user-code .select-dp li:hover {
        background: var(--primary-background);
        color: #FFF;
    }

        .manual-reg .contact-content .user-code .select-dp li:hover .dialcode {
            color: #FFF;
        }

    .manual-reg .contact-content .user-code .select-dp li > .dialcode {
        color: #ACACAC;
        font-size: 14px;
        line-height: normal;
    }

.manual-reg .btn-register {
    border-radius: 12px;
    background: #FB8D20;
    height: 45px;
    width: 290px;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.manual-reg .eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
}

/*--------------------------------------------------------------
# Complete Register
--------------------------------------------------------------*/

.complete-reg .header {
    width: 100%;
    height: 80px;
    border: 1px solid #CCC;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    position: fixed;
}

    .complete-reg .header .title {
        color: var(--primary-color);
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.15px;
        position: relative;
    }

    .complete-reg .header .bx-chevron-left {
        position: absolute;
        left: 10px;
        bottom: 23px;
    }

.complete-reg .container {
    padding-top: 82px;
}

.complete-reg .personal-content,
.complete-reg .contact-content,
.complete-reg .password-content {
    padding: 1rem;
}

.complete-reg .title-detail {
    color: #ACACAC;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 1rem;
}

.complete-reg .detail-input-box {
    border-radius: 12px;
    border: 1px solid #AAA;
    background: #FFF;
    height: 59px;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: .7rem;
}

    .complete-reg .detail-input-box .detail-input {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 6px 12px;
    }

        .complete-reg .detail-input-box .detail-input .label-title {
            display: none;
            font-size: 12px;
            color: #ACACAC;
            font-weight: 400;
            line-height: normal;
            margin-bottom: 6px;
        }

        .complete-reg .detail-input-box .detail-input input {
            outline: 0;
            border: 0;
            background: #FFF;
            padding: 0;
            width: 100%;
        }

            .complete-reg .detail-input-box .detail-input input::placeholder {
                font-weight: 400;
                line-height: normal;
                color: #ACACAC;
            }

        .complete-reg .detail-input-box .detail-input .input-container {
            position: relative;
        }

        .complete-reg .detail-input-box .detail-input .fl-asterisk {
            position: absolute;
            left: 85px;
            top: 50%;
            transform: translateY(-50%);
            color: red;
            pointer-events: none;
        }

        .complete-reg .detail-input-box .detail-input .e-asterisk {
            position: absolute;
            left: 109px;
            top: 50%;
            transform: translateY(-50%);
            color: red;
            pointer-events: none;
        }

.complete-reg hr {
    margin: 0;
    color: #DFE4E5;
}

.complete-reg .detail-input-box .detail-input .icon {
    position: absolute;
    top: 25px;
    right: 25px;
}

.complete-reg .contact-content .user-code {
    cursor: pointer;
}

.complete-reg .contact-content .user-phone {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.complete-reg .contact-content .user-code #DialCodeDropDown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Prevent interaction when hidden */
    display: none
}

    .complete-reg .contact-content .user-code #DialCodeDropDown.expanded {
        opacity: 1;
        visibility: visible;
        pointer-events: auto; /* Enable interaction when visible */
        display: block;
    }

.complete-reg .contact-content .user-code .select-dp {
    width: 300px;
    background: #FFF;
    max-height: 350px;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 65px;
    left: 0;
    border-radius: 12px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 10;
}

    .complete-reg .contact-content .user-code .select-dp .scrollable-content {
        overflow-y: auto;
        max-height: calc(280px - 8px);
    }

    .complete-reg .contact-content .user-code .select-dp li {
        padding: 10px;
    }

    .complete-reg .contact-content .user-code .select-dp .dc.selected {
        background: var(--primary-background);
        color: #FFF;
    }

        .complete-reg .contact-content .user-code.select-dp .dc.selected .dialcode {
            color: #FFF;
        }

    .complete-reg .contact-content .user-code .select-dp li:hover {
        background: var(--primary-background);
        color: #FFF;
    }

        .complete-reg .contact-content .user-code .select-dp li:hover .dialcode {
            color: #FFF;
        }

    .complete-reg .contact-content .user-code .select-dp li > .dialcode {
        color: #ACACAC;
        font-size: 14px;
        line-height: normal;
    }

.complete-reg .btn-register {
    border-radius: 12px;
    background: #FB8D20;
    height: 45px;
    width: 290px;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.complete-reg .eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
}

/*--------------------------------------------------------------
# Sucess Modal
--------------------------------------------------------------*/

.sucess-modal {
    --l: 1rem;
    --r: 1rem;
    --s: 350px;
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1055;
    transition: opacity .3s ease, visibility .3s ease;
}

    .sucess-modal.open {
        display: block; 
        opacity: 1;
        visibility: visible;
    }

    .sucess-modal .sucess-modal-dialog {
        margin-left: var(--l);
        margin-right: var(--r);
        position: relative;
        width: auto;
    }

    .sucess-modal .sucess-modal-dialog-centered {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100% - var(--l) * 2);
    }

    .sucess-modal .sucess-modal-content {
        background: #FFF;
        width: var(--s);
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
    }

    .sucess-modal .sucess-modal-body {
        padding: 36px 29px 26px;
        height: 100%;
        text-align: center;
    }

        .sucess-modal .sucess-modal-body h6 {
            margin-bottom: 50px;
            font-weight: 700;
        }

        .sucess-modal .sucess-modal-body .btn-ok {
            background: var(--secondary-background);
            border-radius: 12px;
            color: #FCFCFC;
            line-height: normal;
            font-size: 16px;
            font-weight: 700;
            width: 222.842px;
            height: 45px;
            border: 0;
            outline: 0;
            transition: all .3s;
        }