@font-face {
    font-family: "etelka";
    src: url("../_assets/fonts/etelka/etelka-light.woff2");
    font-weight: 300;
}

@font-face {
    font-family: "etelka";
    src: url("../_assets/fonts/etelka/etelka-regular.woff2");
    font-weight: 400;
}

@font-face {
    font-family: "etelka";
    src: url("../_assets/fonts/etelka/etelka-bold.woff2");
    font-weight: 700;
}

@font-face {
    font-family: "etelka";
    src: url("../_assets/fonts/etelka/etelka-black.woff2");
    font-weight: 900;
}

body{
    width: 100%;
    margin: 0;
    font-size: 16px;
    font-family: 'etelka', sans-serif;
    /* letter-spacing: -.0375em; */
    line-height: 1.2;
    color: #707070;
    overflow-x: hidden;
}

a{
    color: #0bb1f0;
}

.transition{
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/* .container{
    width: 1460px;
    max-width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    position: relative;
    margin-left: auto;
    margin-right: auto;
} */

.c-dot{
    font-size: 200%;
    line-height: 0;
    color: #0bb1f0;
}

h1{
    font-weight: 400;
    font-size: 3rem;
    color: #000;
}

.btn1{
    /* color: #0bb1f0 !important;
    background: #001960;
    border: 2px solid #001960 !important; */
    color: #fff;
    background: #0bb1f0;
    border-color: #0bb1f0;
    border: 1px solid #0bb1f0!important;
    font-weight: 700;
}
.btn1:hover,
.btn1:focus,
.btn1:active{
    box-shadow: 0 0 5px #0bb1f0;
    color: #fff;
    background: #0bb1f0;
    /* background:#132a6c; */
}

.form-control {
    outline: none !important;
    box-shadow: none !important;
}

/* LOADER */
.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #0bb1f0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 15px;
    display: none;
    opacity: 0;
}
.loading {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: none;
    opacity: 0;
}
.loader.active,
.loading.active {
    display: flex;
    opacity: 1;
}

/* Alerta JS desativado */
.alerta-js{
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}
.alerta-js p{
    background: #001960;
    padding: 10px;
    color: #fff;
    margin: 0;
    text-align: center;
}


/* HEADER */
.header .nav {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .logo img{
    height: 3.5rem;
}
/* FOOTER */
footer {
    border-top: 1px solid #ccc;
    min-height: 5rem;
    padding: 10px 0;
    display: flex;
    align-items: center;
}
footer p{
    margin: 0;
    font-size: 0.9rem;
}
img.bandeira-cartao-rodape {
    max-width: 40px;
}

/* Cadastro cartão */
img.bandeira-cartao {
    max-width: 40px;
    position: absolute;
    right: 15px;
    bottom: 5px;
}
.img-credit-card {
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-credit-card img {
    width: 250px;
}
.erro-field{
    color: red;
    font-size: 12px;
}
.erro-field-card-number,
.erro-field-card-cvv,
.erro-field-card-date,
.erro-field-card-flag{
    display: none;
}

/* Permissão negada */
section.permission-denied {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
}