body {
    background: #ECECF1;
    font-size: 15px;
}
.btn-close {
    --bs-btn-close-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2302AA9E'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E");
}
a {
    color: unset;
}
.pin{
    padding: 1.5rem 0.5rem 0 0.5rem;
}
hr, .theme-color{
    color: #02AA9E;
}
.card {
    border-radius: 8px !important;
}
.waves-effect {
    overflow: initial;
}
.noti-icon .badge {
    position: absolute;
    top: 12px;
    right: -10px;
}
.bg-theme{
    background-color: #333547;
}

/* Header Menu*/
.header-menu {
    background: #333547;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.header-menu img {
    margin-top: 12px;
}

.header-menu i {
    display: inline-block;
    margin-top: 15px;
    color: white;
    font-size: 24px;
}

.header-menu h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: white;
}

.header-menu a {
    text-decoration: none;
    color: #333;
}
.header-menu h3{
    color: #02AA9E;
}
.header-menu a:hover i,
.header-menu a:hover h3 {
    color: #02AA9E;
    transition: .3s;
}

/* Bottom Menu*/
.bottom-menu {
    background: #333547;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.bottom-menu i {
    display: inline-block;
    margin-top: 12px;
    color: white;
    font-size: 24px;
}

.bottom-menu p {
    margin-bottom: 12px;
    font-size: 12px;
    color: white;
}

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

.bottom-menu a:hover i,
.bottom-menu a:hover p {
    color: #02AA9E;
    transition: .3s;
}

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

/* Account */
.btn-theme {
    background-color: #02AA9E;
    color: #fff;
    border-color: #02AA9E;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.home-page i {
    font-size: 20px;
}

.account-pages a:hover,
.home-page a:hover {
    color: #02AA9E;
}

.action-icon {
    margin-right: 10px;
}

.btn-theme:hover,
.btn-theme:focus,
.btn-theme:active {
    background-color: #07625b;
    border-color: #07625b;
    color: #fff;
}

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

}

.scan-tab .inside {
    height: 52px;
    width: 52px;
    background: #333547;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(2, 170, 158, 0.3);
    }

    40% {
        transform: scale(1.15);
        box-shadow: 0 0 20px rgba(2, 170, 158, 0.6);
    }

    60% {
        transform: scale(1.1);
        box-shadow: 0 0 10px rgba(2, 170, 158, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgba(2, 170, 158, 0.3);
    }
}

.scan-tab .inside i {
    margin: 0 !important;

}

/* home */
.home-page .scan {
    font-size: 25px;
}

.home-page .scan+span {
    margin-left: 10px;
    font-size: 14px;

}