@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');

body,
p,
a,
li,
div,
label,
input,
textarea,
select {
    font-family: "Archivo", sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cabin", sans-serif !important;
    ;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.btn-return-panel:hover {
    background-color: #941A17 !important;
    color: #fff !important;
}

.btn-loading-pulse {
    opacity: 0.7;
    cursor: not-allowed;
    animation: pulse 1.5s infinite;
    background-color: #941A17 !important;
    color: #fff !important;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 0.9;
    }
}