/*--------------------------------------------------------------
## All Color Variable
----------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --white: #fff;
  --primary: #000;
  --secondary: #000;
  --border: rgba(0, 0, 0, 0.1);
  --secondary-font: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
## All Font Variable
----------------------------------------------------------------*/
/* End Font Integration */
body,
html {
  color: var(--secondary);
  font-family: var(--secondary-font);
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-feature-settings: "cv10" on;
  font-feature-settings: "cv10" on;
  font-variation-settings: "opsz" 32;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--primary);
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 600;
  line-height: 1.2em;
  font-family: var(--secondary-font);
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 0 0 25px 0;
  padding-left: 20px;
  list-style: square outside none;
}

ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 15px;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6em;
  margin: 0;
}

address {
  margin: 0 0 15px;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

button {
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  color: var(--primary);
}

table {
  width: 100%;
  margin-bottom: 25px;
}
table th {
  font-weight: 600;
  color: var(--secondary);
}
table td,
table th {
  border-top: 1px solid var(--border);
  padding: 11px 10px;
}

dl {
  margin-bottom: 25px;
}
dl dt {
  font-weight: 600;
}

b,
strong {
  font-weight: bold;
}

pre {
  color: var(--secondary);
  border: 1px solid var(--border);
  font-size: 18px;
  padding: 25px;
  border-radius: 5px;
}

kbd {
  font-size: 100%;
  background-color: var(--secondary);
  border-radius: 5px;
}

input,
textarea {
  color: var(--primary);
  transition: all 0.4s ease;
}

.cs_main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cs_container {
  max-width: 804px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

.cs_header {
  text-align: center;
  background-color: #fff;
}

.cs_header_title {
  color: #d20000;
  font-size: 16px;
  line-height: 1.15em;
  font-weight: 700;
}
.cs_header_title span {
  padding: 5px 60px;
  position: relative;
  display: inline-block;
}
.cs_header_title span::before, .cs_header_title span::after {
  content: "";
  height: 1px;
  width: 30px;
  background-color: #d20000;
  position: absolute;
  top: 45%;
}
.cs_header_title span::before {
  left: 0;
}
.cs_header_title span::after {
  right: 0;
}

.cs_today_date {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 700;
  color: #000;
  padding: 0 0 5px;
}

.cs_branding img {
  height: 48px;
}

.cs_footer {
  background-color: #231f20;
  text-align: center;
  color: #fff;
  padding: 5px 0;
}
.cs_footer .cs_footer_title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15em;
  margin-bottom: 7px;
}
.cs_footer .cs_countdown_timer {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15em;
}

.cs_content {
  flex: 1;
  background-color: #d20000;
  background-size: cover;
}
.cs_content .cs_container {
  height: 100%;
}

.cs_content_in {
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 100px;
}
@media (max-width: 575px) {
  .cs_content_in {
    padding-bottom: 50px;
  }
}

.cs_payment_method {
  background-color: #fff;
  box-shadow: 0 0 2px 2px #d1d1d1;
  border-top: 10px solid #231f20;
  padding: 15px;
  text-align: center;
  border-radius: 3px;
}
.cs_payment_method p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15em;
  margin-bottom: 15px;
}

.cs_card {
  background-color: #fff;
  padding: 15px;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px #d1d1d1;
  border-bottom: 10px solid #231f20;
}

.cs_card_btn_wrap {
  margin-top: 15px;
}

.cs_card_btn {
  width: 80%;
  font-size: 18px;
  display: inline-flex;
  justify-content: center;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: 900;
  background: #d20000;
  border-radius: 15px;
  color: #fff;
  border: none;
  padding: 11px 15px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .cs_card_btn {
    width: 100%;
  }
}
.cs_card_btn:hover {
  opacity: 0.8;
  color: #fff;
}

.cs_card_in .cs_card_btn::after {
  animation: class_shine__DWwPd 3s ease-in-out infinite;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  top: -80%;
  left: -200%;
  width: 150%;
  height: 500%;
  opacity: 0;
  transform: rotate(-10deg);
  background: hsla(0, 0%, 100%, 0.13);
  background: linear-gradient(90deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0) 30%, hsla(0, 0%, 100%, 0.13) 77%, hsla(0, 0%, 100%, 0.5) 92%, #fff 0, hsla(0, 0%, 100%, 0));
}

@keyframes class_shine__DWwPd {
  10% {
    opacity: 1;
    top: -30%;
    left: -200%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
  }
  to {
    opacity: 0;
    top: -30%;
    left: 100%;
    transition-property: left, top, opacity;
  }
}
.cs_card_title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.15em;
  margin-bottom: 20px;
}

.cs_card_text {
  line-height: 1.42em;
  margin-bottom: 20px;
}

.cs_card_hilight {
  margin: 0;
  line-height: 1.42em;
  font-size: 18px;
  color: red;
  font-weight: 700;
}

.cs_card_content {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 575px) {
  .cs_card_content {
    flex-direction: column-reverse;
  }
}

.cs_animated_cart {
  flex: none;
  width: 100px;
  position: relative;
}
.cs_animated_cart img {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: 20px;
  transform-origin: top;
  animation: BrandBag_rotating__JiIN5 2s ease-in-out infinite;
  left: 20%;
}

@keyframes BrandBag_rotating__JiIN5 {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.cs_hide {
  display: none !important;
}

.cs_card_btns_list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cs_card_btns_list li:not(:last-child) {
  margin-bottom: 8px;
}

.cs_card_text_2 h2 {
  font-size: 18px;
  line-height: 1.15em;
  font-weight: 400;
  color: #000;
  margin-bottom: 16px;
}
.cs_card_text_2 h3 {
  font-size: 14px;
  font-weight: 400;
  color: red;
  margin-bottom: 4px;
}

.cs_question_answer p {
  line-height: 1.42em;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.cs_question_answer_wrap {
  position: relative;
  width: 100%;
}
.cs_question_answer_wrap .cs_question_answer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.cs_question_answer_wrap .cs_question_answer .cs_question_answer_in {
  opacity: 0;
  visibility: hidden;
  position: relative;
  top: -17px;
  transition: all 0.4s ease;
}
.cs_question_answer_wrap .cs_question_answer.cs_animated_show {
  position: relative;
  z-index: 1;
}
.cs_question_answer_wrap .cs_question_answer.cs_animated_show .cs_question_answer_in {
  opacity: 1;
  visibility: visible;
  top: 0;
  transition-delay: 0.4s;
}

.cs_card_in_stape_2 h3 {
  font-size: 22px;
  margin-bottom: 20px;
  padding-top: 10px;
}
.cs_card_in_stape_2 img {
  width: 100px;
  margin-bottom: 10px;
}

.cs_down_animation {
  display: flex;
  justify-content: center;
}
.cs_down_animation svg {
  width: 20px;
  height: 22px;
  animation: 0.8s linear 0s infinite normal none running down_animation;
}

@keyframes down_animation {
  0% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(-8px);
  }
}
.cs_card_in_stape_3 h2 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 15px;
}
.cs_card_in_stape_3 p {
  font-size: 14px;
  line-height: 1.5em;
  margin-bottom: 15px;
}

.cs_product_card {
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 0 2px 2px #d1d1d1;
  padding: 15px;
}

.cs_product_card_in {
  padding: 10px;
  border: 2px dashed #f10000;
  border-radius: 5px;
  background-color: #f7f7f7;
  display: flex;
  gap: 20px;
}
@media (max-width: 575px) {
  .cs_product_card_in {
    flex-direction: column;
  }
}

.cs_product_thumb {
  padding: 10px;
  background-color: #eee;
  flex: none;
  width: 46%;
}
@media (max-width: 575px) {
  .cs_product_thumb {
    width: 100%;
  }
}

.cs_product_right {
  flex: 1;
}

.cs_product_right h3 {
  padding: 5px 0;
  margin: 0 0 20px;
  font-size: 32px;
  background-color: #f0f0f0;
  border-bottom: 2px solid #8f8f8f;
  border-top: 2px solid #8f8f8f;
}
.cs_product_right p {
  font-size: 14px;
  line-height: 1.8em;
}
.cs_product_right .cs_product_price {
  font-size: 14px;
  line-height: 1.8em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.cs_product_right .cs_product_price .cs_original_price {
  color: red;
  text-decoration: line-through;
  font-size: 16px;
}
.cs_product_right .cs_product_price .cs_offer_price {
  color: green;
  font-weight: 800;
  animation: TextModifier_heartbeat__81uAx 0.8s linear infinite;
  display: inline-block;
  font-size: 16px;
}

@keyframes TextModifier_heartbeat__81uAx {
  0% {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
.cs_instock {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.8em;
}
.cs_instock span {
  color: red;
  font-weight: 800;
}
.cs_instock .cs_instock_number {
  animation: TextModifier_blinking__xiqcX 0.8s linear infinite;
}

@keyframes TextModifier_blinking__xiqcX {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cs_content_top > * {
  margin-bottom: 20px;
}

.cs_comments_card {
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 0 2px 2px #d1d1d1;
  padding: 15px;
  border-bottom: 10px solid #231f20;
}

.cs_comments_card_in {
  padding: 20px 20px 24px;
}
@media (max-width: 575px) {
  .cs_comments_card_in {
    padding: 0;
  }
}
.cs_comments_card_in > h3 {
  font-size: 32px;
  font-weight: 700;
}

.cs_comment_input_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid #dddfe2;
  border-bottom: 1px solid #dddfe2;
}
.cs_comment_input_wrap .cs_comment_input_wrap_icons {
  display: flex;
  padding-left: 20px;
  gap: 15px;
}
.cs_comment_input_wrap .cs_comment_input_wrap_icons img {
  width: 20px;
  height: 20px;
}
.cs_comment_input_wrap .cs_comment_input_wrap_in {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
@media (max-width: 400px) {
  .cs_comment_input_wrap .cs_comment_input_wrap_in {
    flex-direction: column;
  }
}
.cs_comment_input_wrap .cs_comment_input_wrap_in > img {
  height: 32px;
  width: 32px;
  flex: none;
}
@media (max-width: 400px) {
  .cs_comment_input_wrap .cs_comment_input_wrap_in > img {
    display: none;
  }
}
.cs_comment_input_wrap .cs_comment_input_wrap_in > textarea {
  flex: 1;
  border-color: #dddfe2;
  border-radius: 18px;
  padding: 12px;
  width: 100%;
  height: 75px;
  resize: none;
  font-size: 16px;
  line-height: 1.15em;
  display: block;
  transition: all 0.3s ease;
}
@media (max-width: 400px) {
  .cs_comment_input_wrap .cs_comment_input_wrap_in > textarea {
    flex: none;
  }
}
.cs_comment_input_wrap .cs_comment_input_wrap_in .comment_btn {
  width: max-content;
  background-color: #fff;
  color: #4b4f56;
  border: 1px solid #8d949e;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  padding: 5px 10px;
}
@media (max-width: 400px) {
  .cs_comment_input_wrap .cs_comment_input_wrap_in .comment_btn {
    width: 100%;
  }
}

.cs_comment_box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cs_comment_box .cs_comment_left {
  flex: none;
}
.cs_comment_box .cs_comment_left img {
  width: 32px;
  width: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.cs_comment_list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 24px;
}
.cs_comment_list li:not(:last-child) {
  margin-bottom: 24px;
}
.cs_comment_list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 50px;
  padding-top: 25px;
}
@media (max-width: 400px) {
  .cs_comment_list ul {
    padding-left: 20px;
  }
}

.cs_comment_right {
  flex: 1;
}

.cs_comment_text {
  background: #ebedf0;
  border-radius: 18px;
  padding: 12px;
  position: relative;
}
.cs_comment_text img {
  max-height: 300px;
}
.cs_comment_text h4 {
  font-weight: 800;
}
.cs_comment_text h4,
.cs_comment_text p {
  font-size: 14px;
  line-height: 1.8em;
  margin: 0;
}

.cs_comment_imog {
  display: inline-flex;
  gap: 3px;
}
.cs_comment_imog img {
  height: 20px;
  width: 20px;
  flex: none;
}

.cs_comment_info {
  font-size: 14px;
  line-height: 1.8em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}/*# sourceMappingURL=style.css.map */