@import url("iconfont.css");

html {
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

html,
body {
  height: 100%;
}

body {
  color: #141414;
  color: var(--color-black, #141414);
  background: inherit;
  background: var(--color-white, #ffffff);
  font-family: "Nunito Sans", sans-serif;
  margin: 0;
  padding: 0;
}

/* -------------------------------------------------------------------
 * # header
 *
 * ------------------------------------------------------------------- */

header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

/* -------------------------------------------------------------------
 * # digital
 *
 * ------------------------------------------------------------------- */

.digital,
.spreading,
.cutting,
.industry,
.global,
.mission {
  position: relative;
}

.linking {
  position: absolute;
  z-index: 1;
  left: 6.5%;
  bottom: 10%;
}

/* -------------------------------------------------------------------
 * # industry
 *
 * ------------------------------------------------------------------- */

.industry {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 200px 6.5%;
}

.industry-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  object-fit: cover;
}

.industry-imgs {
  width: 100%;
  height: 600px;
  background: url("../images/industry-fashion.jpg") no-repeat;
  background-size: cover;
}

.industry-content {
  width: 20%;
  height: 100%;
  float: left;
  position: relative;
  overflow: hidden;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.industry-content:hover {
  background: -webkit-linear-gradient(to top, #9774b3, rgba(255, 95, 16, 0));
  background: linear-gradient(to top, #9774b3, rgba(255, 95, 16, 0));
}

.industry-title {
  position: absolute;
  bottom: 20%;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  color: #ffffff;
}

/* -------------------------------------------------------------------
 * # mission
 *
 * ------------------------------------------------------------------- */

.mission,
.mission-scroll {
  width: 100%;
  height: 800px;
  overflow: hidden;
}

.mission-bg {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  object-fit: cover;
}

.mission-vision {
  position: absolute;
  z-index: 2;
  left: 6.5%;
  top: 33%;
  max-width: 66%;
  line-height: 1.5rem;
}

.mission-content {
  width: 100%;
  height: 800px;
  object-fit: cover;
}

.mission-ultracut {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 66%;
  object-fit: contain;
}

/* ------------------------------------------------------------------- 
 * # tooltip
 *
 * ------------------------------------------------------------------- */

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltip-content {
  visibility: hidden;
  position: absolute;
  z-index: 1;
  width: 100px;
  opacity: 0;
  transition: opacity 1s;
}

.tooltip:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
}

/* ------------------------------------------------------------------- 
 * responsive
 * 
 * ------------------------------------------------------------------- */

@media only screen and (max-width: 1024px) {
  .industry {
    padding: 150px 6.5%;
  }

  .industry-imgs {
    height: 400px;
  }
}

@media only screen and (max-width: 768px) {
  .industry {
    padding: 100px 6.5%;
  }

  .industry-imgs {
    height: 200px;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------------------------- 
 * liner
 * 
 * ------------------------------------------------------------------- */

.liner {
  border-bottom: 2px solid #663399;
  cursor: pointer;
}

/* ------------------------------------------------------------------- 
 * product
 * 
 * ------------------------------------------------------------------- */

.product-scroll {
  position: relative;
  min-height: 100vh;
}

.product-video,
.product-img,
.product-bg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.product-cover {
  position: absolute;
  width: 100%;
}

.product-price {
  width: 10%;
  padding: 20px 0;
  border-bottom: 2px solid #9774b3;
}

#product-label {
  position: absolute;
  left: 8%;
  top: 33%;
  width: 33%;
  height: 33%;
  cursor: pointer;
}

#solution-label {
  position: absolute;
  right: 6%;
  bottom: 20%;
  width: 20%;
  height: 20%;
  cursor: pointer;
}

/* ------------------------------------------------------------------- 
 * tab
 * 
 * ------------------------------------------------------------------- */

.tab {
  width: 100%;
}
.tab hr {
  width: 100%;
  height: 1px;
  background: #663399;
}
.tab-hd {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tab-hd li {
  margin: 20px;
  padding: 10px 0;
  text-align: center;
  cursor: pointer;
}
.tab-hd li.active {
  border-bottom: 3px solid #663399;
}

.tab-bd li {
  display: none;
}
.tab-bd li:first-child {
  display: list-item;
}

/* ------------------------------------------------------------------- 
 * slider
 * 
 * ------------------------------------------------------------------- */

#slidorion {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#slider {
  width: 600px;
  height: 600px;
  position: relative;
  float: left;
  overflow: hidden;
}

#slider > div {
  position: absolute;
  width: 100%;
  height: 100%;
}

#accordion {
  width: 600px;
  height: 600px;
  position: relative;
  z-index: 999;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#accordion > .link-header {
  color: #8c8c8c;
}

#accordion > .link-header:first-child {
  border-top: none;
}

#accordion > .link-header:hover {
  background: #ededed;
  cursor: pointer;
}

#accordion > .link-header.active {
  color: #663399;
}

#accordion > .link-content {
  padding: 16px;
}

@media screen and (max-width: 768px) {
  #slidorion {
    flex-direction: column;
  }

  #slider {
    width: 100%;
    height: 200px;
  }

  #accordion {
    width: 100%;
    height: 100%;
  }
}

/* ------------------------------------------------------------------- 
 * modal light
 * 
 * ------------------------------------------------------------------- */

#modal-light {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 67%;
  display: none;
  z-index: 10000;
  overflow: hidden;
  background: #ffffff;
}

.modal-close {
  position: absolute;
  z-index: 99;
  top: 20px;
  right: 20px;
  cursor: pointer;
  color: #141414;
}

.shade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
}

@media screen and (max-width: 768px) {
  #modal-light {
    width: 100%;
  }
}

/* ------------------------------------------------------------------- 
 * login box
 * 
 * ------------------------------------------------------------------- */

.login-box {
  padding: 10px;
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 10px 0;
  font-size: 16px;
  border: none;
  outline: none;
  background: #ffffff;
}
.login-box .user-box input {
  width: 100%;
  margin-bottom: 16px !important;
  padding: 10px 12px !important;
  font-size: 16px !important;
  border: none;
  border-bottom: 1px solid #8c8c8c;
  outline: none;
  background: transparent;
}
.login-box .user-box select {
  width: 100%;
  margin-bottom: 16px !important;
  padding: 10px 8px !important;
  font-size: 16px !important;
  border: none;
  border-bottom: 1px solid #8c8c8c;
  outline: none;
  background: transparent;
}
.login-box .user-box label {
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #8c8c8c;
  pointer-events: none;
  transition: 0.5s;
}

.login-box .user-box textarea:focus ~ label,
.login-box .user-box textarea:valid ~ label,
.login-box .user-box select:focus ~ label,
.login-box .user-box select:valid ~ label,
.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  left: 0;
  top: -20px;
  color: #663399;
  font-size: 12px;
}

.login-submit {
  padding: 10px;
  border-radius: 50px;
  background: #9774b3;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}

/* ------------------------------------------------------------------- 
 * back top
 * 
 * ------------------------------------------------------------------- */

.cd-top {
  position: fixed;
  bottom: 40px;
  right: 20px;
  border-radius: 40px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
  /* image replacement properties */
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  -webkit-transition:
    opacity 0.3s 0s,
    visibility 0s 0.3s;
  -moz-transition:
    opacity 0.3s 0s,
    visibility 0s 0.3s;
  transition:
    opacity 0.3s 0s,
    visibility 0s 0.3s;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.cd-top:hover {
  -webkit-transition:
    opacity 0.3s 0s,
    visibility 0s 0s;
  -moz-transition:
    opacity 0.3s 0s,
    visibility 0s 0s;
  transition:
    opacity 0.3s 0s,
    visibility 0s 0s;
}

.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
  color: #141414;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: 0.5;
}

.cd-top:hover {
  background: #9774b3;
  color: #ffffff;
  opacity: 1;
}

/* ------------------------------------------------------------------- 
 * time line
 * 
 * ------------------------------------------------------------------- */

.time-line {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.time-line .left-btn,
.time-line .right-btn {
  color: #663399;
  cursor: pointer;
}
.time-line .left-btn {
  left: 0;
}
.time-line .right-btn {
  right: 0;
}
.time-line .left-btn:hover,
.right-btn:hover {
  transform: scale(2);
  transition: all 0.8s ease 0.2s;
}
.time-line .time-box {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.time-line .time-box ul {
  position: relative;
  overflow: hidden;
}
.time-line .time-box ul:after {
  content: "";
  background: #663399;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
}
.time-line .time-box li {
  position: relative;
  float: left;
  width: 260px;
  box-sizing: border-box;
  text-align: center;
}
.time-line .time-box li:nth-child(2n) {
  margin-top: 260px;
}
/* .time-line .time-box li:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  bottom: -8px;
  left: 50%;
  margin-left: -7px;
  box-sizing: border-box;
}
.time-line .time-box li:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #663399;
  bottom: 0;
  left: 50%;
  margin-left: -7px;
  z-index: 1;
  box-sizing: border-box;
  border-radius: 15px;
}
.time-line .time-box li:nth-child(2n):before {
  bottom: auto;
  top: -8px;
  transform: rotate(-225deg);
}
.time-line .time-box li:nth-child(2n):after {
  bottom: auto;
  top: 2px;
} */
.time-line .time-box li:hover,
.time-line .time-box li.active {
}
.time-line .time-box li:hover:before,
.time-line .time-box li.active:before {
}
.time-line .time-box li:hover:after,
.time-line .time-box li.active:after {
}

@media screen and (max-width: 768px) {
  .time-line .time-box li:nth-child(2n) {
    left: -260px;
  }
}

/* ------------------------------------------------------------------- 
 * nesting
 * 
 * ------------------------------------------------------------------- */

.nesting-swiper {
  width: 100%;
  height: 100%;
}
.nesting-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  min-height: 100%;
  transition: 1s linear 2s;
  transform: scale(1.1, 1.1);
}
.nesting-swiper .swiper-slide-active img,
.nesting-swiper .swiper-slide-duplicate-active img {
  transition: 6s linear;
  transform: scale(1, 1);
}

.nesting-feature {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  color: #663399;
  cursor: pointer;
}

.nesting-feature i {
  opacity: 1;
}

.nesting-feature p {
  opacity: 0;
}

.nesting-feature:hover {
  background: #663399;
  color: #ffffff;
  height: 110%;
  transform: translateY(-5%);
  transition: all 0.4s ease 0.2s;
}

.nesting-feature:hover i {
  opacity: 0;
  transition: linear 0.1s;
}

.nesting-feature:hover p {
  opacity: 1;
  transition: linear 0.1s;
}

/* ------------------------------------------------------------------- 
 * table
 * 
 * ------------------------------------------------------------------- */

/*设置奇数行颜色*/
table tr:nth-child(odd) {
  background: #fafafa;
}
/*设置偶数行颜色*/
table tr:nth-child(even) {
  background: none;
}
/*设置鼠标聚焦到行上是凸显*/
table tr:hover {
  /* background: none; */
}

/* ------------------------------------------------------------------- 
 * loading style
 * 
 * ------------------------------------------------------------------- */

.loading {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background-color: #663399;
  animation: ball-scale infinite linear 0.75s;
}

@keyframes ball-scale {
  0% {
    transform: scale(0.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* ------------------------------------------------------------------- 
 * button style
 * 
 * ------------------------------------------------------------------- */

.cyber {
  --primary: hsl(
    var(--primary-hue),
    85%,
    calc(var(--primary-lightness, 50) * 1%)
  );
  --shadow-primary: hsl(var(--shadow-primary-hue), 90%, 50%);
  --primary-hue: 270;
  --primary-lightness: 50;
  --color: hsl(0, 0%, 100%);
  --font-size: 26px;
  --shadow-primary-hue: 180;
  --label-size: 9px;
  --shadow-secondary-hue: 60;
  --shadow-secondary: hsl(var(--shadow-secondary-hue), 90%, 60%);
  --clip: polygon(
    0 0,
    100% 0,
    100% 100%,
    95% 100%,
    95% 90%,
    85% 90%,
    85% 100%,
    8% 100%,
    0 70%
  );
  --border: 4px;
  --shimmy-distance: 5;
  --clip-one: polygon(
    0 2%,
    100% 2%,
    100% 95%,
    95% 95%,
    95% 90%,
    85% 90%,
    85% 95%,
    8% 95%,
    0 70%
  );
  --clip-two: polygon(
    0 78%,
    100% 78%,
    100% 100%,
    95% 100%,
    95% 90%,
    85% 90%,
    85% 100%,
    8% 100%,
    0 78%
  );
  --clip-three: polygon(
    0 44%,
    100% 44%,
    100% 54%,
    95% 54%,
    95% 54%,
    85% 54%,
    85% 54%,
    8% 54%,
    0 54%
  );
  --clip-four: polygon(
    0 0,
    100% 0,
    100% 0,
    95% 0,
    95% 0,
    85% 0,
    85% 0,
    8% 0,
    0 0
  );
  --clip-five: polygon(
    0 0,
    100% 0,
    100% 0,
    95% 0,
    95% 0,
    85% 0,
    85% 0,
    8% 0,
    0 0
  );
  --clip-six: polygon(
    0 40%,
    100% 40%,
    100% 85%,
    95% 85%,
    95% 85%,
    85% 85%,
    85% 85%,
    8% 85%,
    0 70%
  );
  --clip-seven: polygon(
    0 63%,
    100% 63%,
    100% 80%,
    95% 80%,
    95% 80%,
    85% 80%,
    85% 80%,
    8% 80%,
    0 70%
  );
  color: var(--color);
  cursor: pointer;
  background: transparent;
  text-transform: uppercase;
  font-size: var(--font-size);
  outline: transparent;
  letter-spacing: 2px;
  position: relative;
  font-weight: 700;
  border: 0;
  min-width: 300px;
  height: 75px;
  line-height: 75px;
  transition: background 0.2s;
}

.cyber:hover {
  --primary: hsl(
    var(--primary-hue),
    85%,
    calc(var(--primary-lightness, 50) * 0.8%)
  );
}

.cyber:active {
  --primary: hsl(
    var(--primary-hue),
    85%,
    calc(var(--primary-lightness, 50) * 0.6%)
  );
}

.cyber:after,
.cyber:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: var(--clip);
  z-index: -1;
}

.cyber:before {
  background: var(--shadow-primary);
  transform: translate(var(--border), 0);
}

.cyber:after {
  background: var(--primary);
}

.cyber__tag {
  position: absolute;
  padding: 1px 4px;
  letter-spacing: 1px;
  line-height: 1;
  bottom: -5%;
  right: 5%;
  font-weight: normal;
  color: hsl(0, 0%, 0%);
  font-size: var(--label-size);
}

.cyber__glitch {
  position: absolute;
  top: calc(var(--border) * -1);
  left: calc(var(--border) * -1);
  right: calc(var(--border) * -1);
  bottom: calc(var(--border) * -1);
  background: var(--shadow-primary);
  text-shadow:
    2px 2px var(--shadow-primary),
    -2px -2px var(--shadow-secondary);
  clip-path: var(--clip);
  animation: glitch 2s infinite;
  display: none;
}

.cyber:hover .cyber__glitch {
  display: block;
}

.cyber__glitch:before {
  content: "";
  position: absolute;
  top: calc(var(--border) * 1);
  right: calc(var(--border) * 1);
  bottom: calc(var(--border) * 1);
  left: calc(var(--border) * 1);
  clip-path: var(--clip);
  background: var(--primary);
  z-index: -1;
}

@keyframes glitch {
  0% {
    clip-path: var(--clip-one);
  }

  2%,
  8% {
    clip-path: var(--clip-two);
    transform: translate(calc(var(--shimmy-distance) * -1%), 0);
  }

  6% {
    clip-path: var(--clip-two);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }

  9% {
    clip-path: var(--clip-two);
    transform: translate(0, 0);
  }

  10% {
    clip-path: var(--clip-three);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }

  13% {
    clip-path: var(--clip-three);
    transform: translate(0, 0);
  }

  14%,
  21% {
    clip-path: var(--clip-four);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }

  25% {
    clip-path: var(--clip-five);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }

  30% {
    clip-path: var(--clip-five);
    transform: translate(calc(var(--shimmy-distance) * -1%), 0);
  }

  35%,
  45% {
    clip-path: var(--clip-six);
    transform: translate(calc(var(--shimmy-distance) * -1%));
  }

  40% {
    clip-path: var(--clip-six);
    transform: translate(calc(var(--shimmy-distance) * 1%));
  }

  50% {
    clip-path: var(--clip-six);
    transform: translate(0, 0);
  }

  55% {
    clip-path: var(--clip-seven);
    transform: translate(calc(var(--shimmy-distance) * 1%), 0);
  }

  60% {
    clip-path: var(--clip-seven);
    transform: translate(0, 0);
  }

  31%,
  61%,
  100% {
    clip-path: var(--clip-four);
  }
}

.arrow {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  text-decoration: none;
  text-transform: capitalize;
}

.arrow.arrow-1 {
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.arrow.arrow-1:before {
  content: "➡";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  /* right: 0; */
  left: 0;
  opacity: 0;
  width: 20px;
  height: 100%;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.arrow.arrow-1:hover {
  /* text-indent: -20px; */
  text-indent: 20px;
}
.arrow.arrow-1:hover:before {
  opacity: 1;
  text-indent: 0;
}

.arrow.arrow-2 {
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.arrow.arrow-2:before {
  content: "➡";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  background: #9774b3;
  border-radius: 0 6px 6px 0;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  text-align: center;
}
.arrow.arrow-2:hover {
  text-indent: -20px;
}
.arrow.arrow-2:hover:before {
  right: 0;
  text-indent: 0;
}

.arrow.arrow-3 {
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.arrow.arrow-3:before {
  content: "➡";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 20px;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.arrow.arrow-3:hover {
  text-indent: -9999px;
}
.arrow.arrow-3:hover:before {
  top: 0;
  text-indent: 0;
}

.arrow.arrow-4 {
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.arrow.arrow-4:before {
  content: "➡";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 20px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.arrow.arrow-4:hover {
  text-indent: -9999px;
}
.arrow.arrow-4:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  text-indent: 0;
}

.arrow.arrow-5 {
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.arrow.arrow-5:before {
  content: "➡";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0 50% 50% 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
.arrow.arrow-5:hover {
  text-indent: 20px;
}
.arrow.arrow-5:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  text-indent: 0;
}

/* ------------------------------------------------------------------- 
 * squeeze box style
 * 
 * ------------------------------------------------------------------- */
.desktop-wrapper {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.desktop-wrapper .options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
  height: 600px;
}

@media screen and (max-width: 768px) {
  .desktop-wrapper .options {
    flex-direction: column;
  }
}

.desktop-wrapper .options .option {
  position: relative;
  overflow: hidden;
  min-width: 80px;
  min-height: 80px;
  /* background-size: 750px auto; */
  background-repeat: no-repeat;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  color: #ffffff;
}

.desktop-wrapper .options .option.active {
  flex-grow: 10000;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.desktop-wrapper .options .option.active > div {
  z-index: 1;
}

.desktop-wrapper .options .option.active > div .info-wrapper {
  position: absolute;
  z-index: 999;
  left: 40px;
  top: 80px;
}

.desktop-wrapper .options .option.active > div .info-wrapper .title {
  /* font-size: 1.953rem; */
  text-transform: uppercase;
  line-height: 1;
  opacity: 1;
  position: relative;
  margin: 0 0 0.5rem;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.desktop-wrapper .options .option.active > div .info-wrapper .subtitle {
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.035rem;
  line-height: 1.125;
  margin: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0.5s;
  -moz-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.desktop-wrapper .options .option.active > div .info-wrapper .description {
  left: 0px;
  opacity: 1;
  margin-top: 1.5rem;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.desktop-wrapper .options .option.active > div .info-wrapper .description p {
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.desktop-wrapper .options .option.active > div .info-wrapper .ext-link {
  text-decoration: none;
  width: 6rem;
  color: #e9ecef;
  text-shadow: 1px 2px 4px rgba(33, 37, 41, 0.5);
  box-shadow: 2px 2px 4px rgba(33, 37, 41, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.2s linear 0s;
}

.desktop-wrapper .options .option.active > div .info-wrapper .ext-link:after {
  position: absolute;
  transition: 0.3s;
  content: "";
  width: 0;
  left: 0;
  bottom: 0;
  height: 0.15rem;
  background: rgba(255, 255, 255, 0.2);
}

.desktop-wrapper .options .option.active > div .info-wrapper .ext-link:hover {
  text-shadow: none;
  box-shadow: 3px 3px 8px rgba(33, 37, 41, 0.6);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.desktop-wrapper
  .options
  .option.active
  > div
  .info-wrapper
  .ext-link:hover:after {
  left: 0;
  width: 100%;
}

.desktop-wrapper .options .option.active > div:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 101%;
  top: 0;
  left: 0;
  z-index: 1;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0.65) 30%,
    rgba(0, 0, 0, 0) 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.65) 30%,
    rgba(0, 0, 0, 0) 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65) 30%,
    rgba(0, 0, 0, 0) 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.desktop-wrapper .options .option.active > div .icon-wrapper {
  display: flex;
  align-items: flex-start;
  align-content: baseline;
}

.desktop-wrapper .options .option.active > div .icon-wrapper .category-text {
  opacity: 1;
  display: initial;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.desktop-wrapper
  .options
  .option.active
  > div
  .icon-wrapper
  .category-icon:before {
  opacity: 1;
}

.desktop-wrapper .options .option:not(.active) {
  flex-grow: 1;
  filter: grayscale(70%);
}

.desktop-wrapper .options .option:not(.active):hover {
  filter: grayscale(0%);
}

.desktop-wrapper .options .option:not(.active):hover > div:before {
  background: rgba(2, 24, 31, 0.5);
}

.desktop-wrapper .options .option:not(.active) > div .title,
.desktop-wrapper .options .option:not(.active) > div .subtitle,
.desktop-wrapper .options .option:not(.active) > div .description {
  opacity: 0;
}

.desktop-wrapper .options .option:not(.active) > div .icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1rem;
}

.desktop-wrapper
  .options
  .option:not(.active)
  > div
  .icon-wrapper
  .category-icon:before {
  opacity: 0.5;
}

.desktop-wrapper .options .option:not(.active) > div:before {
  background: rgba(52, 58, 64, 0.6);
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.desktop-wrapper .options .option > div {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.desktop-wrapper .options .option > div .icon-wrapper .category-text {
  line-height: 40px;
  padding-left: 0.75rem;
  opacity: 0;
  display: none;
}

.desktop-wrapper .options .option > div .icon-wrapper .category-icon {
  display: flex;
  align-items: flex-start;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  position: relative;
  box-shadow: 0 2px 9px rgba(33, 37, 41, 0.4);
}

.desktop-wrapper .options .option > div .icon-wrapper .category-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  /* -webkit-mask-image: url(.../fonts/sports_biotech_icon.svg); */
  /* mask-image: url(./images/sports_biotech_icon.svg); */
  background-color: #ffffff;
  height: 20px;
  width: 21px;
}

.desktop-wrapper .options .option > div .icon-wrapper.sb .category-icon {
  background-color: #663399;
}

.desktop-wrapper .options .option > div .icon-wrapper.ce .category-icon {
  background-color: #663399;
}

.options > :nth-child(1) {
  background-color: #9774b3;
  background-image: url("../images/furniture-s1.jpg");
  background-position: center center;
  background-size: cover;
}

.options > :nth-child(2) {
  background-color: #9774b3;
  background-image: url("../images/furniture-s2.jpg");
  background-position: center center;
  background-size: cover;
}

.options > :nth-child(3) {
  background-color: #9774b3;
  background-image: url("../images/furniture-s3.jpg");
  background-position: center center;
  background-size: cover;
}

.options > :nth-child(4) {
  background-color: #9774b3;
  background-image: url("../images/furniture-s4.jpg");
  background-position: center center;
  background-size: cover;
}

.options > :nth-child(5) {
  background: #9774b3;
  background-image: url("../images/solution-h5.jpg");
  background-position: center center;
  background-size: cover;
}

/* -------------------------------------------------------------------
 * # gallery
 *
 * ------------------------------------------------------------------- */

.gallery {
  display: flex;
  width: 100%;
  height: 600px;
}

@media screen and (max-width: 768px) {
  .gallery {
    flex-direction: column;
  }
}

.gallery-item {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 0.8s ease;
}
.gallery-item:hover {
  flex: 7;
}

.gallery-automotive-1 {
  background-image: url("../images/automotive-s1.jpg");
}

.gallery-automotive-2 {
  background-image: url("../images/automotive-s2.jpg");
}

.gallery-automotive-3 {
  background-image: url("../images/automotive-s3.jpg");
}

.gallery-automotive-4 {
  background-image: url("../images/automotive-s4.jpg");
}

.gallery-automotive-5 {
  background-image: url("../images/automotive-s1-en.jpg");
}

.gallery-automotive-6 {
  background-image: url("../images/automotive-s2-en.jpg");
}

.gallery-automotive-7 {
  background-image: url("../images/automotive-s3-en.jpg");
}

.gallery-automotive-8 {
  background-image: url("../images/automotive-s4-en.jpg");
}

/* -------------------------------------------------------------------
 * # select
 *
 * ------------------------------------------------------------------- */

.chosen-select,
.chosen-select-deselect {
  width: 100%;
}

.chosen-container {
  display: inline-block;
  position: relative;
  width: 100% !important;
  font-size: 1rem;
  text-align: left;
  vertical-align: middle;
}
.chosen-container .chosen-drop {
  background: #ffffff;
  border: 1px solid #663399;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  margin-top: -1px;
  position: absolute;
  top: 100%;
  left: -9000px;
  z-index: 1060;
}
.chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
  right: 0;
}
.chosen-container .chosen-results {
  margin: 0;
  position: relative;
  max-height: 15rem;
  padding: 0.5rem 0 0 0;
  color: #6c757d;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
  display: none;
  line-height: 1.5;
  list-style: none;
  margin: 0;
  padding: 0.25rem 0.25rem 0.25rem 1.5rem;
}
.chosen-container .chosen-results li em {
  font-style: normal;
  color: #6c757d;
}
.chosen-container .chosen-results li.group-result {
  display: list-item;
  cursor: default;
  padding-left: 0.75rem;
  color: #adb5bd;
  font-weight: normal;
  text-transform: uppercase;
}
.chosen-container .chosen-results li.group-option {
  padding-left: 1.5rem;
}
.chosen-container .chosen-results li.active-result {
  cursor: pointer;
  display: list-item;
}
.chosen-container .chosen-results li.result-selected {
  color: #495057;
}
.chosen-container .chosen-results li.result-selected:before {
  display: inline-block;
  position: relative;
  top: 0.3rem;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: -1.25rem;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23495057' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 1.25rem 1.25rem;
  background-position: center center;
  background-repeat: no-repeat;
}
.chosen-container .chosen-results li.highlighted {
  background-color: #9774b3;
  background-image: none;
  color: white;
}
.chosen-container .chosen-results li.highlighted:before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}
.chosen-container .chosen-results li.highlighted em {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
}
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ced4da;
}
.chosen-container .chosen-results .no-results {
  display: list-item;
  padding: 0.25rem 0 1rem 1.065rem;
  color: #dc3545;
}
.chosen-container .chosen-results-scroll {
  background: white;
  margin: 0 0.25rem;
  position: absolute;
  text-align: center;
  width: 20rem;
  z-index: 1;
}
.chosen-container .chosen-results-scroll span {
  display: inline-block;
  height: 1.5;
  text-indent: -5000px;
  width: 0.5rem;
}

.chosen-container-single .chosen-single {
  background-color: #fff;
  background-clip: padding-box;
  border-bottom: 1px solid #8c8c8c;
  color: #6c757d;
  display: block;
  height: calc(2.25rem + 2px);
  overflow: hidden;
  line-height: calc(2.25rem + 2px);
  padding: 0 0 0 0.75rem;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
.chosen-container-single .chosen-single abbr {
  display: inline-block;
  position: absolute;
  top: 0.45rem;
  right: 2.5rem;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23dc3545' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  background-size: 1.5rem 1.5rem;
  background-position: center center;
  background-repeat: no-repeat;
}
.chosen-container-single .chosen-single abbr:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23921925' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}
.chosen-container-single .chosen-single span {
  display: block;
  margin-right: 1.5rem;
  text-overflow: ellipsis;
}
.chosen-container-single
  .chosen-single.chosen-disabled
  .chosen-single
  abbr:hover {
  background-position: right 2px;
}
.chosen-container-single .chosen-single div {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 100%;
  padding-left: 0.5rem;
  background-color: #fff;
}
.chosen-container-single .chosen-single div:after {
  display: inline-block;
  position: relative;
  top: 0.25rem;
  left: -1rem;
  width: 2rem;
  height: 2rem;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23adb5bd' d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/%3E%3C/svg%3E");
  background-size: 2rem 2rem;
  background-position: center center;
  background-repeat: no-repeat;
}

.chosen-container-single .chosen-default {
  color: #adb5bd;
}

.chosen-container-single a:not([href]):not([tabindex]) {
  color: #adb5bd !important;
}

.chosen-container-single
  a:not([href]):not([tabindex]).chosen-single:not(.chosen-default) {
  color: #6c757d !important;
}

.chosen-container-single .chosen-search-input {
  display: none;
  border: none;
}

.chosen-container-single .chosen-search {
  margin: 0;
  padding: 0.5rem 0.5rem 0 0.5rem;
  position: relative;
  white-space: nowrap;
  z-index: 1000;
}
.chosen-container-single .chosen-search:after {
  display: inline-block;
  position: relative;
  top: 0.365rem;
  left: -1.75rem;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23adb5bd' d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
  background-size: 1.25rem 1.25rem;
  background-position: center center;
  background-repeat: no-repeat;
}
.chosen-container-single .chosen-search input[type="text"] {
  background-color: #f8f9fa;
  border-bottom: 1px solid #8c8c8c;
  outline: none;
  padding: 0.25rem 1rem 0.25rem 0.5rem;
  width: 100%;
}

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  background-clip: padding-box;
}

.chosen-container-single-nosearch .chosen-search {
  display: none;
}

.chosen-container-multi .chosen-choices {
  background-color: #fff;
  border-bottom: 1px solid #8c8c8c;
  cursor: text;
  height: auto !important;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}
.chosen-container-multi .chosen-choices .search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.chosen-container-multi .chosen-choices .search-field input[type="text"] {
  background: transparent !important;
  border: 0 !important;
  color: #adb5bd;
  height: calc(2.25rem + 2px);
  margin: 0;
  padding: 0 0 0 0.75rem;
  outline: 0;
  width: 100% !important;
}

.chosen-container-multi .chosen-choices .search-field .default {
  color: #ced4da;
}
.chosen-container-multi .chosen-choices .search-choice {
  background-clip: padding-box;
  position: relative;
  margin: 0.35rem 0 0 0.5rem;
  padding: 0.25rem 1.5rem 0.25rem 0.25rem;
  border-bottom: 1px solid #8c8c8c;
  background-color: #f8f9fa;
  cursor: default;
  font-size: 0.875rem;
  line-height: 1;
  color: #6c757d;
}
.chosen-container-multi .chosen-choices .search-choice .search-choice-close {
  display: inline-block;
  position: absolute;
  top: 0.2rem;
  right: 0.125rem;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23dc3545' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  background-size: 1rem 1rem;
  background-position: center center;
  background-repeat: no-repeat;
}
.chosen-container-multi
  .chosen-choices
  .search-choice
  .search-choice-close:hover {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23921925' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}
.chosen-container-multi .chosen-choices .search-choice-focus {
  background: #dee2e6;
}
.chosen-container-multi
  .chosen-choices
  .search-choice-focus
  .search-choice-close {
  background-position: right -11px;
}

.chosen-container-multi .chosen-drop .result-selected {
  display: none;
}

.chosen-container-active .chosen-single {
  border: 1px solid #663399;
  transition:
    border linear 0ms,
    box-shadow linear 0ms;
}
@media screen and (prefers-reduced-motion: reduce) {
  .chosen-container-active .chosen-single {
    transition: none;
  }
}

.chosen-container-active.chosen-with-drop .chosen-single {
  background-color: #fff;
  border: 1px solid #663399;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  transition:
    border linear 0ms,
    box-shadow linear 0ms;
}
@media screen and (prefers-reduced-motion: reduce) {
  .chosen-container-active.chosen-with-drop .chosen-single {
    transition: none;
  }
}
.chosen-container-active.chosen-with-drop .chosen-single div:after {
  display: inline-block;
  position: relative;
  top: 0.25rem;
  left: -1rem;
  width: 2rem;
  height: 2rem;
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23adb5bd' d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z'/%3E%3C/svg%3E");
  background-size: 2rem 2rem;
  background-position: center center;
  background-repeat: no-repeat;
}

.chosen-container-active .chosen-choices {
  /* border: 1px solid #663399; */
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  transition:
    border linear 0ms,
    box-shadow linear 0ms;
}
@media screen and (prefers-reduced-motion: reduce) {
  .chosen-container-active .chosen-choices {
    transition: none;
  }
}
.chosen-container-active .chosen-choices .search-field input[type="text"] {
  color: #6c757d !important;
}

.chosen-container-active.chosen-with-drop .chosen-choices {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.chosen-container-active.chosen-with-drop .chosen-search-input {
  display: inline-block;
}

.chosen-disabled {
  cursor: default;
  opacity: 0.5 !important;
}
.chosen-disabled .chosen-single {
  cursor: default;
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}

.chosen-container-optgroup-clickable li.group-result {
  text-transform: none !important;
}
.chosen-container-optgroup-clickable li.group-result:hover {
  background-color: #9774b3;
  color: white;
  cursor: pointer;
}

.chosen-container.is-valid .chosen-single,
.chosen-container.is-valid .chosen-choices,
.chosen-container.is-valid .chosen-drop,
.chosen-container:valid .chosen-single,
.chosen-container:valid .chosen-choices,
.chosen-container:valid .chosen-drop {
  border-color: #52c41a;
}

.chosen-container.is-invalid .chosen-single,
.chosen-container.is-invalid .chosen-choices,
.chosen-container.is-invalid .chosen-drop,
.chosen-container:invalid .chosen-single,
.chosen-container:invalid .chosen-choices,
.chosen-container:invalid .chosen-drop {
  border-color: #f5222d;
}

/* -------------------------------------------------------------------
 * # shows
 *
 * ------------------------------------------------------------------- */
@-webkit-keyframes pgmOut {
  from {
    -webkit-transform: perspective(1400px);
    transform: perspective(1400px);
  }

  40% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 60deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, 60deg);
    opacity: 1;
  }

  50% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, 180deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, 180deg);
    opacity: 0;
  }
}

.outer {
  -webkit-animation: pgmOut 0.75s linear;
  animation: pgmOut 0.75s linear;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes pgmIn {
  from {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -180deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, -180deg);
    opacity: 0;
  }

  50% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -90deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, -90deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: perspective(1400px) rotate3d(0, 1, 0, -60deg);
    transform: perspective(1400px) rotate3d(0, 1, 0, -60deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(1400px);
    transform: perspective(1400px);
    opacity: 1;
  }
}

.inner {
  -webkit-animation: pgmIn 0.75s linear;
  animation: pgmIn 0.75s linear;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.show-item {
  position: relative;
  width: 100%;
}
.correct {
  position: absolute;
  width: 100%;
}
.opposite {
  width: 100%;
}
.opposite div{
  width: 100%;
}
.opposite-content{
  width: 100%;
}
.opposite-content img{
  width: 100%;
}