/* tela de splash */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #EF7D00;
    z-index: 200;
    color: white;
    text-align: center;
    line-height: 90vh;
}

.splash-container {
    width: 100%;
    position: absolute;
    top: 50%;
}

.splash-screen.display-none {
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    z-index: -10;
    color: white;
    text-align: center;
    line-height: 90vh;
    transition: all 0.5s;
}

.logotipo-splash {
    width: 130px;
    height: 40px;
    background-image: url('../img/logo.png');
    background-repeat: no-repeat;
    background-size: 100%;
    margin: auto; 
    margin-bottom: 15px;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-in {
    font-size: 12px;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

/* menu superior*/
.top {
    display: flex;
    align-items: center;
    width: 100%;
    height: 6vh;
    background-color: #EF7D00;
    justify-content: space-around;
    color: #FFF;
}

/* logo */
.logotipo {
    width: 130px;
    height: 40px;
    background-image: url('../img/logo.png');
    background-repeat: no-repeat;
    background-size: 100%;
}

/* container interno do menu superior */
.menu-container, .menu-container-sub {
    width: 300px;
    display: flex;
    justify-content: space-around;
}

/* botões */
.dropdown {
    display: none;
}

.bx-skip-previous, .bx-skip-next {
    font-size: 30px!important;
}

.botao-primeira-pagina {
    margin-right: 15px;
}

.botao-ultima-pagina {
    margin-left: 15px;
}

.botao-comprar {
    margin-left: 15px;
    font-size: 20px;
}

.botao-comprar:hover {    
    cursor: pointer;
    color: #d2e9e3;
}

.botao-menu {
    display: none;
}

.botao-indice {
    font-size: 22px;
    margin-top: 2px;
}

.botao-indice:hover {
    cursor: pointer;
    color: #d2e9e3;
}

.botao-indice-texto {
    font-size: 16px;
}

.botao-compartilhar {
    margin-top: 2px;
    margin-left: 85px;
    font-size: 19px;
}

.botao-compartilhar:hover {    
    cursor: pointer;
    color: #d2e9e3;
}

.botao-download {
    font-size: 20px;
}

.botao-download:hover {    
    cursor: pointer;
    color: #d2e9e3;
}

.icone-download {
    color: white;
}

.icone-download:hover {
    color: #d2e9e3;
}

.botao-anterior {
    font-size: 20px;
}

.botao-anterior:hover {
    cursor: pointer;
    color: #d2e9e3;
}

.botao-proximo {
    font-size: 20px;
}

.botao-proximo:hover {
    cursor: pointer;
    color: #d2e9e3;
}

.indicador-indice {
    font-size: 20px;
}

/* SIDEBAR - CARRINHO DE COMPRAS */
.titulo-carrinho {
    font-size: 18px;
    text-align: center;
    margin: 15px;
    color: grey;
}

.limpar-carrinho:hover {
    cursor: pointer;
    color: #EF7D00;
}

.lista-produtos {
    overflow-y: scroll;
    height: 70%;
}

.rodape-itens { 
    margin-left: 10px;
}

.rodape-carrinho {    
    width: 100%;
    height: 25%;
}

.rodape-carrinho p {
    font-weight: 600;
    margin: 0 15px;
}

.rodape-carrinho p span {
    font-weight: 400;
}

.rodape-carrinho p:first-child {
    margin-top: 25px;
}

.botao-enviar { 
    width: 319px;
    height: 48px;   
    position: sticky;
    bottom: 5px; 
    text-align: center;
    background-color: #25D366;
    border: 0;
    border-radius: 5px;
    color: #FFF;
    margin: 0px 10px 10px 10px;
    cursor: pointer;
}

.botao-enviar:hover {
    background-color: #075E54;
}

.botao-enviar:disabled {
    background-color: #25d3655b;
    color: hsla(0, 0%, 100%, 0.3);
    cursor: not-allowed;
}

.nome-produto {
    font-size: 18px;    
    font-weight: 700;
    color: #555555;
    margin-left: 15px;
    margin-bottom: 0px;
}

.preco-produto {
    font-size: 16px;
    color: #555555;
    margin-left: 15px;
    margin-bottom: 0px;
}

.hide {
    display: none;
}

.quantidade-produto {
    font-size: 15px;
    margin-left: 15px;
    margin-bottom: 3px;
    width: 50%;
}

.mais {
    font-size: 18px;
    margin-top: 3px;
    margin-bottom: 3px;
    margin-left: 15px;
    padding: 0px;   
    width: 20px;
    border: 2px solid #FFF;
    border-radius: 3px;  
    background-color:#FFF;
    color: silver;
    font-weight: bold;
}

.mais:hover {
    border: 2px solid silver;
    border-radius: 3px;    
}

.menos {
    font-size: 18px;
    margin-top: 3px;
    margin-bottom: 3px;
    margin-right: 15px;
    padding: 0px;        
    width: 20px;
    border: 2px solid #FFF;
    border-radius: 3px;
    background-color:#FFF;
    color: silver;
    font-weight: bold;
}

.menos:hover {
    border: 2px solid silver;
    border-radius: 3px;    
}

.remover {
    border: 0;
    background-color: transparent;
    align-items: center;
    padding: 0;
}

.bi-trash-fill {
    font-size: 18px;
    color: grey;
    margin-left: 10px;
}

.bi-trash-fill:hover {    
    cursor: pointer;
    color: #EF7D00;
}

/* input de quantidade de produtos */
.input-number-group {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
  
.input-number-group input[type=number]::-webkit-inner-spin-button,
.input-number-group input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}
  
.input-number-group .input-group-button {
    line-height: calc(80px/2 - 5px);
}
  
.input-number-group .input-number {
    width: 80px;
    padding: 0 12px;
    vertical-align: top;
    text-align: center;
    outline: none;
    display: block;
    margin: 0;
}
  
.input-number-group .input-number,
.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
    border: 1px solid #cacaca;
    height: 40px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0;
}
  
.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
    display: inline-block;
    width: 40px;
    background: #e6e6e6;
    color: #0a0a0a;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 400;
}
  
.input-number-group .input-number-decrement {
    margin-right: 0.3rem;
}
  
.input-number-group .input-number-increment {
    margin-left: 0.3rem;
}

/* tablet */
@media (max-width: 600px) {

    .top {
        display: flex;
        align-items: center;
        width: 100%;
        height: 8vh;
        background-color: #EF7D00;
        justify-content: space-evenly;
        color: #FFF;
    }

    .logotipo {
        width: 110px;
        background-image: url('../img/logo.png');
        background-repeat: no-repeat;
        background-size: 100%;
    }

    .menu-container-sub {
        display: none;
    }
    
    .botao-compartilhar {
        display: none;
    }

    /* botões */  
    .bx-skip-previous, .bx-skip-next {
        display: none;
    }

    .botao-comprar {
        margin-left: 15px;
        font-size: 19px;
    }

    .botao-menu {
        display:inline;
        margin-left: 15px;
        font-size: 19px;
    }  

    /* Botão de dropdown */
    .dropdown {
        display: block;
    }

    .dropdown .dropbtn {
        font-size: 19px;
        border: none;
        outline: none;
        color: white;    
        background-color: inherit;
        font-family: inherit;
    }
    
    .dropdown-content {  
        border-radius: 0px 0px 10px 10px;  
        display: none;
        position: absolute;
        right: 0px;
        top: 6vh;
        background-color: #EF7D00;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 100;
        padding: 6px;
    }

    /* Links dentro do dropdown */
    .dropdown-content a {    
        font-size: 12px;
        float: none;
        color: #D4D4D4;    
        padding: 8px 12px;
        text-decoration: none;
        display: block;
        text-align: left;
        border-radius: 10px;
    }

    .dropdown-content i {
        font-size: 14px;
        margin-left: 2px;
    }

    .dropdown-content a:hover {    
        color: #29A9EB;
        background-color: #1A1A1A;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
    
}

@media (max-height: 640px) {

    .lista-produtos {
        overflow-y: scroll;
        height: 63%;
    }    

}

/* tablet */
@media (min-width: 720px) {
        
}

/* desktop */
@media (min-width: 1024px) {
    
}