/* -------------------------------------------------- Style -------------------------------------------------- */


/*font-family: 'Lato', sans-serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Pacifico', cursive;*/




 *{
	-webkit-tap-highlight-color: transparent;
  }
  
  html, body{
	  /* overflow-x: hidden !important; */
  }

  .container-fluid{
	  width: 100%;
	  max-width: 1280px;
	  margin: 0 auto;
	  padding: 0;
  }
  
  div#wpadminbar{
	  display: none !important;
  }
  
  p, label, input, a, button, label, span, del, select{
	  font-family: 'Montserrat', cursive;
  }
  
  h1	{
	  font-size: 82px;
	  font-family: 'Pacifico', cursive;
	  font-weight: 200 !important;
	  text-align: center;
	  color: white;
	  margin: 20px 0;
  }
  
  h2{
	  font-size: 72px;
	  line-height: 56px;
	  font-family: 'Montserrat', cursive;
	  font-weight: 200 !important;
	  text-align: center;
  }
  
  h3{
	  font-size: 72px;
	  line-height: 56px;
	  font-family: 'Montserrat', cursive;
	  font-weight: 300;
	  text-align: center;
	  color: white;
	  margin: 20px 0;
  }
  
  /* .tab {
		display: inline-block;
		padding: 10px 20px;
		font-size: 16px;
		color: gray;
		cursor: pointer;
		border-bottom: 2px solid transparent; 
		transition: all 0.3s ease;
	}


	.tab.active {
		color: #007bff; 
		border-bottom: 2px solid #007bff;
		font-weight: bold;
	} */

	.tab {
		margin: 0 15px 0 0;
		display: flex;
    	align-items: center;
	}

	.d-flex{
		display: flex;
		align-items: center;
		justify-content: center;
		/* flex-direction: column; */
	}

	.group-radio{
		display: flex;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		margin: 20px 0;
	}

	.group-radio input{
		width: auto !important;
		margin: 0 5px 0 0;
	}

	.group-radio label{
		width: 100%;
	}

  p{
	  font-size: 18px;
	  line-height: 24px;
	  font-family: 'Montserrat', cursive;
  }
  
  .white{
	  color: white;
  }
  
  /* .btnDefault{
	  font-size: 18px;
	  text-align: center;
	  color: white;
	  font-weight: 500;
	  border-radius: 6px;
	  padding: 10px 35px;
	  position: relative;
	  display: inline-flex;
	  margin: 20px 0;
	  -webkit-box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
	  -moz-box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
	  box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
	  cursor: pointer;
  } */
  
  .btnDefault:disabled{
	  opacity: 0.6;
	  cursor: not-allowed;
  }
  
  .btn{
	  font-size: 18px;
	  text-align: center;
	  font-weight: 500;
	  border-radius: 6px;
	  padding: 10px 35px;
	  position: relative;
	  display: inline-flex;
	  margin: 20px 0;
	  margin-right: 10px;
	  -webkit-box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
	  -moz-box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
	  box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
	  cursor: pointer;
  }
  
  .btn-success{
	  color: #fff;
	  background-color: #28a745;
	  border-color: #28a745;
  }
  
  .btn-error{
	  color: #fff;
	  background-color: #dc3545;
	  border-color: #dc3545;
  }
  
  .cashback {
    background-color: #5f995f;
    margin: 0;
    font-size: 10px;
    color: #fff;
    padding: 0 3px;
    width: 100%;
    margin-top: 10px;
    /* position: absolute !important; */
    position: relative;
    bottom: 0px;
    text-align: center;
}
  
  .boxCashback{
	  background-color: #5f995f;
	  padding: 10px 20px;
	  margin: 0 10px;
	  margin-bottom: 20px;
	  border-radius: 6px;
  }
  
  .boxCashback p{
	  color: white;
	  font-size: 15px;
	  margin: 10px 0;
  }
  
  .boxCashback p:first-child{
	  margin-top: 0;
	  margin-bottom: 10px;
  }
  
  .boxCashback p:last-child{
	  margin: 0;
  }
  
  section.homeApp{
	  position: relative;
	  min-height: 100vh;
	  background-size: cover;
	  background-position: center;
	  display: flex;
	  justify-content: flex-start;
	  align-items: center;
	  flex-direction: column;
	  padding-top: 100px;
  }
  
  section.homeApp::before{
	  content: '';
	  display: block;
	  width: 100%;
	  height: 100%;
	  position: absolute;
	  top: 0;
	  left: 0;
	  background-color: rgba(0,0,0,0.5);
	  z-index: 0;
	  backdrop-filter: blur(5px);
  }
  
  section.homeApp h1{
	  margin-bottom: 50px;
  }
  
  section.homeApp *{
	  position: relative;
	  z-index: 2;
  }
  
  section.homeApp .btnDefault{
	  margin-top: 10px;
	  text-transform: uppercase;
	  transition: 0.3s all;
	  animation: pulse 1.5s infinite;
	  min-width: 250px;
	  text-align: center;
	  justify-content: center;
  }
  
  @keyframes pulse{
	  0%{
		  transform: scale(1.0);
	  }
	  50%{
		  transform: scale(1.03);
	  }
	  100%{
		  transform: scale(1.0);
	  }
  }
  
  section.homeApp h3{
	  margin-bottom: -30px;
  }
  
  section.ofertasPage{
	  padding: 100px 0;
	  padding-top: 50px;
	  position: relative;
	  min-height: 100vh;
	  background-size: cover;
	  background-position: center;
	  display: flex;
	  justify-content: flex-start;
	  align-items: center;
	  flex-direction: column;
  }
  
  section.ofertasPage h2{
	  color: white;
	  margin-bottom: 80px;
	  font-family: 'Pacifico', cursive;
	  font-size: 72px;
	  text-align: center;
  }
  
  section.ofertasPage::before{
	  content: '';
	  display: block;
	  width: 100%;
	  height: 100%;
	  position: absolute;
	  top: 0;
	  left: 0;
	  background-color: rgba(0,0,0,0.5);
	  z-index: 1;
	  backdrop-filter: blur(5px);
  }
  
  section.ofertasPage *,
  article#auth *{
	  position: relative;
	  z-index: 2;
  }
  
  article#auth{
	  width: 100%;
	  height: 100%;
	  min-height: 100vh;
	  overflow-y: auto;
	  position: relative;
	  top: 0;
	  left: 0;
	  background-color: rgba(0,0,0,0.9);
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  padding: 100px 0;
	  z-index: 1;
	  background-position: center;
	  background-size: cover;
  }
  article#auth select{
	padding: 9px 5px;
  }
  
  article#auth::before{
	  content: '';
	  display: block;
	  width: 100%;
	  height: 100%;
	  position: absolute;
	  top: 0;
	  left: 0;
	  background-color: rgba(0,0,0,0.5);
	  z-index: 0;
	  backdrop-filter: blur(5px);
  }
  
  article#auth .content{
	  max-width: 400px;
	  width: calc(100% - 40px);
	  height: auto;
	  padding: 50px 20px;
	  border-radius: 10px;
	  background-color: rgba(255,255,255,1);
	  box-shadow: 0px 0px 15px 0px rgba(255,255,255,0.5);
  }
  
  article#auth .btnDefault{
	  padding: 10px 25px;
	  text-transform: uppercase;
	  font-size: 14px;
  }
  
  article#auth.remove{
	  transform: translateY(-200vh);
	  transition: 1s all;
  }
  
  article#auth .step-0{
	  display: block;
  }
  article#auth :is(.step-1, .step-2, .step-3, .step-4, .step-5){
	  display: none;
  }

  .select2-container--default .select2-selection--single .select2-selection__arrow b{
	display: none !important;
  }

  .select2-container--default .select2-selection--single{
	
	border-radius: 8px !important;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
	height: auto !important;
	padding: 5px 0 3px 0 !important;
  }

  .select2-container--default .select2-selection--single .select2-selection__rendered{
	color: #212529 !important;
  }

  .select2-results__option[aria-selected]{
	list-style: none !important;
	font-size: 10px !important;
	color: #444;
  }

  .select2-container--default .select2-selection--single .select2-selection__placeholder{
	font-size: 12px !important;
	color: #212529 !important;
  }

  .select2-container .select2-selection--single .select2-selection__rendered{
	font-size: 12px !important;
	color: #212529 !important;
	text-transform: lowercase;
  }
  
  article#auth.forgot-password .step-3{
	  display: block;
  }

  article#auth.forgot-password > div{
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  article#auth.forgot-password :is(.step-1, .step-2){
	  display: none;
  }
  
  .step-1 .d-flex{
	  display: flex;
	  align-items: center;
	  justify-content: space-between;
  }
  article#auth .step-1 .btnDefault {
    margin: 0;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
    padding: 15px 25px;
  }
  article#auth .step-1 .d-flex.btn-login{
	display: flex;
    flex-direction: column;
    margin-top: 10px;
  }
  article#auth .step-1 .d-flex.btn-login .btnForgotPassword{
	font-size: 12px;
	text-decoration: underline;
	margin-top: 5px;
  }


  article#auth.login .step-1{
	display: block;
  }
  article#auth.login .step-0,
  article#auth.login .step-2{
	  display: none;
  }
  

  article#auth.register .step-0,
  article#auth.register .step-1{
	display: none;
  }

  article#auth.forgot-password .step-0,
  article#auth.forgot-password .step-1,
  article#auth.forgot-password .step-2{
	display: none;
  }

  article#auth.register .step-2{
	  display: block;
  }
  
  article#auth .step-0 h2 {
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: bold !important;
	font-family: 'montserrat', sans-serif;
}
  article#auth .step-0 .btns{
	align-items: center;
  }
  article#auth .step-0 .btns .btnDefault{
	justify-content: center;
	padding: 20px 10px;
	margin: 5px 0;	
	border-radius: 50px;
	font-size: 16px;
	width: 90%;
	font-weight: bold !important;
  }
  article#auth .step-0 .btns .btnDefault:first-child{
	color: white !important;
  }
  article#auth .step-0 .btns .btnDefault:last-child{
	background-color: transparent !important;
  }
  
  article#auth h2{
	  font-family: 'montserrat', cursive;
	  font-size: 28px;
	  text-align: center;
	  font-weight: bold !important;
  }
  
  article#auth p{
	  text-align: center;
  }
  
  article#auth form{
	  margin-top: 30px;
	  margin-bottom: 50px;
  }
  
  article#auth .btns{
	  display: flex;
	  justify-content: center;
  }
  
  article#auth form .btnDefault{
	  margin: 0;
  }
  
  article#auth form ~ p{
	  margin-bottom: 20px;
	  margin-top: -20px;
  }
  
  .input-group {
	  display: flex;
	  align-items: center;
  }
  
  .input-group-append {
	  cursor: pointer;
	  position: absolute !important;
	  right: 5px;
	  top: 11px;
  }
  
  .input-group-text.eye {
	  padding: 0;
  }
  
  .fa-eye,
  .fa-eye-slash {
	  font-size: 16px;
  }
  
  .form-check{
	  display: flex;
  }
  
  .form-check input{
	  width: auto;
  }
  
  .message{
	  display: none;
	  padding: 10px;
	  border-radius: 6px;
	  /* margin-top: -20px !important; */
  }
  
  .success .message.success,
  .success .message{
	  display: block;
	  background-color: #a2db58;
	  color: #3c763d;
  }
  
  .error .message.error,
  .error .message{
	  display: block;
	  background-color: #f2dede;
	  color: #a94442;
  }
  
  .message.success{
	  background-color: #a2db58;
	  color: #3c763d;
  }
  
  .message.error{
	  background-color: #f2dede;
	  color: #a94442;
  }
  
  .createAccount {
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    line-height: 8px;
    padding: 5px 0 !important;
    font-weight: bold;
  }
  
  label{
	  font-size: 14px;
  }
  
  input, select{
	  width: 100%;
	  padding: 10px 5px;
	  border: none;
	  margin-bottom: 15px;
  }
  
  select[name="loja"]{
	  margin-top: 5px;
  }
  
  .blocoFilter{
		display: flex;
		align-items: center;
		justify-content: space-between;
		background-color: white;
		border-radius: 6px;
		/* margin-bottom: 20px; */
		padding: 20px 20px 10px 20px;
		position: sticky;
		margin-bottom: 5px;
  }

  .blocoFilter.fixed{
	position: fixed;
    top: 0;
	left: 0;
    z-index: 999;
    margin: 0;
    width: 100%;
    border-radius: 0;
  }

  .blocoFilter.fixed select{
	display: none;
  }

  .blocoFilter label{
	font-size: 14px;
	color: white;
	margin-bottom: 10px;
  }

  .blocoFilter select{
	margin-bottom: 10px !important;
  }
  
  .blocoFilter input{
	  margin-bottom: 0;
  }
  
  .blocoFilter .form-control{
	  width: 100%;
	  display: flex;
	  align-items: center;
  }
  
  .blocoFilter .form-control i{
	  font-size: 15px;
	  margin-left: -15px;
  }
  
  .blocoOferta{
	  display: flex;
	  background-color: white;
	  border-radius: 6px;
	  padding: 10px;
	  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
	  cursor: pointer;
	  margin-bottom: 20px;
	  width: 100%;
	  transition: opacity 0.5s ease-in-out;
	  opacity: 1;
  }
  
  .blocoOfertaApp{
	  transition: opacity 0.5s ease-in-out;
	  opacity: 1;
  }
  
  .columnOferta > a{
	  width: 100%;
  }
  
  .blocoOferta:hover {
	  opacity: 0.7;
  }
  
  .blocoOferta .imagemProduto{
	  width: 30%;
	  height: 150px;
	  margin-right: 20px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  flex-direction: column;
	  position: relative;
  }
  
  .blocoOferta .infosOferta{
	  width: calc(70% - 20px);
	  padding: 10px 0;
  }
  
  .imagemProduto img {
	  max-height: 150px;
  }

	#modalProduto .imagemProduto img{
	max-width: 320px;;
  }
  
  .nomeProduto{
	  height: 50px;
	  font-size: 18px;
	  font-weight: bold;
	  margin: 0 0 10px 0;
	  text-transform: uppercase;
	  color: #4c4c4c;
  }
  
  .precoAntigo{
	  font-size: 14px;
	  font-weight: normal;
	  color: gray;
	  margin: 0;
	  text-decoration: line-through;;
  }
  
  .precoOferta{
	  font-size: 16px;
	  font-weight: bold;
	  color: orange;
	  margin: 0 0 10px 0;
  }
  
  .descricaoOferta{
	font-size: 14px;
	font-weight: normal;
	margin: 0;
	background-color: #c1c1c1;
	color: white;
	text-align: center;
  }
  
  .lgpd{
	  display: flex;
	  align-items: center;
	  margin-top: 10px;
	  margin-bottom: 20px;
  }
  
  .lgpd input{
	  width: auto;
	  margin: 0;
	  margin-right: 5px;
  }
  
  .lgpd span {
    font-size: 12px;
  }
  
  .lgpd span a{
	  text-decoration: underline;
  }
  
  #cadastro div{
	  padding: 0 1px !important;
  }
  
  .headApp{
	  width: 100%;
	  padding: 0 10px;
	  margin-bottom: 100px;
	  background-position: center top;
	  background-size: cover;
	  background-position: center;
	  position: relative;
  }
  
  .headApp::before{
	  content: '';
	  display: block;
	  position: absolute;
	  top: 0;
	  left: 0;
	  background-color: rgba(0,0,0,0.5);
	  width: 100%;
	height: 100%;
  }
  
  .headApp .col-xs-12:first-child .boxIntrod{
	  margin-top: 0;
  }
  
  .boxInfo{
	  width: 100%;
	  border-radius: 6px;
	  background-color: white;
	  padding: 20px;
	  margin-bottom: 20px;
	  display: flex;
	  justify-content: space-between;
  }
  
  .boxInfo .pC{
	  display: flex;
	  align-items: center;
  }
  
  .boxInfo a{
	  text-align: center;
	  font-size: 16px;
  }
  
  .boxInfo .pC p{
	  margin: 0;
  }
  
  .boxInfo .pC p:first-child{
	  font-size: 18px;
	  font-weight: bold;
	  margin-right: 10px;
  }
  
  .boxInfo .pC p:nth-child(2){
	  font-size: 18px;
  }
  
  .boxIntrod{
	  display: flex;
	  justify-content: space-between;
	  margin: 20px 0;
  }
  
  .boxIntrod a{
	  font-size: 18px;
  }
  
  .boxIntrod *{
	  color: white;
	  margin: 0;
  }
  
  .boxInd{
	  border-radius: 8px;
	  padding: 10px;
  }
  
  .boxInd label{
	  font-size: 14px;
	  line-height: 20px;
	  color: white;
  }
  
  .boxInd p{
	  margin: 10px 0;
	  margin-bottom: 5px;
	  overflow-wrap: break-word;
	  background-color: rgba(255, 255, 255, 0.5);
	  padding: 5px;
	  font-size: 16px;
  }
  
  .paddingHidde{
	  padding: 0 !important;
  }
  
  .clipboard {
	  position: relative;
	  display: flex;
	  align-items: center;
	  margin-top: 10px;
  }
  
  .copy-input {
	  width: 100%;
	  cursor: pointer;
	  background-color: #eaeaeb;
	  border:none;
	  color:#6c6c6c;
	  font-size: 14px;
	  border-radius: 8px;
	  padding: 10px 45px 10px 10px;
	  font-family: 'Montserrat', sans-serif;
	  margin: 0;
  }
  
  .copy-input:focus {
	outline:none;
  }
  
  .copy-btn {
	  height: 41px;
	  background-color: #eaeaeb;
	  font-size: 18px;
	  padding: 6px 9px;
	  border-radius: 8px;
	  border:none;
	  color:#6c6c6c;
	  margin-left:-20px;
	  transition: all .4s;
  }
  
  .copy-btn:focus {
	  outline:none;
  }
  
  .copied {
	font-family: 'Montserrat', sans-serif;
	width: 100px;
	opacity:0;
	position:absolute !important;
	  bottom: 20px;
	  left: 0;
	  right: 0;
	  margin: auto;
	color:#4c4c4c;
	padding: 15px 15px;
	background-color: #fff;
	border-radius: 5px;
	transition: .4s opacity;
  }
  
  .change-password{
	  font-size: 14px !important;
  }
  
  .separateTable{
	  border-bottom: 1px solid;
	  padding: 10px 0;
	  font-weight: bold;
  }
  
  .modal {
	position: fixed;
	top: 0;
	width: 100%;
	min-height: 100vh;
	padding: 0;
	display: flex !important;
	transform: translateX(-100%);
	z-index: 99999999;
	transition: transform 0.4s ease; /* Aqui é o segredo! */
  }
  
  .modal.open {
	transform: translateX(0);
	overflow-y: hidden !important;
	height: 100%;
	transition: transform 0.4s ease; /* Aqui é o segredo! */
  }
  
  .modal .container-fluid{
	padding: 0;
	overflow: hidden !important;
  }
  
  .modal h3{
	  color: #4c4c4c;
	  text-align: left;
	  font-size: 22px;
	  line-height: 26px;
	  font-weight: bold;
  }
  
  .modal h3 ~ p{
	  margin: 0;
	  font-size: 12px;
  }

  .modal#notificacao .contentModal{
	display: flex;
	flex-direction: column-reverse;
  }
  
  @keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
  }
  
  .modal .box{
	  width: 100%;
	  max-width: 100%;
	  min-height: 100vh;
	  background-color: white;
	  /* overflow-y: auto; */
	  overflow-y: hidden;
  }
  
  @keyframes translate {
	from { transform: translateX(-100%); }
	to { transform: translateX(0); }
  }
  
  @keyframes translateReverse {
	from { transform: translateX(0); }
	to { transform: translateX(-100%); }
  }
  
  @media(min-width: 768px){
	  .modal .box{
		  max-width: 400px;
	  }
	  .modal .container-fluid{
		  max-width: 100%;
	  }
  }
  
  .modal#recoveryInfo .box{
	  min-height: auto !important;
	  margin: 0 auto;
	  margin-top: 100px !important;
	  transform: translateX(0) !important;
	  animation: none !important;
	  border-radius: 6px;
	  height: auto !important;
  }
  
  .segTable{
	  background-color: white !important;
  }
  
  .segTable th{
	  padding: 0 !important;
	  padding-bottom: 20px !important;
  }
  
  .segTable p{
	  margin: 0 !important;
  }
  
  .modal .box table{
	  min-height: calc(100vh - 200px);
  }
  
  .headModal{
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  flex-direction: column;
	  position: relative;
	  width: 100%;
	  background-size: cover;
	  background-position: center;
	  height: 280px;
	  padding-top: 60px;
  }

  	.headModal::after{
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background-color: rgba(0,0,0,0.8);
		z-index: 1;
	}

  .headModal h3{
	color: white;
	font-size: 32px;
	line-height: 38px;
	padding: 0 20px;
	text-align: center;
	position: relative;
	z-index: 2;
  }

  .contentModal{
	border-radius: 20px 20px 0px 0px;
	background-color: white;
	margin-top: -20px;
    padding: 20px 20px 200px 20px;
	position: relative;
	z-index: 2;
	overflow-y: auto;
    max-height: calc(100vh - 135px);
	overflow-x: hidden;
  }
  
  .headModal .myAccount{
	border: 1px solid #fdfdfd;
	width: 100%;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
	font-size: 22px;
	font-weight: normal;
	box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 10%);
	text-transform: uppercase;
	line-height: 60px;
	border-radius: 6px;
	padding: 20px;
	margin-top: 40px;
  }
  
  .myAccount h3{
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	text-transform: capitalize;
  }
  
  .myAccount h3 i{
	  font-size: 42px;
	margin-bottom: 10px;
  }
  
  #closeModal{
	  position: absolute;
	  top: 80px;
	  right: 20px;
	  cursor: pointer;
	  font-size: 22px;
	  z-index: 2;
	  color: white
  }
  
  #recoveryInfo form{
	  margin-top: 30px;
  }
  
  .modal#change-password .message{
	  display: none;
	  margin-top: 10px !important;
  } 
  
  .modal#change-password .formPassword.message_1 .m1{
	  display: block;
  }
  
  .modal#change-password .formPassword.message_2 .m2{
	  display: block;
  }
  
  .modal#change-password .formPassword.message_3 .m3{
	  display: block;
  }
  
  #atualizarPerfil.message_1 .m1{
	  display: block;
  }
  
  #atualizarPerfil.message_2 .m2{
	  display: block;
  }
  
  .modal#change-password form{
	  margin-bottom: 20px;
  }

  .resultadoImagem{
	cursor: pointer;
    height: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .resultadoImagem img{
	width: auto;
    height: 100%;
    margin: 0 auto;
    display: block;
  }

  .resultadoImagem img.selected{
	border: 1px solid black
  }

  .form-search-image{
	width: 100%;
	margin: 20px 0
  }
  
  #modalProduto .imagemProduto{
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  width: 100%;
	  /* height: 150px; */
	  flex-direction: column;
	  padding: 20px 0 0 0;
  }

  #modalProduto .infoProduto{
	margin-top: 20px;
  }
  
  #modalProduto .imagemProduto img{
	  width: auto;
	  height: auto;
  }
  
  #modalProduto .infoProduto *{
	  /* text-align: center; */
	    font-size: 18px;
    	line-height: 26px;
  }
  
  #modalProduto .infoProduto p{
	display: flex;
	flex-direction: column;
	/* align-items: center; */
  }
  
  #modalProduto .infoProduto p:not(:first-child) strong{
	  font-size: 16px;
  }
  
  #modalProduto .infoProduto p:first-child{
	  font-weight: bold;
	  margin-top: 10px;
  }
  
  #modalProduto .infoProduto p:nth-child(2n){
	  margin: 0;
	  opacity: 0.5;
	  font-size: 20px;
  }
  
  #modalProduto .infoProduto p:nth-child(2n) strong{
	  font-size: 14px;
  }
  
  #modalProduto .infoProduto p:nth-child(2n) label{
	  text-decoration: line-through;
  }
  
  #modalProduto .infoProduto p:last-child{
	  color: #107410;
	  margin-top: 10px;
	  margin-bottom: 0;
  }
  
  #modalProduto .infoProduto p label{
	  font-weight: bold;
	font-size: 26px;
  }
  
  #modalProduto .infoProduto p:nth-child(2n) label{
	  font-size: 20px;
  }
  
  #modalProduto .infoProduto p:last-child label{
	  font-size: 32px;
	line-height: 36px;
  }
  
  #modalConfirmacao{
	  align-items: center;
	padding: 0 20px;
  }
  
  #modalConfirmacao .box{
	  max-width: 300px;
	height: auto !important;
	min-height: auto;
	padding: 15px;
	border-radius: 6px !important;
  }
  
  #modalConfirmacao .botoesModal{
	  display: flex;
	  justify-content: space-between;
  }
  
  #modalConfirmacao .botoesModal button{
	  padding: 10px 20px;
  }
  
  .noResults{
	  text-align: center;
	  font-size: 22px;
	  line-height: 32px;
	  color: #4c4c4c;
	  margin-bottom: 150px;
	margin-top: 50px !important;
  }
  
  .loading {
	  text-align: center;
	  color: white;
	  font-size: 16px;
	  line-height: 32px;
		animation: pulse 5s ease-in-out infinite;
		margin-bottom: 150px;
  }
  
  @keyframes pulse {
	0% {
	  transform: scale(1);
	}
	50% {
	  transform: scale(1.05);
	}
	100% {
	  transform: scale(1);
	}
  }
  
  .page-id-990 footer{
	    padding: 75px 0px 110px 0px;
    	background-color: #ededed;
  }
  
  table {
	font-family: arial, sans-serif;
	border-collapse: collapse;
	width: 100%;
  }
  
  td, th {
	border: 1px solid #dddddd;
	text-align: left;
	padding: 10px !important;
	font-size: 16px;
  }
  
  /* tr:nth-child(even) {
	background-color: #dddddd;
  } */
  
  #closeAddApp{
	  position: absolute;
	  top: 50%;
	  transform: translateY(-50%);
	  right: 10px;
	  cursor: pointer;
	  font-size: 16px;
  }
  
  .addApp {
	  transition: 0.3s all;
  /*  	width: 100%;*/
		position: fixed;
	  top: auto;
	  left: auto;
	  right: 0;
	  bottom: 0;
	  z-index: 9999;
	  padding: 10px;
	  display: flex;
	  justify-content: flex-start;
	  cursor: pointer;
	  transform: translateX(0);
  }
  
  .addApp img{
	  max-width: 100px;
  }
  
  .addApp button{
	  font-size: 18px;
	  font-weight: 600;
	  color: black;
	  background-color: transparent;
	  border: none;
	  cursor: pointer;
  }
  
  .boxAddApp{
	  /* animation: pulse 1.5s infinite; */
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		max-width: 100%;
		padding: 8px 20px;
		min-width: 160px;
		padding-left: 10px;
		border-radius: 6px;
		background-color: #FFF;
		-webkit-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.25);
		-moz-box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.25);
		box-shadow: 0px -5px 10px 0px rgba(0,0,0,0.25);
		color: white !important;
  }
  
  .boxAddApp i,
  .boxAddApp button{
	  font-size: 18px;
	  color: white !important;
	  line-height: 20px;
  }
  
  .cc-revoke.cc-bottom{
	  display: none !important;
  }
  
  .modal-backdrop{ 
	  display: none !important; 
  }
  
  .lb-dataContainer{
	  display: none !important;
  }
  
  .listOfertas .hidden{
	  display: none !important;
  }
  
  #webpushr-notification-card-wrapper notification_title{
	  height: auto !important;
  }
  
  #safari :is(p, li){
	  font-size: 18px;
  }
  
  #safari  ul li{
	  margin: 20px 0;
	  line-height: 26px;
	  list-style: none;
  }
  
  footer .copyright{
	  z-index: 1;
	  position: relative;
	  /* background: #4c4c4c; */
	  padding: 10px;
  }
  
  footer .copyright a{
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  color: white;
  }
  
  footer .copyright img{
	  max-width: 85px;
	  margin-left: 10px;
  }
  
	#atualizarPerfil{
		margin-left: 0px;
		margin-right: 0px;
	}

	.formPassword{
		margin-right: 0px;
		margin-left: 0px;
	}

  .disabledAcount{
	  position: relative;
  }
  
  .disabledAcount .step{
	  display: none;
  }
  
  .disabledAcount .step.show{
	  display: block;
  }
  
  .disabledAcount .step.show#step-1{
	  display: flex;
	  justify-content: center;
  }
  
  .disabledAcount .step .d-flex{
	  display: flex;
  }
  
  .disabledAcount .step p{
	  font-size: 24px;
	  line-height: 30px;
  }
  
  .disabledAcount .step#step-5 p{
	  text-align: center;
  }
  
  .disabledAcount .step#step-5 p:first-child{
	  font-size: 28px;
	  line-height: 32px;
	  font-weight: bold;
  }
  
  .disabledAcount .step#step-5 p:first-child > p{
	  font-size: 18px;
	  line-height: 24px;
  }
  
  .disabledAcount .step#step-5 span{
	   margin: 0 auto;
	  position: relative;
	  display: block;
	  font-size: 12px;
	  width: 100%;
	  text-align: center;
  }
  
  .columnTabloide{
	  padding: 0 !important;
  }
  
  .columnTabloide img{
	  border-radius: 6px;
  }
  
  .politica-de-privacidade{
	  margin-top: 10px;
	font-size: 12px;
	text-decoration: underline;
  }
  
  #wp-admin-bar-root-default li:not(#wp-admin-bar-site-name):not(#wp-admin-bar-menu-toggle){
	  display: none !important;
  }
  
  .lb-loader, .lightbox{
	  z-index: 999999999 !important;
  }
  
  .lightboxOverlay{
	  z-index: 999999998 !important;
  }
  
  .slick-dots{
	  display: flex;
	  justify-content: center;
  }
  
  .slick-dots li{
	  list-style: none;
	  margin: 0 10px;
  }
  
  .slick-dots li button{
	  border: none;
	  font-size: 0;
	  width:  15px;
	  height: 15px;
	  background-color: #6666;
	  border-radius: 100%;
	  cursor: pointer;
  }
  
  .slick-dots li.slick-active button{
	  background-color: #444;
  }
  
  .ofertasRotate > p{
	  margin: 20px 0;
	  text-align: center;
	  font-size: 32px;
	  color: #666;
  }
  
  .etiqueta{
	 	/* position: absolute;
	  	right: 10px;
	  	top: 40px; */
	    border-radius: 5px;
		padding: 4px 7px;
		text-align: center;
		color: white;
		font-size: 12px;
		width: max-content;
		margin: 10px 0;
  }
  
  .etiqueta.oferta{
	  background-color: #b11515;
  }
  
  .etiqueta.clube{
	  background-color: #107410;
  }

  .aviso{
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 5px;
  }
  
  
  @media(max-width:  768px){
	  table{
		  display: block;
		max-width: -moz-fit-content;
		max-width: fit-content;
		margin: 0 auto;
		overflow-x: auto;
		white-space: nowrap;
	  }
	  #modalConfirmacao .box{
		  max-width: 100%;
	  }
	  .columnTabloide{
		  margin-top: 50px;
	  }
	  .reverseMobile{
		  flex-direction: column-reverse !important;
	  }
	  .boxAddApp{
		  width: 100%;
	  }
	  .modal .box{
		  overflow-x: scroll;
		  height: 100vh;
	  }
	  .modal.open{
		  overflow-y: scroll;
		  height: 100%;
	  }
	  .selectLojas{
		  width: 100%;
	  }
	  .footer.ios{
		  height: auto;
	  position: relative;
	  bottom: 0;
	  z-index: 2;
	  width: 100%;
	  background-color: #4c4c4c;
	  display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: column;
	  }
	  .footer.ios .boxAddApp {
		  width: 100%;
		  box-shadow: none;
		  border-radius: 0;
		  background-color: transparent;
		  justify-content: center;
		  padding-left: 0;
	  }
	  .footer.ios .addApp img {
		  max-width: 35px;
	  }
	  .footer.ios .addApp{
		  position: relative;
		  padding: 0 10px;
		  transform: translateX(-100%);
	  }
	  .footer.ios  #closeAddApp{
		  display: none;
	  }
	  .blocoFilter{
			flex-direction: column-reverse;
			padding: 10px;
			margin-bottom: 5px;
	  }
	  .columnTabloide img{
		  border-radius: 6px;
	  }
	  .columnTabloide div.col-xs-12:not(:last-child){
		  margin-bottom: 20px;
	  }
  }
  


  div#__wp-uploader-id-2 {
    z-index: 999999999999999;
}

.fancybox-container{
	z-index: 999999999999999 !important;
}

.lista-pagamentos {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    padding: 0px 10px 0px 0px;
}

.filter-list{
	width: 35px;
    height: 35px;
    font-size: 18px;
    background: white;
    border: none;
}

article.filter__page.half_page.actived {
	width: 50% !important;
	padding: 0px 0px 100px 0px;
}

/* CTA DE GRUPO */

.cta-modal {
  	display: none;
  	position: fixed;
  	top: 0; left: 0;
  	width: 100%; height: 100%;
  	background: rgba(0,0,0,0.7);
  	z-index: 9999999999;
  	justify-content: center;
  	align-items: center;
  	font-family: Arial, sans-serif;
}

.cta-modal .cta-content {
  	background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: calc(100% - 20px);
    box-shadow: 0 4px 10px rgba(85, 82, 82, 0.3);
}

.cta-modal .cta-content .title__group_modal{
	font-size: 28px;
    font-weight: bold;
	line-height: 34px;
	margin: 0
}

.cta-modal .cta-content p:not(.title__group_modal){
	font-size: 16px;
	line-height: 22px;
	margin: 15px 0;
}

.cta-modal .cta-content img{
	max-height: 320px;
}

.cta-modal button {
  	padding: 12px 20px;
  	border: none;
  	border-radius: 6px;
  	font-size: 16px;
  	cursor: pointer;
    min-width: 200px;
}

#joinNowBtn { background: #128c7E; color: #fff; }

#laterBtn {     
	background: transparent;
    text-decoration: underline; 
}

#countdownText { margin-top: 15px; font-size: 14px; color: #555; }