/* Over all */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    /*===== Font and typography =====*/
    --body-font: 'Open Sans', sans-serif;
    --h1-font-size: 24px;
    --normal-font-size: 15px;
    --small-font-size: 13px;

    /* ======== Colors Main Page ======== */
    --body-color: #E4E9F7;
    --sidebar-color: #FFF;
    /*--primary-color: #695CFE;*/
    /*--primary-color: #9D4BFF;*/
    --primary-color: #F9A826;
    /*--primary-color-dark: #2e2870;*/
    /*--primary-color-dark: #23004D;*/
    --primary-color-dark: #a16c16;
    --primary-color-light: #F6F5FF;
    --toggle-color: #DDD;
    --text-color: #707070;

    /* ======== Transitions ======== */
    --trans-02: all 0.2s ease;
    --trans-03: all 0.3s ease;
    --trans-04: all 0.4s ease;
    --trans-05: all 0.5s ease;
}

body{
    height: 100vh;
    background-color: var(--body-color);
    transition: var(--trans-05);
}

#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgb(0 0 0 / 80%);
    top: 0;
    left: 0;
    z-index: 9999;
    text-align: center;
    display: none;
}

#loading button {
    width: 150px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
    background-color: #00bcd4;
    border-color: #00bcd4;
    pointer-events: none;
}

/* END Over all */

/* Extend bootstrap */
.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.btn-gold, .btn-gold:hover {
    background-color: #d6a76f;
    color: white;
}

.d-none{
    display: none;
}
/* END Extend bootstrap */
