/**
 * Override
 */
.offcanvas__inner {
  width: 100% !important;
}
img,
svg {
  vertical-align: unset;
}
label {
  display: block !important;
}
.label-fix {
  display: inline-block !important;
}

@media only screen and (min-width: 1200px) {
  .newsletter-d {
    width: 33%;
  }
}

.variant__size--value {
  float: left;
}
.swal2-checkbox {
  display: none !important;
}

/**
 * Snackbar
 */
#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 999999999;
  left: 50%;
  bottom: 80px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 80px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 80px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 80px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 80px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}


/**
 * Custom
 */
.old-address{
  background: #EEE;
  padding: 5px 20px;
  border-radius: 20px;
  cursor: grab;
  font-size: 13px;
  margin-top:5px;
  width: 100%;
}

.bg-purple{
  background: #673ab7;
}
.bg-green{
  background: #8bc34a;
}
.bg-red{
  background: #f44336;
}
.bg-yellow{
  background: #cddc39;
}
.bg-orange{
  background: #ff5722;
}

/***************** MOBILE ******************/
@media only screen and (max-width: 750px) {
  .m-m-20{
    margin-top: 20px !important;
  }
}