﻿/* ** Definição de fontes ** */
@font-face {
  font-family: 'Ubuntu-Light';
  src: url('../fonts/Ubuntu-Light.ttf');
}
/* ************************* */
* {
  box-sizing: border-box;
}
/* Dimensionamento por colunas */
.col-1 {
  width: 8.33%;
}
.col-2 {
  width: 16.66%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33%;
}
.col-5 {
  width: 41.66%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.33%;
}
.col-8 {
  width: 66.66%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33%;
}
.col-11 {
  width: 91.66%;
}
.col-12 {
  width: 100%;
}
[class*="col-"] {
  float: left;
  padding: 15px;
  /*border:1px solid red;*/
}
/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */
/* General stylings */
html {
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100%;
  padding-top: 50px;
  padding-bottom: 20px;
  color: black;
  font-family: 'Ubuntu-Light';
}
.grecaptcha-badge {
  display: none !important;
}
.grecaptcha-logo {
  display: none !important;
}
/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 50px;
  max-width: 1750px;
  margin: auto;
}
.link {
  color: black;
  text-decoration: underline;
  transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
}
.link:hover {
  /*color: #971b1e;*/
  cursor: pointer;
  color: #595959;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
}
.link:focus {
  color: #971b1e;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.page-title {
  margin-top: -5px;
  color: black;
  text-transform: uppercase;
}
.page-title .link {
  text-decoration: none;
}
.page-title h5 {
  color: #595959;
  display: inline;
  margin: 3px;
  margin-bottom: 0;
  padding: 0;
  text-transform: none;
  font-size: 9pt;
}
.page-title h5.separator {
  color: #aaaaaa;
}
.page-title h4 {
  display: inline;
  color: #595959;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 11pt;
  font-weight: bold;
}
.page-title hr {
  margin: 5px;
}
/*
.header-content {
    padding-left: 70px;
    padding-right: 70px;
    margin-bottom: 0;
    max-width: 1400px;
}
*/
.footer-content {
  padding-left: 70px;
  padding-right: 70px;
  margin-bottom: 50px;
}
.page-content {
  padding-top: 155px;
  padding-left: 70px;
  padding-right: 70px;
  margin-bottom: 50px;
  min-height: 500px;
}
.row {
  margin: 0;
  padding: 0;
}
/* The alert message box */
.alert_danger {
  padding: 10px;
  background-color: #f44336;
  /* Red */
  color: white;
  margin: 1.5em;
  width: 45%;
  transition: opacity 0.6s;
}
.alert_success {
  padding: 10px;
  background-color: #33cc33;
  /* Green */
  color: white;
  margin: 1.5em;
  width: 35%;
  transition: opacity 0.6s;
}
.alert_info {
  padding: 10px;
  background-color: #57b5e3;
  /* Blue */
  color: white;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: opacity 0.6s;
}
/* close button */
.closebtn {
  margin-left: 15px;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.15s;
}
/* When moving the mouse over the close button */
.closebtn:hover {
  color: black;
}
.btn-default {
  border-radius: 10px;
  text-transform: uppercase;
  color: white;
  background-color: #971b1e;
  border: 1px solid #971b1e;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.btn-default:hover {
  text-transform: uppercase;
  background-color: #b11b1d;
  color: white;
  border: 1px solid #b11b1d;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.btn-default:focus {
  border: 1px solid #b11b1d;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.btn-default-black {
  border-radius: 10px;
  text-transform: uppercase;
  color: white;
  background-color: black;
  border: 1px solid #971b1e;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.btn-default-black:hover {
  background-color: #404040;
  border: 1px solid #404040;
  color: white;
  border: 1px solid #b11b1d;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.btn-default-black:focus {
  background-color: #404040;
  border: 1px solid #404040;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.btn-default:hover {
  text-transform: uppercase;
  background-color: #b11b1d;
  color: white;
  border: 1px solid #b11b1d;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.hover-success:hover {
  background-color: #449D44;
}
.hover-danger:hover {
  background-color: #C9302C;
}
.hover-default:hover {
  background-color: #4286f4;
}
input {
  padding: 4px;
  z-index: 0;
}
input:disabled {
  background-color: rgba(220, 220, 225, 0.5);
}
input:-webkit-autofill {
  -webkit-animation-name: autofill;
  -webkit-animation-fill-mode: both;
}
.input-group {
  z-index: 0;
}
@-webkit-keyframes autofill {
  to {
    background: #f0f0f0;
  }
}
select {
  cursor: pointer;
}
textarea {
  resize: none;
}
.form-control {
  border-radius: 10px;
  background-color: #ffffff;
}
.form-control:disabled {
  background-color: #dcdcdc;
}
.form-control:focus {
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: none;
  outline: 0 none;
}
.input-error {
  border-color: red;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.6);
}
.input-error:focus {
  border-color: red;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.6);
}
.error404 {
  font-size: 58pt;
}
/* Loader */
#dimScreen {
  position: fixed;
  padding: 0;
  margin: 0;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
}
/*#loader {
    color: #ffffff;
    font-size: 90px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.1s infinite ease, round 1.1s infinite ease;
    animation: load6 1.1s infinite ease, round 1.1s infinite ease;
}

@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%, 95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%, 59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%, 95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%, 59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@-webkit-keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes round {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}*/
/*#loader,
#loader:before,
#loader:after {
    background: #ffffff;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    width: 1em;
    height: 4em;
}

#loader {
    color: #ffffff;
    text-indent: -9999em;
    top: 50%;
    left: 50%;
    position: absolute;
    font-size: 11px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

    #loader:before,
    #loader:after {
        position: absolute;
        top: 0;
        content: '';
    }

    #loader:before {
        left: -1.5em;
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    #loader:after {
        left: 1.5em;
    }

@-webkit-keyframes load1 {
    0%, 80%, 100% {
        box-shadow: 0 0;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

@keyframes load1 {
    0%, 80%, 100% {
        box-shadow: 0 0;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}*/
.lds-spinner {
  color: #971b1e;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #fff;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.tip {
  position: relative;
  text-decoration: none;
}
.tip span.lgnd,
.tip span.lgnd_color,
.tip span.lgnd_color_menu,
.tip span.lgnd_termos {
  font-family: Ubuntu-Light;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: auto;
  padding: 5px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.65);
  font-size: 8pt;
  color: #e6e6e6;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 1.5px;
  -webkit-transition: all 0.65s ease;
  -moz-transition: all 0.65s ease;
  -o-transition: all 0.65s ease;
  -ms-transition: all 0.65s ease;
  transition: all 0.65s ease;
}
.tip span.lgnd_color {
  left: -25px;
}
.tip:hover span.lgnd {
  visibility: visible;
  opacity: 1;
  top: -35px;
  z-index: 999;
  -webkit-transition: all 0.65s ease;
  -moz-transition: all 0.65s ease;
  -o-transition: all 0.65s ease;
  -ms-transition: all 0.65s ease;
  transition: all 0.65s ease;
}
.tip:hover span.lgnd_color {
  visibility: visible;
  opacity: 1;
  top: 35px;
  /*left: -30px;*/
  -webkit-transition: all 0.65s ease;
  -moz-transition: all 0.65s ease;
  -o-transition: all 0.65s ease;
  -ms-transition: all 0.65s ease;
  transition: all 0.65s ease;
}
.tip:hover span.lgnd_color_menu {
  visibility: visible;
  opacity: 1;
  top: 0;
  left: 25px;
  z-index: 999;
  -webkit-transition: all 0.65s ease;
  -moz-transition: all 0.65s ease;
  -o-transition: all 0.65s ease;
  -ms-transition: all 0.65s ease;
  transition: all 0.65s ease;
}
.tip span.lgnd_termos {
  visibility: hidden;
  top: 0;
  left: 45px;
  width: 0;
  height: 0;
  overflow: hidden;
}
.tip:hover span.lgnd_termos {
  visibility: visible;
  opacity: 1;
  top: 40px;
  left: -75px;
  width: 250px;
  height: auto;
  -webkit-transition: all 0.65s ease;
  -moz-transition: all 0.65s ease;
  -o-transition: all 0.65s ease;
  -ms-transition: all 0.65s ease;
  transition: all 0.65s ease;
}
.tip span.lgnd_termos .link {
  color: #e6e6e6;
  text-decoration: underline;
  transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
}
.tip span.lgnd_termos .link:hover {
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
}
.tip span#tip-heart {
  visibility: hidden;
  left: -10px;
  width: auto;
}
.tip span#tip-bag {
  visibility: hidden;
  left: -8px;
  width: auto;
}
.tip span#tip-user {
  visibility: hidden;
  left: 0;
  width: auto;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*Page error Popup*/
#page_error {
  position: fixed;
  padding: 0;
  margin: 0;
  top: -500px;
  left: -500px;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  transition: width 0.3s, height 0.3s;
}
#page_error .error_message {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: absolute;
  left: 30%;
  top: 35%;
  width: 40%;
  height: auto;
  padding: 20px;
  background: white;
}
#page_error .error_message img {
  max-width: 75%;
}
#page_error .error_message h4 {
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 10px;
}
#page_error .error_message h5 {
  font-weight: bold;
  margin-top: 20px;
}
#page_error .error_message button {
  width: 100px;
  margin-top: 10px;
}
/*Page success Popup*/
#page_success {
  position: fixed;
  padding: 0;
  margin: 0;
  top: -500px;
  left: -500px;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  transition: width 0.3s, height 0.3s;
}
#page_success .success_message {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: absolute;
  left: 30%;
  top: 35%;
  width: 40%;
  height: auto;
  padding: 20px;
  background: white;
}
#page_success .success_message img {
  max-width: 75%;
}
#page_success .success_message h4 {
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 10px;
}
#page_success .success_message h5 {
  font-weight: bold;
  margin-top: 20px;
}
#page_success .success_message button {
  width: 100px;
  margin-top: 10px;
}
/*Newsletter Popup*/
#page_Newsletter {
  position: fixed;
  padding: 0;
  margin: 0;
  top: -500px;
  left: -500px;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 90;
  transition: width 0.3s, height 0.3s;
}
#page_Newsletter .newsletter_container {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: absolute;
  left: 30%;
  top: 15%;
  width: 40%;
  height: auto;
  padding: 20px;
  background: white;
}
#page_Newsletter .newsletter_container {
  text-align: center;
}
#page_Newsletter .newsletter_container h2 {
  color: black;
}
#page_Newsletter .newsletter_container h4 {
  color: black;
}
#page_Newsletter .newsletter_container .container {
  color: black;
}
#page_Newsletter .newsletter_container .container a.link {
  color: black;
}
#page_Newsletter .newsletter_container #fechaNewsletter {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#page_Newsletter .newsletter_container #fechaNewsletter .far.fa-times-circle {
  font-size: 18pt;
  color: #969696;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#page_Newsletter .newsletter_container #fechaNewsletter:hover .far.fa-times-circle {
  color: #323232;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
/*Page cart success - WHITE Popup*/
#page_cartSuccess {
  position: fixed;
  padding: 0;
  margin: 0;
  top: -500px;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.6);
  transition: width 0.3s, height 0.3s;
}
#page_cartSuccess .cartSuccess_message {
  border-top: 1.5px solid #971b1e;
  border-bottom: 1.5px solid #971b1e;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 4%;
  top: 17%;
  width: 22%;
  height: auto;
  padding: 5px;
  background: white;
}
#page_cartSuccess .cartSuccess_message_user {
  border-top: 1.5px solid #971b1e;
  border-bottom: 1.5px solid #971b1e;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 2%;
  top: 17%;
  width: 22%;
  height: auto;
  padding: 5px;
  background: white;
}
#page_cartSuccess .cartSuccess_message #success_details,
#page_cartSuccess .cartSuccess_message_user #success_details {
  width: 100%;
  display: block;
  clear: both;
  padding: 0 10px 0 10px;
}
#page_cartSuccess .cartSuccess_message #success_details .image-success,
#page_cartSuccess .cartSuccess_message_user #success_details .image-success {
  width: 10%;
  display: inline-block;
  margin-left: 10px;
}
#page_cartSuccess .cartSuccess_message #success_details .image-success img,
#page_cartSuccess .cartSuccess_message_user #success_details .image-success img {
  width: 100%;
  margin-top: -15px;
}
#page_cartSuccess .cartSuccess_message #success_details .text-success,
#page_cartSuccess .cartSuccess_message_user #success_details .text-success {
  width: 70%;
  display: inline-block;
  margin-left: 10px;
}
#page_cartSuccess .cartSuccess_message #success_details .text-success h5,
#page_cartSuccess .cartSuccess_message_user #success_details .text-success h5 {
  font-weight: bold;
  color: black;
  margin-top: 10px;
  font-size: 10pt;
}
#page_cartSuccess .cartSuccess_message #success_buttons,
#page_cartSuccess .cartSuccess_message_user #success_buttons {
  width: 100%;
  margin-top: 10px;
  display: block;
  clear: both;
  text-align: center;
}
#page_cartSuccess .cartSuccess_message #success_buttons .btn-default,
#page_cartSuccess .cartSuccess_message #success_buttons .btn-default-black,
#page_cartSuccess .cartSuccess_message_user #success_buttons .btn-default,
#page_cartSuccess .cartSuccess_message_user #success_buttons .btn-default-black {
  font-size: 8pt;
  margin: 2px;
}
#page_cartSuccess .cartSuccess_message:after,
#page_cartSuccess .cartSuccess_message_user:after {
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid white;
  display: block;
  position: absolute;
  top: -10px;
  content: '';
  left: 70%;
}
#page_cartSuccess .cartSuccess_message:before,
#page_cartSuccess .cartSuccess_message_user:before {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #971b1e;
  display: block;
  position: absolute;
  top: -12px;
  content: '';
  left: 70%;
}
/*Page favorites success - WHITE Popup*/
#page_favSuccess {
  position: fixed;
  padding: 0;
  margin: 0;
  top: -500px;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 99;
  transition: width 0.3s, height 0.3s;
}
#page_favSuccess .favSuccess_message {
  border-top: 1.5px solid #971b1e;
  border-bottom: 1.5px solid #971b1e;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 4%;
  top: 17%;
  width: 22%;
  height: auto;
  padding: 5px;
  background: white;
}
#page_favSuccess .favSuccess_message #success_details {
  width: 100%;
  display: block;
  clear: both;
  padding: 0 10px 0 10px;
}
#page_favSuccess .favSuccess_message #success_details .image-success {
  width: 15%;
  display: inline-block;
  margin-left: 10px;
}
#page_favSuccess .favSuccess_message #success_details .image-success img {
  width: 100%;
  margin-top: -15px;
}
#page_favSuccess .favSuccess_message #success_details .text-success {
  width: 70%;
  display: inline-block;
  margin-left: 10px;
}
#page_favSuccess .favSuccess_message #success_details .text-success h5 {
  font-weight: bold;
  color: black;
  margin-top: 10px;
  font-size: 10pt;
}
#page_favSuccess .favSuccess_message #success_buttons {
  width: 100%;
  margin-top: 10px;
  display: block;
  clear: both;
  text-align: center;
}
#page_favSuccess .favSuccess_message #success_buttons .btn-default,
#page_favSuccess .favSuccess_message #success_buttons .btn-default-black {
  font-size: 8pt;
  margin: 2px;
}
#page_favSuccess .favSuccess_message:after {
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid white;
  display: block;
  position: absolute;
  top: -10px;
  content: '';
  left: 54%;
}
#page_favSuccess .favSuccess_message:before {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #971b1e;
  display: block;
  position: absolute;
  top: -12px;
  content: '';
  left: 54%;
}
/*Page cart success - RED Popup*/
/*#page_cartSuccess {
    position: fixed;
    padding: 0;
    margin: 0;
    top: -500px;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 99;
    transition: width 0.3s, height 0.3s;
}

    #page_cartSuccess .cartSuccess_message {
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
        border: 1px solid #f3e7d2;
        border-radius: 5px;
        position: absolute;
        right: 2%;
        top: 16%;
        width: 22%;
        height: auto;
        padding: 5px;
        background: #971b1e;
    }


        #page_cartSuccess .cartSuccess_message #success_details {
            width: 100%;
            display: block;
            clear: both;
            padding: 0 10px 0 10px;
        }

            #page_cartSuccess .cartSuccess_message #success_details .image-success {
                width: 10%;
                display: inline-block;
                margin-left:10px;
            }

                #page_cartSuccess .cartSuccess_message #success_details .image-success img {
                    width: 100%;
                    margin-top: -15px;
                }

            #page_cartSuccess .cartSuccess_message #success_details .text-success {
                width: 80%;
                display: inline-block;
                margin-left:10px;
            }

                #page_cartSuccess .cartSuccess_message #success_details .text-success h5 {
                    font-weight: bold;
                    color: white;
                    margin-top: 10px;
                    font-size: 10pt;
                }

        #page_cartSuccess .cartSuccess_message #success_buttons {
            width: 100%;
            margin-top: 10px;
            display: block;
            clear: both;
            text-align: center;
        }

            #page_cartSuccess .cartSuccess_message #success_buttons .btn-default {
                background-color: white;
                color: #971b1e;
            }

            #page_cartSuccess .cartSuccess_message #success_buttons .btn-default, #page_cartSuccess .cartSuccess_message #success_buttons .btn-default-black {
                font-size: 7pt;
                margin: 2px;
            }


        #page_cartSuccess .cartSuccess_message:after {
            width: 0;
            height: 0;
            border-left: 11px solid transparent;
            border-right: 11px solid transparent;
            border-bottom: 11px solid #971b1e;
            display: block;
            position: absolute;
            top: -10px;
            content: '';
            left: 65%;
        }


        #page_cartSuccess .cartSuccess_message:before {
            width: 0;
            height: 0;
            border-left: 12px solid transparent;
            border-right: 12px solid transparent;
            border-bottom: 12px solid #a6a6a6;
            display: block;
            position: absolute;
            top: -12px;
            content: '';
            left: 65%;
        }*/
/*Login success Popup*/
#login_success {
  position: fixed;
  padding: 0;
  margin: 0;
  top: -500px;
  left: -500px;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  transition: width 0.3s, height 0.3s;
}
#login_success .success_message {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: absolute;
  left: 30%;
  top: 35%;
  width: 40%;
  height: auto;
  padding: 20px;
  background: white;
}
#login_success .success_message img {
  max-width: 65%;
  margin: 0;
}
#login_success .success_message h4 {
  font-weight: bold;
  margin-top: 20px;
}
#login_success .success_message h5 {
  font-weight: bold;
  margin-top: 20px;
}
/*Page register Popup*/
#page_register {
  position: fixed;
  padding: 0;
  margin: 0;
  top: -500px;
  left: -500px;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  transition: width 0.3s, height 0.3s;
}
#page_register #register_form {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: absolute;
  left: 30%;
  top: 10%;
  width: 40%;
  height: auto;
  padding: 20px;
  background: white;
}
#page_register #register_form #email_register {
  width: 65%;
}
#page_register #register_form #password_register,
#page_register #register_form #confirm_password_register {
  width: 40%;
}
#page_register #register_form #password_register input,
#page_register #register_form #confirm_password_register input {
  width: 80%;
  display: inline;
}
#page_register #register_form #password_register #show_password_register,
#page_register #register_form #confirm_password_register #show_password_confirm {
  display: inline-block;
  padding: 3.5px;
  margin-left: 5px;
  border-radius: 5px;
  color: rgba(0, 0, 0, 0.55);
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.55);
}
#page_register #register_form #password_register #show_password_register:hover,
#page_register #register_form #confirm_password_register #show_password_confirm:hover,
#page_register #register_form #password_register #show_password_register.showing,
#page_register #register_form #confirm_password_register #show_password_confirm.showing {
  /*color: rgba(255,255,255,0.6);*/
  background-color: rgba(255, 255, 255, 0.7);
}
/* Checkbox */
#checkbox_label label {
  display: inline;
}
.regular-checkbox {
  display: none;
}
.regular-checkbox + label {
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px 10px 15px 15px;
  border-radius: 3px;
  position: relative;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
}
.regular-checkbox:hover + label {
  cursor: pointer;
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
}
.regular-checkbox:disabled + label {
  background-color: #e9ecee;
  cursor: not-allowed;
}
.regular-checkbox + label:active,
.regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
.regular-checkbox:checked + label {
  color: #99a1a7;
}
.regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 20px;
  position: absolute;
  top: 1px;
  left: 5px;
  color: #99a1a7;
}
.tag {
  position: relative;
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}
/* Registar user + login */
.account-content {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 50px;
  position: relative;
  padding-top: 130px;
  min-height: 550px;
}
.account-body {
  width: 100%;
  background-image: url("../images/A_Fabrica_Dos_Chapéus_Interior.jpg");
  /*background-position: center;*/
  background-repeat: no-repeat;
  background-size: cover;
  height: 580px;
  filter: blur(3px);
  -webkit-filter: blur(3px);
  margin-top: 10px;
  margin-bottom: 30px;
}
.login-form {
  position: absolute;
  top: 220px;
  left: 10%;
  width: 33%;
}
.register-form {
  position: absolute;
  top: 220px;
  left: 55%;
  width: 33%;
}
.wrap-form {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border: 3px solid inset;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
  text-align: center;
  min-height: 450px;
  height: auto;
  padding: 15px;
  margin-top: -20px;
}
.wrap-form hr {
  border-width: 2px;
}
.wrap-form h4 {
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  color: black;
  width: auto;
  display: inline-block;
}
.wrap-form h4 > a,
.wrap-form h4 > a:hover,
.wrap-form h4 > a:focus,
.wrap-form h4 > a:visited {
  text-decoration: none;
  color: black;
}
.wrap-form h4::after {
  content: '';
  display: block;
  margin: auto;
  margin-top: 5px;
  width: 0;
  height: 2px;
  background: transparent;
  transition: width 0.5s, background-color 0.5s ease;
}
.wrap-form h4:hover::after {
  width: 100%;
  background: #f3e7d2;
  /*transition: width .3s;*/
}
.wrap-form h4.active::after {
  width: 100%;
  background: #f3e7d2;
  /*transition: width .3s;*/
}
.wrap-form .form-data {
  min-height: 220px;
  height: auto;
}
.wrap-form#password-recovery {
  height: auto;
}
.password-recovery-form {
  position: absolute;
  top: 280px;
  left: 30%;
  width: 550px;
}
.account-content .wrap-form #email_login,
.account-content .wrap-form #email_register,
.account-content .wrap-form #email_reset {
  width: 80%;
  margin-left: 10%;
  margin-top: 30px;
  text-align: left;
}
.account-content .wrap-form #email_login > label,
.account-content .wrap-form #email_login > input,
.account-content .wrap-form #email_register > label,
.account-content .wrap-form #email_register > input,
.account-content .wrap-form #email_register > label,
.account-content .wrap-form #email_reset > input {
  display: inline-block;
}
.account-content .wrap-form #email_login > label,
.account-content .wrap-form #email_register > label,
.account-content .wrap-form #email_reset > label {
  width: 20%;
  margin-right: 0;
}
.account-content .wrap-form #email_login > input,
.account-content .wrap-form #email_register > input,
.account-content .wrap-form #email_reset > input {
  width: 79%;
  background-color: white;
}
.account-content .wrap-form #password_login,
.account-content .wrap-form #password_register,
.account-content .wrap-form #password_reset {
  width: 80%;
  margin-left: 10%;
  text-align: left;
}
.account-content .wrap-form #password_login > label,
.account-content .wrap-form #password_login > input,
.account-content .wrap-form #password_register > label,
.account-content .wrap-form #password_register > input,
.account-content .wrap-form #password_register > label,
.account-content .wrap-form #password_reset > input {
  display: inline-block;
}
.account-content .wrap-form #password_login > label,
.account-content .wrap-form #password_register > label,
.account-content .wrap-form #password_reset > label {
  width: 40%;
  margin-right: 0;
}
.account-content .wrap-form #password_login > input,
.account-content .wrap-form #password_register > input,
.account-content .wrap-form #password_reset > input {
  width: 50%;
  /*background-color: rgba(255,255,255,0.45);*/
  background-color: white;
}
.account-content .wrap-form #password_login #show_password_login,
.account-content .wrap-form #password_register #show_password_register,
.account-content .wrap-form #confirm_password_register #show_password_confirm,
.account-content .wrap-form #password_reset #show_password_reset,
.account-content .wrap-form #confirm_password_reset #show_password_reset_confirm {
  display: inline-block;
  padding: 3.5px;
  margin-left: 5px;
  border-radius: 5px;
  color: rgba(0, 0, 0, 0.55);
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.55);
}
.account-content .wrap-form #password_login #show_password_login:hover,
.account-content .wrap-form #password_register #show_password_register:hover,
.account-content .wrap-form #confirm_password_register #show_password_confirm:hover,
.account-content .wrap-form #password_reset #show_password_reset:hover,
.account-content .wrap-form #confirm_password_reset #show_password_reset_confirm:hover,
.account-content .wrap-form #password_login #show_password_login.showing,
.account-content .wrap-form #password_register #show_password_register.showing,
.account-content .wrap-form #confirm_password_register #show_password_confirm.showing,
.account-content .wrap-form #password_reset #show_password_reset.showing,
.account-content .wrap-form #confirm_password_reset #show_password_reset_confirm.showing {
  /*color: rgba(255,255,255,0.6);*/
  background-color: rgba(255, 255, 255, 0.7);
}
.account-content .wrap-form #confirm_password_register,
.account-content .wrap-form #confirm_password_reset {
  width: 80%;
  margin-left: 10%;
  text-align: left;
}
.account-content .wrap-form #confirm_password_register > label,
.account-content .wrap-form #confirm_password_register > input,
.account-content .wrap-form #confirm_password_reset > label,
.account-content .wrap-form #confirm_password_reset > input {
  display: inline-block;
}
.account-content .wrap-form #confirm_password_register > label,
.account-content .wrap-form #confirm_password_reset > label {
  width: 40%;
  margin-right: 0;
}
.account-content .wrap-form #confirm_password_register > input,
.account-content .wrap-form #confirm_password_reset > input {
  width: 50%;
  /*background-color: rgba(255,255,255,0.45);*/
  background-color: white;
}
.account-content .wrap-form #checkbox,
.account-content .wrap-form #checkbox_terms {
  margin-top: 30px;
}
.account-content .wrap-form #checkbox .checkbox label.link,
.account-content .wrap-form #checkbox_terms .checkbox label.link,
.account-content .wrap-form #chk_mailingList .checkbox label.link {
  font-weight: bold;
  font-size: 10pt;
}
.account-content .wrap-form #checkbox .checkbox input,
.account-content .wrap-form #checkbox_terms .checkbox input,
.account-content .wrap-form #chk_mailingList .checkbox input {
  cursor: pointer;
}
.account-content .wrap-form #forgotpwd {
  margin-left: 35%;
  width: 140px;
}
.account-content .wrap-form #forgotpwd a {
  font-weight: bold;
  font-size: 9pt;
  color: #971b1e;
  text-decoration: none;
}
.account-content .wrap-form #forgotpwd a:hover {
  text-decoration: none;
}
.account-content .wrap-form #forgotpwd a::after {
  content: '';
  display: block;
  margin: auto;
  margin-top: 2px;
  width: 0;
  height: 1.5px;
  background: transparent;
  transition: width 0.5s, background-color 0.5s ease;
}
.account-content .wrap-form #forgotpwd a:hover::after {
  width: 100%;
  background: #f3e7d2;
}
.account-content .wrap-form #form-btns button {
  width: 30%;
  text-transform: uppercase;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.45);
  color: #971b1e;
  margin: 5px;
}
.account-content .wrap-form #form-btns button.back-btn {
  width: 10%;
  text-transform: uppercase;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.45);
  color: #971b1e;
  margin: 5px;
}
.account-content .wrap-form #form-btns button:hover {
  background-color: #ffffff;
}
.account-content .wrap-form #form-btns button.back-btn span {
  top: 40px;
}
.account-content .wrap-form #lbl_privacidade a {
  font-weight: bold;
  color: #971b1e;
  text-decoration: none;
}
.account-content .wrap-form #lbl_privacidade a:hover {
  text-decoration: none;
}
.account-content .wrap-form #lbl_privacidade a::after {
  content: '';
  display: block;
  margin: auto;
  margin-left: 60%;
  margin-top: 2px;
  width: 0;
  height: 1.5px;
  background: transparent;
  transition: width 0.5s, background-color 0.5s ease;
}
.account-content .wrap-form #lbl_privacidade a:hover::after {
  width: 140px;
  background: #f3e7d2;
}
/* END Registar user */
/* Manage */
.manage-title {
  font-size: 16pt;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.manage-section-title {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#manage_menu {
  width: 20%;
  float: left;
}
#manage_body {
  margin-left: 5%;
  width: 75%;
  float: left;
}
.manage-menu {
  width: 100%;
}
.manage-menu ul.nav.nav-pills.nav-stacked li a h5 {
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0;
  width: auto;
}
.manage-menu ul.nav.nav-pills.nav-stacked li.active a,
.manage-menu ul.nav.nav-pills.nav-stacked li:hover a,
.manage-menu ul.nav.nav-pills.nav-stacked li.active a h5,
.manage-menu ul.nav.nav-pills.nav-stacked li:hover a h5 {
  background: none;
}
.manage-menu ul.nav.nav-pills.nav-stacked li a h5::after {
  content: '';
  display: block;
  margin: auto;
  width: 0;
  height: 3px;
  margin-top: 10px;
  background: transparent;
  transition: width 0.5s, background-color 0.5s ease;
}
.manage-menu ul.nav.nav-pills.nav-stacked li:hover a h5::after {
  width: 100%;
  background: #f3e7d2;
  transition: width 0.3s;
}
.manage-menu ul.nav.nav-pills.nav-stacked li.active a h5::after {
  width: 100%;
  background: #f3e7d2;
  transition: width 0.3s;
}
.perfil {
  width: 75%;
}
.form-frame {
  padding: 30px;
  border: 1px solid #971b1e;
  /*box-shadow: 0 3px 3px #f3e7d2;*/
  box-shadow: 5px 8px 16px 0px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}
#areacliente_email_group {
  width: 40%;
  display: inline-table;
}
#areacliente_nome_group {
  width: 35%;
  display: inline-table;
  margin-left: 2%;
}
#areacliente_telefone_group {
  width: 20%;
  display: inline-table;
  margin-left: 2%;
}
#areacliente_empresa_group {
  width: 55%;
  display: inline-table;
}
#areacliente_funcao_group {
  width: 40%;
  display: inline-table;
  margin-left: 2%;
}
#areacliente_morada_group {
  width: 66%;
  display: inline-table;
}
#areacliente_codpostal_group {
  width: 16%;
  display: inline-table;
}
#areacliente_localidade_group {
  width: 40%;
  display: inline-table;
  margin-left: 1%;
}
#areacliente_pais_group {
  width: 40%;
  display: inline-table;
  margin-left: 1%;
}
#areacliente_faturacao_nome_group {
  width: 45%;
  display: inline-table;
}
#areacliente_nif_group {
  width: 25%;
  display: inline-table;
  margin-left: 2%;
}
#change-password .perfil {
  width: 55%;
}
#change-password label {
  width: 100%;
  display: block;
}
#change-password input {
  width: 40%;
  display: inline-block;
}
#change-password #show_password_old,
#change-password #show_password_new,
#change-password #show_password_confirm_new {
  display: inline-block;
  padding: 3.5px;
  margin-left: 5px;
  border-radius: 5px;
  color: rgba(0, 0, 0, 0.55);
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
#change-password #show_password_old:hover,
#change-password #show_password_new:hover,
#change-password #show_password_confirm_new:hover,
#change-password #show_password_old.showing,
#change-password #show_password_new.showing,
#change-password #show_password_confirm_new.showing {
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.35);
}
.frame-dados label {
  text-transform: uppercase;
}
.table-container {
  width: 100%;
  overflow: auto;
}
table {
  border: none;
}
thead {
  border: none;
}
tbody {
  border: none;
}
tr {
  border: none;
  background-color: white;
}
tr:nth-child(even) {
  background-color: #ededf0;
}
th {
  vertical-align: middle;
}
td {
  border: none;
  padding: 10px;
  font-size: 11pt;
  width: 350px;
  text-align: center;
  vertical-align: middle;
}
.tab-header {
  background: #404040;
  color: white;
}
.tab-header th,
.tab-header td {
  font-size: 13pt;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
  font-weight: normal;
}
.table_hover {
  transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
}
.table_hover:hover {
  background-color: #f5f5f5;
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
}
/* END Manage */
/* Topo - Header */
.header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  height: auto;
  background: white;
}
.header .body-content {
  margin-bottom: 0;
}
.header .top-header {
  background-color: #971b1e;
  width: 100%;
  height: 30px;
  padding: 5px 30px 5px 20px;
}
.header .top-header .header-social-icons {
  width: 10%;
  float: left;
}
.header .top-header .header-social-icons ul {
  padding: 0;
  margin: 0;
}
.header .top-header .header-social-icons ul li {
  display: inline-block;
  margin: 0 5px 0 5px;
}
.header .top-header .header-social-icons ul li a .fab.fa-facebook-f {
  color: white;
  font-size: 14pt;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.header .top-header .header-social-icons ul li a i.fab.fa-instagram {
  color: white;
  font-size: 14pt;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.header .top-header .header-social-icons ul li a .fab.fa-twitter {
  color: white;
  font-size: 14pt;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.header .top-header .header-social-icons ul li a:hover .fab.fa-facebook-f {
  transform: scale(1.1);
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.header .top-header .header-social-icons ul li a:hover i.fab.fa-instagram {
  transform: scale(1.1);
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.header .top-header .header-social-icons ul li a:hover .fab.fa-twitter {
  transform: scale(1.1);
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.header .top-header .header-info {
  float: left;
  text-align: center;
  width: 80%;
}
/* [SLIDER] */
.header .top-header .header-info #header-slider {
  height: 20px;
  overflow: hidden;
}
.header .top-header .header-info #header-slider ul {
  padding: 0;
  margin: 0;
  width: 100%;
}
.header .top-header .header-info #header-slider ul li {
  list-style: none;
  height: 25px;
  padding: 0;
  margin: 0;
}
.header .top-header .header-info #header-slider .frase-header_1st {
  font-weight: bold;
  display: inline;
  width: 50%;
  float: left;
  text-align: right;
  padding-right: 80px;
  color: white;
}
.header .top-header .header-info #header-slider .frase-header_2nd {
  font-weight: bold;
  display: inline;
  width: 50%;
  float: right;
  text-align: left;
  padding-left: 50px;
  color: white;
}
.header .top-header .header-flags {
  width: 10%;
  text-align: center;
  float: left;
}
.header .top-header .header-flags .dropdown {
  padding: 0;
  margin: 0;
  text-align: right;
}
.header .top-header .header-flags .dropdown .btn-flag {
  background: none;
  color: white;
  font-weight: bold;
  padding: 0;
}
.header .top-header .header-flags .dropdown .btn-flag img {
  width: 20px;
}
.header .top-header .header-flags .dropdown .dropdown-menu {
  right: 0;
  left: 60%;
  min-width: unset;
  width: 70px;
  background: white;
}
.header .top-header .header-flags .dropdown ul.dropdown-menu li {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}
.header .top-header .header-flags .dropdown ul.dropdown-menu li a {
  padding: 3px;
  margin: 0;
}
.header .top-header .header-flags .dropdown ul.dropdown-menu li a img {
  width: 20px;
}
/*
            .header .top-header .header-flags .tip span {
                width: auto;
                left: 0px;
                font-size: 7pt;
            }

            .header .top-header .header-flags .tip:hover span {
                top: 25px;
            }


            .header .top-header .header-flags ul {
                padding: 0;
                margin: 0;
            }

                .header .top-header .header-flags ul li {
                    list-style: none;
                    display: inline-block;
                }


                    .header .top-header .header-flags ul li img {
                        width: 25px;
                        margin: 7px;
                        margin-top: -3px;
                        transition: all 0.25s ease;
                        -webkit-transition: all 0.25s ease;
                        -moz-transition: all 0.25s ease;
                        -o-transition: all 0.25s ease;
                        -ms-transition: all 0.25s ease;
                    }

                        .header .top-header .header-flags ul li img:hover {
                            transition: all 0.25s ease;
                            -webkit-transition: all 0.25s ease;
                            -moz-transition: all 0.25s ease;
                            -o-transition: all 0.25s ease;
                            -ms-transition: all 0.25s ease;
                        }
*/
/* Header pesquisa-icons */
.header .header-top-icons {
  clear: both;
  width: 100%;
  padding: 20px;
  padding-right: 0;
  background-color: white;
  height: 100px;
  margin-top: 10px;
}
.header .header-top-icons .logo {
  float: left;
  width: 27%;
  margin-left: -15px;
  padding: 0;
}
.header .header-top-icons .logo img {
  width: 100%;
}
.header .header-top-icons .search-box {
  float: left;
  width: 43%;
  text-align: right;
  margin-top: 15px;
  margin-left: 17%;
  overflow: unset;
}
.header .header-top-icons .search-box form .form-search {
  width: 350px;
  border: 1px solid #8c8c8c;
  /*border-left: none;*/
  border-radius: 10px;
  float: right;
  height: 35px;
  padding: 0;
  text-align: left;
}
.header .header-top-icons .search-box form .form-search input {
  border: none;
  /*border-left: 1px solid #8c8c8c;*/
  border-radius: 10px;
  width: 315px;
  font-size: 11pt;
  color: black;
  padding: 5px;
}
.header .header-top-icons .search-box form .form-search > input:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.header .header-top-icons .search-box form .form-search ::placeholder {
  font-size: 10pt;
  color: #bfbfbf;
  font-style: italic;
}
.header .header-top-icons .search-box form .form-search a {
  background: url("../images/icons/loupe-icon.png") no-repeat;
  background-size: contain;
  padding: 0;
  height: 27px;
  width: 27px;
  float: right;
  margin-top: 2px;
  margin-right: 5px;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
}
.header .header-top-icons .search-box form .form-search a:hover {
  transform: scale(1.1);
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
}
.header .header-top-icons .icons-right {
  float: right;
  width: 13%;
  margin-top: 3px;
  text-align: center;
  position: relative;
}
.header .header-top-icons .icons-right ul {
  padding: 0;
  margin: 0;
}
.header .header-top-icons .icons-right ul li {
  list-style: none;
  display: inline;
}
.header .header-top-icons .icons-right ul li a {
  position: relative;
}
.header .header-top-icons .icons-right ul li a:hover {
  text-decoration: none;
}
.header .header-top-icons .icons-right ul li a:visited {
  text-decoration: none;
}
.header .header-top-icons .icons-right ul li a:focus {
  text-decoration: none;
}
.header .header-top-icons .icons-right ul li a img {
  /*width: 35px;*/
  width: 25px;
  margin: 10px;
  /*margin-top:5px;*/
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
}
.header .header-top-icons .icons-right ul li img#user {
  width: 32px;
  margin: 10px;
  margin-top: 12px;
}
.header .header-top-icons .icons-right ul li a img#heart {
  width: 30px;
  margin: 10px;
  margin-top: 17px;
}
.header .header-top-icons .icons-right ul li a#shopping-bag span#cart-status {
  position: absolute;
  left: 25px;
  top: 8px;
  background-color: #69c606;
  color: white;
  border-radius: 100%;
  padding: 1px;
  width: 16px;
  height: 16px;
  text-align: center;
  font-size: 8pt;
}
.header .header-top-icons .icons-right ul li a#favorites-icon span#favorites-nr {
  position: absolute;
  left: 27px;
  top: 8px;
  background-color: #69c606;
  color: white;
  border-radius: 100%;
  padding: 1px;
  width: 16px;
  height: 16px;
  text-align: center;
  font-size: 8pt;
}
/* Dropdown */
.header .header-top-icons .icons-right .dropdown {
  cursor: pointer;
  position: relative;
  display: inline-block;
  text-align: left;
}
.header .header-top-icons .icons-right ul.dropdown li.dropbtn {
  list-style: none;
  transition: all 0.45s ease-out;
  -webkit-transition: all 0.45s ease-out;
  -moz-transition: all 0.45s ease-out;
  -o-transition: all 0.45s ease-out;
  -ms-transition: all 0.45s ease-out;
}
.header .header-top-icons .icons-right ul.dropdown li.dropbtn .tip span {
  width: auto;
  height: auto;
}
.header .header-top-icons .icons-right ul.dropdown li.dropbtn ul.dropdown-content {
  border-top: 1.5px solid #971b1e;
  border-bottom: 1.5px solid #971b1e;
  border-radius: 10px;
  position: absolute;
  left: 5px;
  top: 60px;
  background-color: white;
  width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s ease-in-out 0s, visibility 0s linear 0.35s, z-index 0s linear 0.05s;
  text-align: left;
  padding: 0;
}
.header .header-top-icons .icons-right ul.dropdown li.dropbtn ul.dropdown-content:after {
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid white;
  display: block;
  position: absolute;
  top: -11px;
  content: '';
  left: 68%;
}
.header .header-top-icons .icons-right ul.dropdown li.dropbtn ul.dropdown-content:before {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #971b1e;
  display: block;
  position: absolute;
  top: -13px;
  content: '';
  left: 68%;
}
.header .header-top-icons .icons-right ul.dropdown li.dropbtn ul.dropdown-content li {
  list-style: none;
  /*margin: 5px;*/
  text-shadow: none;
  font-weight: bold;
  text-align: center;
}
.header .header-top-icons .icons-right ul.dropdown li.dropbtn ul.dropdown-content li p {
  /*color: #808080;*/
  font-weight: bold;
  font-size: 10pt;
  text-shadow: none;
  text-decoration: none;
  text-transform: none;
  display: block;
  padding: 5px;
  cursor: default;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
.header .header-top-icons .icons-right ul.dropdown li.dropbtn ul.dropdown-content li a {
  color: #808080;
  /*box-shadow: 0 8px 10px -10px #a6a6a6;*/
  font-size: 9pt;
  text-shadow: none;
  text-decoration: none;
  text-transform: none;
  display: block;
  padding: 5px;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
.header .header-top-icons .icons-right ul.dropdown li.dropbtn ul.dropdown-content li a:hover {
  background-color: #e6e6e6;
  /*color: white;*/
  border-radius: 10px;
  text-shadow: none;
  transition: all 0.35s ease-in;
  -webkit-transition: all 0.35s ease-in;
  -moz-transition: all 0.35s ease-in;
  -o-transition: all 0.35s ease-in;
  -ms-transition: all 0.35s ease-in;
}
.header .header-top-icons .icons-right ul.dropdown li.dropbtn ul.dropdown-content li button {
  padding: 0;
  border: none;
  background: none;
  color: #2a5f95;
  font-weight: bold;
  text-shadow: none;
  text-decoration: none;
  display: block;
  padding: 5px;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
.header .header-top-icons .icons-right ul.dropdown li.dropbtn ul.dropdown-content li button:hover {
  background-color: #2a5f95;
  color: white;
  text-shadow: none;
  transition: all 0.35s ease-in;
  -webkit-transition: all 0.35s ease-in;
  -moz-transition: all 0.35s ease-in;
  -o-transition: all 0.35s ease-in;
  -ms-transition: all 0.35s ease-in;
}
.header .header-top-icons .icons-right ul.dropdown li.dropbtn:hover .dropdown-content {
  text-shadow: none;
  visibility: visible;
  /* shows sub-menu */
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.35s;
  /* this removes the transition delay so the menu will be visible while the other styles transition */
}
.nav-top {
  width: 100%;
  border-top: 1px solid;
  border-bottom: 1px solid;
  height: 42px;
  margin-top: 0;
  background: white;
  /*overflow: hidden;*/
}
.nav-top .top-menu-left {
  width: 24.5%;
  text-align: left;
  padding-left: 5px;
  display: inline-block;
  background: white;
  height: 38px;
}
.nav-top .top-menu-left ul {
  padding: 0;
  padding-top: 7px;
  padding-bottom: 5px;
  background: white;
}
.nav-top .top-menu-left li {
  list-style: none;
  display: inline;
  margin-right: 10px;
}
.nav-top .top-menu-left .fas.fa-slash {
  transform: rotate(90deg);
}
.nav-top .top-menu-left li:last-child {
  margin-left: 5px;
}
.nav-top .top-menu-left ul li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11pt;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.nav-top .top-menu-left ul li a:hover {
  /*font-size: 12pt;*/
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.nav-top .top-menu-left ul li a img {
  height: 18px;
  margin-right: 5px;
  margin-top: -3px;
  vertical-align: middle;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.nav-top .top-menu-left ul li a:hover img {
  /*transform: scale(1.3);*/
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.nav-top .top-menu-left ul li a.active-season {
  background-color: #404040;
  color: white;
  font-size: 13pt;
  font-weight: bold;
  border-radius: 10px;
  padding: 5px;
  /*border-top: 3px solid #f3e7d2;
                border-bottom: 3px solid #f3e7d2;*/
}
.nav-top .top-menu-left ul li a.active-season img {
  transform: scale(1.2);
  filter: invert(100%);
}
.nav-top .top-menu-left ul li a.inactive-season {
  color: #404040;
  font-weight: bold;
  padding: 5px;
  /*border-top: 3px solid #f3e7d2;
                border-bottom: 3px solid #f3e7d2;*/
}
.nav-top .top-menu-right {
  width: 75%;
  text-align: right;
  display: inline-block;
}
.nav-top .top-menu-right ul {
  padding: 0;
  padding-top: 7px;
  padding-bottom: 5px;
}
.nav-top .top-menu-right ul li {
  list-style: none;
  display: inline;
  padding: 7px 10px 7px 10px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.nav-top .top-menu-right ul li a {
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11pt;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.nav-top .top-menu-right ul li a:hover {
  /*font-size: 12pt;*/
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
/* Dropdown */
.nav-top .top-menu-right ul.drop-menu {
  display: inline-block;
  text-align: left;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn {
  list-style: none;
  position: relative;
  transition: all 0.45s ease-out;
  -webkit-transition: all 0.45s ease-out;
  -moz-transition: all 0.45s ease-out;
  -o-transition: all 0.45s ease-out;
  -ms-transition: all 0.45s ease-out;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn:hover {
  background: #e6e6e6;
  transition: all 0.45s ease-out;
  -webkit-transition: all 0.45s ease-out;
  -moz-transition: all 0.45s ease-out;
  -o-transition: all 0.45s ease-out;
  -ms-transition: all 0.45s ease-out;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content {
  border-top: 1.5px solid #971b1e;
  border-bottom: 1.5px solid #971b1e;
  border-radius: 10px;
  position: absolute;
  right: 0px;
  /*left:0;*/
  top: 30px;
  background-color: white;
  width: 500px;
  height: 0;
  overflow: hidden;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s ease-in-out 0s, visibility 0s linear 0.35s, z-index 0s linear 0.05s;
  text-align: left;
  padding: 0;
  padding-bottom: 10px;
}
/*.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content#menu_mulher {
                    left: -50px;
                }

                .nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content#menu_homem {
                    left: -100px;
                }*/
/*.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content#menu_crianca {
                    left: -40px;
                }

                .nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content#menu_acessorios {
                    left: -80px;
                }*/
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content .dropmenu-links {
  padding: 0;
  width: 40%;
  float: right;
  margin: 0;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content .dropmenu-links #gen_name_lingua {
  float: right;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content .dropmenu-image {
  padding: 0;
  width: 55%;
  float: left;
  text-align: center;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content .dropmenu-image h4 {
  text-align: center;
  color: #404040;
  font-size: 11pt;
  font-weight: bold;
  text-transform: uppercase;
  /*border: 1px solid #404040;*/
  /*border: 1px solid #f3e7d2;*/
  box-shadow: 0 8px 8px -8px #f3e7d2;
  border-radius: 10px;
  padding: 5px;
  width: 65%;
  margin-left: 17.5%;
  transition: opacity 0.3s ease;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content .dropmenu-image img {
  width: 75%;
  margin-left: 12.5%;
  display: block;
  transition: opacity 0.3s ease;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content .dropmenu-image p {
  height: 100px;
  width: 90%;
  margin-left: 5%;
  margin-top: 5px;
  overflow: hidden;
  font-style: italic;
  text-align: center;
  transition: opacity 0.3s ease;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content#menu_informacoes {
  width: 150px;
  right: 0;
  transition: width 0.3s ease;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content#menu_informacoes .dropmenu-links {
  padding: 0;
  margin: 0;
  width: 150px;
  float: right;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content#menu_informacoes .dropmenu-sublinks {
  padding: 0;
  float: left;
  width: 0;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, width 0.3s ease;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content .dropmenu-all-produtos {
  padding: 0;
  width: 100%;
  float: left;
  text-align: center;
  box-shadow: 0 -8px 8px -8px #f3e7d2;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content li {
  list-style: none;
  display: block;
  text-shadow: none;
  font-weight: bold;
  margin: 0;
  padding: 3px;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content li p {
  color: black;
  font-weight: normal;
  font-size: 10pt;
  text-shadow: none;
  text-decoration: none;
  text-transform: none;
  display: block;
  padding: 2px;
  margin: 0;
  cursor: default;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content li a {
  color: black;
  box-shadow: 0 8px 10px -10px #a6a6a6;
  font-weight: normal;
  font-size: 10pt;
  text-shadow: none;
  text-decoration: none;
  text-transform: none;
  display: block;
  padding: 3px;
  margin: 0;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content li a:hover {
  background-color: #e6e6e6;
  /*color: white;*/
  border-radius: 10px;
  text-shadow: none;
  transition: all 0.35s ease-in;
  -webkit-transition: all 0.35s ease-in;
  -moz-transition: all 0.35s ease-in;
  -o-transition: all 0.35s ease-in;
  -ms-transition: all 0.35s ease-in;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content li button {
  padding: 0;
  border: none;
  background: none;
  color: #2a5f95;
  font-weight: bold;
  text-shadow: none;
  text-decoration: none;
  display: block;
  padding: 5px;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
.nav-top .top-menu-right ul.drop-menu li.dropmenu-btn ul.drop-menu-content li button:hover {
  background-color: #2a5f95;
  color: white;
  text-shadow: none;
  transition: all 0.35s ease-in;
  -webkit-transition: all 0.35s ease-in;
  -moz-transition: all 0.35s ease-in;
  -o-transition: all 0.35s ease-in;
  -ms-transition: all 0.35s ease-in;
}
/* Carousel */
.carousel {
  height: 380px;
  margin-bottom: 0;
  margin-top: 0;
}
.carousel .carousel-inner {
  height: 100%;
}
.carousel .carousel-inner .item {
  position: relative;
  height: 100%;
}
.carousel.carousel-fade .item {
  -webkit-transition: opacity 0.75s ease-in-out;
  -moz-transition: opacity 0.75s ease-in-out;
  -ms-transition: opacity 0.75s ease-in-out;
  -o-transition: opacity 0.75s ease-in-out;
  transition: opacity 0.75s ease-in-out;
  opacity: 0;
}
.carousel.carousel-fade .active.item {
  opacity: 1;
}
.carousel.carousel-fade .active.left,
.carousel.carousel-fade .active.right {
  left: 0;
  z-index: 2;
  opacity: 0;
  filter: alpha(opacity=0);
}
.carousel.carousel-fade .next,
.carousel.carousel-fade .prev {
  left: 0;
  z-index: 1;
}
.carousel.carousel-fade .carousel-control {
  z-index: 3;
}
.carousel-indicators {
  bottom: -40px;
  z-index: 0;
}
.carousel-indicators li {
  border: 1px solid #971b1e;
}
.carousel-indicators .active {
  background-color: #971b1e;
}
.carousel .carousel-inner .item img {
  width: 100%;
}
.info-banner {
  width: 100%;
  background-color: #404040;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
  padding: 0;
}
.info-banner ul {
  width: 100%;
  padding: 0;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}
.info-banner ul li {
  list-style: none;
  display: inline-block;
  margin: 0 2% 0 2%;
  width: 20%;
}
.info-banner ul li a {
  text-decoration: none;
  color: white;
  font-size: 11pt;
}
.info-banner ul li a:hover {
  text-decoration: none;
  color: white;
}
.info-banner ul li a .info-image {
  display: inline-block;
  margin-top: -10px;
}
.info-banner ul li a .info-image img#ship24h {
  width: 50px;
  margin-top: 0;
}
.info-banner ul li a .info-image img#free-ship {
  width: 50px;
  margin-top: 0;
  margin-right: 3px;
}
.info-banner ul li a .info-image img#measure {
  width: 27px;
  margin-right: 5px;
  margin-top: 2px;
}
.info-banner ul li a .info-image img#payment {
  width: 40px;
  margin-right: 5px;
}
.info-banner ul li a .info-image img#shop {
  width: 27px;
  margin-right: 5px;
  margin-top: 2px;
}
.info-banner ul li a .info-text {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.info-banner ul li a .info-text span {
  font-size: 9pt;
  display: block;
  text-transform: none;
  font-weight: normal;
}
.info-banner ul li::after {
  content: '';
  margin: auto;
  display: block;
  width: 0;
  height: 3px;
  background: transparent;
  transition: width 0.5s, background-color 0.5s ease;
}
.info-banner ul li:hover::after {
  width: 100%;
  background: #f3e7d2;
  /*transition: width .7s;*/
}
.catalogo {
  margin-top: 10px;
  padding: 0;
  text-align: center;
}
.catalogo .cat_mulher {
  position: relative;
  display: inline-block;
  width: 35%;
  margin-left: 10%;
  padding: 0;
}
.catalogo .cat_mulher a img {
  width: 100%;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.catalogo .cat_mulher a:hover img {
  transform: scale(1.1);
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.catalogo .cat_homem {
  position: relative;
  display: inline-block;
  width: 35%;
  margin-left: 10%;
  padding: 0;
}
.catalogo .cat_homem a img {
  width: 100%;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.catalogo .cat_homem a:hover img {
  transform: scale(1.1);
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.catalogo a .cat_caption {
  position: absolute;
  bottom: 5px;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  text-align: center;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.catalogo a:hover .cat_caption {
  transform: scale(1.1);
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.catalogo a .cat_caption span {
  font-size: 14pt;
  padding: 10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
.destaques {
  width: 100%;
  margin-top: 40px;
}
.destaques .title {
  background-color: #971b1e;
  width: 100%;
  text-align: center;
  height: 35px;
}
.destaques .title h4 {
  font-size: 14pt;
  color: white;
  text-transform: uppercase;
  line-height: 35px;
}
.artigos_destaque {
  width: 96%;
  margin-left: 2%;
  margin-top: 20px;
  border: 3px solid inset;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.55);
  padding: 0;
  text-align: center;
}
.slider {
  width: 100%;
  margin: 30px auto;
  padding: 0;
}
.slick-slide {
  width: 200px;
  margin: 10px;
  transition: all ease-in-out 0.5s;
  opacity: 1;
}
.slick-slide:hover {
  opacity: 1;
}
.slick-active {
  opacity: 1;
  transition: all ease-in-out 0.5s;
}
.slick-current {
  opacity: 1;
  transition: all ease-in-out 0.5s;
}
.slick-prev:before,
.slick-next:before {
  color: black;
}
.slide-opacity {
  opacity: 0.3;
}
.slick-slide.artigo_destaque {
  text-align: center;
}
.slick-slide.artigo_destaque a img {
  max-width: 85% !important;
  margin: auto !important;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.slick-slide.artigo_destaque a:hover img {
  transform: scale(1.05);
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.slick-slide.artigo_destaque .hat-name {
  height: 40px;
}
.slick-slide.artigo_destaque .hat-name h4 {
  text-align: center;
  font-weight: bold;
  font-size: 10pt;
  text-transform: uppercase;
  margin: 0;
  padding: 5px;
}
.slick-slide.artigo_destaque h5 {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  padding: 5px;
}
.slick-slide.artigo_destaque h5 span.tip {
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
}
.slick-slide.artigo_destaque h5 span.tip img {
  width: 18px;
  margin-top: -2px;
}
.slick-slide.artigo_destaque h5 span.tip span {
  top: 0;
  left: -30px;
  height: auto;
  width: 100px;
  text-transform: none;
}
.slick-slide.artigo_destaque h5 span.tip:hover span {
  top: -20px;
}
/* Vales Oferta */
.giftcard-page {
  padding: 0 20px 10px 20px;
  position: relative;
}
.giftcard-page .page_title {
  margin-top: 30px;
}
.giftcard-page .page_title h5 {
  line-height: 25px;
}
.giftcard-page .page_title h5 a.link {
  color: #e44e50;
}
.giftcard-page .page_title h5 a.link:hover {
  color: #971b1e;
}
.giftcard-page .giftcard-form {
  padding: 15px 20px;
  border: 2px solid #971b1e;
  border-radius: 15px;
}
.giftcard-page .giftcard-form [class*="col-"] {
  padding: 10px 10px;
}
.giftcard-page .giftcard-form .addtocart {
  text-transform: uppercase;
  color: white;
  background-color: #971b1e;
  border: 1px solid #971b1e;
  height: 40px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.giftcard-page .giftcard-form .addtocart img {
  width: 15px;
  color: white;
  margin-top: -5px;
  margin-left: 7px;
}
.giftcard-page .giftcard-form .addtocart:hover {
  text-transform: uppercase;
  background-color: #b11b1d;
  border: 1px solid #b11b1d;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.giftcard-page .giftcard-form .form-group {
  margin-bottom: 0 !important;
}
.giftcard-page .giftcard-form .form-group p {
  margin: 0;
  padding: 0;
}
.giftcard-page .giftcard-form h3.title {
  padding: 0;
  margin: 0;
  color: #971a1d;
  font-weight: bold;
}
.giftcard-page .giftcard-form .send-by-email,
.giftcard-page .giftcard-form .send-by-mail {
  clear: both;
  position: relative;
  /* Create a custom checkbox */
  /* The container */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark-box/indicator (hidden when not checked) */
  /* Show the checkmark-box when checked */
  /* Style the checkmark-box/indicator */
}
.giftcard-page .giftcard-form .send-by-email .container,
.giftcard-page .giftcard-form .send-by-mail .container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 10pt;
  font-weight: 500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
  /* Hide the browser's default radio button */
}
.giftcard-page .giftcard-form .send-by-email .container input,
.giftcard-page .giftcard-form .send-by-mail .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  background: red;
}
.giftcard-page .giftcard-form .send-by-email .checkmark-box,
.giftcard-page .giftcard-form .send-by-mail .checkmark-box {
  position: absolute;
  top: 3px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #d9d9d9;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
.giftcard-page .giftcard-form .send-by-email .container:hover input ~ .checkmark-box,
.giftcard-page .giftcard-form .send-by-mail .container:hover input ~ .checkmark-box {
  background-color: #b3b3b3;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
.giftcard-page .giftcard-form .send-by-email .container input:checked ~ .checkmark-box,
.giftcard-page .giftcard-form .send-by-mail .container input:checked ~ .checkmark-box {
  /*background-color: #22994E;*/
  background-color: black;
}
.giftcard-page .giftcard-form .send-by-email .checkmark-box:after,
.giftcard-page .giftcard-form .send-by-mail .checkmark-box:after {
  content: "";
  position: absolute;
  display: none;
}
.giftcard-page .giftcard-form .send-by-email .container input:checked ~ .checkmark-box:after,
.giftcard-page .giftcard-form .send-by-mail .container input:checked ~ .checkmark-box:after {
  display: block;
}
.giftcard-page .giftcard-form .send-by-email .container .checkmark-box:after,
.giftcard-page .giftcard-form .send-by-mail .container .checkmark-box:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.giftcard-page .giftcard-form textarea {
  min-height: 120px;
  resize: vertical;
}
/* Contact Page */
.contact-page {
  padding: 0 20px 10px 20px;
  position: relative;
}
.contact-page .page_title {
  margin-top: 30px;
}
.contact-page h5 {
  line-height: 25px;
}
.contact-page h5 a.link {
  color: #e44e50;
}
.contact-page h5 a.link:hover {
  color: #971b1e;
}
.contact-page .contactos-dados {
  width: 100%;
  text-align: center;
  padding: 5px;
  color: #404040;
  display: flex;
  justify-content: center;
}
.contact-page .contactos-dados .contact-icon {
  margin: 10px 30px 10px 30px;
  display: inline-block;
  color: #404040;
  font-weight: bold;
  font-size: 11pt;
}
.contact-page .contactos-dados .contact-icon a {
  color: #404040;
  font-weight: bold;
  font-size: 11pt;
}
.contact-page .contactos-dados .contact-icon .link {
  text-decoration: none;
}
.contact-page .contactos-dados .contact-icon i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #404040;
  text-align: center;
  padding: 10px;
  margin-bottom: 10px;
}
.contact-page .contactos-dados .contact-icon i.fas {
  font-size: 18pt;
  color: #404040;
}
.contact-page .contact-body {
  width: 100%;
  background-image: url("../images/A_Fabrica_Dos_Chapéus_Interior.jpg");
  /*background-position: center;*/
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  filter: blur(4.5px);
  -webkit-filter: blur(4.5px);
  margin-top: 10px;
  margin-bottom: 30px;
}
.contact-page .contact-form {
  width: 85%;
  margin-left: 5.8%;
  padding: 30px;
  border: 2px solid #971b1e;
  border-radius: 15px;
  position: absolute;
  top: 130px;
  background: rgba(255, 255, 255, 0.7);
}
.contact-page .contact-form#outroschapeus {
  top: 110px;
}
.contact-page .contact-form ::placeholder {
  text-transform: uppercase;
  color: #999999;
  font-weight: bold;
}
.contact-page .contact-form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  text-transform: uppercase;
  color: #999999;
  font-weight: bold;
}
.contact-page .contact-form ::-ms-input-placeholder {
  /* Microsoft Edge */
  text-transform: uppercase;
  color: #999999;
  font-weight: bold;
}
.contact-page .contact-form input,
.contact-page .contact-form textarea {
  padding: 10px;
  margin-right: 23px;
}
.contact-page .contact-form .dados-contacto {
  display: block;
}
.contact-page .contact-form .dados-contacto input#nome_field,
.contact-page .contact-form .dados-contacto span#nome_field {
  width: 35%;
  float: left;
  margin-bottom: 20px;
}
.contact-page .contact-form .dados-contacto input#email_field,
.contact-page .contact-form .dados-contacto span#email_field {
  width: 35%;
  float: left;
  margin-bottom: 20px;
}
.contact-page .contact-form .dados-contacto input#telefone_field,
.contact-page .contact-form .dados-contacto span#telefone_field {
  width: 24.5%;
  margin-right: 0;
  float: left;
  margin-bottom: 20px;
}
.contact-page .contact-form input#assunto_field {
  width: 100%;
}
.contact-page .contact-form textarea#mensagem_field {
  width: 100%;
  height: 200px;
  margin-top: 20px;
}
.contact-page .contact-form .anexo {
  width: 100%;
  margin-top: 30px;
}
.contact-page .contact-form .anexo label {
  color: #971b1e;
  font-weight: bold;
  text-transform: uppercase;
}
.contact-page .contact-form .anexo input {
  width: 40%;
}
.contact-page .contact-form .contact-submit {
  width: 100%;
  text-align: center;
}
.contact-page .contact-form .contact-submit input[type=submit] {
  width: 150px;
}
/*.contact-page .contact-form .contact-submit input[type=submit]:hover {
                    text-transform: uppercase;
                    background-color: #e44e50;
                    border: 1px solid #e44e50;
                    transition: all 0.35s ease;
                    -webkit-transition: all 0.35s ease;
                    -moz-transition: all 0.35s ease;
                    -o-transition: all 0.35s ease;
                    -ms-transition: all 0.35s ease;
                }*/
.contact-page .contact-footer {
  text-align: center;
}
/* END Contact Page */
/* Registo Revenda Page */
.revenda-page {
  padding: 0 20px 10px 20px;
  position: relative;
}
.revenda-page .page_title {
  margin-top: 30px;
}
.revenda-page h5 {
  line-height: 25px;
}
.revenda-page h5 a.link {
  color: #e44e50;
}
.revenda-page h5 a.link:hover {
  color: #971b1e;
}
.revenda-page .revenda-body {
  width: 100%;
  background-image: url("../images/A_Fabrica_Dos_Chapéus_Interior.jpg");
  /*background-position: center;*/
  background-repeat: no-repeat;
  background-size: cover;
  height: 880px;
  filter: blur(4.5px);
  -webkit-filter: blur(4.5px);
  margin-top: 10px;
  margin-bottom: 30px;
}
.revenda-page .revenda-form {
  width: 85%;
  margin-left: 5.8%;
  padding: 10px;
  border: 2px solid #971b1e;
  border-radius: 15px;
  position: absolute;
  top: 110px;
  background: rgba(255, 255, 255, 0.7);
}
.revenda-page .revenda-form ::placeholder {
  text-transform: uppercase;
  color: #999999;
  font-weight: bold;
}
.revenda-page .revenda-form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  text-transform: uppercase;
  color: #999999;
  font-weight: bold;
}
.revenda-page .revenda-form ::-ms-input-placeholder {
  /* Microsoft Edge */
  text-transform: uppercase;
  color: #999999;
  font-weight: bold;
}
.revenda-page .revenda-form input,
.revenda-page .revenda-form textarea {
  padding: 10px;
  margin-right: 23px;
}
.revenda-page .revenda-form .dados-revenda {
  display: block;
}
.revenda-page .revenda-form .dados-revenda input#nome_field {
  width: 35%;
  float: left;
  margin-bottom: 0;
}
.revenda-page .revenda-form .dados-revenda span#nome_field {
  width: 35%;
  float: left;
  padding: 0 5px;
  margin-top: 0;
  margin-bottom: 20px;
}
.revenda-page .revenda-form .dados-revenda input#email_field {
  width: 35%;
  float: left;
}
.revenda-page .revenda-form .dados-revenda span#email_field {
  width: 35%;
  float: left;
  padding: 0 5px;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: 25px;
}
.revenda-page .revenda-form .dados-revenda input#telefone_field {
  width: 25.4%;
  margin-right: 0;
  float: left;
}
.revenda-page .revenda-form .dados-revenda span#telefone_field {
  width: 25.4%;
  float: left;
  padding: 0 5px;
  margin-top: 0;
  margin-left: 20px;
  margin-right: 0;
  margin-bottom: 20px;
}
.revenda-page .revenda-form .dados-revenda input#empresa_field {
  width: 35%;
  float: left;
}
.revenda-page .revenda-form .dados-revenda span#empresa_field {
  width: 35%;
  float: left;
  padding: 0 5px;
  margin-top: 0;
  margin-bottom: 20px;
}
.revenda-page .revenda-form .dados-revenda input#funcao_field {
  width: 35%;
  float: left;
}
.revenda-page .revenda-form .dados-revenda span#funcao_field {
  width: 35%;
  float: left;
  padding: 0 5px;
  margin-top: 0;
  margin-left: 25px;
  margin-bottom: 20px;
}
.revenda-page .revenda-form .dados-revenda input#nif_field {
  width: 25.4%;
  margin-right: 0;
  float: left;
}
.revenda-page .revenda-form .dados-revenda span#nif_field {
  width: 25.4%;
  float: left;
  padding: 0 5px;
  margin-top: 0;
  margin-left: 20px;
  margin-right: 0;
  margin-bottom: 20px;
}
.revenda-page .revenda-form .dados-revenda input#morada_field {
  width: 100%;
  margin-right: 0;
  float: left;
}
.revenda-page .revenda-form .dados-revenda span#morada_field {
  width: 100%;
  margin-right: 0;
  float: left;
  padding: 0 5px;
  margin-top: 0;
  margin-bottom: 20px;
}
.revenda-page .revenda-form .dados-revenda input#codpostal_field {
  width: 20%;
  float: left;
}
.revenda-page .revenda-form .dados-revenda span#codpostal_field {
  width: 20%;
  float: left;
  padding: 0 5px;
  margin-top: 0;
  margin-bottom: 20px;
}
.revenda-page .revenda-form .dados-revenda input#localidade_field {
  width: 40%;
  float: left;
}
.revenda-page .revenda-form .dados-revenda span#localidade_field {
  width: 40%;
  float: left;
  padding: 0 5px;
  margin-top: 0;
  margin-left: 20px;
  margin-bottom: 20px;
}
.revenda-page .revenda-form .dados-revenda select#pais_field {
  width: 35.4%;
  float: left;
  margin-right: 0;
}
.revenda-page .revenda-form .dados-revenda span#pais_field {
  width: 35.4%;
  float: left;
  padding: 0 5px;
  margin-top: 0;
  margin-left: 20px;
  margin-right: 0;
  margin-bottom: 20px;
}
.revenda-page .revenda-form .dados-revenda select#pais_field.classPais {
  text-transform: uppercase;
  color: #999999;
  font-weight: bold;
}
.revenda-page .revenda-form .dados-revenda select#pais_field option[disabled] {
  text-transform: uppercase;
  color: #999999;
  font-weight: bold;
}
.revenda-page .revenda-form .dados-revenda select#pais_field option {
  text-transform: uppercase;
  color: #999999;
}
.revenda-page .revenda-form input#assunto_field {
  width: 100%;
}
.revenda-page .revenda-form textarea#mensagem_field {
  width: 100%;
  height: 200px;
  margin-top: 20px;
}
.revenda-page .revenda-form .password {
  display: inline-block;
  width: 20%;
  margin-top: 20px;
  margin-right: 20px;
}
.revenda-page .revenda-form .password label {
  color: #971b1e;
  font-weight: bold;
  text-transform: uppercase;
}
.revenda-page .revenda-form .password input#password_field {
  display: inline;
  width: 85%;
  margin: 0;
}
.revenda-page .revenda-form .password input#confirm_password_field {
  display: inline;
  width: 85%;
  margin: 0;
}
.revenda-page .revenda-form .password #show_password_register_revenda,
.revenda-page .revenda-form .password #show_password_register_revenda_confirm {
  display: inline-block;
  padding: 3.5px;
  margin-left: 5px;
  border-radius: 5px;
  color: rgba(0, 0, 0, 0.55);
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.55);
}
.revenda-page .revenda-form .password #show_password_register_revenda:hover,
.revenda-page .revenda-form .password #show_password_register_revenda_confirm:hover,
.revenda-page .revenda-form .password #show_password_register_revenda.showing,
.revenda-page .revenda-form .password #show_password_register_revenda_confirm.showing {
  /*color: rgba(255,255,255,0.6);*/
  background-color: rgba(255, 255, 255, 0.7);
}
/*.revenda-page .revenda-form .password input#password_field {
            margin-bottom: 20px;
        }

        .revenda-page .revenda-form .password input#confirm_password_field {
            width: 20%;
            margin-right: 0;
            margin-bottom: 20px;
        }*/
.revenda-page .revenda-form .anexo {
  width: 100%;
  margin-top: 30px;
}
.revenda-page .revenda-form .anexo label {
  color: #971b1e;
  font-weight: bold;
  text-transform: uppercase;
}
.revenda-page .revenda-form .anexo input {
  width: 42.5%;
}
.revenda-page .revenda-form .revenda-submit {
  width: 100%;
  text-align: center;
}
.revenda-page .revenda-form .revenda-submit input[type=submit] {
  width: 150px;
}
/*.revenda-page .revenda-form .revenda-submit input[type=submit]:hover {
                    text-transform: uppercase;
                    background-color: #e44e50;
                    border: 1px solid #e44e50;
                    transition: all 0.35s ease;
                    -webkit-transition: all 0.35s ease;
                    -moz-transition: all 0.35s ease;
                    -o-transition: all 0.35s ease;
                    -ms-transition: all 0.35s ease;
                }*/
.revenda-page .revenda-footer {
  text-align: center;
}
/* END Revenda Registo Page */
.color-circle {
  border-radius: 50%;
  border: 1px solid #dcdcdc;
}
/* Página categoria-genero */
#side-menu {
  padding: 0;
  margin: 0;
  width: 18%;
  margin-right: 30px;
  margin-top: 20px;
  float: left;
  height: 100%;
}
#side-menu .sidenav {
  padding: 5px;
  height: auto;
  width: 100%;
  overflow: hidden;
  border-top: 1.5px solid #971b1e;
  border-bottom: 1.5px solid #971b1e;
  /*border: 1px solid #a6a6a6;*/
  border-radius: 10px;
  margin-bottom: 20px;
  /*background-color: #f6f6f6;*/
}
#side-menu .sidenav .menu-title {
  clear: both;
  margin: 0;
  margin-bottom: 5px;
  /*border-bottom: 0.5px solid #a6a6a6;*/
  box-shadow: 0 8px 8px -8px #a6a6a6;
  color: black;
  padding: 1px;
  position: relative;
}
#side-menu .sidenav .menu-title h4 {
  padding-left: 5px;
  text-transform: uppercase;
  font-size: 11pt;
  font-weight: bold;
}
#side-menu .sidenav .menu-title span.chevron {
  position: absolute;
  top: 7px;
  right: 5px;
  background: url("../images/icons/CircledChevronRight.svg") no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
#side-menu .sidenav .menu-title span.chevron.expanded {
  background: url("../images/icons/CircledChevronDown.svg") no-repeat;
}
#side-menu .sidenav .sub-title {
  clear: both;
  margin: 0;
  /*border-bottom: 1px solid #d9d9d9;*/
  padding: 1px;
  position: relative;
  color: #a6a6a6;
}
#side-menu .sidenav .sub-title h5 {
  text-transform: uppercase;
  color: #808080;
  font-weight: bold;
}
#side-menu .sidenav .sub-title span.chevron {
  position: absolute;
  top: 7px;
  right: 5px;
  background: url("../images/icons/CircledChevronRight.svg") no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  cursor: pointer;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#side-menu .sidenav .sub-title span.chevron.expanded {
  /*background: url("../images/icons/CircledChevronDown.svg") no-repeat;*/
  transform: rotate(450deg);
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#side-menu .sidenav .sub-title ul {
  height: 0px;
  padding: 5px 5px 0 5px;
  overflow: hidden;
  transition: height 0.35s ease-out;
  box-shadow: 0 8px 8px -8px #a6a6a6;
}
#side-menu .sidenav .sub-title ul li {
  list-style: none;
  padding: 1px;
  font-weight: bold;
  font-size: 10pt;
  color: #808080;
  /*box-shadow: 0 8px 10px -10px #a6a6a6;*/
  width: 50%;
  display: inline;
  margin: 5px;
}
/* Checkbox */
#side-menu .sidenav .sub-title ul li #checkbox_label label {
  display: inline;
}
#side-menu .sidenav .sub-title ul li .regular-checkbox {
  display: none;
}
#side-menu .sidenav .sub-title ul li .regular-checkbox + label {
  clear: both;
  background-color: #fafafa;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px 10px 10px 10px;
  border-radius: 3px;
  position: relative;
  margin-top: 0;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
}
#side-menu .sidenav .sub-title ul li .regular-checkbox:hover + label {
  cursor: pointer;
  background-color: #e9ecee;
  border: 1px solid #adb8c0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
}
#side-menu .sidenav .sub-title ul li .regular-checkbox:disabled + label {
  background-color: #e9ecee;
  cursor: not-allowed;
}
#side-menu .sidenav .sub-title ul li .regular-checkbox + label:active,
#side-menu .sidenav .sub-title ul li .regular-checkbox:checked + label:active {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}
#side-menu .sidenav .sub-title ul li .regular-checkbox:checked + label {
  color: #99a1a7;
}
#side-menu .sidenav .sub-title ul li .regular-checkbox:checked + label:after {
  content: '\2714';
  font-size: 17px;
  position: absolute;
  top: -2px;
  left: 3px;
  color: #99a1a7;
}
#side-menu .sidenav .sub-title ul li .tag {
  display: inline-table;
  font-weight: bold;
  margin-right: 8px;
  margin-bottom: 10px;
  clear: both;
  vertical-align: middle;
  margin-top: -8px;
  width: 40px;
}
#side-menu .sidenav .sub-title ul#lg_tamanhos {
  width: 220px;
}
#side-menu .sidenav .sub-title ul#lg_tamanhos li.size_label {
  float: left;
  width: 65px;
  margin-top: 1px;
}
#side-menu .sidenav .sub-title ul#lg_tamanhos li .tag {
  margin-top: -15px;
  width: 15px;
  margin-left: 5px;
}
/*#side-menu .sidenav .sub-title ul li.last {
                        border-bottom: none;
                        margin-bottom: 0;
                    }*/
#side-menu .sidenav .sub-title ul li img {
  width: 17px;
}
#side-menu .sidenav .sub-title ul li .color-circle {
  display: inline-block;
  margin-top: -3px;
  width: 25px;
  height: 25px;
}
#side-menu .sidenav .sub-title ul#lg_atributos li.attribute_label {
  float: left;
  width: 100%;
  margin-top: 1px;
  display: block;
}
#side-menu .sidenav .sub-title ul#lg_atributos li.attribute_label .attribute_description {
  width: 88.5%;
  float: left;
}
#side-menu .sidenav .sub-title ul#lg_atributos li.attribute_label .attribute_chkbox {
  width: 10%;
  float: left;
}
#side-menu .sidenav #clean-filters {
  text-align: center;
  margin-bottom: 10px;
}
#side-menu .sidenav #clean-filters .btn-separator {
  height: 100%;
  width: 100%;
  border: none;
  box-shadow: 0 8px 8px -8px #a6a6a6;
  /*box-shadow: 1.2px 1.5px 2px 1.2px #a6a6a6;*/
  outline: 0 none;
  background: white;
  margin-bottom: 20px;
}
.page-content#categorias {
  padding-left: 50px;
  padding-right: 40px;
}
.categorias-page {
  position: relative;
  margin-left: 21%;
  margin-bottom: 100px;
  padding-bottom: 50px;
}
.categorias-page .categorias {
  margin-left: 0;
  margin-top: 30px;
}
.categorias-page .categorias .categoria-main {
  width: 160px;
  text-align: center;
  margin: 8px;
  margin-bottom: 60px;
  display: inline-block;
}
.categorias-page .categorias .categoria-main:first-child {
  margin-left: 0;
}
.categorias-page .categorias .categoria-main img {
  width: 100%;
}
.categorias-page .categorias .categoria-main a {
  position: relative;
  color: #808080;
  text-decoration: none;
  overflow: hidden;
}
.categorias-page .categorias .categoria-main a:hover {
  text-decoration: none;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 15px rgba(243, 231, 210, 0.8);
  transition: all 0.55s ease;
  -webkit-transition: all 0.55s ease;
  -moz-transition: all 0.55s ease;
  -o-transition: all 0.55s ease;
  -ms-transition: all 0.55s ease;
}
.categorias-page .categorias .categoria-main a .img-cover {
  position: absolute;
  bottom: -80px;
  left: 0;
  height: 105px;
  width: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
}
.categorias-page .categorias .categoria-main a .cat_descricao {
  position: absolute;
  background: white;
  height: 40px;
  font-size: 10pt;
  overflow: hidden;
  bottom: -110px;
  transition: height 0.55s;
}
.categorias-page .categorias .categoria-main a .cat_descricao h5 {
  text-transform: uppercase;
  font-weight: bold;
  color: black;
}
.categorias-page .sort-produtos {
  text-align: left;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
}
.categorias-page .sort-produtos label {
  display: inline;
}
.categorias-page .sort-produtos select {
  display: inline;
  width: 200px;
  margin-left: 10px;
}
.categorias-page .sort-produtos select option {
  cursor: pointer;
}
.categorias-page .categoria {
  margin-left: 0;
  margin-top: 30px;
  color: #595959;
}
.categorias-page .categoria .categoria-artigo {
  clear: both;
  width: 195px;
  display: inline-grid;
  margin: 5px;
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.075) inset, 0 0 50px rgba(255, 255, 255, 0);
  transition: all 0.55s ease;
  -webkit-transition: all 0.55s ease;
  -moz-transition: all 0.55s ease;
  -o-transition: all 0.55s ease;
  -ms-transition: all 0.55s ease;
}
.categorias-page .categoria .categoria-artigo:hover {
  border: 1px solid #f3e7d2;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.075) inset, 0 0 30px rgba(243, 231, 210, 0.8);
  transition: all 0.55s ease;
  -webkit-transition: all 0.55s ease;
  -moz-transition: all 0.55s ease;
  -o-transition: all 0.55s ease;
  -ms-transition: all 0.55s ease;
}
.categorias-page .categoria .categoria-artigo:hover > a {
  text-decoration: none;
}
.categorias-page .categoria .categoria-artigo > a .product-images-rotation {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.categorias-page .categoria .categoria-artigo > a .product-images-rotation img {
  width: 90%;
  margin-top: 0;
  margin: auto;
  display: inline-block;
  transition: ease all 0.35s;
}
.categorias-page .categoria .categoria-artigo > a .hat-name {
  width: 100%;
  height: 40px;
}
.categorias-page .categoria .categoria-artigo h5 {
  color: #595959;
  font-weight: bold;
  margin-top: 10px;
  vertical-align: middle;
}
.categorias-page .categoria .categoria-artigo h5.preco {
  color: #595959;
  font-weight: bold;
  overflow: unset;
  white-space: normal;
}
.categorias-page .categoria .categoria-artigo h5.preco #compraRapida {
  margin-left: 0;
}
.categorias-page .categoria .categoria-artigo h5.preco #compraRapida img {
  margin-top: -7px;
  width: 20px;
}
.categorias-page .categoria .categoria-artigo .colors .color-circle {
  color: transparent;
  width: 17px;
  height: 17px;
}
/*Page medidas Popup*/
#page_medidas {
  position: fixed;
  padding: 0;
  margin: 0;
  top: -500px;
  left: -500px;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  transition: width 0.3s, height 0.3s;
}
#page_medidas .medidas_container {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: absolute;
  left: 10%;
  top: 5%;
  width: 80%;
  height: 660px;
  overflow: auto;
  padding: 20px;
  padding-top: 45px;
  background: white;
}
#page_medidas .medidas_container #fechaMedidas {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#page_medidas .medidas_container #fechaMedidas .far.fa-times-circle {
  font-size: 18pt;
  color: #969696;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#page_medidas .medidas_container #fechaMedidas:hover .far.fa-times-circle {
  color: #323232;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
/*Page envios Popup*/
#page_envio {
  position: fixed;
  padding: 0;
  margin: 0;
  top: -500px;
  left: -500px;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  transition: width 0.3s, height 0.3s;
}
#page_envio .envio_container {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: absolute;
  left: 10%;
  top: 5%;
  width: 80%;
  height: 600px;
  overflow: auto;
  padding: 20px;
  padding-top: 45px;
  background: white;
}
#page_envio .envio_container #fechaEnvio {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#page_envio .envio_container #fechaEnvio .far.fa-times-circle {
  font-size: 18pt;
  color: #969696;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#page_envio .envio_container #fechaEnvio:hover .far.fa-times-circle {
  color: #323232;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
/*Page termos Popup*/
#page_termos {
  position: fixed;
  padding: 0;
  margin: 0;
  top: -500px;
  left: -500px;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  transition: width 0.3s, height 0.3s;
}
#page_termos .termos_container {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: absolute;
  left: 10%;
  top: 2%;
  width: 80%;
  height: 700px;
  overflow: auto;
  padding: 20px;
  padding-top: 45px;
  background: white;
}
#page_termos .termos_container #fechaTermos {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#page_termos .termos_container #fechaTermos .far.fa-times-circle {
  font-size: 18pt;
  color: #969696;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#page_termos .termos_container #fechaTermos:hover .far.fa-times-circle {
  color: #323232;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
/*Page termos Popup*/
#page_privacidade {
  position: fixed;
  padding: 0;
  margin: 0;
  top: -500px;
  left: -500px;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  transition: width 0.3s, height 0.3s;
}
#page_privacidade .privacidade_container {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: absolute;
  left: 10%;
  top: 2%;
  width: 80%;
  height: 700px;
  overflow: auto;
  padding: 20px;
  padding-top: 45px;
  background: white;
}
#page_privacidade .privacidade_container #fechaPrivacidade {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#page_privacidade .privacidade_container #fechaPrivacidade .far.fa-times-circle {
  font-size: 18pt;
  color: #969696;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#page_privacidade .privacidade_container #fechaPrivacidade:hover .far.fa-times-circle {
  color: #323232;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.artigo-page {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.artigo-page .page-title {
  margin-bottom: 20px;
}
.social-share {
  position: absolute;
  right: 10px;
  top: 350px;
  border: 1px solid #cacece;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 0 10px 0 10px;
}
.social-share a {
  text-decoration: none;
}
.social-share a:hover {
  cursor: pointer;
  text-decoration: none;
}
.social-share a .fab,
.social-share .fas {
  font-size: 18pt;
  display: block;
  margin: 5px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #737373;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.social-share a .fab.fa-facebook {
  padding: 1.5px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.social-share a:hover .fab.fa-facebook {
  color: #3b5998;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.social-share a .fab.fa-instagram {
  font-size: 20pt;
  padding: 1px;
  padding-top: 0;
  padding-right: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.social-share a:hover .fab.fa-instagram {
  color: white;
  border-radius: 5px;
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.social-share a .fab.fa-twitter {
  padding: 1.5px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.social-share a:hover .fab.fa-twitter {
  color: #1DA1F2;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.classificacao {
  margin-top: -10px;
  margin-bottom: 20px;
}
.classificacao .tip-rate {
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.classificacao .tip-rate:hover {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.classificacao .tip-rate span.rating {
  unicode-bidi: bidi-override;
  direction: rtl;
  float: left;
  margin-right: 20px;
}
.classificacao .tip-rate span.rating span.star-empty {
  width: 18px;
  content: url("../images/star-empty.png");
  margin: 0;
  vertical-align: text-bottom;
  cursor: pointer;
}
.classificacao .tip-rate span.rating span.star-empty:hover {
  content: url("../images/star-full.png");
}
.classificacao .tip-rate span.rating span.star-half {
  width: 18px;
  margin: 0;
  content: url("../images/star-half-full.png");
  vertical-align: text-bottom;
  cursor: pointer;
}
.classificacao .tip-rate span.rating span.star-half:hover {
  content: url("../images/star-full.png");
}
.classificacao .tip-rate span.rating span.star-full {
  width: 18px;
  margin: 0;
  content: url("../images/star-full.png");
  vertical-align: text-bottom;
  cursor: pointer;
}
.classificacao .tip-rate span.rating > span.star-empty:hover ~ span.star {
  content: url("../images/star-full.png");
}
.classificacao .tip-rate span.rate {
  opacity: 0;
  font-size: 8pt;
  padding: 5px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.65);
  color: #c8c8c8;
  border-radius: 5px;
  font-weight: bold;
  position: absolute;
  z-index: 100;
  top: -10px;
  left: 0;
  margin: 15px;
  width: 70px;
}
.classificacao .tip-rate:hover span.rate {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.artigo-page .tip span {
  left: 10px;
  width: auto;
  height: 35px;
  font-size: 8pt;
}
.artigo-page .tip:hover span {
  left: 10px;
}
.artigo-page .artigo {
  margin: 0;
  padding: 0;
}
.artigo-page .artigo .artigo-foto-preview {
  margin: 0;
  width: 10%;
  height: 550px;
  padding: 0;
  float: left;
  position: relative;
  overflow: hidden;
  /*border-bottom: 1px solid #d9d9d9;*/
}
/*.artigo-page .artigo .artigo-foto-preview .fotos-container {
            width: 100%;
            overflow-y: scroll;
        }*/
.artigo-page .artigo .artigo-foto-preview img {
  width: 60%;
  margin-left: 5%;
  border: 2px solid #d9d9d9;
  margin-bottom: 5px;
  transition: all 0.55s ease;
  -webkit-transition: all 0.55s ease;
  -moz-transition: all 0.55s ease;
  -o-transition: all 0.55s ease;
  -ms-transition: all 0.55s ease;
}
/*.artigo-page .artigo .artigo-foto-preview img:hover {
                box-shadow: 0 2px 2px rgba(0, 0, 0, 0.075) inset, 0 0 30px rgba(245, 217, 10, 0.60);
                transition: all 0.55s ease;
                -webkit-transition: all 0.55s ease;
                -moz-transition: all 0.55s ease;
                -o-transition: all 0.55s ease;
                -ms-transition: all 0.55s ease;
            }*/
.artigo-page .artigo .artigo-foto-preview img.active-preview {
  border-bottom: 3px solid #971b1e;
  transition: all 0.55s ease;
  -webkit-transition: all 0.55s ease;
  -moz-transition: all 0.55s ease;
  -o-transition: all 0.55s ease;
  -ms-transition: all 0.55s ease;
}
.artigo-page .artigo .artigo-foto-preview img.active-preview:hover {
  box-shadow: none;
  cursor: default;
}
.artigo-page .artigo .chapeu-info {
  margin-top: 0;
  width: 45%;
  height: 550px;
  text-align: center;
  float: left;
}
.artigo-page .artigo .chapeu-info .chapeu-foto {
  margin-bottom: 20px;
  width: 60%;
  margin-left: 15%;
}
.artigo-page .artigo .chapeu-info .chapeu-foto img#foto_chapeu {
  width: 100%;
  transition: opacity 0.55s ease;
}
.artigo-page .artigo .chapeu-details {
  margin-top: 0;
  height: 550px;
  width: 40%;
  margin-left: 1%;
  display: inline-block;
  padding: 0;
  /*border-bottom: 1px solid #d9d9d9;*/
}
.artigo-page .artigo .chapeu-details hr {
  margin-top: 0;
}
.artigo-page .artigo .chapeu-details .artigo-icones {
  /*margin-top: -10px;*/
  width: 100%;
  max-height: 50px;
}
.artigo-page .artigo .chapeu-details .artigo-icones .icone {
  display: inline-block;
  width: 49%;
  margin-bottom: 10px;
}
.artigo-page .artigo .chapeu-details .artigo-icones .icone img {
  width: 20px;
}
.artigo-page .artigo .chapeu-details .artigo-icones .icone span {
  display: inline-block;
  font-size: 9pt;
}
.artigo-page .artigo .chapeu-details h2 {
  color: #971b1e;
  margin: 0;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20pt;
}
.artigo-page .artigo .chapeu-details h5 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.artigo-page .artigo .chapeu-details h5 span.preco {
  font-size: 13pt;
}
.artigo-page .artigo .chapeu-details .mais-info {
  display: block;
  margin-top: 20px;
}
.artigo-page .artigo .chapeu-details .details-select {
  margin-top: 20px;
}
.artigo-page .artigo .chapeu-details .details-select span#selectedCorDescricao {
  margin-left: 15px;
  background-color: #d9d9d9;
  padding: 5px 10px 5px 10px;
  border-radius: 5px;
  font-weight: normal;
}
.artigo-page .artigo .chapeu-details .details-select #selectColors {
  height: auto;
  border: none;
}
.artigo-page .artigo .chapeu-details .details-select #selectColors #colorSelect {
  border: none;
}
.artigo-page .artigo .chapeu-details .details-select #selectColors #corElement {
  clear: both;
  cursor: pointer;
  width: 20%;
  padding: 3px;
  display: inline;
}
.artigo-page .artigo .chapeu-details .details-select #selectColors #corElement .color-circle {
  width: 25px;
  height: 25px;
  display: inline-block;
  margin: 3px;
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
}
.artigo-page .artigo .chapeu-details .details-select #selectColors #corElement:hover .color-circle {
  width: 30px;
  height: 30px;
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
}
.artigo-page .artigo .chapeu-details .details-select #selectColors #corElement.selected .color-circle {
  width: 30px;
  height: 30px;
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
}
.artigo-page .artigo .chapeu-details .details-select #saber_medidas {
  cursor: pointer;
}
.artigo-page .artigo .chapeu-details .details-select #selectSizes {
  color: #262626;
  height: 32px;
  font-style: italic;
  cursor: pointer;
  overflow: hidden;
  transition: height 0.35s ease;
  padding: 0;
  padding-bottom: 3px;
}
.artigo-page .artigo .chapeu-details .details-select #selectSizes #sizeSelect {
  width: 100%;
  margin-bottom: 10px;
  height: 31px;
  border-bottom: 1px solid #ccc;
  padding: 6px 12px;
  border-radius: 4px;
}
.artigo-page .artigo .chapeu-details .details-select #selectSizes #sizeElement {
  clear: both;
  width: 100%;
  padding: 3px 12px;
  border-radius: 10px;
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
}
.artigo-page .artigo .chapeu-details .details-select #selectSizes #sizeElement:hover {
  background-color: #e6e6e6;
  cursor: pointer;
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
}
.artigo-page .artigo .chapeu-details .details-select label span a.link {
  font-size: 9pt;
  color: #959d9d;
}
.artigo-page .artigo .chapeu-details select {
  width: 100%;
  margin-bottom: 20px;
  transition: all 0.55s ease;
  -webkit-transition: all 0.55s ease;
  -moz-transition: all 0.55s ease;
  -o-transition: all 0.55s ease;
  -ms-transition: all 0.55s ease;
}
.artigo .chapeu-details .details-select .form-qtd {
  padding: 0;
  margin-bottom: 0;
}
.artigo .chapeu-details .form-qtd #quantidade {
  width: 50%;
  display: inline-block;
}
.artigo .chapeu-details .form-qtd #quantidade label {
  display: block;
}
.artigo .chapeu-details .form-qtd #quantidade input {
  width: 25%;
  margin-left: 3px;
  margin-right: 3px;
  text-align: center;
  display: inline-block;
}
.artigo .chapeu-details .form-qtd #quantidade input[type=number]::-webkit-inner-spin-button,
.artigo .chapeu-details .form-qtd #quantidade input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.artigo .chapeu-details .form-qtd #quantidade a {
  width: 20%;
  font-weight: bold;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
}
.artigo .chapeu-details .form-qtd #quantidade a:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
}
.artigo .chapeu-details .form-qtd #disponibilidade {
  width: 49%;
  display: inline-block;
}
.artigo .chapeu-details .details-select .form-buttons {
  padding: 0;
  margin-top: 5px;
}
.artigo .chapeu-details .details-select .form-buttons .addtocart {
  width: 50%;
  text-transform: uppercase;
  color: white;
  background-color: #971b1e;
  border: 1px solid #971b1e;
  height: 40px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.artigo .chapeu-details .details-select .form-buttons .addtocart img {
  width: 15px;
  color: white;
  margin-top: -5px;
  margin-left: 7px;
}
.artigo .chapeu-details .details-select .form-buttons .addtocart:hover {
  text-transform: uppercase;
  background-color: #b11b1d;
  border: 1px solid #b11b1d;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.artigo .chapeu-details .details-select .form-buttons .addtofavorites {
  width: 35%;
  margin-left: 14%;
  padding-top: 10px;
  text-transform: uppercase;
  color: white;
  /*background-color: #971b1e;*/
  height: 40px;
  background-color: black;
  border: 1px solid black;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
/*.artigo-page .artigo .chapeu-details .details-select .form-buttons .addtofavorites i.glyphicon-heart-empty {
                    font-size:15pt;
                    color: white;
                }*/
.artigo .chapeu-details .details-select .form-buttons .addtofavorites img {
  width: 16px;
  margin-top: -3px;
  margin-left: 8px;
}
.artigo .chapeu-details .details-select .form-buttons .addtofavorites:hover {
  text-transform: uppercase;
  background-color: #404040;
  border: 1px solid #404040;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
.artigo-page .artigo .artigo-tabs {
  border-top: 1px solid #d9d9d9;
  margin-top: 30px;
  margin-left: 10px;
  display: block;
}
.artigo-page .artigo .artigo-tabs .tabs-titles {
  margin-bottom: 0;
}
.artigo-page .artigo .artigo-tabs .tabs-titles ul {
  padding: 0;
  margin: 0;
}
.artigo-page .artigo .artigo-tabs .tabs-titles ul li {
  list-style: none;
  display: inline-block;
  cursor: pointer;
  margin-right: 40px;
  padding: 10px;
  position: relative;
}
/*Our top arrow. This is the same color as the background of the page below it.*/
.artigo-page .artigo .artigo-tabs .tabs-titles ul li.active_tab:after {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
  display: block;
  position: absolute;
  bottom: -2px;
  content: '';
  left: 45%;
}
.artigo-page .artigo .artigo-tabs .tabs-titles ul li.active_tab:before {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid #a6a6a6;
  display: block;
  position: absolute;
  bottom: -2px;
  content: '';
  left: 42%;
}
.artigo-page .artigo .artigo-tabs .tabs-titles ul li h5 {
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 10px 0 10px;
}
.artigo-page .artigo .artigo-tabs .tabs-titles ul li h5::after {
  content: '';
  display: block;
  margin: auto;
  width: 0;
  height: 3px;
  margin-top: 10px;
  background: transparent;
  transition: width 0.5s, background-color 0.5s ease;
}
.artigo-page .artigo .artigo-tabs .tabs-titles ul li:hover h5::after {
  width: 100%;
  background: #f3e7d2;
  /*transition: width .3s;*/
}
.artigo-page .artigo .artigo-tabs .tabs-titles ul li h5.active::after {
  width: 100%;
  background: #f3e7d2;
  /*transition: width .3s;*/
}
.artigo-page .artigo .artigo-tabs .tabs_content {
  margin-top: 0;
  border: 2px solid #a6a6a6;
  padding: 30px;
  display: block;
}
.artigo-page .artigo .artigo-tabs .tabs_content h5 {
  font-weight: bold;
  text-transform: uppercase;
}
.artigo-page .artigo .artigo-tabs .tabs_content .comentario {
  margin: 10px;
  margin-top: 20px;
  position: relative;
}
.artigo-page .artigo .artigo-tabs .tabs_content .comment_title.active:after {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
  display: block;
  position: absolute;
  top: 44px;
  content: '';
  left: 2.1%;
}
.artigo-page .artigo .artigo-tabs .tabs_content .comment_title.active:before {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #a6a6a6;
  display: block;
  position: absolute;
  top: 40px;
  content: '';
  left: 2%;
}
.artigo-page .artigo .artigo-tabs .tabs_content .comment {
  margin-top: 50px;
}
.artigo-page .artigo .artigo-tabs .tabs_content .comment_text {
  padding: 10px;
  border: 1px solid #a6a6a6;
  border-radius: 5px;
  white-space: pre-line;
}
.artigo-page .artigo .artigo-tabs .tabs_content textarea {
  height: 85px;
  margin-bottom: 20px;
  resize: none;
  width: 100%;
}
.artigo-page .artigo .artigo-tabs .tabs_content .btn-submit {
  width: 100px;
}
#objects-container {
  position: relative;
}
/* Pesquisa */
.otherSeason {
  padding: 0;
  margin-top: 20px;
  width: 70%;
}
/* Paginação */
.pagination {
  position: absolute;
  padding: 0;
  bottom: -80px;
  right: 0;
  /*margin-left: 2%;*/
  width: 25%;
}
.pagination a {
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #ddd;
  margin: 2px;
  cursor: pointer;
  float: left;
  vertical-align: middle;
}
.pagination a.active {
  background-color: #2a5f95;
  color: white;
  border-radius: 5px;
}
.pagination p {
  float: left;
  vertical-align: middle;
  padding: 10px;
  margin-left: 10px;
}
/* Pagina Compra Rápida - Popup*/
#compraRapida {
  cursor: pointer;
}
#comprarapida_screen {
  position: fixed;
  padding: 0;
  margin: 0;
  top: -600px;
  left: -600px;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  transition: width 0.3s, height 0.3s;
  overflow: auto;
}
#comprarapida_screen #comprarapida_content {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  position: absolute;
  left: 20%;
  top: 10%;
  width: 60%;
  height: auto;
  padding: 10px;
  background: white;
}
#comprarapida_screen #cancelaCompraRapida {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#comprarapida_screen #cancelaCompraRapida .far.fa-times-circle {
  font-size: 18pt;
  color: #969696;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#comprarapida_screen #cancelaCompraRapida:hover .far.fa-times-circle {
  color: #323232;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#comprarapida_screen .artigo {
  margin-top: 25px;
}
#comprarapida_screen .artigo .artigo-foto-preview {
  margin: 0;
  width: 8%;
  height: auto;
  padding: 0;
  float: left;
  position: relative;
}
#comprarapida_screen .artigo .artigo-foto-preview img {
  width: 100%;
  border: 2px solid #d9d9d9;
  margin-bottom: 5px;
  transition: all 0.55s ease;
  -webkit-transition: all 0.55s ease;
  -moz-transition: all 0.55s ease;
  -o-transition: all 0.55s ease;
  -ms-transition: all 0.55s ease;
}
#comprarapida_screen .artigo .artigo-foto-preview img.active {
  border-bottom: 3px solid #971b1e;
  transition: all 0.55s ease;
  -webkit-transition: all 0.55s ease;
  -moz-transition: all 0.55s ease;
  -o-transition: all 0.55s ease;
  -ms-transition: all 0.55s ease;
}
#comprarapida_screen .artigo .artigo-foto-preview img.active:hover {
  box-shadow: none;
  cursor: default;
}
#comprarapida_screen .artigo .chapeu-info {
  margin-top: 0;
  width: 45%;
  height: auto;
  text-align: center;
  float: left;
}
#comprarapida_screen .artigo .chapeu-info .chapeu-foto {
  margin-bottom: 20px;
  width: 85%;
  margin-left: 5%;
}
#comprarapida_screen .artigo .chapeu-info .chapeu-foto img#foto_chapeu {
  width: 100%;
  transition: opacity 0.55s ease;
}
#comprarapida_screen .artigo .chapeu-details {
  margin-top: 0;
  height: auto;
  width: 45%;
  display: inline-block;
  padding: 0;
}
#comprarapida_screen .artigo .chapeu-details .artigo-icones {
  margin-top: -10px;
  width: 100%;
  height: 50px;
}
#comprarapida_screen .artigo .chapeu-details .artigo-icones .icone {
  display: inline-block;
  width: 49%;
  margin-bottom: 10px;
}
#comprarapida_screen .artigo .chapeu-details .artigo-icones .icone img {
  width: 20px;
}
#comprarapida_screen .artigo .chapeu-details .artigo-icones .icone span {
  display: inline-block;
  font-size: 9pt;
}
#comprarapida_screen .artigo .chapeu-details h2 {
  color: #971b1e;
  margin: 0;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20pt;
}
#comprarapida_screen .artigo .chapeu-details h5 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#comprarapida_screen .artigo .chapeu-details h5 span.preco {
  font-size: 13pt;
}
#comprarapida_screen .artigo .chapeu-details .details-select #saber_medidas {
  cursor: pointer;
}
#comprarapida_screen .artigo .chapeu-details .details-select {
  margin-top: 20px;
}
#comprarapida_screen .artigo .chapeu-details .details-select label span a.link {
  font-size: 9pt;
  color: #959d9d;
}
#comprarapida_screen .artigo .chapeu-details .details-select span#selectedCorDescricao {
  margin-left: 15px;
  background-color: #d9d9d9;
  padding: 5px 10px 5px 10px;
  border-radius: 5px;
  font-weight: normal;
}
#comprarapida_screen .artigo .chapeu-details .details-select #selectColors {
  height: auto;
  border: none;
}
#comprarapida_screen .artigo .chapeu-details .details-select #selectColors #colorSelect {
  border: none;
}
#comprarapida_screen .artigo .chapeu-details .details-select #selectColors #corElement {
  clear: both;
  cursor: pointer;
  width: 20%;
  padding: 3px;
  display: inline;
}
#comprarapida_screen .artigo .chapeu-details .details-select #selectColors #corElement .color-circle {
  width: 25px;
  height: 25px;
  margin: 3px;
  display: inline-block;
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
}
#comprarapida_screen .artigo .chapeu-details .details-select #selectColors #corElement:hover .color-circle {
  width: 30px;
  height: 30px;
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
}
#comprarapida_screen .artigo .chapeu-details .details-select #selectColors #corElement.selected .color-circle {
  width: 30px;
  height: 30px;
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
}
#comprarapida_screen .artigo .chapeu-details .details-select #selectColors #corElement .color-circle.tip span.lgnd_color {
  z-index: 100;
  left: -15px;
}
#comprarapida_screen .artigo .chapeu-details .details-select #selectColors #corElement .color-circle.tip:hover span.lgnd_color {
  left: -15px;
}
#comprarapida_screen .artigo .chapeu-details .details-select #selectSizes {
  color: #262626;
  height: 32px;
  font-style: italic;
  cursor: pointer;
  overflow: hidden;
  transition: height 0.35s ease;
}
#comprarapida_screen .artigo .chapeu-details .details-select #selectSizes #sizeSelect {
  width: 100%;
  margin-bottom: 10px;
}
#comprarapida_screen .artigo .chapeu-details .details-select #selectSizes #sizeElement {
  clear: both;
  width: 100%;
  padding: 3px;
  border-radius: 10px;
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
}
#comprarapida_screen .artigo .chapeu-details .details-select #selectSizes #sizeElement:hover {
  background-color: #e6e6e6;
  cursor: pointer;
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
}
#comprarapida_screen .artigo .chapeu-details .details-select .form-qtd {
  padding: 0;
  margin-bottom: 0;
}
#comprarapida_screen .artigo .chapeu-details .form-qtd #quantidade {
  width: 50%;
  display: inline-block;
}
#comprarapida_screen .artigo .chapeu-details .form-qtd #quantidade label {
  display: block;
}
#comprarapida_screen .artigo .chapeu-details .form-qtd #quantidade input {
  width: 25%;
  margin-left: 3px;
  margin-right: 3px;
  text-align: center;
  display: inline-block;
}
#comprarapida_screen .artigo .chapeu-details .form-qtd #quantidade a {
  width: 20%;
  font-weight: bold;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
}
#comprarapida_screen .artigo .chapeu-details .form-qtd #quantidade a:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
}
#comprarapida_screen .artigo .chapeu-details .form-qtd #disponibilidade {
  width: 49%;
  display: inline-block;
}
#comprarapida_screen .artigo .chapeu-details .details-select .form-buttons {
  padding: 0;
  margin-top: 5px;
}
#comprarapida_screen .artigo .chapeu-details .details-select .form-buttons .addtocart {
  width: 50%;
  text-transform: uppercase;
  color: white;
  background-color: #971b1e;
  border: 1px solid #971b1e;
  height: 40px;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#comprarapida_screen .artigo .chapeu-details .details-select .form-buttons .addtocart img {
  width: 15px;
  margin-top: -5px;
  margin-left: 7px;
}
#comprarapida_screen .artigo .chapeu-details .details-select .form-buttons .addtocart:hover {
  background-color: #b11b1d;
  border: 1px solid #b11b1d;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#comprarapida_screen .artigo .chapeu-details .details-select .form-buttons .addtofavorites {
  width: 35%;
  margin-left: 14%;
  text-transform: uppercase;
  color: white;
  /*background-color: #971b1e;*/
  height: 40px;
  background-color: black;
  border: 1px solid black;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#comprarapida_screen .artigo .chapeu-details .details-select .form-buttons .addtofavorites:hover {
  background-color: #404040;
  border: 1px solid #404040;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}
#comprarapida_screen .artigo .chapeu-details .details-select .form-buttons .addtofavorites img {
  width: 16px;
  margin-top: -3px;
  margin-left: 8px;
}
/* END Pagina Compra Rápida */
/* Páginas de texto */
.info_text {
  margin-bottom: 20px;
  margin-top: 20px;
}
.info_text p {
  text-align: justify;
  font-size: 11pt;
  line-height: 25px;
}
.info_text p.title {
  font-weight: bold;
  color: #971b1e;
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 14pt;
}
.info_text p.text {
  margin-bottom: 45px;
}
.info_text p.sub-text {
  margin-left: 25px;
}
.info_text p span.title {
  font-weight: bold;
  color: #971b1e;
}
.info_text a.link {
  color: #9292a0;
  font-weight: bold;
}
.info_text a.link:hover {
  text-shadow: 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.3);
}
.info_text p.text ~ table {
  margin-top: -20px;
  margin-bottom: 45px;
}
.info_text table#tamanhos .tab-header {
  border-bottom: 1px solid white;
}
.info_text table#tamanhos .td-data {
  width: 50px;
}
.info_text .image-right {
  float: right;
  margin-left: 20px;
}
.info_text .image-left {
  float: left;
  margin-right: 20px;
}
.info_text .faq-title {
  margin-left: 15px;
  font-weight: bold;
  margin-top: 0;
}
#page-medidas .info_text {
  width: 80%;
}
.info_text .faq-title:hover {
  cursor: pointer;
}
.info_text .faq-title .faq-text {
  margin-left: 15px;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.info_text .faq-title .faq-text p {
  font-weight: normal;
}
.info_text .faq-title .faq-text table {
  margin-top: 10px;
  margin-bottom: 25px;
}
.info_text .info-loja-total .title {
  cursor: pointer;
  text-transform: none;
}
.info_text .info-loja-total .title .fas.fa-plus {
  font-size: 10pt;
}
.info_text .info-loja-total .title .fas.fa-minus {
  font-size: 10pt;
}
.info_text .info-loja-total .title.open {
  color: #9292a0;
}
.info_text .info-loja-total .loja-details {
  height: 350px;
}
.info_text .info-loja-total .loja-details .imagens_lojas {
  margin-top: 30px;
  width: 30%;
  height: 350px;
  float: left;
}
.info_text .info-loja-total .loja-details .imagens_lojas img {
  max-width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.7s ease-in-out;
}
.info_text .info-loja-total .loja-details .info_lojas {
  margin-left: 30px;
  margin-top: -20px;
  width: 65%;
  float: left;
}
.info_text .info-loja-total .loja-details .info_lojas .lojas-info {
  margin-left: 15px;
  font-weight: bold;
  margin-top: 0;
}
.info_text .info-loja-total .loja-details .info_lojas .lojas-info .title {
  font-size: 12pt;
}
.info_text .info-loja-total .loja-details .info_lojas .lojas-info .lojas-info-text {
  margin-left: 25px;
  width: 45%;
  float: left;
}
.info_text .info-loja-total .loja-details .info_lojas .lojas-info .lojas-info-text .title {
  cursor: default;
  font-size: 11pt;
  font-weight: bold;
  text-transform: none;
}
.info_text .info-loja-total .loja-details .info_lojas .lojas-info .lojas-info-text address {
  font-size: 10pt;
  font-weight: normal;
  margin: 0;
}
.info_text .info-loja-total .loja-details .info_lojas .lojas-info .lojas-info-mapa {
  float: left;
  width: 45%;
}
.info_text .info-loja-total .loja-details .info_lojas .lojas-info .lojas-info-mapa .title {
  cursor: default;
  font-size: 11pt;
  font-weight: bold;
  text-transform: none;
}
.info_text .info-loja-total .loja-details .info_lojas .lojas-info .lojas-info-mapa iframe {
  width: 400px;
  height: 300px;
}
/* END Página categoria-genero */
/* Encomenda page */
#encomenda table {
  /*border-top: 2px solid #d9d9d9;
    border-bottom: 2px solid #d9d9d9;*/
  border-top: 2px solid #a6a6a6;
  border-bottom: 2px solid #a6a6a6;
  padding: 5px;
  margin-top: 25px;
  margin-bottom: 30px;
}
#encomenda table .table-header th {
  border-bottom: 2px solid #a6a6a6;
}
#encomenda table tr:nth-child(even) {
  background-color: #ededf0;
}
#encomenda table th,
#encomenda table td {
  width: 80px;
  font-size: 10pt;
  text-align: center;
  vertical-align: middle;
}
#encomenda table th#imagem,
#encomenda table td#imagem {
  width: 70px;
}
#encomenda table td#imagem img {
  max-width: 100%;
}
#encomenda table th#nome,
#encomenda table td#nome {
  width: 150px;
}
#encomenda table th#nome,
#encomenda table td#nome .link {
  text-decoration: none;
  font-weight: bold;
}
#encomenda table th#cor,
#encomenda table td#cor {
  width: 80px;
}
#encomenda table th#tamanho,
#encomenda table td#tamanho {
  width: 80px;
}
#encomenda table th#preco,
#encomenda table td#preco {
  width: 100px;
}
#encomenda table th#quantidade,
#encomenda table td#quantidade {
  width: 100px;
  position: relative;
}
#encomenda table th#precotot,
#encomenda table td#precotot {
  width: 100px;
}
#encomenda table th#trash,
#encomenda table td#trash {
  width: 20px;
}
/*#encomenda table td#trash {
        position: relative;
    }*/
#encomenda table td#trash i.fas.fa-times {
  width: 18px;
  height: 18px;
  padding-top: 2px;
  font-size: 10pt;
  color: #cc0000;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  /*background-color: #cc0000;*/
  border-radius: 50%;
  border: 1px solid #cc0000;
}
#encomenda table td#trash i.fas.fa-times:hover {
  color: white;
  background-color: #cc0000;
}
#encomenda table td input {
  width: 70px;
  text-align: center;
}
#encomenda table th#nroencomenda,
#encomenda table td#nroencomenda {
  width: 70px;
}
#encomenda table th#estado,
#encomenda table td#estado {
  width: 100px;
}
#encomenda table .form-qtd #quantidade {
  width: 100%;
}
#encomenda table .form-qtd #quantidade input {
  width: 35%;
  margin-left: 3px;
  margin-right: 3px;
  text-align: center;
  display: inline-block;
}
#encomenda table .form-qtd #quantidade input[type=number]::-webkit-inner-spin-button,
#encomenda table .form-qtd #quantidade input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#encomenda table .form-qtd #quantidade a {
  width: 20%;
  font-weight: bold;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
}
#encomenda table .form-qtd #quantidade a:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
}
#encomenda table tr#saco_oferta td#imagem img {
  max-width: 50%;
}
#encomenda table td#quantidade .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
/* Create a custom checkbox */
#encomenda table tr#saco_oferta td#trash .container-sacosOferta {
  position: relative;
  text-align: center;
}
#encomenda table tr#saco_oferta td#trash .container-sacosOferta:focus {
  border: none;
  outline: none;
}
#encomenda table tr#saco_oferta td#trash .container-sacosOferta .checkmark-box {
  cursor: pointer;
  position: absolute;
  top: 20%;
  left: 35%;
  margin-left: auto;
  height: 20px;
  width: 20px;
  background-color: #b3b3b3;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
/* On mouse-over, add a grey background color */
#encomenda table tr#saco_oferta td#trash .container-sacosOferta:hover input ~ .checkmark-box {
  background-color: #737373;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
/* When the checkbox is checked, add a blue background */
#encomenda table tr#saco_oferta td#trash .container-sacosOferta input:checked ~ .checkmark-box {
  /*background-color: #22994E;*/
  background-color: black;
}
/* Create the checkmark-box/indicator (hidden when not checked) */
#encomenda table tr#saco_oferta td#trash .container-sacosOferta .checkmark-box:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark-box when checked */
#encomenda table tr#saco_oferta td#trash .container-sacosOferta input:checked ~ .checkmark-box:after {
  display: block;
}
/* Style the checkmark-box/indicator */
#encomenda table tr#saco_oferta td#trash .container-sacosOferta .checkmark-box:after {
  left: 6px;
  top: 2px;
  width: 8px;
  height: 13px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#encomenda .dados-tabs {
  clear: both;
  height: 540px;
  width: 50%;
  margin-top: 0;
  float: left;
  margin-bottom: 150px;
}
#encomenda .dados-tabs .tabs-titles {
  margin-bottom: 0;
}
#encomenda .dados-tabs .tabs-titles ul {
  padding: 0;
  margin: 0;
}
#encomenda .dados-tabs .tabs-titles ul li {
  list-style: none;
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  position: relative;
}
/*Our top arrow. This is the same color as the background of the page below it.*/
#encomenda .dados-tabs .tabs-titles ul li.active_tab:after {
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid #f5f5f5;
  display: block;
  position: absolute;
  bottom: -3px;
  content: '';
  left: 44.5%;
}
#encomenda .dados-tabs .tabs-titles ul li.active_tab:before {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid #a6a6a6;
  display: block;
  position: absolute;
  bottom: -2px;
  content: '';
  left: 42%;
}
#encomenda .dados-tabs .tabs-titles ul li h5 {
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 10px 0 10px;
}
#encomenda .dados-tabs .tabs-titles ul li h5::after {
  content: '';
  display: block;
  margin: auto;
  width: 0;
  height: 3px;
  margin-top: 10px;
  background: transparent;
  transition: width 0.5s, background-color 0.5s ease;
}
#encomenda .dados-tabs .tabs-titles ul li:hover h5::after {
  width: 100%;
  background: #f3e7d2;
  /*transition: width .3s;*/
}
#encomenda .dados-tabs .tabs-titles ul li h5.active::after {
  width: 100%;
  background: #f3e7d2;
  /*transition: width .3s;*/
}
#encomenda .dados-tabs .tabs_content {
  border: 2px solid #a6a6a6;
  padding: 10px;
  background: #f5f5f5;
  height: 550px;
}
#encomenda .dados-tabs .tabs_content .dados_obrigatorios {
  padding: 0;
  margin: 0;
  padding-top: 10px;
  color: #969696;
}
.entrega-detalhes {
  font-size: 10pt;
}
.entrega-detalhes h4 {
  font-weight: bold;
  margin-bottom: 20px;
}
.entrega-detalhes hr {
  border-color: #e6e6e6;
  margin: 0;
  margin: 15px;
}
.entrega-detalhes label {
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 0;
}
.entrega-detalhes input {
  margin: 5px;
  font-size: 10pt;
}
.entrega-detalhes #nome-group {
  width: 45%;
  display: inline-block;
}
.entrega-detalhes #email-group {
  width: 50%;
  margin-left: 3%;
  display: inline-block;
}
.entrega-detalhes #telefone-group {
  width: 40%;
  display: inline-block;
}
.entrega-detalhes #nif-group {
  width: 40%;
  display: inline-block;
  margin-left: 20px;
}
.entrega-detalhes #endereco-group #endereco {
  width: 80%;
}
.entrega-detalhes #codpostal {
  width: 30%;
  display: inline-block;
}
.entrega-detalhes #localidade {
  width: 47%;
  display: inline-block;
}
.entrega-detalhes #pais {
  width: 55%;
  margin: 10px;
  margin-left: 5px;
  margin-top: 15px;
}
.entrega-detalhes #pais.classPais {
  color: #a6a6a6;
}
.entrega-detalhes #pais.danger {
  color: red;
}
.entrega-detalhes #pais option {
  color: black;
}
.entrega-detalhes #pais option[disabled] {
  color: #a6a6a6;
  font-style: italic;
}
.entrega-detalhes .danger::placeholder {
  color: red;
}
.entrega-detalhes #nome_faturacao-group {
  width: 75%;
}
.entrega-detalhes #nif_faturacao-group {
  width: 40%;
}
.entrega-detalhes #endereco_faturacao-group #endereco_faturacao {
  width: 80%;
}
.entrega-detalhes #codpostal_faturacao {
  width: 30%;
  display: inline-block;
}
.entrega-detalhes #localidade_faturacao {
  width: 47%;
  display: inline-block;
}
.entrega-detalhes #pais_faturacao {
  width: 55%;
  margin: 10px;
  margin-left: 5px;
  margin-top: 15px;
}
.entrega-detalhes #pais_faturacao.classPais {
  color: #a6a6a6;
}
.entrega-detalhes #pais_faturacao.danger {
  color: red;
}
.entrega-detalhes #pais_faturacao option {
  color: black;
}
.entrega-detalhes #pais_faturacao option[disabled] {
  color: #a6a6a6;
  font-style: italic;
}
/* Create a custom checkbox */
.entrega-detalhes .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 12pt;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default radio button */
.entrega-detalhes .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.entrega-detalhes .container#dadosFaturacao {
  font-size: 10pt;
}
.entrega-detalhes .checkmark-box {
  position: absolute;
  top: 3px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #d9d9d9;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
/* On mouse-over, add a grey background color */
.entrega-detalhes .container:hover input ~ .checkmark-box {
  background-color: #ccc;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
/* When the checkbox is checked, add a blue background */
.entrega-detalhes .container input:checked ~ .checkmark-box {
  /*background-color: #22994E;*/
  background-color: black;
}
/* Create the checkmark-box/indicator (hidden when not checked) */
.entrega-detalhes .checkmark-box:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark-box when checked */
.entrega-detalhes .container input:checked ~ .checkmark-box:after {
  display: block;
}
/* Style the checkmark-box/indicator */
.entrega-detalhes .container .checkmark-box:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.resumo-encomenda {
  padding: 20px;
  border: 2px solid #a6a6a6;
  background: white;
  height: 550px;
}
/*.resumo-encomenda .left-to-free-shipping {
    margin-top: 20px;
}
*/
.resumo-encomenda .left-to-free-shipping p {
  font-style: italic;
  font-weight: bold;
  font-size: 12px;
}
#encomenda #resumo_encomenda .resumo-tab {
  height: 470px;
  width: 40%;
  margin-left: 10%;
  margin-top: 0;
  float: left;
  margin-bottom: 150px;
}
#encomenda #resumo_encomenda .resumo-tab .tabs-titles {
  margin-bottom: 0;
}
#encomenda #resumo_encomenda .resumo-tab .tabs-titles ul {
  padding: 0;
  margin: 0;
}
#encomenda #resumo_encomenda .resumo-tab .tabs-titles ul li {
  list-style: none;
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  position: relative;
}
/*Our top arrow. This is the same color as the background of the page below it.*/
#encomenda #resumo_encomenda .resumo-tab .tabs-titles ul li.active_tab:after {
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid white;
  display: block;
  position: absolute;
  bottom: -3px;
  content: '';
  left: 44.5%;
}
#encomenda #resumo_encomenda .resumo-tab .tabs-titles ul li.active_tab:before {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid #a6a6a6;
  display: block;
  position: absolute;
  bottom: -2px;
  content: '';
  left: 42%;
}
#encomenda #resumo_encomenda .resumo-tab .tabs-titles ul li h5 {
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 10px 0 10px;
}
#encomenda #resumo_encomenda .resumo-tab .tabs-titles ul li h5::after {
  content: '';
  display: block;
  margin: auto;
  width: 0;
  height: 3px;
  margin-top: 10px;
  background: transparent;
  transition: width 0.5s, background-color 0.5s ease;
}
#encomenda #resumo_encomenda .resumo-tab .tabs-titles ul li:hover h5::after {
  width: 100%;
  background: #f3e7d2;
  /*transition: width .3s;*/
}
#encomenda #resumo_encomenda .resumo-tab .tabs-titles ul li h5.active::after {
  width: 100%;
  background: #f3e7d2;
  /*transition: width .3s;*/
}
.resumo-encomenda h4 {
  font-weight: bold;
  margin-bottom: 20px;
}
.resumo-encomenda .value-group {
  height: 40px;
  margin-top: 10px;
  background-color: #e6e6e6;
  padding: 4.5px;
}
.resumo-encomenda .value-group .value-left {
  text-align: left;
  padding: 0 5px 0 5px;
  display: inline-grid;
  width: 65%;
  height: 100%;
  font-size: 10pt;
  font-weight: bold;
  margin-right: 0;
}
.resumo-encomenda .value-group .value-right {
  text-align: right;
  padding: 0 5px 0 5px;
  display: inline-grid;
  width: 34%;
  height: 100%;
  background-color: white;
  margin-left: 0;
}
.resumo-encomenda .value-group h5 {
  font-size: 10pt;
  font-weight: bold;
}
.resumo-encomenda .value-group i.fas.fa-info-circle {
  font-size: 12pt;
  color: #b3b3b3;
  cursor: pointer;
}
.resumo-encomenda .value-group i.fas.fa-info-circle.tip span.lgnd {
  width: 130px;
  left: -50px;
  top: -25px;
  z-index: 0;
  -webkit-transition: all 0.45s ease;
  -moz-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.resumo-encomenda .value-group i.fas.fa-info-circle.tip:hover span.lgnd {
  top: -45px;
  opacity: 1;
  -webkit-transition: all 0.45s ease;
  -moz-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.resumo-encomenda #cupao {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 15px;
  margin-bottom: 15px;
}
.resumo-encomenda #cupao label {
  display: block;
}
.resumo-encomenda #cupao input {
  width: 30%;
  display: inline;
}
.resumo-encomenda #cupao a#aplicaCupao {
  display: inline;
  margin-left: 30px;
  margin-top: -5px;
}
.resumo-encomenda #finalizar {
  clear: both;
  width: 100%;
  display: block;
  margin-top: 30px;
}
.resumo-encomenda #finalizar .btn-default {
  float: right;
}
/*#encomenda .btn-default, #checkout-page .btn-default {
    color: #000000;
    border-color: rgba(145, 22, 25,0.6);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(145, 22, 25,0.6);
    background-color:white;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12pt;
    padding-top: 5px;
    width: auto;
    transition: all 0.35s ease-out;
    -webkit-transition: all 0.35s ease-out;
    -moz-transition: all 0.35s ease-out;
    -o-transition: all 0.35s ease-out;
    -ms-transition: all 0.35s ease-out;
}

    #encomenda .btn-default:hover, #checkout-page .btn-default:hover {
        color: #EAE9E9;
    }
    */
#encomenda .encomenda-btn {
  width: 100%;
  padding: 10px;
  margin-bottom: 50px;
  text-align: right;
}
/* END Encomenda page */
/* Checkout Page */
#checkout-page {
  margin-bottom: 50px;
}
#checkout {
  padding: 10px;
  margin-top: -20px;
  clear: both;
  width: 55%;
  float: left;
}
#checkout .encomenda-tabs {
  clear: both;
}
#checkout .encomenda-tabs .tabs-titles {
  margin-bottom: 0;
}
#checkout .encomenda-tabs .tabs-titles ul {
  padding: 0;
  margin: 0;
}
#checkout .encomenda-tabs .tabs-titles ul li {
  list-style: none;
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  position: relative;
}
/*Our top arrow. This is the same color as the background of the page below it.*/
#checkout .encomenda-tabs .tabs-titles ul li.active_tab:after {
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid white;
  display: block;
  position: absolute;
  bottom: -3px;
  content: '';
  left: 44.5%;
}
#checkout .encomenda-tabs .tabs-titles ul li.active_tab:before {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid #a6a6a6;
  display: block;
  position: absolute;
  bottom: -2px;
  content: '';
  left: 42%;
}
#checkout .encomenda-tabs .tabs-titles ul li h5 {
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 10px 0 10px;
}
#checkout .encomenda-tabs .tabs-titles ul li h5::after {
  content: '';
  display: block;
  margin: auto;
  width: 0;
  height: 3px;
  margin-top: 10px;
  background: transparent;
  transition: width 0.5s, background-color 0.5s ease;
}
#checkout .encomenda-tabs .tabs-titles ul li:hover h5::after {
  width: 100%;
  background: #f3e7d2;
  /*transition: width .3s;*/
}
#checkout .encomenda-tabs .tabs-titles ul li h5.active::after {
  width: 100%;
  background: #f3e7d2;
  /*transition: width .3s;*/
}
#checkout .encomenda-tabs .tabs_content {
  margin-top: 0;
  border: 2px solid #a6a6a6;
  padding: 15px;
  padding-top: 2px;
  display: block;
  height: 550px;
  overflow: auto;
}
#checkout #checkout-artigos h4 {
  font-weight: bold;
}
#checkout table tr:nth-child(even) {
  background-color: #ededf0;
}
#checkout table th,
#checkout table td {
  font-size: 10pt;
  vertical-align: middle;
}
#checkout table th {
  text-align: center;
}
#checkout table .align-left {
  text-align: left;
}
#checkout table .align-center {
  text-align: center;
}
#checkout table .align-right {
  text-align: right;
}
/*
#checkout table .vertical-center {
    padding-top: 25px;
}
*/
#checkout table .top-border-white {
  border-top: 20px solid white;
}
#checkout table th#nome,
#checkout table td#nome {
  width: 65%;
  padding-left: 15px;
}
#checkout .encomenda-tabs .tabs_content#checkout-artigos table td#nome span {
  font-size: 10pt;
}
#checkout table th#quantidade,
table td#quantidade {
  width: 10%;
}
#checkout table th#preco,
#checkout table td#preco {
  width: 25%;
  padding-right: 15px;
}
/*#checkout table td#preco {
        padding-right:35px;
    }*/
#checkout .encomenda-tabs .tabs_content table tr#total {
  background-color: #dcdcdc;
  font-weight: bold;
}
#checkout .encomenda-tabs .tabs_content tr#total td {
  border-top: 2px solid #e6e6e6;
}
#checkout .encomenda-tabs .tabs_content table#dados_cliente {
  margin-top: 10px;
}
#checkout .encomenda-tabs .tabs_content table#dados_cliente tr td {
  padding-left: 10px;
}
#checkout .encomenda-tabs .tabs_content table#dados_cliente tr td.dados {
  font-weight: bold;
  border-right: 2px solid #e6e6e6;
}
/* #checkout .encomenda-tabs .tabs_content #checkout-dados {
        width: 45%;
        margin: 20px;
        display: inline-table;
        margin-top: 0;
    }

        #checkout #checkout-dados h4 {
            font-weight: bold;
        }


        #checkout #checkout-dados table th {
            padding: 0;
        }

        #checkout #checkout-dados table td {
            height: 30px;
        }


    */
#pagamento {
  padding: 10px;
  margin-left: 5%;
  width: 40%;
  margin-top: -20px;
  margin-bottom: 30px;
  float: left;
}
#pagamento .encomenda-tabs {
  clear: both;
}
#pagamento .encomenda-tabs .tabs-titles {
  margin-bottom: 0;
}
#pagamento .encomenda-tabs .tabs-titles ul {
  padding: 0;
  margin: 0;
  text-align: center;
}
#pagamento .encomenda-tabs .tabs-titles ul li {
  list-style: none;
  display: inline-block;
  cursor: pointer;
  padding: 10px;
  position: relative;
}
/*Our top arrow. This is the same color as the background of the page below it.*/
#pagamento .encomenda-tabs .tabs-titles ul li.active_tab:after {
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 11px solid white;
  display: block;
  position: absolute;
  bottom: -3px;
  content: '';
  left: 44.5%;
}
#pagamento .encomenda-tabs .tabs-titles ul li.active_tab:before {
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid #a6a6a6;
  display: block;
  position: absolute;
  bottom: -2px;
  content: '';
  left: 42%;
}
#pagamento .encomenda-tabs .tabs-titles ul li h5 {
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 10px 0 10px;
}
#pagamento .encomenda-tabs .tabs-titles ul li h5::after {
  content: '';
  display: block;
  margin: auto;
  width: 0;
  height: 3px;
  margin-top: 10px;
  background: transparent;
  transition: width 0.5s, background-color 0.5s ease;
}
#pagamento .encomenda-tabs .tabs-titles ul li:hover h5::after {
  width: 100%;
  background: #f3e7d2;
  /*transition: width .3s;*/
}
#pagamento .encomenda-tabs .tabs-titles ul li h5.active::after {
  width: 100%;
  background: #f3e7d2;
  /*transition: width .3s;*/
}
#pagamento .encomenda-tabs .tabs_content {
  margin-top: 0;
  border: 2px solid #a6a6a6;
  padding: 15px;
  padding-top: 5px;
  display: block;
  height: auto;
  min-height: 550px;
}
#pagamento .metodo-pagamento {
  background: white;
  position: relative;
}
#pagamento .metodo-pagamento h5 {
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 10px 0 10px;
  margin-bottom: 30px;
}
#pagamento .metodo-pagamento hr {
  border-color: #e6e6e6;
}
#pagamento .metodo-pagamento .pay-method {
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
  overflow: hidden;
  height: auto;
}
#pagamento .metodo-pagamento .pay-method hr {
  margin: 0;
  padding: 0;
}
#pagamento .metodo-pagamento .pay-method img {
  margin: 0;
  padding: 0;
}
#pagamento .metodo-pagamento .pay-method label span.metodo_desc {
  font-size: 10pt;
  margin-left: 20px;
  text-transform: none;
}
#pagamento .metodo-pagamento .pay-method label#radio-mb span.metodo_desc {
  margin-left: 8px;
}
#pagamento .metodo-pagamento .pay-method #img_Paypal {
  width: 23%;
  margin-top: -5px;
  margin-left: 15px;
}
#pagamento .metodo-pagamento .pay-method #img_MB {
  width: 15%;
  margin-top: -15px;
  margin-left: 10px;
}
#pagamento .metodo-pagamento .pay-method #img_MBWAY {
  width: 18%;
  margin-top: 0px;
  margin-left: 20px;
}
#pagamento .metodo-pagamento .pay-method .mbway-tlm {
  height: 0;
  transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
}
#pagamento .metodo-pagamento .pay-method .mbway-tlm input.danger::placeholder {
  color: red;
}
#pagamento .metodo-pagamento .pay-method #img_TB {
  width: 10%;
  margin-top: -10px;
  margin-left: 20px;
}
/* The container */
#pagamento .metodo-pagamento .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-top: 30px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 12pt;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default radio button */
#pagamento .metodo-pagamento .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* Create a custom radio button */
#pagamento .metodo-pagamento .checkmark {
  position: absolute;
  top: 6px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #e6e6e6;
  border-radius: 50%;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
/* On mouse-over, add a grey background color */
#pagamento .metodo-pagamento .container:hover input ~ .checkmark {
  background-color: #ccc;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
/* When the radio button is checked, add a blue background */
#pagamento .metodo-pagamento .container input:checked ~ .checkmark {
  /*background-color: #22994E;*/
  background-color: black;
}
/* Create the indicator (the dot/circle - hidden when not checked) */
#pagamento .metodo-pagamento .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the indicator (dot/circle) when checked */
#pagamento .metodo-pagamento .container input:checked ~ .checkmark:after {
  display: block;
}
/* Style the indicator (dot/circle) */
#pagamento .metodo-pagamento .container .checkmark:after {
  top: 5px;
  left: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
}
/* Create a custom checkbox */
#pagamento .metodo-pagamento .container#termos,
#pagamento .metodo-pagamento .container#mailingList {
  font-size: 10pt;
  margin: 15px;
}
#pagamento .metodo-pagamento .checkmark-box {
  position: absolute;
  top: 3px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #d9d9d9;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
/* On mouse-over, add a grey background color */
#pagamento .metodo-pagamento .container:hover input ~ .checkmark-box {
  background-color: #b3b3b3;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
/* When the checkbox is checked, add a blue background */
#pagamento .metodo-pagamento .container input:checked ~ .checkmark-box {
  /*background-color: #22994E;*/
  background-color: black;
}
/* Create the checkmark-box/indicator (hidden when not checked) */
#pagamento .metodo-pagamento .checkmark-box:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark-box when checked */
#pagamento .metodo-pagamento .container input:checked ~ .checkmark-box:after {
  display: block;
}
/* Style the checkmark-box/indicator */
#pagamento .metodo-pagamento .container .checkmark-box:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#pagamento #checkout-buttons {
  width: 100%;
  height: 40px;
  position: relative;
}
/*#pagamento #checkout-buttons .btn-default:hover {
            background-color: #971b1e;
        }*/
#pagamento #checkout-buttons #forbid {
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.55);
  z-index: 5;
  cursor: not-allowed;
}
#pagamento #checkout-buttons #forbid #verTermos:hover {
  cursor: pointer;
}
#pagamento #checkout-buttons #paypal_payment {
  position: absolute;
  width: 25%;
  right: 0;
  height: 35px;
  opacity: 0;
  z-index: 1;
  overflow: hidden;
}
#pagamento #checkout-buttons #paypal_payment:hover ~ #ConfirmCheckout {
  background-color: #b11b1d;
}
#pagamento #checkout-buttons #ConfirmCheckout {
  margin-left: 15px;
  width: 25%;
  z-index: 0;
}
#fimEncomenda h4 {
  font-weight: bold;
  font-size: 14pt;
}
#fimEncomenda h5 {
  font-size: 11pt;
}
.ref-MB {
  width: 39%;
  margin-left: 32.5%;
  margin-top: 5%;
  padding: 10px;
  /*border:1px solid #971b1e;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(245, 217, 10, 0.75);*/
  border: 3px solid #a6a6a6;
}
.ref-MB .ref-MB-header {
  padding: 0;
  width: 100%;
  margin-bottom: 30px;
}
.ref-MB .ref-MB-header img {
  width: 14%;
  margin-left: 15px;
  margin-top: -30px;
}
.ref-MB .ref-MB-header h4 {
  display: inline-block;
  font-size: 14pt;
  font-weight: bold;
  width: 65%;
  margin-left: 30px;
  padding-top: 10px;
  text-align: center;
}
.ref-MB .ref-MB-body {
  text-align: center;
}
.ref-MB .ref-MB-body table {
  width: 60%;
  margin-left: 20%;
  margin-bottom: 30px;
}
.ref-MB .ref-MB-body table td.td-left {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 12pt;
  text-align: left;
  width: 40%;
}
.ref-MB .ref-MB-body table td.td-right {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 12pt;
  text-align: right;
  font-weight: bold;
  width: 60%;
}
.ref-MB .ref-MB-body p span {
  font-weight: bold;
}
.ref-MBWay {
  width: 39%;
  margin-left: 32.5%;
  margin-top: 5%;
  padding: 10px;
  /*border:1px solid #971b1e;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(245, 217, 10, 0.75);*/
  border: 3px solid #a6a6a6;
}
.ref-MBWay .ref-MBWay-header {
  padding: 0;
  width: 100%;
  margin-bottom: 30px;
}
.ref-MBWay .ref-MBWay-header img {
  width: 18%;
  margin-left: 25px;
  margin-top: 0px;
}
.ref-MBWay .ref-MBWay-header h4 {
  display: inline-block;
  font-size: 14pt;
  font-weight: bold;
  width: 65%;
  margin-left: 30px;
  padding-top: 10px;
  text-align: center;
}
.ref-MBWay .ref-MBWay-body {
  text-align: center;
}
.ref-MBWay .ref-MBWay-body table {
  width: 60%;
  margin-left: 20%;
  margin-bottom: 30px;
}
.ref-MBWay .ref-MBWay-body table td.td-left {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 12pt;
  text-align: left;
  width: 40%;
}
.ref-MBWay .ref-MBWay-body table td.td-right {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 12pt;
  text-align: right;
  font-weight: bold;
  width: 60%;
}
.ref-MBWay .ref-MBWay-body p span {
  font-weight: bold;
}
.ref-TB {
  width: 39%;
  margin-left: 30%;
  margin-top: 5%;
  padding: 10px;
  /*border-color: rgba(77, 148, 255, 0.6);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(0, 204, 0, 0.6);*/
  border: 3px solid #a6a6a6;
}
.ref-TB .ref-TB-header {
  padding: 0;
  width: 100%;
  margin-bottom: 30px;
}
.ref-TB .ref-TB-header img {
  width: 12%;
  margin-left: 15px;
  margin-top: 0;
}
.ref-TB .ref-TB-header h4 {
  display: inline-block;
  font-size: 14pt;
  font-weight: bold;
  width: 65%;
  margin-left: 30px;
  padding-top: 10px;
  text-align: center;
}
.ref-TB .ref-TB-body {
  text-align: center;
}
.ref-TB .ref-TB-body table {
  width: 75%;
  margin-left: 12.5%;
  margin-bottom: 30px;
}
.ref-TB .ref-TB-body table td.td-left {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 12pt;
  text-align: left;
  width: 20%;
}
.ref-TB .ref-TB-body table td.td-right {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 10pt;
  text-align: right;
  font-weight: bold;
  width: 80%;
}
.ref-TB .ref-TB-body p span {
  font-weight: bold;
}
/*#encomenda-detalhes .entrega-detalhes {
    height: 500px;
}

#encomenda-detalhes .resumo-encomenda {
    height: 500px;
}

#encomenda-detalhes .header-encomenda {
    margin-bottom: 50px;
}


    #encomenda-detalhes .header-encomenda h4 {
        font-weight: bold;
        padding-bottom: 20px;
        border-bottom: 1px solid rgb(215,215,215);
    }


        #encomenda-detalhes .header-encomenda h4 span.header-encomenda-left {
            float: left;
            width: 50%;
        }

        #encomenda-detalhes .header-encomenda h4 span.header-encomenda-right {
            float: right;
            text-align: right;
            width: 50%;
        }

#encomenda-detalhes table th, #encomenda-detalhes table td {
    width: 80px;
    font-size: 12pt;
}

#encomenda-detalhes table td {
    padding-top: 50px;
}

    #encomenda-detalhes table th#nome, #encomenda-detalhes table td#nome {
        width: 150px;
    }


    #encomenda-detalhes table th#imagem, #encomenda-detalhes table td#imagem {
        width: 60px;
    }


    #encomenda-detalhes table td#imagem {
        padding-top: 5px;
    }

        #encomenda-detalhes table td#imagem img {
            max-width: 100%;
        }

    #encomenda-detalhes table th#trash, #encomenda-detalhes table td#trash {
        width: 20px;
    }


#encomenda-detalhes .entrega-detalhes .info-group {
    position: relative;
    padding: 10px;
    margin-bottom: 10px;
}

    #encomenda-detalhes .entrega-detalhes .info-group h4 {
        font-size: 12pt;
    }

        #encomenda-detalhes .entrega-detalhes .info-group h4.header {
            font-weight: bold;
            font-size: 14pt;
            margin-bottom: 20px;
        }

    #encomenda-detalhes .entrega-detalhes .info-group .info-group-left {
        float: left;
    }

    #encomenda-detalhes .entrega-detalhes .info-group .info-group-right {
        float: left;
        margin-left: 25%;
    }*/
#encomendas table th,
#encomendas table td {
  width: 80px;
  font-size: 10pt;
  text-align: center;
  border: 1px solid;
}
#encomendas table td {
  border-color: #dcdcdc;
}
#encomendas table th#nome,
#encomendas table td#nome {
  width: 150px;
}
#encomendas table th#nroencomenda,
#encomendas table td#nroencomenda {
  width: 70px;
}
#encomendas table th#estado,
#encomendas table td#estado {
  width: 100px;
}
#encomendas table th#data,
#encomendas table td#data {
  width: 100px;
}
#encomendas table th#detalhe,
#encomendas table td#detalhe {
  width: 10px;
}
#encomendas table th#detalhe,
#encomendas table td#detalhe i:hover {
  cursor: pointer;
}
/* END Checkout Page */
/* Favorites Page */
#favoritos .favoritos-page {
  position: relative;
  margin-left: 21%;
  margin-bottom: 100px;
  padding-bottom: 50px;
}
#favoritos table {
  /*border-top: 2px solid #d9d9d9;
    border-bottom: 2px solid #d9d9d9;*/
  border-top: 2px solid #a6a6a6;
  border-bottom: 2px solid #a6a6a6;
  padding: 5px;
  margin-top: 25px;
  margin-bottom: 30px;
  width: 90%;
  margin-left: 5%;
}
#favoritos table .table-header th {
  border-bottom: 2px solid #a6a6a6;
}
#favoritos table tr:nth-child(even) {
  background-color: #ededf0;
}
#favoritos table th,
#favoritos table td {
  width: 80px;
  font-size: 10pt;
  text-align: center;
  vertical-align: middle;
}
#favoritos table th#imagem,
#favoritos table td#imagem {
  width: 50px;
}
#favoritos table td#imagem {
  padding-top: 0;
}
#favoritos table td#imagem img {
  max-width: 90%;
}
#favoritos table th#nome,
#favoritos table td#nome {
  width: 150px;
}
#favoritos table th#preco,
#favoritos table td#preco {
  width: 70px;
}
#favoritos table th#cores,
#favoritos table td#cores {
  width: 100px;
}
#favoritos table td#cores span.color-circle {
  width: 25px;
  height: 25px;
  display: inline-block;
  margin: 3px;
}
#favoritos table td#cores span.color-circle.tip span.lgnd_color {
  z-index: 100;
  left: -15px;
}
#favoritos table td#cores span.color-circle.tip:hover span.lgnd_color {
  left: -15px;
}
#favoritos table th#compra_rapida,
#favoritos table td#compra_rapida {
  width: 13px;
}
#favoritos table td#compra_rapida img {
  width: 100%;
}
#favoritos table th#trash,
#favoritos table td#trash {
  width: 20px;
}
/*#encomenda table td#trash {
        position: relative;
    }*/
#favoritos table td#trash i.fas.fa-times {
  width: 18px;
  height: 18px;
  padding-top: 2px;
  font-size: 10pt;
  color: #cc0000;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  /*background-color: #cc0000;*/
  border-radius: 50%;
  border: 1px solid #cc0000;
}
#favoritos table td#trash i.fas.fa-times:hover {
  color: white;
  background-color: #cc0000;
}
/* Newsletter banner */
.newsletter-banner {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  height: 220px;
}
.newsletter-banner .newsletter-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.55);
}
.newsletter-content {
  position: relative;
}
.newsletter-content h2 {
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
}
.newsletter-content h4 {
  color: white;
  font-weight: 500;
  margin-bottom: 20px;
}
.newsletter-content .form-container {
  clear: both;
  width: 70%;
  margin-left: 15%;
  margin-top: 20px;
  padding: 0;
}
.newsletter-content .form-container input {
  width: 79.5%;
  display: inline;
}
.newsletter-content .form-container button.btn-default {
  width: 19.5%;
  display: inline;
}
.newsletter-content .newsletter-termos {
  clear: both;
  width: 70%;
  margin-left: 15%;
  position: relative;
  margin-top: 10px;
  display: block;
}
/* Create a custom checkbox */
/* The container */
.newsletter-content .container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 10pt;
  color: white;
  font-weight: 500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
}
.newsletter-content .container a.link {
  color: white;
  font-weight: 500;
}
.newsletter-content .container a.link:hover {
  /*color: #971b1e;*/
  cursor: pointer;
  color: #595959;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  -ms-transition: all 0.25s ease-in;
}
/* Hide the browser's default radio button */
.newsletter-content .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  background: red;
}
.newsletter-content .checkmark-box {
  position: absolute;
  top: 3px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #d9d9d9;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
/* On mouse-over, add a grey background color */
.newsletter-content .container:hover input ~ .checkmark-box {
  background-color: #b3b3b3;
  transition: all 0.35s ease-out;
  -webkit-transition: all 0.35s ease-out;
  -moz-transition: all 0.35s ease-out;
  -o-transition: all 0.35s ease-out;
  -ms-transition: all 0.35s ease-out;
}
/* When the checkbox is checked, add a blue background */
.newsletter-content .container input:checked ~ .checkmark-box {
  /*background-color: #22994E;*/
  background-color: black;
}
/* Create the checkmark-box/indicator (hidden when not checked) */
.newsletter-content .checkmark-box:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark-box when checked */
.newsletter-content .container input:checked ~ .checkmark-box:after {
  display: block;
}
/* Style the checkmark-box/indicator */
.newsletter-content .container .checkmark-box:after {
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Footer */
.info-footer {
  clear: both;
  width: 100%;
  border: 4px solid #971b1e;
  height: 330px;
  margin-bottom: 0;
  margin-top: 50px;
  position: relative;
  display: block;
}
.info-footer .info {
  margin-top: 3px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}
.info-footer .info .link {
  text-decoration: none;
}
.info-footer .info#info-acessos {
  width: 25%;
}
.info-footer .info#info-compras {
  width: 25%;
}
.info-footer .info#info-sobre {
  width: 18%;
}
.info-footer .info#info-address {
  width: 30%;
}
.info-footer .info#info-revenda {
  width: 25%;
}
.info-footer .info#info-informacoes {
  width: 25%;
}
/*.info-footer .info#info-politica {
            width: 23%;
            margin-top: -55px;
        }*/
.info-footer .info h5 {
  text-transform: uppercase;
  font-weight: bold;
}
.info-footer .info p {
  text-transform: uppercase;
  font-size: 8pt;
  line-height: 8px;
}
.info-footer .info p small {
  text-transform: none;
}
.info-footer .info p a.link span {
  text-transform: none;
}
.info-map {
  float: right;
  width: 35%;
  height: 170px;
  margin-top: -55px;
  margin-left: -70px;
  text-align: center;
}
.info-map iframe {
  width: 85%;
  margin-left: 7.5%;
  height: 170px;
  border: 1px solid;
}
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #971b1e;
  padding: 10px;
  height: fit-content;
}
@media (min-width: 768px) {
  footer {
    display: flex;
  }
}
footer .payment-methods {
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  footer .payment-methods {
    text-align: left;
    margin-top: 0;
    width: 50%;
  }
}
footer .payment-methods img#paypal_payment {
  height: 27px;
  margin-top: -8px;
}
footer .payment-methods img#refmb_payment {
  height: 23px;
  margin-left: 10px;
  margin-top: -2px;
}
footer .payment-methods img#tb_payment {
  height: 21px;
  margin-top: -3px;
  margin-left: 10px;
}
footer .payment-methods img#mbway_payment {
  height: 23px;
  margin-left: 10px;
  margin-top: -2px;
}
footer .copyright {
  text-align: center;
  width: 100%;
  margin-top: 15px;
}
@media (min-width: 768px) {
  footer .copyright {
    text-align: right;
    margin-top: 0;
    width: 50%;
  }
}
footer .copyright p {
  color: white;
  text-transform: uppercase;
  font-size: 8pt;
  /*padding-top:10px;*/
}
footer .copyright p a {
  color: white;
}