@charset "UTF-8";

.hyd_detail_item_btn_more {
	position: relative;
	background-color: #00a0b8;
  color: #FFF;
  overflow: hidden;
}
.hyd_detail_item_btn_cart {
  color: #00a0b8;
  background-color: #FFF;
	border: 2px solid #00a0b8;
}
.hyd_detail_item.hydra_ex .hyd_detail_item_btn_more {
  color: #FFF;
	background-color: #552378;
}
.hyd_detail_item.hydra_ex .hyd_detail_item_btn_cart {
  background-color: #FFF;
	border-color: #552378;
  color: #552378;
}
.hyd_detail_item.hydra_f .hyd_detail_item_btn_more {
  color: #FFF;
	background-color: #ffce23;
}
.hyd_detail_item.hydra_f .hyd_detail_item_btn_cart {
  background-color: #FFF;
	border-color: #ffce23;
  color: #ffce23;
}
.hyd_detail_item.hydra_v .hyd_detail_item_btn_more {
  color: #FFF;
	background-color: #ff2323;
}
.hyd_detail_item.hydra_v .hyd_detail_item_btn_cart {
  background-color: #FFF;
	border-color: #ff2323;
  color: #ff2323;
}
.hyd_other_item_more {
	position: relative;
	background-color: #ff9e00;
  color: #FFF;
  overflow: hidden;
}
.hyd_other_item_cart {
	background: transparent;
	border: 1px solid #ff9e00;
  color: #ff9e00;
}
.hyd_other_item.hydra_f .hyd_other_item_more {
  position: relative;
	background-color: #555555;
  color: #FFF;
  overflow: hidden;
}
.hyd_other_item.hydra_f .hyd_other_item_cart {
  background-color: #FFF;
	border: 1px solid #555555;
  color: #555555;
}
.hydas_more_item .hydas_more_item_cta,
.hydf_more_item .hydf_more_item_cta,
.hydex_more_item .hydex_more_item_cta,
.hydaz_more_item .hydaz_more_item_cta,
.hydv_more_item .hydv_more_item_cta {
  position: relative;
  color: #FFF;
  background: #ffce23;
  overflow: hidden;
}
.hydas_more_item.hydra_ex .hydas_more_item_cta,
.hydf_more_item.hydra_ex .hydf_more_item_cta,
.hydex_more_item.hydra_ex .hydex_more_item_cta,
.hydaz_more_item.hydra_ex .hydaz_more_item_cta,
.hydv_more_item.hydra_ex .hydv_more_item_cta {
  background-color: #552378;
  color: #FFF;
}
.hydas_more_item.hydra_az .hydas_more_item_cta,
.hydf_more_item.hydra_az .hydf_more_item_cta,
.hydex_more_item.hydra_az .hydex_more_item_cta,
.hydaz_more_item.hydra_az .hydaz_more_item_cta,
.hydv_more_item.hydra_az .hydv_more_item_cta {
  background-color: #00a0b8;
  color: #FFF;
}
.hydas_more_item.hydra_v .hydas_more_item_cta,
.hydf_more_item.hydra_v .hydf_more_item_cta,
.hydex_more_item.hydra_v .hydex_more_item_cta,
.hydaz_more_item.hydra_v .hydaz_more_item_cta,
.hydv_more_item.hydra_v .hydv_more_item_cta {
  background-color: #ff2323;
  color: #FFF;
}

.hyd_detail_item_btn_more::before,
.hyd_other_item_more::before,
.hydas_more_item_cta::before,
.hydf_more_item_cta::before,
.hydex_more_item_cta::before,
.hydaz_more_item_cta::before,
.hydv_more_item_cta::before {
  content: "";
  position: absolute;
  top: 4%;
  left: -50%;
  width: 15%;
  height: 300%;
  opacity: 0;
  background: rgba(255, 255, 255, 0.9);
  transform: rotateZ(45deg) translateY(-50%);
  animation: Kiran 3s linear infinite;
}
@keyframes Kiran {
  0% {
    left: -50%;
  }
  2% {
    left: -50%;
    opacity: 1;
  }
  15% {
    left: 150%;
  }
  17%,100% {
    left: 150%;
    opacity: 0;
  }
}