.quickview__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quickview__description {
  height: 100px;
  overflow: hidden;
  margin: 30px 0;
  font-size: 14px;
  font-weight: 600;
  color: #74787a;
  line-height: 20px;
}
.quickview__description p {
  margin-bottom: 0;
}
.quickview {
  align-items: center;
  background: rgba(0,0,0,0.8);
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.quickview .slick-arrow svg {
  fill: #2c3e50;
}
.quickview__rating {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.quickview__rating a {
  margin-left: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #74787a;
}
.quickview option:disabled {
  display: none;
}
.quickview .disabled {
  opacity: 0.5;
}
.quickview[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
}
.quickview[aria-hidden=false] .quickview__container {
  visibility: visible;
  opacity: 1;
}
.quickview__main {
  flex: 1 1 auto;
  margin: 0;
  min-width: 0;
}
.quickview__container {
  background: #fff;
  border-radius: 0;
  display: flex;
  max-width: calc(100% - 30px);
  opacity: 0;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  max-height: 80%;
}
@media desktop {
  .quickview__container {
    max-width: 140vh;
    max-height: 90vh;
  }
}
@media (max-width: 991px) {
  .quickview__container {
    display: block;
    position: relative;
    height: calc(100% - 90px);
  }
}
.quickview__finish {
  height: auto !important;
  max-height: 80vh !important;
  max-width: 90vw;
  position: static;
  width: auto !important;
}
.quickview__finish .quickview__actions {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .quickview__finish .quickview__actions {
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .quickview__finish .quickview__actions {
    flex-wrap: wrap;
  }
}
@media (max-width: 1199px) {
  .quickview__finish .quickview__button--continue,
  .quickview__finish .quickview__button--finish {
    font-size: 18px;
    white-space: nowrap;
  }
}
.quickview__name {
  color: #222;
  display: block;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 10px;
  text-transform: none;
}
@media (max-width: 991px) {
  .quickview__name {
    font-size: 25px;
    margin-top: 20px;
    text-align: center;
  }
}
.quickview__sku {
  color: #878787;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}
@media (max-width: 991px) {
  .quickview__sku {
    display: block;
    text-align: center;
  }
}
.quickview__actions {
  flex: 1;
  align-items: center;
  display: flex;
  justify-content: flex-start;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .quickview__actions {
    justify-content: center;
  }
}
.quickview__variants {
  display: block;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .quickview__variants {
    margin-top: 20px;
    text-align: center;
  }
}
.quickview__variants label {
  color: #232323;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
.quickview__variants > div:nth-child(2) {
  margin: 10px 0 0;
}
.quickview__variants select {
  border: solid 1px #ebebeb;
  background: #fff;
  border-radius: 0;
  color: #232323;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  max-width: 200px;
  padding: 0 5px;
  width: 100%;
}
@media (max-width: 991px) {
  .quickview__variants select {
    max-width: 250px;
  }
}
.quickview__variants input[type=radio] {
  display: inline-block;
  height: 13px;
  margin: 0 5px 0 0;
  width: 13px;
}
@media (max-width: 991px) {
  .quickview .variant:not(:first-child) {
    margin-left: 10px;
  }
}
.quickview .variant__title {
  color: #222;
  font-size: 16px;
  font-weight: 400;
  margin: 8px 0;
}
.quickview .variant label {
  box-shadow: none;
  color: #222;
  font-size: 1rem;
  cursor: pointer;
  display: block;
  height: auto;
  margin: 0 5px 5px 0;
  padding: 10px 0 0;
  position: relative;
  transition: all 150ms ease-in-out;
  width: auto;
}
.quickview .variant select {
  border: solid 1px #ebebeb;
  background: #fff;
  border-radius: 0;
  color: #232323;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  max-width: 200px;
  padding: 0 5px;
  width: 100%;
}
.quickview .variant__radio[type='radio'] {
  border: none;
  bottom: 0;
  cursor: hand;
  cursor: pointer;
  display: block;
  height: 100%;
  left: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.quickview .variant__radio[type='radio']:checked + span {
  box-shadow: none;
}
.quickview .variant__label {
  color: #222;
  font-size: 14px;
  font-weight: 400;
}
.quickview__box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 20px 0 0;
}
.quickview__box a {
  font-size: 13px;
  font-weight: 600;
  color: #e74c3c;
  padding: 10px 0;
  display: block;
  text-decoration: underline;
}
.quickview__prices {
  display: block;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .quickview__prices {
    margin-top: 20px;
    text-align: center;
  }
}
.quickview__prices > span {
  display: block;
  font-weight: 400;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}
.quickview__prices .from {
  color: #878787;
  font-size: 15px;
  font-weight: 400;
  text-decoration: line-through;
}
.quickview__prices .to {
  font-size: 25px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .quickview__prices .to {
    font-size: 20px;
  }
}
.quickview__prices .payment {
  color: #222;
  font-size: 18px;
}
@media (max-width: 767px) {
  .quickview__prices .payment {
    font-size: 16px;
  }
}
.quickview__images {
  display: block;
  flex: 0 0 50%;
  height: auto;
  margin: 0 30px 0 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 991px) {
  .quickview__images {
    margin: 0;
  }
}
.quickview__images--more ul {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 10px;
  overflow-x: auto;
}
.quickview__images--more li {
  align-items: center;
  display: flex;
  height: 70px;
  justify-content: center;
  width: 70px;
}
.quickview__images--more li:not(:first-child) {
  margin-left: 10px;
}
.quickview__images--more li img {
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
}
.quickview__image {
  align-items: center;
  display: flex;
  height: 400px;
  justify-content: center;
  max-width: none;
  width: 100%;
}
@media (max-width: 991px) {
  .quickview__image {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .quickview__image {
    height: 300px;
  }
}
.quickview__image img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}
.quickview__qtd {
  background: none;
  border: none;
  box-shadow: none;
  color: #878787;
  display: inline-block;
  height: 100%;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  padding: 20px 4px;
  text-align: center;
  width: 60%;
}
.quickview__qtd::-webkit-inner-spin-button,
.quickview__qtd::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.quickview__quantity {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 0;
  display: inline-block;
  height: 60px;
  margin: 0;
  position: relative;
  user-select: none;
  width: 60px;
}
@media (max-width: 992px) {
  .quickview__quantity {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
  }
}
.quickview .qtds__button {
  align-items: center;
  background: none;
  border: none;
  box-shadow: none;
  color: #878787;
  display: flex;
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  height: 40px;
  line-height: 1;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 0;
  transition: $transition;
  width: 60%;
}
.quickview .qtds__button:hover {
  color: $cor01;
}
.quickview .qtds__button--less {
  bottom: 0;
}
.quickview .qtds__button--more {
  top: 0;
}
.quickview__button--addcart,
.quickview__button--continue,
.quickview__button--finish {
  align-items: center;
  background-color: #28b363;
  border: none;
  border-radius: 0;
  color: #fff;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  height: 60px;
  justify-content: center;
  line-height: 1;
  margin: 0 0 0 8px;
  padding: 0 20px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  width: 166px;
}
.quickview__button--addcart:hover,
.quickview__button--continue:hover,
.quickview__button--finish:hover {
  background: #cc2020;
  color: #fff;
}
.quickview__button--continue,
.quickview__button--finish {
  width: auto;
}
.quickview__button--continue {
  background: #222;
}
.quickview__button--close {
  align-items: flex-start;
  background: none;
  border: none;
  display: flex;
  height: 20px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 5px;
  width: 45px;
  z-index: 10;
}
.quickview__button--close svg {
  transition: all 0.2s ease-out;
  fill: #1d1d1b;
  height: 18px;
  position: relative;
  width: 18px;
  z-index: 1;
}
.quickview__button--close:hover {
  background: none;
}
.quickview__button--close:hover svg {
  fill: #878787;
}
.quickview__button--close:before {
  content: '';
  position: absolute;
  z-index: 2;
  background: rgba(0,0,0,0);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.quickview__error,
.quickview__unavailable {
  border-radius: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  margin: 20px 0;
  padding: 10px;
  text-align: center;
}
.quickview__error {
  background: #e74c3c;
}
.quickview__unavailable {
  background: #74787a;
}
.quickview--loaded {
  height: 100%;
  overflow: hidden;
}
.qtds {
  width: 100%;
  max-width: 90px;
}
.qtds__title {
  font-size: 12px;
  font-weight: 600;
  color: #74787a;
  text-align: center;
  margin: 0 0 5px;
}
.qtds__main {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #c4c4c4;
  height: 34px;
  border-radius: 34px;
}
.qtds__value {
  flex: 1;
  border: 0;
  background: none;
  border: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.qtds__value::-webkit-outer-spin-button,
.qtds__value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qtds__button {
  flex: 0 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 100%;
  font-size: 25px;
  font-weight: 600;
  color: #c4c4c4;
  padding: 0;
  background: none;
  border: 0;
}
.variants__title {
  color: #222;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin: 15px 0 5px;
}
.quickview__link--more {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 400;
  color: #222;
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}
.quickview__link--more:hover {
  color: #878787;
  text-decoration: underline;
}
[data-var=''] {
  display: none;
}
.minicart__delete {
  font-size: 14px;
  color: #222;
  text-decoration: underline;
  height: 20px;
  line-height: 20px;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
  padding: 0;
  background: transparent;
  margin-right: auto;
}
.minicart__delete:hover {
  text-decoration: underline;
  color: var(--color2, #fbbb18);
}
@media (max-width: 991px) {
  .minicart {
    background: rgba(0,0,0,0.5);
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.2s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 200;
  }
  .minicart.minicart--actived {
    opacity: 1;
    visibility: visible;
  }
  .minicart--fixed {
    height: 100vh;
    overflow: hidden;
    width: 100%;
  }
}
.minicart__container {
  width: 100%;
}
@media (max-width: 991px) {
  .minicart__container {
    background: #fff;
    height: 100vh;
    overflow-y: auto;
    padding: 20px 15px;
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    transform: translateX(100%);
    transition: all 0.2s ease-in-out;
  }
  .minicart--actived .minicart__container {
    transform: translateX(0);
  }
}
@media (max-width: 767px) {
  .minicart__container {
    width: 280px;
  }
}
@media (max-width: 991px) {
  .minicart__main {
    height: calc(100% - 140px);
    overflow-y: auto;
    height: auto;
    overflow: hidden;
  }
}
.minicart__close {
  align-items: flex-start;
  background: none;
  border: none;
  display: flex;
  height: 40px;
  left: 5px;
  justify-content: flex-start;
  position: absolute;
  top: 5px;
  width: 40px;
  z-index: 50;
}
@media (min-width: 992px) {
  .minicart__close {
    display: none;
  }
}
.minicart__close svg {
  fill: #cc2020;
}
.minicart__list {
  margin: 0;
  overflow-x: hidden;
  padding: 0;
}
@media (min-width: 992px) {
  .minicart__list {
    max-height: 194px;
    overflow-y: auto;
    padding-right: 5px;
  }
}
.minicart__item {
  border-bottom: 2px solid #f6f6f6;
  position: relative;
  margin: 0;
  padding: 15px 0;
}
@media (min-width: 992px) {
  .minicart__item {
    max-height: 130px;
    display: flex;
  }
  .minicart__item:last-child {
    border: none;
  }
}
@media (max-width: 767px) {
  .minicart__item {
    max-height: none;
    margin: 0;
    padding: 10px 0;
    text-align: center;
  }
}
.minicart__link {
  align-items: center;
  color: #222;
  display: flex;
  list-style: none;
  padding: 0;
}
@media (max-width: 767px) {
  .minicart__link {
    display: block;
  }
}
.minicart__link:hover {
  text-decoration: none;
}
@media (min-width: 992px) {
  .minicart__info {
    margin-left: 2px;
  }
}
.minicart__image {
  align-items: center;
  display: flex;
  height: 65px;
  justify-content: center;
  margin: 0;
  min-width: 65px;
  width: 65px;
}
@media (max-width: 991px) {
  .minicart__image {
    height: 90px;
  }
}
@media (max-width: 767px) {
  .minicart__image {
    margin: 0 auto;
    max-width: 120px;
  }
}
.minicart__image img {
  max-height: 100%;
  max-width: 100%;
}
.minicart__details {
  align-items: center;
  display: flex;
}
@media (max-width: 991px) {
  .minicart__details {
    justify-content: center;
    margin: 10px 0 0;
  }
}
.minicart__name {
  color: #2e353b;
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 10px;
}
@media (min-width: 992px) {
  .minicart__name {
    height: 24px;
    overflow: hidden;
    max-width: 158px;
  }
}
@media (max-width: 991px) {
  .minicart__name {
    font-size: 13px;
  }
}
.minicart__price {
  color: #222;
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin: 0;
}
.minicart__qty {
  color: #878787;
  display: block;
  font-size: 10px;
  font-weight: bold;
  margin: 0;
  text-transform: none;
}
@media (max-width: 991px) {
  .minicart__qty {
    font-size: 12px;
    font-weight: 400;
  }
}
@media (max-width: 767px) {
  .minicart__qty {
    margin-top: 5px;
  }
}
.minicart__delete {
  align-items: center;
  background: #cc2020;
  border: none;
  border-radius: 50%;
  display: flex;
  height: 16px;
  justify-content: center;
  left: auto;
  padding: 0;
  position: absolute;
  text-transform: uppercase;
  right: 0;
  top: 10px;
  min-width: 16px;
  z-index: 100;
}
.minicart__delete:hover {
  background: $dark-gray;
}
.minicart__delete svg {
  fill: #fff;
  height: 6px;
  width: 6px;
}
@media (max-width: 991px) {
  .minicart__footer {
    padding-bottom: 50px;
  }
}
.minicart__total {
  display: block;
  margin: 16px 0;
  text-align: center;
}
.minicart__total-label,
.minicart__total-price {
  display: inline-block;
  line-height: 1;
}
.minicart__total-label {
  color: #878787;
  font-size: 14px;
  font-weight: 600;
}
.minicart__total-price {
  color: #222;
  font-size: 14px;
  font-weight: 600;
  margin-left: 5px;
  margin-left: 10px;
}
@media (max-width: 991px) {
  .minicart__total-price {
    font-size: 15px;
  }
}
.minicart__finish {
  align-items: center;
  background: #28b363;
  border: none;
  border-radius: 0;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  height: 44px;
  line-height: 1;
  justify-content: center;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 992px) {
  .minicart__finish:hover {
    background: #18a352;
    color: #fff;
  }
}
.minicart__empty {
  color: #222;
  font-size: 14px;
  font-weight: 500;
  padding: 20px;
  text-align: center;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .header__item.cart:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
  }
}
