/*
-------------------------------------
Theme Design
-------------------------------------
theme  - #db631dbe
background: #ededf5;
border-radius - 10px
font-size - 15px
box-shadow - 0 3px 8px rgba(0, 0, 0, 0.15);
 */

:root {
    --red: #EA5E5E;
    --yellow: #F7BA3E;
    --blue: #56B3B4;
    --purple: #BF85BF;
    --background: #1A2B34;
    --cyan: #4c9495;
    --gray: #334651;
}

body {
    background: #ededf5;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    /* overflow-x: hidden; */
}

a {
    text-decoration: none !important;
    color: #333 !important;
}

a:hover {
    color: #db631dbe !important;
    text-decoration: none !important;
}

.card {
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    border: none;
}

.invalid-feedback {
    display: block;
}

.btn {
    padding: 10px 25px;
}

.btn-theme {
    background: #db631dbe !important;
    color: #fff !important;
}

.btn-theme:hover {
    background: #db631dbe !important;
    color: #fff !important;
}

.swa12-popup {
    border-radius: 10px !important;
}

.swal2-title {
    font-size: 18px !important;
}

.swa12-styled {
    border-radius: 10px !important;
    padding: 10px 25px !important;
}

/* -------------Auth Form--------------- */
.auth-from {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 10px;
}

.auth-from a {
    color: #333;
    text-decoration: none;
}

.auth-from a:hover {
    color: #db631dbe;
}

/* Bottom Menu */

.bottom-menu {
    background: #fff;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 5;
}

.bottom-menu a {
    text-decoration: none;
    color: #333;
}

.bottom-menu i {
    margin-top: 12px;
    font-size: 20px;
}

.bottom-menu p {
    margin-bottom: 12px;
}

.bottom-menu a:hover i {
    color: #db631dbe;
    transition: 0.3s;
}

.bottom-menu a:hover p {
    color: #db631dbe;
    transition: 0.3s;
}

/* ---------header menu-------- */
.header-menu {
    background: #fff;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    z-index: 999;
}

.header-menu a {
    text-decoration: none;
    color: #333;
    display: block;
}

.header-menu i {
    font-size: 20px;
}

.header-menu h3 {
    font-size: 22px;
    margin-bottom: 0;
}

.header-menu a:hover i {
    color: #db631dbe;
    transition: 0.3s;
}

.bottom-menu a:hover p {
    color: #db631dbe;
    transition: 0.3s;
}

/* -----------Main Content------------- */

.content {
    margin-top: 75px;
    margin-bottom: 75px;
}

/* ------------Account-------------- */

.profile {
    text-align: center;
}

.profile img {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    background: #fff;
}

.account .card {
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.9);
}

.update-password img {
    width: 200px;
}

/* ----------Scan Tab----------- */
.scan-tab {
    width: 60px;
    height: 60px;
    background: #ededf5;
    border-radius: 100%;
    position: fixed;
    bottom: 40px;
    right: 0;
    left: 0;
    margin: 0 auto;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.scan-tab .inside {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: glow 5s infinite;
}

.scan-tab .inside i {
    margin: 0;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 -10px #db631dbe;
    }
    40% {
        box-shadow: 0 0 15px #db631dbe;
    }
    60% {
        box-shadow: 0 0 15px #db631dbe;
    }
    100% {
        box-shadow: 0 0 -10px #db631dbe;
    }
}

/* ------Wallet------ */
.wallet .my-card {
    background: var(--cyan);
    color: #fff;
}

.wallet .my-card span {
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 5px;
    color: #ededf5;
}

.wallet .my-card h4 {
    font-size: 22px;
    font-weight: 900;
}

.wallet .my-card h5 {
    font-size: 18px;
    font-weight: 900;
}

.wallet .my-card p {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
}

.shortcut-box img {
    width: 25px;
    height: 25px;
    margin-right: 8px;
}

.transcation-detail img {
    width: 60px;
}
