.no-expand {
    flex-wrap: nowrap;
    justify-content: flex-end
}

.btn-custom {
    color: #000;
    background-color: #d9a12c;
    border-color: #ffcb32;
}



.authheader .navbar {
    background-color: white;
    padding-top: 0;
    padding-bottom: 0;
}

.primary-color {
    color: #d9eee9;
}

.secondary-color {
    color: #d9a12c;
}

.black {
    color: black;
}

ul {
    list-style-type: none;
}

#loader {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #444444;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}