@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Roboto+Flex:opsz,wght@8..144,300;8..144,400;8..144,500;8..144,600;8..144,700&display=swap");
.sticky-popup {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99999999;
}
.sticky-popup .sticky-popup-toggler {
  padding: 1rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff731d;
  border-radius: 16px;
  margin-left: auto;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.sticky-popup .sticky-popup-toggler svg {
  fill: #fff;
}
.sticky-popup .sticky-popup-toggler .cta-text {
  display: none;
  font-family: "Outfit", "sans-serif";
  font-weight: 600;
  color: #ffffff;
  margin-right: 1rem;
  line-height: 2rem;
}
@media (min-width: 992px) {
  .sticky-popup .sticky-popup-toggler .cta-text {
    display: inline;
  }
}
.sticky-popup .sticky-popup-content {
  margin-bottom: 10px;
  padding-right: 10px;
  display: none;
}
.sticky-popup .sticky-popup-content.active {
  display: block;
}
.sticky-popup .sticky-popup-content.active a.sticky-popup-link {
  animation-name: slideUp;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.sticky-popup .sticky-popup-content a.sticky-popup-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 5px;
  opacity: 0;
  animation-fill-mode: forwards;
}
.sticky-popup .sticky-popup-content a.sticky-popup-link:nth-of-type(1) {
  animation-delay: 0.5s;
}
.sticky-popup .sticky-popup-content a.sticky-popup-link:nth-of-type(2) {
  animation-delay: 0.4s;
}
.sticky-popup .sticky-popup-content a.sticky-popup-link:nth-of-type(3) {
  animation-delay: 0.3s;
}
.sticky-popup .sticky-popup-content a.sticky-popup-link:nth-of-type(4) {
  animation-delay: 0.2s;
}
.sticky-popup .sticky-popup-content a.sticky-popup-link:nth-of-type(5) {
  animation-delay: 0.1s;
}
.sticky-popup .sticky-popup-content a.sticky-popup-link:hover .sticky-popup-link-text {
  background-color: #fff;
  color: #ff731d;
}
.sticky-popup .sticky-popup-content a.sticky-popup-link:hover .sticky-popup-link-icon {
  background-color: #fff;
}
.sticky-popup .sticky-popup-content a.sticky-popup-link:hover .sticky-popup-link-icon svg {
  fill: #ff731d;
}
.sticky-popup .sticky-popup-content a.sticky-popup-link .sticky-popup-link-text {
  background-color: #ff731d;
  color: #fff;
  padding: 3px 10px;
  font-size: 15px;
  line-height: 17px;
  border-radius: 6px;
  margin-right: 10px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  transition: 0.3s linear;
}
.sticky-popup .sticky-popup-content a.sticky-popup-link .sticky-popup-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ff731d;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  transition: 0.3s linear;
}
.sticky-popup .sticky-popup-content a.sticky-popup-link .sticky-popup-link-icon svg {
  transition: 0.3s linear;
  fill: #fff;
}

.animation {
  opacity: 0;
  position: relative;
  animation-fill-mode: forwards;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.slideLeft {
  animation-name: slideLeft;
  animation-duration: 1s;
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.slideRight {
  animation-name: slideRight;
  animation-duration: 1s;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slideUp {
  animation-name: slideUp;
  animation-duration: 1s;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.slideDown {
  animation-name: slideDown;
  animation-duration: 1s;
}

@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
}

* {
  margin: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

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

html {
  font-size: 10px;
  line-height: 1.2;
}
html.scroll_off {
  overflow-y: hidden;
}
@media (min-width: 992px) {
  html.scroll_off {
    overflow-y: auto;
  }
}

body {
  font-family: "Roboto Flex", "sans-serif";
  font-size: 1.6rem;
  color: #000000;
  background-color: #eeeeee;
  font-weight: 300;
}

main.adds-margin-top {
  margin-top: 8.5rem;
}
@media (min-width: 576px) {
  main.adds-margin-top {
    margin-top: 10rem;
  }
}
@media (min-width: 1265px) {
  main.adds-margin-top {
    margin-top: 17.73rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.6rem;
}

.list-unstyled {
  list-style: none;
  padding-left: 0px;
}

p {
  margin-bottom: 1rem;
  font-weight: 300;
}

strong {
  font-weight: 700;
}

a {
  color: #000;
  text-decoration: none;
}

.img-placeholder {
  position: relative;
  display: block;
}
.img-placeholder:after {
  content: "";
  display: block;
  padding-top: 100%;
}
.img-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 79, 60, 0.6);
  z-index: 10000;
  display: none;
}
.modal .modal-wrapper {
  width: 100%;
  height: 100%;
}
.modal .modal-wrapper .modal-inner {
  background-color: #fff;
  flex: 0 0 500px;
  width: 500px;
  max-width: 90%;
  border-radius: 20px;
}
.modal .modal-wrapper .modal-inner .modal-header {
  padding: 10px 20px;
}
.modal .modal-wrapper .modal-inner .modal-header .modal-title {
  font-size: 24px;
  line-height: 1.2;
}
.modal .modal-wrapper .modal-inner .modal-body {
  padding: 20px;
  max-height: 90vh;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .modal .modal-wrapper .modal-inner .modal-body .form-control {
    line-height: 4rem;
  }
}
@media (min-width: 768px) {
  .modal .modal-wrapper .modal-inner .modal-body .form-group {
    margin-bottom: 1rem;
  }
}
.modal .modal-wrapper .modal-inner .fake-input {
  line-height: 4rem;
  border: 2px solid #d9d9d9;
  font-size: 1.4rem;
  padding: 0 2.5rem;
  border-radius: 9px;
}
@media (min-width: 768px) {
  .modal .modal-wrapper .modal-inner .fake-input {
    font-size: 1.6rem;
  }
}
.modal .modal-wrapper .modal-inner button {
  border: none;
  cursor: pointer;
}
.modal .modal-wrapper .modal-inner .modal-close {
  cursor: pointer;
}
.modal .thankyou-icon,
.modal .error-icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
}
.modal .thankyou-icon svg,
.modal .error-icon svg {
  fill: #fff;
}
.modal .thankyou-icon {
  background-color: #1f4f3c;
}
.modal .error-icon {
  background-color: red;
}

.page_title {
  font-family: "Outfit", "sans-serif";
  font-size: 3rem;
  line-height: 4rem;
  font-weight: 600;
  letter-spacing: 0.35px;
  color: #212121;
}
@media (min-width: 768px) {
  .page_title {
    font-size: 3.5rem;
  }
}

.section_title {
  font-family: "Outfit", "sans-serif";
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 3rem;
  letter-spacing: 0.35px;
}
@media (min-width: 992px) {
  .section_title {
    font-size: 3rem;
    line-height: 3.4rem;
  }
}
@media (min-width: 1265px) {
  .section_title {
    font-size: 3.5rem;
    line-height: 3.9rem;
  }
}

.footer_menu_title {
  font-family: "Outfit", "sans-serif";
  font-size: 2rem;
  line-height: 2.2rem;
}

.hero_title {
  font-size: 2.8rem;
  line-height: 3rem;
  font-family: "Outfit", "sans-serif";
  font-weight: 600;
  color: #212121;
}
@media (min-width: 576px) {
  .hero_title {
    font-size: 3.2rem;
    line-height: 4rem;
  }
}
@media (min-width: 768px) {
  .hero_title {
    font-size: 3.5rem;
    line-height: 4.4rem;
  }
}
@media (min-width: 992px) {
  .hero_title {
    font-size: 4.5rem;
    line-height: 5.4rem;
  }
}
@media (min-width: 1265px) {
  .hero_title {
    font-size: 6.5rem;
    line-height: 7.4rem;
  }
}

.hero_desc {
  font-size: 1.6rem;
  line-height: 2rem;
}
@media (min-width: 1265px) {
  .hero_desc {
    font-size: 1.8rem;
    line-height: 2.5rem;
    color: #212121;
  }
}

.hero_btn {
  color: #ffffff;
  font-size: 1.4rem;
  font-family: "Outfit", "sans-serif";
  font-weight: 700;
}
@media (min-width: 992px) {
  .hero_btn {
    font-size: 1.6rem;
  }
}

.content_category_title {
  font-family: "Outfit", "sans-serif";
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 600;
  letter-spacing: 0.44px;
  color: #212121;
}
@media (min-width: 576px) {
  .content_category_title {
    font-size: 1.7rem;
    line-height: 3rem;
  }
}
@media (min-width: 1265px) {
  .content_category_title {
    font-size: 2.2rem;
    line-height: 3.7rem;
  }
}
.content_category_title a {
  font-family: "Outfit", "sans-serif";
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 600;
  letter-spacing: 0.44px;
  color: #212121;
}
@media (min-width: 576px) {
  .content_category_title a {
    font-size: 1.7rem;
    line-height: 3rem;
  }
}
@media (min-width: 1265px) {
  .content_category_title a {
    font-size: 2.2rem;
    line-height: 3.7rem;
  }
}

.left_label {
  font-family: "Outfit", "sans-serif";
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1rem;
  letter-spacing: 0.14px;
  color: #ffffff;
}

.content_product_title {
  font-family: "Outfit", "sans-serif";
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.1rem;
  letter-spacing: 0.16px;
  color: #000000;
}
.content_product_title a {
  font-family: "Outfit", "sans-serif";
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.1rem;
  letter-spacing: 0.16px;
  color: #000000;
}
.content_product_price_type {
  color: #273085;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.65rem;
}

.content_product_price_reg {
  color: #0c1571;
  text-align: right;
  font-family: "Outfit", "sans-serif";
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.1rem;
  letter-spacing: 0.16px;
}

.content_product_price_acc {
  color: #ff731d;
  text-align: right;
  font-family: "Outfit", "sans-serif";
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.1rem;
  letter-spacing: 0.18px;
}

.content_product_price_del {
  color: #0c1571;
  text-align: right;
  font-family: "Outfit", "sans-serif";
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2.1rem;
  letter-spacing: 0.12px;
  text-decoration: line-through;
}

.content_product_add_to_cart {
  display: block;
  border-radius: 6px;
  width: 100%;
  padding: 1.2rem;
  text-align: center;
  background-color: #424dbf;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 600;
  font-family: "Outfit", "sans-serif";
  letter-spacing: 0.36px;
  color: #ffffff;
  box-shadow: none;
  border: none;
}
.content_product_add_to_cart::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 120%;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 0;
  top: 0;
  transform: skewX(20deg) translate(-100%);
  left: -100%;
  transition: linear 0.5s;
}
.content_product_add_to_cart:hover::before {
  opacity: 1;
  left: 100%;
  transform: skewX(20deg) translate(100%);
}
@media (min-width: 992px) {
  .content_product_add_to_cart {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
}

.content_product_add_to_fav {
  cursor: pointer;
}
@media (min-width: 992px) {
  .content_product_add_to_fav:hover .icon svg {
    fill: #ff731d;
  }
}
.content_product_add_to_fav:hover .add_tool_tip {
  display: flex;
}
.content_product_add_to_fav.added_to_wishlist:hover .remove_tool_tip {
  display: flex;
}
.content_product_add_to_fav .tool_tip {
  display: none;
  background-color: #ff731d;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  border-radius: 4px;
  position: absolute;
  bottom: calc(100% + 0.2rem);
  right: 0;
  min-width: 50px;
  font-size: 1rem;
  line-height: 1.2rem;
  z-index: 200;
  white-space: nowrap;
}
.content_product_add_to_fav.added_to_wishlist .icon svg {
  fill: #ff731d;
}

.content_service_title {
  font-family: "Outfit", "sans-serif";
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.22px;
  color: #212121;
}
@media (min-width: 1265px) {
  .content_service_title {
    font-size: 2.2rem;
    line-height: 2.55rem;
  }
}
.content_service_title a {
  font-family: "Outfit", "sans-serif";
  font-size: 2rem;
  line-height: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.22px;
  color: #212121;
}
@media (min-width: 1265px) {
  .content_service_title a {
    font-size: 2.2rem;
    line-height: 2.55rem;
  }
}

.content_service_desc {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2rem;
  color: #000000;
}

.content_testimonial_title {
  font-family: "Outfit", "sans-serif";
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.55rem;
  letter-spacing: 0.36px;
  color: #212121;
}

.content_testimonial_desc {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2rem;
  letter-spacing: -0.18px;
}
@media (min-width: 1265px) {
  .content_testimonial_desc {
    font-size: 1.8rem;
    line-height: 2.55rem;
  }
}

.content_testimonial_date {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2.55rem;
  letter-spacing: 0.24px;
}

.single_product_title {
  color: #0c1571;
  font-family: "Outfit", "sans-serif";
  font-weight: 600;
  letter-spacing: 0.33px;
  font-size: 2.4rem;
  line-height: 3rem;
}
@media (min-width: 992px) {
  .single_product_title {
    font-size: 2.6rem;
    line-height: 3rem;
  }
}
@media (min-width: 1265px) {
  .single_product_title {
    font-size: 3.3rem;
    line-height: 3.95rem;
  }
}

.breadcrumbs_wrapper {
  padding: 1rem 0 2rem;
}
@media (min-width: 1265px) {
  .breadcrumbs_wrapper {
    padding: 2rem 0 4.5rem;
  }
}
.breadcrumbs_wrapper .breadcrumbs {
  display: flex;
  align-items: center;
}
.breadcrumbs_wrapper .breadcrumbs p {
  margin-bottom: unset;
  font-size: 1.2rem;
  line-height: 1.4rem;
}
.breadcrumbs_wrapper .breadcrumbs ol {
  padding: 0;
}
.breadcrumbs_wrapper .breadcrumbs li {
  margin-right: 0.5rem;
}
.breadcrumbs_wrapper .breadcrumbs li::after {
  margin-right: 0.5rem;
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.4rem;
}
.breadcrumbs_wrapper .breadcrumbs li a {
  margin-right: 0;
  color: #000000;
  line-height: 1.4rem;
  font-size: 1.2rem;
}
.breadcrumbs_wrapper .breadcrumbs li span {
  margin-right: 0.5rem;
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.4rem;
}

.pagination {
  flex: 0 0 100%;
  width: 100%;
}

ul.pagination {
  margin-inline: auto;
  padding: 30px 40px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 280px;
  position: relative;
  list-style: none;
}
ul.pagination li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.4rem;
  flex: 0 0 3.5rem;
  width: 3.5rem;
  height: 3.5rem;
  font-family: "Outfit", "sans-serif";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #8b8b8b;
  cursor: pointer;
  border: 1px solid #273085;
}
@media (min-width: 992px) {
  ul.pagination li {
    font-size: 1.8rem;
    line-height: 2.74rem;
  }
}
ul.pagination li:not(:last-of-type) {
  border-right: none;
}
ul.pagination li:hover {
  color: #ffffff;
  background-color: #273085;
}
ul.pagination li.current, ul.pagination li:hover {
  background-color: #273085;
  color: #ffffff;
}
ul.pagination li.current {
  background-color: #273085;
  color: #ffffff;
}
ul.pagination li span,
ul.pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.pagination li span.current {
  background-color: #273085;
  color: #ffffff;
}

/*.custom-accordion {
  .accordion-item {
    &.active {
      .accordion-data {
        display: block !important;
      }
    }
  }
}*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 77, 191, 0.2);
  z-index: 70000;
  display: none;
}
.modal.grade_modal .modal-wrapper .grade-modal-inner {
  background-color: #fff;
  flex: 0 0 500px;
  width: 500px;
  max-width: 90%;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .modal.grade_modal .modal-wrapper .grade-modal-inner .modal-body .form-group {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1265px) {
  .modal.grade_modal .modal-wrapper .grade-modal-inner .modal-body .form-group {
    margin-bottom: 2.6rem;
  }
}
@media (min-width: 768px) {
  .modal.grade_modal .modal-wrapper .grade-modal-inner .modal-body .form-group .form-control {
    line-height: 4rem;
  }
}
@media (min-width: 1265px) {
  .modal.grade_modal .modal-wrapper .grade-modal-inner .modal-body .form-group .form-control {
    line-height: 6rem;
  }
}
.modal .modal-wrapper {
  width: 100%;
  height: 100%;
}
.modal .modal-wrapper .modal-inner,
.modal .modal-wrapper .grade-modal-inner {
  background-color: #fff;
  flex: 0 0 500px;
  width: 500px;
  max-width: 90%;
  border-radius: 20px;
}
.modal .modal-wrapper .modal-inner .modal-header,
.modal .modal-wrapper .grade-modal-inner .modal-header {
  padding: 10px 20px;
}
.modal .modal-wrapper .modal-inner .modal-header .modal-title,
.modal .modal-wrapper .grade-modal-inner .modal-header .modal-title {
  font-size: 24px;
  line-height: 1.2;
}
.modal .modal-wrapper .modal-inner .modal-body,
.modal .modal-wrapper .grade-modal-inner .modal-body {
  padding: 20px;
  max-height: 90vh;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .modal .modal-wrapper .modal-inner .modal-body .form-control,
  .modal .modal-wrapper .grade-modal-inner .modal-body .form-control {
    line-height: 4rem;
  }
}
@media (min-width: 768px) {
  .modal .modal-wrapper .modal-inner .modal-body .form-group,
  .modal .modal-wrapper .grade-modal-inner .modal-body .form-group {
    margin-bottom: 1rem;
  }
}
.modal .modal-wrapper .modal-inner .fake-input,
.modal .modal-wrapper .grade-modal-inner .fake-input {
  line-height: 4rem;
  border: 2px solid #d9d9d9;
  font-size: 1.4rem;
  padding: 0 2.5rem;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .modal .modal-wrapper .modal-inner .fake-input,
  .modal .modal-wrapper .grade-modal-inner .fake-input {
    font-size: 1.6rem;
  }
}
.modal .modal-wrapper .modal-inner button,
.modal .modal-wrapper .grade-modal-inner button {
  border: none;
  cursor: pointer;
}
.modal .modal-wrapper .modal-inner button.modal-close,
.modal .modal-wrapper .grade-modal-inner button.modal-close {
  padding: 1rem 2rem;
  background-color: #424dbf;
  border-radius: 8px;
}
.modal .modal-wrapper .modal-inner a.modal-close,
.modal .modal-wrapper .grade-modal-inner a.modal-close {
  margin-right: 2rem;
  color: #ff731d;
  font-size: 1.6rem;
}
.modal .modal-wrapper .modal-inner .modal-close,
.modal .modal-wrapper .grade-modal-inner .modal-close {
  cursor: pointer;
}
.modal .thankyou-icon,
.modal .error-icon,
.modal .warning-icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
}
.modal .thankyou-icon svg,
.modal .error-icon svg,
.modal .warning-icon svg {
  fill: #fff;
}
.modal .thankyou-icon {
  background-color: #ff731d;
}
.modal .error-icon {
  background-color: #ff4b51;
}
.modal .warning-icon {
  background-color: #fd7944;
}

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: url(../img/preloader2.gif) center no-repeat #fff;
  text-align: center;
}

.grecaptcha-badge {
  display: none;
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.position-relative {
  position: relative;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

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

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-static {
  position: static;
}

.position-fixed {
  position: fixed;
}

.btn-secondary, .btn-light, .btn-dark, .btn-white, .btn-info, .btn-warning-light, .btn-warning, .btn-danger, .btn-primary {
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: 0.2s linear;
  font-size: 1.4rem;
  line-height: 1.8rem;
  letter-spacing: 0.19px;
  border-radius: 3rem;
}

.btn-block {
  display: block;
}

.btn-primary {
  background-color: #424dbf;
  color: #fff !important;
}
.btn-primary:hover {
  background-color: #343d9a;
  color: #fff !important;
}

.bg-primary {
  background-color: #424dbf;
}

.text-primary {
  color: #424dbf !important;
}

.btn-danger {
  background-color: #ff4b51;
  color: #fff !important;
}
.btn-danger:hover {
  background-color: #ff1820;
  color: #fff !important;
}

.bg-danger {
  background-color: #ff4b51;
}

.text-danger {
  color: #ff4b51 !important;
}

.btn-warning {
  background-color: #fd7944;
  color: #000 !important;
}
.btn-warning:hover {
  background-color: #fc5512;
  color: #fff !important;
}

.bg-warning {
  background-color: #fd7944;
}

.text-warning {
  color: #fd7944 !important;
}

.btn-warning-light {
  background-color: #ffd77f;
  color: #000 !important;
}
.btn-warning-light:hover {
  background-color: #ffc74c;
  color: #000 !important;
}

.bg-warning-light {
  background-color: #ffd77f;
}

.text-warning-light {
  color: #ffd77f !important;
}

.btn-info {
  background-color: #7969e6;
  color: #fff !important;
}
.btn-info:hover {
  background-color: #523ddf;
  color: #fff !important;
}

.bg-info {
  background-color: #7969e6;
}

.text-info {
  color: #7969e6 !important;
}

.btn-white {
  background-color: #ffffff;
  color: #000 !important;
}
.btn-white:hover {
  background-color: #e6e6e6;
  color: #000 !important;
}

.bg-white {
  background-color: #ffffff;
}

.text-white {
  color: #ffffff !important;
}

.btn-dark {
  background-color: #20273c;
  color: #fff !important;
}
.btn-dark:hover {
  background-color: #0e111b;
  color: #fff !important;
}

.bg-dark {
  background-color: #20273c;
}

.text-dark {
  color: #20273c !important;
}

.btn-light {
  background-color: rgba(200, 200, 200, 0.15);
  color: #000 !important;
}
.btn-light:hover {
  background-color: rgba(175, 175, 175, 0.15);
  color: #000 !important;
}

.bg-light {
  background-color: rgba(200, 200, 200, 0.15);
}

.text-light {
  color: rgba(200, 200, 200, 0.15) !important;
}

.btn-secondary {
  background-color: #273085;
  color: #fff !important;
}
.btn-secondary:hover {
  background-color: #1b225e;
  color: #fff !important;
}

.bg-secondary {
  background-color: #273085;
}

.text-secondary {
  color: #273085 !important;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.row > [class*=col-] {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.row.no-gutters {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.row.no-gutters > [class*=col-] {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.container,
.container-fluid {
  width: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.align-items-stretch {
  align-items: stretch;
}

.align-content-start {
  align-content: flex-start;
}

.align-content-end {
  align-content: flex-end;
}

.align-content-center {
  align-content: center;
}

.align-content-stretch {
  align-content: stretch;
}

.align-content-between {
  align-content: space-between;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

@media (min-width: 450px) {
  .col-xm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-xm-none {
    display: none !important;
  }
  .d-xm-block {
    display: block !important;
  }
  .d-xm-flex {
    display: flex !important;
  }
  .d-xm-inline-block {
    display: inline-block !important;
  }
  .d-xm-inline-flex {
    display: inline-flex !important;
  }
  .flex-xm-wrap {
    flex-wrap: wrap;
  }
  .flex-xm-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xm-row {
    flex-direction: row;
  }
  .flex-xm-column {
    flex-direction: column;
  }
  .align-items-xm-start {
    align-items: flex-start;
  }
  .align-items-xm-end {
    align-items: flex-end;
  }
  .align-items-xm-center {
    align-items: center;
  }
  .align-items-xm-stretch {
    align-items: stretch;
  }
  .align-content-xm-start {
    align-content: flex-start;
  }
  .align-content-xm-end {
    align-content: flex-end;
  }
  .align-content-xm-center {
    align-content: center;
  }
  .align-content-xm-stretch {
    align-content: stretch;
  }
  .align-content-xm-between {
    align-content: space-between;
  }
  .justify-content-xm-start {
    justify-content: flex-start;
  }
  .justify-content-xm-end {
    justify-content: flex-end;
  }
  .justify-content-xm-center {
    justify-content: center;
  }
  .justify-content-xm-between {
    justify-content: space-between;
  }
  .justify-content-xm-around {
    justify-content: space-around;
  }
}
@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap;
  }
  .flex-sm-row {
    flex-direction: row;
  }
  .flex-sm-column {
    flex-direction: column;
  }
  .align-items-sm-start {
    align-items: flex-start;
  }
  .align-items-sm-end {
    align-items: flex-end;
  }
  .align-items-sm-center {
    align-items: center;
  }
  .align-items-sm-stretch {
    align-items: stretch;
  }
  .align-content-sm-start {
    align-content: flex-start;
  }
  .align-content-sm-end {
    align-content: flex-end;
  }
  .align-content-sm-center {
    align-content: center;
  }
  .align-content-sm-stretch {
    align-content: stretch;
  }
  .align-content-sm-between {
    align-content: space-between;
  }
  .justify-content-sm-start {
    justify-content: flex-start;
  }
  .justify-content-sm-end {
    justify-content: flex-end;
  }
  .justify-content-sm-center {
    justify-content: center;
  }
  .justify-content-sm-between {
    justify-content: space-between;
  }
  .justify-content-sm-around {
    justify-content: space-around;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 740px;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap;
  }
  .flex-md-row {
    flex-direction: row;
  }
  .flex-md-column {
    flex-direction: column;
  }
  .align-items-md-start {
    align-items: flex-start;
  }
  .align-items-md-end {
    align-items: flex-end;
  }
  .align-items-md-center {
    align-items: center;
  }
  .align-items-md-stretch {
    align-items: stretch;
  }
  .align-content-md-start {
    align-content: flex-start;
  }
  .align-content-md-end {
    align-content: flex-end;
  }
  .align-content-md-center {
    align-content: center;
  }
  .align-content-md-stretch {
    align-content: stretch;
  }
  .align-content-md-between {
    align-content: space-between;
  }
  .justify-content-md-start {
    justify-content: flex-start;
  }
  .justify-content-md-end {
    justify-content: flex-end;
  }
  .justify-content-md-center {
    justify-content: center;
  }
  .justify-content-md-between {
    justify-content: space-between;
  }
  .justify-content-md-around {
    justify-content: space-around;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap;
  }
  .flex-lg-row {
    flex-direction: row;
  }
  .flex-lg-column {
    flex-direction: column;
  }
  .align-items-lg-start {
    align-items: flex-start;
  }
  .align-items-lg-end {
    align-items: flex-end;
  }
  .align-items-lg-center {
    align-items: center;
  }
  .align-items-lg-stretch {
    align-items: stretch;
  }
  .align-content-lg-start {
    align-content: flex-start;
  }
  .align-content-lg-end {
    align-content: flex-end;
  }
  .align-content-lg-center {
    align-content: center;
  }
  .align-content-lg-stretch {
    align-content: stretch;
  }
  .align-content-lg-between {
    align-content: space-between;
  }
  .justify-content-lg-start {
    justify-content: flex-start;
  }
  .justify-content-lg-end {
    justify-content: flex-end;
  }
  .justify-content-lg-center {
    justify-content: center;
  }
  .justify-content-lg-between {
    justify-content: space-between;
  }
  .justify-content-lg-around {
    justify-content: space-around;
  }
}
@media (min-width: 1265px) {
  .container {
    max-width: 1260px;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xl-row {
    flex-direction: row;
  }
  .flex-xl-column {
    flex-direction: column;
  }
  .align-items-xl-start {
    align-items: flex-start;
  }
  .align-items-xl-end {
    align-items: flex-end;
  }
  .align-items-xl-center {
    align-items: center;
  }
  .align-items-xl-stretch {
    align-items: stretch;
  }
  .align-content-xl-start {
    align-content: flex-start;
  }
  .align-content-xl-end {
    align-content: flex-end;
  }
  .align-content-xl-center {
    align-content: center;
  }
  .align-content-xl-stretch {
    align-content: stretch;
  }
  .align-content-xl-between {
    align-content: space-between;
  }
  .justify-content-xl-start {
    justify-content: flex-start;
  }
  .justify-content-xl-end {
    justify-content: flex-end;
  }
  .justify-content-xl-center {
    justify-content: center;
  }
  .justify-content-xl-between {
    justify-content: space-between;
  }
  .justify-content-xl-around {
    justify-content: space-around;
  }
}
@media (min-width: 1450px) {
  .container {
    max-width: 1400px;
  }
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xxl-row {
    flex-direction: row;
  }
  .flex-xxl-column {
    flex-direction: column;
  }
  .align-items-xxl-start {
    align-items: flex-start;
  }
  .align-items-xxl-end {
    align-items: flex-end;
  }
  .align-items-xxl-center {
    align-items: center;
  }
  .align-items-xxl-stretch {
    align-items: stretch;
  }
  .align-content-xxl-start {
    align-content: flex-start;
  }
  .align-content-xxl-end {
    align-content: flex-end;
  }
  .align-content-xxl-center {
    align-content: center;
  }
  .align-content-xxl-stretch {
    align-content: stretch;
  }
  .align-content-xxl-between {
    align-content: space-between;
  }
  .justify-content-xxl-start {
    justify-content: flex-start;
  }
  .justify-content-xxl-end {
    justify-content: flex-end;
  }
  .justify-content-xxl-center {
    justify-content: center;
  }
  .justify-content-xxl-between {
    justify-content: space-between;
  }
  .justify-content-xxl-around {
    justify-content: space-around;
  }
}
.form-group {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .form-group {
    margin-bottom: 3rem;
  }
}

.input-group {
  display: flex;
  width: 100%;
  min-width: 1px;
}
.input-group input {
  border-right: none !important;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  flex: 0 1 100%;
  min-width: 1px;
}
.input-group .input-group-append .btn {
  height: 100%;
  border-radius: 0;
  font-size: 1.3rem;
}
.input-group .input-group-append .text {
  height: 100%;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  border: 2px solid #d9d9d9;
  border-left: none;
  border-radius: 0 9px 9px 0;
  padding: 0 1rem;
  font-size: 1.4rem;
  color: #a6a6a6;
}
.input-group .input-group-append .text:before {
  content: "";
  width: 1px;
  height: 60%;
  top: 20%;
  background-color: #a6a6a6;
  left: 0;
  position: absolute;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.form-control {
  height: auto;
  line-height: 4.5rem;
  transition: 0.2s linear;
  flex: 0 1 100%;
  max-width: 100%;
  width: 100%;
  display: block;
  font-size: 1.4rem;
  border: none;
  border-radius: 9px;
  padding: 0 15px;
  background-color: #fff;
  border: 2px solid #d9d9d9;
  font-weight: 600;
  color: #424dbf;
}
@media (min-width: 768px) {
  .form-control {
    line-height: 5rem;
    padding: 0 2.5rem;
    font-size: 1.6rem;
  }
}
.form-control::placeholder {
  opacity: 1;
  color: #a6a6a6;
  font-weight: 400;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .form-control::placeholder {
    font-size: 1.6rem;
  }
}
.form-control[type=number] {
  appearance: textfield;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}
@media (min-width: 768px) {
  .form-control[type=number] {
    text-align: right;
  }
}
.form-control::-webkit-outer-spin-button, .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-control.is-invalid {
  border: 1px solid #c92327;
  box-shadow: 0 0 3px #c92327;
}
.form-control.is-valid {
  border: 1px solid #04d967;
  box-shadow: 0 0 3px #04d967;
}
.form-control:focus {
  outline: none;
}

.invalid-feedback {
  padding: 1rem 0 0;
  color: #c92327;
}

.error {
  color: #c92327;
  font-size: 1.4rem;
  font-style: italic;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}

.label-text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: -0.26px;
  color: #a6a6a6;
}
@media (min-width: 768px) {
  .label-text {
    font-size: 1.6rem;
  }
}

.fake-radio,
.fake-checkbox {
  width: 22px;
  flex: 0 0 22px;
  height: 22px;
  border-radius: 60%;
  margin-right: 1rem;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #424dbf;
  cursor: pointer;
}
.fake-radio:after,
.fake-checkbox:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 20px;
  font-size: 1.3rem !important;
  color: #424dbf;
}

.fake-checkbox {
  border-radius: 4px !important;
}

.radio-label {
  cursor: pointer;
  margin-bottom: 0;
}

input[type=checkbox]:checked + .fake-checkbox::after {
  background-image: url(img/check.png);
  color: #7969e6;
  font-weight: bolder;
}

input[type=radio]:checked + .fake-radio::after {
  background-image: url(img/check.png);
  color: #7969e6;
  font-weight: bolder;
}

input[type=checkbox]:checked ~ .checkbox-text {
  color: #20273c !important;
}

input[type=radio]:checked ~ .radio-text {
  color: #20273c !important;
}

.header {
  position: relative;
  z-index: 100000;
}
.header.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
}
.header.header-fixed-slide-up {
  transition: ease-out 0.3s;
  transform: translateY(-100%);
}
.header.header-fixed-slide-down {
  transform: translateY(0);
  transition: ease-out 0.3s;
}
.header .header-offer {
  padding: 0.7rem 0;
  background-color: #ff731d;
  color: #ffffff;
  font-weight: 500;
}
.header .header-offer .offer-msg {
  font-weight: 600;
}
.header .header-offer .header-offer-counter {
  margin-bottom: 0;
}
.header .header-offer .header-offer-counter span {
  display: inline-block;
  font-weight: 600;
  padding-inline: 0.5rem;
}
.header .header-offer .header-offer-counter span:nth-of-type(2n) {
  border-right: 2px solid #000000;
}
.header .header-offer .header-offer-counter span:last-of-type {
  border-right: unset;
}
.header .header_top {
  padding: 0.8rem 0;
  background-color: #273085;
}
@media (min-width: 992px) {
  .header .header_top {
    padding: 1.2rem 0;
  }
}
.header .header_top .flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header_top .left_info {
  display: flex;
  align-items: center;
}
.header .header_top .left_info a {
  margin-right: 0.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  font-family: "Roboto Flex", "sans-serif";
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.3rem;
  letter-spacing: 0.26px;
}
.header .header_top .left_info a:last-of-type span.txt {
  border-right: none;
}
@media (min-width: 992px) {
  .header .header_top .left_info a {
    margin-right: 2rem;
    font-size: 1.3rem;
    line-height: 1.5rem;
  }
}
.header .header_top .left_info a span.txt {
  display: block;
  padding-right: 0.5rem;
  border-right: 1px solid #ffffff;
}
@media (min-width: 992px) {
  .header .header_top .left_info a span.txt {
    padding-right: 2rem;
  }
}
.header .header_top .left_info a span.link_icon {
  display: block;
  margin-right: 0.5rem;
}
@media (min-width: 992px) {
  .header .header_top .left_info a span.link_icon {
    margin-right: 1rem;
  }
}
.header .header_top .left_info a span.link_icon svg {
  fill: white;
}
.header .header_top .currency_switcher {
  position: relative;
}
.header .header_top .currency_switcher .currency_toggler {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.header .header_top .currency_switcher .currency_toggler.active .chv svg {
  transform: rotateX(180deg);
}
.header .header_top .currency_switcher .currency_toggler p {
  margin-bottom: 0;
  margin-right: 1rem;
  color: #ffffff;
  font-family: "Roboto Flex", "sans-serif";
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.5rem;
  letter-spacing: 0.26px;
}
.header .header_top .currency_switcher .currency_toggler .chv {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .header_top .currency_switcher .currency_toggler .chv svg {
  fill: #ffffff;
  transition: ease-in-out 0.3s;
}
.header .header_top .currency_switcher .currency_list {
  display: none;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100%;
  border-radius: 8px;
  padding: 1rem;
  background-color: #273085;
  z-index: 3;
}
.header .header_top .currency_switcher .currency_list li {
  color: #ffffff;
  font-family: "Roboto Flex", "sans-serif";
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 3rem;
  letter-spacing: 0.26px;
  cursor: pointer;
}
.header .header_middle {
  padding: 0.8rem 0;
  background-color: #424dbf;
}
.header .header_middle .flex_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header_middle .flex_wrapper .logo,
.header .header_middle .flex_wrapper .custom-logo-link {
  flex: 0 0 35%;
  width: 35%;
  max-width: 10.1rem;
}
@media (min-width: 576px) {
  .header .header_middle .flex_wrapper .logo,
  .header .header_middle .flex_wrapper .custom-logo-link {
    max-width: 15.3rem;
  }
}
@media (min-width: 1265px) {
  .header .header_middle .flex_wrapper .logo,
  .header .header_middle .flex_wrapper .custom-logo-link {
    max-width: 20.3rem;
  }
}
.header .header_middle .flex_wrapper .header_middle_search {
  display: none;
}
@media (min-width: 992px) {
  .header .header_middle .flex_wrapper .header_middle_search {
    display: block;
    flex: 1;
    max-width: 300px;
    margin-left: auto;
  }
}
@media (min-width: 1265px) {
  .header .header_middle .flex_wrapper .header_middle_search {
    max-width: 483px;
  }
}
.header .header_middle .flex_wrapper .actions {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .header .header_middle .flex_wrapper .actions {
    flex: 0 0 auto;
    width: auto;
    margin-left: auto;
  }
}
.header .header_middle .flex_wrapper .actions .action_btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .header .header_middle .flex_wrapper .actions .action_btn:first-of-type {
    margin-left: 0;
  }
}
.header .header_middle .flex_wrapper .actions .action_btn.cart span.icon {
  position: relative;
}
.header .header_middle .flex_wrapper .actions .action_btn.cart span.icon .cart_dot {
  background-color: #00abe5;
  padding: 0.2rem;
  border-radius: 50%;
  position: absolute;
  top: 0%;
  right: 0;
  transform: translate(50%, -50%);
  display: block;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .header .header_middle .flex_wrapper .actions .action_btn {
    margin-left: 4rem;
  }
}
@media (min-width: 1265px) {
  .header .header_middle .flex_wrapper .actions .action_btn {
    margin-left: 5.3rem;
  }
}
.header .header_middle .flex_wrapper .actions .action_btn span.icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .header .header_middle .flex_wrapper .actions .action_btn span.icon {
    margin-right: 0.8rem;
  }
}
@media (min-width: 1265px) {
  .header .header_middle .flex_wrapper .actions .action_btn span.icon {
    margin-right: 1.2rem;
  }
}
.header .header_middle .flex_wrapper .actions .action_btn span.icon svg {
  fill: #ffffff;
}
.header .header_middle .flex_wrapper .actions .action_btn span.txt {
  display: none;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.3px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .header .header_middle .flex_wrapper .actions .action_btn span.txt {
    display: block;
  }
}
.header .header_middle .flex_wrapper .actions .toggle-menu {
  padding: 0;
  flex: 0 0 3rem;
  width: 3rem;
  height: 2.4rem;
  background-color: transparent;
  box-shadow: none;
  border: none;
}
@media (min-width: 992px) {
  .header .header_middle .flex_wrapper .actions .toggle-menu {
    display: none !important;
  }
}
.header .header_middle .flex_wrapper .actions .toggle-menu.active div.bars span.bar {
  background-color: #ffffff;
}
.header .header_middle .flex_wrapper .actions .toggle-menu.active div.bars span.bar:nth-of-type(1) {
  margin-bottom: unset;
  margin: 1px 0 -2px !important;
  transform: rotateZ(45deg);
}
.header .header_middle .flex_wrapper .actions .toggle-menu.active div.bars span.bar:nth-of-type(2) {
  display: none;
}
.header .header_middle .flex_wrapper .actions .toggle-menu.active div.bars span.bar:last-of-type {
  transform: rotateZ(-45deg);
}
.header .header_middle .flex_wrapper .actions .toggle-menu div.bars {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.header .header_middle .flex_wrapper .actions .toggle-menu div.bars span.bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: 0.2s linear;
}
.header .header_middle .flex_wrapper .actions .toggle-menu div.bars span.bar:not(:last-of-type) {
  margin-bottom: 5px;
}
.header .overlay {
  display: none;
  height: 100vh;
  width: 100vw;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  .header .overlay {
    display: none !important;
  }
}
.header .header_bottom {
  position: fixed;
  z-index: 2;
  transition: ease-out 0.5s;
  left: 100%;
  width: 100%;
  height: calc(100vh - 8.5rem);
  height: calc(100dvh - 8.5rem);
  background-color: #ffffff;
}
.header .header_bottom.active {
  left: 30%;
  width: 70%;
}
@media (min-width: 992px) {
  .header .header_bottom.active {
    width: 100%;
    position: relative !important;
    top: unset !important;
    left: unset !important;
  }
}
@media (min-width: 576px) {
  .header .header_bottom {
    height: calc(100vh - 10rem);
    height: calc(100dvh - 10rem);
  }
}
@media (min-width: 992px) {
  .header .header_bottom {
    position: relative !important;
    top: unset !important;
    left: unset !important;
    height: auto;
  }
}
.header .header_bottom .wrapper {
  padding: 1rem 0;
  height: 100%;
  margin-left: auto;
  background-color: #ffffff;
  overflow: auto;
}
@media (min-width: 992px) {
  .header .header_bottom .wrapper {
    height: auto;
    overflow: unset;
  }
}
.header .header_bottom .header_bottom_search {
  border: 1px solid #dedfe6;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .header .header_bottom .header_bottom_search {
    display: none;
  }
}
.header .header_bottom .primary_nav .primary_menu {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.header .header_bottom .primary_nav .primary_menu .primary_menu_item {
  padding: 1rem 0;
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  /*&:hover {
    .submenu {
      @media (min-width: 992px) {
        display: block;
      }
    }
  }*/
}
@media (min-width: 992px) {
  .header .header_bottom .primary_nav .primary_menu .primary_menu_item {
    margin-right: 2rem;
    flex: 0 0 auto;
    width: auto;
  }
}
@media (min-width: 1265px) {
  .header .header_bottom .primary_nav .primary_menu .primary_menu_item {
    margin-right: 6.3rem;
  }
}
@media (min-width: 992px) {
  .header .header_bottom .primary_nav .primary_menu .primary_menu_item:last-of-type {
    margin-right: 0;
  }
}
.header .header_bottom .primary_nav .primary_menu .primary_menu_item .primary_menu_link {
  font-family: "Roboto Flex", "sans-serif";
  font-weight: 600;
  color: #000000;
  display: flex;
  align-items: center;
}
.header .header_bottom .primary_nav .primary_menu .primary_menu_item .primary_menu_link .toggle-submenu {
  flex: 0 0 4rem;
  width: 4rem;
  height: 3rem;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .header .header_bottom .primary_nav .primary_menu .primary_menu_item .primary_menu_link .toggle-submenu {
    flex: 0 0 2rem;
    width: 2rem;
    height: 2rem;
    margin-left: 0.5rem;
  }
}
@media (min-width: 1265px) {
  .header .header_bottom .primary_nav .primary_menu .primary_menu_item .primary_menu_link .toggle-submenu {
    margin-left: 0.8rem;
  }
}
.header .header_bottom .primary_nav .primary_menu .primary_menu_item .primary_menu_link .toggle-submenu.active svg {
  transform: rotateX(180deg);
}
.header .header_bottom .primary_nav .primary_menu .primary_menu_item .primary_menu_link .toggle-submenu svg {
  transition: linear 0.3s;
}
.header .header_bottom .primary_nav .primary_menu .primary_menu_item .submenu {
  display: none;
  list-style: none;
  padding-left: 1.5rem;
  background-color: #ffffff;
  /* &.active {
    display: block;
  }*/
}
@media (min-width: 992px) {
  .header .header_bottom .primary_nav .primary_menu .primary_menu_item .submenu {
    position: absolute;
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
    top: 100%;
    left: 0;
    min-width: 100%;
    border-radius: 8px;
  }
}
.header .header_bottom .primary_nav .primary_menu .primary_menu_item .submenu .submenu_item {
  padding: 0.5rem 0;
}
@media (min-width: 992px) {
  .header .header_bottom .primary_nav .primary_menu .primary_menu_item .submenu .submenu_item {
    padding: 1rem;
  }
}
.header .header_bottom .primary_nav .primary_menu .primary_menu_item .submenu .submenu_item .submenu_link {
  font-family: "Outfit", "sans-serif";
  font-weight: 400;
}
@media (min-width: 992px) {
  .header .header_bottom .primary_nav .primary_menu .primary_menu_item .submenu .submenu_item .submenu_link:hover {
    color: #ff731d;
  }
}
@media (min-width: 992px) {
  .header .header_bottom .primary_nav .primary_menu .primary_menu_item .submenu .submenu_item .submenu_link {
    white-space: nowrap;
  }
}
.header .form-group {
  margin-bottom: 0;
}
.header .form-group .input-group {
  border-radius: 6px;
  overflow: hidden;
  background-color: #ffffff;
  align-items: center;
  padding-right: 1.5rem;
}
.header .form-group .form-control {
  line-height: 4rem;
  border-radius: 0;
  border: none;
  box-shadow: none;
  font-weight: 400;
  color: #000000;
}
.header .form-group .form-control::placeholder {
  font-weight: 300;
  font-size: 1.4rem;
  color: #273085;
}
.header .form-group .input-group-append {
  flex: 0 0 4rem;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .form-group .input-group-append .search-btn {
  background-color: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

.advantages_section {
  margin-bottom: 1.4rem;
}
.advantages_section .advantages_list {
  border-radius: 12px;
  overflow: hidden;
  padding: 2.4rem 2rem;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 1265px) {
  .advantages_section .advantages_list {
    padding: 2.4rem 5rem;
  }
}
.advantages_section .advantages_list .advantage_item {
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 0 0 calc(50% - 1rem);
  width: calc(50% - 1rem);
}
.advantages_section .advantages_list .advantage_item:nth-of-type(3n) {
  margin-bottom: 0;
}
.advantages_section .advantages_list .advantage_item:nth-of-type(4n) {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .advantages_section .advantages_list .advantage_item {
    flex: 0 0 calc(50% - 2rem);
    width: calc(50% - 2rem);
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .advantages_section .advantages_list .advantage_item {
    flex: 0 0 calc(25% - 7.5rem);
    width: calc(25% - 7.5rem);
    margin-bottom: unset;
  }
}
.advantages_section .advantages_list .advantage_item .advantage_img {
  padding: 0.5rem;
  flex: 0 0 4rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 1rem;
  background-color: #424dbf;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .advantages_section .advantages_list .advantage_item .advantage_img {
    padding: 0.8rem;
    flex: 0 0 4.5rem;
    width: 4.5rem;
    height: 4.5rem;
    margin-inline: unset;
    margin-right: 1rem;
  }
}
@media (min-width: 768px) {
  .advantages_section .advantages_list .advantage_item .advantage_img {
    padding: 1rem;
    flex: 0 0 5.5rem;
    width: 5.5rem;
    height: 5.5rem;
    margin-inline: unset;
    margin-right: 1rem;
  }
}
@media (min-width: 992px) {
  .advantages_section .advantages_list .advantage_item .advantage_img {
    flex: 0 0 6.5rem;
    width: 6.5rem;
    height: 6.5rem;
    margin-inline: unset;
    margin-right: 1rem;
    margin-bottom: unset;
  }
}
@media (min-width: 1265px) {
  .advantages_section .advantages_list .advantage_item .advantage_img {
    padding: 1.5rem;
    flex: 0 0 7.2rem;
    width: 7.2rem;
    height: 7.2rem;
    margin-inline: unset;
    margin-right: 1rem;
  }
}
@media (min-width: 1450px) {
  .advantages_section .advantages_list .advantage_item .advantage_img {
    flex: 0 0 8.7rem;
    width: 8.7rem;
    height: 8.7rem;
    margin-right: 2rem;
  }
}
.advantages_section .advantages_list .advantage_item .advantage_title {
  flex: 0 0 100%;
  width: 100%;
  color: #000000;
  font-family: "Outfit", "sans-serif";
  font-weight: 600;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.9rem;
  text-align: center;
}
@media (min-width: 992px) {
  .advantages_section .advantages_list .advantage_item .advantage_title {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}
@media (min-width: 768px) {
  .advantages_section .advantages_list .advantage_item .advantage_title {
    flex: 0 0 50%;
    width: 50%;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .advantages_section .advantages_list .advantage_item .advantage_title {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 1265px) {
  .advantages_section .advantages_list .advantage_item .advantage_title {
    flex: 0 0 50%;
    width: 50%;
    text-align: left;
  }
}

main {
  padding-top: 3rem;
}

.advantages_section .advantages_list {
  padding: 0.5rem;
}
@media (min-width: 576px) {
  .advantages_section .advantages_list {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .advantages_section .advantages_list {
    padding: 2.4rem 2rem;
  }
}
@media (min-width: 1265px) {
  .advantages_section .advantages_list {
    padding: 2.4rem 5rem;
  }
}
.advantages_section .advantages_list .advantage_item {
  flex: 0 0 calc(33.33% - 0.6666666667rem);
  width: calc(33.33% - 0.6666666667rem);
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .advantages_section .advantages_list .advantage_item {
    flex: 0 0 calc(33.33% - 0.6666666667rem);
    width: calc(33.33% - 0.6666666667rem);
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .advantages_section .advantages_list .advantage_item {
    flex: 0 0 calc(25% - 7.5rem);
    width: calc(25% - 7.5rem);
    margin-bottom: unset;
  }
}
.advantages_section .advantages_list .advantage_item:last-of-type {
  display: none;
}
@media (min-width: 992px) {
  .advantages_section .advantages_list .advantage_item:last-of-type {
    display: flex;
  }
}
.advantages_section .advantages_list .advantage_item .advantage_img {
  flex: 0 0 30%;
  width: 30%;
  height: 30%;
  margin-bottom: 0;
  justify-content: space-between;
}
@media (min-width: 576px) {
  .advantages_section .advantages_list .advantage_item .advantage_img {
    justify-content: center;
  }
}
.advantages_section .advantages_list .advantage_item .advantage_title {
  font-size: 1.4rem;
  line-height: 1.6rem;
  flex: 0 0 60%;
  width: 60%;
  text-align: left;
}
@media (min-width: 576px) {
  .advantages_section .advantages_list .advantage_item .advantage_title {
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
}
@media (min-width: 768px) {
  .advantages_section .advantages_list .advantage_item .advantage_title {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}

.single_product_main_section {
  padding: 1rem 0 4rem 0;
}

.product_showcase {
  margin-bottom: 4rem;
  max-width: 100%;
}
.product_showcase .flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 100%;
}
.product_showcase .flex-wrapper .product_gallery_wrapper {
  margin-bottom: 3rem;
  flex: 0 0 100%;
  max-width: 100%;
  align-self: flex-start;
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper {
    margin-bottom: unset;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper {
    flex: 0 0 50%;
    width: 50%;
  }
}
.product_showcase .flex-wrapper .product_gallery_wrapper .product_slider_wrapper {
  max-width: 100%;
  position: relative;
  height: 100%;
}
.product_showcase .flex-wrapper .product_gallery_wrapper .product_slider_wrapper .wrap {
  height: 100%;
  flex-wrap: wrap;
}
.product_showcase .flex-wrapper .product_gallery_wrapper .product_slider_wrapper .left_label {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 0.6rem 1.5rem 0.7rem 2.2rem;
  background-color: #ff731d;
  position: absolute;
  top: 1.5rem;
  left: 0;
  z-index: 2;
}
@media (min-width: 576px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product_slider_wrapper .left_label {
    left: 22%;
  }
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product_slider_wrapper .left_label {
    left: 0;
  }
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product_slider_wrapper .left_label {
    left: 22%;
  }
}
.product_showcase .flex-wrapper .product_gallery_wrapper .product_slider_wrapper .right_label {
  width: 5rem;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}
@media (min-width: 768px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product_slider_wrapper .right_label {
    width: 6rem;
  }
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product_slider_wrapper .right_label {
    right: 2.2rem;
  }
}
@media (min-width: 1450px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product_slider_wrapper .right_label {
    width: 7rem;
  }
}
.product_showcase .flex-wrapper .product_gallery_wrapper .product-thumb-slider {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 576px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product-thumb-slider {
    margin-right: 2rem;
    flex: 0 0 calc(22% - 2rem);
    max-width: 134px;
  }
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product-thumb-slider {
    margin-right: 0;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product-thumb-slider {
    margin-right: 2rem;
    flex: 0 0 calc(22% - 2rem);
    max-width: 134px;
  }
}
.product_showcase .flex-wrapper .product_gallery_wrapper .product-thumb-slider .img-small {
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1rem;
  margin-right: 1rem;
}
.product_showcase .flex-wrapper .product_gallery_wrapper .product-thumb-slider .img-small:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product-thumb-slider .img-small {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product-thumb-slider .img-small {
    margin-bottom: 0;
    margin-right: 1rem;
  }
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product-thumb-slider .img-small {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
.product_showcase .flex-wrapper .product_gallery_wrapper .slick-prev {
  border: none;
  border-radius: 6px;
  background-color: #273085;
  padding: 0;
  position: absolute;
  width: 25px;
  height: 25px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.product_showcase .flex-wrapper .product_gallery_wrapper .slick-prev:hover {
  cursor: pointer;
  filter: brightness(0.95);
}
.product_showcase .flex-wrapper .product_gallery_wrapper .slick-prev.slick-disabled {
  display: none !important;
}
@media (min-width: 576px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .slick-prev {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .slick-prev {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .slick-prev {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.product_showcase .flex-wrapper .product_gallery_wrapper .slick-prev span {
  display: block;
  background-image: url("assets/arrow-up.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 65%;
  flex: 0 0 100%;
  height: 100%;
  transform: rotate(270deg);
}
@media (min-width: 576px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .slick-prev span {
    transform: rotate(0);
  }
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .slick-prev span {
    transform: rotate(270deg);
  }
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .slick-prev span {
    transform: rotate(0);
  }
}
.product_showcase .flex-wrapper .product_gallery_wrapper .slick-next {
  border: none;
  border-radius: 6px;
  background-color: #273085;
  position: absolute;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  top: 50%;
  left: calc(100% - 25px);
  transform: translate(0%, -50%);
}
.product_showcase .flex-wrapper .product_gallery_wrapper .slick-next:hover {
  cursor: pointer;
  filter: brightness(0.95);
}
.product_showcase .flex-wrapper .product_gallery_wrapper .slick-next.slick-disabled {
  display: none;
}
@media (min-width: 576px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .slick-next {
    top: 100%;
    left: 50%;
    width: 25px;
    height: 25px;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .slick-next {
    top: 50%;
    left: 95%;
    width: 25px;
    height: 25px;
    transform: translate(0, -50%);
  }
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .slick-next {
    top: 100%;
    left: 50%;
    width: 25px;
    height: 25px;
    transform: translate(-50%, -50%);
  }
}
.product_showcase .flex-wrapper .product_gallery_wrapper .slick-next span {
  display: block;
  background-image: url("assets/arrow-down.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 65%;
  flex: 0 0 100%;
  height: 100%;
  transform: rotate(-90deg);
}
@media (min-width: 576px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .slick-next span {
    transform: rotate(0);
  }
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .slick-next span {
    transform: rotate(-90deg);
  }
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .slick-next span {
    transform: rotate(0);
  }
}
.product_showcase .flex-wrapper .product_gallery_wrapper .product-large-slider {
  margin-bottom: 1rem;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  order: -1;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}
@media (min-width: 576px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product-large-slider {
    margin-bottom: 0;
    flex: 1;
    max-width: 585px;
    order: 1;
  }
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product-large-slider {
    margin-bottom: 1rem;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    order: -1;
  }
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product-large-slider {
    margin-bottom: 0;
    flex: 1;
    max-width: 585px;
    order: 1;
  }
}
.product_showcase .flex-wrapper .product_gallery_wrapper .product-large-slider .slick-list {
  height: 100%;
}
.product_showcase .flex-wrapper .product_gallery_wrapper .product-large-slider .slick-track {
  height: 100%;
}
.product_showcase .flex-wrapper .product_gallery_wrapper .product-large-slider .large-img {
  background-color: #ffffff;
  padding: 1.5rem;
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product-large-slider .large-img {
    padding: 1.5rem;
  }
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_gallery_wrapper .product-large-slider .large-img {
    padding: 2.5rem;
  }
}
.product_showcase .flex-wrapper .product_gallery_wrapper .product-large-slider .large-img .img-placeholder img {
  object-fit: contain;
}
.product_showcase .flex-wrapper .product_info_wrapper {
  flex: 0 0 100%;
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_info_wrapper {
    flex: 0 0 calc(50% - 2rem);
    width: calc(50% - 2rem);
  }
}
.product_showcase .flex-wrapper .product_info_wrapper .padding_wrapper {
  padding: 0 1.5rem;
}
.product_showcase .flex-wrapper .product_info_wrapper .padding_wrapper:last-of-type {
  margin-top: auto;
}
.product_showcase .flex-wrapper .product_info_wrapper .padding_wrapper:last-of-type.out_of_stock {
  margin-top: unset;
}
.product_showcase .flex-wrapper .product_info_wrapper .padding_wrapper:last-of-type.out_of_stock h5 {
  font-family: "Outfit", "sans-serif";
  font-weight: 700;
}
@media (min-width: 576px) {
  .product_showcase .flex-wrapper .product_info_wrapper .padding_wrapper {
    padding: 0 2rem;
  }
}
@media (min-width: 768px) {
  .product_showcase .flex-wrapper .product_info_wrapper .padding_wrapper {
    padding: 0 3rem;
  }
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_info_wrapper .padding_wrapper {
    padding: 0 3.5rem;
  }
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_info_wrapper .padding_wrapper {
    padding: 0 4.4rem 0 5.6rem;
  }
}
.product_showcase .flex-wrapper .product_info_wrapper .single_product_title {
  max-width: 355px;
  margin-bottom: 1.6rem;
}
.product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper {
  margin-bottom: 3rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .grade_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .grade_wrapper .stars {
  margin-right: 1.6rem;
  flex: 0 0 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .grade_wrapper .stars {
    flex: 0 0 auto;
    width: auto;
  }
}
.product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .grade_wrapper .stars .star svg {
  fill: #ff731d;
}
.product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .grade_wrapper a.leave_grade {
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 1px solid #000000;
}
.product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .grade_wrapper p {
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.65rem;
}
.product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .grade_wrapper .basic_info {
  margin-top: 1.4rem;
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .grade_wrapper .basic_info {
    flex: 0 0 100%;
    width: 100%;
  }
}
.product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .grade_wrapper .basic_info p {
  margin-bottom: 1rem;
  flex: 0 0 100%;
  margin-right: 2.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.65rem;
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .grade_wrapper .basic_info p {
    flex: 0 0 auto;
    width: auto;
  }
}
.product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .grade_wrapper .basic_info p span {
  font-weight: 300;
}
.product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .add_to_wishlist {
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .add_to_wishlist:hover .icon svg {
    fill: #ff731d;
  }
}
.product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .add_to_wishlist:hover .add_tool_tip {
  display: flex;
}
.product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .add_to_wishlist.added_to_wishlist:hover .remove_tool_tip {
  display: flex;
}
.product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .add_to_wishlist .tool_tip {
  display: none;
  background-color: #ff731d;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  border-radius: 4px;
  position: absolute;
  bottom: calc(100% + 0.2rem);
  right: 0;
  min-width: 50px;
  font-size: 1rem;
  line-height: 1.2rem;
  z-index: 200;
  white-space: nowrap;
}
.product_showcase .flex-wrapper .product_info_wrapper .basic_info_wrapper .add_to_wishlist.added_to_wishlist .icon svg {
  fill: #ff731d;
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper {
  margin-bottom: 1.2rem;
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper.discounted {
  border: 1px solid #ff731d;
  border-radius: 8px;
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper.discounted .discount_head {
  margin-bottom: 1.7rem;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: rgba(255, 115, 29, 0.1);
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper.discounted .discount_head .discount_percentage {
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 0;
  font-family: "Outfit", "sans-serif";
  background-color: #ff731d;
  color: #ffffff;
  padding: 1rem 4rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  line-height: 2.1rem;
  letter-spacing: 0.16px;
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_info_wrapper .price_wrapper.discounted .discount_head .discount_percentage {
    flex: 0 0 auto;
    width: auto;
  }
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper.discounted .discount_head .discount_time {
  margin-bottom: 0;
  margin-left: auto;
  margin-right: 1rem;
  color: #000000;
  font-family: "Outfit", "sans-serif";
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 3rem;
  letter-spacing: 0.14px;
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_info_wrapper .price_wrapper.discounted .discount_head .discount_time {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper.discounted .discount_head .discount_time span {
  font-weight: 600;
  padding-inline: 0.5rem;
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper.discounted .discount_head .discount_time span:nth-of-type(2n) {
  border-right: 2px solid #000000;
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper.discounted .discount_head .discount_time span:last-of-type {
  border-right: unset;
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper.discounted .discount_body {
  padding: 0 1.8rem 1.7rem 1.8rem;
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper .discount_head {
  display: none;
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper .discount_body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper .discount_body p {
  margin-bottom: 0;
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper .discount_body .price {
  margin-right: 3rem;
  color: #273085;
  font-family: "Outfit", "sans-serif";
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: 0.24px;
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper .discount_body .price .installments_payment {
  text-decoration: line-through;
  font-size: 1.4rem;
  font-weight: 400;
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper .discount_body .price .accent {
  color: #ff731d !important;
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper .discount_body .price .old_price,
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper .discount_body .price del {
  display: block;
  margin-bottom: 0.3rem;
  color: #0c1571;
  font-family: "Outfit", "sans-serif";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4rem;
  letter-spacing: 0.14px;
  text-decoration: line-through;
}
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper .discount_body .price .new_price,
.product_showcase .flex-wrapper .product_info_wrapper .price_wrapper .discount_body .price ins {
  display: block;
  color: #ff731d;
  font-family: "Outfit", "sans-serif";
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: 0.28px;
  text-decoration: none;
}
.product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper {
  background-color: rgba(217, 217, 217, 0.2);
  padding: 0 1.5rem;
}
@media (min-width: 576px) {
  .product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper {
    padding: 0 2rem;
  }
}
@media (min-width: 768px) {
  .product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper {
    padding: 0 3rem;
  }
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper {
    padding: 0 3.5rem;
  }
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper {
    padding: 0 4.4rem 0 5.6rem;
  }
}
.product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper .method_item {
  position: relative;
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper .method_item.monthly {
  padding: 1.5rem 0;
}
.product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper .method_item.monthly .price {
  font-size: 2rem;
  margin-bottom: 0;
  line-height: 2.1rem;
  letter-spacing: 0.2px;
}
.product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper .method_item.monthly .price span {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.1rem;
}
.product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper .method_item.monthly .read_more {
  margin-left: 1rem;
  color: #a0a0a0;
  text-align: right;
  font-family: "Outfit", "sans-serif";
  font-size: 12px;
  font-weight: 500;
  line-height: 2.1rem;
  letter-spacing: 0.12px;
  text-decoration-line: underline;
}
@media (min-width: 1265px) {
  .product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper .method_item.monthly .read_more {
    margin-left: auto;
  }
}
.product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper .method_item .price {
  margin-right: 3rem;
  color: #273085;
  font-family: "Outfit", "sans-serif";
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3rem;
  letter-spacing: 0.24px;
}
.product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper .method_item .payment_method {
  margin-bottom: 0;
}
.product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper .or {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper .or span {
  text-align: center;
  color: #273085;
}
.product_showcase .flex-wrapper .product_info_wrapper .payment_methods_wrapper .or span.line {
  flex: 0 0 calc(50% - 1.3333333333rem);
  width: calc(50% - 1.3333333333rem);
  width: auto;
  height: 1px;
  background-color: rgba(160, 160, 160, 0.4);
}
.product_showcase .flex-wrapper .product_info_wrapper .notice {
  padding: 0.5rem 0 2rem;
}
.product_showcase .flex-wrapper .product_info_wrapper .notice p {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.65rem;
  letter-spacing: 0.3px;
}
.product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .quantity {
  margin-bottom: 2rem;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  border: 1px solid #424dbf;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .quantity {
    margin-bottom: 0;
    margin-right: 2rem;
    flex: 0 0 calc(33.33% - 0.85rem);
    width: calc(30% - 0.85rem);
  }
}
.product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .qty {
  border: none;
  box-shadow: none;
  flex: 0 0 50%;
  width: 50%;
  color: #424dbf;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 3.4rem;
  padding: 0.5rem;
}
.product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .q-plus,
.product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .q-minus {
  border: none;
  border-radius: 4px;
  box-shadow: none;
  background-color: transparent;
  flex: 0 0 20%;
  width: 20%;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}
.product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .q-plus svg,
.product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .q-minus svg {
  fill: #424dbf;
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .q-plus:hover,
  .product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .q-minus:hover {
    background-color: #424dbf;
  }
}
@media (min-width: 992px) {
  .product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .q-plus:hover svg,
  .product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .q-minus:hover svg {
    fill: #ffffff !important;
  }
}
.product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .single_product_add_to_cart_button,
.product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .wp-element-button {
  box-shadow: none;
  border: none;
  border-radius: 8px;
  flex: 1;
  line-height: 4.4rem;
  background-color: #424dbf;
  color: #fff;
  font-family: "Outfit", "sans-serif";
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.6px;
  cursor: pointer;
}
@media (min-width: 576px) {
  .product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .single_product_add_to_cart_button,
  .product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .wp-element-button {
    margin-bottom: 0;
  }
}
.product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .single_product_add_to_cart_button:hover,
.product_showcase .flex-wrapper .product_info_wrapper .buttons_wrapper .wp-element-button:hover {
  background-color: #424dbf;
  color: #ffffff;
}
.product_showcase .payment_method {
  color: #273085;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.65rem;
}

.product_details_wrapper .custom-accordion {
  margin-bottom: 2rem;
}
.product_details_wrapper .custom-accordion .accordion-item.active .accordion-data {
  display: block;
}
.product_details_wrapper .custom-accordion .accordion-header {
  padding: 1rem 3rem;
  background-color: #dedfe6;
  border-radius: 8px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product_details_wrapper .custom-accordion .accordion-header.active .chv svg {
  transform: rotateX(180deg);
}
@media (min-width: 1265px) {
  .product_details_wrapper .custom-accordion .accordion-header {
    padding: 1.8rem 3.3rem;
  }
}
.product_details_wrapper .custom-accordion .accordion-header .detail_title {
  color: #000000;
  font-family: "Outfit", "sans-serif";
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.44rem;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .product_details_wrapper .custom-accordion .accordion-header .detail_title {
    font-size: 1.6rem;
  }
}
.product_details_wrapper .custom-accordion .accordion-data {
  margin-top: -4px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: none;
  padding: 2rem 3rem;
  background-color: #ffffff;
}
@media (min-width: 1265px) {
  .product_details_wrapper .custom-accordion .accordion-data {
    padding: 3rem 3.3rem;
  }
}
.product_details_wrapper .custom-accordion .accordion-data .content {
  padding: 0 0 1rem 0;
}
@media (min-width: 1265px) {
  .product_details_wrapper .custom-accordion .accordion-data .content {
    padding: 0 0 4rem 0;
  }
}
.product_details_wrapper .custom-accordion .accordion-data .content table {
  width: 100%;
}
.product_details_wrapper .custom-accordion .accordion-data .content table tr {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(200, 200, 200, 0.15);
  padding: 2rem 0;
}
.product_details_wrapper .custom-accordion .accordion-data .content table tr td {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .product_details_wrapper .custom-accordion .accordion-data .content table tr td {
    text-align: left;
  }
}
.product_details_wrapper .custom-accordion .accordion-data .content table tr td:first-of-type {
  flex: 0 0 50%;
  width: 50%;
  margin-left: 0.5rem;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.65rem;
  text-align: left;
}
@media (min-width: 768px) {
  .product_details_wrapper .custom-accordion .accordion-data .content table tr td:first-of-type {
    flex: 0 0 40%;
    width: 40%;
  }
}
.product_details_wrapper .custom-accordion .accordion-data .how_to_buy_data .flex_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product_details_wrapper .custom-accordion .accordion-data .how_to_buy_data .flex_wrapper .how_to_buy_card {
  margin-bottom: 3rem;
  flex: 0 0 100%;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .product_details_wrapper .custom-accordion .accordion-data .how_to_buy_data .flex_wrapper .how_to_buy_card {
    flex: 0 0 calc(33.33% - 1rem);
    width: calc(33.33% - 1rem);
  }
}
@media (min-width: 1265px) {
  .product_details_wrapper .custom-accordion .accordion-data .how_to_buy_data .flex_wrapper .how_to_buy_card {
    flex: 0 0 calc(33.33% - 1.3333333333rem);
    width: calc(33.33% - 1.3333333333rem);
  }
}
@media (min-width: 1450px) {
  .product_details_wrapper .custom-accordion .accordion-data .how_to_buy_data .flex_wrapper .how_to_buy_card {
    flex: 0 0 calc(33.33% - 2rem);
    width: calc(33.33% - 2rem);
  }
}
.product_details_wrapper .custom-accordion .accordion-data .how_to_buy_data .flex_wrapper .how_to_buy_card .card_icon {
  margin-inline: auto;
  width: 6rem;
  height: 6rem;
  background-color: #ff731d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.product_details_wrapper .custom-accordion .accordion-data .how_to_buy_data .flex_wrapper .how_to_buy_card .card_icon svg {
  fill: #ffffff;
}
.product_details_wrapper .custom-accordion .accordion-data .how_to_buy_data .flex_wrapper .how_to_buy_card .card_content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product_details_wrapper .custom-accordion .accordion-data .how_to_buy_data .flex_wrapper .how_to_buy_card .card_content h3 {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-family: "Outfit", "sans-serif";
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.product_details_wrapper .custom-accordion .accordion-data .payments_data h1,
.product_details_wrapper .custom-accordion .accordion-data .payments_data h2,
.product_details_wrapper .custom-accordion .accordion-data .payments_data h3,
.product_details_wrapper .custom-accordion .accordion-data .payments_data h4,
.product_details_wrapper .custom-accordion .accordion-data .payments_data h5,
.product_details_wrapper .custom-accordion .accordion-data .payments_data h6 {
  font-size: 2rem;
  line-height: 2.2rem;
  font-style: "Outfit", "sans-serif";
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.product_details_wrapper .custom-accordion .accordion-data .payments_data p,
.product_details_wrapper .custom-accordion .accordion-data .payments_data li {
  font-size: 1.6rem;
  line-height: 2rem;
}
.product_details_wrapper .custom-accordion .accordion-data .payments_data p,
.product_details_wrapper .custom-accordion .accordion-data .payments_data ul {
  margin-bottom: 3rem;
}
.product_details_wrapper .custom-accordion .accordion-data .payments_data li {
  line-height: 2.4rem;
}
.product_details_wrapper .product_grades .flex_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product_details_wrapper .product_grades .grade_side {
  margin-bottom: 3rem;
  flex: 0 0 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .product_details_wrapper .product_grades .grade_side {
    margin-bottom: unset;
    flex: 0 0 40%;
    width: 40%;
  }
}
.product_details_wrapper .product_grades .grade_side .grade_num p.grade {
  color: #000000;
  font-family: "Outfit", "sans-serif";
  font-size: 4rem;
  font-weight: 600;
  line-height: 4.4rem;
}
.product_details_wrapper .product_grades .grade_side .grade_num p.no_grade {
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
.product_details_wrapper .product_grades .grade_side .grade_num p {
  color: #000000;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.65rem;
}
.product_details_wrapper .product_grades .grade_side .grade_details {
  margin-bottom: 3.7rem;
}
.product_details_wrapper .product_grades .grade_side .grade_details .grade_stars_stats {
  display: flex;
  align-items: center;
}
.product_details_wrapper .product_grades .grade_side .grade_details .grade_stars_stats .stars {
  margin-right: 2.4rem;
}
.product_details_wrapper .product_grades .grade_side .grade_details .grade_stars_stats .stars .star svg {
  fill: #ff731d;
}
.product_details_wrapper .product_grades .grade_side .grade_details .grade_stars_stats .pole {
  flex: 1;
  border-radius: 16px;
  max-width: 180px;
  height: 1rem;
  margin-right: 2rem;
  background-color: rgba(200, 200, 200, 0.15);
}
.product_details_wrapper .product_grades .grade_side .grade_details .grade_stars_stats .pole .pole_progress {
  background-color: #ff731d;
  height: 100%;
  display: block;
  border-radius: 16px;
}
.product_details_wrapper .product_grades .grade_side .grade_details .grade_stars_stats .num_of_reviews {
  color: #d3d3d3;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.5px; /* 117.857% */
}
.product_details_wrapper .product_grades .grade_side .grade_btn {
  display: inline-block;
  background-color: #424dbf;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: "Outfit", "sans-serif";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.55rem;
  letter-spacing: 0.36px;
  font-size: 1.4rem;
  line-height: 1.6rem;
}
@media (min-width: 992px) {
  .product_details_wrapper .product_grades .grade_side .grade_btn {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
@media (min-width: 1265px) {
  .product_details_wrapper .product_grades .grade_side .grade_btn {
    padding: 1.2rem 2.4rem;
    font-size: 1.8rem;
    line-height: 2.55rem;
  }
}
.product_details_wrapper .product_grades .comments_side {
  flex: 0 0 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .product_details_wrapper .product_grades .comments_side {
    flex: 0 0 50%;
    width: 50%;
  }
}
.product_details_wrapper .product_grades .comments_side .comment_side_title {
  padding: 1.4rem 0;
  color: #000000;
  font-family: "Outfit", "sans-serif";
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.4rem;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}
.product_details_wrapper .product_grades .comments_side .comments_wrapper {
  list-style: none;
  max-height: 576px;
  overflow: auto;
  padding-left: 0;
  padding-right: 4.9rem;
}
.product_details_wrapper .product_grades .comments_side .content_comment {
  padding: 2.8rem 0;
  border-top: 1px solid rgba(160, 160, 160, 0.4);
}
.product_details_wrapper .product_grades .comments_side .content_comment:last-of-type {
  border-bottom: 1px solid rgba(160, 160, 160, 0.4);
}
.product_details_wrapper .product_grades .comments_side .content_comment .content_comment_head {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product_details_wrapper .product_grades .comments_side .content_comment .content_comment_head .comment_user,
.product_details_wrapper .product_grades .comments_side .content_comment .content_comment_head .woocommerce-review__author {
  border-right: 1px solid #000000;
  margin-right: 1rem;
  padding-right: 1rem;
  text-transform: capitalize;
  font-size: 1.4rem;
}
@media (min-width: 1265px) {
  .product_details_wrapper .product_grades .comments_side .content_comment .content_comment_head .comment_user,
  .product_details_wrapper .product_grades .comments_side .content_comment .content_comment_head .woocommerce-review__author {
    font-size: 1.6rem;
  }
}
.product_details_wrapper .product_grades .comments_side .content_comment .content_comment_head .comment_date,
.product_details_wrapper .product_grades .comments_side .content_comment .content_comment_head .woocommerce-review__published-date {
  margin-right: 1rem;
  font-size: 1.4rem;
}
@media (min-width: 1265px) {
  .product_details_wrapper .product_grades .comments_side .content_comment .content_comment_head .comment_date,
  .product_details_wrapper .product_grades .comments_side .content_comment .content_comment_head .woocommerce-review__published-date {
    font-size: 1.6rem;
  }
}
.product_details_wrapper .product_grades .comments_side .content_comment .content_comment_head .comment_grade {
  margin-bottom: 1rem;
  order: -1;
  flex: 0 0 100%;
  width: 100%;
}
@media (min-width: 576px) {
  .product_details_wrapper .product_grades .comments_side .content_comment .content_comment_head .comment_grade {
    order: unset;
    flex: 0 0 auto;
    width: auto;
    margin-bottom: 0;
  }
}
.product_details_wrapper .product_grades .comments_side .content_comment .content_comment_head .comment_grade .star svg {
  fill: #ff731d;
}
.product_details_wrapper .product_grades .comments_side .content_comment .comment_body p,
.product_details_wrapper .product_grades .comments_side .content_comment .description p {
  color: #000000;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.65rem;
}
.product_details_wrapper .product_grades .comments_side .content_comment .comment-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.product_details_wrapper .product_grades .comments_side .content_comment .comment-text p.meta {
  margin-bottom: 2rem;
}
.product_details_wrapper .product_grades .comments_side .content_comment .comment-text .star-rating {
  order: 1;
  margin-bottom: 2rem;
}
.product_details_wrapper .product_grades .comments_side .content_comment .comment-text .star-rating .star svg {
  fill: #ff731d;
}
.product_details_wrapper .product_grades .comments_side .content_comment .comment-text .description {
  flex: 0 0 100%;
  width: 100%;
  order: 2;
}

#grade_modal {
  z-index: 100000000;
}
#grade_modal .modal-inner {
  position: relative;
  border-radius: 8px;
  box-shadow: 1px 4px 7px 0px rgba(39, 48, 133, 0.2);
  padding: 8.5rem 13.5rem;
  background-color: #ffffff;
  flex: 0 0 50%;
  width: 50%;
  max-width: 930px;
}
#grade_modal .modal-inner div.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
}
#grade_modal .modal-inner .grade_form .form-group {
  margin-bottom: 1rem;
  flex: 0 0 100%;
  width: 100%;
}
#grade_modal .modal-inner .grade_form .form-group.user_comment .form-control {
  padding: 2rem;
  line-height: 1.9rem;
  resize: none;
}
#grade_modal .modal-inner .grade_form .form-group .form-control {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 0 2rem;
  background: rgba(255, 255, 255, 0.7);
  color: #000000;
  font-family: "Roboto Flex", "sans-serif";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 4rem;
}
#grade_modal .modal-inner .grade_form .form-group .form-control::placeholder {
  color: #000000;
  font-family: "Roboto Flex", "sans-serif";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.65rem;
}
@media (min-width: 1265px) {
  #grade_modal .modal-inner .grade_form .form-group .form-control::placeholder {
    font-size: 1.6rem;
  }
}
@media (min-width: 1265px) {
  #grade_modal .modal-inner .grade_form .form-group .form-control {
    line-height: 6rem;
  }
}
#grade_modal .modal-inner .grade_form button {
  width: 100%;
  box-shadow: none;
  border: none;
  border-radius: 6px;
  margin-right: auto;
  padding: 1.2rem 3.8rem;
  background-color: #424dbf;
  color: #ffffff;
  text-align: center;
  font-family: "Outfit", "sans-serif";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25.5px; /* 141.667% */
  letter-spacing: 0.36px;
  cursor: pointer;
}

.woocommerce-noreviews {
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 700;
  align-self: flex-start;
}

.woocommerce-review__author {
  border-right: 1px solid #000000;
  margin-right: 1rem;
  padding-right: 1rem;
  text-transform: capitalize;
  font-size: 1.4rem;
  line-height: 1.6rem;
}

span.woocommerce-review__dash {
  display: none;
}

.woocommerce-review__published-date {
  margin-right: 1rem;
  font-size: 1.4rem;
  line-height: 1.6rem;
}

.grade-modal .modal-wrapper {
  position: relative;
}
.grade-modal .modal-wrapper .modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.grade-modal .modal-wrapper .grade-modal-inner {
  flex: 0 0 100%;
  max-width: 930px;
  margin-inline: auto;
  padding: 2rem;
  background-color: #fff;
  z-index: 2;
}
.grade-modal .modal-wrapper .grade-modal-inner .modal-body {
  max-width: 658px;
  margin-inline: auto;
  padding: 2rem 0 5rem;
}

.comment-form-author label,
.comment-form-comment label,
.comment-form-email label,
.comment-form-cookies-consent label {
  display: none;
}

.comment-form-author,
.comment-form-email {
  margin-bottom: 2.6rem;
}
.comment-form-author .form-control,
.comment-form-email .form-control {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 0 2rem;
  background: rgba(255, 255, 255, 0.7);
  color: #000000;
  font-family: "Roboto Flex", "sans-serif";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 4rem;
  resize: none;
}
.comment-form-author .form-control::placeholder,
.comment-form-email .form-control::placeholder {
  color: #000000;
  font-family: "Roboto Flex", "sans-serif";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.65rem;
}
@media (min-width: 1265px) {
  .comment-form-author .form-control,
  .comment-form-email .form-control {
    line-height: 5.5rem !important;
  }
}

.comment-form-comment {
  margin-bottom: 2.6rem;
}
.comment-form-comment textarea {
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
  color: #000000;
  font-family: "Roboto Flex", "sans-serif";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 4rem;
  resize: none;
}
.comment-form-comment textarea::placeholder {
  color: #000000;
  font-family: "Roboto Flex", "sans-serif";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
}
@media (min-width: 1265px) {
  .comment-form-comment textarea::placeholder {
    font-size: 1.6rem;
  }
}
@media (min-width: 1265px) {
  .comment-form-comment textarea {
    line-height: 6rem;
  }
}

p.form-submit input#submit {
  border: none;
  cursor: pointer;
  padding: 1.5rem 2rem;
  background-color: #424dbf;
  color: #ffffff;
  font-family: "Outfit", "sans-serif";
  font-weight: 700;
  border-radius: 8px;
  width: 100%;
}

span.required {
  display: none;
}

#reply-title {
  display: none;
}

.comment-notes {
  display: none;
}

.recommended_products {
  background-color: #dedfe6;
  padding: 5rem 0 8rem;
  padding: 4rem 0 5rem;
  margin-bottom: 4rem;
}
.recommended_products .section_title {
  margin-bottom: 3rem;
  color: #212121;
}
.recommended_products .swiper {
  padding: 0 0 4rem;
}
.recommended_products .swiper .swiper-slide {
  min-height: 100%;
  height: unset;
}
.recommended_products .swiper .swiper-scrollbar {
  height: 4px;
  background-color: rgba(39, 48, 133, 0.25);
}
.recommended_products .swiper .swiper-scrollbar-drag {
  height: 4px;
  max-width: 35%;
  background-color: rgba(39, 48, 133, 0.5);
}
.recommended_products .content_product {
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
  padding: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
}
.recommended_products .content_product .left_label {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 0.6rem 1.5rem 0.7rem 2.2rem;
  background-color: #ff731d;
  position: absolute;
  top: 1.5rem;
  left: 0;
  z-index: 2;
}
.recommended_products .content_product .right_label {
  width: 5rem;
  position: absolute;
  top: 1.5rem;
  right: 2.2rem;
  z-index: 2;
}
@media (min-width: 768px) {
  .recommended_products .content_product .right_label {
    width: 6rem;
  }
}
@media (min-width: 1450px) {
  .recommended_products .content_product .right_label {
    width: 7rem;
  }
}
.recommended_products .content_product .content_product_img::after {
  padding-top: 82%;
  background-color: #ffffff;
}
.recommended_products .content_product .content_product_img img {
  object-fit: contain;
}
.recommended_products .content_product .title_wrap {
  padding: 1rem 2.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -3rem;
  position: relative;
}
.recommended_products .content_product .title_wrap .content_product_title {
  margin-bottom: 0;
}
.recommended_products .content_product .title_wrap .content_product_add_to_fav {
  font-size: 2rem;
  line-height: 2rem;
}
.recommended_products .content_product .prices {
  margin-top: auto;
}
.recommended_products .content_product .prices .content_product_price_item {
  padding: 1rem 2.2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recommended_products .content_product .prices .content_product_price_item:nth-of-type(odd) {
  background-color: rgba(217, 217, 217, 0.2);
}
.recommended_products .content_product .prices .content_product_price_item .content_product_price_type {
  flex: 0 0 60%;
  width: 60%;
  color: #273085;
  font-family: "Roboto Flex", "sans-serif";
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.65rem;
}
.recommended_products .content_product .btn_wrapper {
  padding: 1rem 2.2rem 1rem;
}

.testimonials_section {
  padding: 0 0 4rem;
}
.testimonials_section .section_title {
  margin-bottom: 3.8rem;
  text-align: center;
}

.footer .footer_top {
  padding: 3rem 0 4rem;
  background-color: #424dbf;
  color: #ffffff;
}
@media (min-width: 992px) {
  .footer .footer_top {
    padding: 4rem 0 6rem;
  }
}
@media (min-width: 1625px) {
  .footer .footer_top {
    padding: 5.7rem 0 9rem;
  }
}
.footer .footer_top .flex_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .footer_top .logo_side {
  margin-bottom: 3rem;
  max-width: 200px;
}
@media (min-width: 1265px) {
  .footer .footer_top .logo_side {
    margin-bottom: unset;
    max-width: 250px;
  }
}
.footer .footer_top .menus_side {
  margin-left: auto;
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 1265px) {
  .footer .footer_top .menus_side {
    flex: 0 0 70%;
    width: 70%;
  }
}
.footer .footer_top .menus_side .footer_menu_wrapper {
  flex: 0 0 calc(50% - 1.5rem);
  width: calc(50% - 1.5rem);
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .footer .footer_top .menus_side .footer_menu_wrapper {
    flex: 0 0 auto;
    width: auto;
    max-width: calc(25% - 1.5rem);
  }
}
.footer .footer_top .menus_side .footer_menu_wrapper .footer_menu_title {
  margin-bottom: 1.3rem;
  font-weight: 700;
}
.footer .footer_top .menus_side .footer_menu_wrapper .footer_menu {
  list-style: none;
  padding: 0;
}
.footer .footer_top .menus_side .footer_menu_wrapper .footer_menu .footer_menu_item .footer_menu_link {
  height: 100%;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 3rem;
  letter-spacing: 0.3px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .footer .footer_top .menus_side .footer_menu_wrapper .footer_menu .footer_menu_item .footer_menu_link:hover {
    color: #ff731d;
  }
}

.footer_bottom {
  padding: 0.5rem 0;
  background-color: #273085;
  text-align: center;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 2.5rem;
  letter-spacing: 0.24px;
  color: #ffffff;
}
.footer_bottom p {
  margin-bottom: 0;
}
.footer_bottom .payment_cards {
  background-color: #273085;
  padding: 1rem 0;
}
@media (min-width: 1265px) {
  .footer_bottom .payment_cards {
    padding: 2rem 0;
  }
}
.footer_bottom .payment_cards .card_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.footer_bottom .payment_cards .card_wrapper a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .footer_bottom .payment_cards .card_wrapper a {
    margin-inline: 1.5rem;
    margin-bottom: 0;
  }
}
.footer_bottom .payment_cards .card_wrapper a img {
  height: 20px;
}

/*# sourceMappingURL=page-single-product.css.map */
