body {
    /* SF Pro font stack - uses system fonts on Apple devices, Poppins as fallback */
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "SF Pro Display", "Poppins", sans-serif;
    /* background-color: #eefff4; */
    /* background-color: #e7fdff; */
    background-color: #eefeff;
}

/* ___ customize style ___ */
.cu-secondary-50 {
    background-color: #eefff4;
}

.cu-secondary-50-text {
    color: #eefff4;
}

.light-green-gradient {
    background: linear-gradient(180deg, #01c82f, #00c87a);
}

.indent-text {
    padding-left: 16px;
}

.icon-svg {
    width: 24px;
    height: 24px;
}

.icon-text {
    position: relative;
    padding-left: 24px;
}

.icon-text .fa-fw {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.main-logo {
    /* width: ; */
    height: auto;
}

.text {
    font-size: 16px;
}
/* ___ customize style end ___ */

/* ___ bootstrap container ___ */
@media (min-width: 320px) {
    .text {
        font-size: 12px;
    }
}

@media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 540px !important;
    }

    #sidebarMenu {
        max-width: 270px !important;
    }
}
@media (min-width: 768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 720px !important;
    }
}
@media (min-width: 992px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 870px !important;
    }

    .content {
        margin-left: 260px;
    }

    .text {
        font-size: 16px;
    }
}
@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 940px !important;
    }
}
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px !important;
    }
}
/* ___ bootstrap container end ___ */

/* ___ bootstrap btn ___ */
.btn {
    border-width: 2px;
    box-sizing: border-box;
    padding: 6px 14px;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.btn:focus {
    box-shadow: none !important;
    outline: none;
}

.btn:active:focus {
    box-shadow: none;
    outline: none;
}

/* btn-primary */
.btn.btn-primary {
    background-color: #01c82f;
    border-color: #01c82f;
    padding: 8px 12px;
    color: white;
    box-shadow: none;
}

.btn.btn-outline-primary.show {
    background-color: #01c82f;
    border-color: #01c82f;
    padding: 8px 12px;
    color: white;
}

.btn.btn-outline-primary {
    background-color: transparent;
    border: 2px solid #01c82f;
    color: #01c82f;
    padding: 8px 12px;
}

/* .btn.btn-secondary:hover {
    background-color: transparent;
    border-color: #01c82f;
    color: #01c82f;
} */

.btn.btn-primary:hover {
    background-color: #0be73f;
    border-color: #0be73f;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 6px 0px;
}

.btn.btn-outline-primary:hover {
    background-color: #01c82f;
    border-color: #01c82f;
    color: white;
}
/* btn-primary end */

/* btn-secondary */
.btn.btn-secondary {
    background-color: #f6ba10;
    border-color: #f6ba10;
    padding: 8px 12px;
    color: white;
    box-shadow: none;
}

/* .btn.btn-secondary:hover {
    background-color: transparent;
    border-color: #f6ba10;
    color: #f6ba10;
} */

.btn.btn-secondary:hover {
    background-color: #fbc83c;
    border-color: #fbc83c;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 6px 0px;
}

/* btn-secondary end */

.btn-hv-text-space {
    transition: 0.4s;
}

.btn-hv-text-space:hover {
    letter-spacing: 2px;
}

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

/* ___ bootstrap btn end ___ */

/* ___ bootstrap card ___ */
.card {
    border-radius: 12px;
}
/* ___ bootstrap card end ___ */

/* ___ Wave Svg ___ */
.waves {
    height: 150px;
    width: 100%;
}

.wave-top {
    top: -110px;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: -1;
}

.wave-bottom {
    height: 100px;
    width: 100%;
    bottom: -50px;
    position: absolute;
    left: 0;
    z-index: -1;
}

.wave-bottom .waves {
    transform: rotate(180deg);
}

.waves > .moving-waves > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.waves > .moving-waves > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.waves > .moving-waves > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.waves > .moving-waves > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.waves > .moving-waves > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

.waves > .moving-waves > use:nth-child(5) {
    animation-delay: -6s;
    animation-duration: 25s;
}

.waves > .moving-waves > use:nth-child(6) {
    animation-delay: -7s;
    animation-duration: 30s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media (max-width: 991px) {
    .waves {
        height: 80px;
        margin-bottom: -120px;
    }
}
/* ___ Wave Svg End ___ */

@media (max-width: 991px) {
    .waves {
        height: 80px;
        margin-bottom: -120px;
    }
}
/* ___ Wave Svg End ___ */

.form-control:focus,
.form-select:focus {
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}
.form-check-input:checked {
    border-color: #fff;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #01c82f, #00c87a);
    border-radius: 2px;
}
