/*
*
*
Estrutura HTML que o modal deve conter, o que defini o tamanho dos modais são as classes modal-small, modal-medium, modal-big; conforme ex: abaixo; 
<div id="modal-cnpj" class="modal-padrao modal-small">
	<div class="container-modal">
		<a href="#" class="fechar">x</a>
		<h1>Titulo do modal</h1>
		<div class="conteudo"></div>
	</div>
	<div class="mascara"></div>
</div>
*
*
*
*/
/*Estilizando modais*******************************/
.modal-padrao {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  /*z-index: 99999;*/
  width: 100%;
  height: 100%;
  display: none;
}

.mascara {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.85;
  z-index: 1;
}

.mascara-disabled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
}

.fechar {
  font-size: 24px;
  color: #000;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 35px;
  height: 0;
  border-radius: 20px;
  text-align: center;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,e5e5e5+100;White+3D */
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=0);
  /* IE6-9 */
  box-shadow: 0px 0px 10px #333;
  z-index: 30;
}

.modal-padrao .fechar:hover,
.fechar:visited,
.fechar:active {
  text-decoration: none;
}

@media (min-width: 0) {
  .modal-padrao h1 {
    margin: 0;
    font-size: 1.9rem;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 8px 10px;
    margin-bottom: 10px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,e5e5e5+100;White+3D */
    background: #ffffff;
    /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=0);
    /* IE6-9 */
    z-index: 20;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    color: black;
  }
}

@media (min-width: 1024px) {
  .modal-padrao h1 {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
  }
}

/*Posicionamento dos modais*****************/
@media (min-width: 0) {
  .modal-padrao .container-modal {
    position: absolute;
    top: 8px;
    left: 3px;
    width: 98%;
    background: #fff;
    z-index: 20;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0px 0px 20px #333;
  }
}

@media (min-width: 1024px) {
  .modal-padrao .container-modal {
    border-radius: 10px;
  }
}

/*modais pequeno*/
@media (min-width: 1024px) {
  .modal-small .container-modal {
    width: 600px;
    top: 10%;
    left: 50%;
    margin-left: -300px;
  }
}

/*Modais médio*/
@media (min-width: 1024px) {
  .modal-medium .container-modal {
    width: 800px;
    top: 10%;
    left: 50%;
    margin-left: -400px;
  }
}

@media (min-width: 1200px) {
  .modal-medium .container-modal {
    width: 900px;
    top: 10%;
    left: 50%;
    margin-left: -450px;
  }
}

/*Modais grande*/
@media (min-width: 1024px) {
  .modal-big .container-modal {
    /* top: 10%; */
    top: 15px;
    left: 50%;
    width: 80%;
    margin-left: -40%;
  }
}

/*Alerts*************************/
.alert-msg {
  position: fixed;
  width: 40%;
  margin-left: -25%;
  top: 0px;
  left: 50%;
  width: 50%;
  z-index: 99999;
  display: none;
}

.alert-msg .cont-alert {
  width: 100%;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  min-height: 100px;
  background: #fff;
  box-shadow: 0px 0px 40px #333;
  border-bottom: 1px solid #ccc;
  border-top: 0;
}

.alert-msg .fechar {
  position: absolute;
  top: 3px;
  right: 5px;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
  color: #000;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,e5e5e5+100;White+3D */
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=0);
  /* IE6-9 */
  width: 35px;
  border-radius: 20px;
  border: 1px solid #ccc;
  text-align: center;
}

.alert-msg p {
  display: table;
  color: #000;
  padding: 30px;
}

/*Pergunta**************************/
.pergunta {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

@media (min-width: 0) {
  .pergunta .cont-pergunta {
    position: fixed;
    width: 90%;
    margin-left: -45%;
    top: 0px;
    left: 50%;
    z-index: 99999;
    display: block;
    background: #fff;
    box-shadow: 0px 0px 40px #333;
    border-bottom: 1px solid #ccc;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    min-height: 100px;
    background: #fff;
    border-top: 0;
  }
}

@media (min-width: 768px) {
  .pergunta .cont-pergunta {
    width: 60%;
    margin-left: -30%;
  }
}

@media (min-width: 990px) {
  .pergunta .cont-pergunta {
    width: 40%;
    margin-left: -20%;
  }
}

.pergunta .fechar {
  position: absolute;
  top: 3px;
  right: 5px;
  font-weight: bold;
  font-size: 24px;
  text-decoration: none;
  color: #000;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,e5e5e5+100;White+3D */
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=0);
  /* IE6-9 */
  width: 35px;
  border-radius: 20px;
  border: 1px solid #ccc;
  text-align: center;
}

.pergunta p {
  display: table;
  color: #000;
  padding: 50px 30px 0px 30px;
  font-size: 18px;
}

.pergunta ul {
  width: 250px;
  margin: auto;
  padding: 0px 0 20px 0;
}

.pergunta ul li {
  display: inline-table;
  margin: 10px;
  text-align: center;
}

.pergunta ul a {
  padding: 10px 30px;
  font-size: 18px;
  display: table;
  color: #fff;
}

.pergunta a.sim {
  background: #00731b;
}

.pergunta a.nao {
  background: #c80000;
}

/*Carregando************************/
.carregando {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  text-align: center;
  color: #fff;
  z-index: 999999999;
}

/*.cont-distribuidora .carregando{
	display: block!important;
}*/
@media (min-width: 0) {
  .carregando .conteudo {
    position: absolute;
    top: 20%;
    left: 50%;
    margin-left: -40%;
    width: 80%;
    height: auto;
    display: table;
    z-index: 200;
  }
}

@media (min-width: 768px) {
  .carregando .conteudo {
    width: 50%;
    margin-left: -25%;
  }
}

.carregando p {
  color: #d7d7d7;
}

.carregando h2 {
  display: table;
  padding-top: 70px;
  width: 100%;
  margin: 0;
  background: url('../img/carregando.gif') top center no-repeat;
  background-size: 64px;
  color: #d7d7d7;
}

/***********************/
.modal-promocao .container {
  width: 50%;
  height: 500px;
  position: fixed;
  top: 10%;
  left: 50%;
  margin-left: -25%;
  z-index: 100;
}

.modal-promocao .mascara {
  background: url('../img/banners/fdo_promo_ache.png');
  background-size: 100%;
  opacity: 1;
}

.modal-promocao .produto {
  position: relative;
}

.modal-promocao .texto {
  position: absolute;
  top: 0px;
  right: 0px;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.modal-promocao .produto a {
  border: 2px solid yellow;
  display: block;
  width: 100%;
  height: 100%;
}

/*********************/
.modal-padrao h3 {
  background: #003775;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 10px 0px;
  font-weight: bold;
  width: 100%;
  margin: 10px 0;
}

/*carregaLoja************************/
.carregaLoja {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  z-index: 9999999;
}

@media (min-width: 0) {
  .carregaLoja .conteudo {
    position: absolute;
    top: 20%;
    left: 50%;
    margin-left: -40%;
    width: 80%;
    height: auto;
    display: table;
    z-index: 200;
  }
}

@media (min-width: 768px) {
  .carregaLoja .conteudo {
    width: 50%;
    margin-left: -25%;
  }
}

.carregaLoja p {
  color: #d7d7d7;
}

.carregaLoja h2 {
  display: table;
  padding-top: 70px;
  width: 100%;
  margin: 0;
  background: url('../img/carregando.gif') top center no-repeat;
  background-size: 64px;
  color: #d7d7d7;
}

/****************************/
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.modal-video .video {
  width: 560px;
  height: 315px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -280px;
  margin-top: -157px;
  position: absolute;
  z-index: 10001;
  box-shadow: 0px 0px 10px #000;
  background: #000;
}

.modal-video .btn-fechar {
  position: absolute;
  top: -15px;
  right: -5px;
  color: #fff;
  font-size: 18px;
  background: #000;
  width: 30px;
  /**/
  padding: 2px;
  border-radius: 40px;
  text-align: center;
}

.modal-video .video iframe {
  width: 100%;
}

@media (min-width: 0) {

  /*	#modal-video-tutorial{
		display: block
	}*/
  #modal-video-tutorial iframe {
    width: 100%;
  }

  #modal-video-tutorial .fechar {
    top: 8px;
    right: 8px;
    background: #f61c0d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }

  #modal-video-tutorial .container-modal {
    padding: 0;
    border: 0;
  }

  #modal-video-tutorial .conteudo {
    margin: 0;
  }
}

@media (min-width: 768px) {
  #modal-video-tutorial iframe {
    width: 560px;
    height: 315px;
    margin: 23px;
  }
}

@media (min-width: 0) {
  .btn-video-tutorial {
    position: relative;
    display: table;
    padding: 0px 10px 0px 40px;
    margin: 5px 0 0px 0;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    margin-left: 10px;
    line-height: 16px;
  }

  .btn-video-tutorial::after {
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    top: -2px;
    left: 0;
    display: table;
    background: url('../img/icones/youtube.svg') no-repeat;
    background-size: 35px;
  }
}

@media (min-width: 768px) {
  .btn-video-tutorial {
    font-size: 18px;
    top: -15px;
    padding: 10px 10px 10px 40px;
  }

  .btn-video-tutorial::after {
    top: 2px;
  }
}

.btn-video-tutorial:hover {
  color: #000;
}

/****************************************/

#modal-apr-videos .container-modal {
  font-size: 16px;
}

@media (min-width: 0) {
  #modal-apr-videos .conteudo {
    margin: 0;
    text-align: justify;
    padding: 10px 10px 90px 10px;
    overflow: auto;
    height: 100vh;
  }

  #modal-apr-videos .btn-prosseguir {
    width: 300px;
    margin: auto;
    padding: 10px 20px 10px 20px;
    color: #fff;
    font-weight: bold;
    background: #d2010d;
    position: fixed;
    bottom: 10px;
    left: 50%;
    border-radius: 10px;
    font-size: 24px;
    text-align: center;
    margin-left: -150px;
  }

  #modal-apr-videos .btn-prosseguir:hover {
    text-decoration: none;
    background: #b9000b;
  }

  #modal-apr-videos h2 {
    font-weight: bold;
    margin: 10px 0 0 0;
    border-top: 1px solid #eee;
    padding: 15px 0 0 0;
    text-align: center;
  }

  .texto-apr {
    width: 90%;
    margin: 30px auto;
    text-align: center;
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  #modal-apr-videos {
    position: absolute;
  }

  .texto-apr {
    width: 700px;
  }

  #modal-apr-videos .btn-prosseguir {
    position: absolute;
  }

  #modal-apr-videos .conteudo {
    height: auto;
  }

  #modal-apr-videos h2 {
    text-align: left;
  }
}

#modal-apr-videos .logo-modal {
  width: 100%;
  margin: auto;
  padding: 5px 10px 4px 10px;
  background: #d2010d;
  display: table;
  border-radius: 10px;
}

#modal-apr-videos .logo-modal img {
  width: 150px;
  margin: auto;
  display: table;
}

#modal-apr-videos p {
  margin: 20px 0;
}

/* DETALHE OFERTA */
#modal-detalhe-ofertas .container-modal {
  padding: 24px;
  border-radius: 24px;
}

#modal-detalhe-ofertas .fechar {
  background: transparent;
  box-shadow: none;
  top: 16px;
  right: 16px;
}

#modal-detalhe-ofertas .conteudo {
  margin: 0;
}

#modal-detalhe-ofertas .modal-title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin: 18px 0 4px;
  margin: 0 0 24px;
}

#modal-detalhe-ofertas .modal-title .nome-produto {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.25px;
  color: #333333;
  max-width: 96%;
}

#modal-detalhe-ofertas .modal-title {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
}

#modal-detalhe-ofertas .btns-area {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

#modal-detalhe-ofertas .loja-produto {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  letter-spacing: 0.5px;
  color: #333333;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 40px;
}

#modal-detalhe-ofertas .loja-produto strong {
  font-weight: 700;
  font-size: 24px;
  line-height: 44px;
  text-align: center;
  letter-spacing: -0.5px;
  text-transform: none;
}

#modal-detalhe-ofertas .loja-produto small {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #333333;
}

#modal-detalhe-ofertas .loja-produto i {
  font-weight: 600;
  text-decoration: underline;
}

#modal-detalhe-ofertas .btns-area .btn {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 1.25px;
  padding: 8px;
  border: 1px solid;
}

#modal-detalhe-ofertas .btns-area .btn-success {
  background: #d2010d;
  border-radius: 12px;
  color: #fff;
  width: 60%;
}

#modal-detalhe-ofertas .btns-area .btn-success:hover {
  background-color: #a10b14;
}

#modal-detalhe-ofertas .btns-area .btn-danger {
  background: transparent;
  border-radius: 12px;
  color: #333;
  width: calc(40% - 12px);
}

#modal-detalhe-ofertas .btns-area .btn-danger:hover {
  background-color: #0000001f;
}

@media screen and (min-width: 992px) {
  #modal-detalhe-ofertas .container-modal {
    padding: 24px;
    border-radius: 24px;
    max-width: 400px;
    margin-left: -200px;
  }
}

/* modais de envio de pedido */

.modal-fecha-pedido h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: transparent;
  border: 0;
  padding: 8px 0;
  position: relative;
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
}

.modal-fecha-pedido h1 small {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.25px;
}

.modal-fecha-pedido .conteudo {
  margin: 0;
}

.modal-fecha-pedido .formulario,
.modal-fecha-pedido .formulario .modal-group {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: flex-start;
  gap: 16px;
}

.modal-fecha-pedido .formulario .modal-group {
  min-width: 40%;
  flex: 1;
  gap: 4px;
}

#modalTokenOl .formulario .modal-group {
  justify-content: center;
  max-width: 300px;
  margin: auto;
  gap: 12px;
}

.modal-fecha-pedido .formulario .modal-group.modal-group-full {
  min-width: 100%;
}

.modal-fecha-pedido .modal-group label {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.25px;
  font-weight: 500;
  margin: 0;
}

#modalTokenOl .formulario .modal-group label {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  margin: 0 32px;
  opacity: 0.8;
}

.modal-fecha-pedido .modal-group input {
  width: 100%;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #b3b3b3;
}

.modal-fecha-pedido .modal-group input[readonly] {
  background-color: #efefef;
  color: #8f8f8f;
  outline: none;
}

.modal-fecha-pedido .modal-group input.error {
  border-color: #f71522;
  color: #f71522;
}

.modal-fecha-pedido .group-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2px;
  gap: 16px;
}

.modal-fecha-pedido .group-footer button,
.modal-fecha-pedido .modal-group .btn-envia-token {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  min-width: 160px;
  border: 0;
  border-radius: 8px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 1.25px;
}

.modal-fecha-pedido .modal-group .btn-envia-token {
  width: 100%;
}

.modal-fecha-pedido .group-footer button.btn-primary,
.modal-fecha-pedido .modal-group .btn-envia-token {
  background-color: #d2010d;
  color: white;
  flex: 1;
}

.modal-fecha-pedido .group-footer button.btn-primary:hover,
.modal-fecha-pedido .modal-group .btn-envia-token {
  background-color: #ae050d;
  color: white;
}

.modal-fecha-pedido .group-footer button.btn-secondary {
  background-color: #dcdcdc;
  font-weight: 500;
  color: #333;
}

.modal-fecha-pedido .group-footer button.btn-secondary:hover {
  background-color: #b3b3b3;
  color: #333;
}

#conteudoOl {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  border: 1px solid #ddd;
  border-radius: 14px;
  background-color: #f3f3f3;
  content-visibility: auto;
  margin-top: 16px;
  max-height: 450px;
  overflow-y: auto;
}

#conteudoOl::-webkit-scrollbar {
  width: 6px;
}

#conteudoOl::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 100px;
}

#conteudoOl::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 100px;
}

#conteudoOl::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

#conteudoOl .form-check {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background-color: transparent;
  width: 100%;
  border: 1px solid transparent;
  border-bottom: 1px solid #ddd;
  transition: all 0.2s;
  margin-top: -1px;
}

#conteudoOl .form-check.check {
  border-color: #0b59a5;
  color: #0b59a5;
  background-color: rgba(11, 89, 165, 0.09);
}

#conteudoOl .form-check:last-child {
  border-bottom: 0;
}

#conteudoOl .form-check:hover {
  background-color: #eee;
  transition: all 0.2s;
}

#conteudoOl .form-check label {
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.75px;
  font-weight: 400;
  cursor: pointer;
  flex: 1;
}

#conteudoOl .form-check label,
#conteudoOl .form-check input {
  margin: 0;
}

#modalTokenOl .container-modal {
  max-width: 400px;
  margin: 0;
  transform: translateX(-50%);
}

#modalTokenOl h1 {
  text-align: center;
  align-items: center;
}

#modalTokenOl h1:before {
  content: '';
  width: 80px;
  height: 80px;
  border-radius: 100px;
  margin-top: -64px;
  margin-bottom: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 8H20C20.5523 8 21 8.44772 21 9V21C21 21.5523 20.5523 22 20 22H4C3.44772 22 3 21.5523 3 21V9C3 8.44772 3.44772 8 4 8H6V7C6 3.68629 8.68629 1 12 1C15.3137 1 18 3.68629 18 7V8ZM16 8V7C16 4.79086 14.2091 3 12 3C9.79086 3 8 4.79086 8 7V8H16ZM11 14V16H13V14H11ZM7 14V16H9V14H7ZM15 14V16H17V14H15Z' fill='rgba(51,51,51,1)'%3E%3C/path%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  box-shadow: 0px 9px 12px rgb(30 30 30 / 10%);
  background-size: 40px;
}

#modalTokenOl .formulario .modal-group {
  margin-top: 24px;
  gap: 18px;
}

#modalTokenOl .modal-group input {
  height: 48px;
  font-size: 18px;
  text-align: center;
}

#modal-lgpd .btn-modal-pd {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background-color: #f71522;
  color: #fff;
  border-radius: 8px;
  margin-top: 12px;
}

#modal-lgpd .btn-modal-pd:hover {
  background-color: #a10b14;
  color: #fff;
}

@media screen and (min-width: 1280px) {
  #conteudoOl {
    max-height: 280px;
  }
}

@media screen and (min-width: 1536px) {
  #conteudoOl {
    max-height: 480px;
  }
}

@media screen and (max-width: 768px) {
  .modal-fecha-pedido .container-modal {
    width: auto;
    left: 16px;
    right: 16px;
    top: 16px;
    bottom: 16px;
  }

  .modal-fecha-pedido .container-modal #conteudoOl {
    max-height: 300px;
  }

  .modal-fecha-pedido .group-footer button.btn-secondary {
    flex: 1;
  }

  .modal-fecha-pedido#modalCadastroOl .container-modal,
  .modal-fecha-pedido.modal-hash-confirma .container-modal {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) !important;
  }
}

#modalOperadores h1 {
  background: transparent;
  padding: 24px 24px 24px 0;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: .25px;
  border: 0;
  position: relative;
}

div[id*=modal-reabrir] h1 {
  position: relative;
  margin: -20px -20px 20px;
  width: calc(100% + 40px);
}

@media screen and (min-width: 1024px) {
  #modalOperadores h1 {
    padding: 0 0 24px;
    line-height: 1.5;
  }

}