:root {
    /* cores dinamizadas que serão personalizáveis */
    --cor-fundo-principal: #fee914;
    --cor-fonte-principal: #0e0e0e;
    --cor-fonte-principal-layout: #0e0e0e;

    /* cores padrão do site */
    --fonte: #343f55;
    --cor-fonte-secundaria-layout: #FFFFFF;
    --fonte-clara: #616877;
    --fundo: #f6f6f6;
    --fundo-alternativo: #000000;
    --laranja: #fc9004;
}

::-moz-selection { /* Code for Firefox */
    color: var(--cor-fonte-principal);
    background: var(--cor-fundo-principal);
}

::selection {
    color: var(--cor-fonte-principal);
    background: var(--cor-fundo-principal);
}

@font-face {
    font-family: 'josefin';
    src: url('../fonts/JosefinSans-Regular.ttf');
}
@font-face {
    font-family: 'Arial';
    src: url('../fonts/ARLRDBD.TTF');
}
@font-face {
    font-family: 'Human';
    src: url('../fonts/Humanst521 BT Roman.ttf');
}


* { margin: 0px; padding: 0px; }
html, body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    font-family: 'josefin';
}

/* barra superior */
.barra-superior {
    position: relative;
    width: 100%;
    height: 50px;
    background-color: var(--cor-fundo-principal);
}
.conteudo-barra-superior {
    position: relative;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--cor-fonte-principal-layout);
}
.barra-superior p {
    margin: 0px;
    font-weight: 700;
    font-size: 18px;
    text-align: right;
    cursor: default;
}

/* menu principal */
.menu-principal {
    position: relative;
    width: 100%;
    height: 140px;
    background-color: var(--fundo-alternativo);
    border-bottom: 5px solid var(--cor-fundo-principal)
}
.conteudo-menu-principal {
    position: relative;
    width: 100%;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}
.menu-principal ul {
    position: relative;
    width: 100%;
    margin: 0px;
    text-align: right;
}
.menu-principal ul li {
    display: inline-flex;
    padding: 0px 20px;
    height: 140px;
    flex-direction: column;
    justify-content: center;
    margin: 0px;
}
.menu-principal ul li:last-child {
    padding-right: 0px;
}
.menu-principal ul li a {
    font-weight: 500;
    font-size: 19px;
    color: var(--cor-fonte-secundaria-layout);
}
.menu-principal ul li a:hover {
    text-decoration: none;
    color: var(--cor-fundo-principal);
    transition: .3s;
}
.menu-principal ul .separador {
    padding: 0px 10px;
}
.menu-principal ul .login {
    margin: 0px;
    padding: 0px;
}
.menu-principal ul .login a {
    background-color: var(--cor-fundo-principal);
    color: var(--cor-fonte-principal-layout);
    padding: 15px 25px;
    border-radius: 4px;
    font-weight: 600;
}
.menu-principal ul .login a p {
    margin: 0px;
}
.menu-principal ul .login a p i {
    padding-right: 10px;
}
.menu-principal ul .login a:hover {
    text-decoration: none;
    color: var(--cor-fonte-principal-layout);
}
.conteudo-logo-menu {
    position: relative;
    width: 100%;
    margin: 0px auto;
    background-color: var(--cor-fundo-principal);
    top: -50px;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    -webkit-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.41);
    -moz-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.41);
    box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.41);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    z-index: 10;
}
.conteudo-logo-menu img {
    width: 70%;
    transition: all .3s;
}
.conteudo-logo-menu img:hover {
    transform: scale(.9);
}

.conteudo-logo-menu a {
    color: var(--cor-fonte-principal-layout)
}

/* banner */
.banner {
    position: relative;
    width: 100%;
    background-color: transparent;
}
.swiper-container-banner {
    position: relative;
    width: 100%;
    height: 100%;
}
.conteudo-banner {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.banner {
    padding-bottom: 40px;
}
.banner .btn-padrao {
    position: relative;
    display: flex;
    top: 0px;
    left: 0px;
    transform: none;
    padding-top: 40px;
}
.banner .btn-padrao-right, .banner .btn-padrao-left {
    position: relative;
}


/* btn padrao */
.btn-padrao {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0%;
    transform: translate(-0%, -50%);
    z-index: 10;
}
.btn-padrao-right, .btn-padrao-left {
    position: absolute;
    width: 48px;
    height: 48px;
    background-color: var(--cor-fundo-principal);
    color: var(--cor-fonte-principal-layout);
    -webkit-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.41);
    -moz-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.41);
    box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.41);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 0px auto;
    border-radius: 4px;
    cursor: pointer;
}
.btn-padrao-right {
    right: 20px;
}
.btn-padrao-left {
    left: 20px;
}
.btn-padrao-right:hover, .btn-padrao-left:hover {
    background-color: var(--cor-fundo-principal);
    color: var(--cor-fonte-principal-layout);
    transition: .3s;
    -webkit-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.70);
    -moz-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.70);
    box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.70);
}
.btn-padrao-right .swiper-button-disabled, .btn-padrao-left .swiper-button-disabled {
    opacity: .6;
}
.banner .btn-padrao-right {
    margin-left: auto !important;
    margin-right: 0px;
    background-color: var(--cor-fundo-principal);
    color: var(--cor-fonte-principal-layout);
}
.banner .btn-padrao-left {
    margin-right: auto !important;
    margin-left: 0px;
    background-color: var(--cor-fundo-principal);
    color: var(--cor-fonte-principal-layout);
}
.banner .swiper-slide img {
    object-fit: cover;
    width: 100%;
    object-position: center center;
}

/* categoria */
.categoria {
    position: relative;
    width: 100%;
    padding: 40px 0px;
}
.conteudo-titulo {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 40px;
}
.conteudo-titulo p {
    text-align: center;
    font-size: 22px;
    color: var(--cor-fonte-principal);
    margin: 0px;
    font-weight: 600;
    line-height: 20px;
}
.conteudo-titulo h1 {
    font-family: 'Arial';
    color: var(--fonte);
    text-align: center;
    font-weight: 800;
}
.bloco-categoria {
    position: relative;
    width: 100%;
    height: 140px;
    -webkit-box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.20);
    -moz-box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.20);
    box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.20);	
    padding: 10px;
    background-color: white;
    border: 1px solid #D6D6D6;
}
.categoria a {
    text-decoration: none;
    color: var(--fonte);
}
.texto-bloco-categoria {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.texto-bloco-categoria h1 {
    font-size: 20px;
    margin: 0px;
}
.swiper-container-categoria {
    width: 60%;
    height: 100%;
    margin: 0px auto;
    overflow-x: hidden;
}
.categoria .btn-padrao {
    width: 60%;
    margin: 0px auto;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
}
.categoria .btn-padrao-right, .categoria .btn-padrao-left {
    border-radius: 100%;
}
.categoria .btn-padrao-right {
    right: -60px;
}
.categoria .btn-padrao-left {
    left: -60px;
}

/* produto */
.produto {
    position: relative;
    width: 100%;
    padding: 40px 0px;
}
.fundo-produto {
    background-color: var(--fundo);
}
.conteudo-titulo-produto {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 30px;
}
.conteudo-titulo-produto h1 {
    font-family: 'Arial';
    color: #989898;
    font-size: 28px;
    font-weight: 800;
}
.conteudo-titulo-produto h1 span {
    font-family: 'josefin';
    font-size: 18px;
    font-style: italic;
    color: #989898;
    font-weight: 500;
}
.btn-titulo-produto {
    text-align: right;
}
.btn-titulo-produto a {
    background-color: var(--fundo-alternativo);
    padding: 15px 25px;
    border-radius: 30px;
    color: var(--cor-fonte-secundaria-layout);
    font-weight: 500;
    margin: 0px;
}
.bloco-produto {
    position: relative;
    width: 100%;
    -webkit-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);
    -moz-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);
    box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);	
    border-radius: 4px;
    background-color: white;
    transition: .3s;
}
.bloco-produto:hover {
    -webkit-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.40);
    -moz-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.40);
    box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.40);	
}
.bloco-produto-thumb {
    position: relative;
    width: 100%;
    height: 200px;
    background: white;
    overflow: hidden;
}
.bloco-produto .bloco-produto-texto {
    padding: 5px !important;
}
.box-produto {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    transition: .3s;
}
.box-produto:hover {
    transform: scale(1.1);
}
.star {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}
.star li {
    display: inline-flex;
    padding: 0px 2px;
    color: var(--laranja)
}
.conteudo-texto-produto {
    text-align: center;
    margin-bottom: 10px;
}
.conteudo-texto-produto h1 {
    font-size: 20px;
    color: var(--fonte);
    margin: 0px;
}
.conteudo-texto-produto h3 {
    font-family: 'Human';
    font-weight: 700;
    color: var(--fonte);
    font-size: 22px;
    margin: 0px;
}
.btn-produto {
    position: relative;
    padding-top: 25px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
}
.btn-produto a {
    padding: 20px 30px;
    border-radius: 35px;
    background-color: var(--cor-fundo-principal);
    font-size: 16px;
    color: var(--cor-fonte-principal-layout);
    font-weight: 600;
}
.btn-produto a:hover {
    transition: .3s;
    background-color: var(--fundo-alternativo);
    color: var(--cor-fonte-secundaria-layout);
    text-decoration: none;
}

/* testemunho */
.testemunho {
    position: relative;
    width: 100%;
    background-color: var(--fundo);
    padding: 40px 0px;
}
.swiper-container-testemunho {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}
.bloco-testemunho {
    position: relative;
    width: 100%;
    border-radius: 5px;
    background-color: white;
    padding: 25px 0px;
}
.bloco-testemunho-nome {
    padding: 0px 25px;
}
.bloco-testemunho-nome h1 {
    font-family: 'Arial';
    font-weight: bold;
    font-size: 20px;
    color: #000000;
    margin: 0px;
}
.bloco-testemunho-avalicao {
    width: 100%;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: row;
    padding: 0px 25px;
    text-align: right;
    justify-content: flex-end;
}
.bloco-testemunho-avalicao p {
    margin: 0px;
}
.bloco-testemunho-avalicao p i {
    padding-right: 10px;
    color: var(--laranja);
    padding-top: 10px;
}
.bloco-testemunho-avalicao h1 {
    font-size: 30px;
    font-weight: 800;
    margin: 0px;
    font-style: italic;
}
.bloco-testemunho-avalicao h1 span {
    font-size: 20px;
    color: var(--fonte-clara);
    /*padding-right: 5px;*/
}
.bloco-testemunho-texto {
    width: 100%;
    padding: 10px 25px;
    padding-bottom: 0px;
}
.bloco-testemunho-texto p {
    margin: 0px;
    font-size: 18px;
    color: var(--fonte-clara);
    font-weight: 400 !important;
}
.testemunho .btn-padrao {
    top: 0px;
    transform: none;
}

/* mapa */
.mapa {
    position: relative;
    width: 100%;
    height: 280px;
    background-image: url(../img/img_mapa.png);
    background-size: cover;
    background-position: 50% 50%;
    margin-bottom: 250px;
}
.bloco-mapa {
    position: relative;
    width: 70%;
    height: 380px;
    background-color: black;
    -webkit-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);
    -moz-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);
    box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);	
    margin: 0px auto;
    border-radius: 8px;
    margin-top: 100px;
}
.bloco-mapa iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* footer */
.footer {
    position: relative;
    width: 100%;
    padding: 40px 0px;
}
.conteudo-footer h3 {
    font-family: 'Arial';
    font-size: 24px;
    color: #000000;
    padding-bottom: 5px;
    margin: 0px;
    font-weight: 700;
}
.conteudo-footer p {
    font-style: italic;
    color: var(--fonte);
    font-size: 18px;
    margin-bottom: 0px;
}
.conteudo-footer-inferior p {
    font-style: italic;
    color: var(--cor-fonte-principal-layout);
    font-size: 18px;
    margin-bottom: 0px;
}
.conteudo-footer p span {
    font-weight: 700;
}
.conteudo-footer a {
    color: var(--cor-fonte-principal-layout);
    font-size: 18px;
}
.btn-footer {
    padding: 15px 0px;
}
.btn-footer a {
    padding: 15px 15px;
    background-color: var(--cor-fundo-principal);
    color: var(--cor-fonte-principal-layout);
    border-radius: 3px;
}

footer {
    position: relative;
    width: 100%;
    background-color: var(--cor-fundo-principal);
    padding: 23px 0px;
    text-align: center;
}
footer .conteudo-footer {
    width: 100%;
    text-align: center;
}
footer p {
    margin: 0px;
}

.menu-responsivo {
    position: relative;
    width: 100%;
    height: 140px;
    background-color: var(--fundo-alternativo);
    border-bottom: 5px solid var(--cor-fundo-principal);
    display: none;
    transition: height .3s;
}
.menu-responsivo-ativo {
    height: auto !important;
}
.conteudo-menu-responsivo {
    position: relative;
    width: 100%;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.menu-responsivo ul {
    position: fixed;
    text-align: center;
    margin: 0px;
    display: none;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    top: 0;
    left: 0px;
    z-index: 99;
    flex-direction: column;
    justify-content: center;
}
.ul-ativo {
    display: flex !important;
}
.menu-responsivo ul li {
    padding: 20px 0px;
    border-bottom: 1px solid rgba(0,0,0,.1);
    list-style: none;
}
.menu-responsivo ul li a {
    color: white;
    font-size: 22px;
}
.menu-responsivo ul li p {
    margin: 0px;
}
.menu-responsivo ul li:hover {
    background-color: var(--cor-fundo-principal);
}
.menu-responsivo ul li a:hover {
    color: var(--cor-fonte-principal-layout);
    text-decoration: none;
}
.btn-menu-responsivo {
    position: relative;
    width: 100%;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.btn-menu-responsivo span {
    position: relative;
    width: 30px;
    height: 3px;
    background-color: var(--cor-fonte-secundaria-layout);
    margin-left: auto;
}
.btn-menu-responsivo span:after {
    position: absolute;
    top: 10px;
    content: '';
    width: 30px;
    height: 3px;
    background-color: var(--cor-fonte-secundaria-layout);
    margin-left: auto;
}
.btn-menu-responsivo span:before {
    position: absolute;
    top: -10px;
    content: '';
    width: 30px;
    height: 3px;
    background-color: var(--cor-fonte-secundaria-layout);
    margin-left: auto;
}
.btn-menu-responsivo.toggle span {
    background-color: transparent;
}
.btn-menu-responsivo.toggle span:after {
    position: fixed;
    z-index: 999;
    top: 50px;
    transform: rotate(45deg);
    transition: transform .3s;
    background-color: white;
}
.btn-menu-responsivo.toggle span:before {
    position: fixed;
    z-index: 999;
    top: 50px;
    transform: rotate(-45deg);
    transition: transform .3s;
    background-color: white;
}

/*barra*/
.barra {
    position: relative;
    width: 100%;
    background-color: var(--fundo-alternativo);
    padding: 60px 0px;
}
.conteudo-barra {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.barra h1 {
    font-family: 'Arial';
    font-weight: 700;
    color: var(--cor-fonte-secundaria-layout);
    margin: 0px;
    text-align: center;
}

/* cardarpio */
.cardapio {
    position: relative;
    width: 100%;
    padding: 40px 0px;
    background-color: white;
}
.conteudo-cardapio {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../img/img_lanche03.jpg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.contencao-cardapio {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.bloco-cardapio {
    position: relative;
    width: 100%;
    position: relative;
    width: 100%;
    height: 260px;
    background: linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px 25px;
}
.contencao-cardapio:hover .bloco-cardapio {
    background: linear-gradient(0deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.2) 100%);
    transition: .3s;
}
.conteudo-cardapio2 {
    position: relative;
    width: 100%;
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--fundo-alternativo);
    margin-top: 30px;
    text-align: center;
}
.conteudo-cardapio2 h1 {
    font-size: 30px;
    color: var(--fonte);
}
.bloco-cardapio h1 {
    font-size: 26px;
    color: white;
}
.conteudo-input-cardapio {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 60px;
    -webkit-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);
    -moz-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);
    box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);	
    margin-bottom: 30px;
    background-color: white;
    border-radius: 8px;
}
.conteudo-input-cardapio input, .conteudo-input-cardapio select {
    height: 60px;
    padding-left: 20px;
    width: 90%;
    font-size: 18px;
    color: var(--fonte);
    border: none;
    background-color: transparent;
    outline: none;
}
.custom-modal-frete .conteudo-input-cardapio {
    margin-bottom: 0px;
}
.conteudo-input-cardapio select {
    width: 100%;
    margin-right: 20px;
    text-transform: uppercase;
} 
.conteudo-input-cardapio input::placeholder {
    color: var(--fonte-clara);
}
.conteudo-input-cardapio button {
    width: 10%;
    border: none;
    background-color: transparent;
    color: var(--cor-fonte-principal-layout);
}
.cardapio input:hover .conteudo-input-cardapio {
    -webkit-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.40);
    -moz-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.40);
    box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.40);
    transition: .3s;	
}

/* fundo site */
.fundo-site {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--fundo-alternativo);
    opacity: .9;
    top: 0px;
    left: 0px;
    z-index: 99;
    display: none;
}

/* modal */
.custom-modal, .custom-modal-frete, .custom-modal-login {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);
    -moz-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);
    box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);
    background-color: white;
    width: 70%;
    height: auto;
    z-index: 999;
    border-radius: 8px;
    display: none;
}
.custom-modal .linha-conteudo {
    overflow-y: auto; 
    max-height: calc(100vh - 210px) !important;
}

.custom-modal-ativo {
    display: block !important;
    animation: aparecendo .3s;
    transition: .3s;
}
.custom-modal-titulo {
    position: relative;
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url('../img/img_mapa.png');
    padding: 0px 40px;
    display: flex;
    flex-direction: row;
    z-index: 99;
}
.custom-modal-titulo-foto {
    position: relative;
    width: 120px;
    height: 120px;
    /*background-color: var(--fundo-alternativo);*/
    background-color: black;
    margin-top: 30px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.box-modal-fundo {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: .7;
}
.custom-modal-titulo-nome {
    position: relative;
    margin-top: 120px;
    padding-left: 20px;
    background-color: #FFFFFF;
    width: 100%;
}
.custom-modal-titulo-nome h1 {
    font-family: 'Arial';
    font-weight: 700;
    color: var(--fonte);
    margin: 0px;
    text-align: center;
    font-size: 24px !important;
    width: 100%;
    background-color: #FFFFFF;
}
.custom-modal-preco {
    position: absolute;
    top: 40px;
    right: 40px;
}
.custom-modal-preco h1 {
    font-family: 'human';
    color: white;
    margin: 0px;
    text-align: center;
}
.custom-modal-ingrediente {
    position: relative;
    width: 100%;
    background-color: white;
    padding: 40px 40px;

}
.custom-modal-ingrediente-titulo {
    padding-top: 10px;
}
.custom-modal-ingrediente-titulo p {
    font-size: 20px;
}
.custom-modal-adicional {
    padding: 40px 40px;
    padding-bottom: 0px;

}

.custom-modal-adicional p {
    font-size: 20px;
    margin: 0px;
}
.custom-adicional-input p span {
    font-weight: 600;
}
.custom-modal-adicional-btn {
    padding: 20px 0px;
    text-align: center;
}
.custom-modal-adicional-btn a {
    padding: 20px 20px;
    background-color: var(--cor-fundo-principal);
    color: var(--cor-fonte-principal);
    font-family: 'Arial';
    font-size: 20px;
    border-radius: 5px;
}
.custom-modal-adicional-btn a:hover {
    color:  var(--cor-fundo-principal);
    background-color: var(--cor-fonte-principal);
    transition: .3s;
    text-decoration: none;
}
.custom-modal-footer {
    padding: 0px 40px;
}
.custom-modal-footer-conteudo {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
    justify-content: flex-end;
}
.custom-modal-btn {
    padding: 10px 0px;
    margin-right: 10px;
}
.custom-modal-btn a {
    padding: 10px 20px;
    background-color: #96364a;
    color: white;
    font-family: 'Arial';
    font-size: 16px;
    border-radius: 4px;
    text-decoration: none;
}
.custom-btn2 a {
    background-color: #343f55;
    margin-right: 0px;
}
.custom-adicional {
    position: fixed;
    right: -100%;
    top: 0px;
    height: 100%;
    width: 50%;
    background-color: white;
    z-index: 99;
    -webkit-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);
    -moz-box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);
    box-shadow: 0px 0px 36px -4px rgba(0,0,0,0.20);
    transition: right .3s;
    overflow: hidden;
}
.custom-adicional-ativo {
    right: 0px !important;
}
.custom-adicional-title {
    background-color: var(--fundo);
    padding: 40px 20px;
}
.custom-adicional-title h1 {
    font-family: 'Arial';
    font-size: 24px;
    text-align: center;
    margin: 0px;
}
.custom-adicional-title h1 i {
    background-color: var(--cor-fundo-principal);
    padding: 5px 8px;
    border-radius: 2px;
    margin-right: 10px;
}
.custom-adicional-input {
    position: relative;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: calc(100vh - 120px);
    overflow: auto;
}
.switch__container {
    padding: 10px 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.custom-adicional-input p {
    margin: 0px;
}

/*tabela de frete*/
.custom-modal-frete-titulo {
    position: relative;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    flex-direction: row;
    background-color: var(--cor-fundo-principal);
}
.custom-modal-frete-nome {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.custom-modal-frete-nome p {
    font-family: 'Arial';
    margin: 0px;
    font-size: 22px;
}
.custom-modal-frete-icone {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.btn-custom-modal-frete-icone {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    margin-top: 8px;
}
.custom-modal-frete-lista {
    padding: 20px 10px;
}
.custom-modal-frete ul {
    padding: 0px 20px;
}
.custom-modal-frete ul li a {
    text-transform: uppercase;
    color: var(--fonte);
    font-family: 'Arial';
}
.custom-modal-frete .nav-link {
    padding: 15px 20px;
} 
.custom-modal-frete .nav-link.active {
    color: var(--cor-fonte-principal);
}
.bloco-tabela-frete {
    margin: 20px 0px;
    border-radius: 3px;
    padding: 15px 15px;
    background-color: var(--fundo-alternativo);
}
.bloco-tabela-frete h1 {
    font-size: 22px;
    font-family: 'Arial';
    margin: 0px;
}
.bloco-tabela-frete p {
    margin: 0px;
    color: var(--fonte);
    font-size: 18px;
}

.custom-modal-login {
}
.custom-modal-login hr {
    margin: 0px;
    margin: 10px 0px;
    margin-top: 30px;
}
.custom-modal-login-titulo {
    position: relative;
    width: 100%;
    background-color: var(--cor-fundo-principal);
    padding: 10px 20px;
    display: flex;
}
.nav-link {
}
.nav-link {
    color: var(--cor-fonte-principal) !important;
}
.custom-modal-login-titulo-texto {
    width: 100%;
}
.custom-modal-login-titulo-texto p {
    margin: 0px;
}
.custom-modal-login-conteudo {
    padding: 20px;
}
.tab-content {
    padding: 20px;
}
.custom-modal-login-conteudo label {
    margin: 0px;
    margin: 10px 0px;
}
.custom-modal-login-conteudo input, .custom-modal-login-conteudo select {
    display: block;
    width: 100%;
    height: 50px;
    padding-left: 10px;
}
.custom-modal-login-conteudo input[type="button"] {
    width: auto;        
    padding: 0px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
    background-color: var(--cor-fundo-principal);
    color: var(--cor-fonte-principal);
    border: none;
    border-radius: 2px;
}

/* collapse */
.custom-card-collapse {
    padding: 20px 20px;
    background-color: var(--fundo-alternativo);
    border: none;
}
.custom-card-collapse .btn {
    font-size: 22px;
    margin: 0px;
    color: var(--cor-fonte-secundaria-layout);
}
.custom-card {
    border: none !important;
    margin: 20px 0px;
}
.bloco-produto {
    margin-bottom: 40px;
}

/* contato */
.contato {
    position: relative;
    width: 100%;
    padding: 80px 0px;
}
.conteudo-contato h1 {
    font-family: 'Arial';
    font-size: 32px;
    font-weight: 500;
    color: #000000;
}
.conteudo-contato hr:not(.hr-normal) {
    width: 100px;
    height: 2px;
    background-color: var(--cor-fundo-principal);
    border: none;
}
.conteudo-contato p {
    color: #000000;
    font-size: 18px;
}
.conteudo-contato ul li {
    list-style: none;
    padding: 10px 0px;
}
.conteudo-contato ul li span {
    font-weight: 600;
    font-size: 18px;
}
.conteudo-contato ul li span i {
    background-color: var(--cor-fundo-principal);
    padding: 5px 8px;
    margin-right: 8px;
    color: var(--cor-fonte-principal-layout);
}

.conteudo-formulario {
    border-radius: 10px;
    padding: 40px;
    -webkit-box-shadow: 0px 0px 30px 15px rgba(0,0,0,.1);
    -moz-box-shadow: 0px 0px 30px 15px rgba(0,0,0,.1);
    box-shadow: 0px 0px 30px 15px rgba(0,0,0,.1);
}
.conteudo-formulario h1 {
    text-align: center;
    font-family: 'Arial';
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 30px;
}
.conteudo-formulario h1 span {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 18px;
    line-height: 0px;
    color: var(--fonte)
}
.conteudo-formulario input, .conteudo-formulario textarea {
    display: block;
    width: 100%;
    height: 65px;
    padding-left: 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: none;
    outline: none;
    border: 1px solid rgba(0,0,0,.25);
}
.conteudo-formulario textarea {
    padding-top: 20px;
    height: 100px;
}
.conteudo-formulario input[type='button'] {
    background-color: var(--cor-fundo-principal);
    color: var(--cor-fonte-principal-layout);
    font-size: 22px;
    font-family: 'Arial';
}
.conteudo-formulario input[type='button']:hover, .conteudo-formulario input[type='button']:focus {
    color: var(--cor-fundo-principal);
    background-color: var(--cor-fonte-principal-layout);
    transition: .3s;
}
.conteudo-formulario input:focus, .conteudo-formulario textarea:focus {
    border: 1px solid var(--cor-fundo-principal);
    transition: .3s;
}

.social {
    padding: 0px 0px;
}
.social a {
    background-color: var(--cor-fundo-principal);
    padding: 12px 15px !important;
    border-radius: 5px !important;
    color: var(--cor-fonte-principal) !important;
}
.social i {
    padding: 0px !important;
    background-color: transparent !important;
    margin-right: 0px !important;
}
.social a:hover {
    transition: .3s;
    background-color: var(--cor-fonte-principal);
    color: var(--cor-fundo-principal) !important;
}

/*carrinho*/
.carrinho {
    position: fixed;
    top: 0px;
    right: -40%;
    width: 40%;
    background-color: #0f0f0f;
    height: 100vh;
    z-index: 99;
}
.carrinho-ativo {
    right: 0px !important;
    transition: right .3s;
}
.carrinho-header {
    background-color: #565656;
    height: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.conteudo-carrinho-header {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.carrinho-header h1 {
    font-size: 24px;
    font-family: 'Arial';
    color: white;
    margin: 0px;
    text-align: center;
}
.carrinho-item {
    position: relative;
    width: 100%;
    /*height: 70vh;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    max-height: calc(100vh - 300px);
}
.bloco-carrinho {
    position: relative;
    width: 100%;
    display: flex;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,.2);
    color: #FFFFFF !important;
}
.bloco-carrinho-imagem {
    width: 80px;
    height: 80px;
    background-color: var(--fundo-alternativo);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.bloco-carrinho-texto {
    width: 70%;
    padding: 0px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bloco-carrinho-texto h1 {
    font-size: 18px;
    color: white;
    margin: 0px;
}
.bloco-carrinho-texto p {
    color: white;
    margin: 0px;
    font-family: 'human';
    font-weight: 600;
}
.bloco-carrinho-adicionar {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    text-align: right;
    margin-top: 25px;
}
.bloco-carrinho-adicionar input {
    width: 100%;
    height: 30px;
    text-align: center;
}
.bloco-carrinho-adicionar input[type="button"]{
    background-color: transparent;
    color: var(--cor-fundo-principal);
    border: none;
    outline: none;
}
.carrinho-footer {
    /*    height: 15vh;*/
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.btn-carrinho-footer {
    text-align: center;
}
.btn-carrinho-footer a {
    padding: 10px 20px;
    background-color: var(--cor-fundo-principal);
    color: var(--cor-fonte-principal);
    border-radius: 4px;
    font-family: 'Arial';
    font-size: 16px;
    margin: 10px;

}
.btn-carrinho-footer a:hover {
    color: var(--cor-fundo-principal);
    background-color: var(--cor-fonte-principal);
    transition: .3s;
    text-decoration: none;
}

.btn-carrinho {
    background-color: var(--cor-fundo-principal);
    color: var(--cor-fonte-principal-layout);
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: -50px;
    cursor: pointer;
}
.conteudo-btn-carrinho {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}
.btn-carrinho:hover {
    color: var(--cor-fonte-secundaria-layout);
    background-color: var(--fundo-alternativo);
    transition: .3s
}
.btn-carrinho2 {
    background-color: var(--cor-fundo-principal);
    color: var(--cor-fonte-principal-layout);
    width: 50px;
    height: 50px;
    position: relative;
    margin-left: auto;
    margin-right: 20px;
}
.conteudo-btn-carrinho2 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    cursor: pointer;
}
.btn-carrinho2:hover {
    color: var(--cor-fundo-principal);
    background-color: var(--cor-fonte-principal-layout);
    transition: .3s
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #565656;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: black;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--cor-fundo-principal);
}

@media screen and (max-width: 1200px) {
    .menu-responsivo {
        display: block;
    }
    .menu-principal {
        display: none;
    }
    .menu-responsivo img {
        width: auto;
    }
}
@media screen and (max-width: 780px) {

    .conteudo-logo-menu {
        height: 200px;
    }
    .conteudo-logo-menu img {
        width: 70%;
    }

    /*menu principal*/
    .conteudo-barra-superior {
        display: none;
    }



    /* banner */
    .banner {
        height: auto;
        margin-top: 0px;
    }
    .conteudo-banner {
        background-size: cover;
        height: 200px;
    }

    .banner .swiper-slide img {       
        height: 150px !important;

    }

    /*btn padrao*/
    .btn-padrao {
        top: 28%;
    }

    /* categoria */
    .categoria {
        padding: 30px 0px;
    }
    .categoria h1 {
        font-size: 34px;
    }
    .bloco-categoria {
        margin: 0px auto;

    }
    .conteudo-titulo {
        padding-bottom: 10px;
    }

    /* produto */
    .conteudo-titulo-produto h1 span {
        font-size: 16px;
    }
    .btn-titulo-produto {
        text-align: center;
    }

    /* testemunho */
    .testemunho .conteudo-titulo-produto h1 {
        font-size: 26px;
        text-align: center;
    }
    .swiper-container-testemunho {
        margin-top: 50px;
    }
    .testemunho .btn-padrao-right {
        right: 100px;
    }
    .testemunho .btn-padrao-left {
        left: 100px;
    }

    /* mapa */
    .mapa {
        height: 200px;
        margin-bottom: calc(250px - 120px);
    }
    .bloco-mapa {
        width: 100%;
        height: 250px;
        margin-top: 80px;
    }

    /* footer */
    .footer {
        padding-bottom: 0px;
    }
    .footer .conteudo-footer {
        margin-bottom: 40px;
    }
    .footer .conteudo-footer .btn-footer {
        margin-bottom: 30px;
    }

    /*PAGINAS*/	 
    .contato {
        padding: 40px 0px;
    }
    .conteudo-formulario {
        margin-top: 40px;
        padding: 0px;
        box-shadow: none !important
    }

    /*carrinho*/
    .carrinho {
        width: 100%;
        right: -100%;
    }
    .carrinho-header h1 {
        font-size: 17px;
    }
    .bloco-carrinho {
        padding: 10px;
    }
    .bloco-carrinho-imagem {
        height: 60px;
    }
    .bloco-carrinho-texto {
        padding: 0px 10px;
    }
    .bloco-carrinho-adicionar {
        margin-top: 15px;
    }

    .bloco-tabela-frete {
        margin: 10px 0px;
    }

    .texto-bloco-categoria h1 {
        font-size: 14px;
        margin: 0px;
    }

    .btn-carrinho-footer {
        width: 100% !important;
        margin-top: 20px;
    }
    .btn-carrinho-footer a {
        width: 100% !important;
    }

    .carrinho-footer {
        flex-direction: column; 
    }
    .btn-carrinho-footer {
        background-color: var(--cor-fundo-principal);
        padding: 10px 0px;

    }
    .btn-carrinho-footer a {
        margin: 0px !important;
        padding: 10px 70px;

    }
}

.ul-ativo {
    animation: width .2s;
}
.menu-responsivo ul li {
    animation: deslisando .5s;
    opacity: 1;
}
.menu-responsivo ul li:nth-child(1) {
    animation-delay: .2s;
}
.menu-responsivo ul li:nth-child(2) {
    animation-delay: .3s;
}
.menu-responsivo ul li:nth-child(3) {
    animation-delay: .4s;
}
.menu-responsivo ul li:nth-child(4) {
    animation-delay: .5s;
}
.menu-responsivo ul li:nth-child(5) {
    animation-delay: .6s;
}
@keyframes deslisando {
    from {
        transform: translateX(-200px);
        opacity: 0px;
    }
    to {
        transform:  translateX(0px);
        opacity: 1;
    }
}
@keyframes width {
    from {
        width: 0px;
    }
    to {
        width: 100%;
    }
}

.cbx {
    margin: auto;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding-right: 15px;
    display: block;
    padding-bottom: 20px;
}
.cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0,0,0);
}
.cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098A9;
    transition: all .2s ease;
}
.cbx span svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: var(--cor-fonte-principal);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all .3s ease;
    transition-delay: .1s;
    transform: translate3d(0,0,0);
}
.cbx span:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--cor-fonte-principal);
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 100%;
}
.cbx span:last-child {
    padding-left: 8px;
}
.cbx:hover span:first-child {
    border-color: var(--cor-fonte-principal);
}
.inp-cbx:checked + .cbx span:first-child {
    background: var(--cor-fundo-principal);
    border-color: var(--cor-fundo-principal);
    animation: wave .4s ease;
}
.inp-cbx:checked + .cbx span svg {
    stroke-dashoffset: 0;
}
.inp-cbx:checked + .cbx span:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all .6s ease;
}
@keyframes wave {
    50% {
        transform: scale(.9);
    }
}

/* btn on off */
.switch {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}
.switch + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    user-select: none; 	
}
.switch--shadow + label {
    padding: 2px;
    width: 65px;
    height: 30px;
    background-color: #ddd;
    border-radius: 60px;
    margin-left: auto;
}
.switch--shadow + label:before,
.switch--shadow + label:after {
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    content: "";
}
.switch--shadow + label:before {
    right: 1px;
    background-color: #f1f1f1;
    border-radius: 60px;
    transition: all .4s;
}
.switch--shadow + label:after {
    width: 30px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,.3);
    transition: all .4s;
}
.switch--shadow:checked + label:before {
    background-color: #8ce196;
}
.switch--shadow:checked + label:after {
    transform: translateX(33px);
}
.switch__container p {
    margin: 0px;
}
.custom-modal-ingrediente-input hr {
    margin: 0px;
}
.custom-modal-ingrediente-input .switch--shadow + label:before {
    background-color: #f44336; 
}
.custom-modal-ingrediente-input .switch--shadow:checked + label:before {
    background-color: #8ce196;
}
.custom-adicional .custom-modal-adicional-btn {
    padding-top: 40px;
}

@keyframes aparecendo {
    0% {
        transform: translate(-50%, 1000%);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}
.background-titulo {
    position: absolute;
    top: 0px;
    left: 0px;
    background: black;
    width: 100%;
    height: 100%;
}
.box-thumb {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: .3;
    filter: grayscale(1);
}

@media screen and (max-width: 780px) {
    .custom-modal, .custom-modal-frete , .custom-modal-login {
        width: 95%;
        height: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    .custom-modal .linha-conteudo {


    }

    .custom-btn1 {
        width: 100%;
        background-color: #96364a;
        text-align: center;
        border-radius: 3px;
        margin-bottom: 10px;
    }
    .custom-btn2 {
        width: 100%;
        background-color: #343f55;
        text-align: center;
        border-radius: 3px;
    }

    .custom-modal-login-conteudo {
        padding: 10px;
    }
    .custom-modal-login input[type="button"] {
        width: 100%;
    }
    .custom-modal-adicional {
        padding-top: 0px !important;
    }
    .custom-modal-login {
        height: 100%;
        border: 1px solid green;
        overflow: scroll;
    }
    .tab-content {
        padding: 10px;
    }
    .custom-modal-titulo {
        padding: 0px 20px;
        height: 100px;
    }
    .custom-modal-titulo-foto {
        width: 100px;
        height: 100px;
        margin-top: 60px;
    }
    .custom-modal-titulo-nome {
        margin-top: 120px;
    }
    .custom-modal-titulo-nome h1 {
        font-size: 14px !important;
    }
    .custom-modal-preco {
        top: 30px;
        right: 30px;
    }
    .custom-modal-ingrediente, .custom-modal-adicional  {
        padding-right: 10px;
        padding-left: 10px;
    }
    .custom-modal-ingrediente {
        padding-bottom: 20px;
    }
    .custom-modal-ingrediente-titulo {
        padding-top: 40px;
    }
    .custom-adicional {
        width: 100%;
    }

    .custom-adicional-title {
        padding: 20px 10px;
    }
    .custom-adicional-title h1{
        font-size: 20px;
    }

    .custom-modal-footer {
        padding: 0px 10px;
    }
    .custom-modal-footer-conteudo {
        flex-direction: column;
    }
    .custom-modal-btn a {
        padding: auto auto;
    }

    .custom-modal-adicional p {
        font-size: 18px;
    }
    .carrinho-footer {
        margin: 0px 10px;
    }

}

.carrinho-desconto, .carrinho-total {
    color: #FFFFFF !important;


}
.carrinho-desconto *, .carrinho-total * {
    margin-left: 0px; 
    margin-right: 0px;

}

.carrinho-desconto input[type='text'], .carrinho-total input[type='text'] {
    background-color: transparent !important;    
    border: 0px !important;
    border-bottom: 1px solid var(--cor-fundo-principal) !important;
    color: var(--cor-fundo-principal) !important;
    box-shadow: 0px 0px !important;
    border-radius: 0px !important;
}


.carrinho-total {
    border-top: 5px solid #565656 !important;
    margin-top: 10px !important;
}

.botaoPadrao {
    padding: 18px 40px;
    background-color: var(--cor-fonte-principal);
    color: var(--cor-fundo-principal);
    border-radius: 4px !important;
    font-family: 'Arial';
    font-size: 18px;
    border: 0px !important;
}
.botaoPadrao:hover {
    color: var(--cor-fonte-principal);
    background-color: var(--cor-fundo-principal);
    transition: .3s;
    text-decoration: none;
}

.botaoPadrao2 {
    padding: 18px 40px;
    background-color: var(--cor-fundo-principal);
    color: var(--cor-fonte-principal);
    border-radius: 4px !important;
    font-family: 'Arial';
    font-size: 18px;
    border: 0px !important;
}
.botaoPadrao2:hover {
    background-color: var(--cor-fonte-principal);
    color: var(--cor-fundo-principal);
    transition: .3s;
    text-decoration: none;
}
.linhaPadrao:nth-child(even) {
    background-color: #D6D6D6;
}
.linhaPadrao:nth-child(odd) {
    background-color: #FFFFFF;
}
.modal-content {
    /*    background-color: #000000 !important;
        color: #FFFFFF !important;*/
}
.modal-content * {
    color: #000000 !important;
}
/*.modal .close {
    color: #FFFFFF !important;
}*/

.tabelaPadrao td {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
}

.cabecalhoTabelaPadrao {
    padding-bottom: 12px;
    padding-top: 12px;
    font-weight: bold;
    text-align: center;
    color: #FFFFFF !important;
    background-color: #000000;
}

.trPedido {
    cursor: pointer;

}
.trPedido:hover {

}

.rodapeTabela {
    border-bottom: 1px solid lightgray;
    border-top: 1px solid lightgray;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: bold;
}
thead {
    border-bottom: 1px solid lightgray;
    border-top: 1px solid lightgray;
    padding-top: 10px;
    padding-bottom: 10px;
}
thead th {
    text-align: center;
    font-weight: bold;
}
.infoAdicional {
    font-size: 11px !important;
}

/*======AVALIAÇÃO===*/

.vote label {
    cursor:pointer;
}
.vote label input{
    display:none;
}
.vote label i {
    font-family:FontAwesome;
    font-size: 2.5em;
    -webkit-transition-property:color, text;
    -webkit-transition-duration: .2s, .2s;
    -webkit-transition-timing-function: linear, ease-in;
    -moz-transition-property:color, text;
    -moz-transition-duration:.2s;
    -moz-transition-timing-function: linear, ease-in;
    -o-transition-property:color, text;
    -o-transition-duration:.2s;
    -o-transition-timing-function: linear, ease-in;
    color: #cccccc !important;
}
.vote label i:before {
    content:'\f005';
}
.vote label i.active {
    color:gold !important;
}

.bloco-avaliacao {
    padding: 10px 0px;
}
.bloco-pergunta p {
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 5px;
}
.bloco-nota textarea {
    width: 100%;
    height: 70px;
    border-radius: 5px;
    padding-left: 10px;
    padding-top: 10px;
    border: 1px solid #ccc;
    -webkit-box-shadow: 0px 0px 28px -12px rgba(0,0,0,.15);
    -moz-box-shadow: 0px 0px 28px -12px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 28px -12px rgba(0,0,0,0.15);
    transition: .3s all;
}
.bloco-nota textarea:hover, .bloco-nota textarea:focus {
    -webkit-box-shadow: 0px 0px 28px -12px rgba(0,0,0,.25);
    -moz-box-shadow: 0px 0px 28px -12px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 28px -12px rgba(0,0,0,0.25);
}

.btn-nota {
    width: 200px;
    height: 50px;
    background-color: #fee914 !important;
    color: #0e0e0e !important;
    border: none;
    font-weight: 500;
    font-size: 18px;
    transition: .3s;
}
.btn-nota:hover, .btn-nota:focus {
    background-color: #0e0e0e !important;
    color: #fee914 !important;
}

