/*!
 * # Semantic UI 2.3.1 - Transition
 * http://github.com/semantic-org/semantic-ui/
 *
 *
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 */
.transition {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animating.transition {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  visibility: visible !important; }

.loading.transition {
  position: absolute;
  top: -99999px;
  left: -99999px; }

.hidden.transition {
  display: none;
  visibility: hidden; }

.visible.transition {
  display: block !important;
  visibility: visible !important; }

.disabled.transition {
  -webkit-animation-play-state: paused;
  animation-play-state: paused; }

.looping.transition {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.transition.browse {
  -webkit-animation-duration: .5s;
  animation-duration: .5s; }

.transition.browse.in {
  -webkit-animation-name: browseIn;
  animation-name: browseIn; }

.transition.browse.left.out, .transition.browse.out {
  -webkit-animation-name: browseOutLeft;
  animation-name: browseOutLeft; }

.transition.browse.right.out {
  -webkit-animation-name: browseOutRight;
  animation-name: browseOutRight; }

@-webkit-keyframes browseIn {
  0% {
    -webkit-transform: scale(0.8) translateZ(0);
    transform: scale(0.8) translateZ(0);
    z-index: -1; }
  10% {
    -webkit-transform: scale(0.8) translateZ(0);
    transform: scale(0.8) translateZ(0);
    z-index: -1;
    opacity: .7; }
  80% {
    -webkit-transform: scale(1.05) translateZ(0);
    transform: scale(1.05) translateZ(0);
    opacity: 1;
    z-index: 999; }
  100% {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
    z-index: 999; } }

@keyframes browseIn {
  0% {
    -webkit-transform: scale(0.8) translateZ(0);
    transform: scale(0.8) translateZ(0);
    z-index: -1; }
  10% {
    -webkit-transform: scale(0.8) translateZ(0);
    transform: scale(0.8) translateZ(0);
    z-index: -1;
    opacity: .7; }
  80% {
    -webkit-transform: scale(1.05) translateZ(0);
    transform: scale(1.05) translateZ(0);
    opacity: 1;
    z-index: 999; }
  100% {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
    z-index: 999; } }

@-webkit-keyframes browseOutLeft {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0);
    transform: translateX(0) rotateY(0) rotateX(0); }
  50% {
    z-index: -1;
    -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
    transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); }
  80% {
    opacity: 1; }
  100% {
    z-index: -1;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    opacity: 0; } }

@keyframes browseOutLeft {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0);
    transform: translateX(0) rotateY(0) rotateX(0); }
  50% {
    z-index: -1;
    -webkit-transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
    transform: translateX(-105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); }
  80% {
    opacity: 1; }
  100% {
    z-index: -1;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    opacity: 0; } }

@-webkit-keyframes browseOutRight {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0);
    transform: translateX(0) rotateY(0) rotateX(0); }
  50% {
    z-index: 1;
    -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
    transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); }
  80% {
    opacity: 1; }
  100% {
    z-index: 1;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    opacity: 0; } }

@keyframes browseOutRight {
  0% {
    z-index: 999;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0);
    transform: translateX(0) rotateY(0) rotateX(0); }
  50% {
    z-index: 1;
    -webkit-transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px);
    transform: translateX(105%) rotateY(35deg) rotateX(10deg) translateZ(-10px); }
  80% {
    opacity: 1; }
  100% {
    z-index: 1;
    -webkit-transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    transform: translateX(0) rotateY(0) rotateX(0) translateZ(-10px);
    opacity: 0; } }

.drop.transition {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-duration: .4s;
  animation-duration: .4s;
  -webkit-animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1);
  animation-timing-function: cubic-bezier(0.34, 1.61, 0.7, 1); }

.drop.transition.in {
  -webkit-animation-name: dropIn;
  animation-name: dropIn; }

.drop.transition.out {
  -webkit-animation-name: dropOut;
  animation-name: dropOut; }

@-webkit-keyframes dropIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes dropIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes dropOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); } }

@keyframes dropOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0); } }

.transition.fade.in {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

.transition[class*="fade up"].in {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

.transition[class*="fade down"].in {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

.transition[class*="fade left"].in {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

.transition[class*="fade right"].in {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

.transition.fade.out {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

.transition[class*="fade up"].out {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

.transition[class*="fade down"].out {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

.transition[class*="fade left"].out {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

.transition[class*="fade right"].out {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
    transform: translateX(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
    transform: translateX(10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(5%);
    transform: translateY(5%); } }

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(5%);
    transform: translateY(5%); } }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%); } }

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%); } }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(5%);
    transform: translateX(5%); } }

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(5%);
    transform: translateX(5%); } }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%); } }

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%); } }

.flip.transition.in, .flip.transition.out {
  -webkit-animation-duration: .6s;
  animation-duration: .6s; }

.horizontal.flip.transition.in {
  -webkit-animation-name: horizontalFlipIn;
  animation-name: horizontalFlipIn; }

.horizontal.flip.transition.out {
  -webkit-animation-name: horizontalFlipOut;
  animation-name: horizontalFlipOut; }

.vertical.flip.transition.in {
  -webkit-animation-name: verticalFlipIn;
  animation-name: verticalFlipIn; }

.vertical.flip.transition.out {
  -webkit-animation-name: verticalFlipOut;
  animation-name: verticalFlipOut; }

@-webkit-keyframes horizontalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-90deg);
    transform: perspective(2000px) rotateY(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
    opacity: 1; } }

@keyframes horizontalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-90deg);
    transform: perspective(2000px) rotateY(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
    opacity: 1; } }

@-webkit-keyframes verticalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(2000px) rotateX(0);
    transform: perspective(2000px) rotateX(0);
    opacity: 1; } }

@keyframes verticalFlipIn {
  0% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0; }
  100% {
    -webkit-transform: perspective(2000px) rotateX(0);
    transform: perspective(2000px) rotateX(0);
    opacity: 1; } }

@-webkit-keyframes horizontalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
    opacity: 0; } }

@keyframes horizontalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
    opacity: 0; } }

@-webkit-keyframes verticalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateX(0);
    transform: perspective(2000px) rotateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0; } }

@keyframes verticalFlipOut {
  0% {
    -webkit-transform: perspective(2000px) rotateX(0);
    transform: perspective(2000px) rotateX(0);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0; } }

.scale.transition.in {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn; }

.scale.transition.out {
  -webkit-animation-name: scaleOut;
  animation-name: scaleOut; }

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes scaleOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9); } }

@keyframes scaleOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9); } }

.transition.fly {
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.transition.fly.in {
  -webkit-animation-name: flyIn;
  animation-name: flyIn; }

.transition[class*="fly up"].in {
  -webkit-animation-name: flyInUp;
  animation-name: flyInUp; }

.transition[class*="fly down"].in {
  -webkit-animation-name: flyInDown;
  animation-name: flyInDown; }

.transition[class*="fly left"].in {
  -webkit-animation-name: flyInLeft;
  animation-name: flyInLeft; }

.transition[class*="fly right"].in {
  -webkit-animation-name: flyInRight;
  animation-name: flyInRight; }

.transition.fly.out {
  -webkit-animation-name: flyOut;
  animation-name: flyOut; }

.transition[class*="fly up"].out {
  -webkit-animation-name: flyOutUp;
  animation-name: flyOutUp; }

.transition[class*="fly down"].out {
  -webkit-animation-name: flyOutDown;
  animation-name: flyOutDown; }

.transition[class*="fly left"].out {
  -webkit-animation-name: flyOutLeft;
  animation-name: flyOutLeft; }

.transition[class*="fly right"].out {
  -webkit-animation-name: flyOutRight;
  animation-name: flyOutRight; }

@-webkit-keyframes flyIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes flyIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@-webkit-keyframes flyInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 1500px, 0);
    transform: translate3d(0, 1500px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes flyInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 1500px, 0);
    transform: translate3d(0, 1500px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@-webkit-keyframes flyInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -1500px, 0);
    transform: translate3d(0, -1500px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes flyInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -1500px, 0);
    transform: translate3d(0, -1500px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@-webkit-keyframes flyInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(1500px, 0, 0);
    transform: translate3d(1500px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes flyInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(1500px, 0, 0);
    transform: translate3d(1500px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@-webkit-keyframes flyInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-1500px, 0, 0);
    transform: translate3d(-1500px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@keyframes flyInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-1500px, 0, 0);
    transform: translate3d(-1500px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  100% {
    -webkit-transform: none;
    transform: none; } }

@-webkit-keyframes flyOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes flyOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@-webkit-keyframes flyOutUp {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes flyOutUp {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@-webkit-keyframes flyOutDown {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes flyOutDown {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@-webkit-keyframes flyOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes flyOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@-webkit-keyframes flyOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes flyOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

.transition.slide.in, .transition[class*="slide down"].in {
  -webkit-animation-name: slideInY;
  animation-name: slideInY;
  -webkit-transform-origin: top center;
  transform-origin: top center; }

.transition[class*="slide up"].in {
  -webkit-animation-name: slideInY;
  animation-name: slideInY;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center; }

.transition[class*="slide left"].in {
  -webkit-animation-name: slideInX;
  animation-name: slideInX;
  -webkit-transform-origin: center right;
  transform-origin: center right; }

.transition[class*="slide right"].in {
  -webkit-animation-name: slideInX;
  animation-name: slideInX;
  -webkit-transform-origin: center left;
  transform-origin: center left; }

.transition.slide.out, .transition[class*="slide down"].out {
  -webkit-animation-name: slideOutY;
  animation-name: slideOutY;
  -webkit-transform-origin: top center;
  transform-origin: top center; }

.transition[class*="slide up"].out {
  -webkit-animation-name: slideOutY;
  animation-name: slideOutY;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center; }

.transition[class*="slide left"].out {
  -webkit-animation-name: slideOutX;
  animation-name: slideOutX;
  -webkit-transform-origin: center right;
  transform-origin: center right; }

.transition[class*="slide right"].out {
  -webkit-animation-name: slideOutX;
  animation-name: slideOutX;
  -webkit-transform-origin: center left;
  transform-origin: center left; }

@-webkit-keyframes slideInY {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1); } }

@keyframes slideInY {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1); } }

@-webkit-keyframes slideInX {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }

@keyframes slideInX {
  0% {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0); }
  100% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1); } }

@-webkit-keyframes slideOutY {
  0% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1); }
  100% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0); } }

@keyframes slideOutY {
  0% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1); }
  100% {
    opacity: 0;
    -webkit-transform: scaleY(0);
    transform: scaleY(0); } }

@-webkit-keyframes slideOutX {
  0% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }
  100% {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0); } }

@keyframes slideOutX {
  0% {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }
  100% {
    opacity: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0); } }

.transition.swing {
  -webkit-animation-duration: .8s;
  animation-duration: .8s; }

.transition[class*="swing down"].in {
  -webkit-animation-name: swingInX;
  animation-name: swingInX;
  -webkit-transform-origin: top center;
  transform-origin: top center; }

.transition[class*="swing up"].in {
  -webkit-animation-name: swingInX;
  animation-name: swingInX;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center; }

.transition[class*="swing left"].in {
  -webkit-animation-name: swingInY;
  animation-name: swingInY;
  -webkit-transform-origin: center right;
  transform-origin: center right; }

.transition[class*="swing right"].in {
  -webkit-animation-name: swingInY;
  animation-name: swingInY;
  -webkit-transform-origin: center left;
  transform-origin: center left; }

.transition.swing.out, .transition[class*="swing down"].out {
  -webkit-animation-name: swingOutX;
  animation-name: swingOutX;
  -webkit-transform-origin: top center;
  transform-origin: top center; }

.transition[class*="swing up"].out {
  -webkit-animation-name: swingOutX;
  animation-name: swingOutX;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center; }

.transition[class*="swing left"].out {
  -webkit-animation-name: swingOutY;
  animation-name: swingOutY;
  -webkit-transform-origin: center right;
  transform-origin: center right; }

.transition[class*="swing right"].out {
  -webkit-animation-name: swingOutY;
  animation-name: swingOutY;
  -webkit-transform-origin: center left;
  transform-origin: center left; }

@-webkit-keyframes swingInX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
    transform: perspective(1000px) rotateX(-30deg);
    opacity: 1; }
  60% {
    -webkit-transform: perspective(1000px) rotateX(15deg);
    transform: perspective(1000px) rotateX(15deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
    transform: perspective(1000px) rotateX(-7.5deg); }
  100% {
    -webkit-transform: perspective(1000px) rotateX(0);
    transform: perspective(1000px) rotateX(0); } }

@keyframes swingInX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
    transform: perspective(1000px) rotateX(-30deg);
    opacity: 1; }
  60% {
    -webkit-transform: perspective(1000px) rotateX(15deg);
    transform: perspective(1000px) rotateX(15deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
    transform: perspective(1000px) rotateX(-7.5deg); }
  100% {
    -webkit-transform: perspective(1000px) rotateX(0);
    transform: perspective(1000px) rotateX(0); } }

@-webkit-keyframes swingInY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
    transform: perspective(1000px) rotateY(30deg);
    opacity: 1; }
  60% {
    -webkit-transform: perspective(1000px) rotateY(-17.5deg);
    transform: perspective(1000px) rotateY(-17.5deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
    transform: perspective(1000px) rotateY(7.5deg); }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0);
    transform: perspective(1000px) rotateY(0); } }

@keyframes swingInY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0; }
  40% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
    transform: perspective(1000px) rotateY(30deg);
    opacity: 1; }
  60% {
    -webkit-transform: perspective(1000px) rotateY(-17.5deg);
    transform: perspective(1000px) rotateY(-17.5deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
    transform: perspective(1000px) rotateY(7.5deg); }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0);
    transform: perspective(1000px) rotateY(0); } }

@-webkit-keyframes swingOutX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0);
    transform: perspective(1000px) rotateX(0); }
  40% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
    transform: perspective(1000px) rotateX(-7.5deg); }
  60% {
    -webkit-transform: perspective(1000px) rotateX(17.5deg);
    transform: perspective(1000px) rotateX(17.5deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
    transform: perspective(1000px) rotateX(-30deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; } }

@keyframes swingOutX {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0);
    transform: perspective(1000px) rotateX(0); }
  40% {
    -webkit-transform: perspective(1000px) rotateX(-7.5deg);
    transform: perspective(1000px) rotateX(-7.5deg); }
  60% {
    -webkit-transform: perspective(1000px) rotateX(17.5deg);
    transform: perspective(1000px) rotateX(17.5deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateX(-30deg);
    transform: perspective(1000px) rotateX(-30deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; } }

@-webkit-keyframes swingOutY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0);
    transform: perspective(1000px) rotateY(0); }
  40% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
    transform: perspective(1000px) rotateY(7.5deg); }
  60% {
    -webkit-transform: perspective(1000px) rotateY(-10deg);
    transform: perspective(1000px) rotateY(-10deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
    transform: perspective(1000px) rotateY(30deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0; } }

@keyframes swingOutY {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0);
    transform: perspective(1000px) rotateY(0); }
  40% {
    -webkit-transform: perspective(1000px) rotateY(7.5deg);
    transform: perspective(1000px) rotateY(7.5deg); }
  60% {
    -webkit-transform: perspective(1000px) rotateY(-10deg);
    transform: perspective(1000px) rotateY(-10deg); }
  80% {
    -webkit-transform: perspective(1000px) rotateY(30deg);
    transform: perspective(1000px) rotateY(30deg);
    opacity: 1; }
  100% {
    -webkit-transform: perspective(1000px) rotateY(-90deg);
    transform: perspective(1000px) rotateY(-90deg);
    opacity: 0; } }

.transition.zoom.in {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn; }

.transition.zoom.out {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut; }

@-webkit-keyframes zoomIn {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes zoomIn {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0); }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); } }

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0); } }

@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1); }
  100% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0); } }

.flash.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: flash;
  animation-name: flash; }

.shake.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: shake;
  animation-name: shake; }

.bounce.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: bounce;
  animation-name: bounce; }

.tada.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: tada;
  animation-name: tada; }

.pulse.transition {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-name: pulse;
  animation-name: pulse; }

.jiggle.transition {
  -webkit-animation-duration: 750ms;
  animation-duration: 750ms;
  -webkit-animation-name: jiggle;
  animation-name: jiggle; }

.transition.glow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.transition.glow {
  -webkit-animation-name: glow;
  animation-name: glow; }

@-webkit-keyframes flash {
  0%, 100%, 50% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  0%, 100%, 50% {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); } }

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px); } }

@-webkit-keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }

@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px); }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); } }

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg); }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0); } }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: .7; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: .7; }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; } }

@-webkit-keyframes jiggle {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes jiggle {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@-webkit-keyframes glow {
  0% {
    background-color: #fcfcfd; }
  30% {
    background-color: #fff6cd; }
  100% {
    background-color: #fcfcfd; } }

@keyframes glow {
  0% {
    background-color: #fcfcfd; }
  30% {
    background-color: #fff6cd; }
  100% {
    background-color: #fcfcfd; } }

#wishlist-dropdown.is-open {
  width: auto !important; }

.product-dimensions {
  border-top: 1px solid #e3e3e3;
  padding-top: 24px;
  margin-top: 30px; }
  .product-dimensions p.strong {
    margin-bottom: 6px;
    display: block; }

.single-product {
  border-top: 1px solid #e0e0e0;
  padding-top: 30px; }
  .single-product .productView {
    padding: 0;
    margin: 0; }
  .single-product .breadcrumbs {
    padding: 24px 0;
    text-align: center;
    line-height: 15px; }
  .single-product .productDetails {
    display: flex;
    flex-direction: column; }
    .single-product .productDetails .productView-info-value {
      letter-spacing: 1px;
      float: none;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 20px;
      padding-bottom: 3px;
      margin-bottom: 6px;
      display: inline-block;
      font-weight: bold; }
    .single-product .productDetails .left-side {
      width: 100%;
      max-width: 100%;
      min-width: 100%;
      margin-right: 0%;
      position: relative; }
      .single-product .productDetails .left-side .change-image {
        position: absolute;
        width: 48px;
        height: 48px;
        z-index: 9999;
        background: rgba(255, 255, 255, 0.33);
        top: 0;
        bottom: 150px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 42px;
        line-height: 42px; }
        .single-product .productDetails .left-side .change-image.prev-image {
          left: 0; }
        .single-product .productDetails .left-side .change-image.next-image {
          right: 0; }
        .single-product .productDetails .left-side .change-image svg {
          width: 100%;
          height: 100%;
          display: flex;
          fill: #2C3E50; }
    .single-product .productDetails .right-side {
      width: 100%;
      max-width: 100%;
      min-width: 100%;
      text-align: center; }
    @media (min-width: 769px) {
      .single-product .productDetails {
        flex-direction: row;
        align-items: flex-start; }
        .single-product .productDetails .left-side {
          width: 35%;
          max-width: 35%;
          min-width: 35%;
          margin-right: 3%; }
        .single-product .productDetails .right-side {
          width: 60%;
          max-width: 60%;
          min-width: 60%;
          text-align: initial; } }
    @media (min-width: 1025px) {
      .single-product .productDetails {
        flex-direction: row;
        align-items: flex-start; }
        .single-product .productDetails .productView-info-value {
          float: left; }
        .single-product .productDetails .left-side {
          width: 40%;
          max-width: 40%;
          min-width: 40%;
          margin-right: 3%; }
        .single-product .productDetails .right-side {
          width: 55%;
          max-width: 55%;
          min-width: 55%;
          text-align: initial; } }
    @media (min-width: 1281px) {
      .single-product .productDetails {
        flex-direction: row; }
        .single-product .productDetails .left-side {
          width: 40%;
          max-width: 40%;
          min-width: 40%;
          margin-right: 3%; }
        .single-product .productDetails .right-side {
          width: 56%;
          max-width: 56%;
          min-width: 56%; } }
    @media (min-width: 1441px) {
      .single-product .productDetails {
        flex-direction: row; }
        .single-product .productDetails .left-side {
          width: 45%;
          max-width: 45%;
          min-width: 45%;
          margin-right: 5%; }
        .single-product .productDetails .right-side {
          width: 50%;
          max-width: 50%;
          min-width: 50%; } }
  .single-product .product-title {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 31px;
    margin-top: 12px;
    clear: both;
    display: block; }
  .single-product .product-description .expand-product-description {
    border: 1px solid #d9d9d9;
    padding: 4px 12px 6px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    display: inline-flex;
    font-weight: bold; }
    .single-product .product-description .expand-product-description:after {
      display: inline-block;
      padding-left: 6px;
      content: "\25BD";
      text-decoration: none; }
    .single-product .product-description .expand-product-description.opened:after {
      display: inline-block;
      padding-left: 6px;
      content: "\25B3"; }
  .single-product .product-description .cont-block ul {
    list-style-type: disc;
    margin-left: 24px; }
    .single-product .product-description .cont-block ul li {
      list-style-type: disc;
      margin-bottom: 6px;
      color: #666; }
  .single-product .product-description > .description p {
    margin: 0; }
    .single-product .product-description > .description p img {
      display: none; }
  .single-product .product-description #specialItemInfo {
    display: none; }
    .single-product .product-description #specialItemInfo ul li.spec-img {
      width: 25%;
      float: left; }
      .single-product .product-description #specialItemInfo ul li.spec-img img {
        width: 100%;
        height: auto;
        vertical-align: bottom; }
    .single-product .product-description #specialItemInfo ul li.spec-text {
      width: 72%;
      float: right; }
    .single-product .product-description #specialItemInfo ul li.line-sep {
      display: block;
      width: 100%;
      clear: both;
      padding: 6px 0 9px; }
      .single-product .product-description #specialItemInfo ul li.line-sep:last-of-type hr {
        display: none; }
  .single-product .product-description .description ul {
    margin-bottom: 1rem; }
    .single-product .product-description .description ul li {
      list-style-type: disc;
      list-style-position: inside; }
      .single-product .product-description .description ul li ul {
        margin-bottom: 0; }
      .single-product .product-description .description ul li li {
        list-style-type: circle;
        list-style-position: inside; }
      .single-product .product-description .description ul li a {
        text-decoration: underline; }
        .single-product .product-description .description ul li a:hover {
          text-decoration: none; }
  .single-product .product-description .description h4 {
    font-size: 15px;
    margin: 0 0 15px 0;
    line-height: 22px; }
  .single-product .native-options {
    display: none; }
    .single-product .native-options#input_upload_song {
      display: block; }
    .single-product .native-options#input_video_upload_option {
      display: block;
      width: 100%;
      margin-top: 12px; }
    .single-product .native-options.show {
      display: block; }
  .single-product .reviews-social {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
    padding: 18px 0;
    border-bottom: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0; }
    .single-product .reviews-social .reviews {
      margin-right: 0;
      width: auto;
      max-width: 200px;
      flex-grow: 0;
      position: relative; }
      .single-product .reviews-social .reviews iframe {
        left: -18px; }
      .single-product .reviews-social .reviews:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9;
        display: block;
        background: rgba(0, 0, 0, 0);
        content: ""; }
    .single-product .reviews-social .social {
      margin-left: 0; }
      .single-product .reviews-social .social .at-icon-wrapper span.at-icon-wrapper {
        width: 13px !important;
        height: 13px !important;
        line-height: 13px !important; }
        .single-product .reviews-social .social .at-icon-wrapper span.at-icon-wrapper svg {
          width: 14px !important;
          height: 14px !important;
          line-height: 14px !important; }
      .single-product .reviews-social .social .at-style-responsive .at-share-btn {
        padding: 3px;
        margin-bottom: 0; }
    .single-product .reviews-social .ship {
      padding: 9px 0;
      margin-top: 3px; }
      .single-product .reviews-social .ship img {
        height: 18px;
        width: auto;
        display: block;
        margin-left: 0px; }
    @media (min-width: 1025px) {
      .single-product .reviews-social {
        height: 20px;
        justify-content: flex-start;
        padding: 0;
        border-bottom: 0px solid #e0e0e0;
        border-top: 0px solid #e0e0e0;
        margin-top: 12px;
        margin-bottom: 15px;
        flex-wrap: initial; }
        .single-product .reviews-social .reviews {
          margin-right: 0px; }
        .single-product .reviews-social .ship {
          padding: 0; }
          .single-product .reviews-social .ship img {
            margin-left: 36px; } }
  .single-product .price-section {
    display: flex; }
    .single-product .price-section.price-section--withoutTax {
      display: inline-block;
      vertical-align: middle; }
      .single-product .price-section.price-section--withoutTax.rrp-price--withoutTax span {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 20px;
        line-height: 16px;
        vertical-align: bottom; }
    .single-product .price-section.price-section--saving {
      display: block;
      margin-top: 6px; }
    .single-product .price-section .price.price--withoutTax {
      font-weight: 800; }
  .single-product .productView-img-container {
    max-width: 100%;
    height: 360px; }
    .single-product .productView-img-container:after {
      padding-bottom: 84%; }
    @media (min-width: 481px) {
      .single-product .productView-img-container {
        height: auto; } }
    @media (min-width: 1025px) {
      .single-product .productView-img-container:after {
        padding-bottom: 82%; } }
    @media (min-width: 1281px) {
      .single-product .productView-img-container:after {
        padding-bottom: 82%; } }
  .single-product .atc-row {
    display: flex;
    justify-content: center; }
    .single-product .atc-row .form-action {
      flex-grow: 1;
      width: auto; }
      .single-product .atc-row .form-action .sq-btn {
        width: 100%; }
    .single-product .atc-row .form-input--incrementTotal {
      border: 1px solid #d9d9d9;
      height: 48px;
      width: 48px;
      font-size: 13px;
      border-radius: 5px 0 0 5px; }
    .single-product .atc-row .sq-btn {
      border-radius: 0px 5px 5px 0px;
      border: 1px solid #2C3E50;
      text-transform: lowercase;
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 24px;
      display: flex;
      padding: 10px 24px 12px; }
      .single-product .atc-row .sq-btn svg {
        width: 20px;
        fill: #fff;
        height: 20px;
        display: block;
        margin-right: 12px; }
      .single-product .atc-row .sq-btn:disabled {
        opacity: .25; }
    @media (min-width: 1025px) {
      .single-product .atc-row .form-action {
        flex-grow: 0;
        width: auto; } }
  .single-product .conversion-modal-trigger {
    display: flex;
    align-items: center;
    color: #666; }
    .single-product .conversion-modal-trigger:hover {
      color: #2C3E50; }
    .single-product .conversion-modal-trigger svg {
      width: 14px;
      height: 14px;
      margin-left: 6px;
      display: block; }
  @media (min-width: 769px) {
    .single-product {
      padding-top: 0; } }
  @media (min-width: 1025px) {
    .single-product {
      border-top: 0px solid #e0e0e0; }
      .single-product .breadcrumbs {
        text-align: initial; } }

.productView-img-container {
  position: relative;
  z-index: 9; }

.productView .productView-thumbnails .productView-thumbnail.active a {
  border: 1px solid #333; }

.productView-image .easyzoom-flyout {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 999; }
  .productView-image .easyzoom-flyout img {
    max-width: none;
    width: auto; }

.productView-price {
  text-align: center;
  font-size: 24px;
  margin-bottom: 18px; }
  .productView-price .price-section--saving {
    font-size: 14px; }
  @media (min-width: 1025px) {
    .productView-price {
      text-align: initial;
      font-size: 30px;
      margin-bottom: 18px; } }

.product-music-options-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #f1f1f1;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px; }
  .product-music-options-switcher a {
    color: #2C3E50;
    opacity: .5;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
    font-weight: 600;
    position: relative;
    top: 0px;
    padding: 12px 0;
    vertical-align: bottom;
    text-align: center;
    width: 100%; }
    .product-music-options-switcher a.active {
      opacity: 1;
      background: #2C3E50;
      color: #fff; }
      .product-music-options-switcher a.active .tooltip .icon svg {
        stroke: #fff; }
    .product-music-options-switcher a .tooltip {
      position: absolute;
      top: 0;
      right: 0px;
      width: 20px;
      height: 20px;
      display: block; }
      .product-music-options-switcher a .tooltip .icon {
        display: block;
        width: 20px;
        height: 20px; }
  @media (min-width: 1025px) {
    .product-music-options-switcher {
      border: 0px solid #2C3E50;
      flex-direction: row;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0); }
      .product-music-options-switcher a {
        padding: 0;
        top: -2px;
        padding-right: 20px;
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 24px;
        width: auto; }
        .product-music-options-switcher a.active {
          background: #fff;
          color: #333;
          color: initial; } }

.music-options-toggle {
  border: 1px solid #2C3E50;
  border-radius: 25px;
  width: 72px;
  min-width: 72px;
  height: 30px;
  display: none;
  position: relative;
  margin-left: 18px;
  margin-right: 18px; }
  .music-options-toggle .toggler {
    width: 24px;
    height: 24px;
    max-width: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: #2C3E50;
    top: 0;
    display: block;
    position: absolute;
    transition: all .2s ease-in;
    bottom: 0;
    margin: auto;
    left: 0%; }
    .music-options-toggle .toggler.left {
      left: 3px;
      transition: all .2s ease-in; }
    .music-options-toggle .toggler.right {
      left: calc(100% - 27px);
      transition: all .2s ease-in; }
  @media (min-width: 1025px) {
    .music-options-toggle {
      display: block; } }

.product-music-options {
  margin-top: 30px;
  display: block; }
  .product-music-options .all-product-options {
    display: block;
    clear: both; }
    .product-music-options .all-product-options .native-options {
      width: 100%; }
      .product-music-options .all-product-options .native-options .form-field {
        margin-bottom: 0;
        margin-top: 18px; }
    @media (min-width: 769px) {
      .product-music-options .all-product-options {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between; }
        .product-music-options .all-product-options .native-options {
          width: 48%; }
          .product-music-options .all-product-options .native-options#input_upload_song {
            width: 100%; } }
  .product-music-options .song-conversion-option {
    display: none; }
    .product-music-options .song-conversion-option.active {
      display: block; }
  .product-music-options .music-selection-options {
    margin-top: 36px; }
    .product-music-options .music-selection-options .productView-options {
      margin-bottom: 0; }
    .product-music-options .music-selection-options .music-selection {
      background: #fff;
      width: 100%;
      display: none; }
      .product-music-options .music-selection-options .music-selection .temp-text {
        padding: 12px;
        display: block; }
      .product-music-options .music-selection-options .music-selection.traditional-options {
        padding: 0px; }
      .product-music-options .music-selection-options .music-selection.active {
        display: block; }
    .product-music-options .music-selection-options .title-row {
      display: block;
      align-items: center;
      margin-bottom: 6px;
      text-align: center; }
      .product-music-options .music-selection-options .title-row h3 {
        font-size: 16px;
        margin-right: auto;
        line-height: 20px; }
      .product-music-options .music-selection-options .title-row .play-music {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 12px;
        margin-bottom: 6px; }
        .product-music-options .music-selection-options .title-row .play-music svg {
          margin-right: 6px; }
    @media (min-width: 769px) {
      .product-music-options .music-selection-options {
        margin-top: 18px; }
        .product-music-options .music-selection-options .title-row {
          display: flex; }
          .product-music-options .music-selection-options .title-row .play-music {
            margin-top: 0; } }
  .product-music-options .custom-music-option-controls {
    display: flex;
    margin: 12px 0 0;
    justify-content: space-between;
    flex-direction: column; }
    .product-music-options .custom-music-option-controls select {
      max-width: 100%; }
    @media (min-width: 1025px) {
      .product-music-options .custom-music-option-controls {
        flex-direction: row; }
        .product-music-options .custom-music-option-controls select {
          max-width: 49%; }
          .product-music-options .custom-music-option-controls select:first-child {
            border-right: 1px solid #e0e0e0; } }
  .product-music-options .show-w-download {
    display: none; }
    .product-music-options .show-w-download p {
      color: #666; }
    .product-music-options .show-w-download.active {
      display: block; }
  .product-music-options .custom-music-upload {
    display: none;
    border: 1px solid #e8e8e8; }
    .product-music-options .custom-music-upload .clear-upload-input {
      position: absolute;
      width: 20px;
      height: 20px;
      display: none;
      top: 0;
      bottom: 0;
      z-index: 120;
      margin: auto;
      right: 30px; }
      .product-music-options .custom-music-upload .clear-upload-input svg {
        width: 100%;
        height: 100%; }
      .product-music-options .custom-music-upload .clear-upload-input.active {
        display: block; }
    .product-music-options .custom-music-upload.active {
      display: block; }
  .product-music-options .custom-music-manual-submit {
    display: block;
    background: #fff;
    margin-top: 0px;
    display: none; }
    .product-music-options .custom-music-manual-submit.active {
      display: block; }
    .product-music-options .custom-music-manual-submit input.custom-music-input {
      display: block;
      width: 100%;
      padding: 0px 18px;
      background: #fff;
      border: 1px solid #d9d9d9;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
      height: 42px;
      border-radius: 4px;
      margin-bottom: 12px;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 20px;
      color: rgba(0, 0, 0, 0.87);
      text-transform: capitalize;
      font-weight: 500; }
      .product-music-options .custom-music-manual-submit input.custom-music-input:last-child {
        margin-bottom: 0; }
      .product-music-options .custom-music-manual-submit input.custom-music-input::placeholder {
        color: #909090; }
      .product-music-options .custom-music-manual-submit input.custom-music-input:hover {
        border: 1px solid rgba(34, 36, 38, 0.35); }
      .product-music-options .custom-music-manual-submit input.custom-music-input:active {
        border: 1px solid rgba(34, 36, 38, 0.35); }

.option-action-buttons {
  margin-top: 24px;
  display: block;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 24px;
  width: 100%;
  clear: both; }
  .option-action-buttons a.option-action {
    border: 3px solid #2C3E50;
    border-radius: 5px;
    width: 100%;
    padding: 9px 0px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
    font-weight: 800;
    color: #2C3E50;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 0px;
    margin-bottom: 18px; }
    .option-action-buttons a.option-action .icon {
      display: none;
      width: 24px;
      height: 24px;
      text-align: center; }
      .option-action-buttons a.option-action .icon.active {
        display: block;
        margin-right: 3px; }
      .option-action-buttons a.option-action .icon.success svg {
        fill: #2C3E50;
        stroke: #2C3E50; }
      .option-action-buttons a.option-action .icon svg {
        display: block;
        width: 24px;
        height: 24px; }
    .option-action-buttons a.option-action.filled {
      background: #2C3E50;
      color: #fff; }
  .option-action-buttons a.giftwrap-options-show .icon.success svg {
    fill: #fff;
    stroke: #fff; }
  @media (min-width: 481px) {
    .option-action-buttons a.option-action {
      width: auto;
      padding: 9px 18px; } }
  @media (min-width: 1025px) {
    .option-action-buttons {
      display: flex;
      justify-content: center; }
      .option-action-buttons a.option-action {
        margin-right: 12px;
        margin-bottom: 0;
        padding: 9px 18px;
        width: auto; } }

.add-to-cart-options {
  margin-top: 24px; }

.wishlist-option {
  position: relative;
  width: 200px; }
  .wishlist-option .button {
    text-transform: lowercase;
    font-weight: 500; }
    .wishlist-option .button svg {
      width: 14px;
      height: 14px;
      display: block; }
    .wishlist-option .button:hover {
      top: 0; }
  .wishlist-option span {
    display: block;
    padding-right: 12px; }

.engraving-options-section {
  position: relative;
  z-index: 1;
  padding: 90px 0 90px;
  background: #F8F8FB;
  margin-bottom: 50px; }
  .engraving-options-section:before {
    z-index: 2;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 470px;
    background: #F8F8FB; }
  .engraving-options-section .container {
    position: relative;
    z-index: 3; }
  .engraving-options-section .engraving-options {
    margin-top: 60px; }
    .engraving-options-section .engraving-options .option {
      text-align: center;
      margin-bottom: 42px; }
      .engraving-options-section .engraving-options .option img {
        width: 100%;
        height: 300px;
        object-fit: contain;
        font-family: 'object-fit: contain;';
        margin: 0 auto 0px; }
    .engraving-options-section .engraving-options .title {
      position: relative;
      font-size: 20px;
      font-size: 2rem;
      line-height: 26px;
      text-align: center;
      font-weight: 600;
      width: auto;
      display: inline-block;
      padding: 0 12px;
      margin: 15px 0 6px; }
      .engraving-options-section .engraving-options .title h3 {
        text-transform: lowercase; }
      .engraving-options-section .engraving-options .title .tooltip {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        right: 0px; }
        .engraving-options-section .engraving-options .title .tooltip .icon {
          width: 12px;
          height: 12px;
          position: absolute;
          top: 0;
          right: 0; }
        .engraving-options-section .engraving-options .title .tooltip .tooltip-text {
          position: absolute;
          bottom: 100%;
          left: 0%;
          right: 0%;
          margin: auto;
          width: 220px;
          height: 90px;
          border-radius: 3px;
          background: #fff;
          box-shadow: 0 3px 9px rgba(0, 0, 0, 0.06);
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 18px;
          padding: 9px 9px;
          display: none; }
        .engraving-options-section .engraving-options .title .tooltip:hover .tooltip-text {
          display: block; }
    .engraving-options-section .engraving-options .text {
      margin-bottom: 6px;
      display: block; }
    .engraving-options-section .engraving-options .price {
      border: 1px solid #2C3E50;
      padding: 6px 15px 8px;
      display: inline-block;
      color: #2C3E50;
      text-align: center;
      margin-top: 12px;
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 24px;
      letter-spacing: .5px;
      font-weight: bold; }
  @media (min-width: 769px) {
    .engraving-options-section .engraving-options .title .tooltip .tooltip-text {
      left: 100%;
      right: auto; } }
  @media (min-width: 1025px) {
    .engraving-options-section {
      background: #fff; } }
  @media (min-width: 1281px) {
    .engraving-options-section .engraving-option .option {
      margin-bottom: 0; } }
  @media (min-width: 1025px) {
    .engraving-options-section {
      margin: 0; } }

.flatrate-pricing-section .flat-rate-images {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 75%;
  margin: 0 auto;
  position: relative;
  height: 120px;
  overflow: hidden; }
  .flatrate-pricing-section .flat-rate-images .image {
    position: absolute;
    width: 40%;
    max-width: 40%;
    min-width: 40%;
    margin: 0 0px;
    bottom: 0; }
    .flatrate-pricing-section .flat-rate-images .image img {
      width: 100%;
      margin: 0 auto; }
    .flatrate-pricing-section .flat-rate-images .image.left-image {
      left: 0;
      margin: auto;
      z-index: 2; }
    .flatrate-pricing-section .flat-rate-images .image.right-image {
      right: 0;
      margin: auto;
      z-index: 2; }
    .flatrate-pricing-section .flat-rate-images .image.center-image {
      left: 0;
      right: 0;
      margin: auto;
      width: 33%;
      bottom: 0;
      max-width: 33%;
      min-width: 33%;
      z-index: 3; }

@media (min-width: 769px) {
  .flatrate-pricing-section .flat-rate-images {
    height: 240px; } }

@media (min-width: 1281px) {
  .flatrate-pricing-section .flat-rate-images {
    height: 400px; } }

.customer-special-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 24px; }
  .customer-special-actions .wishlist-option {
    margin: 0 30px;
    width: auto; }
    .customer-special-actions .wishlist-option .dropdown-menu-button.button {
      margin-bottom: 0;
      border: 0;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 21px;
      border-radius: 0;
      padding-left: 12px;
      padding-right: 12px; }
      .customer-special-actions .wishlist-option .dropdown-menu-button.button.is-open {
        border-bottom: 1px solid rgba(44, 62, 80, 0.2); }
      .customer-special-actions .wishlist-option .dropdown-menu-button.button svg {
        width: 13px;
        height: 13px;
        stroke: #333; }
    .customer-special-actions .wishlist-option .dropdown-menu {
      min-width: 190px;
      border: 0 !important;
      padding: 0 !important;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
      background: #fff; }
      .customer-special-actions .wishlist-option .dropdown-menu li {
        text-align: left;
        border: 0; }
        .customer-special-actions .wishlist-option .dropdown-menu li > .button {
          border: 0; }
        .customer-special-actions .wishlist-option .dropdown-menu li input, .customer-special-actions .wishlist-option .dropdown-menu li a {
          display: flex;
          text-align: left;
          padding: 9px 9px;
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 20px;
          line-height: 14px; }
  .customer-special-actions .compare-btn {
    margin-top: 2px; }
    .customer-special-actions .compare-btn label .text {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 22px; }
  .customer-special-actions a {
    display: flex;
    align-items: center;
    opacity: .6;
    color: #2C3E50;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px; }
    .customer-special-actions a:hover {
      opacity: 1;
      color: #2C3E50; }
    .customer-special-actions a svg:not(.icon) {
      width: 18px;
      height: 18px;
      display: block;
      margin-right: 6px; }
    .customer-special-actions a .text {
      position: relative;
      top: -2px;
      display: block; }
  @media (min-width: 1025px) {
    .customer-special-actions {
      flex-direction: row; } }

.product-faqs {
  background: #2C3E50;
  padding: 60px 0;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-attachment: fixed;
  height: 540px;
  overflow: hidden; }
  .product-faqs:before {
    background-color: #2C3E50;
    z-index: 2;
    opacity: .65;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: ""; }
  .product-faqs .container {
    position: relative;
    z-index: 3;
    height: 100%;
    overflow: hidden;
    overflow-y: scroll; }
  .product-faqs h3 {
    text-align: center;
    display: block;
    width: 100%; }
  .product-faqs a.title {
    color: #333 !important;
    font-weight: 600 !important; }
  .product-faqs h2, .product-faqs h3, .product-faqs p {
    color: #fff; }
  .product-faqs p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 22px;
    color: #666; }
  .product-faqs .small-contain p {
    color: #fff;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px; }

.options-modal-container {
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  display: none; }
  .options-modal-container .options-modal-contents {
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    padding: 30px;
    width: 1120px;
    border-radius: 6px;
    max-width: 90%;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    right: 0;
    z-index: 9;
    bottom: 0;
    height: 660px;
    max-height: 90vh;
    display: block;
    overflow: hidden;
    overflow-y: scroll; }
    .options-modal-container .options-modal-contents.offscreen {
      left: -9999px; }
  .options-modal-container.active {
    display: block; }
  .options-modal-container.extendable .options-modal-contents {
    position: relative;
    height: auto; }
  .options-modal-container.extendable.active {
    display: flex;
    align-items: center;
    justify-content: center; }
  .options-modal-container .options-modal-bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2; }
  .options-modal-container select {
    margin: 0 9px;
    border: 0;
    border-radius: 4px;
    border: 1px solid #f3f3f3;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    outline: 0; }
    .options-modal-container select:first-child {
      margin-left: 0; }
    .options-modal-container select:last-child {
      margin-right: 0; }
  .options-modal-container input[type="text"] {
    height: 48px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    border: 0;
    outline: 0;
    width: 100%;
    border-radius: 4px;
    padding: 0 18px;
    border: 1px solid #f0f0f0; }
  .options-modal-container .modal-title {
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
    color: #2C3E50;
    margin-bottom: 42px;
    display: block; }

.engraving-options-container .engraving-options-inputs .native-options {
  display: block; }

.engraving-options-container .engraving-options-inputs .selections-row {
  display: flex;
  justify-content: space-between;
  flex-direction: column; }
  .engraving-options-container .engraving-options-inputs .selections-row select {
    margin: 9px 0px;
    border: 0;
    border-radius: 4px;
    border: 1px solid #f3f3f3;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    outline: 0; }
    .engraving-options-container .engraving-options-inputs .selections-row select:first-child {
      margin-left: 0; }
    .engraving-options-container .engraving-options-inputs .selections-row select:last-child {
      margin-right: 0; }
  @media (min-width: 769px) {
    .engraving-options-container .engraving-options-inputs .selections-row {
      flex-direction: row; }
      .engraving-options-container .engraving-options-inputs .selections-row select {
        margin: 0 9px; } }

.engraving-options-container .engraving-options-inputs .text-input-row {
  margin-top: 18px; }
  .engraving-options-container .engraving-options-inputs .text-input-row .single-line-text {
    height: 48px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    border: 0;
    outline: 0;
    width: 100%;
    border-radius: 4px;
    padding: 0 18px;
    border: 1px solid #f0f0f0; }
  .engraving-options-container .engraving-options-inputs .text-input-row .multiple-line-text-container {
    display: none; }
    .engraving-options-container .engraving-options-inputs .text-input-row .multiple-line-text-container.active {
      display: block; }
  .engraving-options-container .engraving-options-inputs .text-input-row .multiple-line-text {
    height: 120px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    border: 0;
    outline: 0;
    border: 1px solid #f0f0f0;
    width: 100%;
    border-radius: 4px;
    padding: 12px 18px; }
  .engraving-options-container .engraving-options-inputs .text-input-row .text-values {
    display: none; }
    .engraving-options-container .engraving-options-inputs .text-input-row .text-values.active {
      display: block; }

.engraving-options-container .engraving-options-inputs .text-preview {
  margin-top: 18px;
  background: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  min-height: 240px;
  max-height: 240px;
  outline: 0;
  flex-grow: 1;
  height: auto;
  border-radius: 4px;
  border: 1px solid #f0f0f0;
  padding: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 18px;
  overflow: hidden;
  overflow-y: scroll;
  justify-content: center; }
  .engraving-options-container .engraving-options-inputs .text-preview.old-english {
    font-family: "Old English";
    font-size: 25px;
    line-height: 30px;
    display: block; }
  .engraving-options-container .engraving-options-inputs .text-preview.italic-script {
    font-family: "California Italic";
    font-size: 24px;
    line-height: 30px;
    font-style: italic;
    display: block; }
  .engraving-options-container .engraving-options-inputs .text-preview.cursive-script {
    font-family: "Bickham";
    font-size: 32px;
    line-height: 36px;
    display: block; }

.engraving-options-container .engraving-options-inputs .image-engraving-option {
  display: none; }
  .engraving-options-container .engraving-options-inputs .image-engraving-option.active {
    display: block; }

.engraving-options-container .cancel-engraving {
  text-decoration: underline;
  display: inline;
  padding: 6px 0;
  font-size: 18px; }

.traditional-music-modal .song-options {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 24px 0;
  margin: 24px 0; }
  .traditional-music-modal .song-options .songs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    .traditional-music-modal .song-options .songs .music-sample {
      margin: 12px; }

.custom-music-modal #costChart li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  align-items: center;
  border-bottom: 1px solid #e0e0e0; }
  .custom-music-modal #costChart li:last-child {
    border: 0; }
  .custom-music-modal #costChart li span {
    font-weight: bold; }

.giftwrap-options-container {
  padding: 0; }
  .giftwrap-options-container .options-modal-contents {
    padding: 0;
    display: grid;
    grid-template-rows: 1fr 1fr; }
    @media (min-width: 769px) {
      .giftwrap-options-container .options-modal-contents {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr; } }
    .giftwrap-options-container .options-modal-contents.no-grid {
      display: block; }
      .giftwrap-options-container .options-modal-contents.no-grid .contents {
        padding: 30px; }
        .giftwrap-options-container .options-modal-contents.no-grid .contents .all-giftwrap-options .bg {
          border-top: 1px solid #e0e0e0;
          padding-top: 30px;
          margin-top: 30px;
          text-align: center;
          margin-bottom: 60px; }
          .giftwrap-options-container .options-modal-contents.no-grid .contents .all-giftwrap-options .bg .about-img1 {
            display: none; }
          .giftwrap-options-container .options-modal-contents.no-grid .contents .all-giftwrap-options .bg p {
            max-width: 85%;
            margin: 0 auto 12px; }
            .giftwrap-options-container .options-modal-contents.no-grid .contents .all-giftwrap-options .bg p.strong {
              font-weight: bold; }
        .giftwrap-options-container .options-modal-contents.no-grid .contents .all-giftwrap-options table {
          width: 100%;
          margin: 0; }
          .giftwrap-options-container .options-modal-contents.no-grid .contents .all-giftwrap-options table tr td {
            width: 100%;
            display: block; }
            @media (min-width: 481px) {
              .giftwrap-options-container .options-modal-contents.no-grid .contents .all-giftwrap-options table tr td {
                width: 33%;
                display: table-cell; } }
            @media (min-width: 1025px) {
              .giftwrap-options-container .options-modal-contents.no-grid .contents .all-giftwrap-options table tr td {
                width: 33%;
                display: table-cell; } }
            .giftwrap-options-container .options-modal-contents.no-grid .contents .all-giftwrap-options table tr td .center-img img {
              height: 240px;
              width: auto; }
            .giftwrap-options-container .options-modal-contents.no-grid .contents .all-giftwrap-options table tr td div.center-font {
              width: 80%;
              margin: 0 auto 42px; }
              .giftwrap-options-container .options-modal-contents.no-grid .contents .all-giftwrap-options table tr td div.center-font h3 {
                font-size: 18px;
                line-height: 24px;
                margin-bottom: 12px;
                margin-top: 24px; }
              .giftwrap-options-container .options-modal-contents.no-grid .contents .all-giftwrap-options table tr td div.center-font p {
                font-size: 14px;
                line-height: 20px; }
    .giftwrap-options-container .options-modal-contents .gift-wrap-options-section {
      background: #F8F8FB;
      height: 100%;
      padding: 24px;
      display: flex;
      align-items: center;
      justify-content: center; }
    .giftwrap-options-container .options-modal-contents .gift-wrap-images-section {
      display: flex;
      align-items: center;
      justify-content: center; }
      .giftwrap-options-container .options-modal-contents .gift-wrap-images-section .giftwrap-type-title {
        display: block;
        font-size: 24px;
        line-height: 30px;
        font-weight: bold;
        text-align: center;
        max-width: 80%;
        margin: 0 auto 24px; }
      .giftwrap-options-container .options-modal-contents .gift-wrap-images-section p {
        display: block;
        width: 75%;
        margin: 18px auto 0; }
      .giftwrap-options-container .options-modal-contents .gift-wrap-images-section .background-image-block {
        width: 60%;
        height: auto;
        text-align: center;
        margin: 0 auto;
        display: block;
        background-size: 100% auto;
        background-repeat: no-repeat; }
        .giftwrap-options-container .options-modal-contents .gift-wrap-images-section .background-image-block img {
          width: 100%;
          height: auto; }

#previewModal .previewCart {
  width: 100%;
  max-width: 100%; }
  #previewModal .previewCart .productView-image {
    width: 35%;
    padding: 0;
    margin: 0 0 0px 0; }
  #previewModal .previewCart .productView-details {
    width: 64%;
    margin-left: auto; }
    #previewModal .previewCart .productView-details h4 {
      font-size: 20px;
      line-height: 24px; }
    #previewModal .previewCart .productView-details .productView-price {
      font-size: 16px;
      line-height: 20px;
      display: block;
      border-bottom: 1px solid #e0e0e0;
      padding-bottom: 24px;
      margin-bottom: 18px; }
    #previewModal .previewCart .productView-details .productView-info {
      margin-bottom: 6px; }
      #previewModal .previewCart .productView-details .productView-info .productView-info-name {
        font-weight: bold;
        font-size: 16px;
        margin-top: 0; }
      #previewModal .previewCart .productView-details .productView-info .productView-info-value {
        font-size: 14px; }
  #previewModal .previewCart .previewCartCheckout {
    background: #F8F8FB; }
    #previewModal .previewCart .previewCartCheckout .button:not(.button--primary) {
      background: #fff; }

#previewModal .suggestiveCart {
  margin-top: 42px; }
  #previewModal .suggestiveCart h4 {
    margin-bottom: 24px; }

.higher-note-modal .modal-content {
  padding: 30px;
  text-align: center; }
  .higher-note-modal .modal-content h3 {
    margin-bottom: 24px; }
  .higher-note-modal .modal-content .higher-note-modal-cards {
    display: flex;
    justify-content: center;
    margin-bottom: 30px; }
    .higher-note-modal .modal-content .higher-note-modal-cards .product-slider-card {
      border: 1px solid #f4f4f4; }

.higher-notes-section {
  display: none;
  width: 100%;
  max-width: 100%; }
  .higher-notes-section.active {
    display: block; }
  .higher-notes-section .higher-note-options-container {
    display: block;
    white-space: nowrap;
    margin-top: 30px;
    text-align: center;
    width: 100%;
    max-width: 100%; }
    .higher-notes-section .higher-note-options-container .product-slider-card {
      display: inline-block;
      width: 300px;
      max-width: 100%;
      min-height: 300px;
      height: 390px; }
  @media (min-width: 1025px) {
    .higher-notes-section .higher-note-options-container {
      display: block;
      white-space: nowrap;
      margin-top: 30px;
      text-align: center;
      width: 100%;
      max-width: 100%; }
      .higher-notes-section .higher-note-options-container .product-slider-card {
        display: inline-block;
        width: 360px;
        max-width: 360px;
        min-height: 390px;
        height: 420px; } }

.form {
  margin-bottom: 0 !important; }

.form.form-wishlist {
  margin: 0; }

.ui.selection.dropdown .menu > .item {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 19px; }

.semantic-dropdown .menu.visible {
  min-height: 300px;
  max-height: 320px; }

.out-of-stock-msg {
  font-size: 18px;
  text-transform: uppercase; }

.footer {
  padding-bottom: 90px !important; }

#musicSearchModal #music-filters {
  border: 1px solid #f0f0f0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 9px;
  margin-top: 18px; }
  #musicSearchModal #music-filters .ais-RefinementList-list {
    display: flex;
    flex-wrap: wrap;
    padding-left: 9px;
    padding-right: 9px; }
    #musicSearchModal #music-filters .ais-RefinementList-list .ais-RefinementList-item {
      margin-right: 12px;
      margin-top: 9px;
      margin-bottom: 9px; }
  #musicSearchModal #music-filters .ais-RefinementList-count {
    display: inline-block;
    margin-left: 3px;
    font-size: 13px; }
    #musicSearchModal #music-filters .ais-RefinementList-count:before {
      content: "(";
      display: inline-block; }
    #musicSearchModal #music-filters .ais-RefinementList-count:after {
      content: ")";
      display: inline-block; }

#musicSearchModal .ais-SearchBox-form {
  border: 1px solid #f4f4f4; }

#musicSearchModal .ais-InfiniteHits {
  text-align: center; }

#musicSearchModal #songs-list {
  margin-top: 24px;
  display: block; }
  #musicSearchModal #songs-list .ais-InfiniteHits-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; }
    #musicSearchModal #songs-list .ais-InfiniteHits-list li {
      list-style-type: none;
      margin: 0;
      padding: 0;
      min-width: calc(100% - 18px);
      max-width: calc(100% - 18px);
      border: 1px solid #f6f6f6;
      margin: 0 9px 18px 9px; }
      #musicSearchModal #songs-list .ais-InfiniteHits-list li .song-tile {
        min-width: 100%;
        width: 100%;
        max-width: 100%; }
      @media (min-width: 481px) {
        #musicSearchModal #songs-list .ais-InfiniteHits-list li {
          min-width: calc(50% - 18px);
          max-width: calc(50% - 18px); } }
      @media (min-width: 1025px) {
        #musicSearchModal #songs-list .ais-InfiniteHits-list li {
          min-width: calc(33.333% - 18px);
          max-width: calc(33.333% - 18px); } }

#musicSearchModal .ais-InfiniteHits-loadMore {
  width: auto;
  display: inline-block;
  padding: 9px 12px 9px;
  border-radius: 4px;
  background: #2C3E50;
  color: #fff;
  margin-top: 18px; }
  #musicSearchModal .ais-InfiniteHits-loadMore.ais-InfiniteHits-loadMore--disabled {
    background: #e0e0e0;
    color: #999;
    display: none; }

.tune-player {
  display: none; }
  .tune-player.active {
    display: block;
    z-index: 99999999999999999; }

.all-giftwrap-options .gc-img {
  width: 100%;
  display: block;
  text-align: center; }

.fenix-fixd-delivery {
  max-width: 100%;
  overflow: hidden; }

.mobile-product-zoom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 999999999999;
  background: #fff;
  display: none; }
  .mobile-product-zoom.active {
    display: block; }
  .mobile-product-zoom .close {
    width: 48px;
    height: 48px;
    top: 6px;
    right: 6px;
    position: absolute;
    z-index: 99; }
    .mobile-product-zoom .close svg, .mobile-product-zoom .close span {
      font-size: 72px;
      line-height: 72px;
      position: relative;
      top: -23px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: auto; }
  .mobile-product-zoom .mobile-product-image {
    height: calc(100% - 150px);
    display: flex;
    align-items: center;
    justify-content: center; }
    .mobile-product-zoom .mobile-product-image pinch-zoom {
      height: 100%;
      display: flex;
      align-items: center; }
    .mobile-product-zoom .mobile-product-image img {
      width: 90%;
      margin: 0 auto; }
  .mobile-product-zoom .image-switcher {
    height: 36px;
    padding-top: 12px;
    margin-top: 12px;
    width: 100%;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center; }
    .mobile-product-zoom .image-switcher p {
      margin: 0;
      font-size: 16px;
      line-height: 16px;
      font-weight: 600;
      position: relative;
      top: -3px; }
    .mobile-product-zoom .image-switcher .item {
      display: block;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid #333;
      background: #fff; }
      .mobile-product-zoom .image-switcher .item.active {
        border: 2px solid #333;
        background: #333; }

.mobile-image-thumbs {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .mobile-image-thumbs ul {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    justify-content: center;
    display: flex; }
    .mobile-image-thumbs ul.scroll {
      justify-content: flex-start;
      overflow-x: scroll;
      -ms-overflow-style: -ms-autohiding-scrollbar;
      /* Track */ }
      .mobile-image-thumbs ul.scroll::-webkit-scrollbar {
        width: 6px;
        height: 6px; }
      .mobile-image-thumbs ul.scroll::-webkit-scrollbar-track {
        background: #ddd; }
      .mobile-image-thumbs ul.scroll::-webkit-scrollbar-thumb {
        background: #aaa; }
      .mobile-image-thumbs ul.scroll li {
        width: 75px;
        min-width: 75px;
        max-width: 75px;
        height: 75px;
        margin: 0 6px; }
        .mobile-image-thumbs ul.scroll li a {
          display: block;
          width: 100%;
          height: 100%; }
          .mobile-image-thumbs ul.scroll li a img {
            width: 100%;
            height: 100%;
            object-fit: contain; }

.video-thumb {
  position: relative;
  z-index: 1; }
  .video-thumb:before {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url("../img/play-btn.png");
    background-size: 30px auto;
    background-position: center;
    display: block;
    background-repeat: no-repeat; }

.swal2-modal .swal2-title {
  font-size: 18px !important;
  line-height: 24px;
  padding-bottom: 18px; }

/* CSS for chat  */
/* Add to cart options sticky */
@media (max-width: 768px) {
  .zopim {
    bottom: 65px !important;
    z-index: 99 !important;
    left: 10px !important;
    right: auto !important; } }

.prev-song {
  display: none !important; }

.next-song {
  display: none !important; }

@media (max-width: 767px) {
  .tune-player.active {
    margin-bottom: 65px; } }

.product-description p {
  padding-bottom: 15px; }

.product-description h2 {
  font-size: 1.5rem;
  margin: 0;
  padding-bottom: 15px;
  line-height: 22px; }

.product-description .list-dot {
  margin-left: 25px;
  padding-bottom: 15px; }
  .product-description .list-dot li {
    list-style-type: disc; }

.product-music-options .all-product-options .native-options {
  width: 100%; }

select#attribute_select_60464 {
  max-width: 100%; }

.klaviyo-bis-trigger {
  margin-bottom: 15px !important; }

/* Last P spacing */
.small-contain p:last-child {
  margin-bottom: 0; }

.stock-message {
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 10px 0; }
  .stock-message span {
    color: #A82315;
    font-weight: 700; }

/*---------------------------
product container reviews
----------------------------*/
.single-product .product-container {
  display: flex;
  flex-direction: column; }
  .single-product .product-container .reviews-social {
    order: 0; }
  .single-product .product-container .product-title {
    order: 1; }
  @media (max-width: 768px) {
    .single-product .product-container .product-title {
      order: 0; }
    .single-product .product-container .reviews-social {
      order: 1;
      margin: 0 0; } }

/*-----------------
 Tabs styles 
 ------------------*/
.trustBoxReview .reviewtabs {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  background-color: #f1f1f1; }
  .trustBoxReview .reviewtabs .tablinks {
    border: none;
    margin: 0 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s; }
    @media (max-width: 768px) {
      .trustBoxReview .reviewtabs .tablinks {
        font-size: 14px;
        padding: 7px; } }
    .trustBoxReview .reviewtabs .tablinks.active {
      background-color: #fff; }
    .trustBoxReview .reviewtabs .tablinks:hover {
      background-color: #ddd; }
    .trustBoxReview .reviewtabs .tablinks strong {
      display: block;
      font-size: 1.6em;
      margin-bottom: 1rem; }
      @media (max-width: 768px) {
        .trustBoxReview .reviewtabs .tablinks strong {
          font-size: 1.1em;
          margin-bottom: .5rem; } }

.trustBoxReview .tabcontent {
  display: none;
  margin-bottom: 3rem; }
  .trustBoxReview .tabcontent.active {
    display: block; }

/* Accordion styles */
@media (max-width: 768px) {
  .tabs {
    display: block; }
  .tablinks {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 10px; }
  .tabcontent.active {
    display: block; } }

.section-recently-viewed .product-slider-card, .section-recently-viewed .product.slick-slide {
  height: auto; }
