@font-face {
  font-family: RobotoCondensed-Regular;
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("../fonts/RobotoCondensed-Regular.eot");
  src: url("../fonts/RobotoCondensed-Regular.eot?") format("eot"), url("../fonts/RobotoCondensed-Regular.woff") format("woff"), url("../fonts/RobotoCondensed-Regular.ttf") format("truetype"), url("../fonts/RobotoCondensed-Regular.woff") format("woff");
}
@font-face {
  font-family: RobotoCondensed-Bold;
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("../fonts/RobotoCondensed-Bold.eot");
  src: url("../fonts/RobotoCondensed-Bold.eot?") format("eot"), url("../fonts/RobotoCondensed-Bold.woff") format("woff"), url("../fonts/RobotoCondensed-Bold.ttf") format("truetype"), url("../fonts/RobotoCondensed-Bold.woff") format("woff");
}
@font-face {
  font-family: RobotoCondensed-Light;
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("../fonts/RobotoCondensed-Light.eot");
  src: url("../fonts/RobotoCondensed-Light.eot?") format("eot"), url("../fonts/RobotoCondensed-Light.woff") format("woff"), url("../fonts/RobotoCondensed-Light.ttf") format("truetype"), url("../fonts/RobotoCondensed-Light.woff") format("woff");
}
@font-face {
  font-family: Roboto-Medium;
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("../fonts/Roboto-Medium.eot");
  src: url("../fonts/Roboto-Medium.eot?") format("eot"), url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.ttf") format("truetype"), url("../fonts/Roboto-Medium.woff") format("woff");
}
@font-face {
  font-family: Roboto-Black;
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("../fonts/Roboto-Black.eot");
  src: url("../fonts/Roboto-Black.eot?") format("eot"), url("../fonts/Roboto-Black.woff") format("woff"), url("../fonts/Roboto-Black.ttf") format("truetype"), url("../fonts/Roboto-Black.woff") format("woff");
}
.alert-success,
.alert-warning,
.alert-danger,
.alert-info {
  padding-left: 60px;
  font: normal 15px "RobotoCondensed-Bold";
  text-align: center;
  background-color: #FFFFFF;
  background-image: none;
}
.alert-success:before,
.alert-warning:before,
.alert-danger:before,
.alert-info:before {
  position: absolute;
  display: flex;
  content: "!";
  width: 50px;
  height: 100%;
  top: 0px;
  left: 0px;
  color: #FFFFFF;
  font: normal 34px "RobotoCondensed-Bold";
  align-items: center;
  justify-content: center;
}

.alert-success {
  color: #0EAF78;
  border: solid 2px #0EAF78;
}
.alert-success:before {
  background-color: #0EAF78;
}

.alert-warning {
  color: #E6A23C;
  border: solid 2px #E6A23C;
}
.alert-warning:before {
  background-color: #E6A23C;
}

.alert-danger {
  color: #DE5D6C;
  border: solid 2px #DE5D6C;
}
.alert-danger:before {
  background-color: #DE5D6C;
}

.alert-info {
  color: #0d6efd;
  border: solid 2px #0d6efd;
}
.alert-info:before {
  background-color: #0d6efd;
}

@keyframes skeleton-load {
  0% {
    background-color: rgba(0, 0, 0, 0.1);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.3);
  }
}
#carrinho-module-overlay {
  display: none;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

#carrinho-module {
  position: fixed;
  z-index: 2000;
  display: none;
  width: 100%;
  max-width: 1295px;
  top: 40px;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0px;
  border: none;
  background-color: #fff;
  /*
  * Produtos Nomais
  */
}
@media (max-width: 1250px) {
  #carrinho-module {
    width: auto;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    transform: initial;
  }
}
#carrinho-module[data-position="target"] .overlay {
  display: none;
}
#carrinho-module .btnClose {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  display: flex;
  top: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
}
@media (max-width: 575px) {
  #carrinho-module .btnClose {
    width: 30px;
    height: 30px;
  }
}
#carrinho-module .btnClose:before {
  display: inline-block;
  background-image: url(../img/sprite.png);
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background-position: -258px -12px;
}
#carrinho-module .inner {
  display: block;
  width: 100%;
  height: 100%;
  padding: 45px 15px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: opacity 0.4s;
}
#carrinho-module .inner .conteudo-principal {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin-bottom: 60px;
}
@media (max-width: 1054px) {
  #carrinho-module .inner .conteudo-principal {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  #carrinho-module .inner .conteudo-principal {
    flex-direction: column;
    align-items: center;
  }
}
#carrinho-module .inner .conteudo-principal .prd-fotos {
  display: block;
  width: 100%;
  max-width: 514px;
}
#carrinho-module .inner .conteudo-principal .prd-fotos .fotos {
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}
#carrinho-module .inner .conteudo-principal .prd-fotos .fotos .fotosp {
  overflow-y: auto;
  display: none;
  width: 100%;
  max-width: 86px;
  max-height: 429px;
}
@media (max-width: 991px) {
  #carrinho-module .inner .conteudo-principal .prd-fotos .fotos .fotosp {
    display: none;
  }
}
#carrinho-module .inner .conteudo-principal .prd-fotos .fotos .fotosp .fotospDisplay, #carrinho-module .inner .conteudo-principal .prd-fotos .fotos .fotosp .share-p {
  height: 100%;
}
#carrinho-module .inner .conteudo-principal .prd-fotos .fotos .fotosp .share-p {
  display: block;
  /*                            flex-direction: column;
                              align-items: center;
                              justify-content: center;*/
}
#carrinho-module .inner .conteudo-principal .prd-fotos .fotos .fotosp li {
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
#carrinho-module .inner .conteudo-principal .prd-fotos .fotos .fotosp li a {
  display: block;
  outline: 0px;
  width: 100%;
}
#carrinho-module .inner .conteudo-principal .prd-fotos .fotos .fotosp li a img {
  display: block;
  width: 100%;
}
#carrinho-module .inner .conteudo-principal .prd-fotos .fotos .fotosm {
  display: block;
  width: 100%;
  max-width: 515px;
}
#carrinho-module .inner .conteudo-principal .prd-fotos .fotos .fotosm .conteudo {
  display: block;
  width: 100%;
}
#carrinho-module .inner .conteudo-principal .prd-fotos .fotos .fotosm .conteudo img {
  aspect-ratio: 515 / 620;
  display: block;
  width: 100%;
  border-radius: 3px;
}
#carrinho-module .inner .conteudo-principal .prd-fotos .fotos .fotosm .conteudo .owl-controls {
  display: none !important;
}
#carrinho-module .inner .conteudo-principal .prd-fotos .fotos .fotosm .conteudo .owl-dots {
  display: none;
}
#carrinho-module .inner .conteudo-principal .prd-fotos .conteudo-share {
  display: none;
}
#carrinho-module .inner .conteudo-principal .content-foto-info {
  display: block;
  width: 100%;
  max-width: 450px;
  margin-left: 40px;
}
@media (max-width: 1054px) {
  #carrinho-module .inner .conteudo-principal .content-foto-info {
    max-width: 514px;
    margin-left: 0px;
    margin-top: 40px;
    padding-top: 0px;
  }
}
#carrinho-module .inner .conteudo-principal .content-foto-info .fotosp {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 1054px) {
  #carrinho-module .inner .conteudo-principal .content-foto-info .fotosp {
    display: none;
  }
}
#carrinho-module .inner .conteudo-principal .content-foto-info .fotosp .fotospDisplay {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#carrinho-module .inner .conteudo-principal .content-foto-info .fotosp .fotospDisplay .share-p {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  gap: 6px;
}
#carrinho-module .inner .conteudo-principal .content-foto-info .fotosp .fotospDisplay .share-p li {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 82px;
}
#carrinho-module .inner .conteudo-principal .content-foto-info .fotosp .fotospDisplay .share-p li .share-p-link {
  display: block;
  outline: 0px;
  width: 100%;
}
#carrinho-module .inner .conteudo-principal .content-foto-info .fotosp .fotospDisplay .share-p li .share-p-link img {
  aspect-ratio: 82 / 99;
  display: block;
  width: 100%;
  border-radius: 3px;
}
#carrinho-module .inner .conteudo-principal .content-foto-info .prd-form {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
#carrinho-module .inner .conteudo-principal .content-foto-info .prd-form .h1dentro {
  display: block;
  margin: 0px;
  margin-bottom: 12px;
  color: #000000;
  font: normal 22px "RobotoCondensed-Regular";
  line-height: 26px;
  letter-spacing: 0.02em;
}
#carrinho-module .inner .conteudo-principal .content-foto-info .prd-form .ref {
  display: block;
  margin: 0px;
  color: #000000;
  font: normal 12px "Roboto-Medium";
  line-height: 15px;
  letter-spacing: 0.01em;
}
#carrinho-module .inner .conteudo-principal .content-foto-info .content-info {
  display: block;
  width: 100%;
}
#carrinho-module .inner .conteudo-principal .content-foto-info .content-info .content {
  display: block;
  width: 100%;
}
#carrinho-module .inner .conteudo-principal .content-foto-info .content-info .content .btn-deslogado {
  display: block;
  outline: 0px;
  margin-bottom: 50px;
  color: #000000;
  font: normal 15px "RobotoCondensed-Regular";
  text-align: center;
}
#carrinho-module .inner .conteudo-principal .content-foto-info .content-info .content .btn-deslogado strong {
  font-weight: normal;
  font-family: "RobotoCondensed-Bold";
}
#carrinho-module .inner .conteudo-principal .content-foto-info .content-info .content .msg-deslogado {
  margin-bottom: 50px;
  text-align: center;
  font: normal 14px "RobotoCondensed-Regular";
  color: #17100D;
}
#carrinho-module .inner .conteudo-principal .content-foto-info .content-info .content .box-share {
  display: none;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  #carrinho-module .inner .conteudo-principal .content-foto-info .content-info .content .box-share {
    display: block;
  }
}
#carrinho-module .inner .conteudo-principal .box-share {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding-left: 96px;
}
@media (max-width: 991px) {
  #carrinho-module .inner .conteudo-principal .box-share {
    display: none;
    padding: 0px;
  }
}
#carrinho-module .inner .conteudo-principal .box-share .titulo {
  display: block;
  margin: 0px;
  margin-bottom: 15px;
  color: #000000;
  font: normal 12px "Roboto-Medium";
  line-height: 18px;
  letter-spacing: 0.04em;
  text-align: center;
}
#carrinho-module .inner .conteudo-principal .box-share .share-opcoes {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
#carrinho-module .inner .conteudo-principal .box-share .share-opcoes .shareProduto {
  display: block;
  outline: 0px;
  margin-right: 20px;
}
#carrinho-module .inner .conteudo-principal .box-share .share-opcoes .shareProduto:before {
  display: inline-block;
  background-image: url(../img/sprite.png);
  display: block;
  content: "";
  width: 23px;
  height: 23px;
}
#carrinho-module .inner .conteudo-principal .box-share .share-opcoes .shareProduto.whatsapp:before {
  background-position: -206px -113px;
}
#carrinho-module .inner .conteudo-principal .box-share .share-opcoes .shareProduto.facebook:before {
  background-position: -101px -113px;
}
#carrinho-module .inner .conteudo-principal .box-share .share-opcoes .shareProduto.twitter:before {
  background-position: -241px -112px;
}
#carrinho-module .inner .conteudo-principal .box-share .share-opcoes .shareProduto:last-of-type {
  margin-right: 0px;
}
#carrinho-module .inner .prd-buy .grade-accordion {
  max-width: 514px;
}
#carrinho-module .inner .prd-buy .grade-accordion .cor {
  max-width: 100%;
}
#carrinho-module .inner .prd-buy .prd-guia {
  justify-content: flex-end;
}
#carrinho-module.loading .inner {
  transition: none;
  pointer-events: none;
  opacity: 0.3;
}
#carrinho-module.loading .carrinho-loading {
  display: block;
}
#carrinho-module #frmProdAjax {
  width: 100%;
}
#carrinho-module .prd-tam .prd-estoque-real {
  display: none;
}
#carrinho-module .prd-tam .prd-tam-qtd {
  display: block;
  width: 100%;
  max-width: 100px;
  margin-right: 15px;
}
@media (max-width: 575px) {
  #carrinho-module .prd-tam .prd-tam-qtd {
    margin-right: 0px;
    margin-bottom: 15px;
  }
}
#carrinho-module .prd-tam .prd-tam-qtd h4 {
  display: block;
  margin: 0px;
  margin-bottom: 5px;
  color: #000000;
  font: normal 12px "Roboto-Medium";
}
#carrinho-module .prd-tam .prd-tam-qtd .box-quantidade {
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: center;
  border-radius: 3px;
  border: solid 1px #CCCCCC;
}
#carrinho-module .prd-tam .prd-tam-qtd .box-quantidade .optQtdVal {
  display: block;
  width: calc(100% - 22px);
  padding: 10px 5px;
  color: #000000;
  font: normal 15px "Roboto-Medium";
  line-height: 16px;
  text-align: center;
  outline: 0px;
  border: none;
  background-color: transparent;
  box-shadow: none;
}
#carrinho-module .prd-tam .prd-tam-qtd .box-quantidade .optQtdVal::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
#carrinho-module .prd-tam .prd-tam-qtd .box-quantidade .optQtdVal {
  -moz-appearance: textfield;
  appearance: textfield;
}
#carrinho-module .prd-tam .prd-tam-qtd .box-quantidade .box-set {
  display: flex;
  width: 22px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
#carrinho-module .prd-tam .prd-tam-qtd .box-quantidade .box-set .set-quantidade {
  display: flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
}
#carrinho-module .prd-tam .prd-tam-qtd .box-quantidade .box-set .set-quantidade:before {
  display: inline-block;
  background-image: url(../img/sprite.png);
  display: block;
  content: "";
  width: 12px;
  height: 6px;
}
#carrinho-module .prd-tam .prd-tam-qtd .box-quantidade .box-set .set-quantidade.set-mais:before {
  background-position: -386px -5px;
}
#carrinho-module .prd-tam .prd-tam-qtd .box-quantidade .box-set .set-quantidade.set-menos:before {
  background-position: -386px -21px;
}
#carrinho-module .prd-variation {
  overflow: hidden;
  width: 100%;
}
#carrinho-module .prd-variation .prd-tam-qtd {
  width: 100%;
}
#carrinho-module .prd-variation .prd-tam-qtd label {
  display: block;
}
#carrinho-module .prd-variation .optVariacao {
  background-color: #fff;
  border: solid 1px #dddddd;
  box-sizing: border-box;
  font-family: "RobotoCondensed-Regular";
  font-size: 14px;
  font-weight: bold;
  height: calc(24px + 3px);
  padding-left: 10px;
  text-align: center;
  width: 150px;
}
#carrinho-module .prd-unavailable {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
#carrinho-module .prd-unavailable p {
  display: block;
  margin: 0px;
  margin-bottom: 5px;
  color: #000000;
  font: normal 15px "RobotoCondensed-Regular";
}
#carrinho-module .prd-comp {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-top: 20px;
}
#carrinho-module .prd-comp #total, #carrinho-module .prd-comp .total-buy {
  display: block;
  margin: 0px;
  margin-right: 40px;
  color: #000000;
  font: normal 22px "RobotoCondensed-Bold";
  line-height: 26px;
}
@media (max-width: 767px) {
  #carrinho-module .prd-comp #total, #carrinho-module .prd-comp .total-buy {
    margin-right: 15px;
  }
}
#carrinho-module .prd-comp .box-comp {
  display: flex;
  align-items: center;
  width: calc(100% - 65px);
}
@media (max-width: 575px) {
  #carrinho-module .prd-comp .box-comp {
    width: 100%;
  }
}
#carrinho-module .prd-comp .box-comp .btAddCarrinho,
#carrinho-module .prd-comp .box-comp .btDeslogado {
  margin: 0px;
  margin-right: 15px;
}
#carrinho-module .prd-comp .box-comp .btAddCarrinho[disabled],
#carrinho-module .prd-comp .box-comp .btDeslogado[disabled] {
  opacity: 0.4;
}
#carrinho-module .prd-avise {
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
#carrinho-module .prd-avise h4 {
  display: block;
  width: 100%;
  margin: 0px;
  margin-bottom: 10px;
  color: #000000;
  font: normal 12px "Roboto-Medium";
}
#carrinho-module .prd-avise .avise-email {
  display: block;
  outline: 0px;
  width: calc(100% - 85px);
  padding: 10px;
  color: #000000;
  font: normal 15px "RobotoCondensed-Regular";
  border: solid 1px #E5E5E5;
  box-shadow: none;
}
#carrinho-module .prd-avise .avise-email:focus {
  outline: 0px;
}
#carrinho-module .prd-avise .btSend {
  width: 85px;
  margin: 0px;
}
#carrinho-module .prd-avise .loading {
  display: none;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 10;
}
#carrinho-module .prd-avise:after {
  content: '';
  background-color: rgba(255, 255, 255, 0.5);
  bottom: 0;
  display: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
#carrinho-module .opcoes {
  display: block;
  width: 100%;
  max-width: 475px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 20px;
}
#carrinho-module .opcoes .opcao {
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #E6E6E6;
}
#carrinho-module .opcoes .opcao .titulo {
  display: flex;
  cursor: pointer;
  outline: 0px;
  margin: 0px;
  color: #17100D;
  font: normal 15px "RobotoCondensed-Bold";
  align-items: center;
  justify-content: space-between;
}
#carrinho-module .opcoes .opcao .titulo:after {
  display: inline-block;
  background-image: url(../img/sprite.png);
  display: block;
  content: "";
  width: 10px;
  height: 6px;
  background-position: -454px -67px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#carrinho-module .opcoes .opcao .subtitulo {
  display: block;
  width: 100%;
  margin: 0px;
  margin-top: 10px;
  color: #17100D;
  font: normal 15px "RobotoCondensed-Regular";
}
#carrinho-module .opcoes .opcao .conteudo {
  display: none;
  width: 100%;
}
#carrinho-module .opcoes .opcao .conteudo .frete {
  display: block;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
#carrinho-module .opcoes .opcao .conteudo .frete .form-frete {
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}
#carrinho-module .opcoes .opcao .conteudo .frete .form-frete .cep {
  display: block;
  width: calc(100% - 195px);
  padding: 15px 10px;
  color: #999999;
  font: normal 12px "RobotoCondensed-Regular";
  border: solid 1px #A0A0A0;
  box-shadow: none;
}
#carrinho-module .opcoes .opcao .conteudo .frete .form-frete .submit {
  display: block;
  width: 100%;
  max-width: 195px;
  padding: 15px 10px;
  color: #FFFFFF;
  font: normal 12px "RobotoCondensed-Regular";
  border: none;
  background-color: #17100D;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#carrinho-module .opcoes .opcao .conteudo .frete .form-frete .submit:hover, #carrinho-module .opcoes .opcao .conteudo .frete .form-frete .submit:focus {
  background-color: #0EAF78;
}
#carrinho-module .opcoes .opcao .opt-mais {
  display: block;
  outline: 0px;
  margin-top: 10px;
  color: #17100D;
  font: normal 15px "RobotoCondensed-Regular";
  text-decoration: underline;
}
#carrinho-module .opcoes .opcao:first-of-type {
  border-top: solid 1px #E6E6E6;
}
#carrinho-module .opcoes .opcao:last-of-type {
  margin-bottom: 0px;
}
#carrinho-module .opcoes .opcao.ativo .titulo:after {
  transform: rotate(180deg);
}
#carrinho-module .prd-options {
  clear: both;
  padding-bottom: 50px;
}
#carrinho-module .prd-options .item {
  overflow: hidden;
}
#carrinho-module .prd-options #frmProdFreteAjax {
  overflow: hidden;
}
#carrinho-module .prd-options #frmProdFreteAjax h4 {
  display: block;
  outline: 0px;
  margin: 0px;
  margin-bottom: 20px;
  color: #000000;
  font: normal 12px "Roboto-Medium";
  line-height: 18px;
  letter-spacing: 0.04em;
}
#carrinho-module .prd-options #frmProdFreteAjax .box-campos {
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: flex-start;
}
#carrinho-module .prd-options #frmProdFreteAjax .box-campos .frete-cep {
  display: block;
  outline: 0px;
  width: calc(100% - 135px);
  padding: 10px;
  color: #000000;
  font: normal 12px "RobotoCondensed-Light";
  line-height: 16px;
  letter-spacing: 0.04em;
  box-shadow: none;
  background-color: #FFFFFF;
  border: solid 1px #9A9A9A;
}
#carrinho-module .prd-options #frmProdFreteAjax .box-campos .btSend {
  display: block;
  outline: 0px;
  width: 100%;
  margin: 0px;
  max-width: 135px;
  color: #FFFFFF;
  font: normal 12px "Roboto-Medium";
  line-height: 18px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 15px 10px;
  border: none;
  background-color: #222B65;
  box-shadow: none;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#carrinho-module .prd-options #frmProdFreteAjax .box-campos .btSend:hover, #carrinho-module .prd-options #frmProdFreteAjax .box-campos .btSend:focus {
  background-color: #0EAF78;
}
#carrinho-module .prd-options .frete-list {
  display: none;
  margin-top: 10px;
}
#carrinho-module .prd-options .item-frete {
  display: flex;
  padding: 5px 10px;
  border-bottom: solid 1px #E5E5E5;
  align-items: center;
  justify-content: space-between;
  background-color: #F5F5F5;
}
@media (max-width: 450px) {
  #carrinho-module .prd-options .item-frete {
    flex-direction: column;
  }
}
#carrinho-module .prd-options .item-frete p {
  display: block;
  width: 33%;
  padding: 5px 0px;
  color: #000000;
  font-size: 12px;
  font-family: "RobotoCondensed-Regular";
}
@media (max-width: 450px) {
  #carrinho-module .prd-options .item-frete p {
    width: 100%;
    text-align: center !important;
  }
}
#carrinho-module .prd-options .item-frete p .item-titulo,
#carrinho-module .prd-options .item-frete p .item-valor {
  font-family: "RobotoCondensed-Regular";
  font-weight: normal;
}
#carrinho-module .prd-options .item-frete p .item-prazo, #carrinho-module .prd-options .item-frete p .fretePrazo {
  font-family: "Roboto-Medium";
  font-weight: normal;
}
#carrinho-module .prd-options .item-frete p:nth-child(1) {
  text-align: left;
}
#carrinho-module .prd-options .item-frete p:nth-child(2) {
  text-align: center;
}
#carrinho-module .prd-options .item-frete p:nth-child(3) {
  text-align: right;
}
#carrinho-module .prd-options .item-frete:last-of-type {
  border-bottom-width: 0px;
}
#carrinho-module .prd-available {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#carrinho-module .bt {
  position: relative;
  display: block;
  width: 100%;
  max-width: 180px;
  padding: 13px 10px;
  margin-right: 15px;
  color: #FFFFFF;
  font: normal 13px "RobotoCondensed-Bold";
  line-height: 16px;
  text-align: center;
  border: none;
  border-radius: 3px;
  background-color: #222B65;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#carrinho-module .bt:hover, #carrinho-module .bt:focus {
  background-color: #0EAF78;
}
#carrinho-module .bt:after {
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-name: loadingRotate;
  animation-timing-function: linear;
  background-image: url(../img/loading.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: none;
  height: 20px;
  left: 50%;
  margin: -10px;
  position: absolute;
  top: 50%;
  width: 20px;
}
#carrinho-module .sending .bt {
  color: rgba(0, 0, 0, 0);
  pointer-events: none;
}
#carrinho-module .sending .bt:after {
  display: block;
}
#carrinho-module .tabela-medidas-content {
  background-color: #fff;
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 51;
}
#carrinho-module .tabela-medidas-content .titulo {
  background-color: #fff;
  border: solid 1px #ccc;
  color: #222B65;
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
}
#carrinho-module .tabela-medidas-content .titulo .btn-close {
  color: #666;
  cursor: pointer;
  display: block;
  font-size: 15px;
  font-weight: bold;
  line-height: 35px;
  position: absolute;
  right: 0px;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 0 1px #000;
  -webkit-text-stroke: 2px;
  text-stroke: 2px;
  top: 0px;
  width: 30px;
}
#carrinho-module .tabela-medidas-content .box-imagem {
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 10;
  display: block;
  outline: 0px;
  width: 100%;
  top: 35px;
  left: 0;
  height: calc(100% - 40px);
  background-color: #fff;
}
#carrinho-module .tabela-medidas-content .box-imagem img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #carrinho-module .tabela-medidas-content .box-imagem {
    overflow-x: scroll;
  }
  #carrinho-module .tabela-medidas-content .box-imagem img {
    max-width: unset;
    height: 100%;
  }
}
#carrinho-module .tabela-medidas-content iframe {
  background-color: #fff;
  border: none;
  height: calc(100% - 40px);
  left: 0;
  position: absolute;
  top: 35px;
  width: 100%;
  z-index: 10;
}
#carrinho-module .btAddCarrinho .loading {
  height: 17px;
}
#carrinho-module .addCarrinhoDone {
  position: absolute;
  right: 0;
  width: 260px;
  margin-top: 3px;
}
#carrinho-module .carrinho-loading {
  animation-duration: 1.4s;
  animation-name: loadingRotate;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  opacity: 0.6;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -24px;
  margin-top: -24px;
  display: none;
}
#carrinho-module .btPageDetalhe {
  width: 100%;
  margin: 10px auto;
  text-align: center;
}
@media (max-height: 620px), (max-width: 500px) {
  #carrinho-module .btPageDetalhe {
    margin: 30px auto;
  }
}

#he-topo .msg-carrinho-vazio {
  padding: 8px;
}

.btAddCarrinho {
  position: relative;
}
.btAddCarrinho.error {
  background-color: #d9534f !important;
}
.btAddCarrinho.success {
  background-color: #00D86C !important;
  border-color: #00D86C !important;
}
.btAddCarrinho:after {
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-name: loadingRotate;
  animation-timing-function: linear;
  background-image: url(../img/loading.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: none;
  height: 20px;
  left: 50%;
  margin: -10px;
  position: absolute;
  top: 50%;
  width: 20px;
}

.sending .btAddCarrinho {
  color: rgba(0, 0, 0, 0) !important;
  pointer-events: none;
}
.sending .btAddCarrinho:after {
  display: block;
}

#msg-container {
  position: fixed;
  top: 50px;
  right: 620px;
  z-index: 2010;
}
@media (max-width: 740px) {
  #msg-container {
    top: 15px;
    right: 20px;
  }
}
#msg-container.carrinho-off {
  right: 20px !important;
}
#msg-container > p {
  position: relative;
  display: block;
  cursor: pointer;
  width: 320px;
  padding: 10px 15px;
  margin: 0 auto 25px auto;
  color: #232323;
  font: normal 13px "RobotoCondensed-Regular";
  /*line-height: 1.6em;*/
  border-radius: 6px;
  background-color: #FFFFFF;
}
#msg-container > p:before {
  display: inline-block;
  background-image: url(../img/sprite.png);
  content: "";
  width: 34px;
  height: 34px;
  margin-right: 16px;
  vertical-align: middle;
}
#msg-container > p:after {
  content: "X";
  color: #fff;
  display: block;
  font-family: "RobotoCondensed-Regular";
  font-size: 16px;
  font-weight: bold;
  line-height: 16px;
  opacity: 0.7;
  position: absolute;
  right: 6px;
  text-align: center;
  -webkit-text-stroke: 2px;
  text-stroke: 2px;
  top: 6px;
}
#msg-container > p.error {
  /*background: #d9534f;*/
}
#msg-container > p.error:before {
  background-position: -462px -107px;
}
#msg-container > p.success {
  /*background: #00D86C;*/
  /*border: solid 1px #00D86C;*/
}
#msg-container > p.success:before {
  background-position: -413px -107px;
}
#msg-container a {
  text-decoration: underline;
  color: #ccc;
}

/*
.box-itens{
    &:after{
        animation-duration: 1.4s;
        animation-iteration-count: infinite;
        animation-name: loadingRotate;
        animation-timing-function: linear;
        background-image: url(../img/loading.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        content:'';
        display: none;
        height: 20px;
        left: 50%;
        margin: -10px;
        position: absolute;
        top: 50%;
        width: 20px;
    }
    &.loading{
        &:after{
            display: block;
        }
    }
}
*/
.box-itens-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
}
.box-itens-loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -24px;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-name: loadingRotate;
  animation-timing-function: linear;
}

.box-itens.loading .box-itens-loading {
  display: block;
}

@keyframes loadingRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=carrinho-ajax.css.map */
