@charset "UTF-8";
@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;
  }
}

.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;
  }
}

.shop_main_section {
  padding: 1rem 0 6rem;
}
@media (min-width: 992px) {
  .shop_main_section {
    padding: 3rem 0 6rem;
  }
}
.shop_main_section .page_title {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .shop_main_section .page_title {
    margin-bottom: 4rem;
  }
}
.shop_main_section .flex_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.shop_main_section .flex_wrapper.no_filters .product_list_wrapper {
  flex: 1;
}
@media (min-width: 576px) {
  .shop_main_section .flex_wrapper.no_filters .product_list_wrapper .product_list .content_product:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .shop_main_section .flex_wrapper.no_filters .product_list_wrapper .product_list .content_product:nth-of-type(2n) {
    margin-right: 1rem;
  }
}
@media (min-width: 1265px) {
  .shop_main_section .flex_wrapper.no_filters .product_list_wrapper .product_list .content_product:nth-of-type(2n) {
    margin-right: 1.5rem;
  }
}
@media (min-width: 992px) {
  .shop_main_section .flex_wrapper.no_filters .product_list_wrapper .product_list .content_product:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (min-width: 1265px) {
  .shop_main_section .flex_wrapper.no_filters .product_list_wrapper .product_list .content_product:nth-of-type(3n) {
    margin-right: 1.5rem;
  }
}
@media (min-width: 1265px) {
  .shop_main_section .flex_wrapper.no_filters .product_list_wrapper .product_list .content_product:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media (min-width: 450px) {
  .shop_main_section .flex_wrapper.no_filters .product_list_wrapper .product_list .content_product {
    margin-inline: auto;
    flex: 0 0 80%;
    width: 80%;
  }
}
@media (min-width: 576px) {
  .shop_main_section .flex_wrapper.no_filters .product_list_wrapper .product_list .content_product {
    margin-inline: unset;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    flex: 0 0 calc(50% - 1.5rem);
    width: calc(50% - 1.5rem);
  }
}
@media (min-width: 768px) {
  .shop_main_section .flex_wrapper.no_filters .product_list_wrapper .product_list .content_product {
    margin-inline: unset;
    margin-right: 2rem;
    margin-bottom: 2rem;
    flex: 0 0 calc(50% - 1rem);
    width: calc(50% - 1rem);
  }
}
@media (min-width: 992px) {
  .shop_main_section .flex_wrapper.no_filters .product_list_wrapper .product_list .content_product {
    margin-right: 1rem;
    margin-bottom: 1rem;
    flex: 0 0 calc(33.33% - 0.6666666667rem);
    width: calc(33.33% - 0.6666666667rem);
  }
}
@media (min-width: 1265px) {
  .shop_main_section .flex_wrapper.no_filters .product_list_wrapper .product_list .content_product {
    flex: 0 0 calc(25% - 1.125rem);
    width: calc(25% - 1.125rem);
  }
}
.shop_main_section .flex_wrapper .overlay {
  display: none;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (min-width: 992px) {
  .shop_main_section .flex_wrapper .overlay {
    display: none !important;
  }
}
.shop_main_section .filters_list {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  height: 100dvh;
  max-width: 100vw;
  z-index: 10000000;
  transition: ease-out 0.3s;
}
.shop_main_section .filters_list.active {
  left: 0;
  padding: 1rem 1rem;
  display: flex;
  flex-direction: column;
}
.shop_main_section .filters_list.active form.filters {
  padding-bottom: 8rem;
  position: relative;
}
@media (min-width: 992px) {
  .shop_main_section .filters_list {
    position: relative;
    left: unset;
    z-index: unset;
    height: auto;
    flex: 0 0 calc(33.33% - 1.5rem);
    width: calc(33.33% - 1.5rem);
    background-color: transparent;
  }
}
@media (min-width: 1265px) {
  .shop_main_section .filters_list {
    padding-top: 5.92rem;
    flex: 0 0 calc(25% - 1.5rem);
    width: calc(25% - 1.5rem);
  }
}
.shop_main_section .filters_list .filters {
  padding: 0 1rem 0 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .shop_main_section .filters_list .filters {
    padding: 6rem 0 0;
    display: block;
    height: unset;
  }
}
@media (min-width: 1265px) {
  .shop_main_section .filters_list .filters {
    padding: unset;
  }
}
.shop_main_section .filters_list .filters .wrapper_inner {
  max-height: calc(100vh - 170px);
  max-height: calc(100svh - 170px);
  overflow-y: scroll;
  overflow-x: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 992px) {
  .shop_main_section .filters_list .filters .wrapper_inner {
    height: unset;
    max-height: unset;
    overflow-y: unset;
    overflow-x: unset;
  }
}
.shop_main_section .filters_list .filters_header {
  padding: 1.5rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .shop_main_section .filters_list .filters_header {
    display: none;
  }
}
.shop_main_section .filters_list .filters_header h2.filt-title {
  font-size: 2.8rem;
  font-family: "Outfit", "sans-serif";
  font-weight: 700;
}
.shop_main_section .filters_list .filters_header .filters_toggler {
  width: 4rem;
  height: 4rem;
  background-color: #dedfe6;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}
.shop_main_section .filters_list .filters_header .filters_toggler .icon svg {
  fill: #000000;
}
.shop_main_section .filters_list .filter_group {
  border-radius: 8px;
  background-color: #ffffff;
  padding: 1rem 0.5rem;
  cursor: pointer;
}
.shop_main_section .filters_list .filter_group.active .filter_group_body {
  display: block;
}
@media (min-width: 992px) {
  .shop_main_section .filters_list .filter_group {
    padding: 1.5rem 1rem;
  }
}
@media (min-width: 1265px) {
  .shop_main_section .filters_list .filter_group {
    margin-bottom: 1.5rem;
    padding: 1.5rem 1.5rem;
  }
}
@media (min-width: 1440px) {
  .shop_main_section .filters_list .filter_group {
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
  }
}
.shop_main_section .filters_list .filter_group .filter_group_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop_main_section .filters_list .filter_group .filter_group_head.active .chv svg {
  transform: rotateX(180deg);
}
.shop_main_section .filters_list .filter_group .filter_group_head .filter_title {
  margin-bottom: 0;
  font-family: "Outfit", "sans-serif";
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.475rem;
  letter-spacing: 0.36px;
  color: #000000;
}
.shop_main_section .filters_list .filter_group .filter_group_body {
  display: none;
  padding: 1.8rem 0 0.8rem;
}
.shop_main_section .filters_list .filter_group .filter_group_body .checkbox {
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
}
.shop_main_section .filters_list .filter_group .filter_group_body .checkbox:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .shop_main_section .filters_list .filter_group .filter_group_body .checkbox {
    margin-bottom: 1.8rem;
  }
}
.shop_main_section .filters_list .filter_group .filter_group_body .checkbox .available-num {
  margin-left: auto;
}
.shop_main_section .filters_list .filter_group .filter_group_body .checkbox input[type=checkbox] {
  display: block;
  visibility: hidden;
  position: absolute;
  left: -100%;
}
.shop_main_section .filters_list .filter_group .filter_group_body .checkbox input[type=checkbox]:checked + .fake-checkbox::after {
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-image: url("assets/check.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: transparent;
}
.shop_main_section .filters_list .filter_group .filter_group_body .checkbox .fake-checkbox {
  border: 1px solid #000000;
  margin-right: 1.4rem;
  flex: 0 0 1.4rem;
  height: 1.4rem;
  width: 1.4rem;
}
.shop_main_section .filters_list .filters_btn {
  box-shadow: none;
  border: none;
  display: block;
  border-radius: 6px;
  width: 100%;
  padding: 1.2rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: #424dbf;
  color: #ffffff;
  font-family: "Outfit", "sans-serif";
  font-weight: 700;
  letter-spacing: 0.38px;
  position: absolute;
  bottom: 0;
}
@media (min-width: 992px) {
  .shop_main_section .filters_list .filters_btn {
    position: static;
  }
}
.shop_main_section .product_list_wrapper {
  flex: 0 0 100%;
  width: 100%;
}
@media (min-width: 992px) {
  .shop_main_section .product_list_wrapper {
    flex: 0 0 calc(66.66% - 1.5rem);
    width: calc(66.66% - 1.5rem);
  }
}
@media (min-width: 1265px) {
  .shop_main_section .product_list_wrapper {
    flex: 0 0 calc(75% - 1.5rem);
    width: calc(75% - 1.5rem);
  }
}
.shop_main_section .product_list_wrapper .product_list_head {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  z-index: 5;
  top: 0;
  background-color: #eeeeee;
  margin-bottom: 1rem;
  padding: 1rem 1rem;
}
@media (min-width: 992px) {
  .shop_main_section .product_list_wrapper .product_list_head {
    justify-content: space-between;
    padding: 1.5rem 0;
    background-color: transparent;
    margin-bottom: unset;
    position: static;
  }
}
.shop_main_section .product_list_wrapper .product_list_head .filters_toggler {
  flex: 1;
  max-width: 220px;
  margin-right: 0.5rem;
  height: 5rem;
  padding: 0 1rem;
  background-color: #ffffff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .shop_main_section .product_list_wrapper .product_list_head .filters_toggler {
    display: none;
  }
}
.shop_main_section .product_list_wrapper .product_list_head .filters_toggler .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .shop_main_section .product_list_wrapper .product_list_head .filters_toggler .icon {
    font-family: "Outfit", "sans-serif";
    font-weight: 600;
  }
}
.shop_main_section .product_list_wrapper .product_list_head .pages_num {
  display: none;
}
@media (min-width: 992px) {
  .shop_main_section .product_list_wrapper .product_list_head .pages_num {
    display: block;
  }
}
.shop_main_section .product_list_wrapper .product_list_head .sorter {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .shop_main_section .product_list_wrapper .product_list_head .sorter {
    padding: 1.6rem 7px;
    background-color: #fff;
    border-radius: 8px;
  }
}
.shop_main_section .product_list_wrapper .product_list_head .sorter p {
  margin-bottom: 0;
  margin-right: 0.5rem;
}
.shop_main_section .product_list_wrapper .product_list_head .sorter select {
  border: none;
  box-shadow: none;
  background-color: transparent;
  font-family: "Roboto Flex", "sans-serif";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.135rem;
}
.shop_main_section .product_list_wrapper .product_list {
  width: 100%;
  min-height: 100%;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.shop_main_section .product_list_wrapper .product_list .content_product {
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
  margin-bottom: 2rem;
  padding: 1.5rem 0 2rem;
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 450px) {
  .shop_main_section .product_list_wrapper .product_list .content_product {
    margin-inline: auto;
    flex: 0 0 80%;
    width: 80%;
  }
}
@media (min-width: 576px) {
  .shop_main_section .product_list_wrapper .product_list .content_product {
    margin-inline: unset;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    flex: 0 0 calc(50% - 1.5rem);
    width: calc(50% - 1.5rem);
  }
}
@media (min-width: 768px) {
  .shop_main_section .product_list_wrapper .product_list .content_product {
    margin-inline: unset;
    margin-right: 2rem;
    margin-bottom: 2rem;
    flex: 0 0 calc(50% - 1rem);
    width: calc(50% - 1rem);
  }
}
@media (min-width: 992px) {
  .shop_main_section .product_list_wrapper .product_list .content_product {
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 576px) {
  .shop_main_section .product_list_wrapper .product_list .content_product:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (min-width: 1265px) {
  .shop_main_section .product_list_wrapper .product_list .content_product:nth-of-type(2n) {
    margin-right: 1.5rem;
  }
}
@media (min-width: 1265px) {
  .shop_main_section .product_list_wrapper .product_list .content_product:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .shop_main_section .product_list_wrapper .product_list .content_product {
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    flex: 0 0 calc(50% - 1.5rem);
    width: calc(50% - 1.5rem);
  }
}
@media (min-width: 1265px) {
  .shop_main_section .product_list_wrapper .product_list .content_product {
    flex: 0 0 calc(33.33% - 1rem);
    width: calc(33.33% - 1rem);
  }
}
.shop_main_section .product_list_wrapper .product_list .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;
}
.shop_main_section .product_list_wrapper .product_list .content_product .right_label {
  width: 5rem;
  position: absolute;
  top: 1.5rem;
  right: 2.2rem;
  z-index: 2;
}
@media (min-width: 768px) {
  .shop_main_section .product_list_wrapper .product_list .content_product .right_label {
    width: 5rem;
  }
}
@media (min-width: 1450px) {
  .shop_main_section .product_list_wrapper .product_list .content_product .right_label {
    width: 6rem;
  }
}
.shop_main_section .product_list_wrapper .product_list .content_product .content_product_img::after {
  padding-top: 82%;
  background-color: #ffffff;
}
.shop_main_section .product_list_wrapper .product_list .content_product .content_product_img img {
  object-fit: contain;
}
.shop_main_section .product_list_wrapper .product_list .content_product .title_wrap {
  padding: 1rem 2.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -3rem;
  position: relative;
}
.shop_main_section .product_list_wrapper .product_list .content_product .title_wrap .content_product_title {
  margin-bottom: 0;
}
.shop_main_section .product_list_wrapper .product_list .content_product .title_wrap .content_product_add_to_fav {
  font-size: 2rem;
  line-height: 2rem;
}
.shop_main_section .product_list_wrapper .product_list .content_product .prices {
  margin-top: auto;
}
.shop_main_section .product_list_wrapper .product_list .content_product .prices .content_product_price_item {
  padding: 1rem 2.2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop_main_section .product_list_wrapper .product_list .content_product .prices .content_product_price_item:nth-of-type(odd) {
  background-color: rgba(217, 217, 217, 0.2);
}
@media (min-width: 576px) {
  .shop_main_section .product_list_wrapper .product_list .content_product .prices .content_product_price_item:last-of-type {
    min-height: 8.2rem;
  }
}
.shop_main_section .product_list_wrapper .product_list .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;
}
@media (min-width: 576px) {
  .shop_main_section .product_list_wrapper .product_list .content_product .prices .content_product_price_item .content_product_price_type {
    max-width: 120px;
  }
}
@media (min-width: 992px) {
  .shop_main_section .product_list_wrapper .product_list .content_product .prices .content_product_price_item .content_product_price_type {
    max-width: 135px;
  }
}
@media (min-width: 1450px) {
  .shop_main_section .product_list_wrapper .product_list .content_product .prices .content_product_price_item .content_product_price_type {
    max-width: 150px;
  }
}
.shop_main_section .product_list_wrapper .product_list .content_product .btn_wrapper {
  padding: 1rem 2.2rem 1rem;
}
.shop_main_section .product_list_wrapper .product_list .content_product .content_product_add_to_cart {
  box-shadow: none;
  border: none;
  display: block;
  border-radius: 6px;
  width: 100%;
  padding: 1.2rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background-color: #424dbf;
  color: #ffffff;
}

.irs-from,
.irs-to,
.irs-single {
  top: 40px;
  padding: 0;
  white-space: nowrap;
}
.irs-from:hover,
.irs-to:hover,
.irs-single:hover {
  cursor: pointer;
}

.irs-from {
  left: 0 !important;
  padding-left: 0 !important;
}

.irs-to {
  left: 100% !important;
  transform: translateX(-100%) !important;
}

.irs--flat .irs-from::before,
.irs--flat .irs-to::before,
.irs--flat .irs-single::before {
  display: none;
}

.irs--flat:hover {
  cursor: pointer;
}
.irs--flat .irs-line {
  height: 2px;
}
.irs--flat .irs-bar {
  height: 2px;
  background-color: #000;
}
.irs--flat .irs-handle {
  top: 70%;
  transform: translateY(-50%);
}
.irs--flat .irs-handle:hover {
  cursor: pointer;
}
.irs--flat .irs-handle i:not(:last-of-type) {
  display: none;
}
.irs--flat .irs-handle i:last-of-type {
  display: block;
  width: 13px;
  height: 13px;
  border: none;
  border-radius: 50%;
  background-color: #000;
}
.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
  top: 40px;
  white-space: nowrap;
  color: #000;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6rem;
  text-shadow: none;
  background-color: transparent;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.irs--flat .irs-from:hover,
.irs--flat .irs-to:hover,
.irs--flat .irs-single:hover {
  cursor: pointer;
}
.irs--flat .irs-from::after,
.irs--flat .irs-to::after,
.irs--flat .irs-single::after {
  content: "€";
  display: inline-block;
  position: relative;
  left: 0;
  bottom: 0;
  height: 100%;
  margin-left: 0;
  overflow: hidden;
  border: none;
}

.price-range[data-currency=RSD] .irs--flat .irs-from::after,
.price-range[data-currency=RSD] .irs--flat .irs-to::after,
.price-range[data-currency=RSD] .irs--flat .irs-single::after {
  content: "RSD";
  display: inline-block;
  position: relative;
  left: 0;
  bottom: 0;
  height: 100%;
  margin-left: 0;
  overflow: hidden;
  border: none;
}

.cta_banner_section {
  padding: 5rem 0;
}
.cta_banner_section .cta_banner {
  overflow: hidden;
  border-radius: 12px;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .cta_banner_section .cta_banner {
    background-position: center top;
  }
}
.cta_banner_section .cta_banner .cta_banner_content {
  padding: 10rem 1rem 8.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  flex: 0 0 100%;
  width: 100%;
  text-align: center;
  color: #ffffff;
}
@media (min-width: 768px) {
  .cta_banner_section .cta_banner .cta_banner_content {
    background-color: unset;
    margin-left: auto;
    padding: 10rem 1rem 8.5rem;
    flex: 0 0 50%;
    width: 50%;
    text-align: left;
  }
}
@media (min-width: 992px) {
  .cta_banner_section .cta_banner .cta_banner_content {
    flex: 0 0 40%;
    width: 40%;
    padding: 12rem 1rem 8.5rem;
  }
}
.cta_banner_section .cta_banner .cta_banner_content .cta_banner_title {
  margin-bottom: 2.5rem;
  max-width: 491px;
  font-family: "Outfit", "sans-serif";
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 4.4rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .cta_banner_section .cta_banner .cta_banner_content .cta_banner_title {
    font-size: 4.5rem;
    line-height: 5.436rem;
    margin-inline: unset;
  }
}
@media (min-width: 992px) {
  .cta_banner_section .cta_banner .cta_banner_content .cta_banner_title {
    font-size: 5.5rem;
    line-height: 6.436rem;
  }
}
@media (min-width: 1265px) {
  .cta_banner_section .cta_banner .cta_banner_content .cta_banner_title {
    font-size: 6.5rem;
    line-height: 7.436rem;
  }
}
.cta_banner_section .cta_banner .cta_banner_content .cta_banner_desc {
  margin-bottom: 3.6rem;
  max-width: 473px;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.5rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .cta_banner_section .cta_banner .cta_banner_content .cta_banner_desc {
    margin-inline: unset;
  }
}
@media (min-width: 1265px) {
  .cta_banner_section .cta_banner .cta_banner_content .cta_banner_desc {
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
.cta_banner_section .cta_banner .cta_banner_content .cta_banner_btn {
  display: inline-block;
  border-radius: 6px;
  padding: 1.2rem 3rem;
  background-color: #0ac1ff;
  font-family: "Outfit", "sans-serif";
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.55rem;
  letter-spacing: 0.36px;
  color: #ffffff;
}

.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-shop.css.map */
