html {
  font-size: 14px;
}

/* Avenir Next */
@font-face {
    font-family: "Avenir Next";
    src: url("/fonts/Avenir%20Next.ttc") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* Avenir */
@font-face {
    font-family: "Avenir";
    src: url("/fonts/Avenir.ttc") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* Gotham Bold */
@font-face {
    font-family: "Gotham Bold";
    src: url("/fonts/GothamHTF-Bold.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
}

/* Gotham Medium */
@font-face {
    font-family: "Gotham Medium";
    src: url("/fonts/GothamHTF-Medium.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

/* Ostrich Regular */
@font-face {
    font-family: "Ostrich Regular";
    src: url("/fonts/ostrich-regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: 'Avenir Next', sans-serif;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}



.fundoo-yellow-text {
    color: #ffb400;
}



.yellow-button {
    background: #ffb400;
    color: #000;
    font-weight: 700;
}




/* Custom dropdown container */
.custom-selectWrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

    /* Remove default browser appearance */
    .custom-selectWrapper select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        font-size: 1rem;
        width: 100%;
        cursor: pointer;
    }

        /* Hide default dropdown arrow for IE */
        .custom-selectWrapper select::-ms-expand {
            display: none;
        }

    /* Add custom Bootstrap icon */
    .custom-selectWrapper::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0.4rem;
        transform: translateY(-50%);
        font-family: 'bootstrap-icons';
        content: '\F282'; /* Unicode for the "chevron-down" icon */
        font-size: 0.8rem;
        color: #000;
        pointer-events: none;
    }

    /* On focus */
    .custom-selectWrapper select:focus {
        outline: none;
        border-color: #fdd835;
    }

.modalHidden {
display:none;
}






