@font-face {
    font-family: "Gotham HTF";
    src: url("/font/gotham/Gotham-Light.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "Gotham HTF", sans-serif;
}

header {
    background: #1C2A57;
    min-height: 80px;
}

header nav #logo {
    height: 60px;
    max-height: 60px;
}

.navbar-nav {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.navbar-nav .nav-item {
    margin-left: 10px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-size: 12px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #9a9a9a !important;
}

footer {
    background: #F39A1F;
}

footer img {
    width: 190px;
}

footer .vertical-devider {
    width: 1px;
    height: 40px;
    background-color: #fff;
    margin: 0 20px;
}

.btn-orange {
    background: #f56e0c;
    color: #fff;
    padding: 5px 35px !important;
}

.btn-orange:hover {
    background: #e0630a;
    color: #fff;
}

.orang {
    background-color: #ff5e00 !important;
}

.px-0-important {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.py-0-important {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.p-0-important {
    padding: 0 !important;
}

.mx-0-important {
    margin: 0 !important;
    margin-right: 0 !important;
}

.my-0-important {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.m-0-important {
    margin: 0 !important;
}


.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: all;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

#container-loading {
    background: rgba(245, 110, 12, 0.8);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
}

#container-loading .loading-text {
    font-size: 20px;
}

.loading-overlay.hidden {
    display: none;
}

#container-loading .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.35em;
}

.min-width-20 {
    min-width: 20px !important;
}

.img-preview {
    max-width: 200px;
    display: none;
}

@media (max-width: 980px) {
    .navbar-expand-custom {
        flex-wrap: wrap !important;
    }

    .navbar-expand-custom .navbar-collapse {
        display: none !important;
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
    }

    .navbar-expand-custom .navbar-collapse.show {
        display: flex !important;
    }

    .navbar-expand-custom .navbar-toggler {
        display: block !important;
    }
}

@media (min-width: 981px) {
    .navbar-expand-custom .navbar-collapse {
        display: flex !important;
    }

    .navbar-expand-custom .navbar-toggler {
        display: none !important;
    }
}