/* .hero-text-container */
.hero-text-container {
    width: 65%;
}

/* .bank-info-container */
.bank-info-container {
    width: 50%;
}

/* .action-container */
.action-container {
    width: 90%;
    height: 100%;
}

/* input border radius */
.input-rounded, .btn-rounded {
    border-radius: 10px !important;
}

#verificationCode {
    padding: 0 15px;
    letter-spacing: 50px;
    border: none;
    background-image: linear-gradient(to left, #2c4e3c 70%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 50px 1px;
    background-repeat: repeat-x;
    background-position-x: 35px;
    /* max-width: 200px; */
    width: 50%;
    margin: 0 20%;
    /*min-width: 310px;*/
}

/* .name-hint */
.name-hint {
    width: 50%;
}




/* 
* dashboard styles
* .sidebar
*/

.header {
    z-index: 0 !important;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 500;
    padding: 10px 0 0 10px;
}

/* .left-sidebar */
.left-sidebar {
    position: sticky;
    top: 0;
    height: calc(100vh - 70px);
    /* width: 80%; */
}

/* .page-title */
.page-title {
    margin-left: -3em;
}

/* .how-cards */
.how-cards {
    width: 20rem;
    height: 20rem;
}

/* .how-card-1::before */
.how-card-1::before {
    width: 10rem;
    height: 10rem;
    content: "";
    background-color: white;
    background-image: url("../icons/step-1.png");
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    left: 11.5rem;
    bottom: 5rem;
    margin-bottom: -5rem;
    border-radius: 100%;
}

/* .how-card-2::before */
.how-card-2::before {
    width: 10rem;
    height: 10rem;
    content: "";
    background-color: white;
    background-image: url("../icons/step-2.png");
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    left: 11.5rem;
    top: 16.5rem;
    margin-top: -11rem;
    border-radius: 100%;
}

/* .how-card-3::before */
.how-card-3::before {
    width: 10rem;
    height: 10rem;
    content: "";
    background-color: white;
    background-image: url("../icons/step-3.png");
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    right: 2rem;
    bottom: 5rem;
    margin-bottom: -5rem;
    border-radius: 100%;
}

/* .active for active nav item */
.active {
    background-color: rgba(47, 97, 20, 0.4) !important;
    color: #000000 !important;
    border-radius: 15px;
    width: fit-content;
}

.active::before {
    position: absolute;
    content: 'a';
    color: transparent;
    left: 0;
    border-left: 5px solid rgba(47, 97, 20, 1);
    padding: 5px 0;
    margin: -5px 0;
}

/* .active-2 for landing page */
.active-2 {
    border-bottom: 2px solid #2c4e3c;
}

/* .main-content */
.main-content {
    padding-top: 100px;
}

/* .wallet-balance-bg && .main-card, etc... */
.wallet-balance-bg, 
.main-card, 
.notification-card,
.account-info {
    width: 100%;
}

.trade-giftcard, 
.trade-bitcoin {
    width: fit-content;
}

.account-img {
    width: fit-content;
}

.table-head {
    border-color: transparent !important;
    border-radius: 0 0 20px 20px;
}













/* 
* breakpoints
*/

/* Extra^2^2  small devices (phones, 280px and down) */
@media only screen and (max-width: 280px) {
    .page-title {
        margin: 0.1px 2px 0 -2px;
    }
}

/* Extra^2  small devices (phones, 320px and up) */
@media only screen and (min-width: 320px) {
    .page-title {
        margin: 0.1px 10px 0 -10px;
    }
}

/* Extra small devices (phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .page-title {
        margin: 0.1px 30px 0 -30px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .page-title {
        margin-left: 0.1px 130px 0 -130px;
    }

    .main-content {
        padding-top: 100px;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .page-title {
        margin-left: 3.5em;
    }

    .active::before {
        margin: -5px -15px;
    }

    .main-content {
        padding-left: 250px;
    }

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .page-title {
        margin-left: 2em;
    }
    
    .active::before {
        margin: -5px -53px;
    }

    .main-content {
        padding-left: 355px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .page-title {
        margin-left: -8em;
    }

    .active::before {
        margin: -5px -33px;
    }

    .main-content {
        padding-left: 340px;
    }
}

/* Extra^2 large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1280px) {
    .page-title {
        margin-left: -9em;
    }

    .main-content {
        padding-left: 360px;
    }
}

