/**
CSS QUE CONTROLA O EFEITO TRANSPARENTE DA APLICAÇÃO
**/
.glass-effect {
    opacity: 0.4;
    pointer-events: none;
}

.blur-effect {
    box-shadow: inset 0 0 0px rgba(255, 255, 255, .5);
    filter: blur(5px);
    border: 0;
    pointer-events: none;
}


/**
CSS QUE CONTROLA O LOADING DA APLICAÇÃO
**/
@keyframes lds-eclipse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes lds-eclipse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.lds-eclipse {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.lds-eclipse div {
    position: absolute;
    -webkit-animation: lds-eclipse 1s linear infinite;
    animation: lds-eclipse 1s linear infinite;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 1.5px 0 0 #0f0f0f;
}

.checkout-process-message {
    font-size: 25px;
    color: green;
    position: fixed;
    font-weight: bold;
    z-index: 1000;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    vertical-align: middle;
    top: 60%;
}

.checkout-process-message-mobile {
    font-size: 25px;
    color: green;
    position: fixed;
    font-weight: bold;
    z-index: 1000;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    vertical-align: middle;
    top: 60%;
    margin-left: -15px;
    padding: 5px;
}

/** CSS PARA PÁGINAS DINAMICAS **/
.content-dynamic-page {
    padding: 30px 0;
    margin-bottom: 30px;
}

.content-dynamic-page .menu ul {
    width: auto;
    padding: 0;
    background: #1072c4;
    border: 1px solid #0E65Af;
    border-radius: 5px;
    color: #FFF;
    list-style: none;
}

.content-dynamic-page .menu ul .top-title {
    padding: 10px;
    font-weight: bold;
    text-align: center;
    background: #2d96ee;
}

.content-dynamic-page .menu ul li {
    padding: 7px 15px;
    cursor: pointer;
    border-bottom: 1px solid #03569c;
}

.content-dynamic-page .menu ul li:hover {
    background: #03569c;
}

.content-dynamic-page .menu ul li.active {
    background: #03569c;
    font-weight: bold;
}

.content-dynamic-page .menu ul li:last-child {
    border-bottom: none;
}

.company-selected .company-badget {
    background-color: #203368 !important;
}

#import-cart-info {
    font-style: italic;
    margin: 10px;
}

#import-cart-warning {
    margin: 20px 10px;
}

#import-cart-warning .import-warning {
    color: #EE2D36;
    font-weight: 800;
}

.detail-produto>.detail-produto-topo>.left>.descricao {
    font-weight: 700;
}

.ficha-tecnica-row th {
    text-align: right;
    font-weight: 300;
    min-width: 100px;
    vertical-align: baseline;
}

.ficha-tecnica-row td {
    padding: 0 20px 0 10px;
    word-break: break-word;
}

/* Descomente abaixo para ativar o selo de desconto personalizado de imagem */
/*
.selo-desconto {
    background-color: transparent !important;
    left: 0 !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    top: -0px !important;
    right: auto !important;
}

.selo-desconto .selo-desconto-perc {
    display: none !important;
}

.selo-desconto .selo-desconto-img {
    display: block !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
}

.selo-desconto-img {
    z-index: 999;
}

.detail-produto .detail-produto-topo .center .image .selo-desconto {
    display: none !important;
}

img.selo-desconto-img-detail-produto {
    position: absolute;
    top: 0;
    z-index: 1000;
    left: 0;
}

.up-produto>.list-row .selo-desconto .selo-desconto-img {
    z-index: 999;
}
*/