@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Light.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Book.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Medium.otf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Bold.otf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham-Black.otf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

body {
    height: 100vh;
}

p,
h5 {
    margin-bottom: 0 !important;
}

* {
    font-family: Gotham !important;
}

a {
    text-decoration: none !important;
}

/* ---- Botones ---- */
.btn-primary {
    background-color: #81172C !important;
    border-color: #81172C !important;
}

.btn-secondary {
    background-color: #956036 !important;
    border-color: #956036 !important;
}

button.btn-primary,
button.btn-navbar,
button.btn-outline-primary,
button.btn-outline-secondary,
button.btn-link  {
    font-weight:500 !important;
}

.btn-primary:hover {
    background-color: #4D1E2A !important;
    border-color: #4D1E2A !important;
}

.btn-outline-primary {
    color: #81172C !important;
    border-color: #81172C !important;
}

.btn-outline-secondary {
    color: #956036 !important;
    border-color: #956036 !important;
}

.btn-outline-primary:hover,
.btn-outline-secondary:hover {
    background-color: #4D1E2A !important;
    color: white !important;
}

.btn:hover svg path {
    fill: white; 
}

.btn-link {
    color: #81172C !important;
    text-decoration: none !important;
}

.hide-item {
    display: none !important;
}

.opacity {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
}

.opacity p {
    color: var(--Body-text-medium, #484848);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 16.8px */
}

.rotate-image {
    transform: rotate(180deg);
}

.mobile-icon-close {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-icon-close {
        display: flex;
    }
}

.responsive-column {
    display: flex;
    flex-direction: row;
}

@media (max-width: 1024px) {
    .responsive-column {
        flex-direction: column;
    }
}

.nowrap {
    white-space: nowrap;
}

.fill-mobile-space {
    display: none;
}

@media (max-width: 1024px) {
    .fill-mobile-space {
        display: flex;
        flex-grow: 1;
    }

    .mobile-align-left {
        display: flex;
        justify-content: start;
    }

    .mobile-align-right {
        display: flex;
        justify-content: end;
    }
}

.fade-in-component {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out;
}

.fade-in-component.show {
    opacity: 1;
    visibility: visible;
}

.fade-out-component {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.mobile-only-flex {
    display: none !important;
}

@media (max-width: 1024px) {
    .mobile-hidden {
        display: none !important;
    }
    .mobile-only-flex {
        display: flex !important;
    }
}

.hidden-content {
    display: none !important;
    pointer-events: none !important;;
}

.reveal-hidden-content .hidden-content {
    display: unset !important;
    pointer-events: auto !important;
}

.back-to-form {
    color: #484848 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
}