@charset "UTF-8";
.after-before {
  position: absolute;
  content: "";
}

.img-default {
  float: left;
  width: 100%;
  height: auto;
}

.float-default {
  float: left;
  width: 100%;
}

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.mp-animation {
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.mp-animated {
  opacity: 1;
}

@-webkit-keyframes mp-pulse {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes mp-pulse {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.mp-pulse {
  -webkit-animation-name: mp-pulse;
  animation-name: mp-pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes mp-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mp-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mp-fadeIn {
  -webkit-animation-name: mp-fadeIn;
  animation-name: mp-fadeIn;
}

@-webkit-keyframes mp-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes mp-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.mp-fadeInUp {
  -webkit-animation-name: mp-fadeInUp;
  animation-name: mp-fadeInUp;
}

@-webkit-keyframes mp-fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes mp-fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.mp-fadeInDown {
  -webkit-animation-name: mp-fadeInDown;
  animation-name: mp-fadeInDown;
}

@-webkit-keyframes mp-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes mp-fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.mp-fadeInLeft {
  -webkit-animation-name: mp-fadeInLeft;
  animation-name: mp-fadeInLeft;
}

@-webkit-keyframes mp-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes mp-fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.mp-fadeInRight {
  -webkit-animation-name: mp-fadeInRight;
  animation-name: mp-fadeInRight;
}

@-webkit-keyframes mp-fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes mp-fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.mp-fadeOutRight {
  -webkit-animation-name: mp-fadeOutRight;
  animation-name: mp-fadeOutRight;
}

@-webkit-keyframes mp-fadeZoom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes mp-fadeZoom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.mp-fadeZoom {
  -webkit-animation-name: mp-fadeZoom;
  animation-name: mp-fadeZoom;
}

@-webkit-keyframes mp-fadeZoomBig {
  from {
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes mp-fadeZoomBig {
  from {
    opacity: 0;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.mp-fadeZoomBig {
  -webkit-animation-name: mp-fadeZoomBig;
  animation-name: mp-fadeZoomBig;
}

@-webkit-keyframes mp-bounceBig {
  from, 20%, 53%, to {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -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);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes mp-bounceBig {
  from, 20%, 53%, to {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -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);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.mp-bounceBig {
  -webkit-animation-name: mp-bounceBig;
  animation-name: mp-bounceBig;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes mp-bounce {
  from, 20%, 53%, 80%, to {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  40%, 43%, 70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes mp-bounce {
  from, 20%, 53%, 80%, to {
    opacity: 1;
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  40%, 43%, 70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.mp-bounce {
  -webkit-animation-name: mp-bounce;
  animation-name: mp-bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes mp-flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes mp-flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.mp-flash {
  -webkit-animation-name: mp-flash;
  animation-name: mp-flash;
}

@-webkit-keyframes mp-clipY {
  0% {
    opacity: 1;
    -webkit-transform: scale(0, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
  }
}
@keyframes mp-clipY {
  0% {
    opacity: 1;
    transform: scale(0, 1);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
.mp-clipY {
  -webkit-animation-name: mp-clipY;
  animation-name: mp-clipY;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes mp-clipYR {
  0% {
    opacity: 1;
    -webkit-transform: rotate(-40deg) scale(0, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(-40deg) scale(1, 1);
  }
}
@keyframes mp-clipYR {
  0% {
    opacity: 1;
    transform: rotate(-40deg) scale(0, 1);
  }
  100% {
    opacity: 1;
    transform: rotate(-40deg) scale(1, 1);
  }
}
.mp-clipYR {
  -webkit-animation-name: mp-clipYR;
  animation-name: mp-clipYR;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes mp-clipYR2 {
  0% {
    opacity: 1;
    -webkit-transform: rotate(-320deg) scale(0, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(-320deg) scale(1, 1);
  }
}
@keyframes mp-clipYR2 {
  0% {
    opacity: 1;
    transform: rotate(-320deg) scale(0, 1);
  }
  100% {
    opacity: 1;
    transform: rotate(-320deg) scale(1, 1);
  }
}
.mp-clipYR2 {
  -webkit-animation-name: mp-clipYR2;
  animation-name: mp-clipYR2;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes mp-clipX {
  0% {
    opacity: 1;
    -webkit-transform: scale(1, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
  }
}
@keyframes mp-clipX {
  0% {
    opacity: 1;
    transform: scale(1, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
.mp-clipX {
  -webkit-animation-name: mp-clipX;
  animation-name: mp-clipX;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes mp-clipXY {
  0% {
    opacity: 1;
    -webkit-transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
  }
}
@keyframes mp-clipXY {
  0% {
    opacity: 1;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
.mp-clipXY {
  -webkit-animation-name: mp-clipXY;
  animation-name: mp-clipXY;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes mp-backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    opacity: 0.5;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes mp-backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.5;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.mp-backInUp {
  -webkit-animation: mp-backInUp;
  animation: mp-backInUp;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes mp-zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
@keyframes mp-zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 1;
  }
}
.mp-zoomIn {
  -webkit-animation-name: mp-zoomIn;
  animation-name: mp-zoomIn;
}

@-webkit-keyframes mp-zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes mp-zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
.mp-zoomInDown {
  -webkit-animation-name: mp-zoomInDown;
  animation-name: mp-zoomInDown;
}

@-webkit-keyframes mp-zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes mp-zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
.mp-zoomInUp {
  -webkit-animation-name: mp-zoomInUp;
  animation-name: mp-zoomInUp;
}

@-webkit-keyframes mp-zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes mp-zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
.mp-zoomInLeft {
  -webkit-animation-name: mp-zoomInLeft;
  animation-name: mp-zoomInLeft;
}

@-webkit-keyframes mp-zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
@keyframes mp-zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
  to {
    opacity: 1;
  }
}
.mp-zoomInRight {
  -webkit-animation-name: mp-zoomInRight;
  animation-name: mp-zoomInRight;
}

@-webkit-keyframes mp-typing {
  0% {
    width: 0%;
  }
  30% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes mp-typing {
  0% {
    width: 0%;
  }
  30% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.mp-typing {
  -webkit-animation: mp-typing;
  animation: mp-typing;
}

@-webkit-keyframes mp-pulsate {
  0% {
    -webkit-transform: scale(0.62);
    transform: scale(0.62);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(207, 172, 114, 0.75), 0px 0px 25px 10px rgba(207, 172, 114, 0.75);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}
@keyframes mp-pulsate {
  0% {
    -webkit-transform: scale(0.62);
    transform: scale(0.62);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(207, 172, 114, 0.75), 0px 0px 25px 10px rgba(207, 172, 114, 0.75);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}
.mp-pulsate {
  -webkit-animation: mp-pulsate;
  animation: mp-pulsate;
}

@-webkit-keyframes hotspot-pulse {
  0% {
    -webkit-transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  70% {
    -webkit-transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes hotspot-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.animate-delay-100 {
  -webkit-animation-delay: 100ms !important;
  animation-delay: 100ms !important;
}

.animate-delay-200 {
  -webkit-animation-delay: 200ms !important;
  animation-delay: 200ms !important;
}

.animate-delay-300 {
  -webkit-animation-delay: 300ms !important;
  animation-delay: 300ms !important;
}

.animate-delay-400 {
  -webkit-animation-delay: 400ms !important;
  animation-delay: 400ms !important;
}

.animate-delay-500 {
  -webkit-animation-delay: 500ms !important;
  animation-delay: 500ms !important;
}

.animate-delay-600 {
  -webkit-animation-delay: 600ms !important;
  animation-delay: 600ms !important;
}

.animate-delay-700 {
  -webkit-animation-delay: 700ms !important;
  animation-delay: 700ms !important;
}

.animate-delay-800 {
  -webkit-animation-delay: 800ms !important;
  animation-delay: 800ms !important;
}

.animate-delay-900 {
  -webkit-animation-delay: 900ms !important;
  animation-delay: 900ms !important;
}

.animate-delay-1 {
  -webkit-animation-delay: 1000ms !important;
  animation-delay: 1000ms !important;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in-left {
  -webkit-animation: fade-in-left 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
body {
  overflow: hidden !important;
}

.floor-plan-page {
  display: flex;
  height: 100vh;
  width: 100vw;
  background: #EFEFEF;
  background: url(../Images/gallery_bg.jpg);
}
.floor-plan-page .column {
  display: flex;
  justify-content: center;
  align-items: center;
}
.floor-plan-page .column.left {
  width: 320px;
}
.floor-plan-page .column.left .page-title {
  position: absolute;
  height: 50px;
  line-height: 28px;
  left: 60px;
  top: 50px;
  font-size: 23px;
  font-family: "Montserrat-Medium", "Arial";
  font-weight: bold;
  text-transform: uppercase;
  color: #555;
  overflow: visible;
}
.floor-plan-page .column.left .page-title .text {
  float: left;
}
.floor-plan-page .column.left .page-title .num {
  float: left;
  margin-left: 12px;
  font-size: 50px;
  background: linear-gradient(to bottom, #A7334A, #555);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.floor-plan-page .column.left .page-title span {
  color: #999;
}
.floor-plan-page .column.left .tower-list {
  position: absolute;
  width: 232px;
  left: 60px;
  top: 118px;
  z-index: 998;
}
.floor-plan-page .column.left .tower-list .tower {
  float: left;
  width: 100%;
  height: 38px;
  line-height: 39px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  background: #bbbbbb;
  margin-top: 16px;
  padding: 0 0 0 18px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  -webkit-transition: all 260ms linear;
  -moz-transition: all 260ms linear;
  -o-transition: all 260ms linear;
  -ms-transition: all 260ms linear;
  transition: all 260ms linear;
}
.floor-plan-page .column.left .tower-list .tower span {
  color: white;
  text-transform: uppercase;
  font-weight: bold;
}
.floor-plan-page .column.left .tower-list .tower:hover, .floor-plan-page .column.left .tower-list .tower.active {
  background: #a7334a;
}
.floor-plan-page .column.left .floor-type {
  position: absolute;
  width: 100%;
  left: 68px;
}
.floor-plan-page .column.left .floor-type .item {
  position: relative;
  float: left;
  width: 100%;
  height: 32px;
  line-height: 32px;
  padding-left: 36px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.floor-plan-page .column.left .floor-type .item::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border: 1px solid white;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}
.floor-plan-page .column.left .floor-type .item.type-1::after {
  background: #FEEBD2;
}
.floor-plan-page .column.left .floor-type .item.type-2::after {
  background: #91BEE1;
}
.floor-plan-page .column.left .floor-type .item.type-3::after {
  background: #BEE6F8;
}
.floor-plan-page .column.left .floor-type .item.type-4::after {
  background: #A1978F;
}
.floor-plan-page .column.left .floor-type .item.type-5::after {
  background: #E5939F;
}
.floor-plan-page .column.left .floor-type .item.type-6::after {
  background: #A8CDC4;
}
.floor-plan-page .column.left .floor-type .item.type-7::after {
  background: #B4A69D;
}
.floor-plan-page .column.left .floor-type .item.type-8::after {
  background: #E593B4;
}
.floor-plan-page .column.left .floor-type .item.type-9::after {
  background: #D8E8C3;
}
.floor-plan-page .column.left .floor-type .item.type-10::after {
  background: #E7F2BD;
}
.floor-plan-page .column.left .floor-type .item.type-11::after {
  background: #BCE2AF;
}
.floor-plan-page .column.middle {
  flex: 1;
}
.floor-plan-page .column.right {
  width: 230px;
  margin-left: 90px;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}
.floor-plan-page .column.right.show {
  width: 320px;
}
.floor-plan-page .column.right .apart-info {
  position: absolute;
  top: 0;
  right: -398px;
  width: 398px;
  height: 100vh;
  z-index: 999;
  background: #e9c1cf;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}
.floor-plan-page .column.right .apart-info.show {
  right: 0;
}
.floor-plan-page .column.right .apart-info .close-btn {
  position: relative;
  position: absolute;
  top: 5px;
  left: 5px;
  width: 32px;
  height: 32px;
  color: white;
  background: #a7334a;
  overflow: hidden;
  z-index: 999;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.floor-plan-page .column.right .apart-info .close-btn::before, .floor-plan-page .column.right .apart-info .close-btn:after {
  position: absolute;
  content: "";
  z-index: 99;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  font-size: 20px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.floor-plan-page .column.right .apart-info .close-btn::before {
  left: -32px;
}
.floor-plan-page .column.right .apart-info .close-btn:hover::after {
  left: 32px;
}
.floor-plan-page .column.right .apart-info .close-btn:hover::before {
  left: 0;
}
.floor-plan-page .column.right .apart-info .apart-item {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px;
  display: none;
}
.floor-plan-page .column.right .apart-info .apart-item div {
  float: left;
  width: 100%;
}
.floor-plan-page .column.right .apart-info .apart-item .image {
  padding: 30px;
  text-align: center;
}
.floor-plan-page .column.right .apart-info .apart-item .image img {
  width: 100%;
  height: auto;
  max-height: 320px;
  max-width: 288px;
  width: auto;
}
.floor-plan-page .column.right .apart-info .apart-item .type {
  margin-top: 10px;
  font-size: 25px;
  font-family: "Montserrat-Medium", "Arial";
  display: none;
}
.floor-plan-page .column.right .apart-info .apart-item .type span {
  background: linear-gradient(to bottom, #A7334A, #bbb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.floor-plan-page .column.right .apart-info .apart-item .info .title {
  width: 100%;
  margin: 10px 0 15px 0;
  font-size: 32px;
  font-family: "Montserrat-Medium", "Arial";
  font-weight: bold;
  text-align: center;
  color: #a7334a;
}
.floor-plan-page .column.right .apart-info .apart-item .info .title span {
  display: none;
}
.floor-plan-page .column.right .apart-info .apart-item .info .content {
  text-align: center;
  font-size: 15px;
  font-family: "Montserrat-Medium", "Arial";
  font-weight: bold;
  line-height: 26px;
}
.floor-plan-page .column.right .apart-info .apart-item .info .content span {
  font-weight: normal;
}
.floor-plan-page .column.right .apart-info .apart-item .more-info {
  float: left;
  width: 80%;
  margin: 12px 10% 0 10%;
  padding-top: 12px;
  border-top: 1px dashed rgba(17, 17, 17, 0.3);
  font-size: 14px;
}
.floor-plan-page .column.right .apart-info .apart-item .more-info div {
  float: left;
  width: 50%;
  padding-left: 20px;
}
.floor-plan-page .column.right .apart-info .apart-item .apartment-btn-bg {
  float: left;
  width: 100%;
  margin: 32px 0 0 0;
  text-align: center;
}
.floor-plan-page .column.right .apart-info .apart-item .apartment-btn-bg .apartment-btn {
  display: inline-block;
  width: 148px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 14px;
  color: white;
  background: #a7334a;
  border: 1px solid #a7334a;
  -moz-border-radius: 36px;
  -webkit-border-radius: 36px;
  -ms-border-radius: 36px;
  -o-border-radius: 36px;
  border-radius: 36px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.floor-plan-page .column.right .apart-info .apart-item .apartment-btn-bg .apartment-btn:hover {
  color: white;
  background: #a7334a;
  border: 1px solid white;
}

.floor-plan-bg {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.floor-plan-bg::after {
  position: absolute;
  content: "";
  width: 68px;
  height: 75px;
  top: 50px;
  right: 50px;
  background: url(../MatBang/compass.svg) center no-repeat;
  background-size: cover;
}
.floor-plan-bg img#floor-plan {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 236px);
  object-fit: cover;
}

.floor-plan-bg .a9s-annotation .a9s-outer {
  stroke: none;
}
.floor-plan-bg .a9s-annotation .a9s-inner {
  stroke: rgba(255, 255, 255, 0.5);
  /* Màu đường viền */
  stroke-width: 1px;
  /* Độ dày đường viền */
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
  stroke-linecap: round;
  /* Làm đầu nét tròn mềm mại */
  stroke-linejoin: round;
  filter: blur(0.3px);
}
.floor-plan-bg .a9s-annotation .a9s-inner.hover, .floor-plan-bg .a9s-annotation .a9s-inner:hover {
  stroke-width: 2px;
  stroke: #a7334a;
  fill: rgba(76, 22, 33, 0.6);
}

.apart-tooltip {
  position: relative;
  float: left;
  width: 232px;
  height: 108px;
  padding: 16px 16px;
  text-align: left;
  font-size: 12px;
  font-family: "Montserrat-Regular", "Arial";
  color: white;
  background: rgba(167, 51, 74, 0.68);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 2px solid white;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  transform: translate(-50%, -86px);
  -webkit-transform: translate(-50%, -86px);
  display: none;
}
.apart-tooltip.tgarden {
  height: 133px;
  transform: translate(-50%, -110px);
  -webkit-transform: translate(-50%, -110px);
}
.apart-tooltip .title {
  width: 100%;
  margin: 0 0 8px 0;
  font-size: 13px;
  font-family: "Montserrat-Medium", "Arial";
  border-bottom: 1px dashed rgba(255, 255, 255, 0.8);
  padding: 0 0 6px 0;
  text-align: right;
}
.apart-tooltip .title i {
  float: left;
  margin-right: 6px;
  margin-top: -3px;
  font-size: 22px;
}
.apart-tooltip .content {
  line-height: 22px;
}
.apart-tooltip .more-info,
.apart-tooltip .apartment-btn-bg {
  display: none;
}