@font-face {
    font-family: Estedad;
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/estedad/Estedad_Regular.woff2") format("woff2"), url("../fonts/estedad/Estedad_Regular.ttf") format("truetype");
}

@font-face {
    font-family: Estedad;
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/estedad/Estedad_Medium.woff2") format("woff2"), url("../fonts/estedad/Estedad_Medium.ttf") format("truetype");
}

@font-face {
    font-family: Estedad;
    font-style: normal;
    font-weight: 600;
    src: url("../fonts/estedad/Estedad_SemiBold.woff2") format("woff2"), url("../fonts/estedad/Estedad_SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: Estedad;
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/estedad/Estedad_Bold.woff2") format("woff2"), url("../fonts/estedad/Estedad_Bold.ttf") format("truetype");
}

body {
    font-family: Estedad, sans-serif;
}

.loader {
    border: 2px solid #cccccc;
    border-radius: 50%;
    border-top: 3px solid #2EEEE1;
    width: 22px;
    height: 22px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
