:root {
    --color-stickerin: #14B8A6;
}

body {
    padding: 0;
    margin: 0;
    /* background-color: #ece8e8; */
    background-color: #FAFAFA;
    font-family: 'Inter' !important;
}

.bg-stickerin {
    background-color: var(--color-stickerin);
}

.fc-stickerin {
    color: var(--color-stickerin);
}

.fs-7 {
    font-size: 14px;
}

.fs-8 {
    font-size: 12px;
}

.border-stickerin {
    border: 1px solid var(--color-stickerin);
    border-radius: 15px;
}

.border-card-stickerin {
    border: none;
    border-radius: 15px;
}

.border-card-footer-top-stickerin {
    border: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.border-card-footer-bottom-stickerin {
    border: none;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.btn-stickerin {
    background-color: var(--color-stickerin);
    color: white;
    font-size: 14px;
    border: 2px solid var(--color-stickerin);
    border-radius: 20px;
    padding: 8px 25px;
}

.btn-outline-stickerin {
    background-color: transparent;
    color: var(--color-stickerin);
    font-size: 14px;
    border: 2px solid var(--color-stickerin);
    border-radius: 20px;
    padding: 8px 25px;
}      

a.nostyle:link {
    text-decoration: inherit;
    color: inherit;
    /* cursor: auto; */
}

a.nostyle:visited {
    text-decoration: inherit;
    color: inherit;
    /* cursor: auto; */
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.26);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in;
}

.active-overlay {
    opacity: 1;
    visibility: visible;
    /* transition: opacity 0.2s ease-out; */
}

.navbar-nav .nav-link.active {
    color: var(--color-stickerin) !important;
}

.dropdown-item.active, .dropdown-item:active {
    color: white;
    text-decoration: none;
    background-color: var(--color-stickerin);
}

/* ============== style per screen size ================== */
.bn46 {
    width: 140px;
    height: 40px;
}

.space-title-top {
    margin-top: 30px;
}

.title-top {
    font-size: 30px;
}

.subtitle-top {
    font-size: 18px;
}

.title-middle {
    font-size: 24px;
}

.subtitle-middle {
    font-size: 16px;
}

.title-bottom {
    font-size: 18px;
}

.subtitle-bottom {
    font-size: 14px;
}

.title-custom {
    font-size: 24px;
}

.subtitle-custom {
    font-size: 16px;
}

.line-decoration-magic {
    bottom: -10px;
    right: -5px;
    width: 105px;
}

.width-100 {
    width: 100%;
}

/* lg bootstrap */
@media (min-width: 992px) {
    .bn46 {
        width: 150px;
        height: 50px;
    }

    .space-title-top {
        margin-top: 100px;
    }

    .title-top {
        font-size: 40px;
    }

    .subtitle-top {
        font-size: 20px;
    }

    .title-middle {
        font-size: 32px;
    }

    .subtitle-middle {
        font-size: 18px;
    }

    .title-bottom {
        font-size: 20px;
    }

    .subtitle-bottom {
        font-size: 16px;
    }

    .title-custom {
        font-size: 40px;
    }

    .subtitle-custom {
        font-size: 20px;
    }

    .line-decoration-magic {
        bottom: -10px;
        right: -5px;
        width: 145px;
    }

    .width-100 {
        width: auto;
    }
}