:root {
    --main-gray: #c6c9cb;
    --main-blue: #344955;
    --main-yellow: #f9aa33;
    --main-red: #8B0000;
    --main-green: #689a3b;
    --font-oswald: 'Oswald', sans-serif;
    --font-quicksand: 'Quicksand', sans-serif;
}

* {
    font-family: var(--font-quicksand);
}

/* Useful links: */
/* filter: https://codepen.io/sosuke/pen/Pjoqqp */
/* box-shadow: https://getcssscan.com/css-box-shadow-examples */

/* Buttons */
.BASE-btn {
    border: none;
}

.BASE-btn-type1 {
    background-color: var(--main-yellow) !important;
    width: 100px !important;
}

.BASE-btn-type2 {
    background-color: var(--main-blue) !important;
    width: 100px !important;
}

.BASE-btn-type3 {
    background-color: var(--main-red) !important;
    width: 100px !important;
}

.BASE-btn-type4 {
    background-color: var(--main-gray) !important;
    width: 100px !important;
}

.BASE-btn-small-gray {
    display: inline-block;
    width: 120px;
    height: 33px;
    padding: 5px;
    color: rgb(61, 61, 61);
    background-color: var(--main-gray);
    border: 1px solid #b7bbbd;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

@media (hover: hover) {
    .BASE-btn:hover {
        box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    }

    .BASE-btn-small-gray:hover {
        color: black;
    }
}

/* Navbar */
.BASE-nav {
    background-color: white !important;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    padding-left: 10px;
    padding-right: 10px;
}

/* Modal */
.BASE-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #50575bce;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: initial !important
}

.BASE-modal {
    padding: 25px;
    border-radius: 5px;
    background-color: white;
    overflow-y: auto;
}

.BASE-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #b7bbbd;
    padding: 0 0 5px 0;
    margin: 0 0 15px 0;
}

.BASE-modal-header>* {
    padding: 0;
    margin: 0;
}

.BASE-modal-icon-close {
    cursor: pointer;
    height: 20px;
    display: flex;
    align-items: center;
    font-size: 1.5em;
    color: var(--main-blue);
}

.BASE-modal-icon-close>* {
    font-size: 1.2em;
    color: var(--main-blue);
}

.BASE-modal-label {
    padding-bottom: 5px;
}

.BASE-modal-btn-group {
    display: flex;
    gap: 15px;
}

/* HIDE Modals */
.BASE-hide {
    display: none;
}

/* Adapting Bootstrap input focus */
.form-control:focus,
.form-select:focus {
    border: none;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

/* Adapting Bootstrap switch focus and checked */
.form-check-input {
    box-shadow: rgba(180, 189, 195, 0.3) 0px 1px 2px 0px, rgba(180,
            189,
            195, 0.15) 0px 2px 6px 2px;
}

.form-switch .form-check-input:focus {
    border-color: rgba(0, 0, 0, 0.25);
    outline: 0;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.form-switch .form-check-input:checked {
    background-color: var(--main-yellow);
    border-color: var(--main-yellow);
    border: none;
}

/* Adapting Bootstrap radio btns */
.form-check .form-check-input:focus {
    border-color: rgba(0, 0, 0, 0.25);
    outline: 0;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.form-check .form-check-input:checked {
    background-color: var(--main-yellow);
    border-color: var(--main-yellow);
    border: none;
}