/* progress */
.act_progress {
  background-color: #F9FAFC;
  padding: 32px;
  border-radius: 8px;
}

.act_progres_bar {
  border-radius: 2px;
  background: #D9D9D9;
  height: 12px;
  display: flex;
  position: relative;
  margin-bottom: 32px;
}

.act_progres_bar:before {
  content: '';
  position: absolute;
  border-radius: 2px;
  background: linear-gradient(90deg, #EF6868 0%, #BC1212 100%);
  top: 0;
  left: 0;
  z-index: 1;
}

.act_progres_line {
  position: relative;
  flex: auto;
}

.act_progres_line span {
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: -4px;
  z-index: 2;
  transform: translateX(-10px);
  border-radius: 50%;
  background-color: #3A3A3A;
}

.act_progres_line.on span {
  background-color: #FB8200;
}

/* .act_progres_line.active span:before {
  content: '';
  width: 45px;
  height: 45px;
  position: absolute;
  top: -50px;
  left: -10px;
  z-index: 2;
  background: url('https://img.aosomcdn.com/upload/activity/uk/images/2023/black_progress.svg') 0 0 no-repeat;
} */

.act_progres_del {
  display: flex;
}

.act_progres_item {
  flex: 1 0 0;
  border-radius: 8px;
  background: #DFABA5;
  padding: 24px;
  margin-right: 32px;
}

.act_progres_item:last-child {
  margin-right: 0;
}

.act_progres_tit {
  color: #2b2b2b;
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}

.act_progres_tit.small {
  font-size: 18px;
}

.act_progres_intro {
  color: #2b2b2b;
  font-size: 16px;
  line-height: 150%;
  height: 72px;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}

.act_progres_cta {
  color: #2b2b2b;
  font-size: 16px;
  line-height: 130%;
  text-decoration: none;
}

@media only screen and (max-width: 1025px) {
  .act_progress {
    padding: 20px;
  }

  .act_progres_item {
    padding: 15px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .act_progress {
    padding: 16px 4px 16px 0;
    border-radius: 4px;
  }

  .act_progress_in {
    display: flex;
    max-height: 308px;
    padding-left: 20px;
    overflow-x: visible;
    overflow-y: auto;
  }

  .act_progress_in::-webkit-scrollbar {
    width: 5px;
    background-color: transparent;
    border-radius: 4px;
  }

  .act_progress_in::-webkit-scrollbar-thumb {
    background-color: rgba(217, 217, 217, 1);
    border-radius: 4px;
  }

  .act_progress_in::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 4px;
  }

  .act_progres_bar {
    height: auto;
    display: block;
    margin-bottom: 0;
    width: 7px;
    flex-shrink: 0;
    margin-right: 16px;
  }

  .act_progres_line {
    width: 7px;
    height: 150px;
    margin-bottom: 8px;
  }

  .act_progres_line:last-child {
    margin-bottom: 0;
  }

  .act_progres_del {
    display: block;
    flex: auto;
    margin-right: 7px;
  }

  .act_progres_item {
    border-radius: 4px;
    padding: 16px;
    margin-right: 0;
    margin-bottom: 8px;
    height: 150px;
  }

  .act_progres_item:last-child {
    margin-bottom: 0;
  }

  .act_progres_line span {
    width: 16px;
    height: 16px;
    left: -5px;
    top: 50%;
    z-index: 2;
    transform: translate(0, -8px);
  }

  /* .act_progres_line.active span:before {
    width: 20px;
    height: 20px;
    top: -3px;
    left: -25px;
    background-size: contain;
    transform: rotate(-90deg);
  } */

  .act_progres_tit {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .act_progres_tit.small {
    font-size: 13px;
  }

  .act_progres_intro {
    font-size: 12px;
    height: 54px;
    margin-bottom: 16px;
  }

  .act_progres_cta {
    font-size: 12px;
  }
}

/* normal nav */
.normal_nav {
  display: flex;
  max-width: 1600px;
  margin: 0 auto 20px;
}

.normal_nav_text {
  display: flex;
  padding: 0 24px;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 64px;
  border: 1px solid #F2F3F5;
  border-radius: 4px;
  background: #FFF;
  margin-right: 20px;
  color: #2b2b2b;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  cursor: pointer;
  flex: 1;
}

.normal_nav_text:last-child {
  margin-right: 0;
}

.normal_nav_text:hover,
.normal_nav_text.on {
  background: #2b2b2b;
  color: #FFF;
  border-color: #2b2b2b;
}

@media only screen and (max-width: 1600px) {

  .normal_nav_text {
    padding: 5px 20px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .normal_nav_text {
    font-size: 16px;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .normal_nav {
    justify-content: flex-start;
    overflow-x: scroll;
    overflow-y: hidden;
    margin: 0 0 16px;
  }

  .normal_nav_wrap {
    position: relative;
  }

  .normal_nav_wrap:after {
    content: '';
    width: 25px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.90) 100%);
  }

  .normal_nav_text {
    font-size: 12px;
    margin-right: 8px;
    border-radius: 2px;
    padding: 0 16px;
    white-space: nowrap;
    height: 40px;
  }

  .normal_nav_text:last-child {
    margin-right: 25px;
  }

  .normal_nav::-webkit-scrollbar {
    display: none;
  }
}

/* seckill */
.tc {
  text-align: center;
}

.act_sec_t_img {
  width: 34.1875%;
  margin: auto;
  position: relative;
}

.act_sec_t {
  position: relative;
  margin-bottom: 20px;
  padding: 39px;
  text-align: center;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.act_sec_tit {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
}

.act_sec_rule {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.act_sec_rule_new {
  position: absolute;
  bottom: 10%;
  right: auto;
  left: 49%;
  transform: translateX(-50%);
  z-index: 1;
}

.act_sec_rule a {
  color: #fff;
  font-size: 14px;
  line-height: 130%;
  font-weight: 500;
  padding: 5px 24px;
  border-radius: 4px;
  background: rgba(43, 43, 43, 0.70);
}

.act_sec_rule_new a {
  font-size: 32px;
  font-weight: 600;
}

.act_sec_container {
  position: relative;
}

.act_sec_wrap {
  display: flex;
  height: auto;
}

.act_sec_product {
  background-color: #fff;
  width: 23%;
  height: auto;
  padding: 20px;
  margin-right: 20px;
  border-radius: 8px;
  border: 1px solid #F2F3F5;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.05);
}

.act_sec_img {
  position: relative;
  margin-bottom: 20px;
}

.act_sec_img a {
  display: block;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}

.act_sec_img img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.act_sec_sold_out {
  width: 80%;
  height: 0;
  padding-bottom: 28.8%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  color: #fff;
  font-size: 28px;
  line-height: 130%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.act_sec_sold_out span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.act_sec_info {
  height: 36px;
  line-height: 36px;
  margin: 10px 0;
  font-size: 14px;
  text-align: center;
}

.act_sec_preview {
  color: #fff;
  background-color: #9b9b9b;
  background-image: linear-gradient(to right, #fff, #9b9b9b, #fff);
}

.act_sec_countdown {
  color: #c90401;
  background-color: #f4c0c0;
  background-image: linear-gradient(to right, #fff, #f4c0c0, #fff);
}

.act_sec_info_l {
  font-size: 12px;
}

.act_sec_price_special {
  font-size: 22px;
  color: #dc2f2f;
  font-weight: 700;
  line-height: 130%;
}

.act_sec_price_special span {
  font-size: 33px;
}

.act_sec_price_normal {
  color: #757575;
  font-size: 13px;
  font-weight: 500;
  line-height: 130%;
  margin: 4px 0 12px;
}

.act_sec_price_normal span {
  position: relative;
  display: inline-block;
}

.act_sec_price_normal span:after {
  content: '';
  width: 120%;
  height: 1px;
  background-color: #dc2f2f;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  transform: rotate(-10deg) translateY(-8px);
}

.act_sec_stock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.act_sec_line {
  width: 57%;
}

.act_sec_line0 {
  width: 100%;
  height: 8px;
  border-radius: 2px;
  border: 1px solid #2b2b2b;
}

.act_sec_line2 {
  background-color: #2b2b2b;
  margin-top: -8px;
}

.act_sec_stock_text {
  font-size: 14px;
  color: #2b2b2b;
  text-align: right;
}

.act_sec_stock_text span {
  font-size: 18px;
  font-weight: 500;
}

.act_item_flash .act_sec_stock_text span,
.act_item_notify .act_sec_stock_text span {
  color: #dc2f2f;
}

.act_sec_title {
  margin-bottom: 12px;
}

.act_sec_title a {
  font-size: 16px;
  line-height: 150%;
  color: #2b2b2b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -moz-box;
  -moz-line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  text-decoration: none;
}

.act_sec_btn {
  height: 48px;
  line-height: 48px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.act_sec_btn span {
  display: inline-block;
  height: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding-left: 12px;
}

.act_sec_btn img {
  width: 20px;
  height: 20px;
}

.act_sec_buy {
  background-color: #dc2f2f;
}

.act_sec_notify {
  background-color: #2b2b2b;
}

.act_sec_ended,
.act_sec_none {
  background-color: #CED7DE;
  cursor: default;
}

.act_item_ended .act_sec_line,
.act_item_sold_out .act_sec_line,
.act_item_ended .act_sec_img,
.act_item_sold_out .act_sec_img {
  opacity: .5;
}

.rule_desc {
  width: 100%;
  color: #fff;
  margin: 10px auto;
  text-align: center;
  font-size: 20px;
}

.act_sec_container .swiper-button-next {
  right: -30px;
  width: 60px !important;
  height: 60px !important;
}

.act_sec_container .swiper-button-prev {
  left: -30px;
  width: 60px !important;
  height: 60px !important;
}


@media only screen and (max-width: 1400px) {
  .act_sec_rule_new a {
    font-size: 26px;
  }
}

@media only screen and (max-width: 1200px) {

  .act_sec .swiper-button-prev,
  .act_sec .swiper-button-next {
    display: none;
  }

  .act_sec_rule_new a {
    font-size: 20px;
  }

  .act_sec_tit {
    font-size: 32px;
  }
}

@media only screen and (max-width: 1025px) {
  .act_sec_sold_out {
    font-size: 24px;
  }

  .act_sec_rule_new a {
    font-size: 17px;
  }

  .rule_desc {
    font-size: 16px;
  }

  .act_sec_tit {
    font-size: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .act_content.act_sec {
    margin: 0 auto 8px;
  }

  .act_sec_container {
    padding: 0;
  }

  .swiper-container-multirow-column>.swiper-wrapper.act_sec_wrap {
    flex-direction: inherit;
  }

  .act_sec_t_img {
    width: 65%;
    padding: 10px 0 0;
  }

  .act_sec_rule {
    top: auto;
    right: auto;
    position: relative;
  }

  .act_sec_rule a {
    font-size: 12px;
    display: inline-block;
  }

  .act_sec_rule_new {
    bottom: 12%;
    right: auto;
    left: 49%;
    transform: translateX(-50%);
  }

  .act_sec_rule_new a {
    font-size: 16px;
  }

  .act_sec_product {
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    border-width: 0.5px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05);
    margin-top: 0 !important;
  }

  .act_sec_container .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background-color: #dc2f2f;
  }

  .act_sec_info {
    height: 26px;
    line-height: 26px;
    margin: 5px 0;
    font-size: 12px;
  }

  .act_sec_price_special {
    font-size: 14px;
  }

  .act_sec_price_special span {
    font-size: 18px;
  }

  .act_sec_price_normal {
    font-size: 12px;
    margin: 4px 0 12px;
  }

  .act_sec_price_normal span:after {
    transform: rotate(-15deg) translateY(-7px);
  }

  .act_sec_stock {
    margin-bottom: 12px;
  }

  .act_sec_title {
    margin-bottom: 12px;
  }

  .act_sec_title a {
    font-size: 12px;
  }

  .act_sec_action {
    margin: 0;
  }

  .act_sec_btn {
    height: 32px;
    line-height: 32px;
  }

  .act_sec_btn span {
    font-size: 14px;
    padding-left: 8px;
  }

  .act_sec_btn img {
    width: 12px;
    height: 12px;
  }

  .act_sec_sold_out {
    font-size: 20px;
  }

  .rule_desc {
    font-size: 14px;
  }

  .act_sec_tit {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .act_sec_t {
    padding: 8px;
  }

  .act_sec_img {
    margin-bottom: 8px;
  }

  .act_sec_img img {
    border-radius: 4px;
  }

  .act_sec_line {
    width: 48.1%;
  }

  .act_sec_stock_text {
    font-size: 12px;
  }

  .act_sec_stock_text span {
    font-size: 13px;
  }
}

@media only screen and (max-width: 415px) {
  .act_sec_rule_new {
    bottom: 10%;
  }

  .act_sec_rule_new a {
    font-size: 14px;
  }

  .rule_desc {
    font-size: 12px;
  }
}

/* clock style reset */
.act_clock.flip-clock-wrapper * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}

.act_clock.flip-clock-wrapper a {
  cursor: pointer;
  text-decoration: none;
  color: #ccc;
}

.act_clock.flip-clock-wrapper a:hover {
  color: #fff;
}

.act_clock.flip-clock-wrapper ul {
  list-style: none;
}

.act_clock.flip-clock-wrapper.clearfix:before,
.act_clock.flip-clock-wrapper.clearfix:after {
  content: " ";
  display: table;
}

.act_clock.flip-clock-wrapper.clearfix:after {
  clear: both;
}

.act_clock.flip-clock-wrapper.clearfix {
  *zoom: 1;
}

/* Main */
.act_clock.flip-clock-wrapper {
  font: normal 11px "Helvetica Neue", Helvetica, sans-serif;
  -webkit-user-select: none;
}

.act_clock .flip-clock-meridium {
  background: none !important;
  box-shadow: 0 0 0 !important;
  font-size: 36px !important;
}

.act_clock .flip-clock-meridium a {
  color: #313333;
}

.act_clock.flip-clock-wrapper {
  text-align: center;
  position: relative;
  width: 100%;
  margin: 1em;
}

.act_clock.flip-clock-wrapper:before,
.act_clock.flip-clock-wrapper:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.act_clock.flip-clock-wrapper:after {
  clear: both;
}

/* Skeleton */
.act_clock.flip-clock-wrapper ul {
  position: relative;
  float: left;
  margin: 5px;
  width: 60px;
  height: 90px;
  font-size: 80px;
  font-weight: bold;
  line-height: 87px;
  border-radius: 6px;
  background: #000;
}

.act_clock.flip-clock-wrapper ul li {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 87px;
  text-decoration: none !important;
}

.act_clock.flip-clock-wrapper ul li:first-child {
  z-index: 2;
}

.act_clock.flip-clock-wrapper ul li a {
  display: block;
  height: 100%;
  -webkit-perspective: 200px;
  -moz-perspective: 200px;
  perspective: 200px;
  margin: 0 !important;
  overflow: visible !important;
  cursor: default !important;
}

.act_clock.flip-clock-wrapper ul li a div {
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  font-size: 80px;
  overflow: hidden;
  outline: 1px solid transparent;
}

.act_clock.flip-clock-wrapper ul li a div .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.act_clock.flip-clock-wrapper ul li a div.up {
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  top: 0;
}

.act_clock.flip-clock-wrapper ul li a div.up:after {
  content: "";
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 3px;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.4);
}

.act_clock.flip-clock-wrapper ul li a div.down {
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
  bottom: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.act_clock.flip-clock-wrapper ul li a div div.inn {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  color: #ccc;
  text-shadow: 0 1px 2px #000;
  text-align: center;
  background-color: #333;
  border-radius: 6px;
  font-size: 70px;
}

.act_clock.flip-clock-wrapper ul li a div.up div.inn {
  top: 0;
}

.act_clock.flip-clock-wrapper ul li a div.down div.inn {
  bottom: 0;
}

/* PLAY */
.act_clock.flip-clock-wrapper ul.play li.flip-clock-before {
  z-index: 3;
}

.act_clock.flip-clock-wrapper .flip {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.act_clock.flip-clock-wrapper ul.play li.flip-clock-active {
  -webkit-animation: asd 0.5s 0.5s linear both;
  -moz-animation: asd 0.5s 0.5s linear both;
  animation: asd 0.5s 0.5s linear both;
  z-index: 5;
}

.act_clock .flip-clock-divider {
  float: left;
  display: inline-block;
  position: relative;
  width: 20px;
  height: 100px;
}

.act_clock .flip-clock-divider:first-child {
  width: 0;
}

.act_clock .flip-clock-dot {
  display: block;
  background: #323434;
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  left: 5px;
}

.act_clock .flip-clock-divider .flip-clock-label {
  position: absolute;
  top: -1.5em;
  right: -86px;
  color: black;
  text-shadow: none;
}

.act_clock .flip-clock-divider.minutes .flip-clock-label {
  right: -88px;
}

.act_clock .flip-clock-divider.seconds .flip-clock-label {
  right: -91px;
}

.act_clock .flip-clock-dot.top {
  top: 30px;
}

.act_clock .flip-clock-dot.bottom {
  bottom: 30px;
}

@-webkit-keyframes asd {
  0% {
    z-index: 2;
  }

  20% {
    z-index: 4;
  }

  100% {
    z-index: 4;
  }
}

@-moz-keyframes asd {
  0% {
    z-index: 2;
  }

  20% {
    z-index: 4;
  }

  100% {
    z-index: 4;
  }
}

@-o-keyframes asd {
  0% {
    z-index: 2;
  }

  20% {
    z-index: 4;
  }

  100% {
    z-index: 4;
  }
}

@keyframes asd {
  0% {
    z-index: 2;
  }

  20% {
    z-index: 4;
  }

  100% {
    z-index: 4;
  }
}

.act_clock.flip-clock-wrapper ul.play li.flip-clock-active .down {
  z-index: 2;
  -webkit-animation: turn 0.5s 0.5s linear both;
  -moz-animation: turn 0.5s 0.5s linear both;
  animation: turn 0.5s 0.5s linear both;
}

@-webkit-keyframes turn {
  0% {
    -webkit-transform: rotateX(90deg);
  }

  100% {
    -webkit-transform: rotateX(0deg);
  }
}

@-moz-keyframes turn {
  0% {
    -moz-transform: rotateX(90deg);
  }

  100% {
    -moz-transform: rotateX(0deg);
  }
}

@-o-keyframes turn {
  0% {
    -o-transform: rotateX(90deg);
  }

  100% {
    -o-transform: rotateX(0deg);
  }
}

@keyframes turn {
  0% {
    transform: rotateX(90deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}

.act_clock.flip-clock-wrapper ul.play li.flip-clock-before .up {
  z-index: 2;
  -webkit-animation: turn2 0.5s linear both;
  -moz-animation: turn2 0.5s linear both;
  animation: turn2 0.5s linear both;
}

@-webkit-keyframes turn2 {
  0% {
    -webkit-transform: rotateX(0deg);
  }

  100% {
    -webkit-transform: rotateX(-90deg);
  }
}

@-moz-keyframes turn2 {
  0% {
    -moz-transform: rotateX(0deg);
  }

  100% {
    -moz-transform: rotateX(-90deg);
  }
}

@-o-keyframes turn2 {
  0% {
    -o-transform: rotateX(0deg);
  }

  100% {
    -o-transform: rotateX(-90deg);
  }
}

@keyframes turn2 {
  0% {
    transform: rotateX(0deg);
  }

  100% {
    transform: rotateX(-90deg);
  }
}

.act_clock.flip-clock-wrapper ul li.flip-clock-active {
  z-index: 3;
}

/* SHADOW */
.act_clock.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));
  background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both;
}

.act_clock.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, black));
  background: linear, top, rgba(0, 0, 0, 0.1) 0%, black 100%;
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, black 100%);
  background: linear, to bottom, rgba(0, 0, 0, 0.1) 0%, black 100%;
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.3s linear both;
}

/*DOWN*/
.act_clock.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
  background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both;
}

.act_clock.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
  background: -moz-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, black), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background: linear, top, black 0%, rgba(0, 0, 0, 0.1) 100%;
  background: -o-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: -ms-linear-gradient(top, black 0%, rgba(0, 0, 0, 0.1) 100%);
  background: linear, to bottom, black 0%, rgba(0, 0, 0, 0.1) 100%;
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.2s linear both;
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes hide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes hide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes hide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes hide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.act_clock.flip-clock-wrapper {
  position: relative;
  right: auto;
  top: auto;
  bottom: auto;
  transform: translate(-20px, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.act_clock.flip-clock-wrapper ul {
  width: 70px;
  height: 80px;
  font-size: 32px;
  line-height: 80px;
  margin: 0 7px;
}

.act_clock.flip-clock-wrapper ul li {
  line-height: 80px;
}

.act_clock.flip-clock-wrapper .flip {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
  background: none;
}

.act_clock.flip-clock-wrapper ul li a div {
  outline: none;
}

.act_clock.flip-clock-wrapper ul li a div div.inn {
  font-size: 40px;
  color: #fff;
  text-shadow: none;
  font-weight: normal;
}

.act_clock.flip-clock-wrapper ul li a div.up {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.act_clock.flip-clock-wrapper ul li a div div.inn {
  background-image: linear-gradient(to bottom, #ED3E3E, #dc2f2f);
}

.act_clock.flip-clock-wrapper ul li a div.up div.inn {
  background-image: linear-gradient(to bottom, #C62525, #dc2f2f);
}

.act_clock.flip-clock-wrapper ul li a div.up .shadow {
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, .1));
}

.act_clock.flip-clock-wrapper ul li a div.up:after {
  top: 50px;
}

.act_clock .flip-clock-divider .flip-clock-label {
  display: block;
  top: auto;
  bottom: -20px;
  right: -160px;
  font-size: 14px;
  color: #363636;
  width: 154px;
}

.act_clock .flip-clock-divider.minutes .flip-clock-label,
.act_clock .flip-clock-divider.seconds .flip-clock-label {
  right: -160px;
}

.act_clock .flip-clock-divider {
  height: 80px;
  width: 40px;
  margin-top: 20px;
}

.act_clock .flip-clock-dot {
  width: 10px;
  height: 10px;
  box-shadow: none;
  left: 15px;
}

.act_clock .flip-clock-dot.top {
  top: 18px;
}

.act_clock .flip-clock-dot.bottom {
  bottom: 32px;
}

.countdown_wrap {
  margin-bottom: 40px;
}

@media only screen and (max-width: 1200px) {
  .act_clock.flip-clock-wrapper {
    transform: translate(0, 0);
  }

  .act_clock.flip-clock-wrapper ul {
    width: 58px;
    height: 65px;
    line-height: 65px;
    margin: 0 5px;
  }

  .act_clock.flip-clock-wrapper ul li {
    line-height: 65px;
  }

  .act_clock.flip-clock-wrapper ul li a div div.inn {
    font-size: 50px;
  }

  .act_clock.flip-clock-wrapper ul li a div.up:after {
    top: 50px;
  }

  .act_clock .flip-clock-divider .flip-clock-label {
    right: -136px;
    font-size: 15px;
    width: 136px;
  }

  .act_clock .flip-clock-divider.minutes .flip-clock-label,
  .act_clock .flip-clock-divider.seconds .flip-clock-label {
    right: -136px;
  }

  .act_clock .flip-clock-divider {
    height: 65px;
    width: 40px;
    margin-top: 10px;
  }

  .act_clock .flip-clock-dot {
    width: 10px;
    height: 10px;
    box-shadow: none;
    left: 16px;
  }

  .act_clock .flip-clock-dot.top {
    top: 15px;
  }

  .act_clock .flip-clock-dot.bottom {
    bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .act_clock.flip-clock-wrapper {
    transform: translate(-5px, 0);
  }

  .act_clock.flip-clock-wrapper ul {
    width: 25px;
    height: 30px;
    line-height: 30px;
    margin: 0 2px;
  }

  .act_clock.flip-clock-wrapper ul li {
    line-height: 30px;
  }

  .act_clock.flip-clock-wrapper ul li a div div.inn {
    font-size: 18px;
  }

  .act_clock.flip-clock-wrapper ul li a div.up:after {
    top: 50px;
  }

  .act_clock .flip-clock-divider .flip-clock-label {
    right: -54px;
    bottom: -20px;
    font-size: 12px;
    width: 54px;
  }

  .act_clock .flip-clock-divider.minutes .flip-clock-label,
  .act_clock .flip-clock-divider.seconds .flip-clock-label {
    right: -54px;
  }

  .act_clock .flip-clock-divider {
    height: 30px;
    width: 16px;
    margin-top: 0;
    display: inline-block;
    margin-right: 0;
  }

  .act_clock .flip-clock-dot {
    width: 3px;
    height: 3px;
    box-shadow: none;
    left: 7px;
  }

  .act_clock .flip-clock-dot.top {
    top: 8px;
  }

  .act_clock .flip-clock-dot.bottom {
    bottom: 8px;
  }

  .countdown_wrap {
    margin-bottom: 35px;
  }
}

.act_sec_container .swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: 0;
}

.act_clock .flip-clock-divider .flip-clock-label {
  color: #fff;
}

.act_clock .flip-clock-dot {
  background: #fff;
}

.act_clock[data-language="portuguese"] .flip-clock-divider .flip-clock-label,
.act_clock[data-language="romania"] .flip-clock-divider .flip-clock-label {
  color: #363636;
}

.act_clock[data-language="portuguese"] .flip-clock-dot,
.act_clock[data-language="romania"] .flip-clock-dot {
  background: #323434;
}

.swiper-button-next .v-icon,
.swiper-button-prev .v-icon {
  font-family: "iconfont" !important;
  font-size: 25px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.swiper-button-prev .mdi-zuo:before {
  content: "\e630";
}

.swiper-button-next .mdi-youbian:before {
  content: "\e629";
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: '';
}