/* PX to REM */
/* Color */
/* Filter Color */
/* Wishlist */
/* Media Query */
/**
 * Media Querys
 *
 * Use : @media only screen and (max-width: mediaquery({key}))
 */
/**
 * Colors
 *
 * Use : color({key})
 */
/**
 * Filter Color
 *
 * Use : filterColor({key})
 */
/**
 * Wishlist
 *
 * Use : wishlist({key})
 */
.vb-brand--currently {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.vb-brand--currently .vb-brand--currently-item {
  margin: 0 0 1.5625rem;
  max-width: 18.125rem;
  position: relative;
  width: 25%;
}
.vb-brand--currently .vb-brand--currently-item .vb-brand--currently-item-video {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.vb-brand--currently .vb-brand--currently-item .vb-brand--currently-item-video::before {
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 3.125rem;
  width: 3.125rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.vb-brand--currently .vb-brand--currently-item .vb-brand--currently-item-video::after {
  border-style: solid;
  border-color: transparent transparent transparent #afcd01;
  border-width: 0.6875rem 0 0.6875rem 1.125rem;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  z-index: 2;
}
.vb-brand--currently .vb-brand--currently-item .vb-brand--currently-item-video:hover::before {
  transform: translate(-50%, -50%) scale(1.2);
}
.vb-brand--currently .vb-brand--currently-item .vb-brand--currently-item-video:active::before {
  transform: translate(-50%, -50%) scale(1);
}
.vb-brand--currently .vb-brand--currently-item .vb-brand--currently-item-video:active::after {
  transform: translate(-40%, -50%) scale(0.8);
}
.vb-brand--currently .vb-brand--currently-item img {
  height: auto;
  max-width: 100%;
}
.vb-brand--currently .vb-brand--currently-item p {
  color: #333333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  padding: 1.25rem;
}
.vb-brand--currently .vb-brand--currently-item p a,
.vb-brand--currently .vb-brand--currently-item p span {
  color: #333333;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: underline;
}
.vb-brand--currently .vb-brand--currently-item .vb-brand--currently-item-corner {
  font-size: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media only screen and (max-width: 80rem) {
  .vb-brand--currently {
    justify-content: space-around;
    margin: 0 auto;
    max-width: 38.75rem;
  }
  .vb-brand--currently .vb-brand--currently-item {
    margin: 0 0.625rem;
    width: calc(50% - 1.25rem);
  }
}
@media only screen and (max-width: 47.9375rem) {
  .vb-brand--currently {
    justify-content: space-around;
  }
  .vb-brand--currently h2 {
    margin: 2.5rem auto 1.25rem;
  }
  .vb-brand--currently .vb-brand--currently-item {
    margin: 0 0.625rem;
    width: calc(50% - 1.25rem);
  }
}
@media only screen and (max-width: 30rem) {
  .vb-brand--currently {
    justify-content: space-around;
  }
  .vb-brand--currently .vb-brand--currently-item {
    width: 100%;
  }
}

#vb-popin--video {
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
#vb-popin--video iframe {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}
#vb-popin--video .vb-popin--close {
  align-items: center;
  background: #afca0b;
  cursor: pointer;
  color: #fff;
  display: flex;
  font-size: 2.5rem;
  height: 2.75rem;
  justify-content: center;
  opacity: 0.75;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.2s;
  width: 2.75rem;
  z-index: 2;
}
#vb-popin--video .vb-popin--close:hover {
  opacity: 1;
}