:root {
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    font-weight: 400;
    color-scheme: light dark;
    color: #333333;
    background-color: #ffffff;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1rem;
}

::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: transparent;
    opacity: 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #27197b;
    border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #140d3e;
}

h1.primary,
h2.primary,
h3.primary,
h4.primary,
h5.primary,
h6.primary {
    color: #27197b;
}
h1.regular,
h2.regular,
h3.regular,
h4.regular,
h5.regular,
h6.regular {
    font-weight: 400;
}
h1.light,
h2.light,
h3.light,
h4.light,
h5.light,
h6.light {
    font-weight: 300;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.70rem 1rem;
    border-radius: 4px;
    border: none;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15), 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
}
.btn-primary {
    color: #ffffff;
    background-color: #27197b;
    transition: all 300ms ease-in-out;
}
.btn-primary:hover {
    cursor: pointer;
    background-color: #1b1256;
    box-shadow: 0px 8px 16px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
    transition: all 300ms ease-in-out;
}
.btn-secondary {
    color: #ffffff;
    background-color: #e68200;
    transition: all 300ms ease-in-out;
}
.btn-secondary:hover {
    cursor: pointer;
    background-color: #804800;
    box-shadow: 0px 8px 16px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
    transition: all 300ms ease-in-out;
}
.btn-gray {
    color: #ffffff;
    background-color: #666f99;
    transition: all 300ms ease-in-out;
}
.btn-gray:hover {
    cursor: pointer;
    background-color: #33384d;
    box-shadow: 0px 8px 16px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
    transition: all 300ms ease-in-out;
}
.btn-white {
    color: #333333;
    background-color: #ffffff;
    box-shadow: none;
    transition: all 300ms ease-in-out;
}
.btn-white:hover {
    cursor: pointer;
    background-color: #33384d;
    box-shadow: none;
    transition: all 300ms ease-in-out;
}
.btn--rounded {
    width: 3rem;
    height: 3rem;
    padding: 0;
    border-radius: 1000px;
}

.alert {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    align-items: center;
}
.alert--icon p {
    margin: 0;
}

html {
    max-width: 100vw;
    height: 100vh;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: transparent;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, rgb(255, 255, 255) 25%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
}
body .body__background {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    -o-object-fit: cover;
    object-fit: cover;
}

header,
main,
footer {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

header {
    z-index: 1;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
}
header section {
    padding: 1rem 0;
    justify-content: space-between;
}
header #headerLogoContainer .logo-link {
    display: flex;
}
header #headerLogoContainer img {
    width: 120px;
    height: auto;
}
header #redesContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
header #redesContainer a {
    text-decoration: none;
    color: #333333;
    transition: all 300ms ease-in-out;
    border-radius: 4px;
    padding: 0.25rem;
    display: flex;
    gap: 0.25rem;
}

header #redesContainer p{
    margin: 0;
}

header #redesContainer a:hover {
    background-color: #e9e8f2;
    transition: all 300ms ease-in-out;
}

main {
    display: flex;
    justify-content: center;
    flex: 1 0 0%;
    overflow: auto;
}
main > section {
    margin: 1rem 0 !important;
    height: -moz-fit-content;
    height: fit-content;
}
main #welcome {
    display: flex;
    align-items: center;
    flex: 1 0 100%;
    min-height: -webkit-fill-available;
}
main #welcome > div {
    color: #27197b;
    margin: 1rem;
    padding: 1rem;
}
main #welcome > div h1,
main #welcome > div h2 {
    margin: 0;
}
main #welcome > div .ctaButtons {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}
main #consultaTramite {
    height: -moz-fit-content;
    height: fit-content;
}
main .tramiteContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
}
main .tramiteContainer .row {
    width: 100%;
}
main .tramiteContainer__title {
    margin-bottom: 1rem;
}
main .tramiteContainer__title h5 + p {
    color: #666f99;
    margin: 0;
}
main .tramiteContainer__form {
    justify-content: space-between;
}
main .tramiteContainer__inputForm {
    margin-bottom: 1rem;
}
main .tramiteContainer__inputForm .form-select {
    cursor: pointer;
}
main .tramiteContainer__inputForm .input-group button {
    padding: 0.25rem 0.5rem;
}
main .tramiteContainer__inputForm .input-group img {
    width: 1rem;
    height: auto;
}
main .tramiteContainer__button {
    margin-top: 2rem;
}
main .tramiteContainer__message {
    box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15), 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
}
main .tramiteContainer__message--success {
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: -1rem;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: #ffffff;
    background-color: #008700;
    padding: 0.5rem;
    margin-bottom: 1rem;
}
main .tramiteContainer__message--success h5 {
    margin: 0;
}
main .tramiteContainer__upload {
    padding: 0 1rem;
}
main .tramiteContainer__upload > .col-12 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 300px;
    border: 0.25rem dashed #27197b;
    border-radius: 4px;
    padding: 1rem;
    cursor: pointer;
}
main .tramiteContainer__upload > .col-12 span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 4rem;
    background-color: #ff9000;
    color: #333333;
    border-radius: 1000px;
    transition: all 300ms ease-in-out;
}
main .tramiteContainer__upload > .col-12 p {
    font-weight: 600;
    text-align: center;
    margin: 0;
}
main .tramiteContainer__upload > .col-12:hover {
    background-color: #e9e8f2;
}
main .tramiteContainer__upload > .col-12:hover span {
    background-color: #804800;
    color: #ffffff;
    transition: all 300ms ease-in-out;
}
main .tramiteContainer__actions {
    justify-content: space-between;
}
main .tramiteContainer__emptyState {
    padding: 1rem;
    text-align: center;
}
main .tramiteContainer__emptyState > .col-12 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 250px;
    padding: 1rem;
    background-color: #f0f1f5;
    border-radius: 4px;
}
main .tramiteContainer__emptyState > .col-12 span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 4rem;
    background-color: #b3b7cc;
    color: #333333;
    border-radius: 1000px;
    transition: all 300ms ease-in-out;
}
main .tramiteContainer__emptyState > .col-12 p {
    color: #666f99;
    text-align: center;
    margin: 0;
}
main .tramiteContainer__readOnly {
    padding: 1rem;
}
main .tramiteContainer__readOnly label {
    color: #666f99;
}
main .tramiteContainer__readOnly p {
    font-weight: 600;
    margin: 0;
}
main .tramiteContainer__readOnly--status p {
    padding: 0 0.5rem;
    margin-left: -0.5rem;
    border-radius: 4px;
    background-color: #e9e8f2;
    color: #27197b;
}

footer {
    background-color: #27197b;
}
footer section {
    justify-content: center;

}
footer #footerLogoContainer {
    display: flex;
    align-items: flex-end;
    height: 50px;
}
footer #footerLogoContainer picture img {
    width: 200px;
    height: auto;
}
footer #poweredByContainer {
    display: flex;
    align-items: center;
    display: none;
}
footer #poweredByContainer a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 1rem;
}
footer #poweredByContainer a p {
    color: #ffffff;
    margin: 0;
}
footer #poweredByContainer a img {
    width: 100%;
    max-width: 120px;
    height: auto;
}
.error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
}

.form-custom {
    border-radius: 4px;
    border: 1px;
    margin-bottom: 2rem;
}

.form-tel{
    font-size: 0.8rem;
}

.nameHelp {
    font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
    body {
        background: linear-gradient(90deg, rgb(255, 255, 255) 25%, rgba(255, 255, 255, 0.8) 100%);
    }
    header section {
        gap: 1rem;
        justify-content: center;
        padding-bottom: 0.5rem;
    }
    header #headerLogoContainer img {
        width: 120px;
        height: auto;
    }
    footer #footerLogoContainer {
        height: 40px;
        z-index: 200;
    }
    footer #footerLogoContainer picture img {
        width: 150px;
    }
    footer #poweredByContainer a p {
        font-size: 0.75rem;
    }
    #primerPaso,
    #segundoPaso,
    #consultaTramite {
        margin-bottom: 2rem !important;
    }
    #welcome {
        text-align: center;
        height: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }
    #welcome > div {
        margin: 0 !important;
        padding: 0 !important;
    }
    #welcome .ctaButtons {
        flex-direction: column;
    }
    #welcome .ctaButtons .btn {
        width: 100%;
    }
    .tramiteContainer__actions .btn,
    .tramiteContainer__button .btn,
    .tramiteContainer .ctaButtons .btn {
        width: 100%;
    }

    header #redesContainer a p{
        display: none !important;
    }
    }

} /*# sourceMappingURL=style.css.map */
