.reservation__body {
  padding: 24px;
  background-color: #fff; }

.reservation__title {
  font-size: 2rem;
  padding: 12px 12px 12px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; }

.reservation__type__btns {
  display: flex;
  gap: 12px; }

.reservation__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  margin: 12px 0; }

.reservation__loading {
  font-size: 1rem;
  font-weight: 400;
  margin: 24px 0; }

.user__reservations__item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex: 1 1 33%;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: 12px;
  background-color: #eee; }
  .user__reservations__item__block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    font-size: 1.5rem;
    font-weight: 600;
    background-color: #fff;
    border: 1px solid #000;
    padding: 12px 24px;
    width: 100%;
    gap: 6px; }
    .user__reservations__item__block--title {
      font-size: 0.9rem;
      text-align: left;
      color: #999; }
    .user__reservations__item__block--object {
      display: flex;
      border: none;
      background-color: #eee;
      text-align: left;
      flex-direction: column;
      gap: 3px;
      justify-content: flex-start;
      align-items: flex-start;
      text-align: center; }

.trade__result {
  margin: auto;
  max-width: 360px; }
  .trade__result__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
    border-bottom: 1px solid #eee; }
  .trade__result__sub-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 12px 0;
    text-align: center; }
  .trade__result--success {
    border: 2px solid #1fbb22;
    color: #1fbb22;
    border-radius: 6px;
    padding: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px; }
  .trade__result--fail {
    border: 2px solid red;
    color: red;
    border-radius: 6px;
    padding: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px; }
  .trade__result__info {
    margin: 24px 0;
    padding: 12px;
    background-color: #eee;
    border-radius: 6px; }
  .trade__result__daily-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px; }
  .trade__result__daily-service {
    background-color: #fff;
    border-radius: 6px;
    padding: 3px 6px;
    text-align: center;
    font-size: 1rem;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px; }
    .trade__result__daily-service :last-child {
      margin-left: auto; }
    .trade__result__daily-service__img {
      width: 50px;
      -o-object-fit: cover;
         object-fit: cover;
      margin: 6px 3px;
      font-size: 40px; }
  .trade__result__price {
    font-weight: 600;
    margin: 0 6px;
    font-size: 1rem; }
  .trade__result__price--del {
    color: red;
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: line-through; }

.chicken-soup__main {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 97vh;
  width: 100vw;
  overflow: hidden; }

.chicken-soup__logo {
  z-index: 1001;
  position: absolute;
  top: 5%;
  left: 5%;
  border: 1px solid #a7a7a7;
  background-color: #fff;
  padding: 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.9rem;
  gap: 24px;
  font-weight: 400;
  color: #3b3b3b;
  letter-spacing: 1px; }
  .chicken-soup__logo > img {
    height: 64px; }
  .chicken-soup__logo__text {
    border-left: 1px solid #b99797;
    padding-left: 24px; }

.chicken-soup__card {
  position: absolute;
  height: 300px;
  width: 200px;
  border-radius: 12px;
  cursor: pointer;
  perspective: 1000px;
  transition: top 1s ease-out,left 1s ease-out; }
  .chicken-soup__card--shake {
    animation: glow-animation 2s ease infinite;
    /* shake 0.5s infinite, */
    cursor: auto; }
  .chicken-soup__card__back, .chicken-soup__card__front {
    position: absolute;
    border-radius: 12px;
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); }
  .chicken-soup__card__back {
    animation: changeBackgroundColor 3s ease-in infinite;
    /* float 5s linear infinite, */
    background-image: url("/static/images/soup_back.png"); }
  .chicken-soup__card__front {
    background-image: url("/static/images/soup_front.png");
    transform: rotateY(180deg);
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    color: #fff; }
    .chicken-soup__card__front__text {
      text-align: center;
      padding: 12px;
      color: #fff;
      font-weight: 600;
      opacity: 0; }
      .chicken-soup__card__front__text--show {
        opacity: 1;
        animation: fadeInFromNone 3s ease-in; }

.flip-card-container {
  border-radius: 12px;
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s; }

.flip {
  transform: rotateY(180deg); }

@keyframes float {
  0% {
    transform: translate(0, 0); }
  25% {
    transform: translate(0, 10px); }
  50% {
    transform: translate(0, 0); }
  75% {
    transform: translate(0, -10px); }
  100% {
    transform: translate(0, 0); } }

@keyframes changeBackgroundColor {
  0%, 100% {
    background-color: initial;
    border-color: #fff; }
  50% {
    background-color: #fff;
    border-color: #ededed; } }

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

@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0; }
  70% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }

@keyframes glow-animation {
  from {
    box-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 15px #FFEA00, 0 0 20px #FFEA00, 0 0 25px #FFEA00; }
  to {
    box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFEA00, 0 0 40px #FFEA00, 0 0 50px #FFEA00; } }

.Collapsible {
  background-color: #ffffff; }
  .Collapsible ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: #FBF9F4; }
    .Collapsible ul li {
      cursor: pointer;
      width: 50%;
      padding-top: 8px;
      padding-bottom: 8px;
      margin: 0 5px;
      list-style: none;
      font-size: 20px;
      font-weight: 400;
      border-bottom: 2px solid rgba(175, 147, 40, 0.5); }
      @media all and (max-width: 479px) {
        .Collapsible ul li {
          width: 100%;
          padding: 8px 5px; } }
      @media all and (min-width: 991px) {
        .Collapsible ul li:hover {
          background-color: rgba(175, 147, 40, 0.6); } }
      .Collapsible ul li .lesson {
        width: 100%;
        max-width: calc(100% - 20px);
        text-align: left;
        margin: 0; }
      .Collapsible ul li .lesson__play {
        vertical-align: text-top;
        line-height: 12px;
        padding: 8px;
        color: #FBF9F4;
        font-size: 12px;
        border-radius: 50px;
        background-color: #AF9328; }
        @media all and (max-width: 479px) {
          .Collapsible ul li .lesson__play {
            margin: 0 5px 0 0; } }
      .Collapsible ul li .lesson__name {
        display: inline-block;
        padding-left: 15px; }
      .Collapsible ul li .lesson__doc {
        float: right;
        margin: 0;
        width: 20px;
        transform: translateX(-15px);
        color: #AF9328; }
        @media all and (min-width: 991px) {
          .Collapsible ul li .lesson__doc:hover {
            color: #ffffff; } }

.Collapsible__contentInner {
  border: 1px solid #ffffff;
  border-top: 0; }
  .Collapsible__contentInner p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px; }
    .Collapsible__contentInner p:last-child {
      margin-bottom: 0; }

.Collapsible__trigger {
  cursor: pointer;
  display: block;
  font-weight: 600;
  text-decoration: none;
  color: #4A4A4A;
  font-size: 22px;
  position: relative;
  border-bottom: 2px solid rgba(175, 147, 40, 0.5);
  padding: 3px 0 5px;
  background: white; }
  .Collapsible__trigger:after {
    font-size: 25px;
    color: #AF9328;
    content: '^';
    position: absolute;
    top: 0px;
    right: 10px;
    display: block;
    transform: rotateZ(90deg);
    transition: transform 300ms; }
  .Collapsible__trigger.is-open:after {
    transform: rotateZ(180deg); }
  .Collapsible__trigger.is-disabled {
    opacity: 0.5;
    background-color: grey; }

.CustomTriggerCSS {
  background-color: lightcoral;
  transition: background-color 200ms ease; }

.CustomTriggerCSS--open {
  background-color: darkslateblue; }

.Collapsible__custom-sibling {
  padding: 5px;
  font-size: 12px;
  background-color: #CBB700;
  color: black; }

/*--- controllers ---*/
.controllers {
  position: absolute;
  bottom: 0;
  height: 50px;
  background-color: #000000;
  width: 100%; }
  .controllers button {
    background-color: #FFFFFF;
    color: #777;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin: 5px;
    box-shadow: 1px 1px 3px #4C4C4C;
    outline: none;
    font-size: 18px;
    display: inline-block;
    vertical-align: sub; }
    .controllers button:active {
      box-shadow: 1px 0px 7px #4C4C4C;
      border-color: #F2E7BC;
      color: #F2E7BC;
      background-color: #4C4C4C; }

.btnPlay:after {
  content: "\E072";
  font-family: 'Glyphicons Halflings'; }

.paused:after {
  content: "\E073";
  font-family: 'Glyphicons Halflings'; }

.sound:after {
  content: "\E037";
  font-family: 'Glyphicons Halflings'; }

.sound2:after {
  content: "\E038";
  font-family: 'Glyphicons Halflings'; }

.muted:after {
  content: "\E036";
  font-family: 'Glyphicons Halflings'; }

.btnFS:after {
  content: "\E140";
  font-family: 'Glyphicons Halflings'; }

.bigplay {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  z-index: 2;
  color: #AF9328;
  font-size: 50px;
  text-align: center;
  cursor: pointer;
  text-shadow: 0px 0px 15px #F2E7BC; }

.link:before {
  content: "\E029";
  font-family: 'Glyphicons Halflings';
  color: #F2E7BC;
  float: left;
  transform: translateY(2px);
  margin: 0 15px 0 10px; }

.link--invalid:before {
  content: "\E033";
  font-family: 'Glyphicons Halflings';
  color: #F2E7BC;
  float: left;
  transform: translateY(2px);
  margin: 0 15px 0 10px; }

.playing {
  background-color: #AF9328;
  transition: 0s; }

/* volume bar */
.volume {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 70px;
  height: 10px;
  margin-right: 15px;
  background-color: #999; }
  @media all and (max-width: 479px) {
    .volume {
      display: none; } }

.volumeBar {
  display: inline-block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F2E7BC;
  z-index: 10; }
  @media all and (max-width: 479px) {
    .volumeBar {
      display: none; } }

/* PROGRESS BAR CSS */
.topControl {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 50px;
  background-color: #fff;
  z-index: 1; }

/* Progress bar */
.progress {
  width: 100%;
  height: 5px;
  position: relative;
  float: left;
  cursor: pointer;
  background: #999; }
  .progress span {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block; }

.timeBar {
  z-index: 10;
  width: 0;
  background: #F2E7BC; }

.bufferBar {
  z-index: 5;
  width: 0;
  background: #eee; }

/* time and duration */
.topControl .time {
  width: 12%;
  float: right;
  text-align: center;
  font-size: 11px;
  line-height: 12px;
  right: -12%;
  opacity: 0;
  position: absolute;
  color: #AF9328; }
  .topControl .time .time__current {
    font-size: 11px; }
  .topControl .time .time__duration {
    font-size: 11px; }

.topControl .progress {
  width: 88%;
  height: 12px; }

.topControl .time {
  right: 0;
  opacity: 1; }

.loading {
  height: 5%;
  width: 5%;
  position: absolute;
  top: 25vh;
  left: calc(25vw - 165px);
  z-index: 11;
  font-size: 80px;
  line-height: calc(100vh - 40px);
  text-align: center; }

.disabled {
  pointer-events: none;
  cursor: not-allowed;
  background-color: #C2C2C2 !important; }

ul.speedcnt {
  padding: 0px;
  box-shadow: 1px 0px 7px #AF9328;
  display: none;
  position: absolute;
  right: 30px;
  bottom: 60px;
  background-color: #fff;
  border-radius: 5px;
  list-style: none;
  transition: 0s;
  z-index: 3; }

ul.speedcnt li {
  color: #AF9328;
  line-height: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 20px;
  margin: 0;
  cursor: pointer;
  display: block;
  border-bottom: 1px solid #AF9328; }

ul.speedcnt li:last-child {
  border-bottom: none; }

ul.speedcnt li.selected {
  color: #ffffff;
  background-color: #AF9328; }

.video__slider-time {
  position: relative;
  display: inline-block;
  background-color: #dfe0e4;
  border-radius: 3px;
  height: 4px;
  width: 100%;
  margin: 0;
  cursor: pointer; }
  .video__slider-time .value {
    position: absolute;
    background-color: #AF9328;
    top: 0;
    height: 100%; }
  .video__slider-time .handle {
    position: absolute;
    width: 4px;
    height: 4px; }
    .video__slider-time .handle:after {
      position: relative;
      display: block;
      content: '';
      height: 20px;
      top: -8px;
      background-color: #fff;
      border: 3px solid #AF9328;
      cursor: pointer; }

.vids .Collapsible {
  cursor: pointer; }
  .vids .Collapsible .Collapsible__trigger {
    background-color: #5f5f5f;
    color: #ffffff;
    padding: 5px 10px; }
  .vids .Collapsible .Collapsible__contentInner {
    border: none; }
  .vids .Collapsible ul {
    background-color: #000000; }
    .vids .Collapsible ul li {
      margin: 0;
      width: 100%;
      padding: 0;
      border-bottom: none; }

.desktop--hide {
  display: none; }

@media screen and (max-width: 600px) {
  .desktop--hide {
    display: initial; } }

#warning-message {
  display: none; }

.desktop--hide {
  display: none; }

@media all and (max-width: 479px) {
  .mobile--hide {
    display: none; }
  .desktop--hide {
    display: inherit; } }

.videowrap * {
  margin: 0;
  padding: 0; }

.videowrap {
  width: 100vw;
  background: #010101;
  margin: auto;
  position: relative;
  height: 100vh; }

.swal2-popup .swal2-content {
  font-size: 16px; }

h2.title {
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 2em;
  display: block;
  margin: auto;
  background-color: #A97A7A; }

body {
  margin: 0;
  padding: 0; }

.vertical--center, .vidcontainer {
  display: flex;
  align-items: center;
  justify-content: center; }

.vidcontainer {
  background-color: rgba(0, 0, 0, 0.4);
  width: 75%;
  height: 100%;
  float: right;
  position: relative;
  overflow: hidden; }
  .vidcontainer .video {
    position: absolute;
    max-height: 100%;
    width: 100%;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center; }
    @media all and (max-width: 479px) {
      .vidcontainer .video {
        width: 100%;
        left: 0; } }
    .vidcontainer .video video {
      max-width: 100%;
      color: #fff; }
  @media all and (max-height: 479px) and (orientation: landscape) {
    .vidcontainer {
      position: fixed;
      width: 100%; } }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .vidcontainer {
      position: fixed;
      width: 100%; } }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .vidcontainer {
      position: fixed;
      width: 100%; } }
  @media all and (max-width: 479px) {
    .vidcontainer {
      position: fixed;
      width: 100%; } }
  @media (min-aspect-ratio: 16 / 9) {
    .vidcontainer {
      margin: 0 auto;
      min-width: 300px; }
      .vidcontainer video {
        max-width: 100%;
        max-height: 100vh;
        width: auto; } }
  .vidcontainer .video__closeButton {
    display: none;
    position: absolute;
    padding: 2px 5px;
    right: 10px;
    top: 10px;
    z-index: 2;
    background-color: rgba(252, 249, 214, 0.8);
    border: 3px solid #b6b4a0;
    border-radius: 3px; }
  .vidcontainer .video__mask {
    display: none;
    top: 0px;
    z-index: 1;
    position: absolute;
    background-color: #FCE8BB;
    width: 11%;
    height: 99%; }
    @media all and (max-width: 479px) {
      .vidcontainer .video__mask {
        height: 98%; } }
  .vidcontainer .video__mask--left {
    left: 50%; }
    .vidcontainer .video__mask--left .username {
      font-size: 22px;
      position: absolute;
      top: 30px;
      z-index: 2;
      margin: 0 0 0 10px;
      writing-mode: vertical-lr;
      font-weight: 700;
      line-height: 40px;
      text-shadow: -0.5px 0 white, 0 0.5px white, 0.5px 0 white, 0 -0.5px white; }
      @media all and (min-width: 768px) and (max-width: 992px) {
        .vidcontainer .video__mask--left .username {
          font-size: 18px; } }
      @media all and (min-width: 480px) and (max-width: 767px) {
        .vidcontainer .video__mask--left .username {
          line-height: 30px;
          font-size: 16px; } }
      @media all and (max-width: 479px) {
        .vidcontainer .video__mask--left .username {
          line-height: 20px;
          font-size: 10px;
          margin: 0; } }
    .vidcontainer .video__mask--left .teacher {
      position: absolute;
      height: 175px;
      bottom: 0px;
      left: 25px;
      z-index: 1;
      opacity: 0.6;
      filter: alpha(opacity=60); }
      @media all and (min-width: 991px) {
        .vidcontainer .video__mask--left .teacher {
          height: 175px;
          bottom: 0px;
          left: 25px; } }
      @media all and (min-width: 768px) and (max-width: 992px) {
        .vidcontainer .video__mask--left .teacher {
          height: 130px;
          bottom: 0px;
          left: 20px; } }
      @media all and (min-width: 480px) and (max-width: 767px) {
        .vidcontainer .video__mask--left .teacher {
          height: 110px;
          bottom: 10px;
          left: 10px; } }
      @media all and (max-width: 479px) {
        .vidcontainer .video__mask--left .teacher {
          height: 60px;
          bottom: 5px;
          left: 10px; } }
  .vidcontainer .video__mask--right {
    right: 50%; }
    .vidcontainer .video__mask--right .student {
      position: absolute;
      height: 175px;
      bottom: 0px;
      right: 10px;
      opacity: 0.6;
      filter: alpha(opacity=60); }
      @media all and (min-width: 991px) {
        .vidcontainer .video__mask--right .student {
          height: 175px;
          bottom: 0px;
          right: 10px; } }
      @media all and (min-width: 768px) and (max-width: 992px) {
        .vidcontainer .video__mask--right .student {
          height: 130px;
          bottom: 10px;
          right: 10px; } }
      @media all and (min-width: 480px) and (max-width: 767px) {
        .vidcontainer .video__mask--right .student {
          height: 100px;
          bottom: 10px;
          right: 10px; } }
      @media all and (max-width: 479px) {
        .vidcontainer .video__mask--right .student {
          height: 50px;
          bottom: 10px;
          right: 0px; } }
    .vidcontainer .video__mask--right .assistant {
      position: absolute;
      height: 100px;
      top: 30px;
      right: 10px;
      opacity: 0.6;
      filter: alpha(opacity=60); }
      @media all and (min-width: 991px) {
        .vidcontainer .video__mask--right .assistant {
          height: 100px;
          top: 30px;
          right: 10px;
          display: inherit; } }
      @media all and (min-width: 768px) and (max-width: 992px) {
        .vidcontainer .video__mask--right .assistant {
          height: 80px;
          top: 30px;
          right: 10px; } }
      @media all and (min-width: 480px) and (max-width: 767px) {
        .vidcontainer .video__mask--right .assistant {
          height: 60px;
          top: 30px;
          right: 10px; } }
      @media all and (max-width: 479px) {
        .vidcontainer .video__mask--right .assistant {
          display: inherit;
          height: 30px;
          top: 30px;
          right: 0px; } }

.videolist {
  float: right;
  width: 25%;
  background-color: #4c4c4c;
  height: 100%;
  position: relative; }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .videolist {
      position: fixed;
      width: 100%;
      display: none; } }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .videolist {
      position: fixed;
      width: 100%;
      display: none; } }
  @media all and (max-height: 479px) and (orientation: landscape) {
    .videolist {
      position: fixed;
      width: 100%;
      display: none; } }
  @media all and (max-width: 479px) {
    .videolist {
      position: fixed;
      width: 100%;
      display: none; } }

.vids {
  /* margin: 5px; */
  background-color: #292626;
  max-height: 90%;
  /* min-height: 450px; */
  border: 1px solid #616060;
  overflow-y: auto;
  list-style: none;
  /* direction: rtl; */ }
  @media all and (max-width: 479px) {
    .vids {
      width: 100%; } }
  .vids a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    display: block;
    padding: 8px 5px;
    margin: 5px; }

.vids__title {
  color: #ffffff;
  height: 10%;
  padding: 10px 15px; }
  .vids__title h2 {
    color: #ffffff;
    padding-right: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  .vids__title button {
    font-size: 18px;
    transform: translateY(-25px);
    float: right;
    color: #ffffff;
    background: none;
    border: none; }

.vids::-webkit-scrollbar {
  width: 5px;
  background-color: #F4F3F3;
  border: 1px solid #AFACAC; }

.vids::-webkit-scrollbar-thumb {
  background-color: #8F8F8F;
  border-radius: 5px; }

.vids::-webkit-scrollbar-thumb:hover {
  background-color: #fff; }

.vids::-webkit-scrollbar-thumb:active {
  background-color: #ccc; }

.controlcontainer {
  display: none;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100vw;
  z-index: 2; }

.show {
  display: initial; }

.long-word--hide, .tabs label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.customScrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #c8c8c8; }

.tabs {
  display: flex;
  flex-wrap: wrap; }
  .tabs .tabs__type {
    padding: 5px 0px 8px 0px; }
  .tabs input[type="radio"]:checked + .main-container__label, .tabs input[type="radio"]:checked + .main-container__label--left, .tabs input[type="radio"]:checked + .main-container__label--right {
    background-color: #b28247;
    color: #ffffff; }
  .tabs .main-container__label, .tabs .main-container__label--left, .tabs .main-container__label--right {
    width: calc(50% - 15px);
    color: #9B9B9B;
    font-size: 22px; }
    @media all and (max-width: 479px) {
      .tabs .main-container__label, .tabs .main-container__label--left, .tabs .main-container__label--right {
        width: calc(50% - 15px); } }
  .tabs .main-container__label--left {
    margin-left: 15px; }
    @media all and (max-width: 479px) {
      .tabs .main-container__label--left {
        margin-left: 15px; } }
  .tabs .main-container__label--right {
    margin-right: 15px; }
    @media all and (max-width: 479px) {
      .tabs .main-container__label--right {
        margin-right: 15px; } }
  .tabs .tab__container {
    background: none;
    max-width: 200px;
    padding: 0 8px 0 0px; }
  .tabs label {
    width: 100%;
    order: 1;
    display: inline-block;
    margin-bottom: 0px;
    text-align: center;
    padding: 0.7rem 0rem;
    cursor: pointer;
    color: rgba(87, 93, 95, 0.3);
    font-size: 18px;
    font-weight: bold;
    transition: background ease 0.2s;
    box-shadow: inset 0 -3px rgba(87, 93, 95, 0.3); }
  .tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none; }
    .tabs .tab .row {
      max-width: 100vw; }
  .tabs input[type="radio"] {
    display: none; }
  .tabs input[type="radio"]:checked + label {
    color: #b28247;
    box-shadow: inset 0 -3px #b28247; }
  .tabs input[type="radio"]:checked + label + .tab {
    display: block; }

date-input-polyfill {
  background: #fff;
  color: #000;
  text-shadow: none;
  border: 0;
  padding: 0;
  height: auto;
  width: auto;
  line-height: normal;
  font-family: sans-serif;
  font-size: 14px;
  position: absolute !important;
  text-align: center;
  box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.22);
  cursor: default;
  z-index: 1;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  overflow: hidden;
  display: block; }
  date-input-polyfill[data-open="false"] {
    visibility: hidden;
    z-index: -100 !important;
    top: 0; }
  date-input-polyfill[data-open="true"] {
    visibility: visible; }
  date-input-polyfill select, date-input-polyfill table, date-input-polyfill th, date-input-polyfill td {
    background: #fff;
    color: #000;
    text-shadow: none;
    border: 0;
    padding: 0;
    height: auto;
    width: auto;
    line-height: normal;
    font-family: sans-serif;
    font-size: 14px;
    box-shadow: none;
    font-family: 'Lato', Helvetica, Arial, sans-serif; }
  date-input-polyfill select, date-input-polyfill button {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #DADFE1;
    height: 24px;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none; }
  date-input-polyfill .monthSelect-wrapper {
    width: 55%;
    display: inline-block; }
  date-input-polyfill .yearSelect-wrapper {
    width: 25%;
    display: inline-block; }
  date-input-polyfill select {
    width: 100%; }
    date-input-polyfill select:first-of-type {
      border-right: 1px solid #DADFE1;
      border-radius: 5px 0 0 0;
      -moz-border-radius: 5px 0 0 0;
      -webkit-border-radius: 5px 0 0 0; }
  date-input-polyfill button {
    width: 20%;
    background: #DADFE1;
    border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0; }
    date-input-polyfill button:hover {
      background: #eee; }
  date-input-polyfill table {
    border-collapse: separate !important;
    border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    overflow: hidden;
    max-width: 280px;
    width: 280px; }
  date-input-polyfill th, date-input-polyfill td {
    width: 32px;
    padding: 4px;
    text-align: center;
    box-sizing: content-box; }
  date-input-polyfill td[data-day] {
    cursor: pointer; }
    date-input-polyfill td[data-day]:hover {
      background: #DADFE1; }
  date-input-polyfill [data-selected] {
    font-weight: bold;
    background: #D8EAF6; }

.account {
  position: relative;
  min-height: calc(100vh - 271px); }

.account__detail span {
  width: 30%;
  font-size: 16px;
  display: inline-block;
  text-align: right;
  padding-right: 10px; }

.account__detail .formInput--70 {
  width: 70%; }

.account__detail .formInput--60 {
  width: 60%; }

.account__detail .formInput--10 {
  width: 10%; }
  .account__detail .formInput--10 span {
    text-align: center;
    width: 100%;
    transform: translate(5px, 5px);
    font-size: 25px; }
  .account__detail .formInput--10 .glyphicon-ok-sign {
    color: green; }
  .account__detail .formInput--10 .glyphicon-minus-sign {
    color: red; }

.paper .account__facebook {
  vertical-align: middle;
  min-height: 49px;
  display: inline-block;
  width: 70%;
  text-align: center;
  color: #ffffff;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
  background-color: #3b5998; }

.paper.account__detail {
  max-width: 500px;
  margin-top: 25px; }

.paper .form-group {
  position: relative;
  margin-bottom: 5px; }

.paper i.glyphicon {
  position: absolute;
  font-size: 20px;
  z-index: 500;
  color: #dfdfdf;
  transform: translate(14px, 12px); }

.paper .form-control {
  display: inline-block;
  padding-left: 45px !important; }

.form__alert {
  color: red;
  font-weight: 600; }
  .form__alert i.glyphicon {
    position: relative;
    transform: unset;
    margin: auto 6px;
    color: red; }

.long-word--hide, .piechartcontent li, .collection .collection__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.customScrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #c8c8c8; }

.time {
  color: #b28247;
  font-size: 38px; }
  .time .time__number {
    transform: translateY(5px);
    display: inline-block;
    color: #ffffff;
    min-width: 65px;
    height: 65px;
    line-height: 65px;
    background-color: #b28247;
    text-align: center; }

.slider-time {
  position: relative;
  display: block;
  background-color: #dfe0e4;
  border-radius: 3px;
  height: 4px;
  width: 80%;
  max-width: 300px;
  margin: 50px auto 20px;
  cursor: pointer; }
  .slider-time .value {
    position: absolute;
    background-color: #b28247;
    border-radius: 3px;
    top: 0;
    height: 100%; }
  .slider-time .handle {
    position: absolute;
    width: 4px;
    height: 4px; }
    .slider-time .handle:after {
      position: relative;
      display: block;
      content: '';
      top: -10px;
      left: -12px;
      width: 24px;
      height: 24px;
      background-color: #fff;
      border: 3px solid #b28247;
      border-radius: 50%;
      cursor: pointer; }

.long-word--hide, .piechartcontent li, .collection .collection__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.customScrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #c8c8c8; }

.time {
  color: #b28247;
  font-size: 38px; }
  .time .time__number {
    transform: translateY(5px);
    display: inline-block;
    color: #ffffff;
    min-width: 65px;
    height: 65px;
    line-height: 65px;
    background-color: #b28247;
    text-align: center; }

.slider-time {
  position: relative;
  display: block;
  background-color: #dfe0e4;
  border-radius: 3px;
  height: 4px;
  width: 80%;
  max-width: 300px;
  margin: 50px auto 20px;
  cursor: pointer; }
  .slider-time .value {
    position: absolute;
    background-color: #b28247;
    border-radius: 3px;
    top: 0;
    height: 100%; }
  .slider-time .handle {
    position: absolute;
    width: 4px;
    height: 4px; }
    .slider-time .handle:after {
      position: relative;
      display: block;
      content: '';
      top: -10px;
      left: -12px;
      width: 24px;
      height: 24px;
      background-color: #fff;
      border: 3px solid #b28247;
      border-radius: 50%;
      cursor: pointer; }

.introjs-overlay {
  position: absolute;
  box-sizing: content-box;
  z-index: 999999;
  background-color: #000;
  opacity: 0;
  background: radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0.9) 100%);
  transition: all .3s ease-out; }

.introjs-fixParent {
  z-index: auto !important;
  opacity: 1 !important;
  transform: none !important; }

.introjs-showElement,
tr.introjs-showElement > td,
tr.introjs-showElement > th {
  z-index: 9999999 !important; }

.introjs-disableInteraction {
  z-index: 99999999 !important;
  position: absolute;
  background-color: #fff;
  opacity: 0; }

.introjs-relativePosition,
tr.introjs-showElement > td,
tr.introjs-showElement > th {
  position: relative; }

.introjs-helperLayer {
  box-sizing: content-box;
  position: absolute;
  z-index: 9999998;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #777;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  transition: all .3s ease-out; }

.introjs-tooltipReferenceLayer {
  box-sizing: content-box;
  position: absolute;
  visibility: hidden;
  z-index: 100000000;
  background-color: transparent;
  transition: all .3s ease-out; }

.introjs-helperLayer *,
.introjs-helperLayer :after,
.introjs-helperLayer :before {
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box; }

.introjs-helperNumberLayer {
  box-sizing: content-box;
  position: absolute;
  visibility: visible;
  top: -16px;
  left: -16px;
  z-index: 9999999999 !important;
  padding: 2px;
  font-family: Arial, verdana, tahoma;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  background: #ff3019;
  background: linear-gradient(to bottom, #ff3019 0, #cf0404 100%);
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4); }

.introjs-arrow {
  border: 5px solid transparent;
  content: '';
  position: absolute; }

.introjs-arrow.top {
  top: -10px;
  border-bottom-color: #fff; }

.introjs-arrow.top-right {
  top: -10px;
  right: 10px;
  border-bottom-color: #fff; }

.introjs-arrow.top-middle {
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border-bottom-color: #fff; }

.introjs-arrow.right {
  right: -10px;
  top: 10px;
  border-left-color: #fff; }

.introjs-arrow.right-bottom {
  bottom: 10px;
  right: -10px;
  border-left-color: #fff; }

.introjs-arrow.bottom {
  bottom: -10px;
  border-top-color: #fff; }

.introjs-arrow.bottom-right {
  bottom: -10px;
  right: 10px;
  border-top-color: #fff; }

.introjs-arrow.bottom-middle {
  bottom: -10px;
  left: 50%;
  margin-left: -5px;
  border-top-color: #fff; }

.introjs-arrow.left {
  left: -10px;
  top: 10px;
  border-right-color: #fff; }

.introjs-arrow.left-bottom {
  left: -10px;
  bottom: 10px;
  border-right-color: #fff; }

.introjs-tooltip {
  box-sizing: content-box;
  position: absolute;
  visibility: visible;
  padding: 10px;
  background-color: #fff;
  min-width: 200px;
  max-width: 300px;
  border-radius: 3px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  transition: opacity .1s ease-out; }

.introjs-tooltipbuttons {
  text-align: right;
  white-space: nowrap; }

.introjs-button {
  box-sizing: content-box;
  position: relative;
  overflow: visible;
  display: inline-block;
  padding: .3em .8em;
  border: 1px solid #d4d4d4;
  margin: 0;
  text-decoration: none;
  text-shadow: 1px 1px 0 #fff;
  font: 11px/normal sans-serif;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
  outline: 0;
  background-color: #ececec;
  background-image: linear-gradient(#f4f4f4, #ececec);
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  border-radius: .2em;
  zoom: 1;
  margin-top: 10px; }

.introjs-button:hover {
  border-color: #bcbcbc;
  text-decoration: none;
  box-shadow: 0 1px 1px #e3e3e3; }

.introjs-button:active,
.introjs-button:focus {
  background-image: linear-gradient(#ececec, #f4f4f4); }

.introjs-button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.introjs-skipbutton {
  box-sizing: content-box;
  margin-right: 5px;
  color: #7a7a7a; }

.introjs-prevbutton {
  border-radius: .2em 0 0 .2em;
  border-right: none; }

.introjs-prevbutton.introjs-fullbutton {
  border: 1px solid #d4d4d4;
  border-radius: .2em; }

.introjs-nextbutton {
  border-radius: 0 .2em .2em 0; }

.introjs-nextbutton.introjs-fullbutton {
  border-radius: .2em; }

.introjs-disabled,
.introjs-disabled:focus,
.introjs-disabled:hover {
  color: #9a9a9a;
  border-color: #d4d4d4;
  box-shadow: none;
  cursor: default;
  background-color: #f4f4f4;
  background-image: none;
  text-decoration: none; }

.introjs-hidden {
  display: none; }

.introjs-bullets {
  text-align: center; }

.introjs-bullets ul {
  box-sizing: content-box;
  clear: both;
  margin: 15px auto 0;
  padding: 0;
  display: inline-block; }

.introjs-bullets ul li {
  box-sizing: content-box;
  list-style: none;
  float: left;
  margin: 0 2px; }

.introjs-bullets ul li a {
  box-sizing: content-box;
  display: block;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  text-decoration: none;
  cursor: pointer; }

.introjs-bullets ul li a:hover {
  background: #999; }

.introjs-bullets ul li a.active {
  background: #999; }

.introjs-progress {
  box-sizing: content-box;
  overflow: hidden;
  height: 10px;
  margin: 10px 0 5px 0;
  border-radius: 4px;
  background-color: #ecf0f1; }

.introjs-progressBar {
  box-sizing: content-box;
  float: left;
  width: 0%;
  height: 100%;
  font-size: 10px;
  line-height: 10px;
  text-align: center;
  background-color: #08c; }

.introjsFloatingElement {
  position: absolute;
  height: 0;
  width: 0;
  left: 50%;
  top: 50%; }

.introjs-fixedTooltip {
  position: fixed; }

.introjs-hint {
  box-sizing: content-box;
  position: absolute;
  background: 0 0;
  width: 20px;
  height: 15px;
  cursor: pointer; }

.introjs-hint:focus {
  border: 0;
  outline: 0; }

.introjs-hidehint {
  display: none; }

.introjs-fixedhint {
  position: fixed; }

.introjs-hint:hover > .introjs-hint-pulse {
  border: 5px solid rgba(60, 60, 60, 0.57); }

.introjs-hint-pulse {
  box-sizing: content-box;
  width: 10px;
  height: 10px;
  border: 5px solid rgba(60, 60, 60, 0.27);
  border-radius: 30px;
  background-color: rgba(136, 136, 136, 0.24);
  z-index: 10;
  position: absolute;
  transition: all .2s ease-out; }

.introjs-hint-no-anim .introjs-hint-dot {
  animation: none; }

.introjs-hint-dot {
  box-sizing: content-box;
  border: 10px solid rgba(146, 146, 146, 0.36);
  background: 0 0;
  border-radius: 60px;
  height: 50px;
  width: 50px;
  animation: introjspulse 3s ease-out;
  animation-iteration-count: infinite;
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: 1;
  opacity: 0; }

@keyframes introjspulse {
  0% {
    transform: scale(0);
    opacity: 0; }
  25% {
    transform: scale(0);
    opacity: .1; }
  50% {
    transform: scale(0.1);
    opacity: .3; }
  75% {
    transform: scale(0.5);
    opacity: .5; }
  100% {
    transform: scale(1);
    opacity: 0; } }

.introjs-arrow.top {
  top: -10px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #fff5bd;
  border-left-color: transparent; }

.introjs-arrow.top-right {
  top: -10px;
  right: 10px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #fff5bd;
  border-left-color: transparent; }

.introjs-arrow.top-middle {
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #fff5bd;
  border-left-color: transparent; }

.introjs-arrow.right {
  right: -10px;
  top: 10px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #fff5bd; }

.introjs-arrow.bottom {
  bottom: -10px;
  border-top-color: #fff5bd;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent; }

.introjs-arrow.left {
  left: -10px;
  top: 10px;
  border-top-color: transparent;
  border-right-color: #fff5bd;
  border-bottom-color: transparent;
  border-left-color: transparent; }

.introjs-arrow.bottom-middle {
  border-top-color: #fff5bd; }

.introjs-tooltip {
  position: absolute;
  padding: 10px;
  background-color: #fff5bd;
  min-width: 290px;
  padding-top: 30px;
  font-size: 16px;
  max-width: 330px;
  color: #676767;
  transition: opacity 0.1s ease-out; }
  .introjs-tooltip .introjs-tooltiptext {
    padding-left: 15px; }
    .introjs-tooltip .introjs-tooltiptext:after {
      position: relative;
      display: inherit;
      transform: translate(-15px, 3px);
      max-height: 75px;
      content: url("/static/images/teacher_72x72.png"); }

.introjs-button {
  position: relative;
  overflow: visible;
  display: inline-block;
  padding: 0.4em 0.8em;
  margin: 5px 2px 10px;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  zoom: 1; }

.time__container {
  display: block;
  margin: 0 auto;
  width: auto;
  transition: width 300ms ease-in;
  background-color: none; }
  .time__container .outer {
    width: 100%;
    height: 40px;
    border: 2px solid #4a4a4a;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1px; }
  .time__container .inner {
    width: 0%;
    height: 36px; }
  .time__container .face {
    position: absolute;
    margin: 0 auto;
    transform: translateX(calc(50vw - 100px)); }
    @media all and (min-width: 991px) {
      .time__container .face {
        transform: translateX(45px); } }
  .time__container .eye {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background-color: #4a4a4a; }
  .time__container .eye.left {
    transform: translateX(50px);
    top: 5px; }
  .time__container .eye.right {
    transform: translateX(100px);
    top: 5px; }
  .time__container .mouth.happy {
    width: 50px;
    height: 9px;
    background-color: none;
    position: absolute;
    top: 18px;
    left: 55px;
    border-radius: 50%;
    box-shadow: 0 5px 0 0 #4a4a4a; }
  .time__container .mouth.sad {
    width: 50px;
    height: 9px;
    background-color: none;
    position: absolute;
    top: 28px;
    left: 55px;
    border-radius: 50%;
    box-shadow: 0 5px 0 0 #4a4a4a;
    transform: rotate(180deg); }

.introduction {
  border-style: solid;
  border-width: 3px;
  padding: 40px;
  background-color: white; }
  @media all and (max-width: 479px) {
    .introduction {
      padding: 10px 10px 30px; } }
  .introduction .introduction__price {
    display: contents;
    font-size: 20px; }
  .introduction .introduction__price--sale {
    display: contents;
    font-size: 26px;
    font-weight: 700;
    color: #db2b2b; }
  .introduction h1 {
    color: #2861af;
    font-weight: 800; }
  .introduction h2 {
    color: #2861af;
    font-weight: 800; }
  .introduction h3 {
    font-size: 22px;
    color: #4a4a4a;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal; }
    @media all and (max-width: 479px) {
      .introduction h3 {
        max-width: 100%; } }
  .introduction h4 {
    font-size: 18px;
    line-height: 25px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #9b9b9b; }
  .introduction p {
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #9b9b9b; }
  .introduction button {
    margin-top: 15px;
    max-width: 180px; }
  .introduction select {
    width: 100%;
    max-width: 280px;
    height: 45px;
    line-height: 30px;
    font-size: 20px;
    text-align: center; }
    .introduction select option {
      padding: 15px 0; }
  .introduction .introduction__table {
    font-size: 18px; }
    .introduction .introduction__table table {
      max-width: 50%; }
      @media all and (max-width: 479px) {
        .introduction .introduction__table table {
          max-width: 90%; } }
  .introduction .introduction__content img {
    max-width: 100%;
    height: auto; }
  .introduction .packages__shoppingCartButton {
    z-index: 50;
    margin: 0px;
    position: fixed;
    right: 30px;
    bottom: 165px;
    width: 45px;
    height: 45px;
    font-size: 18px;
    line-height: 40px;
    border-radius: 23px;
    background: #ffffff;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12); }
    @media all and (min-width: 991px) {
      .introduction .packages__shoppingCartButton:hover {
        color: #fff;
        background-color: #ed960a; } }
  .introduction .packages__shoppingCartButton.shoppingCart__Button--active {
    color: #fff;
    background-color: #ed960a;
    opacity: 0.8; }
    @media all and (min-width: 991px) {
      .introduction .packages__shoppingCartButton.shoppingCart__Button--active:hover {
        opacity: 1; } }

.introduction__img {
  padding: 0px; }
  .introduction__img img {
    max-height: 200px;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto; }

.pick__img {
  padding: 0px;
  display: inline-block;
  vertical-align: top;
  max-width: 35%;
  overflow: hidden; }
  .pick__img img {
    width: 95%;
    height: calc(100% - 5px);
    min-height: auto;
    margin: 0 auto; }
    @media all and (min-width: 991px) {
      .pick__img img:hover {
        transform: scale(1.05); } }

.exam__mode {
  cursor: pointer; }
  .exam__mode label {
    cursor: pointer;
    position: relative;
    top: 5px; }
  .exam__mode .examMode__chks {
    min-height: 40px; }
  .exam__mode .examMode__time {
    max-width: 280px;
    padding: 15px;
    width: 100%;
    margin: 0 auto; }
    .exam__mode .examMode__time p {
      text-align: center;
      font-size: 18px;
      font-weight: 600; }
      .exam__mode .examMode__time p .examMode__timeNumber {
        text-align: right;
        display: inline-block;
        min-width: 50px;
        color: #d0021b; }
  .exam__mode .mode__label {
    border-radius: 2px;
    margin: 0 auto;
    width: 50%;
    min-height: 35px;
    line-height: 35px;
    max-width: 140px;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 1.2px;
    text-align: center;
    background-color: #eeeeee;
    color: #9b9b9b;
    cursor: pointer; }
  .exam__mode input {
    position: absolute;
    left: -9999px; }

.exam__mode--dynamic .examMode__time {
  background-color: #fdedd3; }

.exam__mode--dynamic input:checked + .mode__label {
  background-color: #fdedd3;
  color: #f5a623; }

.exam__mode--static .examMode__time {
  background-color: rgba(40, 143, 175, 0.2); }

.exam__mode--static input:checked + .mode__label {
  background-color: rgba(40, 143, 175, 0.2);
  color: #288faf; }

.question__formula {
  display: inline; }

.circle {
  border-radius: 50%;
  width: 80px;
  height: 80px; }

.question__formula > span {
  margin-top: 10px;
  display: inline-block; }

.fixedWidth__latex {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden; }

.sheet__border {
  border-color: #d9d9d9;
  border-style: solid;
  border-width: 2px;
  border-radius: 3px;
  padding: 15px;
  background-color: #fff; }
  @media all and (max-width: 479px) {
    .sheet__border {
      padding-top: 0px; }
      .sheet__border .padding--no-mobile {
        padding: 2px; } }

.remark {
  display: inline-block;
  margin-bottom: 8px;
  border: 1px solid #979797;
  border-radius: 28px;
  padding: 3px 10px;
  font-size: 20px;
  font-weight: 500; }
  .remark span {
    font-size: 20px;
    color: #D4D4D4; }
  .remark button {
    padding: 0 8px;
    border: none;
    background-color: rgba(255, 255, 255, 0);
    color: rgba(155, 155, 155, 0.23);
    cursor: pointer; }
    .remark button:focus {
      color: #4D4D4D; }

.question {
  margin-bottom: 15px;
  padding: 25px;
  text-align: left;
  font-weight: 500;
  background-color: #fff; }
  @media all and (max-width: 479px) {
    .question {
      padding: 10px; } }
  .question h1 {
    margin-top: 0px;
    color: #2861af;
    font-weight: 700; }
  .question h3 {
    margin-top: 0px;
    font-weight: 500; }
  .question ul {
    padding: 0px; }
  .question li {
    list-style: none;
    margin-bottom: 5px;
    min-height: 55px;
    position: relative; }
  .question .rate span {
    font-size: 22px;
    color: #5a5a5a;
    vertical-align: super; }
  .question .rate .rate__title {
    color: #4a4a4a;
    padding-right: 15px;
    font-weight: 600; }
  .question .rate .rate__number {
    padding-left: 15px; }
  .question .question__font {
    font-size: 20px; }
    @media all and (min-width: 768px) and (max-width: 992px) {
      .question .question__font {
        font-size: 18px; } }
    @media all and (max-width: 479px) {
      .question .question__font {
        font-size: 18px; } }
    .question .question__font div {
      padding-left: 0px; }
    .question .question__font ul {
      padding-left: 0px; }
    .question .question__font .question__img img {
      max-width: 30%;
      margin-top: 10px;
      margin-bottom: 10px;
      padding-left: 25px; }
      @media all and (min-width: 768px) and (max-width: 992px) {
        .question .question__font .question__img img {
          max-width: 70%; } }
      @media all and (max-width: 479px) {
        .question .question__font .question__img img {
          max-width: 70%; } }
  .question .question__information {
    display: inline-block; }
    .question .question__information button {
      background-color: #3399b9;
      border: 2px solid #3399b9;
      margin-right: 10px;
      margin-bottom: 10px;
      padding: 5px 15px;
      color: #ffffff; }
      @media all and (min-width: 991px) {
        .question .question__information button:hover {
          background-color: white;
          color: #3399b9;
          font-weight: 600; } }
  .question .question__favorites {
    float: right;
    text-align: center;
    padding: 5px;
    font-size: 20px;
    color: #d9d9d9;
    border: 2px solid #d9d9d9;
    border-radius: 50px;
    line-height: 0px; }
    @media all and (min-width: 991px) {
      .question .question__favorites:hover {
        color: #f5515f;
        border: 2px solid #f5515f; } }
  .question .question__favorites--checked {
    color: #f5515f;
    border: 2px solid #f5515f; }
  .question .answer__status {
    font-size: 20px;
    line-height: 35px; }

.question--listening .question__formula {
  display: none; }

.question__count {
  margin-bottom: 25px;
  height: 50px; }
  @media all and (max-width: 479px) {
    .question__count {
      position: sticky;
      top: 0px;
      z-index: 1; } }
  .question__count .question__countTitle {
    width: 50%;
    height: 50px;
    display: inline-block;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 600; }
    .question__count .question__countTitle span {
      width: auto; }
      @media all and (max-width: 479px) {
        .question__count .question__countTitle span {
          display: block;
          line-height: 25px; } }
  .question__count .question__countNumber {
    height: 50px; }
    @media all and (max-width: 479px) {
      .question__count .question__countNumber {
        transform: translateY(-13px); } }
    .question__count .question__countNumber span {
      line-height: 50px;
      display: block; }
  .question__count .question__countTitle--target {
    color: #fff;
    background-color: rgba(129, 222, 74, 0.5); }
  .question__count .question__countNumber--target {
    color: #fff;
    background-color: #5ec124; }
  .question__count .question__countTitle--suggest {
    color: #fff;
    background-color: rgba(82, 215, 233, 0.5); }
  .question__count .question__countNumber--suggest {
    color: #fff;
    background-color: #33bdd0; }
  .question__count .question__countTitle--now {
    background-color: rgba(238, 165, 75, 0.5); }
  .question__count .question__countNumber--now {
    color: #fff;
    background-color: #d2882c; }

.question__time {
  margin: 0 auto 5px;
  border: none;
  font-size: 18px;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2; }
  @media all and (min-width: 991px) {
    .question__time {
      columns: 1;
      -webkit-columns: 1;
      -moz-columns: 1; } }
  .question__time li {
    min-height: auto; }
  .question__time img {
    padding-right: 5px; }

.answerSheet {
  border: 2px solid #d9d9d9;
  background-color: #fff; }
  @media all and (min-width: 991px) {
    .answerSheet {
      min-height: 50vh; } }
  .answerSheet .right {
    text-align: right; }
  .answerSheet ul {
    padding: 25px;
    margin-bottom: 0px; }
    @media all and (min-width: 768px) and (max-width: 992px) {
      .answerSheet ul {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2; } }
    @media all and (min-width: 991px) {
      .answerSheet ul {
        min-height: calc(50vh - 80px); } }
  .answerSheet .li--now {
    background-color: rgba(40, 143, 175, 0.2);
    color: #ffffff; }
    .answerSheet .li--now span {
      color: #9b9b9b; }
  .answerSheet li {
    display: inline-block;
    margin-right: 5px;
    padding: 8px 5px;
    width: 100%;
    min-width: 96px;
    font-size: 20px;
    margin-bottom: 10px;
    cursor: pointer; }
    @media all and (min-width: 991px) {
      .answerSheet li:hover {
        background-color: rgba(40, 143, 175, 0.3);
        color: #ffffff; }
        .answerSheet li:hover span {
          color: #ffffff; } }
    .answerSheet li:focus {
      background-color: #b28247;
      color: #ffffff; }
      .answerSheet li:focus span {
        color: #ffffff; }
    .answerSheet li button {
      width: 30px;
      height: 30px;
      font-size: 18px;
      color: #ffffff;
      padding: 5px; }
      @media all and (min-width: 991px) {
        .answerSheet li button:hover {
          transform: scale(1.1);
          -webkit-transform: scale(1.1); } }
    .answerSheet li .button__green {
      background-color: #b4ec51; }
    .answerSheet li .button__red {
      background-color: #f5515f; }
    .answerSheet li .button__gray {
      background-color: #d9d9d9; }

@media all and (min-width: 991px) {
  .modal__answerSheet .answerSheet__ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2; } }

.solution {
  font-size: 20px; }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .solution span {
      font-size: 16px; } }
  @media all and (max-width: 479px) {
    .solution span {
      font-size: 16px; } }
  .solution img {
    width: 100%;
    max-width: 300px; }
  .solution .right {
    text-align: right; }
  .solution button {
    font-size: 18px;
    padding: 10px 20px;
    margin-left: 5px;
    border: none; }

.react-h5-audio-player {
  display: inline-block !important; }
  .react-h5-audio-player .flex {
    width: auto !important; }
    .react-h5-audio-player .flex .toggle-play-wrapper {
      flex: 1 0 60px; }
    .react-h5-audio-player .flex .progress-bar-wrapper {
      display: none !important; }

.control {
  width: 100%;
  max-width: 500px;
  margin: 0 auto; }
  .control .left {
    width: 48%;
    max-width: 250px;
    float: left; }
  .control .right {
    width: 48%;
    max-width: 250px;
    float: right;
    text-align: center; }
  .control .control__btn {
    width: 100%;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0;
    border: none;
    padding: 8px 35px; }
  .control .control__btn--state {
    font-size: 18px;
    width: calc((100% - 10px) / 3); }

.answerSheetResult .answerSheetResult__tr {
  margin: 10px 0 2px;
  background-color: #84b1d9;
  color: #fff;
  min-height: 25px;
  line-height: 25px; }

.answerSheetResult .answerSheetResult__tr--content {
  margin: 0 0 2px;
  background-color: #eeeeee;
  min-height: 35px;
  line-height: 35px; }
  .answerSheetResult .answerSheetResult__tr--content button {
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 18px;
    color: #ffffff;
    padding: 5px; }
    @media all and (min-width: 991px) {
      .answerSheetResult .answerSheetResult__tr--content button:hover {
        transform: scale(1.1);
        -webkit-transform: scale(1.1); } }
  .answerSheetResult .answerSheetResult__tr--content .button__green {
    background-color: #b4ec51; }
  .answerSheetResult .answerSheetResult__tr--content .button__red {
    background-color: #f5515f; }
  .answerSheetResult .answerSheetResult__tr--content .button__gray {
    background-color: #d9d9d9; }
  .answerSheetResult .answerSheetResult__tr--content .progress.progress__time {
    margin-bottom: 0;
    margin-top: 8px; }
    @media all and (max-width: 479px) {
      .answerSheetResult .answerSheetResult__tr--content .progress.progress__time {
        margin-bottom: 10px; } }

.question.time--warning {
  background-color: rgba(238, 221, 18, 0.1); }

@keyframes alert {
  from {
    border: 2px solid #dfdfdf; }
  to {
    border: 2px solid #cc0a22; } }

.question.time--alert {
  animation-duration: 0.5s;
  animation-name: alert;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  background-color: rgba(204, 10, 34, 0.1); }

.progress.progress__time {
  margin-bottom: 10px;
  height: 20px; }
  @media all and (min-width: 991px) {
    .progress.progress__time {
      margin-top: 35px; } }

.difficult {
  display: inline-block;
  width: 100%;
  max-width: 600px; }
  @media all and (max-width: 479px) {
    .difficult {
      margin-top: 15px;
      padding-right: 15px; } }
  .difficult .glass {
    position: relative;
    width: 100%;
    float: left; }
  .difficult .glass--white {
    border: 2px solid #34403A;
    border-radius: 3px;
    background: #ffffff; }
  .difficult .glass--green {
    border: 2px solid #b89d9d;
    background: #6cca45; }
  .difficult .glass--blue {
    border: 2px solid #769fc3;
    background: #ffffff; }
  .difficult .progressBar {
    float: left;
    height: 20px;
    z-index: 333;
    transition: width 1s ease-in-out; }
  .difficult .progressBar--left {
    width: 0%; }
  .difficult .progressBar--right {
    width: 100%; }
  .difficult .glass {
    max-height: 24px; }
    .difficult .glass .glass__flag {
      transition: width 1s ease-in-out;
      width: 0%;
      position: absolute;
      top: -16px;
      right: 8px; }
      .difficult .glass .glass__flag img {
        transform: translateY(-20px);
        z-index: 9999; }
    .difficult .glass .progressBar__normal {
      background-color: #84b1d9; }
    .difficult .glass .progressBar__0 {
      background-color: #29bf12; }
    .difficult .glass .progressBar__80 {
      background-color: #F4E04D; }
    .difficult .glass .progressBar__100 {
      float: left;
      height: 20px;
      background-color: #F21B3F;
      z-index: 333; }
  .difficult .scalecontainer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 600px; }
  .difficult .scalecontainer__long {
    transform: translateY(15px);
    display: inline-block;
    border-right: solid 2px #9a9a9a;
    height: 40px;
    font-weight: 800;
    z-index: 2; }
  .difficult .scalecontainer__long--1 {
    width: 12.5%; }
  .difficult .scalecontainer__long--2 {
    width: 12.5%; }
  .difficult .scalecontainer__long--3 {
    width: 25%; }
  .difficult .scalecontainer__long--4 {
    width: 50%; }
  .difficult .scalecontainer__long--5 {
    width: 12.5%; }
  .difficult .scalecontainer__long--6 {
    width: 6.25%; }
  .difficult .scalecontainer__long--7 {
    width: 6.25%; }
  .difficult .goal-stat {
    padding: 10px 0px 2px;
    float: left;
    margin: 0;
    color: #888;
    text-align: right; }
    @media only screen and (max-width: 640px) {
      .difficult .goal-stat {
        font-size: 12px;
        text-align: right; } }
  .difficult .goal-number,
  .difficult .goal-label {
    font-size: 16px;
    display: block; }
  .difficult .goal-number {
    font-weight: bold; }
  @media only screen and (max-width: 640px) {
    .difficult .goal-label {
      font-size: 10px; }
    .difficult .goal-number {
      font-size: 16px; } }

.question--difficulty {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  padding-top: 10px; }
  .question--difficulty .question--difficulty__title {
    padding: 3px 5px;
    border-radius: 3px;
    background-color: #da3737;
    color: #fff;
    margin: 0 3px;
    align-self: flex-end; }
  .question--difficulty .question--difficulty__content {
    flex: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px; }
    .question--difficulty .question--difficulty__content > div {
      margin-left: 9px;
      margin-right: 9px; }
  .question--difficulty .question--difficulty__color {
    flex: 60%;
    border: 3px solid #c9c9c9;
    height: 32px;
    border-radius: 20px;
    position: relative;
    background: #e6e6e6;
    background: linear-gradient(to right, #8301cc 0%, #4e05fb 5%, #2877f6 10%, #42e986 20%, #fff300 40%, #f6a253 60%, #fe0c0c 80%); }
    .question--difficulty .question--difficulty__color .question--difficulty__index {
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: 1; }
      .question--difficulty .question--difficulty__color .question--difficulty__index .percent {
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 1px; }
    .question--difficulty .question--difficulty__color .empty {
      position: absolute;
      bottom: -3px;
      right: -3px;
      width: 100%;
      border: 3px solid #c9c9c9;
      height: 32px;
      border-radius: 20px;
      background-color: #e6e6e6;
      z-index: 0; }

.piechart {
  position: relative;
  display: block;
  max-width: 300px;
  margin: 0 auto; }
  .piechart svg {
    display: inline-block;
    vertical-align: middle;
    transform-origin: 50% 50%;
    animation: scale 0.6s;
    margin: 0 auto;
    max-width: 100%;
    width: 100%; }
    .piechart svg text {
      font-weight: bolder;
      font-size: 16px; }
  .piechart span {
    position: absolute;
    font-size: 16px;
    top: 45%;
    left: calc(50% - 48px); }

@keyframes scale {
  from {
    transform: scale(0.5); }
  to {
    transform: scale(1); } }

.piechartcontent {
  position: relative;
  list-style: none;
  padding: 0;
  max-width: 400px;
  margin: 0 auto;
  text-align: left; }
  .piechartcontent li {
    display: inline-block;
    width: 50%;
    min-width: 200px;
    min-height: 20px;
    text-align: left;
    padding-top: 10px;
    line-height: 20px; }
  .piechartcontent .piechartcontent__mark {
    vertical-align: bottom !important;
    display: inline-block;
    margin-right: 8px;
    width: 20px;
    height: 20px; }

.score {
  background: #E8E8E8;
  padding: 20px;
  margin-left: auto;
  margin-right: auto; }
  @media all and (max-width: 479px) {
    .score {
      max-width: 100%; } }
  .score .score__first {
    font-size: 85px;
    font-weight: 600;
    color: #D0021B; }
  .score .score__second {
    font-size: 30px;
    font-weight: 600;
    color: #D0021B; }

/* search */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ CSS */
  .searchContainer {
    display: none !important; } }

.searchContainer {
  background-color: #ffffff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.28);
  border: 1px solid #dfdfdf;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 10px 0;
  margin-bottom: 30px;
  font-size: 20px; }
  .searchContainer img {
    height: 25px;
    vertical-align: sub; }
  .searchContainer button {
    max-width: 75px;
    display: inline-block;
    color: #9b9b9b;
    vertical-align: top;
    height: 30px;
    font-weight: 800;
    background-color: #ffffff;
    border: none;
    cursor: pointer; }
  .searchContainer input {
    padding-left: 10px;
    line-height: 20px;
    display: inline-block;
    width: 100%;
    max-width: 225px;
    color: #9b9b9b;
    letter-spacing: 0;
    border: 0;
    border-radius: 0px;
    outline: 0;
    pointer-events: auto; }
    .searchContainer input:focus {
      outline: none; }
    @media all and (max-width: 479px) {
      .searchContainer input {
        max-width: calc(100% - 80px); } }
  .searchContainer input::-ms-clear {
    display: none; }
  @media all and (max-width: 479px) {
    .searchContainer {
      background-color: #ffffff;
      height: 60px;
      padding: 15px 8px;
      max-width: calc(100vw - 30px); } }

.searchContainer--fixed {
  top: 40px;
  z-index: 503; }
  @media all and (min-width: 991px) {
    .searchContainer--fixed {
      box-shadow: none; } }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .searchContainer--fixed {
      position: sticky !important;
      transform: none;
      top: 0px; } }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .searchContainer--fixed {
      position: sticky !important;
      transform: none;
      top: 0px; } }
  @media all and (max-width: 479px) {
    .searchContainer--fixed {
      position: sticky !important;
      transform: none;
      top: 0px; } }

.searchContainer--shadowNone {
  box-shadow: none;
  border: 1px solid #dfdfdf;
  top: 5px; }
  @media all and (max-width: 479px) {
    .searchContainer--shadowNone {
      border: none;
      top: 0px; } }

.canvas {
  position: fixed;
  left: 0px;
  z-index: 999; }

.examTime {
  background-color: #d9e9f6;
  line-height: 40px;
  padding-left: 10px;
  font-size: 20px;
  font-weight: 600; }
  .examTime .examTime__title {
    color: #4a4a4a; }
  .examTime .examTime__number {
    color: #d0021b; }
  @media all and (max-width: 479px) {
    .examTime {
      margin-bottom: 15px; } }

.answermodal {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  bottom: 135px;
  right: 10px;
  z-index: 998; }
  .answermodal .scroll {
    line-height: 25px;
    padding: 8px 10px;
    font-size: 25px; }

.question__formula {
  display: inline; }

.circle {
  border-radius: 50%;
  width: 80px;
  height: 80px; }

.question__formula > span {
  margin-top: 10px;
  display: inline-block; }

.fixedWidth__latex {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden; }

.sheet__border {
  border-color: #d9d9d9;
  border-style: solid;
  border-width: 2px;
  border-radius: 3px;
  padding: 15px;
  background-color: #fff; }
  @media all and (max-width: 479px) {
    .sheet__border {
      padding-top: 0px; }
      .sheet__border .padding--no-mobile {
        padding: 2px; } }

.remark {
  display: inline-block;
  margin-bottom: 8px;
  border: 1px solid #979797;
  border-radius: 28px;
  padding: 3px 10px;
  font-size: 20px;
  font-weight: 500; }
  .remark span {
    font-size: 20px;
    color: #D4D4D4; }
  .remark button {
    padding: 0 8px;
    border: none;
    background-color: rgba(255, 255, 255, 0);
    color: rgba(155, 155, 155, 0.23);
    cursor: pointer; }
    .remark button:focus {
      color: #4D4D4D; }

.question {
  margin-bottom: 15px;
  padding: 25px;
  text-align: left;
  font-weight: 500;
  background-color: #fff; }
  @media all and (max-width: 479px) {
    .question {
      padding: 10px; } }
  .question h1 {
    margin-top: 0px;
    color: #2861af;
    font-weight: 700; }
  .question h3 {
    margin-top: 0px;
    font-weight: 500; }
  .question ul {
    padding: 0px; }
  .question li {
    list-style: none;
    margin-bottom: 5px;
    min-height: 55px;
    position: relative; }
  .question .rate span {
    font-size: 22px;
    color: #5a5a5a;
    vertical-align: super; }
  .question .rate .rate__title {
    color: #4a4a4a;
    padding-right: 15px;
    font-weight: 600; }
  .question .rate .rate__number {
    padding-left: 15px; }
  .question .question__font {
    font-size: 20px; }
    @media all and (min-width: 768px) and (max-width: 992px) {
      .question .question__font {
        font-size: 18px; } }
    @media all and (max-width: 479px) {
      .question .question__font {
        font-size: 18px; } }
    .question .question__font div {
      padding-left: 0px; }
    .question .question__font ul {
      padding-left: 0px; }
    .question .question__font .question__img img {
      max-width: 30%;
      margin-top: 10px;
      margin-bottom: 10px;
      padding-left: 25px; }
      @media all and (min-width: 768px) and (max-width: 992px) {
        .question .question__font .question__img img {
          max-width: 70%; } }
      @media all and (max-width: 479px) {
        .question .question__font .question__img img {
          max-width: 70%; } }
  .question .question__information {
    display: inline-block; }
    .question .question__information button {
      background-color: #3399b9;
      border: 2px solid #3399b9;
      margin-right: 10px;
      margin-bottom: 10px;
      padding: 5px 15px;
      color: #ffffff; }
      @media all and (min-width: 991px) {
        .question .question__information button:hover {
          background-color: white;
          color: #3399b9;
          font-weight: 600; } }
  .question .question__favorites {
    float: right;
    text-align: center;
    padding: 5px;
    font-size: 20px;
    color: #d9d9d9;
    border: 2px solid #d9d9d9;
    border-radius: 50px;
    line-height: 0px; }
    @media all and (min-width: 991px) {
      .question .question__favorites:hover {
        color: #f5515f;
        border: 2px solid #f5515f; } }
  .question .question__favorites--checked {
    color: #f5515f;
    border: 2px solid #f5515f; }
  .question .answer__status {
    font-size: 20px;
    line-height: 35px; }

.question--listening .question__formula {
  display: none; }

.question__count {
  margin-bottom: 25px;
  height: 50px; }
  @media all and (max-width: 479px) {
    .question__count {
      position: sticky;
      top: 0px;
      z-index: 1; } }
  .question__count .question__countTitle {
    width: 50%;
    height: 50px;
    display: inline-block;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 600; }
    .question__count .question__countTitle span {
      width: auto; }
      @media all and (max-width: 479px) {
        .question__count .question__countTitle span {
          display: block;
          line-height: 25px; } }
  .question__count .question__countNumber {
    height: 50px; }
    @media all and (max-width: 479px) {
      .question__count .question__countNumber {
        transform: translateY(-13px); } }
    .question__count .question__countNumber span {
      line-height: 50px;
      display: block; }
  .question__count .question__countTitle--target {
    color: #fff;
    background-color: rgba(129, 222, 74, 0.5); }
  .question__count .question__countNumber--target {
    color: #fff;
    background-color: #5ec124; }
  .question__count .question__countTitle--suggest {
    color: #fff;
    background-color: rgba(82, 215, 233, 0.5); }
  .question__count .question__countNumber--suggest {
    color: #fff;
    background-color: #33bdd0; }
  .question__count .question__countTitle--now {
    background-color: rgba(238, 165, 75, 0.5); }
  .question__count .question__countNumber--now {
    color: #fff;
    background-color: #d2882c; }

.question__time {
  margin: 0 auto 5px;
  border: none;
  font-size: 18px;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2; }
  @media all and (min-width: 991px) {
    .question__time {
      columns: 1;
      -webkit-columns: 1;
      -moz-columns: 1; } }
  .question__time li {
    min-height: auto; }
  .question__time img {
    padding-right: 5px; }

.answerSheet {
  border: 2px solid #d9d9d9;
  background-color: #fff; }
  @media all and (min-width: 991px) {
    .answerSheet {
      min-height: 50vh; } }
  .answerSheet .right {
    text-align: right; }
  .answerSheet ul {
    padding: 25px;
    margin-bottom: 0px; }
    @media all and (min-width: 768px) and (max-width: 992px) {
      .answerSheet ul {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2; } }
    @media all and (min-width: 991px) {
      .answerSheet ul {
        min-height: calc(50vh - 80px); } }
  .answerSheet .li--now {
    background-color: rgba(40, 143, 175, 0.2);
    color: #ffffff; }
    .answerSheet .li--now span {
      color: #9b9b9b; }
  .answerSheet li {
    display: inline-block;
    margin-right: 5px;
    padding: 8px 5px;
    width: 100%;
    min-width: 96px;
    font-size: 20px;
    margin-bottom: 10px;
    cursor: pointer; }
    @media all and (min-width: 991px) {
      .answerSheet li:hover {
        background-color: rgba(40, 143, 175, 0.3);
        color: #ffffff; }
        .answerSheet li:hover span {
          color: #ffffff; } }
    .answerSheet li:focus {
      background-color: #b28247;
      color: #ffffff; }
      .answerSheet li:focus span {
        color: #ffffff; }
    .answerSheet li button {
      width: 30px;
      height: 30px;
      font-size: 18px;
      color: #ffffff;
      padding: 5px; }
      @media all and (min-width: 991px) {
        .answerSheet li button:hover {
          transform: scale(1.1);
          -webkit-transform: scale(1.1); } }
    .answerSheet li .button__green {
      background-color: #b4ec51; }
    .answerSheet li .button__red {
      background-color: #f5515f; }
    .answerSheet li .button__gray {
      background-color: #d9d9d9; }

@media all and (min-width: 991px) {
  .modal__answerSheet .answerSheet__ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2; } }

.solution {
  font-size: 20px; }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .solution span {
      font-size: 16px; } }
  @media all and (max-width: 479px) {
    .solution span {
      font-size: 16px; } }
  .solution img {
    width: 100%;
    max-width: 300px; }
  .solution .right {
    text-align: right; }
  .solution button {
    font-size: 18px;
    padding: 10px 20px;
    margin-left: 5px;
    border: none; }

.react-h5-audio-player {
  display: inline-block !important; }
  .react-h5-audio-player .flex {
    width: auto !important; }
    .react-h5-audio-player .flex .toggle-play-wrapper {
      flex: 1 0 60px; }
    .react-h5-audio-player .flex .progress-bar-wrapper {
      display: none !important; }

.collection__add {
  cursor: pointer;
  padding: 15px;
  min-height: 280px; }
  @media all and (max-width: 479px) {
    .collection__add {
      padding: 0px;
      min-height: 150px; } }
  .collection__add .collection__add--add {
    margin: 0 auto;
    width: calc(100% - 15px);
    margin-bottom: 0 auto;
    max-width: 220px;
    height: 200px;
    line-height: 200px;
    border-radius: 15px;
    background-color: #EAEAEA;
    text-align: center; }
    .collection__add .collection__add--add span {
      font-size: 20px; }
    @media all and (min-width: 991px) {
      .collection__add .collection__add--add:hover span {
        font-size: 20px;
        background-color: #f15656;
        padding: 10px;
        color: #fff;
        border-radius: 20px; } }
    @media all and (min-width: 768px) and (max-width: 992px) {
      .collection__add .collection__add--add {
        height: 180px;
        line-height: 180px; } }
    @media all and (max-width: 479px) {
      .collection__add .collection__add--add {
        width: 100%;
        max-width: 100%;
        height: 150px;
        margin-bottom: 10px;
        line-height: 150px; } }

@media all and (max-width: 479px) {
  .collection__container > [class*=col-] {
    padding-left: 4px;
    padding-right: 4px; } }

.collection {
  transition: all 0.5s;
  cursor: pointer;
  padding: 15px;
  max-width: 250px;
  min-height: 300px;
  margin: 0 auto;
  font-size: 1.2em; }
  .collection img {
    width: 100%;
    max-width: 200px;
    padding-bottom: 10px; }
  .collection button {
    padding: 0px;
    float: right;
    line-height: 30px;
    width: 30px;
    display: none; }
  .collection .collection__count {
    float: right; }
  .collection .collection__title {
    max-width: 60%;
    display: inline-block; }
  @media all and (min-width: 991px) {
    .collection:hover {
      background-color: #EAEAEA;
      border-radius: 15px; }
      .collection:hover .collection__title {
        display: block; }
      .collection:hover .collection__count {
        float: none;
        display: block; }
      .collection:hover .delete {
        margin-right: 5px; }
      .collection:hover button {
        display: block;
        color: #eaeaea;
        border-radius: 30px;
        background-color: #9B9B9B;
        line-height: 30px;
        width: 30px;
        transform: translateY(-15px); }
        .collection:hover button:hover {
          color: #ffffff; } }
  @media all and (max-width: 479px) {
    .collection {
      border-radius: 15px;
      background-color: rgba(234, 234, 234, 0.5);
      margin-bottom: 10px;
      max-width: 100%;
      min-height: auto;
      padding-left: 4px;
      padding-right: 4px; }
      .collection .delete {
        margin-right: 5px; }
      .collection .collection__title {
        display: block; }
      .collection .collection__count {
        float: none;
        display: block; }
      .collection button {
        display: block;
        color: #eaeaea;
        border-radius: 30px;
        background-color: #9B9B9B;
        line-height: 30px;
        width: 30px;
        transform: translateY(-15px); } }

.collection--listmode {
  margin: 10px auto;
  border-bottom: 2px solid #dfdfdf;
  padding: 10px;
  font-size: 20px;
  max-width: 1100px; }
  .collection--listmode img {
    width: 35px; }
  .collection--listmode button {
    color: #fffff;
    border-radius: 35px;
    background-color: #d8d8d8;
    line-height: 35px;
    width: 35px;
    font-size: 16px; }
    .collection--listmode button span {
      color: #4a4a4a; }
  @media all and (max-width: 479px) {
    .collection--listmode {
      font-size: 18px;
      margin: 10px 8px; }
      .collection--listmode img {
        width: 35px; } }

.collection__lists {
  display: inline-block; }
  .collection__lists button {
    font-weight: 600;
    border: 2px solid #E99914;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 5px 15px;
    color: #E99914; }
    @media all and (min-width: 991px) {
      .collection__lists button:hover {
        border: 2px solid #d9d9d9;
        background-color: #ffffff;
        color: #d9d9d9;
        font-weight: 600; } }
  .collection__lists .button--checked {
    background-color: #E99914;
    color: #ffffff;
    font-weight: 600; }
    @media all and (min-width: 991px) {
      .collection__lists .button--checked:hover {
        border: 2px solid #E99914;
        background-color: #E99914;
        color: #ffffff;
        font-weight: 600; } }

.moreInformation {
  position: absolute;
  top: 30px;
  right: 15px;
  width: 35px;
  height: 35px;
  border-radius: 99em;
  z-index: 1;
  background-color: #d8d8d8; }
  .moreInformation span {
    font-size: 20px;
    line-height: 35px;
    color: #4A4A4A;
    font-weight: 700; }
  @media all and (min-width: 991px) {
    .moreInformation {
      right: 35px; }
      .moreInformation:hover {
        background-color: #4A4A4A; }
        .moreInformation:hover span {
          color: #d8d8d8; } }

.introduction {
  border-style: solid;
  border-width: 3px;
  padding: 40px; }
  @media all and (max-width: 479px) {
    .introduction {
      padding: 10px 10px 30px; } }

@charset "UTF-8";
.long-word--hide {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.customScrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #c8c8c8; }

/*--- controllers ---*/
.controllers {
  position: absolute;
  bottom: 0;
  height: 50px;
  background-color: #000000;
  width: 100%; }
  .controllers button {
    background-color: #FFFFFF;
    color: #777;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    margin: 5px;
    box-shadow: 1px 1px 3px #4C4C4C;
    outline: none;
    font-size: 18px;
    display: inline-block;
    vertical-align: sub; }
    .controllers button:active {
      box-shadow: 1px 0px 7px #4C4C4C;
      border-color: #F2E7BC;
      color: #F2E7BC;
      background-color: #4C4C4C; }

.btnPlay:after {
  content: "\E072";
  font-family: 'Glyphicons Halflings'; }

.paused:after {
  content: "\E073";
  font-family: 'Glyphicons Halflings'; }

.sound:after {
  content: "\E037";
  font-family: 'Glyphicons Halflings'; }

.sound2:after {
  content: "\E038";
  font-family: 'Glyphicons Halflings'; }

.muted:after {
  content: "\E036";
  font-family: 'Glyphicons Halflings'; }

.btnFS:after {
  content: "\E140";
  font-family: 'Glyphicons Halflings'; }

.bigplay {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  z-index: 2;
  color: #AF9328;
  font-size: 50px;
  text-align: center;
  cursor: pointer;
  text-shadow: 0px 0px 15px #F2E7BC; }

.link:before {
  content: "\E029";
  font-family: 'Glyphicons Halflings';
  color: #F2E7BC;
  float: left;
  transform: translateY(2px);
  margin: 0 15px 0 10px; }

.link--invalid:before {
  content: "\E033";
  font-family: 'Glyphicons Halflings';
  color: #F2E7BC;
  float: left;
  transform: translateY(2px);
  margin: 0 15px 0 10px; }

.playing {
  background-color: #AF9328;
  transition: 0s; }

/* volume bar */
.volume {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 70px;
  height: 10px;
  margin-right: 15px;
  background-color: #999; }
  @media all and (max-width: 479px) {
    .volume {
      display: none; } }

.volumeBar {
  display: inline-block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F2E7BC;
  z-index: 10; }
  @media all and (max-width: 479px) {
    .volumeBar {
      display: none; } }

/* PROGRESS BAR CSS */
.topControl {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 50px;
  background-color: #fff;
  z-index: 1; }

/* Progress bar */
.progress {
  width: 100%;
  height: 5px;
  position: relative;
  float: left;
  cursor: pointer;
  background: #999; }
  .progress span {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block; }

.timeBar {
  z-index: 10;
  width: 0;
  background: #F2E7BC; }

.bufferBar {
  z-index: 5;
  width: 0;
  background: #eee; }

/* time and duration */
.topControl .time {
  width: 12%;
  float: right;
  text-align: center;
  font-size: 11px;
  line-height: 12px;
  right: -12%;
  opacity: 0;
  position: absolute;
  color: #AF9328; }
  .topControl .time .time__current {
    font-size: 11px; }
  .topControl .time .time__duration {
    font-size: 11px; }

.topControl .progress {
  width: 88%;
  height: 12px; }

.topControl .time {
  right: 0;
  opacity: 1; }

.loading {
  height: 5%;
  width: 5%;
  position: absolute;
  top: 25vh;
  left: calc(25vw - 165px);
  z-index: 11;
  font-size: 80px;
  line-height: calc(100vh - 40px);
  text-align: center; }

.disabled {
  pointer-events: none;
  cursor: not-allowed;
  background-color: #C2C2C2 !important; }

ul.speedcnt {
  padding: 0px;
  box-shadow: 1px 0px 7px #AF9328;
  display: none;
  position: absolute;
  right: 30px;
  bottom: 60px;
  background-color: #fff;
  border-radius: 5px;
  list-style: none;
  transition: 0s;
  z-index: 3; }

ul.speedcnt li {
  color: #AF9328;
  line-height: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 20px;
  margin: 0;
  cursor: pointer;
  display: block;
  border-bottom: 1px solid #AF9328; }

ul.speedcnt li:last-child {
  border-bottom: none; }

ul.speedcnt li.selected {
  color: #ffffff;
  background-color: #AF9328; }

.video__slider-time {
  position: relative;
  display: inline-block;
  background-color: #dfe0e4;
  border-radius: 3px;
  height: 4px;
  width: 100%;
  margin: 0;
  cursor: pointer; }
  .video__slider-time .value {
    position: absolute;
    background-color: #AF9328;
    top: 0;
    height: 100%; }
  .video__slider-time .handle {
    position: absolute;
    width: 4px;
    height: 4px; }
    .video__slider-time .handle:after {
      position: relative;
      display: block;
      content: '';
      height: 20px;
      top: -8px;
      background-color: #fff;
      border: 3px solid #AF9328;
      cursor: pointer; }

.overlay--video {
  padding: 0px;
  overflow: hidden; }

.user__meta {
  position: absolute;
  top: 30px;
  z-index: 2;
  margin: 0 0 0 10px;
  writing-mode: vertical-lr;
  font-weight: 700;
  line-height: 40px;
  text-shadow: -0.5px 0 white, 0 0.5px white, 0.5px 0 white, 0 -0.5px white; }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .user__meta {
      font-size: 18px; } }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .user__meta {
      line-height: 30px;
      font-size: 16px; } }
  @media all and (max-width: 479px) {
    .user__meta {
      line-height: 20px;
      font-size: 10px;
      margin: 0; } }

.name {
  left: 40px; }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .name {
      left: 30px; } }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .name {
      left: 24px; } }
  @media all and (max-width: 479px) {
    .name {
      left: 18px; } }

.modal--report {
  height: 400px;
  padding: 10px 20px; }
  .modal--report label {
    font-size: 20px; }
  .modal--report select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 50%;
    -moz-appearance: none;
    /* Firefox */
    /* Safari and Chrome */
    appearance: none; }
  @media all and (min-width: 991px) {
    .modal--report {
      width: 760px; } }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .modal--report {
      width: 400px; } }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .modal--report {
      width: 400px; } }
  @media all and (max-width: 479px) {
    .modal--report {
      width: 100%; } }

.vjs-control-bar {
  z-index: 10; }

.modal--video {
  z-index: 1000;
  padding: 0px;
  margin: 0px;
  min-width: 100%;
  max-height: 100vh;
  background-color: #fffbcb; }
  @media (min-aspect-ratio: 16 / 9) {
    .modal--video {
      margin: 0 auto;
      min-width: 70vw;
      min-height: 70vh; } }
  .modal--video .modal__closeButton {
    top: 10px;
    z-index: 2;
    background-color: rgba(252, 249, 214, 0.8);
    border: 3px solid #b6b4a0;
    border-radius: 3px; }
    .modal--video .modal__closeButton svg {
      fill: rgba(0, 0, 0, 0.7); }
  .modal--video .modal__content {
    max-height: 100vh;
    margin: 0 auto;
    text-align: center; }
    .modal--video .modal__content .modal__videoContainer .modal__mask {
      top: 0px;
      z-index: 1;
      position: absolute;
      background-color: #FCE8BB;
      width: 11%;
      height: 100%; }
    .modal--video .modal__content .modal__videoContainer .modal__mask--left {
      top: 0px; }
    .modal--video .modal__content .modal__videoContainer .modal__mask--right {
      top: 0px;
      right: 0px; }
    .modal--video .modal__content .modal__videoContainer video {
      vertical-align: bottom;
      width: 100%;
      max-width: 100vw;
      max-height: 100vh;
      color: #fff; }
    @media (min-aspect-ratio: 16 / 9) {
      .modal--video .modal__content .modal__videoContainer video {
        width: auto; } }
    @media all and (max-width: 300px) {
      .modal--video .modal__content .modal__videoContainer .modal__mask,
      .modal--video .modal__content .modal__videoContainer video {
        visibility: hidden; }
      .modal--video .modal__content .modal__videoContainer:after {
        display: block;
        content: "\4E0D\652F\63F4\6B64\5BEC\5EA6\64A5\653E";
        font-size: 20px;
        position: fixed;
        top: calc(50vh - 20px);
        left: calc(50vw - 80px);
        color: purple; } }
    .modal--video .modal__content .img--absolute-student {
      z-index: 2;
      position: absolute;
      height: 220px;
      bottom: 0px;
      right: 20px;
      opacity: 0.6;
      filter: alpha(opacity=60); }
      @media all and (min-width: 991px) {
        .modal--video .modal__content .img--absolute-student {
          height: 160px;
          bottom: 0px;
          right: 20px; } }
      @media all and (min-width: 768px) and (max-width: 992px) {
        .modal--video .modal__content .img--absolute-student {
          height: 130px;
          bottom: 10px;
          right: 10px; } }
      @media all and (min-width: 480px) and (max-width: 767px) {
        .modal--video .modal__content .img--absolute-student {
          height: 100px;
          bottom: 5px;
          right: 5px; } }
      @media all and (max-width: 479px) {
        .modal--video .modal__content .img--absolute-student {
          height: 50px;
          bottom: 5px;
          right: 0px; } }
      @media all and (max-height: 400px) {
        .modal--video .modal__content .img--absolute-student {
          height: 80px; } }
    .modal--video .modal__content .img--absolute-assistant {
      z-index: 2;
      position: absolute;
      height: 150px;
      top: 30px;
      right: 10px;
      opacity: 0.6;
      filter: alpha(opacity=60); }
      @media all and (min-width: 991px) {
        .modal--video .modal__content .img--absolute-assistant {
          height: 110px;
          top: 30px;
          right: 10px; } }
      @media all and (min-width: 768px) and (max-width: 992px) {
        .modal--video .modal__content .img--absolute-assistant {
          height: 90px;
          top: 30px;
          right: 10px; } }
      @media all and (min-width: 480px) and (max-width: 767px) {
        .modal--video .modal__content .img--absolute-assistant {
          height: 60px;
          top: 30px;
          right: 10px; } }
      @media all and (max-width: 479px) {
        .modal--video .modal__content .img--absolute-assistant {
          height: 40px;
          top: 50px;
          right: 0px; } }
      @media all and (max-height: 400px) {
        .modal--video .modal__content .img--absolute-assistant {
          height: 80px; } }
    .modal--video .modal__content .img--absolute-teacher {
      z-index: 2;
      position: absolute;
      height: 220px;
      bottom: 0px;
      left: 40px;
      opacity: 0.7;
      filter: alpha(opacity=70); }
      @media all and (min-width: 991px) {
        .modal--video .modal__content .img--absolute-teacher {
          height: 150px;
          bottom: 0px;
          left: 10px; } }
      @media all and (min-width: 768px) and (max-width: 992px) {
        .modal--video .modal__content .img--absolute-teacher {
          height: 130px;
          bottom: 0px;
          left: 10px; } }
      @media all and (min-width: 480px) and (max-width: 767px) {
        .modal--video .modal__content .img--absolute-teacher {
          height: 90px;
          bottom: 0px;
          left: 5px; } }
      @media all and (max-width: 479px) {
        .modal--video .modal__content .img--absolute-teacher {
          height: 50px;
          bottom: 5px;
          left: 5px; } }
      @media all and (max-height: 400px) {
        .modal--video .modal__content .img--absolute-teacher {
          height: 100px; } }

.controlcontainer {
  display: none;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100vw;
  z-index: 2; }

.show {
  display: initial; }

@charset "UTF-8";
.long-word--hide, .thumbnail .thumbnail__img p, .thumbnail h3, .thumbnail .caption p, .cart .cart__info .cart__info--text .cartInfo__code--modal {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.customScrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #c8c8c8; }

@media all and (min-width: 991px) {
  button:hover,
  .btn:hover {
    opacity: 0.8; } }

.hint__button {
  display: inline-block;
  position: absolute;
  right: 30px; }
  @media all and (min-width: 991px) {
    .hint__button:hover {
      color: #ffffff;
      background: #4c824c; } }

.themebutton {
  position: relative;
  border: none;
  font-size: 18px;
  color: #FFFFFF;
  padding: 6px 8px;
  width: 200px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 3px; }
  @media all and (max-width: 479px) {
    .themebutton {
      font-size: 20px;
      padding: 8px 8px;
      margin-right: 5px; } }
  @media all and (min-width: 991px) {
    .themebutton:active {
      background-color: #d9d9d9 !important;
      transform: translate(2px, 2px); }
    .themebutton:hover {
      opacity: 0.8; } }

.themebutton.promote__button {
  font-weight: 600;
  background-color: #a13737;
  padding: 8px; }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .themebutton.promote__button {
      margin-top: 20px;
      margin-bottom: 80px; } }
  @media all and (min-width: 1024px) and (min-height: 1365px) and (orientation: portrait) {
    .themebutton.promote__button {
      font-size: 20px; } }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .themebutton.promote__button {
      font-size: 20px; } }
  @media all and (max-height: 479px) and (orientation: landscape) {
    .themebutton.promote__button {
      margin-top: 20px;
      margin-bottom: 80px; } }
  @media all and (max-width: 479px) {
    .themebutton.promote__button {
      margin-top: 20px;
      margin-bottom: 80px; } }

.campaign__button {
  margin: auto;
  color: #fff;
  width: 100%;
  height: 42px;
  background-image: linear-gradient(to bottom, #b28247, #7a4c13);
  font-size: 22px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  border-radius: 2px; }

.themebutton.btn__submit {
  background: #db2b2b;
  max-width: 500px;
  width: 100%;
  margin-bottom: 15px; }
  @media all and (min-width: 991px) {
    .themebutton.btn__submit:active {
      background-color: #d9d9d9; } }

.button__video {
  font-weight: 500;
  background: #1b7997;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #84cfe6 0%, #1b7997 100%);
  color: #ffffff;
  border-radius: 3px; }
  @media all and (min-width: 991px) {
    .button__video:hover {
      background: #84cfe6;
      color: #ffffff; } }

.button__report {
  font-weight: 500;
  background: #ffb63e;
  color: black;
  border-radius: 10px;
  width: 110px;
  height: 40px;
  font-size: 18px; }

.button__buy {
  border: none;
  min-width: 150px;
  font-weight: 500;
  background: #f76b1c;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fad961 0%, #f76b1c 100%);
  color: #ffffff; }
  @media all and (min-width: 991px) {
    .button__buy:hover {
      background: #fad961;
      color: #ffffff; } }

.swal2-popup .swal2-actions .swal2-styled.swal2-confirm {
  font-size: 18px;
  color: #ffffff;
  padding: .325em 2em;
  border-radius: 2px;
  background-color: #ffb63e; }

.swal2-popup .swal2-actions .swal2-styled.swal2-cancel {
  font-size: 18px;
  color: #ffffff;
  padding: .325em 2em;
  border-radius: 2px; }

.spinner {
  width: 80px;
  height: 80px;
  background-color: #b28247;
  border-radius: 100%;
  animation: sk-scaleout 1.0s infinite ease-in-out; }

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

.spinner__dot {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  animation: sk-rotate 2.0s infinite linear; }

.dot1,
.dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #9B9B9B;
  border-radius: 100%;
  animation: sk-bounce 2.0s infinite ease-in-out; }

.dot2 {
  top: auto;
  bottom: 0;
  animation-delay: -1.0s; }

@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }

.sticky {
  position: sticky !important;
  top: 0px;
  z-index: 502;
  background: white;
  box-shadow: 1px 1px 5px rgba(51, 51, 102, 0.2); }

.scale {
  cursor: pointer; }
  @media all and (min-width: 991px) {
    .scale:hover {
      transform: scale(1.03);
      -webkit-transform: scale(1.03); } }

.scale__block {
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow 0.5s; }
  @media all and (min-width: 991px) {
    .scale__block:hover {
      box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.15); } }

.scale__img {
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s; }
  .scale__img img {
    max-width: 100%;
    transition: all 0.5s; }
  @media all and (min-width: 991px) {
    .scale__img:hover {
      box-shadow: 0px 20px 35px 0px rgba(0, 0, 0, 0.15); }
      .scale__img:hover img {
        transform: scale(1.05); } }

.fade-enter {
  opacity: 0.01; }

.fade-enter.fade-enter-active {
  opacity: 1;
  transition: opacity 300ms ease-in; }

.fade-exit {
  opacity: 1; }

.fade-exit.fade-exit-active {
  opacity: 0.01;
  transition: opacity 500ms ease-in; }

.tick-style input[type="checkbox"] + label {
  line-height: 30px;
  display: flex;
  -moz-user-select: none;
       user-select: none;
  cursor: pointer;
  position: relative;
  height: 100%;
  padding-left: 110px;
  transform: translateX(-65px); }
  .tick-style input[type="checkbox"] + label:before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 5px solid #555;
    border-radius: 50%;
    top: 50%;
    left: 80px;
    transform: translate(-50%, -50%);
    transition: all ease-in 200ms;
    white-space: nowrap;
    color: #555; }
  .tick-style input[type="checkbox"] + label:after {
    content: "";
    position: absolute;
    width: 0px;
    height: 15px;
    border-bottom: 5px solid #555;
    border-left: 5px solid #555;
    top: 50%;
    left: 80px;
    transform-origin: bottom left;
    transform: rotate(-45deg) translate(3px, -6px);
    opacity: 0;
    transition: all ease-out 200ms; }

.tick-style input[type="checkbox"]:checked + label:before {
  border: 5px solid #b28247; }

.tick-style input[type="checkbox"]:checked + label:after {
  opacity: 1;
  width: 30px; }

.tick-style input[name="answer"] {
  display: none; }

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem; }

.progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite; }

.deck {
  width: 100%;
  min-height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden; }
  .deck .centered {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .deck:before, .deck:after {
    content: '';
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    background: #b28247;
    transition: transform 1.5s ease; }
  .deck:before {
    top: 0; }
  .deck:after {
    bottom: 0; }
  .deck.is-over .text {
    display: none; }
  .deck.is-over:before {
    transform: translate3d(0, -100vh, 0); }
  .deck.is-over:after {
    transform: translate3d(0, 100vh, 0); }

.text {
  width: 70%;
  height: 3em;
  z-index: 20;
  font-size: 4rem;
  line-height: 1em;
  font-weight: 700;
  color: #fff; }
  @media all and (max-width: 479px) {
    .text {
      line-height: 1.5em;
      font-size: 1.5em;
      width: 70%; } }
  .text:before, .text:after {
    display: block;
    overflow: hidden;
    transition: transform 1.5s ease; }
  .text:before {
    height: 1.5em;
    position: relative;
    z-index: 20; }
    .is-over .text:before {
      transform: translate3d(0, -100vh, 0); }
  .text:after {
    width: inherit;
    padding-bottom: .09em;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    vertical-align: bottom;
    clip: rect(1.5em auto auto auto); }
    .is-over .text:after {
      transform: translate3d(0, 100vh, 0); }

.transiton--end {
  z-index: -1; }

.loading__overlay {
  position: fixed;
  z-index: 9999;
  top: 0px;
  left: 0px;
  background: rgba(250, 250, 250, 0.9);
  width: 100vw;
  height: 100vh; }

.loading__content {
  z-index: 10000;
  position: fixed;
  top: 30%;
  left: 0;
  right: 0;
  opacity: 1; }
  .loading__content h3 {
    font-weight: 600;
    color: #4d4d4d; }

.particles__canvas {
  position: fixed;
  width: 100%;
  height: calc(100% - 170px) !important;
  background: #ececec;
  background-size: cover;
  pointer-events: none; }

.hide--noHeight {
  visibility: hidden; }

.modal--custom {
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  min-width: 400px;
  border: 5px solid #ffb63e;
  border-radius: 2px; }
  @media all and (max-width: 479px) {
    .modal--custom {
      min-width: 85vw; } }
  .modal--custom .content {
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: auto; }
    @media all and (max-width: 479px) {
      .modal--custom .content {
        max-height: 80vh; } }
    @media all and (max-width: 479px) {
      .modal--custom .content img {
        max-height: 80vh; } }
  .modal--custom .modal__closeButton {
    top: 10px;
    justify-content: center;
    width: 1.2em;
    height: 1.2em;
    transition: color .1s ease-out;
    border: none;
    border-radius: 0;
    outline: initial;
    background: 0 0;
    font-size: 2.5em;
    line-height: 1.2;
    cursor: pointer;
    overflow: hidden; }
    .modal--custom .modal__closeButton svg {
      fill: #ffb63e; }
  .modal--custom .modal__content {
    padding: 15px; }
    .modal--custom .modal__content input {
      width: 100%; }
    .modal--custom .modal__content h2 {
      color: #595959;
      font-size: 1.875em;
      font-weight: 600;
      text-align: center;
      text-transform: none;
      word-wrap: break-word;
      margin-top: 0;
      margin-bottom: 0; }
    .modal--custom .modal__content .modal__message {
      min-height: 65px; }
      .modal--custom .modal__content .modal__message span {
        color: #545454;
        font-size: 1.125em;
        font-weight: 300;
        line-height: normal; }
    .modal--custom .modal__content hr {
      margin: 10px auto; }
  .modal--custom .modal__confirmbutton {
    margin-top: 20px;
    margin-right: 15px;
    color: #ffffff;
    font-size: 18px;
    width: 92px;
    height: 31px;
    border-radius: 1px;
    background-color: #ffb63e; }
  .modal--custom .modal__cancelbutton {
    margin-top: 20px;
    color: #ffffff;
    font-size: 18px;
    width: 92px;
    height: 31px;
    border-radius: 1px;
    background-color: #aaaaaa; }

.modal__overlay {
  background-color: rgba(0, 0, 0, 0.4); }

.uploader {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.02);
  cursor: pointer;
  display: flex;
  height: 100px;
  justify-content: center;
  outline: 1px dashed #ccc;
  outline-offset: 5px;
  position: relative;
  width: 100%; }
  @media all and (max-width: 479px) {
    .uploader {
      margin-top: 20px; } }
  .uploader input {
    display: none; }
  .uploader img,
  .uploader .fa {
    pointer-events: none; }
  .uploader,
  .uploader .fa {
    transition: all 100ms ease-in; }
  .uploader .fa {
    color: rgba(0, 0, 0, 0.2);
    font-size: 3em; }
  .uploader img {
    left: 50%;
    opacity: 0;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    top: 50%;
    transition: all 300ms ease-in;
    transform: translate(-50%, -50%);
    z-index: -1; }
    .uploader img.loaded {
      opacity: 1;
      z-index: 2; }

.modal__border--custom {
  min-width: 750px;
  border: 6px solid #b28247;
  border-radius: 24px; }
  .modal__border--custom .content {
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: auto; }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .modal__border--custom {
      min-width: 500px; } }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .modal__border--custom {
      min-width: 400px; } }
  @media all and (max-width: 479px) {
    .modal__border--custom {
      min-width: 90vw;
      padding: 2px;
      border: 6px solid #b28247;
      border-radius: 3px;
      min-width: auto; } }

/* Position and sizing of burger button */
.bm-burger-button {
  position: absolute;
  width: 36px;
  height: 30px;
  right: 36px;
  top: 15px; }

/* Color/shape of burger icon bars */
.bm-burger-bars {
  background: #b28247; }

/* Position and sizing of clickable cross button */
.bm-cross-button {
  height: 30px;
  width: 30px; }

.bm-cross {
  background: #bdc3c7; }

/* General sidebar styles */
.bm-menu {
  background: #b28247;
  padding: 0.5em 1.5em 0;
  font-size: 1.15em; }
  .bm-menu button {
    padding: 0 5px; }

.bm-morph-shape {
  fill: #373a47; }

/* Wrapper for item list */
.bm-item-list {
  color: #ffffff;
  font-size: 22px;
  padding: 0.8em;
  padding-top: 3.5rem; }
  .bm-item-list a {
    display: block;
    padding: 0 0 20px 0;
    color: #ffffff; }
    @media all and (min-width: 991px) {
      .bm-item-list a:hover {
        color: #dddddd; } }
  .bm-item-list button {
    margin: 0 0 20px 0;
    background: none;
    padding: 0;
    text-align: left;
    width: 100%; }

/* Styling of overlay */
.bm-overlay {
  top: 0px;
  background: rgba(0, 0, 0, 0.3); }

.bm-menu-wrap {
  top: 0px; }

.thumbnail__paper {
  padding: 0;
  background: #ffffff;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12); }
  @media all and (min-width: 991px) {
    .thumbnail__paper .caption button:hover {
      background: #dfeef3;
      color: #4a4a4a;
      font-weight: 600; } }
  .thumbnail__paper h5 {
    padding: 0 15px;
    text-align: left; }
  .thumbnail__paper h5 + p {
    padding: 0 15px;
    text-align: left; }

.thumbnail .thumbnail__img {
  overflow: hidden;
  position: relative;
  height: 160px; }
  .thumbnail .thumbnail__img p {
    position: absolute;
    top: 5px;
    left: 5px;
    color: #fff; }
  .thumbnail .thumbnail__img img {
    width: 100%;
    height: auto;
    margin: auto; }
    @media all and (min-width: 991px) {
      .thumbnail .thumbnail__img img {
        height: 154px; } }
  @media all and (max-width: 479px) {
    .thumbnail .thumbnail__img {
      vertical-align: top;
      display: inline-block;
      width: 35%;
      max-height: 300px;
      height: auto; }
      .thumbnail .thumbnail__img img {
        background-color: none;
        margin-top: 30px;
        margin-left: 5px; }
      .thumbnail .thumbnail__img p {
        font-size: 10px;
        color: #9b9b9b;
        transform: translateY(10px); } }

.thumbnail h3 {
  font-size: 24px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #4a4a4a; }
  @media all and (max-width: 479px) {
    .thumbnail h3 {
      font-size: 20px;
      margin-bottom: 8px;
      width: calc(100% - 35px); } }

.thumbnail .caption {
  padding: 10px 15px 15px; }
  @media all and (max-width: 479px) {
    .thumbnail .caption {
      min-height: auto;
      display: inline-block;
      width: 65%;
      max-height: 300px; } }
  .thumbnail .caption a {
    font-size: 16px; }
  .thumbnail .caption h5 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    color: #4a4a4a;
    font-size: 16px; }
  .thumbnail .caption p {
    margin: 3px 0 0;
    padding: 0;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #9b9b9b; }
  .thumbnail .caption .caption__content {
    font-size: 18px;
    margin-bottom: 25px;
    white-space: pre-wrap;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 20px;
    height: 40px;
    overflow: hidden; }
    @media all and (max-width: 479px) {
      .thumbnail .caption .caption__content {
        font-size: 16px;
        margin-bottom: 10px; } }
  .thumbnail .caption .shoppingCart__Button {
    transform: translateY(-65px);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: white;
    text-align: center;
    font-size: 20px;
    border: none;
    padding: 0;
    position: absolute;
    background: #ffffff;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12); }
    @media all and (min-width: 991px) {
      .thumbnail .caption .shoppingCart__Button {
        z-index: -1;
        transform: none; } }
    @media all and (max-width: 479px) {
      .thumbnail .caption .shoppingCart__Button {
        right: 30px;
        top: 76px;
        font-size: 16px;
        line-height: 28px;
        width: 28px;
        height: 28px;
        color: #fff;
        background-color: #9b9b9b; } }
  .thumbnail .caption .shoppingCart__Button--active {
    color: #fff;
    background-color: #ed960a; }
    @media all and (min-width: 991px) {
      .thumbnail .caption .shoppingCart__Button--active {
        z-index: -1;
        transform: none; } }
  .thumbnail .caption .caption__action {
    font-size: 16px;
    padding: 4px 0px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #9b9b9b; }
    @media all and (min-width: 991px) {
      .thumbnail .caption .caption__action:hover {
        padding: 4px 6px;
        background: #dfeef3 !important;
        color: #4a4a4a !important;
        font-weight: 600; } }
    @media all and (max-width: 479px) {
      .thumbnail .caption .caption__action {
        font-size: 15px;
        padding: 4px 6px;
        transform: none;
        background: #efefef;
        color: #9b9b9b; } }
  .thumbnail .caption .caption__price {
    padding: 4px 0px 5px 8px; }
    .thumbnail .caption .caption__price:hover {
      padding: 4px 8px 5px; }
    @media all and (max-width: 479px) {
      .thumbnail .caption .caption__price {
        font-size: 15px; } }
  .thumbnail .caption .extend {
    color: #FE9927; }
    .thumbnail .caption .extend:hover {
      color: black;
      background-color: #FCE4BD; }
  .thumbnail .caption .discount {
    color: #d0021b; }
    @media all and (min-width: 991px) {
      .thumbnail .caption .discount button:hover {
        transform: translateX(0px);
        background: #d0021b !important;
        color: #ffffff !important; } }

@media all and (min-width: 991px) {
  .scale__img:hover .shoppingCart__Button {
    z-index: 1;
    transform: translateY(-65px); }
    .scale__img:hover .shoppingCart__Button:hover {
      opacity: 1;
      color: #fff;
      background-color: #ed960a; }
  .scale__img .caption .shoppingCart__Button.shoppingCart__Button--active {
    color: #fff;
    background-color: #ed960a;
    opacity: 0.8;
    z-index: 1;
    transform: translateY(-65px); }
    .scale__img .caption .shoppingCart__Button.shoppingCart__Button--active:hover {
      opacity: 1; } }

.cart {
  text-align: left;
  vertical-align: middle;
  padding-top: 10px;
  border-bottom: 1px solid #dfdfdf; }
  .cart .cart__img {
    max-width: 80px;
    transform: translateY(-10px); }
    @media all and (min-width: 991px) {
      .cart .cart__img {
        vertical-align: middle; } }
    @media all and (min-width: 768px) and (max-width: 992px) {
      .cart .cart__img {
        vertical-align: middle; } }
    @media all and (max-width: 479px) {
      .cart .cart__img {
        transform: none;
        vertical-align: inherit; } }
  .cart .cart__img--modal {
    padding: 0 2px 2px; }
    @media all and (max-width: 479px) {
      .cart .cart__img--modal {
        display: none; } }
  .cart .cart__info {
    display: inline-block;
    padding-left: 5px;
    width: calc(100% - 80px); }
    @media all and (max-width: 479px) {
      .cart .cart__info {
        width: 100%;
        padding-bottom: 8px; } }
    .cart .cart__info .cart__info--text {
      width: calc(100% - 110px);
      display: inline-block;
      line-height: 60px;
      font-size: 18px;
      font-weight: 500;
      font-style: normal;
      font-stretch: normal;
      letter-spacing: normal;
      transform: translateY(10px); }
      @media all and (min-width: 991px) {
        .cart .cart__info .cart__info--text {
          transform: none; } }
      @media all and (min-width: 768px) and (max-width: 992px) {
        .cart .cart__info .cart__info--text {
          transform: none; } }
      .cart .cart__info .cart__info--text .cartInfo__code {
        display: block;
        line-height: 20px;
        color: #d0021b;
        font-size: 18px; }
        @media all and (max-width: 479px) {
          .cart .cart__info .cart__info--text .cartInfo__code {
            display: block; } }
        @media all and (min-width: 991px) {
          .cart .cart__info .cart__info--text .cartInfo__code {
            min-width: 150px;
            display: inline-block; } }
      .cart .cart__info .cart__info--text .cartInfo__code--modal {
        display: block;
        color: #4c4c4c; }
      .cart .cart__info .cart__info--text .cartInfo__date {
        display: block;
        line-height: 20px;
        color: #9b9b9b;
        font-size: 14px; }
        @media all and (max-width: 479px) {
          .cart .cart__info .cart__info--text .cartInfo__date {
            display: block; } }
        @media all and (min-width: 991px) {
          .cart .cart__info .cart__info--text .cartInfo__date {
            display: inline-block; } }
      .cart .cart__info .cart__info--text .cartInfo__date--modal {
        display: block; }
  .cart .cart__status {
    float: right;
    display: block;
    margin-right: 8px;
    padding: 8px 10px;
    border-radius: 1px;
    background-color: #ededed; }
    @media all and (max-width: 479px) {
      .cart .cart__status {
        margin-top: 10px; } }
  .cart button.cart__status {
    width: auto;
    max-width: auto; }
  .cart .cart__status--success {
    background-color: #f5a623;
    color: #fff; }
  .cart .cart__status--failure {
    color: #9b9b9b; }

.login {
  min-width: 300px;
  max-width: 100vw; }
  .login .login__header {
    margin-top: 0;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.36;
    letter-spacing: 1.6px;
    color: #b28247; }
  @media all and (min-width: 991px) {
    .login {
      min-width: 350px; } }
  .login .form-group {
    position: relative; }
  .login form i.glyphicon {
    position: absolute;
    font-size: 24px;
    z-index: 1;
    transform: translate(12px, 12px); }
  .login .login__form {
    background-color: white;
    padding: 15px 15px 20px; }
    .login .login__form .form-group .form-control {
      padding-left: 45px; }
    .login .login__form .form__input {
      padding: 10px;
      font-size: 22px;
      min-height: 45px;
      background-color: #f5f6f7;
      border: 1px #cfd0d1 solid; }
    .login .login__form .login__button {
      width: 100%;
      font-size: 20px;
      line-height: 30px;
      background-color: #b28247;
      color: white; }
    .login .login__form .login__facebook {
      text-align: center;
      color: #ffffff;
      padding-top: 8px;
      padding-bottom: 8px;
      font-size: 20px;
      line-height: 30px;
      margin: 0 auto;
      background-color: #3b5998;
      display: block; }
    .login .login__form .register {
      cursor: pointer;
      font-size: 16px;
      margin-top: 15px;
      margin-bottom: 15px; }
      .login .login__form .register a {
        color: #9B9B9B; }

.separation {
  width: 100%;
  height: 15px;
  border-bottom: 2px solid #61705D;
  text-align: center;
  padding: 10px 0px;
  margin-bottom: 16px;
  display: inline-block; }
  .separation span {
    font-size: 16px;
    background-color: #FFFFFF;
    padding: 5px;
    color: #61705D;
    font-weight: 300; }

html {
  font-size: 16px; }

p {
  -moz-user-select: none;
       user-select: none; }

body,
a,
button {
  font-family: PingFang TC, 黑體-繁, Heiti TC, 蘋果儷中黑, Apple LiGothic Medium, 微軟正黑體, Microsoft JhengHei, sans-serif !important;
  transition: all 0.25s; }

button {
  padding: 0px; }

a:hover,
a:focus {
  text-decoration: none; }

a:hover,
a:focus {
  text-decoration: none !important; }

p {
  word-break: break-all;
  text-align: justify; }

body {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom); }

.table > tbody > tr > td {
  border-top: none; }

input[type=checkbox] {
  -webkit-transform: scale(1.2, 1.2); }

.page {
  min-height: calc(100vh - 145px); }

.background {
  background: repeat;
  min-height: calc(100vh - 145px);
  background-image: url("/static/images/bg_main.png"); }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .background {
      min-height: calc(100vh - 90px); } }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .background {
      min-height: calc(100vh - 90px); } }
  @media all and (max-width: 479px) {
    .background {
      min-height: calc(100vh - 110px); } }

.background__teacher {
  background: url("/static/images/teacher3.png") no-repeat;
  min-height: calc(100vh - 182px);
  background-attachment: fixed;
  background-position: 10vw 55vh; }
  @media all and (max-width: 1500px) {
    .background__teacher {
      background: none; } }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .background__teacher {
      background: none; } }
  @media all and (max-width: 479px) {
    .background__teacher {
      background: none; } }

@media all {
  .watermark {
    display: none; } }

@media print {
  .watermark {
    position: fixed;
    top: 50%;
    left: calc(50% - 150px);
    text-align: center;
    display: block; }
    .watermark h1 {
      color: #dfdfdf;
      text-align: center;
      margin: 0 auto; } }

a,
div,
button {
  background: none;
  border: none; }
  a:focus,
  div:focus,
  button:focus {
    outline: none; }
  @media all and (min-width: 991px) {
    a:hover,
    div:hover,
    button:hover {
      text-decoration: none; } }
  a:active,
  div:active,
  button:active {
    text-decoration: none; }

.intro__img {
  left: 300px;
  position: absolute;
  max-width: 100%;
  bottom: 100px; }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .intro__img {
      position: initial;
      max-width: 45vw;
      margin: 0 auto;
      transform: translateY(-150px); } }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .intro__img {
      position: initial;
      max-width: 50vw;
      margin: 0 auto;
      transform: translateY(-100px); } }
  @media all and (max-height: 479px) and (orientation: landscape) {
    .intro__img {
      position: initial;
      max-width: 50vw;
      margin: 0 auto;
      transform: translateY(-50px); } }
  @media all and (max-width: 479px) {
    .intro__img {
      position: initial;
      max-width: 80vw;
      margin: 0 auto;
      transform: translateY(-50px); } }

.banner__background {
  position: relative;
  background-image: url("/static/images/banner-about.png");
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  background-attachment: fixed;
  height: 500px;
  text-align: center;
  color: white; }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .banner__background {
      width: 100%;
      height: auto;
      min-height: 300px;
      background-size: cover; } }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .banner__background {
      width: 100%;
      height: auto;
      min-height: 300px;
      background-size: cover; } }
  @media all and (max-width: 479px) {
    .banner__background {
      height: 200px;
      width: 100%;
      background-position: center;
      background-attachment: initial;
      min-height: 150px;
      background-size: cover; } }

@media all and (min-width: 991px) {
  #primary_menu ul li:hover {
    background: none; } }

#primary_menu ul li a {
  margin-left: 8px;
  color: #4A4A4A; }
  @media all and (min-width: 991px) {
    #primary_menu ul li a:hover {
      color: #b28247;
      background: none;
      box-shadow: #b28247 0px -3px inset; } }

.select--custom {
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 50%;
  -moz-appearance: none;
  /* Firefox */
  /* Safari and Chrome */
  appearance: none; }

.carousel .banner {
  position: absolute;
  width: 100%;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat; }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .carousel .banner {
      width: 100%;
      height: auto;
      min-height: 300px;
      background-size: cover; } }
  @media all and (max-width: 479px) {
    .carousel .banner {
      width: 100%;
      height: auto;
      min-height: 160px;
      background-size: cover; } }

.carousel .carousel-inner {
  max-height: 500px;
  height: 500px; }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .carousel .carousel-inner {
      height: 300px; } }
  @media all and (max-width: 479px) {
    .carousel .carousel-inner {
      height: 160px;
      margin-bottom: 20px; } }

.carousel .carousel-control {
  background-image: none; }

.background--primary {
  background-color: #b28247; }

.border--primary {
  border-style: solid;
  border-width: 3px;
  border-radius: 3px;
  border-color: #b28247; }

.background--second {
  background-color: #E99914; }

.border--second {
  border-style: solid;
  border-width: 3px;
  border-radius: 3px;
  border-color: #E99914; }

.background--submit {
  background-color: #db2b2b; }

.border--white {
  border-color: #ffffff; }

.button--orange {
  background-color: orange; }

.button--disable {
  background-color: #9B9B9B; }

.disable {
  opacity: 0.2;
  background-color: #4d4d4d; }

.checked {
  background-color: #f5ae58; }

.main {
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: calc(100vh - 145px); }
  @media all and (max-width: 479px) {
    .main {
      margin-top: 5px;
      padding-bottom: 40px; } }

.center {
  text-align: center; }

.left {
  text-align: left; }

.right {
  text-align: right; }

@media all and (max-width: 479px) {
  .center--mobile {
    text-align: center; } }

.width--full {
  width: 100%; }

.helfwidth--left {
  width: 49%;
  margin-right: 1%; }

.helfwidth--right {
  width: 49%;
  margin-left: 1%; }

.font--main {
  font-family: "Microsoft JhengHei" !important; }

.gray {
  background-color: #F8F8F8; }

.about--title {
  font-family: NotoSansCJKtc;
  font-size: 24px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: var(--greyish-brown); }

.about--wraper {
  width: 304px;
  height: 296px;
  box-shadow: 0 0 15px 0 rgba(195, 195, 195, 0.5);
  background-color: #ffffff;
  display: table-cell;
  vertical-align: middle; }

.about--info {
  margin: 0px; }

.about--logo {
  display: table-cell;
  vertical-align: middle; }
  .about--logo p {
    padding: 10px 0px; }
  .about--logo .feature {
    font-family: NotoSansCJKtc;
    font-size: 22px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #8b572a; }

.paper {
  margin: 0 auto;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12);
  min-height: 250px;
  max-width: 500px; }
  .paper .form__input {
    padding: 10px;
    font-size: 20px;
    min-height: 45px;
    border: 1px #cfd0d1 solid;
    margin-bottom: 10px; }
  .paper .checkbox {
    font-size: 14px;
    text-align: center;
    color: #9B9B9B; }
  .paper button {
    width: 100%;
    color: white; }

.paper--account {
  max-width: 420px;
  background: white;
  padding-top: 15px;
  padding-bottom: 35px; }

.paper--nobg {
  background-color: unset;
  box-shadow: unset;
  min-height: auto; }

.padding--none {
  padding: 0 !important; }

@media all and (max-width: 479px) {
  .padding--no-mobile {
    padding: 0px; } }

@media all and (max-width: 479px) {
  .padding--mobile {
    padding: 5px !important; } }

.margin--no-mobile {
  margin: 0px !important; }

@media all and (min-width: 991px) {
  .col--sameheight {
    display: flex; }
    .col--sameheight > [class*='col-'] {
      display: flex;
      flex-direction: column; } }

@media all and (min-width: 768px) and (max-width: 992px) {
  .col--sameheight {
    display: flex; }
    .col--sameheight > [class*='col-'] {
      display: flex;
      flex-direction: column; } }

.border {
  border: 1px solid #979797; }

.header__account {
  background-color: #b28247;
  max-height: 35px;
  line-height: 35px;
  text-align: right;
  font-size: 16px;
  color: white;
  padding-right: 60px; }
  .header__account a {
    color: white; }
  @media all and (min-width: 991px) {
    .header__account a:hover,
    .header__account a:focus {
      color: white;
      text-decoration: none; } }
  .header__account button {
    padding: 0; }

.header__mobile {
  display: block;
  background-color: #b28247;
  line-height: 60px;
  font-size: 22px;
  color: #ffffff; }
  .header__mobile button {
    padding-left: 10px;
    background: none;
    font-size: 22px;
    line-height: 60px; }

.header__nav {
  z-index: 0;
  position: sticky;
  top: 0px; }
  .header__nav .navbar-nav {
    float: right;
    padding-top: 2px; }
    .header__nav .navbar-nav a {
      font-size: 24px; }
  .header__nav img {
    max-height: 60px;
    padding: 5px; }

.show {
  display: block; }

.footer .footer__spacenav {
  height: 10px;
  display: block; }

.footer .footer__spacenav--iphoneX {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: constant(safe-area-inset-bottom);
  height: env(safe-area-inset-bottom);
  background-color: #fff; }

.footer .footer__nav {
  padding-top: 5px;
  z-index: 999;
  position: fixed;
  width: 100%;
  bottom: 0px;
  height: 52px;
  background-color: #E9E9E9;
  margin-bottom: constant(safe-area-inset-bottom);
  margin-bottom: env(safe-area-inset-bottom); }
  .footer .footer__nav .footer__navtitle {
    padding-top: 3px;
    color: #4a4a4a; }
  @media print {
    .footer .footer__nav {
      display: none; } }

.footer .footer__top {
  min-height: 24px;
  background-color: #EE970A; }

.footer .footer__content {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #4A4A4A;
  color: white;
  text-align: center;
  font-size: 14px; }
  @media all and (min-width: 991px) {
    .footer .footer__content a {
      color: #ffffff; }
    .footer .footer__content a:hover {
      text-decoration: underline; } }
  @media all and (max-width: 479px) {
    .footer .footer__content {
      height: 40px;
      padding-top: auto;
      padding-bottom: auto; }
      .footer .footer__content span {
        line-height: 30px; } }

.scrolltop {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  bottom: 80px;
  right: 10px;
  z-index: 998; }

.scroll {
  position: absolute;
  padding: 10px 15px;
  line-height: 25px;
  right: 20px;
  bottom: 20px;
  background: #b2b2b2;
  background: rgba(178, 178, 178, 0.7);
  text-align: center;
  margin: 0 0 0 0;
  cursor: pointer;
  transition: 0.5s; }

.scroll:hover {
  background: #b2b2b2;
  transition: 0.5s; }

.hide {
  display: none; }

@media all and (min-width: 991px) {
  .desktop--hide {
    display: none; } }

@media all and (min-width: 1024px) and (min-height: 1365px) and (orientation: portrait) {
  .padpro--hide {
    display: none !important; } }

@media all and (min-width: 768px) and (max-width: 992px) {
  .desktop--hide {
    display: inherit; }
  .page {
    min-height: calc(100vh - 120px); }
  .mobile--hide {
    display: none; }
  .pad--hide {
    display: none !important; }
  .pad--show {
    display: inherit !important; }
  .header__account {
    padding-right: 5px; }
  .footer__space {
    padding-bottom: 60px; }
  .paper {
    margin-bottom: 55px;
    padding: 35px; }
  .page {
    min-height: calc(100vh - 110px); } }

@media all and (min-width: 480px) and (max-width: 767px) {
  .desktop--hide {
    display: inherit; }
  .mobile--hide {
    display: none; } }

@media all and (max-width: 479px) {
  h1 {
    font-size: 26px; }
  .mobile--hide {
    display: none; }
  .desktop--hide {
    display: inherit; }
  .header__account {
    padding-right: 5px; }
  .header__nav {
    position: sticky;
    top: 0px;
    height: auto;
    z-index: 0; }
    .header__nav .navbar-nav {
      float: right;
      padding-top: 5px; }
      .header__nav .navbar-nav a {
        font-size: 28px; }
    .header__nav img {
      transform: translateX(15px);
      max-height: 60px; }
  .footer__space {
    padding-bottom: 60px; }
  .paper {
    max-width: 100vw;
    margin-bottom: 55px;
    padding: 15px; }
  .page {
    min-height: calc(100vh - 105px); } }

.swal2-close {
  color: #FFB63E !important;
  top: 0px !important;
  right: 0px !important;
  border-bottom-left-radius: 5px;
  font-weight: 600; }
  .swal2-close:focus {
    outline: 0; }

.swal2-actions button.swal2-styled {
  cursor: pointer;
  border-radius: 1px;
  padding: .225em 2em; }

.swal2-modal {
  border: 6px solid #FFB63E; }

.scan__container {
  min-height: 300px;
  padding: 0px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center; }

.alert--normal {
  font-size: 0.9rem;
  font-weight: 400;
  color: #4a4a4a; }
  .alert--normal div {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin: 6px 0 12px; }

.alert--warn {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #4a4a4a;
  background-color: #ded2d2;
  padding: 6px 12px;
  border-radius: 6px; }
  .alert--warn div {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin: 6px 0 12px; }

.new__title {
  font-size: 2rem;
  font-weight: 600;
  color: #2FACC8;
  padding-bottom: 12px;
  border-bottom: 2px solid #eee; }

.logo {
  width: 180px;
  height: 294px; }

.logo-small {
  height: 40px; }

.common__button {
  font-size: 1.2rem;
  font-weight: 600;
  background-color: #fff;
  padding: 6px 12px;
  border-radius: 12px; }
  .common__button > i {
    margin-right: 6px; }
  .common__button--primary {
    background-color: #4a90e2;
    color: #fff; }
  .common__button--danger {
    background-color: #dc3545;
    color: #fff; }
  .common__button--black {
    background-color: #000;
    color: #fff; }
  .common__button--small {
    font-size: 0.9rem;
    padding: 3px 6px; }
  .common__button--default {
    background-color: #e4e4e4;
    color: #4a4a4a; }
  .common__button--full {
    width: 100%; }
  .common__button--square {
    border-radius: 0; }

.common__button[disabled] {
  background-color: #f7f7f7 !important;
  color: #ababab !important; }

.main__content {
  background-color: #fff;
  padding: 24px; }

.header__cart {
  position: relative; }
  .header__cart .header__cart__bag {
    background-color: #fff;
    color: #b28247;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0 5px;
    line-height: normal;
    margin: auto 3px; }

.loading__msg {
  margin: 24px auto;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  color: #d7c2c2; }

.shadow {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); }

.main__paper {
  background-color: #fff;
  padding: 24px; }

.error-message {
  font-size: 2rem;
  font-weight: 600;
  width: 360px;
  margin-top: 30px;
  margin: auto;
  border-radius: 6px;
  padding: 12px;
  color: #fba2a2; }
  .error-message-title {
    text-align: center;
    border-bottom: 2px solid #eee; }
  .error-message-desc {
    font-size: 1.2rem;
    padding: 12px; }

.line-login {
  text-align: center;
  margin-top: 100px; }
  .line-login-title {
    margin-top: 12px;
    font-size: 2rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: #06c755; }

.line-login-btn {
  background-color: #06C755;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  width: 140px;
  font-size: 14px;
  font-weight: 600;
  margin: auto;
  display: block;
  line-height: 36px; }
  .line-login-btn-img {
    display: inline-block;
    padding: 0;
    border-right: 1px solid #06bd50;
    width: 36px; }
    .line-login-btn-img img {
      width: 36px; }
  .line-login-btn-text {
    display: inline-block;
    text-align: center;
    width: 100px; }
  .line-login-btn:hover {
    background-color: #05b34c;
    color: #fff; }
  .line-login-btn:active {
    background-color: #048b3b;
    color: #fff; }

.react-responsive-modal-modal.register--promo--modal {
  border: 3px solid #00509e;
  border-radius: 12px; }
  .react-responsive-modal-modal.register--promo--modal .title {
    font-size: 2.6rem;
    font-weight: 600;
    color: #004085;
    text-align: center;
    margin: 12px auto; }
  .react-responsive-modal-modal.register--promo--modal .sub--title {
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    letter-spacing: 1px;
    line-height: 25px; }
  .react-responsive-modal-modal.register--promo--modal .coupon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center; }
    .react-responsive-modal-modal.register--promo--modal .coupon__radio {
      margin: auto 12px; }
  .react-responsive-modal-modal.register--promo--modal .coupon__label {
    display: block;
    cursor: pointer; }
  .react-responsive-modal-modal.register--promo--modal .buttons {
    text-align: center;
    margin: 12px auto; }

.bonus--product--coupon {
  width: 520px;
  height: 180px;
  position: relative;
  margin: 12px auto; }
  .bonus--product--coupon:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url("/static/images/bonus/Promo_Coupon.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }
  .bonus--product--coupon__disabled {
    cursor: default; }
    .bonus--product--coupon__disabled:before {
      filter: grayscale(100%); }
    .bonus--product--coupon__disabled .bonus--product--coupon--name {
      filter: grayscale(100%) opacity(0.4); }
    .bonus--product--coupon__disabled .bonus--product--coupon--image {
      filter: grayscale(100%); }
  .bonus--product--coupon--fully--redeemed {
    background-image: url("/static/images/bonus/Fully_Redeemed.png");
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center; }
  .bonus--product--coupon--name {
    position: absolute;
    top: 75px;
    left: 112px;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
    width: 220px; }
  .bonus--product--coupon--image {
    position: absolute;
    top: 8px;
    right: 16px;
    width: 166px;
    height: 166px;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }

@media only screen and (max-width: 630px) {
  .bonus--product--coupon {
    width: 270px;
    height: 93px; }
  .bonus--product--coupon--image {
    top: 3px;
    right: 9px;
    width: 87px;
    height: 87px; }
  .bonus--product--coupon--name {
    top: 37px;
    left: 60px;
    font-size: 0.8rem;
    width: 111px; } }

@media only screen and (max-width: 389px) {
  .bonus--product--coupon {
    width: 200px;
    height: 68px; }
  .bonus--product--coupon--image {
    top: 2px;
    right: 6px;
    width: 64px;
    height: 64px; }
  .bonus--product--coupon--name {
    top: 25px;
    left: 42px;
    font-size: 0.8rem;
    width: 86px; } }

.long-word--hide, .tabs label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.customScrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #c8c8c8; }

.tabs {
  display: flex;
  flex-wrap: wrap; }
  .tabs .tabs__type {
    padding: 5px 0px 8px 0px; }
  .tabs input[type="radio"]:checked + .main-container__label, .tabs input[type="radio"]:checked + .main-container__label--left, .tabs input[type="radio"]:checked + .main-container__label--right {
    background-color: #b28247;
    color: #ffffff; }
  .tabs .main-container__label, .tabs .main-container__label--left, .tabs .main-container__label--right {
    width: calc(50% - 15px);
    color: #9B9B9B;
    font-size: 22px; }
    @media all and (max-width: 479px) {
      .tabs .main-container__label, .tabs .main-container__label--left, .tabs .main-container__label--right {
        width: calc(50% - 15px); } }
  .tabs .main-container__label--left {
    margin-left: 15px; }
    @media all and (max-width: 479px) {
      .tabs .main-container__label--left {
        margin-left: 15px; } }
  .tabs .main-container__label--right {
    margin-right: 15px; }
    @media all and (max-width: 479px) {
      .tabs .main-container__label--right {
        margin-right: 15px; } }
  .tabs .tab__container {
    background: none;
    max-width: 200px;
    padding: 0 8px 0 0px; }
  .tabs label {
    width: 100%;
    order: 1;
    display: inline-block;
    margin-bottom: 0px;
    text-align: center;
    padding: 0.7rem 0rem;
    cursor: pointer;
    color: rgba(87, 93, 95, 0.3);
    font-size: 18px;
    font-weight: bold;
    transition: background ease 0.2s;
    box-shadow: inset 0 -3px rgba(87, 93, 95, 0.3); }
  .tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none; }
    .tabs .tab .row {
      max-width: 100vw; }
  .tabs input[type="radio"] {
    display: none; }
  .tabs input[type="radio"]:checked + label {
    color: #b28247;
    box-shadow: inset 0 -3px #b28247; }
  .tabs input[type="radio"]:checked + label + .tab {
    display: block; }

date-input-polyfill {
  background: #fff;
  color: #000;
  text-shadow: none;
  border: 0;
  padding: 0;
  height: auto;
  width: auto;
  line-height: normal;
  font-family: sans-serif;
  font-size: 14px;
  position: absolute !important;
  text-align: center;
  box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.22);
  cursor: default;
  z-index: 1;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  overflow: hidden;
  display: block; }
  date-input-polyfill[data-open="false"] {
    visibility: hidden;
    z-index: -100 !important;
    top: 0; }
  date-input-polyfill[data-open="true"] {
    visibility: visible; }
  date-input-polyfill select, date-input-polyfill table, date-input-polyfill th, date-input-polyfill td {
    background: #fff;
    color: #000;
    text-shadow: none;
    border: 0;
    padding: 0;
    height: auto;
    width: auto;
    line-height: normal;
    font-family: sans-serif;
    font-size: 14px;
    box-shadow: none;
    font-family: 'Lato', Helvetica, Arial, sans-serif; }
  date-input-polyfill select, date-input-polyfill button {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #DADFE1;
    height: 24px;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none; }
  date-input-polyfill .monthSelect-wrapper {
    width: 55%;
    display: inline-block; }
  date-input-polyfill .yearSelect-wrapper {
    width: 25%;
    display: inline-block; }
  date-input-polyfill select {
    width: 100%; }
    date-input-polyfill select:first-of-type {
      border-right: 1px solid #DADFE1;
      border-radius: 5px 0 0 0;
      -moz-border-radius: 5px 0 0 0;
      -webkit-border-radius: 5px 0 0 0; }
  date-input-polyfill button {
    width: 20%;
    background: #DADFE1;
    border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0; }
    date-input-polyfill button:hover {
      background: #eee; }
  date-input-polyfill table {
    border-collapse: separate !important;
    border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    overflow: hidden;
    max-width: 280px;
    width: 280px; }
  date-input-polyfill th, date-input-polyfill td {
    width: 32px;
    padding: 4px;
    text-align: center;
    box-sizing: content-box; }
  date-input-polyfill td[data-day] {
    cursor: pointer; }
    date-input-polyfill td[data-day]:hover {
      background: #DADFE1; }
  date-input-polyfill [data-selected] {
    font-weight: bold;
    background: #D8EAF6; }

.account {
  position: relative;
  min-height: calc(100vh - 271px); }

.account__detail span {
  width: 30%;
  font-size: 16px;
  display: inline-block;
  text-align: right;
  padding-right: 10px; }

.account__detail .formInput--70 {
  width: 70%; }

.account__detail .formInput--60 {
  width: 60%; }

.account__detail .formInput--10 {
  width: 10%; }
  .account__detail .formInput--10 span {
    text-align: center;
    width: 100%;
    transform: translate(5px, 5px);
    font-size: 25px; }
  .account__detail .formInput--10 .glyphicon-ok-sign {
    color: green; }
  .account__detail .formInput--10 .glyphicon-minus-sign {
    color: red; }

.paper .account__facebook {
  vertical-align: middle;
  min-height: 49px;
  display: inline-block;
  width: 70%;
  text-align: center;
  color: #ffffff;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
  background-color: #3b5998; }

.paper.account__detail {
  max-width: 500px;
  margin-top: 25px; }

.paper .form-group {
  position: relative;
  margin-bottom: 5px; }

.paper i.glyphicon {
  position: absolute;
  font-size: 20px;
  z-index: 500;
  color: #dfdfdf;
  transform: translate(14px, 12px); }

.paper .form-control {
  display: inline-block;
  padding-left: 45px !important; }

.bonus {
  background-color: #fff;
  padding: 24px 12px; }
  .bonus__member-level__title {
    color: #8b572a;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    max-width: 400px;
    border-bottom: 1px solid #4a4a4a;
    margin: 36px auto 42px;
    line-height: 58px;
    position: relative; }
    .bonus__member-level__title--link {
      position: absolute;
      bottom: -50px;
      left: 0;
      right: 0;
      font-size: 20px;
      font-weight: 500; }
  .bonus__member-level__img {
    text-align: center;
    overflow: auto; }
    .bonus__member-level__img > img {
      height: 80vh; }
  .bonus__member {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: flex-start; }
  .bonus__card-img {
    position: relative;
    width: 389px;
    min-height: 250px; }
    .bonus__card-img--active {
      box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); }
    @media all and (max-width: 1199px) {
      .bonus__card-img {
        width: 339px; } }
    @media all and (max-width: 991px) {
      .bonus__card-img {
        width: 239px; } }
    @media all and (max-width: 593px) {
      .bonus__card-img {
        width: 85%;
        margin: auto;
        max-width: 389px;
        height: 250px; } }
    @media all and (max-width: 375px) {
      .bonus__card-img {
        height: 220px; } }
    @media all and (max-width: 320px) {
      .bonus__card-img {
        height: 190px; } }
    .bonus__card-img > * {
      width: 100%;
      border-radius: 16px;
      background-color: #eee;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      transition: all 0.3s ease-out; }
  .bonus__card-info {
    font-size: 20px;
    font-weight: 600; }
    .bonus__card-info__member {
      font-size: 0.9rem;
      font-weight: 500;
      color: #b0804e;
      border-top: 1px solid #eee;
      background-color: #eee;
      padding: 3px 6px;
      margin-top: 6px;
      border-radius: 6px; }
    .bonus__card-info__member--item {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: space-between;
      align-items: center;
      margin: 3px 0; }
    .bonus__card-info__spm {
      color: #b28247; }
    .bonus__card-info > * {
      margin: 6px auto; }
    .bonus__card-info--sub {
      font-size: 18px; }
    .bonus__card-info--small {
      font-size: 15px;
      font-weight: 400;
      color: #797979; }
      .bonus__card-info--small span {
        color: #ff5d5d;
        margin: 0 6px;
        font-size: 16px;
        font-weight: 600; }
    .bonus__card-info--strong {
      font-size: 24px;
      margin: auto 6px auto 0; }
  .bonus__levels {
    margin-top: 24px; }
  .bonus__level-text {
    display: inline-block;
    height: 50px;
    width: 20%;
    font-size: 16px;
    padding: 0 0 0 9px;
    border-bottom: 15px solid #3c553c;
    color: #3c553c; }
    .bonus__level-text:nth-child(2) {
      color: rgba(0, 27, 68, 0.5);
      border-color: rgba(0, 27, 68, 0.5); }
    .bonus__level-text:nth-child(3) {
      color: rgba(133, 63, 49, 0.5);
      border-color: rgba(133, 63, 49, 0.5); }
    .bonus__level-text:nth-child(4) {
      color: rgba(81, 48, 29, 0.5);
      border-color: rgba(81, 48, 29, 0.5); }
    .bonus__level-text:nth-child(5) {
      color: rgba(175, 147, 40, 0.5);
      border-color: rgba(175, 147, 40, 0.5); }
    .bonus__level-text--effective:nth-child(2) {
      color: #001b44;
      border-color: #001b44; }
    .bonus__level-text--effective:nth-child(3) {
      color: #853f31;
      border-color: #853f31; }
    .bonus__level-text--effective:nth-child(4) {
      color: #51301d;
      border-color: #51301d; }
    .bonus__level-text--effective:nth-child(5) {
      color: #af9328;
      border-color: #af9328; }
    @media all and (min-width: 991px) {
      .bonus__level-text {
        width: 100px; } }
    .bonus__level-text--active {
      animation: glow linear 0.5s 2; }

@keyframes glow {
  0% {
    color: initial;
    border-color: initial; }
  50% {
    color: orange;
    border-color: orange; }
  100% {
    color: initial;
    border-color: initial; } }
  .bonus__tabs {
    list-style: none;
    margin: 36px 0 0;
    padding: 0; }
    .bonus__tabs li {
      padding: 0; }
  .bonus__tab {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    background-color: #f2f2f2;
    border-radius: 5px;
    padding: 6px;
    margin: 12px;
    height: 120px;
    cursor: pointer; }
    @media all and (min-width: 768px) and (max-width: 992px) {
      .bonus__tab {
        flex-direction: column; } }
    @media all and (min-width: 480px) and (max-width: 767px) {
      .bonus__tab {
        flex-direction: column; } }
    @media all and (max-width: 690px) {
      .bonus__tab {
        flex-direction: column;
        justify-content: flex-start;
        margin: 0 3px;
        height: 66px; } }
    .bonus__tab:hover {
      background-color: #d8d6d6; }
    .bonus__tab--active {
      background-color: #ffe3e3;
      cursor: auto; }
      .bonus__tab--active:hover {
        background-color: #ffe3e3; }
    .bonus__tab img {
      width: 100%;
      max-width: 80px; }
      @media all and (min-width: 768px) and (max-width: 992px) {
        .bonus__tab img {
          max-width: 60px; } }
      @media all and (min-width: 480px) and (max-width: 767px) {
        .bonus__tab img {
          max-width: 60px; } }
      @media all and (max-width: 690px) {
        .bonus__tab img {
          max-width: 30px;
          margin-bottom: 6px; } }
  .bonus__tab-text {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px; }
    .bonus__tab-text > * {
      display: inline-block; }
    @media all and (min-width: 991px) {
      .bonus__tab-text > * {
        display: block; } }
    @media all and (max-width: 690px) {
      .bonus__tab-text {
        font-size: 12px; } }
    .bonus__tab-text--sub {
      font-size: 14px; }
      @media all and (max-width: 690px) {
        .bonus__tab-text--sub {
          font-size: 12px; } }
    .bonus__tab-text--storng {
      font-size: 36px;
      color: #d0021b;
      letter-spacing: normal; }
      @media all and (min-width: 768px) and (max-width: 992px) {
        .bonus__tab-text--storng {
          font-size: 30px;
          margin: 0 6px; } }
      @media all and (min-width: 480px) and (max-width: 767px) {
        .bonus__tab-text--storng {
          font-size: 30px;
          margin: 0 6px; } }
      @media all and (max-width: 690px) {
        .bonus__tab-text--storng {
          font-size: 14px;
          margin: 0 2px; } }
    .bonus__tab-text--small {
      font-size: 11px;
      color: #4a4a4a;
      display: none; }
      @media all and (min-width: 1200px) {
        .bonus__tab-text--small {
          display: block; } }
  .bonus__history-sub {
    color: #0867d6;
    display: block;
    margin: 6px 0;
    font-weight: 600; }
  .bonus__level {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #eee; }
  .bonus__level-card img {
    width: 389px;
    border-radius: 16px; }
  .bonus__level-title {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background-color: #000;
    border-radius: 4px;
    margin: 12px auto;
    padding: 3px 0; }
  .bonus__level-title__1 {
    background-color: #3c553c; }
  .bonus__level-title__2 {
    background-color: #001b44; }
  .bonus__level-title__3 {
    background-color: #853f31; }
  .bonus__level-title__4 {
    background-color: #51301d; }
  .bonus__level-title__5 {
    background-color: #af9328; }
  .bonus__level-upgrade {
    font-size: 22px;
    letter-spacing: 1px;
    text-align: center; }
    .bonus__level-upgrade--storng {
      font-size: 26px;
      font-weight: 600;
      color: #8b572a;
      margin: auto 6px; }
    .bonus__level-upgrade--small {
      font-size: 16px; }
  .bonus__level-percentage {
    display: flex;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-top: 30px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: stretch; }
    .bonus__level-percentage--storng {
      font-size: 36px;
      color: #d0021b; }
    .bonus__level-percentage--hr {
      border-right: 1px solid #d0021b; }
    .bonus__level-percentage__unit {
      flex-shrink: 0;
      flex-grow: 1;
      flex-basis: 33%;
      margin: 6px 0; }
  .bonus__qrcode {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    min-height: 202px;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center; }
  .bonus__qrcode-count-down {
    color: #d0021b; }
  .bonus__qrcode--generate {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    min-height: 202px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .bonus__qrcode-expiration {
    font-size: 32px;
    font-weight: 600;
    text-align: center; }
  .bonus__qrcode-btn {
    background-color: #4a4a4a;
    color: #fff;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 18px;
    margin: 12px; }
  .bonus__btns {
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
    align-items: center;
    margin-top: 6px;
    gap: 12px; }
  .bonus__btn {
    background-color: #f2f2f2;
    border-radius: 5px;
    padding: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    flex-basis: 76px; }
    .bonus__btn-tag {
      border: 1px solid #d3c3c3;
      background-color: #fff;
      color: #4a81ff;
      font-size: 14px;
      font-weight: 600;
      margin: auto 5px;
      padding: 2px 5px;
      border-radius: 6px; }
    .bonus__btn--black {
      background-color: #000;
      color: #fff; }
      .bonus__btn--black:hover {
        background-color: #333; }
  .bonus__discount {
    font-size: 22px;
    text-align: center;
    padding: 0 2px; }
    .bonus__discount--small {
      font-size: 16px;
      font-weight: 500; }
  .bonus__discount-unit {
    font-size: 16px;
    font-weight: 600; }
  .bonus__level-history {
    font-size: 13px;
    color: #4a4a4a;
    padding: 3px; }
  .bonus__coupon__tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin: 24px 0; }
  .bonus__coupon__tab {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    padding: 0 12px;
    cursor: pointer; }
    .bonus__coupon__tab--active {
      color: #b28247;
      border-bottom: 3px solid #b28247;
      cursor: default; }
  .bonus__coupon__pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between; }
  .bonus__coupon__tools {
    margin: 25px 0;
    text-align: center;
    position: relative; }
  .bonus__coupon__checkbox {
    margin: auto;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer; }
    .bonus__coupon__checkbox input[type="checkbox"] {
      margin-right: 6px; }
  .bonus__coupon__qrcode {
    width: 100%;
    max-width: 360px;
    text-align: center; }
  .bonus__coupon__code {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 3px auto;
    text-align: center;
    color: #248946; }
  .bonus__coupon__qrcode__title {
    font-size: 2rem;
    text-align: center;
    font-weight: 600;
    margin: 12px 0; }
  .bonus__coupon__qrcode__btn {
    margin: 12px 0; }
  .bonus__coupon__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }

.table > tbody > tr.bonus__coupon__row--selected {
  background-color: #fff6f6; }

.table > tbody > tr.bonus__coupon__row > td {
  vertical-align: middle;
  text-align: center; }
  .table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__info {
    text-align: left;
    vertical-align: top; }

.table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__checkbox {
  width: 50px; }

.table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__cover {
  width: 140px; }
  .table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__cover .bonus__coupon__image {
    margin: auto;
    width: 130px;
    height: 130px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; }
  .table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__cover--unavailale .bonus__coupon__image {
    position: relative;
    filter: grayscale(100%); }
    .table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__cover--unavailale .bonus__coupon__image > div {
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center; }
      .table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__cover--unavailale .bonus__coupon__image > div > span {
        font-size: 1.2rem;
        color: #fff; }
  .table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__cover .bonus__coupon__type {
    margin: 6px auto 0;
    background-color: #b28247;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 3px 0; }
  .table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__cover .bonus__coupon__type__discount {
    background-color: #248946; }

.table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__info {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 30px; }
  .table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__info .bonus__coupon__row__info--strong {
    font-size: 1.2rem;
    font-weight: 600;
    color: #b28247; }
  .table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__info > .bonus__coupon__row__info__title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 12px; }
    .table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__info > .bonus__coupon__row__info__title > i {
      margin-left: 12px;
      cursor: pointer; }
  .table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__info .bonus__coupon__row__info__day {
    font-size: 1rem;
    color: red;
    margin: 0 6px; }
  .table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__info .bonus__coupon__row__info__block {
    margin: 3px 0; }
  .table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__info .bonus__coupon__row__info__block--cancel {
    color: #9f9090;
    font-size: 1.2rem; }
    .table > tbody > tr.bonus__coupon__row > td.bonus__coupon__row__info .bonus__coupon__row__info__block--cancel > i {
      margin-right: 6px; }

.table > tbody > tr.bonus__coupon__row .bonus__coupon__info__unit {
  font-size: 2rem;
  color: #000;
  font-weight: 600;
  margin: 6px;
  vertical-align: sub; }

.coupon__button {
  background-color: red;
  padding: 3px 12px;
  font-size: 1rem;
  color: #fff;
  border-radius: 3px; }
  .coupon__button > i {
    margin-right: 6px; }

.bonus__coupon__notify {
  font-size: 0.8rem;
  font-weight: 500;
  color: #9f9090;
  margin: 6px auto;
  text-align: center; }

.gift__coupon__title {
  font-size: 1.7rem;
  font-weight: 600;
  margin: 6px 0; }

.gift__coupon__receiver {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
  background-color: #ffe9e1;
  padding: 12px 0; }
  .gift__coupon__receiver .gift__coupon__receiver__title {
    font-size: 1.2rem;
    font-weight: 500; }
  .gift__coupon__receiver .gift__coupon__receiver__input > input {
    font-size: 1.2rem; }
  .gift__coupon__receiver .gift__coupon__receiver__notify {
    color: #9b9d8a;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 6px 0 0; }

.gift__coupon__buttons {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  margin: 24px 0; }

.gift__coupon__notify {
  margin-top: 24px;
  clear: both; }

.gift__coupon__notify__title {
  font-size: 1rem;
  font-weight: 600; }

.gift__coupon__notify__content {
  list-style: cjk-ideographic; }
  .gift__coupon__notify__content > li {
    line-height: 28px;
    font-size: 1rem;
    font-weight: 500; }

.paying__member__how {
  border: 2px solid #ff5d5d;
  border-radius: 6px;
  background-color: #eee;
  padding: 12px;
  margin: 12px 0; }
  .paying__member__how--title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff5d5d;
    margin-bottom: 12px; }
  .paying__member__how--notice {
    margin-top: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b6b6b; }

.paying__member__cards {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center; }

.paying__member__card {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  background-color: #f2f2f2;
  border-radius: 5px;
  padding: 6px;
  margin: 12px; }
  .paying__member__card--img > img {
    width: 100%;
    max-width: 300px; }
  .paying__member__card--img > div {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin: 6px 0; }
  .paying__member__card--info {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 6px 0;
    color: #999; }

.shopcart {
  background-color: #fff;
  padding: 24px;
  min-height: 80vh; }
  .shopcart__title {
    font-size: 1.5rem;
    text-align: center;
    padding: 12px 0 16px; }
    .shopcart__title > i {
      margin: 0 12px; }
  .shopcart__types {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: stretch; }
  .shopcart__type {
    font-size: 1.6rem;
    font-weight: 500;
    padding: 24px;
    text-align: center;
    flex-grow: 1;
    border: 3px solid #b28247;
    margin: 24px;
    border-radius: 6px;
    color: #b28247; }
    .shopcart__type__count {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 12px; }
    .shopcart__type__buttons {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-evenly;
      align-items: center;
      margin-top: 24px; }
  .shopcart__exchange__title {
    background-color: #f3f3f3;
    color: #b28247;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 12px 16px; }
  .shopcart__items {
    padding: 24px; }
    .shopcart__items__title {
      color: #4a90e2;
      font-size: 1.3rem;
      margin: 12px 0; }
      .shopcart__items__title > input {
        margin-right: 12px; }
      .shopcart__items__title__alert {
        font-size: 1rem;
        color: red;
        margin: 0 6px; }
      .shopcart__items__title--underline {
        text-decoration: underline;
        margin: 0 6px; }
    .shopcart__items__count {
      background-color: #f3f3f3;
      text-align: right;
      font-size: 1rem;
      padding: 6px 12px; }
  .shopcart__list__item--strong {
    font-size: 1rem;
    color: #000;
    margin: 0 6px;
    font-size: 600; }
  .shopcart__list__item__title {
    cursor: pointer; }
    .shopcart__list__item__title > i {
      margin-left: 12px;
      font-size: 1rem; }
  .shopcart__list__item__text {
    font-size: 1rem;
    color: #9a9a9a;
    margin: 6px 0;
    font-weight: 500; }
  .shopcart__list__item__date {
    position: absolute;
    bottom: 12px;
    left: 8px;
    font-size: 0.8rem;
    font-weight: 500; }
  .shopcart__list__item__checkbox {
    width: 50px; }
  .shopcart__list__item__quantity {
    width: 230px; }
  .shopcart__list__item__cover {
    width: 142px; }
    .shopcart__list__item__cover > div {
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      margin: 12px;
      width: 130px;
      height: 130px; }
  .shopcart__list__item__require {
    width: 150px; }
  .shopcart__list__item__delete {
    width: 60px;
    font-size: 1.6rem; }
    .shopcart__list__item__delete > i {
      cursor: pointer; }
    .shopcart__list__item__delete--disabled > i {
      cursor: auto;
      color: #9a9a9a; }
  .shopcart__list__row__alert {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: red;
    color: #fff;
    font-size: 1rem;
    border-radius: 6px;
    padding: 3px 9px; }
  .shopcart__sub-total {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 24px auto; }
    .shopcart__sub-total__item {
      margin: 0 24px;
      text-align: center; }
    .shopcart__sub-total__unit {
      font-size: 1.5rem; }
    .shopcart__sub-total__number {
      font-size: 1.5rem;
      font-weight: 600; }
      .shopcart__sub-total__number--alert {
        color: red; }
    .shopcart__sub-total__text {
      font-size: 0.9rem;
      letter-spacing: 1px;
      color: #9a9a9a; }
  .shopcart__btns {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center; }

.table > tbody > tr.shopcart__list__row {
  position: relative; }
  .table > tbody > tr.shopcart__list__row--disabled {
    background-color: #eeeeee75; }
  .table > tbody > tr.shopcart__list__row > td {
    vertical-align: middle;
    text-align: center; }
    .table > tbody > tr.shopcart__list__row > td.shopcart__list__item__content {
      font-size: 1.5rem;
      font-weight: 600;
      text-align: left;
      vertical-align: top;
      position: relative; }

.long-word--hide {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.customScrollbar::-webkit-scrollbar-track, .rule::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar, .rule::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar-thumb, .rule::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #c8c8c8; }

date-input-polyfill {
  background: #fff;
  color: #000;
  text-shadow: none;
  border: 0;
  padding: 0;
  height: auto;
  width: auto;
  line-height: normal;
  font-family: sans-serif;
  font-size: 14px;
  position: absolute !important;
  text-align: center;
  box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.22);
  cursor: default;
  z-index: 1;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  overflow: hidden;
  display: block; }
  date-input-polyfill[data-open="false"] {
    visibility: hidden;
    z-index: -100 !important;
    top: 0; }
  date-input-polyfill[data-open="true"] {
    visibility: visible; }
  date-input-polyfill select, date-input-polyfill table, date-input-polyfill th, date-input-polyfill td {
    background: #fff;
    color: #000;
    text-shadow: none;
    border: 0;
    padding: 0;
    height: auto;
    width: auto;
    line-height: normal;
    font-family: sans-serif;
    font-size: 14px;
    box-shadow: none;
    font-family: 'Lato', Helvetica, Arial, sans-serif; }
  date-input-polyfill select, date-input-polyfill button {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #DADFE1;
    height: 24px;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none; }
  date-input-polyfill .monthSelect-wrapper {
    width: 55%;
    display: inline-block; }
  date-input-polyfill .yearSelect-wrapper {
    width: 25%;
    display: inline-block; }
  date-input-polyfill select {
    width: 100%; }
    date-input-polyfill select:first-of-type {
      border-right: 1px solid #DADFE1;
      border-radius: 5px 0 0 0;
      -moz-border-radius: 5px 0 0 0;
      -webkit-border-radius: 5px 0 0 0; }
  date-input-polyfill button {
    width: 20%;
    background: #DADFE1;
    border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0; }
    date-input-polyfill button:hover {
      background: #eee; }
  date-input-polyfill table {
    border-collapse: separate !important;
    border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    overflow: hidden;
    max-width: 280px;
    width: 280px; }
  date-input-polyfill th, date-input-polyfill td {
    width: 32px;
    padding: 4px;
    text-align: center;
    box-sizing: content-box; }
  date-input-polyfill td[data-day] {
    cursor: pointer; }
    date-input-polyfill td[data-day]:hover {
      background: #DADFE1; }
  date-input-polyfill [data-selected] {
    font-weight: bold;
    background: #D8EAF6; }

.account {
  position: relative;
  min-height: calc(100vh - 271px); }

.account__detail span {
  width: 30%;
  font-size: 16px;
  display: inline-block;
  text-align: right;
  padding-right: 10px; }

.account__detail .formInput--70 {
  width: 70%; }

.account__detail .formInput--60 {
  width: 60%; }

.account__detail .formInput--10 {
  width: 10%; }
  .account__detail .formInput--10 span {
    text-align: center;
    width: 100%;
    transform: translate(5px, 5px);
    font-size: 25px; }
  .account__detail .formInput--10 .glyphicon-ok-sign {
    color: green; }
  .account__detail .formInput--10 .glyphicon-minus-sign {
    color: red; }

.paper .account__facebook {
  vertical-align: middle;
  min-height: 49px;
  display: inline-block;
  width: 70%;
  text-align: center;
  color: #ffffff;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
  background-color: #3b5998; }

.paper.account__detail {
  max-width: 500px;
  margin-top: 25px; }

.paper .form-group {
  position: relative;
  margin-bottom: 5px; }

.paper i.glyphicon {
  position: absolute;
  font-size: 20px;
  z-index: 500;
  color: #dfdfdf;
  transform: translate(14px, 12px); }

.paper .form-control {
  display: inline-block;
  padding-left: 45px !important; }

.step {
  max-width: 900px; }
  @media all and (max-width: 479px) {
    .step {
      min-height: 100vh; } }
  .step button {
    max-width: 300px; }
  .step .step__index {
    cursor: pointer;
    padding: 5px;
    width: 30px;
    background-color: #D1D1D1;
    color: #ffffff;
    border-radius: 40px;
    display: inline-block;
    text-align: center;
    transform: translateX(-15px); }
  .step .step__title {
    cursor: pointer;
    font-weight: 800;
    font-size: 18px; }
  .step .step__card {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 15px;
    border-left: 2px solid #d1d1d1;
    padding-left: 20px;
    padding-bottom: 20px;
    transition: padding ease-in-out 0.5s; }
    .step .step__card .border {
      padding: 15px;
      margin-bottom: 10px; }
      @media all and (max-width: 479px) {
        .step .step__card .border {
          padding: 10px; } }
    .step .step__card .payment p {
      overflow-x: auto;
      max-width: 800px; }
    .step .step__card .payment input[type=radio] {
      border: 0px;
      width: 24px;
      height: 24px;
      vertical-align: middle; }
    .step .step__card .payment img {
      padding-left: 20px; }
    .step .step__card .payment .payment__title {
      display: inline-block;
      color: #b28247;
      font-size: 24px;
      font-weight: 700;
      padding-left: 30px;
      min-width: 150px;
      vertical-align: middle; }
    .step .step__card .payment .payment__introduction {
      display: inline-block;
      vertical-align: middle;
      font-size: 16px;
      word-break: break-all;
      width: 100%;
      max-width: calc(100% - 250px); }
    @media all and (max-width: 479px) {
      .step .step__card .payment .payment__type {
        vertical-align: middle;
        display: inline-block;
        max-width: calc(100% - 100px);
        padding-left: 10px; }
        .step .step__card .payment .payment__type .payment__title {
          display: block;
          padding-left: 0px; }
        .step .step__card .payment .payment__type .payment__introduction {
          display: block;
          max-width: 100%; } }
  .step .step--active .step__index {
    color: #ffffff;
    background-color: #b28247; }
  .step .step--inactive .step__index {
    color: #ffffff;
    background-color: #d1d1d1; }
    @media all and (min-width: 991px) {
      .step .step--inactive .step__index:hover {
        background-color: #b28247; } }
  .step .step--inactive .step__card {
    height: 0px;
    overflow: hidden;
    padding-bottom: 0px; }
    .step .step--inactive .step__card .border {
      border: none; }
  .step .step__edit {
    width: auto;
    display: inline-block;
    color: #333;
    padding-left: 0;
    max-width: 100%;
    text-align: left; }
    .step .step__edit span {
      padding-left: 10px;
      color: #dfdfdf; }
    @media all and (min-width: 991px) {
      .step .step__edit:hover span {
        color: #333; } }

.rule {
  max-height: 200px;
  overflow-y: auto;
  color: #4A4A4A;
  background-color: #E8E8E8;
  padding: 15px 20px; }

@media all and (min-width: 768px) and (max-width: 992px) {
  .step .step__card {
    border-left: none;
    padding-left: 0px; }
  .step--inactive {
    display: none; } }

@media all and (max-width: 479px) {
  .step__index {
    margin-left: 15px; }
  .step .step__card {
    border-left: none;
    padding-left: 0px;
    padding-bottom: 0px; }
  .step--inactive {
    display: none; } }

.Collapsible {
  background-color: #ffffff; }
  .Collapsible ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: #FBF9F4; }
    .Collapsible ul li {
      cursor: pointer;
      width: 50%;
      padding-top: 8px;
      padding-bottom: 8px;
      margin: 0 5px;
      list-style: none;
      font-size: 20px;
      font-weight: 400;
      border-bottom: 2px solid rgba(175, 147, 40, 0.5); }
      @media all and (max-width: 479px) {
        .Collapsible ul li {
          width: 100%;
          padding: 8px 5px; } }
      @media all and (min-width: 991px) {
        .Collapsible ul li:hover {
          background-color: rgba(175, 147, 40, 0.6); } }
      .Collapsible ul li .lesson {
        width: 100%;
        max-width: calc(100% - 20px);
        text-align: left;
        margin: 0; }
      .Collapsible ul li .lesson__play {
        vertical-align: text-top;
        line-height: 12px;
        padding: 8px;
        color: #FBF9F4;
        font-size: 12px;
        border-radius: 50px;
        background-color: #AF9328; }
        @media all and (max-width: 479px) {
          .Collapsible ul li .lesson__play {
            margin: 0 5px 0 0; } }
      .Collapsible ul li .lesson__name {
        display: inline-block;
        padding-left: 15px; }
      .Collapsible ul li .lesson__doc {
        float: right;
        margin: 0;
        width: 20px;
        transform: translateX(-15px);
        color: #AF9328; }
        @media all and (min-width: 991px) {
          .Collapsible ul li .lesson__doc:hover {
            color: #ffffff; } }

.Collapsible__contentInner {
  border: 1px solid #ffffff;
  border-top: 0; }
  .Collapsible__contentInner p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px; }
    .Collapsible__contentInner p:last-child {
      margin-bottom: 0; }

.Collapsible__trigger {
  cursor: pointer;
  display: block;
  font-weight: 600;
  text-decoration: none;
  color: #4A4A4A;
  font-size: 22px;
  position: relative;
  border-bottom: 2px solid rgba(175, 147, 40, 0.5);
  padding: 3px 0 5px;
  background: white; }
  .Collapsible__trigger:after {
    font-size: 25px;
    color: #AF9328;
    content: '^';
    position: absolute;
    top: 0px;
    right: 10px;
    display: block;
    transform: rotateZ(90deg);
    transition: transform 300ms; }
  .Collapsible__trigger.is-open:after {
    transform: rotateZ(180deg); }
  .Collapsible__trigger.is-disabled {
    opacity: 0.5;
    background-color: grey; }

.CustomTriggerCSS {
  background-color: lightcoral;
  transition: background-color 200ms ease; }

.CustomTriggerCSS--open {
  background-color: darkslateblue; }

.Collapsible__custom-sibling {
  padding: 5px;
  font-size: 12px;
  background-color: #CBB700;
  color: black; }

.introduction {
  border-style: solid;
  border-width: 3px;
  padding: 40px;
  background-color: white; }
  @media all and (max-width: 479px) {
    .introduction {
      padding: 10px 10px 30px; } }
  .introduction .introduction__price {
    display: contents;
    font-size: 20px; }
  .introduction .introduction__price--sale {
    display: contents;
    font-size: 26px;
    font-weight: 700;
    color: #db2b2b; }
  .introduction h1 {
    color: #2861af;
    font-weight: 800; }
  .introduction h2 {
    color: #2861af;
    font-weight: 800; }
  .introduction h3 {
    font-size: 22px;
    color: #4a4a4a;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal; }
    @media all and (max-width: 479px) {
      .introduction h3 {
        max-width: 100%; } }
  .introduction h4 {
    font-size: 18px;
    line-height: 25px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #9b9b9b; }
  .introduction p {
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #9b9b9b; }
  .introduction button {
    margin-top: 15px;
    max-width: 180px; }
  .introduction select {
    width: 100%;
    max-width: 280px;
    height: 45px;
    line-height: 30px;
    font-size: 20px;
    text-align: center; }
    .introduction select option {
      padding: 15px 0; }
  .introduction .introduction__table {
    font-size: 18px; }
    .introduction .introduction__table table {
      max-width: 50%; }
      @media all and (max-width: 479px) {
        .introduction .introduction__table table {
          max-width: 90%; } }
  .introduction .introduction__content img {
    max-width: 100%;
    height: auto; }
  .introduction .packages__shoppingCartButton {
    z-index: 50;
    margin: 0px;
    position: fixed;
    right: 30px;
    bottom: 165px;
    width: 45px;
    height: 45px;
    font-size: 18px;
    line-height: 40px;
    border-radius: 23px;
    background: #ffffff;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12); }
    @media all and (min-width: 991px) {
      .introduction .packages__shoppingCartButton:hover {
        color: #fff;
        background-color: #ed960a; } }
  .introduction .packages__shoppingCartButton.shoppingCart__Button--active {
    color: #fff;
    background-color: #ed960a;
    opacity: 0.8; }
    @media all and (min-width: 991px) {
      .introduction .packages__shoppingCartButton.shoppingCart__Button--active:hover {
        opacity: 1; } }

.introduction__img {
  padding: 0px; }
  .introduction__img img {
    max-height: 200px;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto; }

.pick__img {
  padding: 0px;
  display: inline-block;
  vertical-align: top;
  max-width: 35%;
  overflow: hidden; }
  .pick__img img {
    width: 95%;
    height: calc(100% - 5px);
    min-height: auto;
    margin: 0 auto; }
    @media all and (min-width: 991px) {
      .pick__img img:hover {
        transform: scale(1.05); } }

.exam__mode {
  cursor: pointer; }
  .exam__mode label {
    cursor: pointer;
    position: relative;
    top: 5px; }
  .exam__mode .examMode__chks {
    min-height: 40px; }
  .exam__mode .examMode__time {
    max-width: 280px;
    padding: 15px;
    width: 100%;
    margin: 0 auto; }
    .exam__mode .examMode__time p {
      text-align: center;
      font-size: 18px;
      font-weight: 600; }
      .exam__mode .examMode__time p .examMode__timeNumber {
        text-align: right;
        display: inline-block;
        min-width: 50px;
        color: #d0021b; }
  .exam__mode .mode__label {
    border-radius: 2px;
    margin: 0 auto;
    width: 50%;
    min-height: 35px;
    line-height: 35px;
    max-width: 140px;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 1.2px;
    text-align: center;
    background-color: #eeeeee;
    color: #9b9b9b;
    cursor: pointer; }
  .exam__mode input {
    position: absolute;
    left: -9999px; }

.exam__mode--dynamic .examMode__time {
  background-color: #fdedd3; }

.exam__mode--dynamic input:checked + .mode__label {
  background-color: #fdedd3;
  color: #f5a623; }

.exam__mode--static .examMode__time {
  background-color: rgba(40, 143, 175, 0.2); }

.exam__mode--static input:checked + .mode__label {
  background-color: rgba(40, 143, 175, 0.2);
  color: #288faf; }

.mathkingsecrets__container hr {
  border-top: 1px solid #AF9328;
  margin-bottom: 10px; }

.mathkingsecrets__container h2 {
  color: #AF9328; }

.mathkingsecrets__container .introduction {
  border-color: #AF9328;
  border-width: 0; }
  .mathkingsecrets__container .introduction p {
    font-size: 20px;
    color: #4A4A4A; }

.mathkingsecrets__container .mathkingsecrets__teacher__img {
  display: inline-block;
  max-height: 60px;
  padding: 3px;
  border-radius: 3px;
  margin: auto 5px;
  vertical-align: bottom; }

.profile__nav {
  padding: 25px auto;
  text-align: center;
  min-height: 60px;
  margin-bottom: 2px;
  vertical-align: middle; }
  .profile__nav i {
    display: none; }
  .profile__nav a {
    width: 50%;
    text-align: center;
    display: inline-block;
    padding: 15px 15px 8px;
    font-size: 22px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #4a4a4a; }
  .profile__nav a:hover,
  .profile__nav a:focus {
    text-decoration: none; }
  @media all and (max-width: 479px) {
    .profile__nav {
      margin-bottom: 0px;
      padding-bottom: 5px; } }

.profile__player {
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media all and (max-width: 479px) {
    .profile__player {
      height: auto; } }

.playerCard {
  margin-bottom: 10px;
  padding: 10px 10px;
  width: 100%; }
  @media all and (max-width: 479px) {
    .playerCard {
      margin: 5px 2px; } }
  .playerCard .player-card__img {
    display: inline-block;
    width: 22%;
    border: solid 1.8px #14cfdb;
    border-radius: 50%;
    padding: 10px; }
  .playerCard .player-card__img--user {
    border: solid 1.8px #fff; }
  .playerCard .player-card__info {
    vertical-align: middle;
    display: inline-block;
    padding-left: 3%;
    width: 78%; }
    .playerCard .player-card__info .player-card__info-title {
      color: #3B231A;
      font-weight: 600;
      display: inline-block;
      font-size: 1.17em;
      min-width: 100%;
      margin-bottom: 5px; }
    .playerCard .player-card__info .player-card__button-start {
      display: inline-block;
      max-width: 130px;
      cursor: pointer; }
      .playerCard .player-card__info .player-card__button-start:active {
        transform: translate(2px, 2px); }
    .playerCard .player-card__info h2 {
      margin: 0; }
    .playerCard .player-card__info h3 {
      margin: 0;
      margin-bottom: 5px; }
  .playerCard .card__level {
    display: inline-block;
    min-width: 40px;
    text-align: center;
    transform: translateY(-5px);
    margin-right: 5px; }
    .playerCard .card__level h1 {
      color: #3B231A; }
    .playerCard .card__level h2 {
      color: #d0021b; }
    .playerCard .card__level h1,
    .playerCard .card__level h2,
    .playerCard .card__level h4,
    .playerCard .card__level h5 {
      margin: 0; }
    .playerCard .card__level h3 {
      padding-left: 5px; }
  .playerCard .card__experience {
    width: calc(100% - 50px);
    display: inline-block;
    text-align: left; }
    .playerCard .card__experience h3,
    .playerCard .card__experience h4,
    .playerCard .card__experience h5 {
      margin: 0px; }

.playerCard--no-margin {
  margin-bottom: 0px; }

.progressCard {
  border-radius: 5px;
  height: 1em;
  margin-bottom: 5px;
  width: 100%;
  background-color: #dfdfdf; }

.experience__bar {
  height: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #fb800a;
  transition: width .6s ease; }

.reservation--object__body {
  padding: 24px;
  background-color: #fff; }

.reservation--object__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch; }
  .reservation--object__title__price {
    font-size: 18px;
    font-weight: 500;
    padding: 3px 6px;
    border: 1px solid #333333; }

.reservation--object__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  color: #8b6565;
  font-size: 0.9rem;
  font-weight: 500; }
  .reservation--object__tags__tag {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    flex: 1 1 35%; }
    .reservation--object__tags__tag > :first-child {
      width: 6px;
      height: 6px;
      background-color: #333333;
      border: 1px solid #000; }
    .reservation--object__tags__tag__value {
      font-weight: 600;
      color: #1d1b33; }

.reservation--object__description {
  margin-top: 24px;
  background-color: #eee;
  padding: 12px; }

.reservation--object__login {
  margin: 24px; }

.reservation--object__reservation {
  margin: 12px 0; }
  .reservation--object__reservation__title {
    font-size: 18px;
    font-weight: 700; }

.reservation--object__reservation__form {
  display: grid;
  grid-template-columns: 1fr 1fr; }
  .reservation--object__reservation__form__item {
    width: 100%;
    margin: 12px 0; }
    .reservation--object__reservation__form__item__label {
      font-weight: 600; }
    .reservation--object__reservation__form__item__input {
      width: 98%;
      padding: 3px;
      margin-top: 6px;
      border: 2px solid #333333;
      border-radius: 2px;
      height: 36px; }
    .reservation--object__reservation__form__item--full {
      grid-column: 1 / -1; }

.reservation-object-images__dots {
  position: relative;
  text-align: left;
  margin-top: -20px; }
  .reservation-object-images__dots > li {
    margin: 0 10px 10px 0;
    width: 90px;
    height: 90px; }
    .reservation-object-images__dots > li > a > img {
      filter: grayscale(70%);
      opacity: 0.6;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      border: 1px solid #000; }
  .reservation-object-images__dots > li.slick-active > a > img {
    filter: grayscale(0%);
    opacity: 1;
    border: 1px solid #c5b8d5; }

.long-word--hide, .tabs label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.customScrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #c8c8c8; }

.tabs {
  display: flex;
  flex-wrap: wrap; }
  .tabs .tabs__type {
    padding: 5px 0px 8px 0px; }
  .tabs input[type="radio"]:checked + .main-container__label, .tabs input[type="radio"]:checked + .main-container__label--left, .tabs input[type="radio"]:checked + .main-container__label--right {
    background-color: #b28247;
    color: #ffffff; }
  .tabs .main-container__label, .tabs .main-container__label--left, .tabs .main-container__label--right {
    width: calc(50% - 15px);
    color: #9B9B9B;
    font-size: 22px; }
    @media all and (max-width: 479px) {
      .tabs .main-container__label, .tabs .main-container__label--left, .tabs .main-container__label--right {
        width: calc(50% - 15px); } }
  .tabs .main-container__label--left {
    margin-left: 15px; }
    @media all and (max-width: 479px) {
      .tabs .main-container__label--left {
        margin-left: 15px; } }
  .tabs .main-container__label--right {
    margin-right: 15px; }
    @media all and (max-width: 479px) {
      .tabs .main-container__label--right {
        margin-right: 15px; } }
  .tabs .tab__container {
    background: none;
    max-width: 200px;
    padding: 0 8px 0 0px; }
  .tabs label {
    width: 100%;
    order: 1;
    display: inline-block;
    margin-bottom: 0px;
    text-align: center;
    padding: 0.7rem 0rem;
    cursor: pointer;
    color: rgba(87, 93, 95, 0.3);
    font-size: 18px;
    font-weight: bold;
    transition: background ease 0.2s;
    box-shadow: inset 0 -3px rgba(87, 93, 95, 0.3); }
  .tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none; }
    .tabs .tab .row {
      max-width: 100vw; }
  .tabs input[type="radio"] {
    display: none; }
  .tabs input[type="radio"]:checked + label {
    color: #b28247;
    box-shadow: inset 0 -3px #b28247; }
  .tabs input[type="radio"]:checked + label + .tab {
    display: block; }

.left {
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #575d5f; }
  .left .glyphicon-filter {
    margin-right: 5px; }

.filter {
  padding: 0 30px;
  margin-bottom: 10px; }
  .filter .filter__range-line {
    flex: 1;
    height: 1px;
    background: #bdbdbd;
    margin: 0.625rem; }
  .filter .gray {
    min-height: 55px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px; }
    .filter .gray span {
      display: inline-block;
      font-size: 18px;
      font-weight: 600;
      font-style: normal;
      font-stretch: normal;
      line-height: normal;
      letter-spacing: normal;
      color: #575d5f;
      min-width: 70px; }
    .filter .gray input {
      font-size: 18px;
      margin: 0 10px;
      width: 100%;
      max-width: 120px; }
    .filter .gray input + span {
      padding: 0 10px;
      min-width: auto; }
    .filter .gray select {
      margin: 0 10px;
      width: 100%; }
      @media (min-width: 1000px) {
        .filter .gray select {
          max-width: 150px; } }
    .filter .gray button {
      background-color: #b28247;
      color: #ffffff;
      font-size: 16px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: normal;
      letter-spacing: normal;
      width: auto; }

@media all and (min-width: 768px) and (max-width: 992px) {
  .padding--none .filter.row {
    padding: 25px 40px 15px; }
  .filter {
    padding: 0 30px; }
    .filter .gray {
      padding: 0 0 0;
      background: none; }
      .filter .gray span {
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #575d5f;
        min-width: 70px; }
      .filter .gray input {
        margin: 10px 0 0;
        max-width: calc(50% - 70px); }
      .filter .gray input + span {
        padding: 0 10px;
        min-width: auto; }
      .filter .gray select {
        width: calc(100% - 105px);
        max-width: auto;
        margin: 10px 0; }
      .filter .gray button {
        padding-top: 10px;
        padding-bottom: 10px;
        width: 100% !important;
        line-height: 20px; }
    .filter .padding--mobile {
      padding-top: 20px; } }

@media all and (min-width: 480px) and (max-width: 767px) {
  .padding--none .filter.row {
    padding: 25px 40px 15px; }
  .filter {
    padding: 0 30px; }
    .filter .gray {
      padding: 0 0 0;
      background: none; }
      .filter .gray span {
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #575d5f;
        min-width: 70px; }
      .filter .gray input {
        margin: 10px 0 0;
        max-width: calc(50% - 70px); }
      .filter .gray input + span {
        padding: 0 10px;
        min-width: auto; }
      .filter .gray select {
        width: calc(100% - 105px);
        max-width: auto;
        margin: 10px 0; }
      .filter .gray button {
        padding-top: 10px;
        padding-bottom: 10px;
        width: 100% !important;
        line-height: 20px; }
    .filter .padding--mobile {
      padding-top: 20px; } }

@media all and (max-width: 479px) {
  .padding--none .filter.row {
    padding: 25px 40px 15px; }
  .filter {
    padding: 0 30px; }
    .filter .gray {
      padding: 0 0 0;
      background: none; }
      .filter .gray span {
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #575d5f;
        min-width: 70px; }
      .filter .gray input {
        margin: 10px 0 0;
        max-width: calc(50% - 70px); }
      .filter .gray input + span {
        padding: 0 10px;
        min-width: auto; }
      .filter .gray select {
        width: calc(100% - 105px);
        max-width: auto;
        margin: 10px 0; }
      .filter .gray button {
        padding-top: 10px;
        padding-bottom: 10px;
        width: 100% !important;
        line-height: 20px; }
    .filter .padding--mobile {
      padding-top: 20px; } }

.teacher--name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4A4A4A; }

.teacher--introduction {
  font-size: 16px;
  color: #797979;
  margin-bottom: 20px; }

.teacher--image {
  width: 100%;
  height: 0px;
  padding-bottom: 100%;
  margin-bottom: -30%;
  position: relative; }
  .teacher--image img {
    width: 55%;
    height: 55%;
    padding: 20px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 99%;
    background-color: #eee;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); }

.teacher--courses {
  margin-top: 10px; }

.long-word--hide, .tabs label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.customScrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #c8c8c8; }

@media all and (min-width: 991px) {
  .slick-active .col-md-3 {
    padding-left: 5px;
    padding-right: 5px; } }

.slick-prev {
  position: absolute;
  display: block;
  font-size: 4vh;
  left: -40px;
  font-weight: bold;
  z-index: 500;
  color: #A7A7A7; }
  .slick-prev:before {
    display: none; }
  .slick-prev:focus {
    outline: 0;
    color: #A7A7A7; }
  .slick-prev:hover {
    outline: 0;
    color: #A7A7A7; }

.slick-next {
  position: absolute;
  display: block;
  font-size: 4vh;
  font-weight: bold;
  z-index: 500;
  color: #A7A7A7;
  right: -20px; }
  .slick-next:before {
    display: none; }
  .slick-next:focus {
    outline: 0;
    color: #A7A7A7; }
  .slick-next:hover {
    outline: 0;
    color: #A7A7A7; }

.isInner .slick-prev {
  left: 0px; }
  .isInner .slick-prev:before {
    content: ''; }

.isInner .slick-next {
  right: 10px; }
  .isInner .slick-next:before {
    content: ''; }

@media all and (min-width: 768px) and (max-width: 992px) {
  .slick-prev {
    left: -10px; }
    .slick-prev:before {
      content: ''; }
  .slick-next {
    right: -5px; }
    .slick-next:before {
      content: ''; } }

@media all and (max-width: 479px) {
  .slick-prev {
    left: -10px; }
    .slick-prev:before {
      content: ''; }
  .slick-next {
    right: -5px; }
    .slick-next:before {
      content: ''; } }

.introjs-overlay {
  position: absolute;
  box-sizing: content-box;
  z-index: 999999;
  background-color: #000;
  opacity: 0;
  background: radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0.9) 100%);
  transition: all .3s ease-out; }

.introjs-fixParent {
  z-index: auto !important;
  opacity: 1 !important;
  transform: none !important; }

.introjs-showElement,
tr.introjs-showElement > td,
tr.introjs-showElement > th {
  z-index: 9999999 !important; }

.introjs-disableInteraction {
  z-index: 99999999 !important;
  position: absolute;
  background-color: #fff;
  opacity: 0; }

.introjs-relativePosition,
tr.introjs-showElement > td,
tr.introjs-showElement > th {
  position: relative; }

.introjs-helperLayer {
  box-sizing: content-box;
  position: absolute;
  z-index: 9999998;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #777;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  transition: all .3s ease-out; }

.introjs-tooltipReferenceLayer {
  box-sizing: content-box;
  position: absolute;
  visibility: hidden;
  z-index: 100000000;
  background-color: transparent;
  transition: all .3s ease-out; }

.introjs-helperLayer *,
.introjs-helperLayer :after,
.introjs-helperLayer :before {
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box; }

.introjs-helperNumberLayer {
  box-sizing: content-box;
  position: absolute;
  visibility: visible;
  top: -16px;
  left: -16px;
  z-index: 9999999999 !important;
  padding: 2px;
  font-family: Arial, verdana, tahoma;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  background: #ff3019;
  background: linear-gradient(to bottom, #ff3019 0, #cf0404 100%);
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4); }

.introjs-arrow {
  border: 5px solid transparent;
  content: '';
  position: absolute; }

.introjs-arrow.top {
  top: -10px;
  border-bottom-color: #fff; }

.introjs-arrow.top-right {
  top: -10px;
  right: 10px;
  border-bottom-color: #fff; }

.introjs-arrow.top-middle {
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border-bottom-color: #fff; }

.introjs-arrow.right {
  right: -10px;
  top: 10px;
  border-left-color: #fff; }

.introjs-arrow.right-bottom {
  bottom: 10px;
  right: -10px;
  border-left-color: #fff; }

.introjs-arrow.bottom {
  bottom: -10px;
  border-top-color: #fff; }

.introjs-arrow.bottom-right {
  bottom: -10px;
  right: 10px;
  border-top-color: #fff; }

.introjs-arrow.bottom-middle {
  bottom: -10px;
  left: 50%;
  margin-left: -5px;
  border-top-color: #fff; }

.introjs-arrow.left {
  left: -10px;
  top: 10px;
  border-right-color: #fff; }

.introjs-arrow.left-bottom {
  left: -10px;
  bottom: 10px;
  border-right-color: #fff; }

.introjs-tooltip {
  box-sizing: content-box;
  position: absolute;
  visibility: visible;
  padding: 10px;
  background-color: #fff;
  min-width: 200px;
  max-width: 300px;
  border-radius: 3px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  transition: opacity .1s ease-out; }

.introjs-tooltipbuttons {
  text-align: right;
  white-space: nowrap; }

.introjs-button {
  box-sizing: content-box;
  position: relative;
  overflow: visible;
  display: inline-block;
  padding: .3em .8em;
  border: 1px solid #d4d4d4;
  margin: 0;
  text-decoration: none;
  text-shadow: 1px 1px 0 #fff;
  font: 11px/normal sans-serif;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
  outline: 0;
  background-color: #ececec;
  background-image: linear-gradient(#f4f4f4, #ececec);
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  border-radius: .2em;
  zoom: 1;
  margin-top: 10px; }

.introjs-button:hover {
  border-color: #bcbcbc;
  text-decoration: none;
  box-shadow: 0 1px 1px #e3e3e3; }

.introjs-button:active,
.introjs-button:focus {
  background-image: linear-gradient(#ececec, #f4f4f4); }

.introjs-button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.introjs-skipbutton {
  box-sizing: content-box;
  margin-right: 5px;
  color: #7a7a7a; }

.introjs-prevbutton {
  border-radius: .2em 0 0 .2em;
  border-right: none; }

.introjs-prevbutton.introjs-fullbutton {
  border: 1px solid #d4d4d4;
  border-radius: .2em; }

.introjs-nextbutton {
  border-radius: 0 .2em .2em 0; }

.introjs-nextbutton.introjs-fullbutton {
  border-radius: .2em; }

.introjs-disabled,
.introjs-disabled:focus,
.introjs-disabled:hover {
  color: #9a9a9a;
  border-color: #d4d4d4;
  box-shadow: none;
  cursor: default;
  background-color: #f4f4f4;
  background-image: none;
  text-decoration: none; }

.introjs-hidden {
  display: none; }

.introjs-bullets {
  text-align: center; }

.introjs-bullets ul {
  box-sizing: content-box;
  clear: both;
  margin: 15px auto 0;
  padding: 0;
  display: inline-block; }

.introjs-bullets ul li {
  box-sizing: content-box;
  list-style: none;
  float: left;
  margin: 0 2px; }

.introjs-bullets ul li a {
  box-sizing: content-box;
  display: block;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  text-decoration: none;
  cursor: pointer; }

.introjs-bullets ul li a:hover {
  background: #999; }

.introjs-bullets ul li a.active {
  background: #999; }

.introjs-progress {
  box-sizing: content-box;
  overflow: hidden;
  height: 10px;
  margin: 10px 0 5px 0;
  border-radius: 4px;
  background-color: #ecf0f1; }

.introjs-progressBar {
  box-sizing: content-box;
  float: left;
  width: 0%;
  height: 100%;
  font-size: 10px;
  line-height: 10px;
  text-align: center;
  background-color: #08c; }

.introjsFloatingElement {
  position: absolute;
  height: 0;
  width: 0;
  left: 50%;
  top: 50%; }

.introjs-fixedTooltip {
  position: fixed; }

.introjs-hint {
  box-sizing: content-box;
  position: absolute;
  background: 0 0;
  width: 20px;
  height: 15px;
  cursor: pointer; }

.introjs-hint:focus {
  border: 0;
  outline: 0; }

.introjs-hidehint {
  display: none; }

.introjs-fixedhint {
  position: fixed; }

.introjs-hint:hover > .introjs-hint-pulse {
  border: 5px solid rgba(60, 60, 60, 0.57); }

.introjs-hint-pulse {
  box-sizing: content-box;
  width: 10px;
  height: 10px;
  border: 5px solid rgba(60, 60, 60, 0.27);
  border-radius: 30px;
  background-color: rgba(136, 136, 136, 0.24);
  z-index: 10;
  position: absolute;
  transition: all .2s ease-out; }

.introjs-hint-no-anim .introjs-hint-dot {
  animation: none; }

.introjs-hint-dot {
  box-sizing: content-box;
  border: 10px solid rgba(146, 146, 146, 0.36);
  background: 0 0;
  border-radius: 60px;
  height: 50px;
  width: 50px;
  animation: introjspulse 3s ease-out;
  animation-iteration-count: infinite;
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: 1;
  opacity: 0; }

@keyframes introjspulse {
  0% {
    transform: scale(0);
    opacity: 0; }
  25% {
    transform: scale(0);
    opacity: .1; }
  50% {
    transform: scale(0.1);
    opacity: .3; }
  75% {
    transform: scale(0.5);
    opacity: .5; }
  100% {
    transform: scale(1);
    opacity: 0; } }

.introjs-arrow.top {
  top: -10px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #fff5bd;
  border-left-color: transparent; }

.introjs-arrow.top-right {
  top: -10px;
  right: 10px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #fff5bd;
  border-left-color: transparent; }

.introjs-arrow.top-middle {
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #fff5bd;
  border-left-color: transparent; }

.introjs-arrow.right {
  right: -10px;
  top: 10px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #fff5bd; }

.introjs-arrow.bottom {
  bottom: -10px;
  border-top-color: #fff5bd;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent; }

.introjs-arrow.left {
  left: -10px;
  top: 10px;
  border-top-color: transparent;
  border-right-color: #fff5bd;
  border-bottom-color: transparent;
  border-left-color: transparent; }

.introjs-arrow.bottom-middle {
  border-top-color: #fff5bd; }

.introjs-tooltip {
  position: absolute;
  padding: 10px;
  background-color: #fff5bd;
  min-width: 290px;
  padding-top: 30px;
  font-size: 16px;
  max-width: 330px;
  color: #676767;
  transition: opacity 0.1s ease-out; }
  .introjs-tooltip .introjs-tooltiptext {
    padding-left: 15px; }
    .introjs-tooltip .introjs-tooltiptext:after {
      position: relative;
      display: inherit;
      transform: translate(-15px, 3px);
      max-height: 75px;
      content: url("/static/images/teacher_72x72.png"); }

.introjs-button {
  position: relative;
  overflow: visible;
  display: inline-block;
  padding: 0.4em 0.8em;
  margin: 5px 2px 10px;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  zoom: 1; }

.tabs {
  display: flex;
  flex-wrap: wrap; }
  .tabs .tabs__type {
    padding: 5px 0px 8px 0px; }
  .tabs input[type="radio"]:checked + .main-container__label, .tabs input[type="radio"]:checked + .main-container__label--left, .tabs input[type="radio"]:checked + .main-container__label--right {
    background-color: #b28247;
    color: #ffffff; }
  .tabs .main-container__label, .tabs .main-container__label--left, .tabs .main-container__label--right {
    width: calc(50% - 15px);
    color: #9B9B9B;
    font-size: 22px; }
    @media all and (max-width: 479px) {
      .tabs .main-container__label, .tabs .main-container__label--left, .tabs .main-container__label--right {
        width: calc(50% - 15px); } }
  .tabs .main-container__label--left {
    margin-left: 15px; }
    @media all and (max-width: 479px) {
      .tabs .main-container__label--left {
        margin-left: 15px; } }
  .tabs .main-container__label--right {
    margin-right: 15px; }
    @media all and (max-width: 479px) {
      .tabs .main-container__label--right {
        margin-right: 15px; } }
  .tabs .tab__container {
    background: none;
    max-width: 200px;
    padding: 0 8px 0 0px; }
  .tabs label {
    width: 100%;
    order: 1;
    display: inline-block;
    margin-bottom: 0px;
    text-align: center;
    padding: 0.7rem 0rem;
    cursor: pointer;
    color: rgba(87, 93, 95, 0.3);
    font-size: 18px;
    font-weight: bold;
    transition: background ease 0.2s;
    box-shadow: inset 0 -3px rgba(87, 93, 95, 0.3); }
  .tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none; }
    .tabs .tab .row {
      max-width: 100vw; }
  .tabs input[type="radio"] {
    display: none; }
  .tabs input[type="radio"]:checked + label {
    color: #b28247;
    box-shadow: inset 0 -3px #b28247; }
  .tabs input[type="radio"]:checked + label + .tab {
    display: block; }

date-input-polyfill {
  background: #fff;
  color: #000;
  text-shadow: none;
  border: 0;
  padding: 0;
  height: auto;
  width: auto;
  line-height: normal;
  font-family: sans-serif;
  font-size: 14px;
  position: absolute !important;
  text-align: center;
  box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.22);
  cursor: default;
  z-index: 1;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  overflow: hidden;
  display: block; }
  date-input-polyfill[data-open="false"] {
    visibility: hidden;
    z-index: -100 !important;
    top: 0; }
  date-input-polyfill[data-open="true"] {
    visibility: visible; }
  date-input-polyfill select, date-input-polyfill table, date-input-polyfill th, date-input-polyfill td {
    background: #fff;
    color: #000;
    text-shadow: none;
    border: 0;
    padding: 0;
    height: auto;
    width: auto;
    line-height: normal;
    font-family: sans-serif;
    font-size: 14px;
    box-shadow: none;
    font-family: 'Lato', Helvetica, Arial, sans-serif; }
  date-input-polyfill select, date-input-polyfill button {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #DADFE1;
    height: 24px;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none; }
  date-input-polyfill .monthSelect-wrapper {
    width: 55%;
    display: inline-block; }
  date-input-polyfill .yearSelect-wrapper {
    width: 25%;
    display: inline-block; }
  date-input-polyfill select {
    width: 100%; }
    date-input-polyfill select:first-of-type {
      border-right: 1px solid #DADFE1;
      border-radius: 5px 0 0 0;
      -moz-border-radius: 5px 0 0 0;
      -webkit-border-radius: 5px 0 0 0; }
  date-input-polyfill button {
    width: 20%;
    background: #DADFE1;
    border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0; }
    date-input-polyfill button:hover {
      background: #eee; }
  date-input-polyfill table {
    border-collapse: separate !important;
    border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    overflow: hidden;
    max-width: 280px;
    width: 280px; }
  date-input-polyfill th, date-input-polyfill td {
    width: 32px;
    padding: 4px;
    text-align: center;
    box-sizing: content-box; }
  date-input-polyfill td[data-day] {
    cursor: pointer; }
    date-input-polyfill td[data-day]:hover {
      background: #DADFE1; }
  date-input-polyfill [data-selected] {
    font-weight: bold;
    background: #D8EAF6; }

.account {
  position: relative;
  min-height: calc(100vh - 271px); }

.account__detail span {
  width: 30%;
  font-size: 16px;
  display: inline-block;
  text-align: right;
  padding-right: 10px; }

.account__detail .formInput--70 {
  width: 70%; }

.account__detail .formInput--60 {
  width: 60%; }

.account__detail .formInput--10 {
  width: 10%; }
  .account__detail .formInput--10 span {
    text-align: center;
    width: 100%;
    transform: translate(5px, 5px);
    font-size: 25px; }
  .account__detail .formInput--10 .glyphicon-ok-sign {
    color: green; }
  .account__detail .formInput--10 .glyphicon-minus-sign {
    color: red; }

.paper .account__facebook {
  vertical-align: middle;
  min-height: 49px;
  display: inline-block;
  width: 70%;
  text-align: center;
  color: #ffffff;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
  background-color: #3b5998; }

.paper.account__detail {
  max-width: 500px;
  margin-top: 25px; }

.paper .form-group {
  position: relative;
  margin-bottom: 5px; }

.paper i.glyphicon {
  position: absolute;
  font-size: 20px;
  z-index: 500;
  color: #dfdfdf;
  transform: translate(14px, 12px); }

.paper .form-control {
  display: inline-block;
  padding-left: 45px !important; }

.studycard {
  padding: 15px;
  transform: translateX(-1px); }
  .studycard img {
    max-width: 100%; }
  .studycard .studycard__title {
    margin-top: 25px;
    font-size: 27px; }

.studycard__introduction--hide {
  opacity: 0;
  height: 0; }

.thumbnail .caption button {
  margin: 0px;
  cursor: pointer; }

.background--basic {
  background-color: #850D0D;
  border: 3px solid #850D0D;
  border-radius: 3px;
  transition: background-color 0.5s ease-in-out;
  transition: transform 0.2s ease-in-out;
  color: white; }
  .background--basic .studycard__img {
    min-height: 150px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("/static/images/basic.png") !important; }
    @media all and (max-width: 479px) {
      .background--basic .studycard__img {
        min-height: 100px; } }
  @media all and (min-width: 991px) {
    .background--basic:hover {
      background-color: #ffffff;
      border-radius: 0px;
      transform: none; }
      .background--basic:hover .studycard__title {
        color: #850D0D; }
      .background--basic:hover .studycard__img {
        content: '';
        background-size: contain;
        background-position: center center;
        background-image: url("/static/images/basic_hover.png") !important; } }
  .background--basic:active {
    background-color: #ffffff;
    border-radius: 0px;
    transform: none; }
    .background--basic:active .studycard__title {
      color: #850D0D; }
    .background--basic:active .studycard__img {
      content: '';
      background-size: contain;
      background-position: center center;
      background-image: url("/static/images/basic_hover.png") !important; }

.background--normal {
  background-color: #1E2F66;
  border: 3px solid #1E2F66;
  border-radius: 3px;
  transition: background-color 0.5s ease-in-out;
  transition: transform 0.2s ease-in-out;
  color: white; }
  .background--normal .studycard__img {
    min-height: 150px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("/static/images/normal.png") !important; }
    @media all and (max-width: 479px) {
      .background--normal .studycard__img {
        min-height: 100px; } }
  @media all and (min-width: 991px) {
    .background--normal:hover {
      background-color: #ffffff;
      border-radius: 0px;
      transform: none; }
      .background--normal:hover .studycard__title {
        color: #1E2F66; }
      .background--normal:hover .studycard__img {
        content: '';
        background-size: contain;
        background-position: center center;
        background-image: url("/static/images/normal_hover.png") !important; } }
  .background--normal:active {
    background-color: #ffffff;
    border-radius: 0px;
    transform: none; }
    .background--normal:active .studycard__title {
      color: #1E2F66; }
    .background--normal:active .studycard__img {
      content: '';
      background-size: contain;
      background-position: center center;
      background-image: url("/static/images/normal_hover.png") !important; }

.background--same {
  background-color: #F7931E;
  border: 3px solid #F7931E;
  border-radius: 3px;
  transition: background-color 0.5s ease-in-out;
  transition: transform 0.2s ease-in-out;
  color: white; }
  .background--same .studycard__img {
    min-height: 150px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("/static/images/same.png") !important; }
    @media all and (max-width: 479px) {
      .background--same .studycard__img {
        min-height: 100px; } }
  @media all and (min-width: 991px) {
    .background--same:hover {
      background-color: #ffffff;
      border-radius: 0px;
      transform: none; }
      .background--same:hover .studycard__title {
        color: #F7931E; }
      .background--same:hover .studycard__img {
        content: '';
        background-size: contain;
        background-position: center center;
        background-image: url("/static/images/same_hover.png") !important; } }
  .background--same:active {
    background-color: #ffffff;
    border-radius: 0px;
    transform: none; }
    .background--same:active .studycard__title {
      color: #F7931E; }
    .background--same:active .studycard__img {
      content: '';
      background-size: contain;
      background-position: center center;
      background-image: url("/static/images/same_hover.png") !important; }

.background--advanced {
  background-color: #6A9128;
  border: 3px solid #6A9128;
  border-radius: 3px;
  transition: background-color 0.5s ease-in-out;
  transition: transform 0.2s ease-in-out;
  color: white; }
  .background--advanced .studycard__img {
    min-height: 150px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("/static/images/advanced.png") !important; }
    @media all and (max-width: 479px) {
      .background--advanced .studycard__img {
        min-height: 100px; } }
  @media all and (min-width: 991px) {
    .background--advanced:hover {
      background-color: #ffffff;
      border-radius: 0px;
      transform: none; }
      .background--advanced:hover .studycard__title {
        color: #6A9128; }
      .background--advanced:hover .studycard__img {
        content: '';
        background-size: contain;
        background-position: center center;
        background-image: url("/static/images/advanced_hover.png") !important; } }
  .background--advanced:active {
    background-color: #ffffff;
    border-radius: 0px;
    transform: none; }
    .background--advanced:active .studycard__title {
      color: #6A9128; }
    .background--advanced:active .studycard__img {
      content: '';
      background-size: contain;
      background-position: center center;
      background-image: url("/static/images/advanced_hover.png") !important; }

.background--disable {
  background-color: #dfdfdf;
  border: 3px solid #dfdfdf;
  cursor: not-allowed !important; }
  @media all and (min-width: 991px) {
    .background--disable:hover {
      background-color: #ffffff;
      border: 3px solid #ffffff; } }

.introduction {
  border-style: solid;
  border-width: 3px;
  padding: 40px;
  background-color: white; }
  @media all and (max-width: 479px) {
    .introduction {
      padding: 10px 10px 30px; } }
  .introduction .introduction__price {
    display: contents;
    font-size: 20px; }
  .introduction .introduction__price--sale {
    display: contents;
    font-size: 26px;
    font-weight: 700;
    color: #db2b2b; }
  .introduction h1 {
    color: #2861af;
    font-weight: 800; }
  .introduction h2 {
    color: #2861af;
    font-weight: 800; }
  .introduction h3 {
    font-size: 22px;
    color: #4a4a4a;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal; }
    @media all and (max-width: 479px) {
      .introduction h3 {
        max-width: 100%; } }
  .introduction h4 {
    font-size: 18px;
    line-height: 25px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #9b9b9b; }
  .introduction p {
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #9b9b9b; }
  .introduction button {
    margin-top: 15px;
    max-width: 180px; }
  .introduction select {
    width: 100%;
    max-width: 280px;
    height: 45px;
    line-height: 30px;
    font-size: 20px;
    text-align: center; }
    .introduction select option {
      padding: 15px 0; }
  .introduction .introduction__table {
    font-size: 18px; }
    .introduction .introduction__table table {
      max-width: 50%; }
      @media all and (max-width: 479px) {
        .introduction .introduction__table table {
          max-width: 90%; } }
  .introduction .introduction__content img {
    max-width: 100%;
    height: auto; }
  .introduction .packages__shoppingCartButton {
    z-index: 50;
    margin: 0px;
    position: fixed;
    right: 30px;
    bottom: 165px;
    width: 45px;
    height: 45px;
    font-size: 18px;
    line-height: 40px;
    border-radius: 23px;
    background: #ffffff;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12); }
    @media all and (min-width: 991px) {
      .introduction .packages__shoppingCartButton:hover {
        color: #fff;
        background-color: #ed960a; } }
  .introduction .packages__shoppingCartButton.shoppingCart__Button--active {
    color: #fff;
    background-color: #ed960a;
    opacity: 0.8; }
    @media all and (min-width: 991px) {
      .introduction .packages__shoppingCartButton.shoppingCart__Button--active:hover {
        opacity: 1; } }

.introduction__img {
  padding: 0px; }
  .introduction__img img {
    max-height: 200px;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto; }

.pick__img {
  padding: 0px;
  display: inline-block;
  vertical-align: top;
  max-width: 35%;
  overflow: hidden; }
  .pick__img img {
    width: 95%;
    height: calc(100% - 5px);
    min-height: auto;
    margin: 0 auto; }
    @media all and (min-width: 991px) {
      .pick__img img:hover {
        transform: scale(1.05); } }

.exam__mode {
  cursor: pointer; }
  .exam__mode label {
    cursor: pointer;
    position: relative;
    top: 5px; }
  .exam__mode .examMode__chks {
    min-height: 40px; }
  .exam__mode .examMode__time {
    max-width: 280px;
    padding: 15px;
    width: 100%;
    margin: 0 auto; }
    .exam__mode .examMode__time p {
      text-align: center;
      font-size: 18px;
      font-weight: 600; }
      .exam__mode .examMode__time p .examMode__timeNumber {
        text-align: right;
        display: inline-block;
        min-width: 50px;
        color: #d0021b; }
  .exam__mode .mode__label {
    border-radius: 2px;
    margin: 0 auto;
    width: 50%;
    min-height: 35px;
    line-height: 35px;
    max-width: 140px;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 1.2px;
    text-align: center;
    background-color: #eeeeee;
    color: #9b9b9b;
    cursor: pointer; }
  .exam__mode input {
    position: absolute;
    left: -9999px; }

.exam__mode--dynamic .examMode__time {
  background-color: #fdedd3; }

.exam__mode--dynamic input:checked + .mode__label {
  background-color: #fdedd3;
  color: #f5a623; }

.exam__mode--static .examMode__time {
  background-color: rgba(40, 143, 175, 0.2); }

.exam__mode--static input:checked + .mode__label {
  background-color: rgba(40, 143, 175, 0.2);
  color: #288faf; }

.long-word--hide {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.customScrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #c8c8c8; }

.studycard {
  padding: 15px;
  transform: translateX(-1px); }
  .studycard img {
    max-width: 100%; }
  .studycard .studycard__title {
    margin-top: 25px;
    font-size: 27px; }

.studycard__introduction--hide {
  opacity: 0;
  height: 0; }

.thumbnail .caption button {
  margin: 0px;
  cursor: pointer; }

.background--basic {
  background-color: #850D0D;
  border: 3px solid #850D0D;
  border-radius: 3px;
  transition: background-color 0.5s ease-in-out;
  transition: transform 0.2s ease-in-out;
  color: white; }
  .background--basic .studycard__img {
    min-height: 150px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("/static/images/basic.png") !important; }
    @media all and (max-width: 479px) {
      .background--basic .studycard__img {
        min-height: 100px; } }
  @media all and (min-width: 991px) {
    .background--basic:hover {
      background-color: #ffffff;
      border-radius: 0px;
      transform: none; }
      .background--basic:hover .studycard__title {
        color: #850D0D; }
      .background--basic:hover .studycard__img {
        content: '';
        background-size: contain;
        background-position: center center;
        background-image: url("/static/images/basic_hover.png") !important; } }
  .background--basic:active {
    background-color: #ffffff;
    border-radius: 0px;
    transform: none; }
    .background--basic:active .studycard__title {
      color: #850D0D; }
    .background--basic:active .studycard__img {
      content: '';
      background-size: contain;
      background-position: center center;
      background-image: url("/static/images/basic_hover.png") !important; }

.background--normal {
  background-color: #1E2F66;
  border: 3px solid #1E2F66;
  border-radius: 3px;
  transition: background-color 0.5s ease-in-out;
  transition: transform 0.2s ease-in-out;
  color: white; }
  .background--normal .studycard__img {
    min-height: 150px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("/static/images/normal.png") !important; }
    @media all and (max-width: 479px) {
      .background--normal .studycard__img {
        min-height: 100px; } }
  @media all and (min-width: 991px) {
    .background--normal:hover {
      background-color: #ffffff;
      border-radius: 0px;
      transform: none; }
      .background--normal:hover .studycard__title {
        color: #1E2F66; }
      .background--normal:hover .studycard__img {
        content: '';
        background-size: contain;
        background-position: center center;
        background-image: url("/static/images/normal_hover.png") !important; } }
  .background--normal:active {
    background-color: #ffffff;
    border-radius: 0px;
    transform: none; }
    .background--normal:active .studycard__title {
      color: #1E2F66; }
    .background--normal:active .studycard__img {
      content: '';
      background-size: contain;
      background-position: center center;
      background-image: url("/static/images/normal_hover.png") !important; }

.background--same {
  background-color: #F7931E;
  border: 3px solid #F7931E;
  border-radius: 3px;
  transition: background-color 0.5s ease-in-out;
  transition: transform 0.2s ease-in-out;
  color: white; }
  .background--same .studycard__img {
    min-height: 150px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("/static/images/same.png") !important; }
    @media all and (max-width: 479px) {
      .background--same .studycard__img {
        min-height: 100px; } }
  @media all and (min-width: 991px) {
    .background--same:hover {
      background-color: #ffffff;
      border-radius: 0px;
      transform: none; }
      .background--same:hover .studycard__title {
        color: #F7931E; }
      .background--same:hover .studycard__img {
        content: '';
        background-size: contain;
        background-position: center center;
        background-image: url("/static/images/same_hover.png") !important; } }
  .background--same:active {
    background-color: #ffffff;
    border-radius: 0px;
    transform: none; }
    .background--same:active .studycard__title {
      color: #F7931E; }
    .background--same:active .studycard__img {
      content: '';
      background-size: contain;
      background-position: center center;
      background-image: url("/static/images/same_hover.png") !important; }

.background--advanced {
  background-color: #6A9128;
  border: 3px solid #6A9128;
  border-radius: 3px;
  transition: background-color 0.5s ease-in-out;
  transition: transform 0.2s ease-in-out;
  color: white; }
  .background--advanced .studycard__img {
    min-height: 150px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("/static/images/advanced.png") !important; }
    @media all and (max-width: 479px) {
      .background--advanced .studycard__img {
        min-height: 100px; } }
  @media all and (min-width: 991px) {
    .background--advanced:hover {
      background-color: #ffffff;
      border-radius: 0px;
      transform: none; }
      .background--advanced:hover .studycard__title {
        color: #6A9128; }
      .background--advanced:hover .studycard__img {
        content: '';
        background-size: contain;
        background-position: center center;
        background-image: url("/static/images/advanced_hover.png") !important; } }
  .background--advanced:active {
    background-color: #ffffff;
    border-radius: 0px;
    transform: none; }
    .background--advanced:active .studycard__title {
      color: #6A9128; }
    .background--advanced:active .studycard__img {
      content: '';
      background-size: contain;
      background-position: center center;
      background-image: url("/static/images/advanced_hover.png") !important; }

.background--disable {
  background-color: #dfdfdf;
  border: 3px solid #dfdfdf;
  cursor: not-allowed !important; }
  @media all and (min-width: 991px) {
    .background--disable:hover {
      background-color: #ffffff;
      border: 3px solid #ffffff; } }

@media all and (min-width: 991px) {
  .space--50 {
    height: 50px; } }

.section--gray {
  background-color: #f5f5f5;
  padding-bottom: 25px; }

.section--set {
  background-color: #f5f5f5;
  padding-bottom: 25px;
  background-image: url("/static/images/set_bg.png");
  background-size: 100%;
  background-repeat: no-repeat;
  padding-top: 40px;
  text-align: center; }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .section--set {
      background-size: 1000px 700px; } }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .section--set {
      background-size: 1000px 700px; } }
  @media all and (max-width: 479px) {
    .section--set {
      background-size: 1000px 700px; } }

.section__title {
  width: 397px;
  height: 54px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.69);
  font-family: NotoSansCJKtc;
  font-size: 32px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #ffffff;
  padding-top: 28px; }

.setarea__btn {
  height: 40px;
  border: solid 1px #2f2f5a;
  background-color: #ffffff;
  color: #2f2f5a; }

.setarea__content {
  position: relative;
  left: 25px;
  width: 200px;
  height: 240px;
  font-family: NotoSansCJKtc;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.05;
  letter-spacing: normal;
  color: #4a4a4a;
  text-align: left; }

.setarea {
  width: 322px;
  height: 491px;
  position: relative;
  margin: auto; }

.setarea__background {
  float: left;
  position: absolute;
  top: 77px;
  left: 23px;
  width: 275px;
  height: 76%;
  background-color: white; }

.setarea__slider {
  top: 100px;
  position: relative;
  z-index: 3;
  height: 350px;
  width: 250px;
  left: 33px; }

.setarea__seprate {
  position: relative;
  left: 6px;
  width: 239px;
  height: 2px;
  background-color: #ab922e; }

.setarea__name {
  width: 100%;
  height: 41px;
  font-family: NotoSansCJKtc;
  font-size: 28px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #ab922e; }

h2 {
  font-size: 32px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 1.1px;
  color: #4a4a4a; }

.benefit h3 {
  font-weight: 600;
  font-size: 28px; }

.benefit p {
  max-width: 180px;
  font-size: 20px;
  font-weight: 400;
  margin: 0 auto;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #4a4a4a;
  margin-bottom: 40px;
  min-height: 120px; }

.benefit .benefit__image {
  margin: 0 auto;
  background-color: #ffffff;
  width: 208px;
  height: 208px;
  line-height: 208px;
  border-radius: 119px; }

img {
  opacity: 1;
  transition: opacity 0.3s; }

img[data-src] {
  opacity: 0; }

#rank {
  padding: 0 25px 0 15px; }
  @media all and (min-width: 768px) and (max-width: 992px) {
    #rank {
      margin: 0 auto 30px;
      transform: translateY(25px); } }
  @media all and (max-width: 479px) {
    #rank {
      transform: translateY(25px);
      margin-bottom: 50px; } }

.rank__h3 {
  margin: 0px;
  line-height: 50px;
  height: 50px;
  width: 100%;
  font-size: 26px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
  color: #ffffff;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  background-image: linear-gradient(277deg, #6f0b20, #bc2b2d 23%, #f9b5a3 44%, #951323 78%, #d64a43); }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .rank__h3 {
      line-height: 80px;
      height: 80px; } }

.rank__content {
  border: 3px solid #d54a42;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px; }
  .rank__content .row {
    padding: 30px 0px 15px;
    min-height: 490px; }
    @media all and (max-width: 1080px) {
      .rank__content .row {
        min-height: 300px; } }

.ranklist {
  max-width: 100%;
  position: relative; }
  .ranklist img {
    max-width: 100%;
    transform: translateY(-15px); }
  .ranklist .ranklist__content {
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: 600;
    z-index: 1;
    color: #fff; }
    @media all and (min-width: 768px) and (max-width: 992px) {
      .ranklist .ranklist__content {
        font-size: 3vw; } }
    @media all and (min-width: 480px) and (max-width: 767px) {
      .ranklist .ranklist__content {
        font-size: 4vw; } }
    @media all and (max-width: 479px) {
      .ranklist .ranklist__content {
        font-size: 4vw; } }

.method {
  margin-left: 15px;
  margin-right: 15px;
  border: 3px solid; }
  .method span {
    font-weight: 500;
    height: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center; }
  @media all and (min-width: 991px) {
    .method span {
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center; } }
  @media all and (max-width: 479px) {
    .method {
      font-size: 15px; } }

.method--basic {
  border-color: #850D0D; }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .method--basic {
      display: initial;
      border: none; } }
  @media all and (max-width: 479px) {
    .method--basic {
      display: initial;
      border: none; } }

.method--normal {
  border-color: #1E2F66; }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .method--normal {
      display: initial;
      border: none; } }
  @media all and (max-width: 479px) {
    .method--normal {
      display: initial;
      border: none; } }

.method--same {
  border-color: #F7931E; }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .method--same {
      display: initial;
      border: none; } }
  @media all and (max-width: 479px) {
    .method--same {
      display: initial;
      border: none; } }

.method--advanced {
  border-color: #445D1A; }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .method--advanced {
      display: initial;
      border: none; } }
  @media all and (max-width: 479px) {
    .method--advanced {
      display: initial;
      border: none; } }

.promote {
  margin-bottom: 10px; }
  .promote h3 {
    margin-top: 0px;
    font-weight: 700; }
    @media all and (min-width: 768px) and (max-width: 992px) {
      .promote h3 {
        font-size: 30px; } }
  .promote p {
    padding-right: 10px;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.83;
    letter-spacing: 1.8px;
    color: #ffffff; }
    @media all and (min-width: 768px) and (max-width: 992px) {
      .promote p {
        font-size: 24px; } }
  .promote .promote__info {
    min-height: 200px;
    position: absolute;
    top: 35px;
    color: #ffffff;
    right: 30px;
    width: calc(50% - 30px); }
  @media all and (max-width: 479px) {
    .promote {
      margin-top: 20px;
      margin-bottom: 20px; }
      .promote h3 {
        font-size: 26px; }
      .promote .promote__info {
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0px;
        width: 60%; } }

.promote__info--mobile {
  margin-top: 30px; }

.index-banners {
  padding: 12px 0;
  margin: 0; }
  .index-banners__arrow.slick-prev {
    left: -25px; }
    @media screen and (min-width: 985px) {
      .index-banners__arrow.slick-prev {
        left: calc((100% - 960px) / 2 - 30px); } }
    .index-banners__arrow.slick-prev::before {
      font-family: "Glyphicons Halflings";
      content: '\E079';
      font-size: 1.3rem;
      display: block; }
  .index-banners__arrow.slick-next {
    right: -25px; }
    @media screen and (min-width: 985px) {
      .index-banners__arrow.slick-next {
        right: calc((100% - 960px) / 2 - 30px); } }
    .index-banners__arrow.slick-next::before {
      font-family: "Glyphicons Halflings";
      content: '\E080';
      font-size: 1.3rem;
      display: block; }
  .index-banners__arrow::before {
    color: #9b9b9b; }
  .index-banners .banner {
    padding: 6px; }
    .index-banners .banner__img {
      border-radius: 20px;
      margin: auto;
      max-width: 960px;
      max-height: 470px;
      width: 100%;
      cursor: pointer; }
  .index-banners .banner__dot li button::before {
    width: 6px;
    height: 6px;
    color: #d8d8d8;
    opacity: 1; }
  .index-banners .banner__dot li.slick-active button::before {
    color: #44b4eb; }

.index-content__item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
  background-color: #f8f9fa;
  padding: 12px 0; }
  .index-content__item.double {
    flex-direction: row-reverse;
    background-color: #fff; }

.index-content__text {
  flex-basis: 70%;
  flex-grow: 1;
  color: #4a4a4a;
  padding: 12px;
  max-width: 600px;
  margin-bottom: 20px; }
  .index-content__text a {
    color: initial; }
  .index-content__text .index-content__title {
    font-size: 42px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px; }
  .index-content__text .index-content__content {
    font-size: 24px;
    line-height: 1.77;
    font-weight: 500; }

.index-content__img {
  margin: 12px; }
  .index-content__img img {
    width: 100%; }

.long-word--hide {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.customScrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #c8c8c8; }

.banner__campaign {
  position: relative;
  background-image: linear-gradient(to bottom, #45e8ad, #3f9cbe 68%, #03a0b1);
  height: 400px;
  min-height: calc(100vh - 55px); }
  @media all and (min-width: 991px) {
    .banner__campaign {
      height: 400px;
      min-height: auto; } }
  @media all and (max-width: 479px) {
    .banner__campaign {
      min-height: 650px;
      height: auto; } }

.campaign {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-around;
  align-items: stretch;
  margin: 50px auto; }
  .campaign .campaign__img {
    background-color: #b28247;
    text-align: center;
    height: 100%;
    min-width: 300px;
    margin: 0 auto;
    padding: 20px 0; }
    @media all and (min-width: 991px) {
      .campaign .campaign__img {
        width: 40%;
        padding: 53px 0; } }
    .campaign .campaign__img img {
      margin: auto;
      height: 150px; }
      @media all and (min-width: 991px) {
        .campaign .campaign__img img {
          height: 100%; } }
  .campaign .campaign__form {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    color: #4a4a4a;
    text-align: center; }
    @media all and (min-width: 991px) {
      .campaign .campaign__form {
        width: 60%;
        background-color: #fff; } }
    .campaign .campaign__form .campaign__title {
      margin: 30px auto 20px;
      font-size: 2rem;
      font-weight: 500; }
      @media all and (min-width: 991px) {
        .campaign .campaign__form .campaign__title {
          margin-top: 40px; } }
    .campaign .campaign__form .campaign__input {
      border-radius: 2px;
      border: solid 2px #979797;
      background-color: #fff;
      height: 46px;
      font-size: 16px;
      font-weight: 600;
      padding-left: 12px;
      width: 100%;
      margin: 12px auto; }
    .campaign .campaign__form .campaign__form__content {
      width: 340px;
      margin: auto; }
    .campaign .campaign__form .campaign__notify {
      margin: 12px 0 33px;
      font-size: 14px;
      color: #4a4a4a; }
  .campaign .campaign__qrCode {
    padding-top: 30px;
    color: #4a4a4a; }
    .campaign .campaign__qrCode span {
      color: #4a4a4a;
      background-color: #b3d7e6;
      padding: 15px;
      font-size: 40px;
      border-radius: 60px; }

.coupon__title {
  background-color: #b3d7e6;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: NotoSansCJKtc;
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal; }

.coupon {
  text-align: left;
  vertical-align: middle; }
  .coupon .coupon__img {
    width: 150px;
    padding: 10px 35px; }
    @media all and (min-width: 991px) {
      .coupon .coupon__img {
        vertical-align: middle; } }
    @media all and (min-width: 768px) and (max-width: 992px) {
      .coupon .coupon__img {
        vertical-align: middle; } }
    @media all and (max-width: 479px) {
      .coupon .coupon__img {
        vertical-align: inherit;
        width: 80px;
        padding: 10px 5px; } }
  .coupon .coupon__img--modal {
    padding: 8px; }
  .coupon .coupon__info {
    display: inline-block;
    width: calc(100% - 150px); }
    @media all and (max-width: 479px) {
      .coupon .coupon__info {
        width: calc(100% - 80px); } }
    .coupon .coupon__info .coupon__info--text {
      display: inline-block;
      line-height: 60px;
      font-size: 18px;
      font-weight: 500;
      font-style: normal;
      font-stretch: normal;
      letter-spacing: normal;
      transform: translateY(10px); }
      @media all and (min-width: 991px) {
        .coupon .coupon__info .coupon__info--text {
          transform: none; } }
      .coupon .coupon__info .coupon__info--text .couponInfo__code {
        display: block;
        line-height: 20px;
        color: #d0021b;
        font-size: 18px; }
        @media all and (max-width: 479px) {
          .coupon .coupon__info .coupon__info--text .couponInfo__code {
            display: block; } }
        @media all and (min-width: 991px) {
          .coupon .coupon__info .coupon__info--text .couponInfo__code {
            min-width: 150px;
            display: inline-block; } }
      .coupon .coupon__info .coupon__info--text .couponInfo__code--modal {
        display: block; }
      .coupon .coupon__info .coupon__info--text .couponInfo__date {
        display: block;
        line-height: 20px;
        color: #9b9b9b;
        font-size: 14px; }
        @media all and (max-width: 479px) {
          .coupon .coupon__info .coupon__info--text .couponInfo__date {
            display: block; } }
        @media all and (min-width: 991px) {
          .coupon .coupon__info .coupon__info--text .couponInfo__date {
            display: inline-block; } }
      .coupon .coupon__info .coupon__info--text .couponInfo__date--modal {
        display: block; }
    .coupon .coupon__info .coupon__button {
      width: auto;
      min-width: 100px;
      float: right;
      color: #fff;
      margin-top: 15px;
      margin-right: 10px;
      padding-top: 8px;
      padding-bottom: 8px;
      border-radius: 1px;
      background-color: #f5a623; }
      @media all and (max-width: 479px) {
        .coupon .coupon__info .coupon__button {
          min-width: 70px;
          margin-right: 5px; } }
  .coupon .coupon__status {
    float: right;
    display: block;
    width: auto;
    margin-right: 5px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 1px;
    background-color: #ededed; }
    @media all and (max-width: 479px) {
      .coupon .coupon__status {
        margin-top: 5px; } }
  .coupon .coupon__status--success {
    color: #f5a623; }
  .coupon .coupon__status--failure {
    color: #9b9b9b; }

.chapters {
  list-style: none; }

.resource--icon {
  margin: auto 5px; }

.pagination {
  list-style: none;
  display: flex;
  font-size: 1.2rem;
  margin: auto;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  padding: 0; }
  .pagination .pagination__option {
    border: 1px solid #eee;
    border-radius: 3px;
    text-align: center;
    vertical-align: baseline;
    margin: auto 6px;
    width: 30px;
    height: 30px;
    cursor: pointer; }
  .pagination .pagination__option--active {
    background-color: green;
    color: #fff;
    cursor: default; }
  .pagination .pagination__option--disabled {
    cursor: default;
    background-color: #eee;
    color: #d4d3d3; }

.Collapsible {
  background-color: #eee; }
  .Collapsible .Collapsible--hight-light {
    color: red;
    font-weight: 600; }

.Collapsible__contentInner {
  padding: 10px;
  border: 1px solid #eee;
  border-top: 0; }
  .Collapsible__contentInner p {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 20px; }
    .Collapsible__contentInner p:last-child {
      margin-bottom: 0; }

.Collapsible__trigger {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  border: 1px solid white;
  padding: 10px 30px 10px 10px;
  background: #b28247;
  color: white;
  cursor: pointer; }
  .Collapsible__trigger > i {
    position: absolute;
    right: 14px;
    top: 14px;
    display: block;
    transition: transform 300ms; }
  .Collapsible__trigger.is-open > i {
    transform: rotateZ(180deg); }
  .Collapsible__trigger.is-disabled {
    opacity: 0.5;
    background-color: grey; }

.CustomTriggerCSS {
  background-color: lightcoral;
  transition: background-color 200ms ease; }

.CustomTriggerCSS--open {
  background-color: darkslateblue; }

.Collapsible__custom-sibling {
  padding: 5px;
  font-size: 0.8rem;
  background-color: #CBB700;
  color: black; }

.member-rule__warp {
  background-color: #fff;
  padding: 40px 35px; }

.member-rule {
  border-bottom-right-radius: 33px;
  border-bottom-left-radius: 33px;
  border: 2px solid #b28247; }
  .member-rule__title {
    background-color: #b28247;
    color: #fff;
    font-size: 30px;
    font-weight: normal;
    line-height: 56px;
    text-align: center; }
  .member-rule__content {
    font-size: 16px;
    line-height: 32px;
    margin: 20px 12px; }
    .member-rule__content > * {
      margin-bottom: 20px; }
    .member-rule__content li {
      list-style: decimal;
      font-weight: 600; }
    .member-rule__content--strong {
      color: #d0021b;
      margin-top: 30px;
      font-size: 20px; }
    .member-rule__content--highlight {
      background-color: #fffcd7; }

.upgrade__paying__member__modal {
  border-radius: 12px;
  padding: 45px 20px 20px !important;
  background-color: #eee !important; }
  .upgrade__paying__member__modal__title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    border-bottom: 1px solid #fff; }
  .upgrade__paying__member__modal__sub-title {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px; }
  .upgrade__paying__member__modal__info {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0; }
  .upgrade__paying__member__modal__img {
    text-align: center; }
    .upgrade__paying__member__modal__img > img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      -o-object-fit: cover;
         object-fit: cover;
      max-width: 300px; }
  .upgrade__paying__member__modal__paytypes {
    display: flex;
    gap: 12px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; }
  .upgrade__paying__member__modal__paytype {
    background-color: #eee;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
    border-radius: 8px;
    cursor: pointer;
    margin: auto; }
  .upgrade__paying__member__modal--mark {
    background-color: yellow; }
  .upgrade__paying__member__modal__offline__button {
    margin: 12px 0 0; }
  .upgrade__paying__member__modal__online {
    font-size: 1.2rem;
    color: #666;
    margin: 12px 0; }
  .upgrade__paying__member__modal__plans {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center; }
  .upgrade__paying__member__modal__plan {
    width: 100%;
    border-radius: 6px;
    background-color: #fff;
    padding: 12px;
    max-width: 340px;
    position: relative; }
    .upgrade__paying__member__modal__plan--selecter {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer; }
      .upgrade__paying__member__modal__plan--selecter__icon {
        color: green;
        font-size: 1.7rem;
        position: absolute;
        top: 12px;
        right: 12px; }
    .upgrade__paying__member__modal__plan--unselect {
      opacity: 0.5;
      background-color: #eee; }
  .upgrade__paying__member__modal__plan__name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 12px; }
  .upgrade__paying__member__modal__plan__content {
    border-top: 1px solid #eee;
    padding: 12px;
    margin: 12px 0 0;
    font-size: 0.8rem;
    font-weight: 500; }
    .upgrade__paying__member__modal__plan__content > ul {
      list-style: none;
      padding: 0;
      margin: 0; }
      .upgrade__paying__member__modal__plan__content > ul > li {
        margin: 8px 0; }
  .upgrade__paying__member__modal__plan__price-date {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: flex-end; }
  .upgrade__paying__member__modal__plan__date {
    font-size: 0.9rem;
    font-weight: 500;
    color: #959292; }
  .upgrade__paying__member__modal__tag {
    margin: 0 3px;
    padding: 0 4px;
    white-space: nowrap;
    border: 1px dashed #c39a33; }
  .upgrade__paying__member__modal__plan__products {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 3px; }
    .upgrade__paying__member__modal__plan__products > :first-child {
      flex-grow: 0;
      flex-shrink: 0; }
    .upgrade__paying__member__modal__plan__products > :last-child {
      flex-grow: 0;
      flex-shrink: 0; }
  .upgrade__paying__member__modal__consignment__input {
    margin: 24px auto;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500; }
    .upgrade__paying__member__modal__consignment__input > input {
      border: 2px solid #b9b9b9;
      height: 30px;
      margin: auto 12px; }
  .upgrade__paying__member__modal__block {
    border-top: 1px solid #fff;
    margin: 12px 0 0; }
  .upgrade__paying__member__modal__description {
    font-size: 0.8rem;
    font-weight: 500;
    color: #959292; }
    .upgrade__paying__member__modal__description--red {
      color: red;
      text-align: center; }
  .upgrade__paying__member__modal__btns {
    margin: 12px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; }

.vip-agreement {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  padding: 12px;
  background-color: #f9f9f9; }
  .vip-agreement__title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2c3e50; }
  .vip-agreement__section {
    margin-bottom: 2rem; }
    .vip-agreement__section--signature {
      text-align: center;
      font-style: italic; }
  .vip-agreement__heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #34495e; }
  .vip-agreement__plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; }
  .vip-agreement__plan {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem; }
    .vip-agreement__plan-title {
      font-size: 1.1rem;
      font-weight: bold;
      margin-bottom: 0.75rem;
      color: #2980b9; }
  .vip-agreement__benefits, .vip-agreement__terms {
    list-style: disc;
    padding-left: 1.5rem; }
    .vip-agreement__benefits li, .vip-agreement__terms li {
      margin-bottom: 0.5rem; }
  .vip-agreement__highlight {
    font-weight: 600;
    color: #cf8080; }

.subscription-services__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px; }

.subscription-services__cards {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: column;
  gap: 12px; }

.subscription-service__card {
  border: 1px solid #eee;
  padding: 12px;
  border-radius: 6px;
  background-color: #10ad80;
  color: #fff;
  max-width: 700px;
  margin: auto;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between; }
  .subscription-service__card__header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px; }
    .subscription-service__card__header--img > img {
      width: 70px;
      height: 70px;
      -o-object-fit: cover;
         object-fit: cover; }
    .subscription-service__card__header--name {
      font-size: 1.3rem;
      font-weight: 600; }
  .subscription-service__card__content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 12px;
    margin: 12px 0 0; }
    .subscription-service__card__content--item {
      border-radius: 12px;
      background-color: #4cc1a0;
      color: #fff;
      padding: 12px;
      font-size: 1rem;
      font-weight: 500;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-content: center;
      align-items: center;
      justify-content: space-around; }
  .subscription-service__card__description {
    margin: 6px 0; }
  .subscription-service__card__prices {
    margin: 12px 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    background-color: #fff;
    color: #cfcaca;
    border-radius: 12px;
    padding: 12px;
    font-size: 1.3rem;
    font-weight: 600; }
  .subscription-service__card__price {
    padding: 0 6px;
    text-align: center; }
    .subscription-service__card__price--right-hr {
      border-right: 3px solid #29ae83; }
    .subscription-service__card__price--use {
      color: #10ad80; }
    .subscription-service__card__price--type {
      font-size: 0.9rem;
      font-weight: 500; }
  .subscription-service__card__pay-buttons {
    flex-basis: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin: 12px 0 0; }

.subscription-service__slider {
  margin-top: 100px; }
  .subscription-service__slider > .slick-list {
    z-index: 10; }
  .subscription-service__slider__dots {
    position: absolute;
    top: -90px;
    z-index: 0;
    text-align: center; }
    .subscription-service__slider__dots > li {
      margin: 0 10px 10px 0;
      text-align: center;
      width: 70px; }
      .subscription-service__slider__dots > li > div > img {
        filter: grayscale(70%);
        opacity: 0.6;
        -o-object-fit: cover;
           object-fit: cover;
        width: 50px;
        height: 50px; }
    .subscription-service__slider__dots > li.slick-active > div > img {
      filter: grayscale(0%);
      opacity: 1; }

.my-subscription__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }

.my-subscription__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  text-align: center; }

.my-subscription__description {
  font-size: 0.9rem;
  color: #9d8d8d; }

.my-subscription__list {
  display: flex;
  gap: 12px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center; }

.my-subscription__list__item {
  border: 2px solid #eee;
  padding: 12px;
  border-radius: 12px;
  background-color: #eee;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  align-content: flex-start;
  gap: 12px;
  width: 320px; }

.my-subscription__image > img {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover; }

.my-subscription__name {
  font-size: 1.3rem;
  font-weight: 600; }

.my-subscription__end-date {
  color: #9d8d8d; }

.my-subscription__today-claim {
  flex-basis: 100%; }
  .my-subscription__today-claim__title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px; }
  .my-subscription__today-claim__list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 12px; }
  .my-subscription__today-claim__item {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 6px;
    padding: 12px; }
  .my-subscription__today-claim__item--get {
    background-color: #10ad80;
    color: #fff; }

.no-subscription__msg {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-top: 20px;
  padding: 10px; }

.common__modal {
  border-radius: 12px;
  padding: 45px !important;
  background-color: #eee !important; }
  .common__modal__title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    border-bottom: 1px solid #fff; }
  .common__modal__sub-title {
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px; }

.product--packages__cards {
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 12px; }

.product--packages__card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #eee;
  width: 100%;
  gap: 12px;
  padding: 12px; }
  .product--packages__card__cover {
    background-color: #fff;
    padding: 2px;
    max-width: 420px;
    margin: auto;
    flex-grow: 0; }
    .product--packages__card__cover > img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .product--packages__card__info {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    flex-basis: 300px; }
  .product--packages__card__title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px; }
  .product--packages__card__products {
    margin: 6px 0 12px; }
    .product--packages__card__products__sub--title {
      font-size: 0.8rem;
      font-weight: 600; }
  .product--packages__card__product {
    margin: 6px 6px 6px 0;
    font-weight: 500;
    display: flex;
    align-items: flex-start; }
    .product--packages__card__product__tag {
      background-color: #d98623;
      padding: 2px 5px;
      color: #fff;
      margin-right: 6px;
      width: 52px;
      border-radius: 3px;
      flex-shrink: 0; }
  .product--packages__card__description {
    flex-basis: 100%;
    flex-shrink: 0;
    padding: 12px;
    background-color: #eee;
    max-height: 150px;
    overflow-y: auto; }
  .product--packages__card__btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: auto; }
  .product--packages__card__price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d98623;
    margin-bottom: 12px; }

.product--packages__qrcode {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  gap: 24px; }
  .product--packages__qrcode__title {
    font-size: 1.2rem;
    font-weight: 600; }

.bonus-product__main {
  color: #4a4a4a;
  background-color: #fff;
  padding: 24px 12px; }

.bonus-product__info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start; }
  .bonus-product__info > div {
    margin: 0 24px; }
  .bonus-product__info .bonus-product__overview {
    flex-grow: 1; }
  .bonus-product__info .bonus-product__images {
    margin: 0 auto; }

.bonus-product__cover {
  width: 500px;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 24px; }
  @media all and (max-width: 550px) {
    .bonus-product__cover {
      width: 300px;
      height: 300px; } }

.bonus-product__overview__type {
  font-size: 1rem;
  color: #9b9b9b; }

.bonus-product__overview__name {
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: 1px solid #4a4a4a;
  padding: 12px 3px 12px; }

.bonus-product__overview__require {
  background-color: #f2f2f2;
  padding: 12px;
  margin: 24px 0; }

.bonus-product__overview__on-sale-date {
  font-size: 1rem;
  margin: 12px 0; }
  .bonus-product__overview__on-sale-date .bonus-product__overview__date {
    margin: 0 3px;
    font-size: 1.2rem;
    font-weight: 600; }

.bonus-product__overview__expriy-date {
  margin: 12px auto 24px;
  font-size: 1rem; }
  .bonus-product__overview__expriy-date .bonus-product__overview__expriy-date-day {
    font-size: 1.2rem;
    margin: auto 12px;
    color: red;
    font-weight: 600; }

.bonus-product__overview__btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
  margin: 36px auto; }

.bonus-product__overview__alert {
  background-color: red;
  color: #fff;
  font-size: 1.2rem;
  padding: 12px 24px; }

.bonus-product__block {
  margin: 36px 0; }

.bonus-product__block__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a90e2;
  padding: 12px 0 12px 6px;
  border-bottom: 1px solid #b7b7b7;
  margin-bottom: 24px; }

.bonus-product__notes {
  list-style: none;
  font-size: 1rem;
  line-height: 1.5rem;
  padding-left: 0; }

.bonus-product__disallow {
  color: red;
  font-weight: 600; }

.bonus-store__paper {
  background-color: #fff;
  padding: 24px; }

.bonus-store__products__header {
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  color: #4a4a4a; }
  .bonus-store__products__header .bonus-store__products__title {
    margin-right: 20px; }
  .bonus-store__products__header__hr {
    flex-grow: 1;
    height: 3px;
    min-width: 20px;
    background-color: #f8f9fa;
    margin: auto; }
  .bonus-store__products__header .bonus-store__products__more {
    margin-left: 20px;
    cursor: pointer;
    font-size: 1.3rem; }

.bonus-store__products {
  padding: 12px 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  overflow-x: auto; }
  .bonus-store__products--wrap {
    flex-wrap: wrap;
    overflow-x: hidden; }
    @media all and (max-width: 607px) {
      .bonus-store__products--wrap > div {
        margin: 0 auto 20px; }
      .bonus-store__products--wrap .bonus-product__card {
        width: 100%; }
        .bonus-store__products--wrap .bonus-product__card .bonus-product__card__cover {
          width: 100%; } }

.bonus-product__card {
  position: relative;
  cursor: pointer;
  margin-right: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); }
  @media all and (max-width: 607px) {
    .bonus-product__card {
      width: 160px; } }
  .bonus-product__card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: 6px;
    background-color: red;
    color: #fff;
    padding: 3px 6px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center; }
    .bonus-product__card__tag > i {
      margin-right: 6px; }
  .bonus-product__card__disallow {
    color: red;
    font-weight: 600;
    margin: 3px auto;
    position: absolute;
    right: 3px;
    bottom: 3px; }

.bonus-product__card__cover {
  width: 260px;
  height: 260px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }
  @media all and (max-width: 607px) {
    .bonus-product__card__cover {
      width: 160px;
      height: 160px; } }

.bonus-product__card__content {
  padding: 6px 0 6px 6px; }

.bonus-product__card__title {
  font-size: 1.2rem;
  margin: 6px 0; }
  @media all and (max-width: 607px) {
    .bonus-product__card__title {
      font-size: 1rem; } }

.bonus-product__require {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center; }
  .bonus-product__require--multiline {
    justify-content: center;
    flex-wrap: wrap; }
  .bonus-product__require > img {
    padding-top: 3px; }

.bonus-product__require__value {
  font-size: 1.5rem;
  margin-left: 3px; }

.bonus-product__require__and {
  font-size: 1.5rem;
  margin: 0 6px; }
  .bonus-product__require__and--multiline {
    flex-basis: 100%; }

.bonus-product__require__unit {
  font-size: 1rem; }

.thumbnail-slider__image {
  width: 110px;
  height: 110px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer; }
  .thumbnail-slider__image--active {
    border: 2px solid #ffb751;
    cursor: default; }
  @media all and (max-width: 550px) {
    .thumbnail-slider__image {
      width: 60px;
      height: 60px; } }

.bonus-product__select__quantity {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center; }
  .bonus-product__select__quantity .bonus-product__quantity__title {
    font-size: 1rem;
    margin-right: 12px; }
    @media all and (max-width: 479px) {
      .bonus-product__select__quantity .bonus-product__quantity__title {
        display: none; } }
  .bonus-product__select__quantity .bonus-product__quantity__btn {
    width: 36px;
    height: 36px;
    border: 1px solid #eee;
    text-align: center;
    font-size: 1.3rem;
    cursor: pointer;
    font-weight: 600;
    -moz-user-select: none;
         user-select: none; }
    @media all and (max-width: 479px) {
      .bonus-product__select__quantity .bonus-product__quantity__btn {
        width: 24px;
        height: 24px;
        font-size: 1rem; } }
  .bonus-product__select__quantity .bonus-product__quantity__btn[disabled] {
    color: #eee;
    cursor: default; }
  .bonus-product__select__quantity .bonus-product__quantity__input > input {
    height: 36px;
    width: 90px;
    border: 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: right;
    font-size: 1rem; }
  @media all and (max-width: 479px) {
    .bonus-product__select__quantity .bonus-product__quantity__input > input {
      width: 20px;
      height: 24px; } }
  .bonus-product__select__quantity .bonus-product__stock__quantity {
    font-size: 0.9rem;
    color: #9a9a9a;
    flex-basis: 100%;
    margin: 12px auto; }
  .bonus-product__select__quantity .bonus-product__stock__quantity--alert {
    color: red; }

.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .vjs-button > .vjs-icon-placeholder:before, .video-js .vjs-modal-dialog, .vjs-modal-dialog .vjs-modal-dialog-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.video-js .vjs-big-play-button .vjs-icon-placeholder:before, .vjs-button > .vjs-icon-placeholder:before {
  text-align: center; }

@font-face {
  font-family: VideoJS;
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAABDkAAsAAAAAG6gAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZRiV3hY21hcAAAAYQAAADaAAADPv749/pnbHlmAAACYAAAC3AAABHQZg6OcWhlYWQAAA3QAAAAKwAAADYZw251aGhlYQAADfwAAAAdAAAAJA+RCLFobXR4AAAOHAAAABMAAACM744AAGxvY2EAAA4wAAAASAAAAEhF6kqubWF4cAAADngAAAAfAAAAIAE0AIFuYW1lAAAOmAAAASUAAAIK1cf1oHBvc3QAAA/AAAABJAAAAdPExYuNeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGS7wTiBgZWBgaWQ5RkDA8MvCM0cwxDOeI6BgYmBlZkBKwhIc01hcPjI+FGJHcRdyA4RZgQRADK3CxEAAHic7dFZbsMgAEXRS0ycyZnnOeG7y+qC8pU1dHusIOXxuoxaOlwZYWQB0Aea4quIEN4E9LzKbKjzDeM6H/mua6Lmc/p8yhg0lvdYx15ZG8uOLQOGjMp3EzqmzJizYMmKNRu27Nhz4MiJMxeu3Ljz4Ekqm7T8P52G8PP3lnTOVk++Z6iN6QZzNN1F7ptuN7eGOjDUoaGODHVsuvU8MdTO9Hd5aqgzQ50b6sJQl4a6MtS1oW4MdWuoO0PdG+rBUI+GejLUs6FeDPVqqDdDvRvqw1CfhpqM9At0iFLaAAB4nJ1YDXBTVRZ+5/22TUlJ8we0pHlJm7RJf5O8F2j6EymlSPkpxaL8U2xpa3DKj0CBhc2IW4eWKSokIoLsuMqssM64f+jA4HSdWXXXscBq67IOs3FXZ1ZYWVyRFdo899yXtIBQZ90k7717zz3v3HPPOfd854YCCj9cL9dL0RQFOqCbGJnrHb5EayiKIWN8iA/hWBblo6hUWm8TtCDwE80WMJus/irwyxOdxeB0MDb14VNJHnXYoLLSl6FfCUYO9nYPTA8Epg9090LprfbBbZ2hY0UlJUXHQp3/vtWkS6EBv8+rPMq5u9692f/dNxJNiqwC1xPE9TCUgCsSdQWgE3XQD25lkG4CN2xmTcOXWBOyser6RN6KnGbKSbmQ3+d0OI1m2W8QzLLkI2sykrWAgJJEtA8vGGW/2Q+CmT3n8zS9wZwu2DCvtuZKZN3xkrLh36yCZuUomQSqGpY8t/25VfHVhw8z4ebGBtfLb0ya9PCaDc+8dGTvk2dsh6z7WzvowlXKUSWo9MJ15a3KrEP2loOr2Ojhw6iW6hf2BDdEccQvZGpaAy7YovSwq8kr7HGllxpd71rkS6G0Sf11sl9OvMK1+jwPPODxjUwkOim9CU3ix1wNjXDfmJSEn618Bs6lpWwUpU+8PCqLMY650zjq8VhCIP17NEKTx3eaLL+s5Pi6yJWaWjTHLR1jYzPSV9VF/6Ojdb/1kO3Mk3uhHC0x6gc1BjlKQ+nQFxTYdaJkZ7ySVxLBbhR1dsboNXp1tCYKW2LRaEzpYcIx2BKNxaL0ZaUnSqfFoiNhHKR/GkX6PWUSAaJelQaqZL1EpoHNsajSEyPSoJ9IjhIxTdjHLmwZvhRDOiFTY/YeQnvrVZmiTQtGncECXtFTBZLOVwwMRgoXHAkXzMzPn1nAJJ8jYSbMDaqN2waGLzNhih/bZynUBMpIWSg7VYi7DRx2m8ALkIdRCJwI6ArJx2EI8kaDWeTQKeAFk9fjl/1AvwktjQ1P7NjyMGQyfd4vjipX6M/i52D7Cq80kqlcxEcGXRr/FEcgs0u5uGgB4VWuMFfpdn2Re6Hi3PqzmxWKsz6+ae2Pn9hXXw/fqM859UiGC0oKYYILJBqJrsn1Z1E5qOs9rQCiUQRREjm8yJcbHF5cUJufX1vAHlefw0XgUoboS3ETfQlTxBC4SOtuE8VPRJTBSCQSjZCpk7Gqzu+masaZ2y7Zjehho4F3g82BNDkAHpORG4+OCS+f6JTPmtRn/PH1kch6d04sp7AQb25aQ/pqUyXeQ8vrebG8OYQdXOQ+585u0sdW9rqalzRURiJ+9F4MweRFrKUjl1GUYhH1A27WOHw5cTFSFPMo9EeUIGnQTZHIaJ7AHLaOKsOODaNF9jkBjYG2QEsQ2xjMUAx2bBEbeTBWMHwskBjngq56S/yfgkBnWBa4K9sqKtq2t1UI8S9He5XuBRbawAdatrQEAi30Aks2+LM8WeCbalVZkWNylvJ+dqJnzVb+OHlSoKW8nPCP7Rd+CcZ2DdWAGqJ2CBFOphgywFFCFBNtfAbGtNPBCwxvygHeYMZMY9ZboBqwq/pVrsbgN5tkv152ODlbMfiqwGMBgxa4Exz3QhovRIUp6acqZmQzRq0ypDXS2TPLT02YIkQETnOE445oOGxOmXAqUJNNG7XgupMjPq2ua9asrj5yY/yuKteO1Kx0YNJTufrirLe1mZnat7OL6rnUdCWenpW6I8mAnbsY8KWs1PuSovCW9A/Z25PQ24a7cNOqgmTkLmBMgh4THgc4b9k2IVv1/g/F5nGljwPLfOgHAzJzh45V/4+WenTzmMtR5Z7us2Tys909UHqrPY7KbckoxRvRHhmVc3cJGE97uml0R1S0jdULVl7EvZtDFVBF35N9cEdjpgmAiOlFZ+Dtoh93+D3zzHr8RRNZQhnCNMNbcegOvpEwZoL+06cJQ07h+th3fZ/7PVbVC6ngTAV/KoLFuO6+2KFcU651gEb5ugPSIb1D+Xp8V4+k3sEIGnw5mYe4If4k1lFYr6SCzmM2EQ8iWtmwjnBI9kTwe1TlfAmXh7H02by9fW2gsjKwtv0aaURKil4OdV7rDL1MXIFNrhdxohcZXYTnq47WisrKitaObbf5+yvkLi5J6lCNZZ+B6GC38VNBZBDidSS/+mSvh6s+srgC8pyKMvDtt+de3c9fU76ZPfuM8ud4Kv0fyP/LqfepMT/3oZxSqpZaTa1DaQYLY8TFsHYbWYsPoRhRWfL5eSSQbhUGgGC3YLbVMk6PitTFNGpAsNrC6D1VNBKgBHMejaiuRWEWGgsSDBTJjqWIl8kJLlsaLJ2tXDr6xGfT85bM2Q06a46x2HTgvdnV8z5YDy/27J4zt6x2VtkzjoYpkq36kaBr4eQSg7tyiVweWubXZugtadl58ydapfbORfKsDTuZ0OBgx4cfdjCf5tbWNITnL120fdOi1RV1C3uKGzNdwYLcMvZ3BxoPyTOCD1XvXTp7U10gWCVmTV9b3r2z0SkGWovb2hp9I89O8a2smlyaO8muMU+dRmtzp60IzAoFpjLr1n388boLyf0dRvxhsHZ0qbWqDkwqvvpkj4l0fY6EIXRi5sQSrAvsVYwXRy4qJ2EVtD1AN7a0HWth9ymvL1xc3WTUKK/TAHA/bXDVtVWfOMfuGxGZv4Ln/jVr9jc3j1yMv0tndmyt9Vq88Y9gH1wtLX3KWjot5++jWHgAoZZkQ14wGQ20Fli71UmKJAy4xKMSTGbVdybW7FDDAut9XpD5AzWrYO7zQ8qffqF8+Ynd/clrHcdyxGy3a/3+mfNnzC/cBsveTjnTvXf1o6vzOlZw7WtqtdmPK/Errz/6NNtD72zmNOZfbmYdTGHfoofqI79Oc+R2n1lrnL6pOm0Up7kwxhTW12Amm7WYkXR2qYrF2AmgmbAsxZjwy1xpg/m1Je2vrp8v/nz2xpmlBg4E9hrMU341wVpTOh/OfmGvAnra8q6uctr60ZQHV3Q+WMQJykMj8ZsWn2QBOmmHMB+m5pDIpTFonYigiaKAhGEiAHF7EliVnQkjoLVIMPtJpBKHYd3A8GYH9jJzrWwmHx5Qjp7vDAX0suGRym1vtm/9W1/HyR8vczfMs6Sk8DSv855/5dlX9oQq52hT8syyp2rx5Id17IAyAM3wIjQPMOHzytEB64q6D5zT91yNbnx3V/nqnd017S9Y0605k3izoXLpsxde2n38yoOV9s1LcjwzNjbdX6asnBVaBj/6/DwKwPkpcqbDG7BnsXoSqWnUAmottYF6jMSdVyYZh3zVXCjwTiwwHH6sGuRiEHQGzuRX6whZkp123oy1BWE2mEfJ/tvIRtM4ZM5bDXiMsPMaAKOTyc5uL57rqyyc5y5JE5pm1i2S2iUX0CcaQ6lC6Zog7JqSqZmYlosl2K6pwNA84zRnQW6SaALYZQGW5lhCtU/W34N6o+bKfZ8cf3/Cl/+iTX3wBzpOY4mRkeNf3rptycGSshQWgGbYt5jFc2e0+DglIrwl6DVWQ7BuwaJ3Xk1J4VL5urnLl/Wf+gHU/hZoZdKNym6lG+I34FaNeZKcSpJIo2IeCVvpdsDGfKvzJnAwmeD37Ow65ZWwSowpgwX5T69s/rB55dP5BcpgDKFV8p7q2sn/1uc93bVzT/w6UrCqDTWvfCq/oCD/qZXNoUj8BL5Kp6GU017frfNXkAtiiyf/SOCEeLqnd8R/Ql9GlCRfctS6k5chvIBuQ1zCCjoCHL2DHNHIXxMJ3kQeO8lbsUXONeSfA5EjcG6/E+KdhN4bP04vBhdi883+BFBzQbxFbvZzQeY9LNBZc0FNfn5NwfDn6rCTnTw6R8o+gfpf5hCom33cRuiTlss3KHmZjD+BPN+5gXuA2ziS/Q73mLxUkpbKN/eqwz5uK0X9F3h2d1V4nGNgZGBgAOJd776+iue3+crAzc4AAje5Bfcg0xz9YHEOBiYQBQA8FQlFAHicY2BkYGBnAAGOPgaG//85+hkYGVCBMgBGGwNYAAAAeJxjYGBgYB8EmKOPgQEAQ04BfgAAAAAAAA4AaAB+AMwA4AECAUIBbAGYAcICGAJYArQC4AMwA7AD3gQwBJYE3AUkBWYFigYgBmYGtAbqB1gIEghYCG4IhAi2COh4nGNgZGBgUGYoZWBnAAEmIOYCQgaG/2A+AwAYCQG2AHicXZBNaoNAGIZfE5PQCKFQ2lUps2oXBfOzzAESyDKBQJdGR2NQR3QSSE/QE/QEPUUPUHqsvsrXjTMw83zPvPMNCuAWP3DQDAejdm1GjzwS7pMmwi75XngAD4/CQ/oX4TFe4Qt7uMMbOzjuDc0EmXCP/C7cJ38Iu+RP4QEe8CU8pP8WHmOPX2EPz87TPo202ey2OjlnQSXV/6arOjWFmvszMWtd6CqwOlKHq6ovycLaWMWVydXKFFZnmVFlZU46tP7R2nI5ncbi/dDkfDtFBA2DDXbYkhKc+V0Bqs5Zt9JM1HQGBRTm/EezTmZNKtpcAMs9Yu6AK9caF76zoLWIWcfMGOSkVduvSWechqZsz040Ib2PY3urxBJTzriT95lipz+TN1fmAAAAeJxtkMl2wjAMRfOAhABlKm2h80C3+ajgCKKDY6cegP59TYBzukAL+z1Zsq8ctaJTTKPrsUQLbXQQI0EXKXroY4AbDDHCGBNMcYsZ7nCPB8yxwCOe8IwXvOIN7/jAJ76wxHfUqWX+OzgumWAjJMV17i0Ndlr6irLKO+qftdT7i6y4uFSUvCknay+lFYZIZaQcmfH/xIFdYn98bqhra1aKTM/6lWMnyaYirx1rFUQZFBkb2zJUtoXeJCeg0WnLtHeSFc3OtrnozNwqi0TkSpBMDB1nSde5oJXW23hTS2/T0LilglXX7dmFVxLnq5U0vYATHFk3zX3BOisoQHNDFDeZnqKDy9hRNawN7Vh727hFzcJ5c8TILrKZfH7tIPxAFP0BpLeJPA==) format("woff");
  font-weight: normal;
  font-style: normal; }

.vjs-icon-play, .video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-play:before, .video-js .vjs-big-play-button .vjs-icon-placeholder:before, .video-js .vjs-play-control .vjs-icon-placeholder:before {
    content: "\F101"; }

.vjs-icon-play-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-play-circle:before {
    content: "\F102"; }

.vjs-icon-pause, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-pause:before, .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before {
    content: "\F103"; }

.vjs-icon-volume-mute, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-volume-mute:before, .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
    content: "\F104"; }

.vjs-icon-volume-low, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-volume-low:before, .video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before {
    content: "\F105"; }

.vjs-icon-volume-mid, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-volume-mid:before, .video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before {
    content: "\F106"; }

.vjs-icon-volume-high, .video-js .vjs-mute-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-volume-high:before, .video-js .vjs-mute-control .vjs-icon-placeholder:before {
    content: "\F107"; }

.vjs-icon-fullscreen-enter, .video-js .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-fullscreen-enter:before, .video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
    content: "\F108"; }

.vjs-icon-fullscreen-exit, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-fullscreen-exit:before, .video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
    content: "\F109"; }

.vjs-icon-square {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-square:before {
    content: "\F10A"; }

.vjs-icon-spinner {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-spinner:before {
    content: "\F10B"; }

.vjs-icon-subtitles, .video-js .vjs-subtitles-button .vjs-icon-placeholder, .video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-subtitles:before, .video-js .vjs-subtitles-button .vjs-icon-placeholder:before, .video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
  .video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
  .video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
  .video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
  .video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before {
    content: "\F10C"; }

.vjs-icon-captions, .video-js .vjs-captions-button .vjs-icon-placeholder, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-captions:before, .video-js .vjs-captions-button .vjs-icon-placeholder:before, .video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
  .video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before {
    content: "\F10D"; }

.vjs-icon-chapters, .video-js .vjs-chapters-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-chapters:before, .video-js .vjs-chapters-button .vjs-icon-placeholder:before {
    content: "\F10E"; }

.vjs-icon-share {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-share:before {
    content: "\F10F"; }

.vjs-icon-cog {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-cog:before {
    content: "\F110"; }

.vjs-icon-circle, .video-js .vjs-play-progress, .video-js .vjs-volume-level, .vjs-seek-to-live-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-circle:before, .video-js .vjs-play-progress:before, .video-js .vjs-volume-level:before, .vjs-seek-to-live-control .vjs-icon-placeholder:before {
    content: "\F111"; }

.vjs-icon-circle-outline {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-circle-outline:before {
    content: "\F112"; }

.vjs-icon-circle-inner-circle {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-circle-inner-circle:before {
    content: "\F113"; }

.vjs-icon-hd {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-hd:before {
    content: "\F114"; }

.vjs-icon-cancel, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-cancel:before, .video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before {
    content: "\F115"; }

.vjs-icon-replay, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-replay:before, .video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before {
    content: "\F116"; }

.vjs-icon-facebook {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-facebook:before {
    content: "\F117"; }

.vjs-icon-gplus {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-gplus:before {
    content: "\F118"; }

.vjs-icon-linkedin {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-linkedin:before {
    content: "\F119"; }

.vjs-icon-twitter {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-twitter:before {
    content: "\F11A"; }

.vjs-icon-tumblr {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-tumblr:before {
    content: "\F11B"; }

.vjs-icon-pinterest {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-pinterest:before {
    content: "\F11C"; }

.vjs-icon-audio-description, .video-js .vjs-descriptions-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-audio-description:before, .video-js .vjs-descriptions-button .vjs-icon-placeholder:before {
    content: "\F11D"; }

.vjs-icon-audio, .video-js .vjs-audio-button .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-audio:before, .video-js .vjs-audio-button .vjs-icon-placeholder:before {
    content: "\F11E"; }

.vjs-icon-next-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-next-item:before {
    content: "\F11F"; }

.vjs-icon-previous-item {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-previous-item:before {
    content: "\F120"; }

.vjs-icon-picture-in-picture-enter, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-picture-in-picture-enter:before, .video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
    content: "\F121"; }

.vjs-icon-picture-in-picture-exit, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder {
  font-family: VideoJS;
  font-weight: normal;
  font-style: normal; }
  .vjs-icon-picture-in-picture-exit:before, .video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before {
    content: "\F122"; }

.video-js {
  display: block;
  vertical-align: top;
  box-sizing: border-box;
  color: #fff;
  background-color: #000;
  position: relative;
  padding: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  word-break: initial; }
  .video-js:-moz-full-screen {
    position: absolute; }
  .video-js:-webkit-full-screen {
    width: 100% !important;
    height: 100% !important; }

.video-js[tabindex="-1"] {
  outline: none; }

.video-js *,
.video-js *:before,
.video-js *:after {
  box-sizing: inherit; }

.video-js ul {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  list-style-position: outside;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0; }

.video-js.vjs-fluid,
.video-js.vjs-16-9,
.video-js.vjs-4-3 {
  width: 100%;
  max-width: 100%;
  height: 0; }

.video-js.vjs-16-9 {
  padding-top: 56.25%; }

.video-js.vjs-4-3 {
  padding-top: 75%; }

.video-js.vjs-fill {
  width: 100%;
  height: 100%; }

.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%; }

.vjs-full-window .video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0; }

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs) {
  width: 100% !important;
  height: 100% !important;
  padding-top: 0 !important; }

.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none; }

.vjs-hidden {
  display: none !important; }

.vjs-disabled {
  opacity: 0.5;
  cursor: default; }

.video-js .vjs-offscreen {
  height: 1px;
  left: -9999px;
  position: absolute;
  top: 0;
  width: 1px; }

.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible; }

.vjs-no-js {
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px auto; }

.vjs-no-js a,
.vjs-no-js a:visited {
  color: #66A8CC; }

.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 1.5em;
  height: 1.63332em;
  width: 3em;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  border-radius: 0.3em;
  transition: all 0.4s; }

.vjs-big-play-centered .vjs-big-play-button {
  top: 50%;
  left: 50%;
  margin-top: -0.81666em;
  margin-left: -1.5em; }

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
  border-color: #fff;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5);
  transition: all 0s; }

.vjs-controls-disabled .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button,
.vjs-error .vjs-big-play-button {
  display: none; }

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
  display: block; }

.video-js button {
  background: none;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
  text-decoration: none;
  transition: none;
  -moz-appearance: none;
  appearance: none; }

.vjs-control .vjs-button {
  width: 100%;
  height: 100%; }

.video-js .vjs-control.vjs-close-button {
  cursor: pointer;
  height: 3em;
  position: absolute;
  right: 0;
  top: 0.5em;
  z-index: 2; }

.video-js .vjs-modal-dialog {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(255, 255, 255, 0));
  overflow: auto; }

.video-js .vjs-modal-dialog > * {
  box-sizing: border-box; }

.vjs-modal-dialog .vjs-modal-dialog-content {
  font-size: 1.2em;
  line-height: 1.5;
  padding: 20px 24px;
  z-index: 1; }

.vjs-menu-button {
  cursor: pointer; }

.vjs-menu-button.vjs-disabled {
  cursor: default; }

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
  display: none; }

.vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  overflow: auto; }

.vjs-menu .vjs-menu-content > * {
  box-sizing: border-box; }

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
  display: none; }

.vjs-menu li {
  list-style: none;
  margin: 0;
  padding: 0.2em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase; }

.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover,
.js-focus-visible .vjs-menu li.vjs-menu-item:hover {
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5); }

.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover,
.js-focus-visible .vjs-menu li.vjs-selected:hover {
  background-color: #fff;
  color: #2B333F; }

.vjs-menu li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default; }

.vjs-menu-button-popup .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  width: 10em;
  left: -3em;
  height: 0em;
  margin-bottom: 1.5em;
  border-top-color: rgba(43, 51, 63, 0.7); }

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7);
  position: absolute;
  width: 100%;
  bottom: 1.5em;
  max-height: 15em; }

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 5em; }

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 10em; }

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 14em; }

.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
  max-height: 25em; }

.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu,
.vjs-menu-button-popup .vjs-menu.vjs-lock-showing {
  display: block; }

.video-js .vjs-menu-button-inline {
  transition: all 0.4s;
  overflow: hidden; }

.video-js .vjs-menu-button-inline:before {
  width: 2.222222222em; }

.video-js .vjs-menu-button-inline:hover,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js.vjs-no-flex .vjs-menu-button-inline {
  width: 12em; }

.vjs-menu-button-inline .vjs-menu {
  opacity: 0;
  height: 100%;
  width: auto;
  position: absolute;
  left: 4em;
  top: 0;
  padding: 0;
  margin: 0;
  transition: all 0.4s; }

.vjs-menu-button-inline:hover .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  display: block;
  opacity: 1; }

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
  display: block;
  opacity: 1;
  position: relative;
  width: auto; }

.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu {
  width: auto; }

.vjs-menu-button-inline .vjs-menu-content {
  width: auto;
  height: 100%;
  margin: 0;
  overflow: hidden; }

.video-js .vjs-control-bar {
  display: none;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3.0em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7); }

.vjs-has-started .vjs-control-bar {
  display: flex;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.1s, opacity 0.1s; }

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  visibility: visible;
  opacity: 0;
  transition: visibility 1s, opacity 1s; }

.vjs-controls-disabled .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar,
.vjs-error .vjs-control-bar {
  display: none !important; }

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible; }

.vjs-has-started.vjs-no-flex .vjs-control-bar {
  display: table; }

.video-js .vjs-control {
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 4em;
  flex: none; }

.vjs-button > .vjs-icon-placeholder:before {
  font-size: 1.8em;
  line-height: 1.67; }

.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before,
.video-js .vjs-control:focus {
  text-shadow: 0em 0em 1em white; }

.video-js .vjs-control-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.vjs-no-flex .vjs-control {
  display: table-cell;
  vertical-align: middle; }

.video-js .vjs-custom-control-spacer {
  display: none; }

.video-js .vjs-progress-control {
  cursor: pointer;
  flex: auto;
  display: flex;
  align-items: center;
  min-width: 4em;
  touch-action: none; }

.video-js .vjs-progress-control.disabled {
  cursor: default; }

.vjs-live .vjs-progress-control {
  display: none; }

.vjs-liveui .vjs-progress-control {
  display: flex;
  align-items: center; }

.vjs-no-flex .vjs-progress-control {
  width: auto; }

.video-js .vjs-progress-holder {
  flex: auto;
  transition: all 0.2s;
  height: 0.3em; }

.video-js .vjs-progress-control .vjs-progress-holder {
  margin: 0 10px; }

.video-js .vjs-progress-control:hover .vjs-progress-holder {
  font-size: 1.666666666666666666em; }

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
  font-size: 1em; }

.video-js .vjs-progress-holder .vjs-play-progress,
.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 0; }

.video-js .vjs-play-progress {
  background-color: #fff; }
  .video-js .vjs-play-progress:before {
    font-size: 0.9em;
    position: absolute;
    right: -0.5em;
    top: -0.333333333333333em;
    z-index: 1; }

.video-js .vjs-load-progress {
  background: rgba(115, 133, 159, 0.5); }

.video-js .vjs-load-progress div {
  background: rgba(115, 133, 159, 0.75); }

.video-js .vjs-time-tooltip {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.3em;
  color: #000;
  float: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 6px 8px 8px 8px;
  pointer-events: none;
  position: absolute;
  top: -3.4em;
  visibility: hidden;
  z-index: 1; }

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
  display: none; }

.video-js .vjs-progress-control:hover .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip {
  display: block;
  font-size: 0.6em;
  visibility: visible; }

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
  font-size: 1em; }

.video-js .vjs-progress-control .vjs-mouse-display {
  display: none;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  z-index: 1; }

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  z-index: 0; }

.video-js .vjs-progress-control:hover .vjs-mouse-display {
  display: block; }

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
  visibility: hidden;
  opacity: 0;
  transition: visibility 1s, opacity 1s; }

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
  display: none; }

.vjs-mouse-display .vjs-time-tooltip {
  color: #fff;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8); }

.video-js .vjs-slider {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin: 0 0.45em 0 0.45em;
  /* iOS Safari */
  -webkit-touch-callout: none;
  /* Safari */
  /* Konqueror HTML */
  /* Firefox */
  -moz-user-select: none;
  /* Internet Explorer/Edge */
  /* Non-prefixed version, currently supported by Chrome and Opera */
  user-select: none;
  background-color: #73859f;
  background-color: rgba(115, 133, 159, 0.5); }

.video-js .vjs-slider.disabled {
  cursor: default; }

.video-js .vjs-slider:focus {
  text-shadow: 0em 0em 1em white;
  box-shadow: 0 0 1em #fff; }

.video-js .vjs-mute-control {
  cursor: pointer;
  flex: none; }

.video-js .vjs-volume-control {
  cursor: pointer;
  margin-right: 1em;
  display: flex; }

.video-js .vjs-volume-control.vjs-volume-horizontal {
  width: 5em; }

.video-js .vjs-volume-panel .vjs-volume-control {
  visibility: visible;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin-left: -1px; }

.video-js .vjs-volume-panel {
  transition: width 1s; }
  .video-js .vjs-volume-panel.vjs-hover .vjs-volume-control,
  .video-js .vjs-volume-panel:active .vjs-volume-control,
  .video-js .vjs-volume-panel:focus .vjs-volume-control,
  .video-js .vjs-volume-panel .vjs-volume-control:active,
  .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control,
  .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active {
    visibility: visible;
    opacity: 1;
    position: relative;
    transition: visibility 0.1s, opacity 0.1s, height 0.1s, width 0.1s, left 0s, top 0s; }
    .video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal,
    .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,
    .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal,
    .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,
    .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-horizontal,
    .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal {
      width: 5em;
      height: 3em;
      margin-right: 0; }
    .video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical,
    .video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical,
    .video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical,
    .video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical,
    .video-js .vjs-volume-panel.vjs-hover .vjs-mute-control ~ .vjs-volume-control.vjs-volume-vertical,
    .video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical {
      left: -3.5em;
      transition: left 0s; }
  .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active, .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
    width: 10em;
    transition: width 0.1s; }
  .video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
    width: 4em; }

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  height: 8em;
  width: 3em;
  left: -3000em;
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s; }

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s; }

.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
  width: 5em;
  height: 3em;
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: none; }

.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
  position: absolute;
  bottom: 3em;
  left: 0.5em; }

.video-js .vjs-volume-panel {
  display: flex; }

.video-js .vjs-volume-bar {
  margin: 1.35em 0.45em; }

.vjs-volume-bar.vjs-slider-horizontal {
  width: 5em;
  height: 0.3em; }

.vjs-volume-bar.vjs-slider-vertical {
  width: 0.3em;
  height: 5em;
  margin: 1.35em auto; }

.video-js .vjs-volume-level {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff; }
  .video-js .vjs-volume-level:before {
    position: absolute;
    font-size: 0.9em; }

.vjs-slider-vertical .vjs-volume-level {
  width: 0.3em; }
  .vjs-slider-vertical .vjs-volume-level:before {
    top: -0.5em;
    left: -0.3em; }

.vjs-slider-horizontal .vjs-volume-level {
  height: 0.3em; }
  .vjs-slider-horizontal .vjs-volume-level:before {
    top: -0.3em;
    right: -0.5em; }

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
  width: 4em; }

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
  height: 100%; }

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
  width: 100%; }

.video-js .vjs-volume-vertical {
  width: 3em;
  height: 8em;
  bottom: 8em;
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.7); }

.video-js .vjs-volume-horizontal .vjs-menu {
  left: -2em; }

.vjs-poster {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%; }

.vjs-has-started .vjs-poster {
  display: none; }

.vjs-audio.vjs-has-started .vjs-poster {
  display: block; }

.vjs-using-native-controls .vjs-poster {
  display: none; }

.video-js .vjs-live-control {
  display: flex;
  align-items: flex-start;
  flex: auto;
  font-size: 1em;
  line-height: 3em; }

.vjs-no-flex .vjs-live-control {
  display: table-cell;
  width: auto;
  text-align: left; }

.video-js:not(.vjs-live) .vjs-live-control,
.video-js.vjs-liveui .vjs-live-control {
  display: none; }

.video-js .vjs-seek-to-live-control {
  align-items: center;
  cursor: pointer;
  flex: none;
  display: inline-flex;
  height: 100%;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 1em;
  line-height: 3em;
  width: auto;
  min-width: 4em; }

.vjs-no-flex .vjs-seek-to-live-control {
  display: table-cell;
  width: auto;
  text-align: left; }

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
  display: none; }

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
  cursor: auto; }

.vjs-seek-to-live-control .vjs-icon-placeholder {
  margin-right: 0.5em;
  color: #888; }

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
  color: red; }

.video-js .vjs-time-control {
  flex: none;
  font-size: 1em;
  line-height: 3em;
  min-width: 2em;
  width: auto;
  padding-left: 1em;
  padding-right: 1em; }

.vjs-live .vjs-time-control {
  display: none; }

.video-js .vjs-current-time,
.vjs-no-flex .vjs-current-time {
  display: none; }

.video-js .vjs-duration,
.vjs-no-flex .vjs-duration {
  display: none; }

.vjs-time-divider {
  display: none;
  line-height: 3em; }

.vjs-live .vjs-time-divider {
  display: none; }

.video-js .vjs-play-control {
  cursor: pointer; }

.video-js .vjs-play-control .vjs-icon-placeholder {
  flex: none; }

.vjs-text-track-display {
  position: absolute;
  bottom: 3em;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none; }

.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em; }

.video-js .vjs-text-track {
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em; }

.vjs-subtitles {
  color: #fff; }

.vjs-captions {
  color: #fc6; }

.vjs-tt-cue {
  display: block; }

video::-webkit-media-text-track-display {
  transform: translateY(-3em); }

.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
  transform: translateY(-1.5em); }

.video-js .vjs-picture-in-picture-control {
  cursor: pointer;
  flex: none; }

.video-js .vjs-fullscreen-control {
  cursor: pointer;
  flex: none; }

.vjs-playback-rate > .vjs-menu-button,
.vjs-playback-rate .vjs-playback-rate-value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.vjs-playback-rate .vjs-playback-rate-value {
  pointer-events: none;
  font-size: 1.5em;
  line-height: 2;
  text-align: center; }

.vjs-playback-rate .vjs-menu {
  width: 4em;
  left: 0em; }

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
  font-size: 1.4em;
  text-align: center; }

.vjs-error .vjs-error-display:before {
  color: #fff;
  content: 'X';
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4em;
  left: 0;
  line-height: 1;
  margin-top: -0.5em;
  position: absolute;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center;
  top: 50%;
  vertical-align: middle;
  width: 100%; }

.vjs-loading-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.85;
  text-align: left;
  border: 6px solid rgba(43, 51, 63, 0.7);
  box-sizing: border-box;
  background-clip: padding-box;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  visibility: hidden; }

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
  display: block;
  animation: vjs-spinner-show 0s linear 0.3s forwards; }

.vjs-loading-spinner:before,
.vjs-loading-spinner:after {
  content: "";
  position: absolute;
  margin: -6px;
  box-sizing: inherit;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  opacity: 1;
  border: inherit;
  border-color: transparent;
  border-top-color: white; }

.vjs-seeking .vjs-loading-spinner:before,
.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after {
  animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite; }

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
  border-top-color: white; }

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
  border-top-color: white;
  animation-delay: 0.44s; }

@keyframes vjs-spinner-show {
  to {
    visibility: visible; } }

@keyframes vjs-spinner-spin {
  100% {
    transform: rotate(360deg); } }

@keyframes vjs-spinner-fade {
  0% {
    border-top-color: #73859f; }
  20% {
    border-top-color: #73859f; }
  35% {
    border-top-color: white; }
  60% {
    border-top-color: #73859f; }
  100% {
    border-top-color: #73859f; } }

.vjs-chapters-button .vjs-menu ul {
  width: 24em; }

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em; }

.video-js .vjs-subs-caps-button + .vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: "\F10D";
  font-size: 1.5em;
  line-height: inherit; }

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
  vertical-align: middle;
  display: inline-block;
  margin-bottom: -0.1em; }

.video-js .vjs-audio-button + .vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
  font-family: VideoJS;
  content: " \F11D";
  font-size: 1.5em;
  line-height: inherit; }

.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-control, .video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-control, .video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-control {
  display: none; }

.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active, .video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active {
  width: auto;
  width: initial; }

.video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-liveui) .vjs-subs-caps-button, .video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-live) .vjs-subs-caps-button, .video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subs-caps-button {
  display: none; }

.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-custom-control-spacer, .video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-custom-control-spacer {
  flex: auto;
  display: block; }

.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui.vjs-no-flex .vjs-custom-control-spacer, .video-js:not(.vjs-fullscreen).vjs-layout-tiny.vjs-no-flex .vjs-custom-control-spacer {
  width: auto; }

.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-progress-control, .video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-progress-control {
  display: none; }

.vjs-modal-dialog.vjs-text-track-settings {
  background-color: #2B333F;
  background-color: rgba(43, 51, 63, 0.75);
  color: #fff;
  height: 70%; }

.vjs-text-track-settings .vjs-modal-dialog-content {
  display: table; }

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-font,
.vjs-text-track-settings .vjs-track-settings-controls {
  display: table-cell; }

.vjs-text-track-settings .vjs-track-settings-controls {
  text-align: right;
  vertical-align: bottom; }

@supports (display: grid) {
  .vjs-text-track-settings .vjs-modal-dialog-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    padding: 20px 24px 0px 24px; }
  .vjs-track-settings-controls .vjs-default-button {
    margin-bottom: 20px; }
  .vjs-text-track-settings .vjs-track-settings-controls {
    grid-column: 1 / -1; }
  .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content,
  .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content {
    grid-template-columns: 1fr; } }

.vjs-track-setting > select {
  margin-right: 1em;
  margin-bottom: 0.5em; }

.vjs-text-track-settings fieldset {
  margin: 5px;
  padding: 3px;
  border: none; }

.vjs-text-track-settings fieldset span {
  display: inline-block; }

.vjs-text-track-settings fieldset span > select {
  max-width: 7.3em; }

.vjs-text-track-settings legend {
  color: #fff;
  margin: 0 0 5px 0; }

.vjs-text-track-settings .vjs-label {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden; }

.vjs-track-settings-controls button:focus,
.vjs-track-settings-controls button:active {
  outline-style: solid;
  outline-width: medium;
  background-image: linear-gradient(0deg, #fff 88%, #73859f 100%); }

.vjs-track-settings-controls button:hover {
  color: rgba(43, 51, 63, 0.75); }

.vjs-track-settings-controls button {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff 88%, #73859f 100%);
  color: #2B333F;
  cursor: pointer;
  border-radius: 2px; }

.vjs-track-settings-controls .vjs-default-button {
  margin-right: 1em; }

@media print {
  .video-js > *:not(.vjs-tech):not(.vjs-poster) {
    visibility: hidden; } }

.vjs-resize-manager {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1000; }

.js-focus-visible .video-js *:focus:not(.focus-visible) {
  outline: none;
  background: none; }

.video-js *:focus:not(:focus-visible),
.video-js .vjs-menu *:focus:not(:focus-visible) {
  outline: none;
  background: none; }

.vjs-marker {
  position: absolute;
  left: 0;
  bottom: 0em;
  opacity: 1;
  height: 100%;
  transition: opacity .2s ease;
  -webkit-transition: opacity .2s ease;
  -moz-transition: opacity .2s ease;
  z-index: 100; }
  .vjs-marker:hover {
    cursor: pointer;
    transform: scale(1.3, 1.3); }

.vjs-tip {
  visibility: hidden;
  display: block;
  opacity: 0.8;
  padding: 5px;
  font-size: 10px;
  position: absolute;
  bottom: 14px;
  z-index: 100000; }
  .vjs-tip .vjs-tip-arrow {
    background: url(data:image/gif;base64,R0lGODlhCQAJAIABAAAAAAAAACH5BAEAAAEALAAAAAAJAAkAAAIRjAOnwIrcDJxvwkplPtchVQAAOw==) no-repeat top left;
    bottom: 0;
    left: 50%;
    margin-left: -4px;
    background-position: bottom left;
    position: absolute;
    width: 9px;
    height: 5px; }
  .vjs-tip .vjs-tip-inner {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    padding: 5px 8px 4px 8px;
    background-color: black;
    color: white;
    max-width: 200px;
    text-align: center; }

.vjs-break-overlay {
  visibility: hidden;
  position: absolute;
  z-index: 100000;
  top: 0; }
  .vjs-break-overlay .vjs-break-overlay-text {
    padding: 9px;
    text-align: center; }

.resource {
  min-height: 50vh; }

.resource__processing {
  margin-top: 25%;
  margin-bottom: 25%;
  font-size: 3rem;
  font-weight: 600;
  text-align: center; }

.resource__teacher__processing {
  background: url("/static/images/teacher3.png") no-repeat;
  min-height: calc(100vh - 200px);
  background-attachment: fixed;
  background-position: center center;
  background-size: auto 70%;
  background-color: gold;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  padding-top: 200px;
  position: relative; }
  .resource__teacher__processing__drop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    opacity: 0.6; }
  .resource__teacher__processing__content {
    position: absolute;
    left: 24px;
    bottom: 24px;
    text-align: left; }
    .resource__teacher__processing__content > * {
      margin: 12px 0; }
      .resource__teacher__processing__content > * > span {
        color: #fff;
        padding: 6px 12px; }
    .resource__teacher__processing__content__title > span {
      background-color: red; }

.resource__show {
  margin-top: 30px; }
  .resource__show .resource__show--subTitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px; }
  .resource__show .resource__show--title {
    font-size: 2rem;
    font-weight: 600; }
  .resource__show .resource__show--video {
    margin: 30px auto; }

.hangout--container {
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  color: #000;
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-start; }

.hangout--top, .hangout--main {
  width: 100%; }

.hangout--top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  align-content: center;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 6px;
  color: #999;
  justify-content: space-between; }
  .hangout--top .hangout__top-bar {
    border-radius: 6px;
    background-color: #eee;
    padding: 6px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin: 12px 12px 12px auto;
    color: #a1a1a1;
    font-weight: 500; }
  .hangout--top .hangout__top__version {
    font-size: 0.8rem;
    font-weight: 400;
    background-color: #eee;
    border-radius: 6px;
    margin: 12px;
    text-align: center;
    padding: 3px 6px; }
  .hangout--top .hangout--top__logo {
    filter: grayscale(50%);
    height: 40px;
    margin: 12px; }
  .hangout--top .hangout__top__user {
    background-color: #fff;
    border-radius: 12px;
    padding: 3px 6px;
    font-size: 1rem; }
    .hangout--top .hangout__top__user > svg {
      width: 20px;
      height: 20px;
      margin-right: 6px;
      vertical-align: text-bottom; }

.hangout__course-name {
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
  background-color: #eee;
  border-radius: 6px; }

.hangout__main {
  display: flex;
  flex-direction: row;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 1;
  overflow-y: auto;
  margin-bottom: 100px;
  position: relative; }

.hangout__tools__bar {
  position: fixed;
  bottom: 12px;
  left: 0;
  right: 0;
  margin: auto 12px;
  border-radius: 6px;
  background-color: #000;
  padding: 12px;
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center; }

.hangout__tools__title {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 6px 0; }
  .hangout__tools__title svg {
    font-size: 1.3rem;
    vertical-align: middle; }

.hangout__tools__hr {
  background-color: #fff;
  width: 1px;
  height: 14px;
  margin: 0 12px; }

.hangout__tools__hr--black {
  background-color: #000; }

.hangout__tools__buttons {
  display: flex;
  margin: auto;
  margin-right: 0; }
  .hangout__tools__buttons > * {
    margin: auto 12px;
    font-size: 1.4rem;
    vertical-align: middle; }

.hangout__type__tag {
  background-color: #336815;
  border-radius: 6px;
  margin: 12px 12px;
  padding: 3px 6px; }

.hangout__chapters {
  padding: 12px;
  width: 350px;
  background-color: #eee;
  border-radius: 6px;
  margin: 12px;
  flex-shrink: 0; }
  @media all and (max-width: 640px) {
    .hangout__chapters {
      position: fixed;
      top: 140px;
      left: 0;
      right: 0;
      width: 96%;
      z-index: 99;
      margin: auto;
      box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2); } }
  .hangout__chapters .hangout__chapters__title {
    font-size: 1.6rem;
    text-align: center;
    font-weight: 600; }
  .hangout__chapters .hangout__chapters__tabs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    margin: 12px 0; }
    .hangout__chapters .hangout__chapters__tabs > * {
      border-radius: 12px;
      background-color: inherit;
      padding: 3px 6px; }
    .hangout__chapters .hangout__chapters__tabs .hangout__chapters__tab--active {
      background-color: #fff; }
  .hangout__chapters .hangout__chapters__content {
    height: calc(100vh - 400px);
    overflow-y: auto; }

.hangout--content {
  padding: 12px;
  overflow: auto;
  width: 100%; }
  @media all and (min-width: 1024px) {
    .hangout--content {
      max-width: 70vw; } }

.hangout--tools__course {
  border-radius: 6px;
  padding: 6px;
  text-align: center; }
  .hangout--tools__course img {
    width: 70%;
    display: block;
    border-radius: 6px;
    margin: auto; }
  .hangout--tools__course > div {
    margin: 6px auto;
    color: #000; }

.hangout__button {
  border-radius: 12px;
  padding: 5px 12px;
  color: #fff;
  background-color: #ff3232;
  width: auto;
  font-size: 1rem; }
  .hangout__button i, .hangout__button svg {
    margin-right: 5px;
    vertical-align: text-bottom;
    font-size: 1.3rem; }

.hangout__button--flex {
  display: flex;
  align-items: center; }

.hangout__button--full {
  width: 100%; }

.hangout__button--light {
  background-color: #f0ff59;
  color: #000; }

.hangout__button--grey {
  background-color: #b9b0b0;
  color: #000; }

.hangout__button--m-tb-big {
  margin: 24px 0; }

.vjs-text-track-display {
  z-index: 2; }

.video-js .vjs-big-play-button {
  z-index: 2; }

.video__watermarker--text {
  position: absolute;
  font-size: 3rem;
  font-weight: 600;
  color: #b5a0a0;
  opacity: 0.1;
  top: 12%;
  left: 12%;
  -moz-user-select: none;
       user-select: none; }

.hangout__icon__btn {
  margin: 0 12px;
  cursor: pointer;
  transition: color 300ms linear;
  font-size: 1rem; }
  .hangout__icon__btn svg {
    width: 24px;
    height: 24px;
    vertical-align: bottom;
    margin: 0 3px; }
  .hangout__icon__btn:hover {
    color: #9b9b9b; }
  .hangout__icon__btn[disabled] {
    color: #404040; }
  .hangout__icon__btn--active {
    color: #52e116; }

.hangout__pages {
  border-radius: 12px;
  background-color: #eee;
  padding: 3px 6px;
  color: #000;
  font-weight: 600; }

.hangout__close {
  position: absolute;
  top: 24px;
  right: 12px; }

.hangout__material__notes {
  margin: 12px 0; }

.hangout__material__note__group__tag {
  font-size: 0.7rem;
  background-color: #4a4a4a;
  color: #fff;
  border-radius: 12px;
  padding: 3px 6px;
  margin: 3px 0; }

.material__note {
  background-color: #617c91;
  margin: 12px 0;
  border-radius: 12px;
  padding: 12px; }
  .material__note .material__note__title {
    font-size: 0.9rem;
    color: #fff;
    border-bottom: 1px solid #fff; }
    .material__note .material__note__title > svg {
      width: 20px;
      height: 20px;
      vertical-align: bottom; }
  .material__note .material__note__content {
    margin: 12px;
    color: #fff; }
  .material__note .material__note__footer {
    margin: 0;
    color: #fff; }
  .material__note .material__note__btns {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center; }
  .material__note .material__note__text {
    font-size: 1rem; }
  .material__note .material__note__voice > audio {
    width: 100%;
    margin: auto; }
  .material__note .material__note__image {
    background-color: #fff;
    border-radius: 12px;
    padding: 3px; }
    .material__note .material__note__image > img {
      width: 100%; }

.material__note__empty {
  font-size: 0.9rem;
  text-align: center;
  color: #838383;
  letter-spacing: 1px;
  margin-top: 24px;
  padding-bottom: 12px;
  padding-top: 12px;
  border-radius: 12px;
  background-color: #e1e1e1; }
  .material__note__empty > svg {
    height: 30px;
    width: 30px; }

.long-word--hide, .piechartcontent li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.customScrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #E8E8E8; }

.customScrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
  background-color: #c8c8c8; }

.time {
  color: #b28247;
  font-size: 38px; }
  .time .time__number {
    transform: translateY(5px);
    display: inline-block;
    color: #ffffff;
    min-width: 65px;
    height: 65px;
    line-height: 65px;
    background-color: #b28247;
    text-align: center; }

.slider-time {
  position: relative;
  display: block;
  background-color: #dfe0e4;
  border-radius: 3px;
  height: 4px;
  width: 80%;
  max-width: 300px;
  margin: 50px auto 20px;
  cursor: pointer; }
  .slider-time .value {
    position: absolute;
    background-color: #b28247;
    border-radius: 3px;
    top: 0;
    height: 100%; }
  .slider-time .handle {
    position: absolute;
    width: 4px;
    height: 4px; }
    .slider-time .handle:after {
      position: relative;
      display: block;
      content: '';
      top: -10px;
      left: -12px;
      width: 24px;
      height: 24px;
      background-color: #fff;
      border: 3px solid #b28247;
      border-radius: 50%;
      cursor: pointer; }

.introjs-overlay {
  position: absolute;
  box-sizing: content-box;
  z-index: 999999;
  background-color: #000;
  opacity: 0;
  background: radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0.9) 100%);
  transition: all .3s ease-out; }

.introjs-fixParent {
  z-index: auto !important;
  opacity: 1 !important;
  transform: none !important; }

.introjs-showElement,
tr.introjs-showElement > td,
tr.introjs-showElement > th {
  z-index: 9999999 !important; }

.introjs-disableInteraction {
  z-index: 99999999 !important;
  position: absolute;
  background-color: #fff;
  opacity: 0; }

.introjs-relativePosition,
tr.introjs-showElement > td,
tr.introjs-showElement > th {
  position: relative; }

.introjs-helperLayer {
  box-sizing: content-box;
  position: absolute;
  z-index: 9999998;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #777;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  transition: all .3s ease-out; }

.introjs-tooltipReferenceLayer {
  box-sizing: content-box;
  position: absolute;
  visibility: hidden;
  z-index: 100000000;
  background-color: transparent;
  transition: all .3s ease-out; }

.introjs-helperLayer *,
.introjs-helperLayer :after,
.introjs-helperLayer :before {
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box; }

.introjs-helperNumberLayer {
  box-sizing: content-box;
  position: absolute;
  visibility: visible;
  top: -16px;
  left: -16px;
  z-index: 9999999999 !important;
  padding: 2px;
  font-family: Arial, verdana, tahoma;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  background: #ff3019;
  background: linear-gradient(to bottom, #ff3019 0, #cf0404 100%);
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4); }

.introjs-arrow {
  border: 5px solid transparent;
  content: '';
  position: absolute; }

.introjs-arrow.top {
  top: -10px;
  border-bottom-color: #fff; }

.introjs-arrow.top-right {
  top: -10px;
  right: 10px;
  border-bottom-color: #fff; }

.introjs-arrow.top-middle {
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border-bottom-color: #fff; }

.introjs-arrow.right {
  right: -10px;
  top: 10px;
  border-left-color: #fff; }

.introjs-arrow.right-bottom {
  bottom: 10px;
  right: -10px;
  border-left-color: #fff; }

.introjs-arrow.bottom {
  bottom: -10px;
  border-top-color: #fff; }

.introjs-arrow.bottom-right {
  bottom: -10px;
  right: 10px;
  border-top-color: #fff; }

.introjs-arrow.bottom-middle {
  bottom: -10px;
  left: 50%;
  margin-left: -5px;
  border-top-color: #fff; }

.introjs-arrow.left {
  left: -10px;
  top: 10px;
  border-right-color: #fff; }

.introjs-arrow.left-bottom {
  left: -10px;
  bottom: 10px;
  border-right-color: #fff; }

.introjs-tooltip {
  box-sizing: content-box;
  position: absolute;
  visibility: visible;
  padding: 10px;
  background-color: #fff;
  min-width: 200px;
  max-width: 300px;
  border-radius: 3px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  transition: opacity .1s ease-out; }

.introjs-tooltipbuttons {
  text-align: right;
  white-space: nowrap; }

.introjs-button {
  box-sizing: content-box;
  position: relative;
  overflow: visible;
  display: inline-block;
  padding: .3em .8em;
  border: 1px solid #d4d4d4;
  margin: 0;
  text-decoration: none;
  text-shadow: 1px 1px 0 #fff;
  font: 11px/normal sans-serif;
  color: #333;
  white-space: nowrap;
  cursor: pointer;
  outline: 0;
  background-color: #ececec;
  background-image: linear-gradient(#f4f4f4, #ececec);
  -webkit-background-clip: padding;
  -moz-background-clip: padding;
  -o-background-clip: padding-box;
  border-radius: .2em;
  zoom: 1;
  margin-top: 10px; }

.introjs-button:hover {
  border-color: #bcbcbc;
  text-decoration: none;
  box-shadow: 0 1px 1px #e3e3e3; }

.introjs-button:active,
.introjs-button:focus {
  background-image: linear-gradient(#ececec, #f4f4f4); }

.introjs-button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.introjs-skipbutton {
  box-sizing: content-box;
  margin-right: 5px;
  color: #7a7a7a; }

.introjs-prevbutton {
  border-radius: .2em 0 0 .2em;
  border-right: none; }

.introjs-prevbutton.introjs-fullbutton {
  border: 1px solid #d4d4d4;
  border-radius: .2em; }

.introjs-nextbutton {
  border-radius: 0 .2em .2em 0; }

.introjs-nextbutton.introjs-fullbutton {
  border-radius: .2em; }

.introjs-disabled,
.introjs-disabled:focus,
.introjs-disabled:hover {
  color: #9a9a9a;
  border-color: #d4d4d4;
  box-shadow: none;
  cursor: default;
  background-color: #f4f4f4;
  background-image: none;
  text-decoration: none; }

.introjs-hidden {
  display: none; }

.introjs-bullets {
  text-align: center; }

.introjs-bullets ul {
  box-sizing: content-box;
  clear: both;
  margin: 15px auto 0;
  padding: 0;
  display: inline-block; }

.introjs-bullets ul li {
  box-sizing: content-box;
  list-style: none;
  float: left;
  margin: 0 2px; }

.introjs-bullets ul li a {
  box-sizing: content-box;
  display: block;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  text-decoration: none;
  cursor: pointer; }

.introjs-bullets ul li a:hover {
  background: #999; }

.introjs-bullets ul li a.active {
  background: #999; }

.introjs-progress {
  box-sizing: content-box;
  overflow: hidden;
  height: 10px;
  margin: 10px 0 5px 0;
  border-radius: 4px;
  background-color: #ecf0f1; }

.introjs-progressBar {
  box-sizing: content-box;
  float: left;
  width: 0%;
  height: 100%;
  font-size: 10px;
  line-height: 10px;
  text-align: center;
  background-color: #08c; }

.introjsFloatingElement {
  position: absolute;
  height: 0;
  width: 0;
  left: 50%;
  top: 50%; }

.introjs-fixedTooltip {
  position: fixed; }

.introjs-hint {
  box-sizing: content-box;
  position: absolute;
  background: 0 0;
  width: 20px;
  height: 15px;
  cursor: pointer; }

.introjs-hint:focus {
  border: 0;
  outline: 0; }

.introjs-hidehint {
  display: none; }

.introjs-fixedhint {
  position: fixed; }

.introjs-hint:hover > .introjs-hint-pulse {
  border: 5px solid rgba(60, 60, 60, 0.57); }

.introjs-hint-pulse {
  box-sizing: content-box;
  width: 10px;
  height: 10px;
  border: 5px solid rgba(60, 60, 60, 0.27);
  border-radius: 30px;
  background-color: rgba(136, 136, 136, 0.24);
  z-index: 10;
  position: absolute;
  transition: all .2s ease-out; }

.introjs-hint-no-anim .introjs-hint-dot {
  animation: none; }

.introjs-hint-dot {
  box-sizing: content-box;
  border: 10px solid rgba(146, 146, 146, 0.36);
  background: 0 0;
  border-radius: 60px;
  height: 50px;
  width: 50px;
  animation: introjspulse 3s ease-out;
  animation-iteration-count: infinite;
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: 1;
  opacity: 0; }

@keyframes introjspulse {
  0% {
    transform: scale(0);
    opacity: 0; }
  25% {
    transform: scale(0);
    opacity: .1; }
  50% {
    transform: scale(0.1);
    opacity: .3; }
  75% {
    transform: scale(0.5);
    opacity: .5; }
  100% {
    transform: scale(1);
    opacity: 0; } }

.introjs-arrow.top {
  top: -10px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #fff5bd;
  border-left-color: transparent; }

.introjs-arrow.top-right {
  top: -10px;
  right: 10px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #fff5bd;
  border-left-color: transparent; }

.introjs-arrow.top-middle {
  top: -10px;
  left: 50%;
  margin-left: -5px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #fff5bd;
  border-left-color: transparent; }

.introjs-arrow.right {
  right: -10px;
  top: 10px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #fff5bd; }

.introjs-arrow.bottom {
  bottom: -10px;
  border-top-color: #fff5bd;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent; }

.introjs-arrow.left {
  left: -10px;
  top: 10px;
  border-top-color: transparent;
  border-right-color: #fff5bd;
  border-bottom-color: transparent;
  border-left-color: transparent; }

.introjs-arrow.bottom-middle {
  border-top-color: #fff5bd; }

.introjs-tooltip {
  position: absolute;
  padding: 10px;
  background-color: #fff5bd;
  min-width: 290px;
  padding-top: 30px;
  font-size: 16px;
  max-width: 330px;
  color: #676767;
  transition: opacity 0.1s ease-out; }
  .introjs-tooltip .introjs-tooltiptext {
    padding-left: 15px; }
    .introjs-tooltip .introjs-tooltiptext:after {
      position: relative;
      display: inherit;
      transform: translate(-15px, 3px);
      max-height: 75px;
      content: url("/static/images/teacher_72x72.png"); }

.introjs-button {
  position: relative;
  overflow: visible;
  display: inline-block;
  padding: 0.4em 0.8em;
  margin: 5px 2px 10px;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  zoom: 1; }

.time__container {
  display: block;
  margin: 0 auto;
  width: auto;
  transition: width 300ms ease-in;
  background-color: none; }
  .time__container .outer {
    width: 100%;
    height: 40px;
    border: 2px solid #4a4a4a;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1px; }
  .time__container .inner {
    width: 0%;
    height: 36px; }
  .time__container .face {
    position: absolute;
    margin: 0 auto;
    transform: translateX(calc(50vw - 100px)); }
    @media all and (min-width: 991px) {
      .time__container .face {
        transform: translateX(45px); } }
  .time__container .eye {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background-color: #4a4a4a; }
  .time__container .eye.left {
    transform: translateX(50px);
    top: 5px; }
  .time__container .eye.right {
    transform: translateX(100px);
    top: 5px; }
  .time__container .mouth.happy {
    width: 50px;
    height: 9px;
    background-color: none;
    position: absolute;
    top: 18px;
    left: 55px;
    border-radius: 50%;
    box-shadow: 0 5px 0 0 #4a4a4a; }
  .time__container .mouth.sad {
    width: 50px;
    height: 9px;
    background-color: none;
    position: absolute;
    top: 28px;
    left: 55px;
    border-radius: 50%;
    box-shadow: 0 5px 0 0 #4a4a4a;
    transform: rotate(180deg); }

.introduction {
  border-style: solid;
  border-width: 3px;
  padding: 40px;
  background-color: white; }
  @media all and (max-width: 479px) {
    .introduction {
      padding: 10px 10px 30px; } }
  .introduction .introduction__price {
    display: contents;
    font-size: 20px; }
  .introduction .introduction__price--sale {
    display: contents;
    font-size: 26px;
    font-weight: 700;
    color: #db2b2b; }
  .introduction h1 {
    color: #2861af;
    font-weight: 800; }
  .introduction h2 {
    color: #2861af;
    font-weight: 800; }
  .introduction h3 {
    font-size: 22px;
    color: #4a4a4a;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal; }
    @media all and (max-width: 479px) {
      .introduction h3 {
        max-width: 100%; } }
  .introduction h4 {
    font-size: 18px;
    line-height: 25px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #9b9b9b; }
  .introduction p {
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: normal;
    color: #9b9b9b; }
  .introduction button {
    margin-top: 15px;
    max-width: 180px; }
  .introduction select {
    width: 100%;
    max-width: 280px;
    height: 45px;
    line-height: 30px;
    font-size: 20px;
    text-align: center; }
    .introduction select option {
      padding: 15px 0; }
  .introduction .introduction__table {
    font-size: 18px; }
    .introduction .introduction__table table {
      max-width: 50%; }
      @media all and (max-width: 479px) {
        .introduction .introduction__table table {
          max-width: 90%; } }
  .introduction .introduction__content img {
    max-width: 100%;
    height: auto; }
  .introduction .packages__shoppingCartButton {
    z-index: 50;
    margin: 0px;
    position: fixed;
    right: 30px;
    bottom: 165px;
    width: 45px;
    height: 45px;
    font-size: 18px;
    line-height: 40px;
    border-radius: 23px;
    background: #ffffff;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 3px 1px -2px rgba(0, 0, 0, 0.12); }
    @media all and (min-width: 991px) {
      .introduction .packages__shoppingCartButton:hover {
        color: #fff;
        background-color: #ed960a; } }
  .introduction .packages__shoppingCartButton.shoppingCart__Button--active {
    color: #fff;
    background-color: #ed960a;
    opacity: 0.8; }
    @media all and (min-width: 991px) {
      .introduction .packages__shoppingCartButton.shoppingCart__Button--active:hover {
        opacity: 1; } }

.introduction__img {
  padding: 0px; }
  .introduction__img img {
    max-height: 200px;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto; }

.pick__img {
  padding: 0px;
  display: inline-block;
  vertical-align: top;
  max-width: 35%;
  overflow: hidden; }
  .pick__img img {
    width: 95%;
    height: calc(100% - 5px);
    min-height: auto;
    margin: 0 auto; }
    @media all and (min-width: 991px) {
      .pick__img img:hover {
        transform: scale(1.05); } }

.exam__mode {
  cursor: pointer; }
  .exam__mode label {
    cursor: pointer;
    position: relative;
    top: 5px; }
  .exam__mode .examMode__chks {
    min-height: 40px; }
  .exam__mode .examMode__time {
    max-width: 280px;
    padding: 15px;
    width: 100%;
    margin: 0 auto; }
    .exam__mode .examMode__time p {
      text-align: center;
      font-size: 18px;
      font-weight: 600; }
      .exam__mode .examMode__time p .examMode__timeNumber {
        text-align: right;
        display: inline-block;
        min-width: 50px;
        color: #d0021b; }
  .exam__mode .mode__label {
    border-radius: 2px;
    margin: 0 auto;
    width: 50%;
    min-height: 35px;
    line-height: 35px;
    max-width: 140px;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: 1.2px;
    text-align: center;
    background-color: #eeeeee;
    color: #9b9b9b;
    cursor: pointer; }
  .exam__mode input {
    position: absolute;
    left: -9999px; }

.exam__mode--dynamic .examMode__time {
  background-color: #fdedd3; }

.exam__mode--dynamic input:checked + .mode__label {
  background-color: #fdedd3;
  color: #f5a623; }

.exam__mode--static .examMode__time {
  background-color: rgba(40, 143, 175, 0.2); }

.exam__mode--static input:checked + .mode__label {
  background-color: rgba(40, 143, 175, 0.2);
  color: #288faf; }

.question__formula {
  display: inline; }

.circle {
  border-radius: 50%;
  width: 80px;
  height: 80px; }

.question__formula > span {
  margin-top: 10px;
  display: inline-block; }

.fixedWidth__latex {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden; }

.sheet__border {
  border-color: #d9d9d9;
  border-style: solid;
  border-width: 2px;
  border-radius: 3px;
  padding: 15px;
  background-color: #fff; }
  @media all and (max-width: 479px) {
    .sheet__border {
      padding-top: 0px; }
      .sheet__border .padding--no-mobile {
        padding: 2px; } }

.remark {
  display: inline-block;
  margin-bottom: 8px;
  border: 1px solid #979797;
  border-radius: 28px;
  padding: 3px 10px;
  font-size: 20px;
  font-weight: 500; }
  .remark span {
    font-size: 20px;
    color: #D4D4D4; }
  .remark button {
    padding: 0 8px;
    border: none;
    background-color: rgba(255, 255, 255, 0);
    color: rgba(155, 155, 155, 0.23);
    cursor: pointer; }
    .remark button:focus {
      color: #4D4D4D; }

.question {
  margin-bottom: 15px;
  padding: 25px;
  text-align: left;
  font-weight: 500;
  background-color: #fff; }
  @media all and (max-width: 479px) {
    .question {
      padding: 10px; } }
  .question h1 {
    margin-top: 0px;
    color: #2861af;
    font-weight: 700; }
  .question h3 {
    margin-top: 0px;
    font-weight: 500; }
  .question ul {
    padding: 0px; }
  .question li {
    list-style: none;
    margin-bottom: 5px;
    min-height: 55px;
    position: relative; }
  .question .rate span {
    font-size: 22px;
    color: #5a5a5a;
    vertical-align: super; }
  .question .rate .rate__title {
    color: #4a4a4a;
    padding-right: 15px;
    font-weight: 600; }
  .question .rate .rate__number {
    padding-left: 15px; }
  .question .question__font {
    font-size: 20px; }
    @media all and (min-width: 768px) and (max-width: 992px) {
      .question .question__font {
        font-size: 18px; } }
    @media all and (max-width: 479px) {
      .question .question__font {
        font-size: 18px; } }
    .question .question__font div {
      padding-left: 0px; }
    .question .question__font ul {
      padding-left: 0px; }
    .question .question__font .question__img img {
      max-width: 30%;
      margin-top: 10px;
      margin-bottom: 10px;
      padding-left: 25px; }
      @media all and (min-width: 768px) and (max-width: 992px) {
        .question .question__font .question__img img {
          max-width: 70%; } }
      @media all and (max-width: 479px) {
        .question .question__font .question__img img {
          max-width: 70%; } }
  .question .question__information {
    display: inline-block; }
    .question .question__information button {
      background-color: #3399b9;
      border: 2px solid #3399b9;
      margin-right: 10px;
      margin-bottom: 10px;
      padding: 5px 15px;
      color: #ffffff; }
      @media all and (min-width: 991px) {
        .question .question__information button:hover {
          background-color: white;
          color: #3399b9;
          font-weight: 600; } }
  .question .question__favorites {
    float: right;
    text-align: center;
    padding: 5px;
    font-size: 20px;
    color: #d9d9d9;
    border: 2px solid #d9d9d9;
    border-radius: 50px;
    line-height: 0px; }
    @media all and (min-width: 991px) {
      .question .question__favorites:hover {
        color: #f5515f;
        border: 2px solid #f5515f; } }
  .question .question__favorites--checked {
    color: #f5515f;
    border: 2px solid #f5515f; }
  .question .answer__status {
    font-size: 20px;
    line-height: 35px; }

.question--listening .question__formula {
  display: none; }

.question__count {
  margin-bottom: 25px;
  height: 50px; }
  @media all and (max-width: 479px) {
    .question__count {
      position: sticky;
      top: 0px;
      z-index: 1; } }
  .question__count .question__countTitle {
    width: 50%;
    height: 50px;
    display: inline-block;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 600; }
    .question__count .question__countTitle span {
      width: auto; }
      @media all and (max-width: 479px) {
        .question__count .question__countTitle span {
          display: block;
          line-height: 25px; } }
  .question__count .question__countNumber {
    height: 50px; }
    @media all and (max-width: 479px) {
      .question__count .question__countNumber {
        transform: translateY(-13px); } }
    .question__count .question__countNumber span {
      line-height: 50px;
      display: block; }
  .question__count .question__countTitle--target {
    color: #fff;
    background-color: rgba(129, 222, 74, 0.5); }
  .question__count .question__countNumber--target {
    color: #fff;
    background-color: #5ec124; }
  .question__count .question__countTitle--suggest {
    color: #fff;
    background-color: rgba(82, 215, 233, 0.5); }
  .question__count .question__countNumber--suggest {
    color: #fff;
    background-color: #33bdd0; }
  .question__count .question__countTitle--now {
    background-color: rgba(238, 165, 75, 0.5); }
  .question__count .question__countNumber--now {
    color: #fff;
    background-color: #d2882c; }

.question__time {
  margin: 0 auto 5px;
  border: none;
  font-size: 18px;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2; }
  @media all and (min-width: 991px) {
    .question__time {
      columns: 1;
      -webkit-columns: 1;
      -moz-columns: 1; } }
  .question__time li {
    min-height: auto; }
  .question__time img {
    padding-right: 5px; }

.answerSheet {
  border: 2px solid #d9d9d9;
  background-color: #fff; }
  @media all and (min-width: 991px) {
    .answerSheet {
      min-height: 50vh; } }
  .answerSheet .right {
    text-align: right; }
  .answerSheet ul {
    padding: 25px;
    margin-bottom: 0px; }
    @media all and (min-width: 768px) and (max-width: 992px) {
      .answerSheet ul {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2; } }
    @media all and (min-width: 991px) {
      .answerSheet ul {
        min-height: calc(50vh - 80px); } }
  .answerSheet .li--now {
    background-color: rgba(40, 143, 175, 0.2);
    color: #ffffff; }
    .answerSheet .li--now span {
      color: #9b9b9b; }
  .answerSheet li {
    display: inline-block;
    margin-right: 5px;
    padding: 8px 5px;
    width: 100%;
    min-width: 96px;
    font-size: 20px;
    margin-bottom: 10px;
    cursor: pointer; }
    @media all and (min-width: 991px) {
      .answerSheet li:hover {
        background-color: rgba(40, 143, 175, 0.3);
        color: #ffffff; }
        .answerSheet li:hover span {
          color: #ffffff; } }
    .answerSheet li:focus {
      background-color: #b28247;
      color: #ffffff; }
      .answerSheet li:focus span {
        color: #ffffff; }
    .answerSheet li button {
      width: 30px;
      height: 30px;
      font-size: 18px;
      color: #ffffff;
      padding: 5px; }
      @media all and (min-width: 991px) {
        .answerSheet li button:hover {
          transform: scale(1.1);
          -webkit-transform: scale(1.1); } }
    .answerSheet li .button__green {
      background-color: #b4ec51; }
    .answerSheet li .button__red {
      background-color: #f5515f; }
    .answerSheet li .button__gray {
      background-color: #d9d9d9; }

@media all and (min-width: 991px) {
  .modal__answerSheet .answerSheet__ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2; } }

.solution {
  font-size: 20px; }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .solution span {
      font-size: 16px; } }
  @media all and (max-width: 479px) {
    .solution span {
      font-size: 16px; } }
  .solution img {
    width: 100%;
    max-width: 300px; }
  .solution .right {
    text-align: right; }
  .solution button {
    font-size: 18px;
    padding: 10px 20px;
    margin-left: 5px;
    border: none; }

.react-h5-audio-player {
  display: inline-block !important; }
  .react-h5-audio-player .flex {
    width: auto !important; }
    .react-h5-audio-player .flex .toggle-play-wrapper {
      flex: 1 0 60px; }
    .react-h5-audio-player .flex .progress-bar-wrapper {
      display: none !important; }

.control {
  width: 100%;
  max-width: 500px;
  margin: 0 auto; }
  .control .left {
    width: 48%;
    max-width: 250px;
    float: left; }
  .control .right {
    width: 48%;
    max-width: 250px;
    float: right;
    text-align: center; }
  .control .control__btn {
    width: 100%;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0;
    border: none;
    padding: 8px 35px; }
  .control .control__btn--state {
    font-size: 18px;
    width: calc((100% - 10px) / 3); }

.answerSheetResult .answerSheetResult__tr {
  margin: 10px 0 2px;
  background-color: #84b1d9;
  color: #fff;
  min-height: 25px;
  line-height: 25px; }

.answerSheetResult .answerSheetResult__tr--content {
  margin: 0 0 2px;
  background-color: #eeeeee;
  min-height: 35px;
  line-height: 35px; }
  .answerSheetResult .answerSheetResult__tr--content button {
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 18px;
    color: #ffffff;
    padding: 5px; }
    @media all and (min-width: 991px) {
      .answerSheetResult .answerSheetResult__tr--content button:hover {
        transform: scale(1.1);
        -webkit-transform: scale(1.1); } }
  .answerSheetResult .answerSheetResult__tr--content .button__green {
    background-color: #b4ec51; }
  .answerSheetResult .answerSheetResult__tr--content .button__red {
    background-color: #f5515f; }
  .answerSheetResult .answerSheetResult__tr--content .button__gray {
    background-color: #d9d9d9; }
  .answerSheetResult .answerSheetResult__tr--content .progress.progress__time {
    margin-bottom: 0;
    margin-top: 8px; }
    @media all and (max-width: 479px) {
      .answerSheetResult .answerSheetResult__tr--content .progress.progress__time {
        margin-bottom: 10px; } }

.question.time--warning {
  background-color: rgba(238, 221, 18, 0.1); }

@keyframes alert {
  from {
    border: 2px solid #dfdfdf; }
  to {
    border: 2px solid #cc0a22; } }

.question.time--alert {
  animation-duration: 0.5s;
  animation-name: alert;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  background-color: rgba(204, 10, 34, 0.1); }

.progress.progress__time {
  margin-bottom: 10px;
  height: 20px; }
  @media all and (min-width: 991px) {
    .progress.progress__time {
      margin-top: 35px; } }

.difficult {
  display: inline-block;
  width: 100%;
  max-width: 600px; }
  @media all and (max-width: 479px) {
    .difficult {
      margin-top: 15px;
      padding-right: 15px; } }
  .difficult .glass {
    position: relative;
    width: 100%;
    float: left; }
  .difficult .glass--white {
    border: 2px solid #34403A;
    border-radius: 3px;
    background: #ffffff; }
  .difficult .glass--green {
    border: 2px solid #b89d9d;
    background: #6cca45; }
  .difficult .glass--blue {
    border: 2px solid #769fc3;
    background: #ffffff; }
  .difficult .progressBar {
    float: left;
    height: 20px;
    z-index: 333;
    transition: width 1s ease-in-out; }
  .difficult .progressBar--left {
    width: 0%; }
  .difficult .progressBar--right {
    width: 100%; }
  .difficult .glass {
    max-height: 24px; }
    .difficult .glass .glass__flag {
      transition: width 1s ease-in-out;
      width: 0%;
      position: absolute;
      top: -16px;
      right: 8px; }
      .difficult .glass .glass__flag img {
        transform: translateY(-20px);
        z-index: 9999; }
    .difficult .glass .progressBar__normal {
      background-color: #84b1d9; }
    .difficult .glass .progressBar__0 {
      background-color: #29bf12; }
    .difficult .glass .progressBar__80 {
      background-color: #F4E04D; }
    .difficult .glass .progressBar__100 {
      float: left;
      height: 20px;
      background-color: #F21B3F;
      z-index: 333; }
  .difficult .scalecontainer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 600px; }
  .difficult .scalecontainer__long {
    transform: translateY(15px);
    display: inline-block;
    border-right: solid 2px #9a9a9a;
    height: 40px;
    font-weight: 800;
    z-index: 2; }
  .difficult .scalecontainer__long--1 {
    width: 12.5%; }
  .difficult .scalecontainer__long--2 {
    width: 12.5%; }
  .difficult .scalecontainer__long--3 {
    width: 25%; }
  .difficult .scalecontainer__long--4 {
    width: 50%; }
  .difficult .scalecontainer__long--5 {
    width: 12.5%; }
  .difficult .scalecontainer__long--6 {
    width: 6.25%; }
  .difficult .scalecontainer__long--7 {
    width: 6.25%; }
  .difficult .goal-stat {
    padding: 10px 0px 2px;
    float: left;
    margin: 0;
    color: #888;
    text-align: right; }
    @media only screen and (max-width: 640px) {
      .difficult .goal-stat {
        font-size: 12px;
        text-align: right; } }
  .difficult .goal-number,
  .difficult .goal-label {
    font-size: 16px;
    display: block; }
  .difficult .goal-number {
    font-weight: bold; }
  @media only screen and (max-width: 640px) {
    .difficult .goal-label {
      font-size: 10px; }
    .difficult .goal-number {
      font-size: 16px; } }

.question--difficulty {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  padding-top: 10px; }
  .question--difficulty .question--difficulty__title {
    padding: 3px 5px;
    border-radius: 3px;
    background-color: #da3737;
    color: #fff;
    margin: 0 3px;
    align-self: flex-end; }
  .question--difficulty .question--difficulty__content {
    flex: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px; }
    .question--difficulty .question--difficulty__content > div {
      margin-left: 9px;
      margin-right: 9px; }
  .question--difficulty .question--difficulty__color {
    flex: 60%;
    border: 3px solid #c9c9c9;
    height: 32px;
    border-radius: 20px;
    position: relative;
    background: #e6e6e6;
    background: linear-gradient(to right, #8301cc 0%, #4e05fb 5%, #2877f6 10%, #42e986 20%, #fff300 40%, #f6a253 60%, #fe0c0c 80%); }
    .question--difficulty .question--difficulty__color .question--difficulty__index {
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: 1; }
      .question--difficulty .question--difficulty__color .question--difficulty__index .percent {
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 1px; }
    .question--difficulty .question--difficulty__color .empty {
      position: absolute;
      bottom: -3px;
      right: -3px;
      width: 100%;
      border: 3px solid #c9c9c9;
      height: 32px;
      border-radius: 20px;
      background-color: #e6e6e6;
      z-index: 0; }

.piechart {
  position: relative;
  display: block;
  max-width: 300px;
  margin: 0 auto; }
  .piechart svg {
    display: inline-block;
    vertical-align: middle;
    transform-origin: 50% 50%;
    animation: scale 0.6s;
    margin: 0 auto;
    max-width: 100%;
    width: 100%; }
    .piechart svg text {
      font-weight: bolder;
      font-size: 16px; }
  .piechart span {
    position: absolute;
    font-size: 16px;
    top: 45%;
    left: calc(50% - 48px); }

@keyframes scale {
  from {
    transform: scale(0.5); }
  to {
    transform: scale(1); } }

.piechartcontent {
  position: relative;
  list-style: none;
  padding: 0;
  max-width: 400px;
  margin: 0 auto;
  text-align: left; }
  .piechartcontent li {
    display: inline-block;
    width: 50%;
    min-width: 200px;
    min-height: 20px;
    text-align: left;
    padding-top: 10px;
    line-height: 20px; }
  .piechartcontent .piechartcontent__mark {
    vertical-align: bottom !important;
    display: inline-block;
    margin-right: 8px;
    width: 20px;
    height: 20px; }

.score {
  background: #E8E8E8;
  padding: 20px;
  margin-left: auto;
  margin-right: auto; }
  @media all and (max-width: 479px) {
    .score {
      max-width: 100%; } }
  .score .score__first {
    font-size: 85px;
    font-weight: 600;
    color: #D0021B; }
  .score .score__second {
    font-size: 30px;
    font-weight: 600;
    color: #D0021B; }

/* search */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /* IE10+ CSS */
  .searchContainer {
    display: none !important; } }

.searchContainer {
  background-color: #ffffff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.28);
  border: 1px solid #dfdfdf;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 10px 0;
  margin-bottom: 30px;
  font-size: 20px; }
  .searchContainer img {
    height: 25px;
    vertical-align: sub; }
  .searchContainer button {
    max-width: 75px;
    display: inline-block;
    color: #9b9b9b;
    vertical-align: top;
    height: 30px;
    font-weight: 800;
    background-color: #ffffff;
    border: none;
    cursor: pointer; }
  .searchContainer input {
    padding-left: 10px;
    line-height: 20px;
    display: inline-block;
    width: 100%;
    max-width: 225px;
    color: #9b9b9b;
    letter-spacing: 0;
    border: 0;
    border-radius: 0px;
    outline: 0;
    pointer-events: auto; }
    .searchContainer input:focus {
      outline: none; }
    @media all and (max-width: 479px) {
      .searchContainer input {
        max-width: calc(100% - 80px); } }
  .searchContainer input::-ms-clear {
    display: none; }
  @media all and (max-width: 479px) {
    .searchContainer {
      background-color: #ffffff;
      height: 60px;
      padding: 15px 8px;
      max-width: calc(100vw - 30px); } }

.searchContainer--fixed {
  top: 40px;
  z-index: 503; }
  @media all and (min-width: 991px) {
    .searchContainer--fixed {
      box-shadow: none; } }
  @media all and (min-width: 768px) and (max-width: 992px) {
    .searchContainer--fixed {
      position: sticky !important;
      transform: none;
      top: 0px; } }
  @media all and (min-width: 480px) and (max-width: 767px) {
    .searchContainer--fixed {
      position: sticky !important;
      transform: none;
      top: 0px; } }
  @media all and (max-width: 479px) {
    .searchContainer--fixed {
      position: sticky !important;
      transform: none;
      top: 0px; } }

.searchContainer--shadowNone {
  box-shadow: none;
  border: 1px solid #dfdfdf;
  top: 5px; }
  @media all and (max-width: 479px) {
    .searchContainer--shadowNone {
      border: none;
      top: 0px; } }

.canvas {
  position: fixed;
  left: 0px;
  z-index: 999; }

.examTime {
  background-color: #d9e9f6;
  line-height: 40px;
  padding-left: 10px;
  font-size: 20px;
  font-weight: 600; }
  .examTime .examTime__title {
    color: #4a4a4a; }
  .examTime .examTime__number {
    color: #d0021b; }
  @media all and (max-width: 479px) {
    .examTime {
      margin-bottom: 15px; } }

.answermodal {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  bottom: 135px;
  right: 10px;
  z-index: 998; }
  .answermodal .scroll {
    line-height: 25px;
    padding: 8px 10px;
    font-size: 25px; }

.react-responsive-modal-modal.note-modal {
  border-radius: 6px;
  background-color: #000;
  color: #fff; }
  .react-responsive-modal-modal.note-modal .note-modal__close__button > svg {
    height: 30px;
    width: 30px; }
  .react-responsive-modal-modal.note-modal .note-modal__title {
    font-size: 1.2rem;
    font-weight: 600;
    padding-right: 30px;
    border-bottom: 1px solid #cd3636; }
    .react-responsive-modal-modal.note-modal .note-modal__title .note-modal__sub-title {
      font-size: 0.8rem;
      color: #ababab; }
    .react-responsive-modal-modal.note-modal .note-modal__title .note-modal__title-icon {
      color: gold;
      margin: 0 6px; }
  .react-responsive-modal-modal.note-modal .note-modal__buttons {
    text-align: right; }
  .react-responsive-modal-modal.note-modal .note-modal__content {
    margin: 12px 0;
    color: #000; }
  .react-responsive-modal-modal.note-modal .note-modal__textarea > textarea {
    border-radius: 12px;
    padding: 6px;
    font-size: 1rem;
    letter-spacing: 1px; }
  .react-responsive-modal-modal.note-modal .note-modal__voice {
    width: 300px; }
  .react-responsive-modal-modal.note-modal .note-modal__image--tools {
    background-color: #fff;
    margin: 12px 0;
    border-radius: 12px;
    padding: 3px 6px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center; }
  .react-responsive-modal-modal.note-modal .note-modal__saving {
    font-size: 1.1rem;
    padding-right: 30px; }
    .react-responsive-modal-modal.note-modal .note-modal__saving > svg {
      height: 20px;
      width: 20px;
      margin: 0 6px;
      animation: spin 4s linear infinite;
      vertical-align: text-bottom; }

@keyframes spin {
  100% {
    transform: rotate(360deg); } }
  .react-responsive-modal-modal.note-modal .note-modal__warning {
    font-size: 1.1rem;
    padding-right: 30px;
    color: #cd3636;
    font-weight: 600; }
    .react-responsive-modal-modal.note-modal .note-modal__warning > svg {
      height: 20px;
      width: 20px;
      margin: 0 6px;
      vertical-align: text-bottom; }

.react-responsive-modal-overlay.note-modal__overlay {
  background: rgba(0, 0, 0, 0.2); }

.record-time {
  width: 100%; }
  .record-time .record-time__secs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row; }
    .record-time .record-time__secs > span {
      letter-spacing: 1px;
      font-size: 0.9rem;
      font-weight: 600; }
  .record-time .record-time__line {
    height: 7px;
    border-radius: 6px;
    width: 100%;
    background: #dddddd;
    border: 2px solid #fff;
    position: relative; }
    .record-time .record-time__line > .record-time__line--active {
      position: absolute;
      top: 0;
      left: 0;
      height: 3px;
      border-radius: 6px;
      transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
      background: linear-gradient(to right, black, #e60c30); }

.note-modal__color {
  width: 20px;
  height: 20px;
  margin: 3px;
  background-color: #fff;
  border: 2px solid #fff; }
  .note-modal__color--active {
    border: 2px solid gold; }

.note-modal__radius {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff; }
  .note-modal__radius--active {
    border: 2px solid gold; }
  .note-modal__radius .note-modal__radius__line {
    width: 20px;
    height: 20px;
    margin: 3px;
    vertical-align: middle;
    background-color: #000; }

.note-modal__image--canvas > div {
  margin: auto; }

