@charset "UTF-8";
:root{
  --color_light:#ffffff;
  --color_lighting:#f3f5f6;
  --checkout_form_input_height:45px;
  --color_label_active:#818181;
  --label_active_font_size: 12px;
  --color_border_error: #e63636;
  --color_border_success_focus: #8a2be2;
  --color_border_success: #005fe9;
  --color_progress_active: #1aa91a;
  --color_progress_spinner: #096c09;
}

body{
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background-color: var(--color_lighting);
}
html {
  scroll-behavior: smooth;
}
b, strong {
  font-weight: 700!important;
}
a{
  text-decoration: none;
  transition: all 200ms ease-in-out;
}
.container_checkout{
  max-width: 1140px;
}
.bg_gray_light{
  background-color: var(--color_lighting) !important;
}
.bg_green_safety{
  background-color: #1aa91a !important;
}
#header .nav_cart{
  padding: 10px 0;
}
#header h4{
 font-size: 0.8rem !important;
 font-weight: 500;
 letter-spacing: 0.1em; 
}
.logo a{
  color: #fff;
}
.logo a:hover{
  color: #fff;
  transform: scale(1.2);
}
#header .icon_safety{
  width: 17px; 
  height: 17px; 
  border-radius: 20px; 
  background-color: #00b900;
  padding: 8px 10px; 
  margin-right: 7px;
  text-align: center;
}
#header .icon_safety i{
  font-size: 1.1em;
  margin-right: -2px;
}

/* Progress */
.purchase_progress{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.purchase_progress .progress_item{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.purchase_progress .progress_text{
  font-size: 0.8rem;
  font-weight: 500;
  color: #ababab;
  margin-top: 10px;
  text-transform: uppercase;
}
.progress_item .progress_icon{
  width: 50px;
  height: 50px;
  border-radius: 50px;
  text-align: center;
  background-color: #efefef;
  border: 2px solid #ccc;
  color: #aaa;
  padding: 10px;
  z-index: 2;
}
.progress_item .progress_icon i{
  font-size: 1.1rem;
  line-height: 1.9rem;
}
.progress_item.checked .progress_icon{
  background-color: #0fa347;
  border-color: #0fa347;
  color: #fff;
}
.purchase_progress .progress_item:nth-child(1)::before,
.purchase_progress .progress_item:nth-child(2)::before,
.purchase_progress .progress_item:nth-child(1):after,
.purchase_progress .progress_item:nth-child(2):after{
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  top: 32%;
  left: 15px;
  background-color: #ccc;
  z-index: 1;
}
.purchase_progress .progress_item:nth-child(2):before,
.purchase_progress .progress_item:nth-child(2):after{
  left: 45%;
}
.purchase_progress .progress_item.checked:nth-child(1):after{
  background-color: var(--color_progress_active);
  width: 25%;
}
.purchase_progress .progress_item.checked:nth-child(2):after{
  background-color: var(--color_progress_active);
  left: 25%;
  width: 47%;
}
.purchase_progress .progress_item.checked:nth-child(3):after{
  content: "";
  position: absolute;
  width: 50%;
  height: 2px;
  top: 32%;
  left: 46%;
  background-color: var(--color_progress_active);
  z-index: 1;
}
.progress_item .spinner-border{
  position: absolute;
  z-index: 3;
  width: 56px;
  height: 56px;
  color: var(--color_progress_spinner) !important;
  top: -3px;
}
/* End Progress */

.box_cart_int{
  margin-top: 15px;
  margin-bottom: 30px;
  background-color: var(--color_light); 
  border-radius: 10px; 
  box-shadow: 0 0 6px 0 rgba(43, 41, 41, 0.2);
}
.banner{
  min-height: 100px;
  background-color: blueviolet;
  border-radius: 7px;
  overflow: hidden;
}
.box_summary_int{
  margin-top: 30px;
  background-color: var(--color_light); 
  border-radius: 10px; 
  box-shadow: 0 0 6px 0 rgba(43, 41, 41, 0.2);
}
.box_summary_int .title_desc{
  margin-bottom: 20px;
  padding-bottom: 7px;  
  border-bottom: 1px solid #c2c0c0;
  color: #777;
}

.btn_accordion:not(.collapsed){
  box-shadow: none;
}
.btn_accordion.collapsed{
  background-color: #e7f1ff;
  box-shadow: none;
}

.container_checkout_pix .sticky-md-top.sticky_mt_20{
  margin-top: 0 !important;
  margin-bottom: 30px;
}
.title_checkout_parts{
  width: 100%;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0;
}
.title_checkout_parts .title_number {
  background-color: #b8b8b8;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 7px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.title_checkout_parts .title_text {
  background-color: #d5d5d5;
  color: #919191;
  font-size: 1rem;
  line-height: 1;
  font-weight: 600;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 7px 13px 7px 17px;
  margin-left: -8px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.title_checkout_parts ~ p small{
  font-weight: 400;
  color: #b8b8b8;
  margin-left: 20px;
}

.form-group{
  position: relative;
  height: var(--checkout_form_input_height);
}
.form__input{
  font-size: 0.9rem;
  padding: 10px 15px;
  height: var(--checkout_form_input_height);  
  font-weight: 500;
  transition: all .4s ease-out;
  border: 1px solid #bbb;
}
.form__input:focus{
  box-shadow: none;
  border-color: #005fe9;
}
.form-group .form__label{
  position: absolute;
  left: 6px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--color_label_active);
  user-select: none;
  transition: all 200ms ease-in-out;
  line-height: 21px;
  z-index: 5;
  background-color: var(--color_light); 
  padding: 0 7px;
  font-weight: 500;
  cursor: text;
}

.form__input ~ .form__label {
  top: calc(var(--checkout_form_input_height) / 2);
  transform: translate(0,-50%);
}

.form__input:focus ~ .form__label,
.form__input:not(:placeholder-shown).form__input:not(:focus) ~ label {
  top: 0px;
  left: 16px;
  font-size: var(--label_active_font_size)!important;
}
.input__error,
.input__error:focus,
.input__error:not(:placeholder-shown).input__error:not(:focus){
  border: 2px solid var(--color_border_error);
}
.input__success:focus{
  border: 2px solid var(--color_border_success_focus);
}
.input__success:not(:placeholder-shown).input__success:not(:focus){
  border: 1px solid var(--color_border_success);
}
.form__input ~ .input__icon{ 
  position: absolute;
  width: 16px;
  height: 16px;
  font-size: 1rem;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  z-index: 5;
  text-align: right;
  transition: all 1s ease-in-out;
}
.form__input ~ .input__icon{
  top: 16px;
  right: 16px;
}
.form__input ~ .input__icon{
  top: 15px;
  right: 16px;
}
.input__success ~ .input__icon::before{ 
  content: "\f00c";
  color: var(--color_border_success_focus);
  transition: all 1s ease-in-out;
}
.input__error ~ .input__icon::before{ 
  content: "\f00d";
  color: var(--color_border_error);
  transition: all 1s ease-in-out;
}
.mb-3-small{
  margin-bottom: 1rem!important;
}
.cep_not_found{
  display: none;
}
.cep_not_found span{
  color: rgb(220,53,69);
  font-size: 0.8em;
  font-weight: 600;
  margin-bottom: 12px;
}
.form_shipping{
  position: relative;
  width: 100%;
  margin-bottom: 15px;
  padding-left: 0;
}
.form_shipping label{
  width: 100%;
  cursor: pointer;
  border: 1px solid #d1d0d0;
  padding: 11px 15px;
  font-size: 0.9em;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 10px;
  transition: all 250ms ease-in-out;
}
.form_shipping label:hover{
  background-color: #97fbfb;
  border-color: #005fe9 !important;
}
.form_shipping:has(.form-check-input:checked) label{
  color: #005fe9;
  border-color: #005fe9 !important;
}
.form_shipping .form-check-input{
  margin-left: 0;
  margin-right: 10px;
}
.form_shipping .box_price_shipping_1{
  display: inline-block;
}
.form_shipping .box_price_shipping_2{
  display: inline-block;
  margin-left: 25px;
  text-align: left;
  font-weight: 600;
}
.form_shipping:has(.form-check-input:checked) .box_price_shipping_1,
.form_shipping:has(.form-check-input:checked) .box_price_shipping_2{
  font-weight: 700;
}
.ship_info {
  width: 100%;
  font-size: .85rem;
  font-weight: 600;
  /* color: #009b1d; */
  color: #61b746;
  letter-spacing: .4px;
  margin-top: 5px;
}
.ship_info #shipf_dayWeek,
.ship_info #shipf_dayWeek2,
.ship_info #ship_dayWeek,
.ship_info #ship_dayWeek2 {
  text-transform: capitalize;
  font-weight: 800;
}
.separator_parts{
  display: block;
  width: 80%;
  height: 1px;
  border-top: 2px dotted #51ffff;
  margin-left: 10%;
  margin-top: 15px;
  padding-bottom: 10px;
}

#pills-tab{
  flex-direction: column;
}
.nav-pills .nav-link{
  position: relative;
  z-index: 5;
}
.nav-pills .nav-link,
.nav-pills .nav-link:disabled{
  color: #8a8a8a;
  background-color: #ebeaea;
  border: 2px solid #8a8a8a;
  font-size: 0.9rem;
  font-weight: 500 !important;
  border-radius: 10px;
  width: 100%;
  transition: transform 250ms ease-in-out;
  position: relative;
  padding: 13px;
}
.nav-pills .nav-link.active, 
.nav-pills .show>.nav-link {
  color: #61b746;
  border-color: #7dd063;
  background-color: #fff;
}
.nav-pills .nav-link.active::after {
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  content: "\f058";
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 900;
  top: -10px;
  right: -10px;
  color: #61b746;
  border-radius: 20px;
  background-color: #fff;
}
.payment_info{
  font-weight: 500;
}
.desc_pay{
  font-size: 1rem;
}
.nav-pills .nav-link:disabled{
  cursor: no-drop;
}
.nav-pills .nav-link:disabled::after{
  content: "Método de pagamento não aplicável a esta promoção";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 180px;
  background-color: #f0f0f0;
  border: 1px solid #8a8a8a;
  border-radius: 30px;
  color: #8a8a8a;
  font-size: 0.7rem;
  padding: 5px 10px;
  z-index: 1;
  opacity: 0;
  transition: all 200ms ease-in-out;
  pointer-events: none;
}
.nav-pills .nav-link:disabled::before{  
	top: 50%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(138, 138, 138, 0);
	border-top-color: #8a8a8a;
	border-width: 10px;
	margin-left: -10px;  
  transition: all 200ms ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.nav-pills .nav-link:hover:disabled::after{
  opacity: 1;
  top: -80%;
}
.nav-pills .nav-link:hover:disabled::before{
  opacity: 1;
  top: -35%;
}

.product_description{
  position: relative;
}
.product_description .product_image{
  display: inline-block;
  vertical-align: top;
  width: 90px;
  height: 90px;
  border-radius: 7px;
  overflow: hidden;
  /* border: 2px solid #efeaea; */
  margin-right: 10px;
}
.product_description .product_image img{
  width: 90px;
  height: 90px;
}
.product_info{
  /* width: calc(100% - 105px);
  display: inline-block; */
  position: relative;
}
.product_info .product_title{
  font-size: 0.9em;
  line-height: 1.5em;
  display: block;
  font-weight: 600;
}
.product_info .product_subtitle{
  font-size: 0.8rem;
  font-weight: 500;
  color: #888;
  margin-bottom: 10px;
}

.info_box{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 7px;
}
.info_box:first-child{  
  margin-top: 30px;
}
.info_box .info_name{
  font-size: 0.8em;
  font-weight: 400;
  margin-right: 10px;
  color: #8a8a8a;
}
.info_box .info_price{
  text-align: right;
}
.info_box .info_price .info_description{
  font-weight: 500;
  font-size: 0.7em;
}
.info_box .info_price > b,
.info_box .info_price > span{
  font-weight: 600;
  font-size: 0.9em;
}
.quantit_prod{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cac9fc;
  border-radius: 4px;
}
.quantit_prod .decrement,
.quantit_prod .increment{
  outline: none;
  width: 26px;
  height: 26px;
  background-color: #fff;  
  border: none;
  color: #757575;
  font-size: 0.7rem;
  line-height: 1rem;
  transition: all 100ms ease-in-out;  
  display: flex;
  align-items: center;
  justify-content: center;
}
.quantit_prod .decrement i,
.quantit_prod .increment i{
  line-height: 0.9em;
  margin-left: 1px;
  text-align: center;
}
.quantit_prod .decrement:hover,
.quantit_prod .increment:hover{
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
}
.quantit_prod .quantit_prod_number,
.quantit_prod .quantit_prod_number:focus{
  width: 35px;
  height: 25px;
  text-align: center;
  background-color: #eeeefa;  
  border: none;
  outline: none;
  font-size: 0.8rem;
  padding-top: 1px;
  padding-bottom: 1px;
  color: #000;
  font-weight: 600;
}

.separator_price{
  width: 100%;
  display: block;
  border-bottom: 1px solid #c2c0c0;
}
.total_price{
  margin-top: 10px
}
.total_price .t_price_desc{
  font-size: 1em;
  font-weight: 500;
  margin-right: 10px;
}
.total_price .t_price_box{
  font-size: 1.2em;
}
.total_price .t_price_box .t_price{
  font-weight: 700;
}
.alertQuantity {
  width: 100%;
}
.alertQuantity p{
  display: inline;
  border: 1px dotted #198754;
  padding: 5px 10px;
  border-radius: 15px;
}

.timer_pix .timer {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #0d6efd;
  margin-bottom: 7px;
}
.timer_pix .time {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  margin: 0;
}

.imgQr{
  transition: all 200ms ease-in-out;
}

/* Warranty */
.warranty_box{
  position: relative;
}
.warranty_box_title{
  width: 100%;
}
.warranty_body{
  position: relative;
}
.warranty_body .warranty_item{
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}
.witem_1, .witem_2{
  display: table-cell;
  vertical-align: top;
}
.witem_1 {
  width: 64px;
  font-size: 15px;
}
.witem_1 img{
  width: 64px;
  margin-top: 10px;
}
.witem_2 {
  width: calc(100% - 64px);
  padding-left: 18px;
}
.witem_2 .witem_title{
  font-weight: 600;
}
.witem_2 .witem_title span{
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 25px;
}
.witem_2 .witem_product_ratings {
  color: #fdc822;
  font-size: 0.9em;
}
.witem_2 .witem_desription {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  word-break: break-word;
}
/* End Warranty */

.text_footer_1,
.text_footer_2{
  font-size: 0.8rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.text_footer_2{
  font-size: 0.7rem;
}
.safe-payment-icon{
  height: 25px;
  margin: 5px;
  fill: #000;
  display:inline-block;
  visibility: visible;
}

/* PIX */
.pix_hidden {display: none !important;}
.pix_show {display: block !important;}
.content_box{
  position: relative;
  border: 1px solid #D9D9D9!important;
  border-radius: 10px;
  padding: 20px!important;
}
.content_box h3{
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 20px;
}
.content_box .details_pay{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.content_box .details_pay .item_detail{
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;  
  color: #000;
  font-size: 0.9em;
  font-weight: 500;
}
.content_box .details_pay .item_detail:last-child{
  margin-bottom: 0;
}
.content_box .item_detail .icon_detail{
  position: absolute;
  top: 7px;
  left: 0;
  width: 23px;
  height: 23px;
  text-align: center;
}
.content_box .item_detail .icon_detail i{
  font-size: 1.5em;
  color: #007bff;
}
.box_or{
  position: relative;
  width: 120px;
  height: 20px;
  overflow: hidden;
  margin: 0 auto;
}
.box_or .text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #fff;
  z-index: 200;
  padding: 0 10px;
}
.box_or .line{
  z-index: 1;
}
.box_or .line::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  background-color: rgb(165, 164, 164);
  z-index: 1;
}
.radius_all{border-radius: 50px;}
/* End PIX */

/* Modal */
#fade, #modal, #loader{
  transition: 0.5s;
  opacity: 1;
  pointer-events: all;
}
#fade{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 1100;
}
#modal{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  z-index: 1200;
  width: 320px;
  max-width: 90%;
  padding: 1.2rem;
  border-radius: 0.5rem;
}
.modal_header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.modal_header h2{
  font-size: 1.4rem;
  font-weight: 600;
}
.modal_header #close_modal{
  border: 0;
  outline: none;
  appearance: none;
  background-color: transparent;
  font-size: 2rem;
  padding: 0;
  margin-top: -10px;
  color: #888;
  transition: 300ms;
}
.modal_header #close_modal:hover{
  color: #000;
}
.modal_body p{
  font-weight: 500;
}
#loader{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1200;
  width: 175px;
  text-align: center;
}
#loader .loader_icon{
  width: 80px;
}
#loader .loader_text{
  color: #fff;
  font-size: .9rem;
  animation: fadeText 1s infinite;
}
#fade.hide,
#modal.hide,
#loader.hide{
  opacity: 0;
  pointer-events: none;
}
#modal.hide{
  top: 0;
}
@keyframes fadeText {
  0% {
    opacity: 0;
  }
  
  60% {
    opacity: 1;
  }
  
  100% {
    opacity: 0;
  }
}
.modal-header {
  padding: 0 !important;
}
#modal_alert .modal-dialog .modal-content {
  box-shadow: 0 3px 6px rgb(0 0 0 / 30%);
}
.modal-backdrop {
  --bs-backdrop-opacity: 0.7 !important;
}
.modal-header .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  box-shadow: none;
  border: none;
}
/* End Modal */

.fw-400{font-weight: 400 !important;}
.fw-500{font-weight: 500 !important;}
.fw-600{font-weight: 600 !important;}
.fw-700{font-weight: 700 !important;}
.fw-800{font-weight: 800 !important;}
.fw-800{font-weight: 900 !important;}
/* .fs-7{font-size: 0.9rem!important;}
.fs-8{font-size: 0.75rem!important;}
.fs-9{font-size: 0.5rem!important;} */
.fs-10{font-size: 0.25rem!important;}

@media (max-width:576px){
  /* Text */
    .text-xs-center{text-align: center !important;}
  /* End Text */
}
@media (max-width:767px){
  .pt-sm-1{padding-top: 0.25rem !important;}
  .pt-sm-2{padding-top: 0.5rem !important;}
  .pt-sm-3{padding-top: 1rem !important;}
  .pt-sm-4{padding-top: 1.5rem !important;}
  .pt-sm-5{padding-top: 3rem !important;}
  .pb-sm-1{padding-bottom: 0.25rem !important;}
  .pb-sm-2{padding-bottom: 0.5rem !important;}
  .pb-sm-3{padding-bottom: 1rem !important;}
  .pb-sm-4{padding-bottom: 1.5rem !important;}
  .pb-sm-5{padding-bottom: 3rem !important;}
  .pl-sm-1{padding-left: 0.25rem !important;}
  .pl-sm-2{padding-left: 0.5rem !important;}
  .pl-sm-3{padding-left: 1rem !important;}
  .pl-sm-4{padding-left: 1.5rem !important;}
  .pl-sm-5{padding-left: 3rem !important;}
  .pr-sm-1{padding-right: 0.25rem !important;}
  .pr-sm-2{padding-right: 0.5rem !important;}
  .pr-sm-3{padding-right: 1rem !important;}
  .pr-sm-4{padding-right: 1.5rem !important;}
  .pr-sm-5{padding-right: 3rem !important;}
}

@media (min-width: 768px){
  #header h4{
    margin-left: 80px;
   }
   .purchase_progress {
    margin-top: 30px;
   }
   .separator_parts{
    margin-top: 25px;
    padding-bottom: 10px;
  }
  .box_cart_int{
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .box_summary_int{
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .container_checkout_pix .sticky-md-top.sticky_mt_20{
    margin-top: 30px !important;
    margin-bottom: 30px;
  }
  .sticky-md-top.sticky_mt_20{
    top: 20px;
  }
  .sticky-md-top.sticky_mt_30{
    top: 30px;
  } 
  .nav-pills .nav-link:hover{
    transform: scale(1.1);
  }
  .product_info .product_title{
    font-weight: 700;
  }
  .quantit_prod .decrement,
  .quantit_prod .increment{
    width: 26px;
    height: 26px;
    font-size: 0.7rem;
    line-height: 1rem;
  }
  .quantit_prod .decrement i,
  .quantit_prod .increment i{
    line-height: 0.9em;
    margin-left: 1px;
    text-align: center;
  }
  .quantit_prod .quantit_prod_number,
  .quantit_prod .quantit_prod_number:focus{
    width: 35px;
    height: 26px;
    font-size: 0.8rem;
    padding-top: 1px;
    padding-bottom: 1px;
  }
  .mb-3-small{
    margin-bottom: 0!important;
  }
  .cep_not_found span{
    padding-top: 0.8rem!important;
  }
  .form_shipping label{
    flex-direction: row;
  }
  .form_shipping .box_price_shipping_2{
    margin-left: auto;
    text-align: right;
  }
  #pills-tab{
    flex-direction: row;
  }
  .warranty_body{
    padding: 15px;
  }
  
  .product_description .product_image{
    display: block;
    width: 160px;
    height: 160px;
    margin: 0 auto 20px auto;
  }
  .product_description .product_image img{
    width: 160px;
    height: 160px;
  }
  .product_info{
    width: 100%;
    display: block;
  }
  .product_info .product_title{
    font-size: 1.2em;
    margin-top: 0;
  }
  .imgQr{
    opacity: 1;
    height: auto;
  }
   
  #modal_alert .modal-dialog {
    width: 90%;
    max-width: 400px;
  }
}