:root {
    --cor-1: #E4153B;
    --cor-2: #7e7e7e;
    --cor-3: #ffffff;
    --cor-4: #3d3d3d;
    --cor-erro: #e83c2c;
    --cor-sucesso: #32a852;
}

@font-face {
    font-family: "NotoSans";
    src: url(../fonts/NotoSans-Regular.ttf);
}

@font-face {
    font-family: "NotoSansBold";
    src: url(../fonts/NotoSans-Bold.ttf);    
}

body{
    height: 100vh;
    font-family: 'NotoSans';    
}

h1, h2, h3, h4, h5{
    color: var(--cor-4);
}

label{
    color: var(--cor-4);
}

span:not(.fa){
    color: var(--cor-4);
}

small{
    color: var(--cor-2);
} 

.titulo-destaque{
    color: var(--cor-1) !important;
}

.texto-cor-default{
    color: var(--cor-4);
}

#view > .container, #view > .container-fluid{
    min-height: 100vh;
    background-color: var(--cor-3);
}

.form-control{
    color: var(--cor-4) !important;
}

.form-control-clear {
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    padding-top: 10px;
}

::-ms-clear {
    display: none;
}

@media (max-width: 991px){
    .form-group > label{
        font-size: 18px;
    }
}

body.locked{
    overflow: hidden;
}

::-webkit-input-placeholder { /* Chrome, Safari */
    text-transform: none;
}
  
:-moz-placeholder { /* Firefox 18- */
    text-transform: none; 
}
  
::-moz-placeholder {  /* Firefox 19+ */
    text-transform: none;
}
  
:-ms-input-placeholder {  /* IE */
    text-transform: none; 
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
  
@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

 .loader{  
    display: inline-block;
    margin: auto;
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid var(--cor-2);
    animation: spin;
    -webkit-animation: spin ;
    border-top-color: var(--cor-3) !important;   
 } 

.loader-xs{
    width: 30px;
    height: 30px;
    border: 3px solid var(--cor-4);
}

.logo-margin{
    margin: 2% 0;
}

@media (max-width: 768px) {
    .logo-margin{
        margin: 5% 0;
    }
}

.row-no-padding {
    margin-left: 0;
    margin-right: 0;
}

.row-no-padding > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
    
}

.column-divider-flexbox{
    width: 1px;
    margin: 5px;
    background: #bdbcbc;
}

.top-shadow{
    box-shadow: 0 2px 3px -2px var(--cor-2)
}

.bottom-shadow{
    box-shadow: 0 2px 3px -2px var(--cor-2)
}

.erro-text{
    color: var(--cor-erro);
}

.slicer {
    color: var(--cor-4);
    text-decoration: line-through;
    display: inline-block;
    padding: 0 4px 0 0;
}

.discount-price {
    font-weight: bold;
    color: var(--cor-4);
}

@media (max-width: 767px){
    .col-padding-xs{
        padding-top: 15px;
    }
}

.bottom-acoes-pagina{
    display: flex;
    align-items: center; 
    justify-content: space-around;
    flex-wrap: wrap-reverse;
    margin: 20px 0;
}

.texto-erro{
    color: var(--cor-erro);
}

.texto-sucesso{
    color: var(--cor-sucesso);
}

.img-logo-main{
    width: 300px;
}

@media (max-width: 767px){
    .img-logo-main{
        width: 300px;
        margin: 20% 0px 28% 0px;
    }
}

@media (max-width: 768px) {
    .centered-xs {
        text-align: center;
        padding-top: 25px;
    }
}

@media (max-width: 991px) {
    .centered-xs {
        text-align: center;
        padding-top: 25px;
    }
}
/* Set the width and height of the scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Style the track of the scrollbar */
::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

/* Style the thumb of the scrollbar */
::-webkit-scrollbar-thumb {
    background-color: #a6a5a5;
    border-radius: 10px;
}

/* Style the scrollbar when the user hovers over it */
::-webkit-scrollbar-thumb:hover {
    background-color: #767676;
}

.fa-shopping-cart[data-count]:after {
    position: absolute;
    /* right: -30%; */
    left: 10px;
    top: -40%;
    content: attr(data-count);
    font-size: 50%;
    padding: .2em;
    border-radius: 50px;
    line-height: 1em;
    color: black;
    background: white;
    text-align: center;
    min-width: 1.5em;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: bold;
    border: 1.5px solid;
}

@media (max-width: 768px) {
    .fa-shopping-cart[data-count]:after {
        top: 10%;
        padding: .1em;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .fa-shopping-cart[data-count]:after {
        top: 10%;
        padding: .1em;
    }
}