/*
Theme Name: Krex
Author: Stroniarz.pl
Author URI: https://stroniarz.pl/
Description: Cusyom, made from scratch, theme created especially for Krex's website.
Requires at least: 5.3
Tested up to: 5.7
Requires PHP: 5.6
Version: 1.1
Text Domain: krex
*/
/**
 * Reset specific elements to make them easier to style in other contexts.
 */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
form,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/**
 * Apply generic border-box to all elements.
 * See:
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
html {
  /* Apply border-box across the entire page. */
  box-sizing: border-box;
  font-family: var(--global--font-secondary);
  line-height: var(--global--line-height-body);
}

/**
 * Relax the definition a bit, to allow components to override it manually.
 */
*, *::before, *::after {
  box-sizing: inherit;
}

button {
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}

:root {
  --color-primary: #2546A0;
  --color-primary-hover: #002273;
  --color-secondary: #F8F8FF;
  --color-border: #DEDEDE;
  --space-row: clamp(2rem, 3.124vw, 3.748rem);
  --space-section: clamp(4rem, 6.248vw, 7.496rem);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 600;
}

h1, .h1 {
  font-size: 2rem;
}

h2, .h2 {
  font-size: 1.8rem;
}

h3, .h3 {
  font-size: 1.6rem;
}

h4, .h4 {
  font-size: 1.4rem;
}

h5, .h5 {
  font-size: 1.2rem;
}

h6, .h6 {
  font-size: 1rem;
}

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

p {
  margin-bottom: 2rem;
}

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

video, iframe {
  width: 100%;
  display: block;
}

video {
  cursor: pointer;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 14px;
  font-weight: 600;
}

input, textarea {
  outline: none;
  font-family: "Montserrat", sans-serif;
}

input[type=text], input[type=password], input[type=email], input[type=tel], input[type=number] {
  height: 55px;
  padding: 1rem;
  border: 1px solid var(--color-border);
  display: block;
  width: 100%;
}

textarea {
  min-height: 110px;
  padding: 1rem;
  border: 1px solid var(--color-border);
  display: block;
  width: 100%;
}

input:focus, input:active, textarea:focus {
  border-color: var(--color-primary);
}

button:disabled {
  opacity: 0.5;
}

.aligncenter {
  text-align: center;
  justify-content: center;
}

.container, .background-fancy > .wp-block-group__inner-container {
  max-width: 1335px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  max-width: 1700px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .container-fluid {
    width: 90%;
  }
}

.container-narrow {
  max-width: 900px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.background-fancy {
  background-color: var(--color-secondary);
  border-left: 4px solid var(--color-primary);
  position: relative;
}

.background-fancy.wp-block-group.has-background {
  padding: 0;
}

.btn, .wp-block-button__link, .woocommerce .button, input[type=submit] {
  padding: 1rem 1.75rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  border: 0;
  font-size: 1rem;
  display: inline-block;
  line-height: normal;
  text-align: center;
  cursor: pointer;
}

.btn-primary:not(.wp-block-button), .btn-primary.wp-block-button .wp-block-button__link, .woocommerce .button {
  background-color: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}

.btn-primary:not(.wp-block-button):hover, .btn-primary.wp-block-button .wp-block-button__link:hover, .woocommerce .button:hover {
  background-color: var(--color-primary-hover);
  border: 2px solid var(--color-primary-hover);
}

.btn-light {
  background-color: #fff;
  border: 2px solid var(--color-border);
}

.btn-light:hover {
  background-color: #f9f9f9;
}

.btn-outline-primary:not(.wp-block-button), .btn-outline-primary.wp-block-button .wp-block-button__link {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline-primary:not(.wp-block-button):hover, .btn-outline-primary.wp-block-button .wp-block-button__link:hover {
  background-color: var(--color-primary);
  color: #fff;
}

.btn-outline-white:not(.wp-block-button), .btn-outline-white.wp-block-button .wp-block-button__link {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

.btn-outline-white:not(.wp-block-button):hover, .btn-outline-white.wp-block-button .wp-block-button__link:hover {
  background-color: #fff;
  color: var(--color-primary);
}

.display-1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.mt-30 {
  margin-top: 2rem !important;
}

.mb-30 {
  margin-bottom: 2rem !important;
}

.my-30 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-60 {
  margin-top: var(--space-row) !important;
  margin-bottom: var(--space-row) !important;
}

.mt-60 {
  margin-top: var(--space-row) !important;
}

.mb-60 {
  margin-bottom: var(--space-row) !important;
}

.mt-120 {
  margin-top: var(--space-section) !important;
}

.mb-120 {
  margin-bottom: var(--space-section) !important;
}

.my-120 {
  margin-top: var(--space-section) !important;
  margin-bottom: var(--space-section) !important;
}

.pt-30 {
  padding-top: 2rem !important;
}

.pb-30 {
  padding-bottom: 2rem !important;
}

.py-30 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.pb-60 {
  padding-bottom: var(--space-row) !important;
}

.py-60 {
  padding-top: var(--space-row) !important;
  padding-bottom: var(--space-row) !important;
}

.pt-60 {
  padding-top: var(--space-row) !important;
}

.pt-120 {
  padding-top: var(--space-section) !important;
}

.pb-120 {
  padding-bottom: var(--space-section) !important;
}

.py-120 {
  padding-top: var(--space-section) !important;
  padding-bottom: var(--space-section) !important;
}

.background-fancy-container, .background-fancy > .wp-block-group__inner-container {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.krex_dots_before::before, .krex_dots_before::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSIxMSI+PGNpcmNsZSBkYXRhLW5hbWU9IkVsbGlwc2UgMTIiIGN4PSIyLjUiIGN5PSIyLjUiIHI9IjIuNSIgZmlsbD0iIzI3NWZlNSIvPjwvc3ZnPg==);
  filter: brightness(0);
  opacity: 0.05;
}

.krex_dots_before::before {
  width: 8vw;
  height: 16vw;
  min-width: 100px;
  min-height: 240px;
  left: 0;
  top: 0;
}

.krex_dots_before::after {
  width: 8vw;
  min-width: 100px;
  height: 150px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.wp-block {
  max-width: 90%;
}

.wp-block-columns {
  margin-bottom: 0;
}

@media (max-width: 599px) {
  .wp-block-column:not(:last-of-type) {
    margin-bottom: 2rem;
  }
}
.krex_dots_top {
  position: relative;
  z-index: 0;
}
.krex_dots_top::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSIxMSI+PGNpcmNsZSBkYXRhLW5hbWU9IkVsbGlwc2UgMTIiIGN4PSIyLjUiIGN5PSIyLjUiIHI9IjIuNSIgZmlsbD0iIzI3NWZlNSIvPjwvc3ZnPg==);
  filter: brightness(0);
  opacity: 0.05;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 210px;
  width: 150px;
  z-index: -1;
}

.krex_dots_bottom {
  position: relative;
  z-index: 0;
}
.krex_dots_bottom::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSIxMSI+PGNpcmNsZSBkYXRhLW5hbWU9IkVsbGlwc2UgMTIiIGN4PSIyLjUiIGN5PSIyLjUiIHI9IjIuNSIgZmlsbD0iIzI3NWZlNSIvPjwvc3ZnPg==);
  filter: brightness(0);
  opacity: 0.05;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 210px;
  width: 150px;
  z-index: -1;
}

.select2-container .select2-selection--single {
  height: 55px;
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 54px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 1rem;
  font-size: 13px;
}

.about_us__video_section {
  background-image: linear-gradient(to bottom, #fff 50%, var(--color-secondary) 50%);
}
#header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 120;
  background-color: #fff;
}
#header .container-fluid {
  border-bottom: 1px solid var(--color-border);
}
#main {
  margin-top: 75px;
}
@media(min-width: 768px) {
  #main {
    margin-top: 91px;
  }
}
.header {
  display: flex;
  justify-content: space-between
}
@media(min-width: 600px) {
  .header {
    width: 100%
  }
}
.header .header__cta_linke {
  transition: background-color 0.3s ease-in-out;
}
.header .header__cta_linke:hover {
  background-color: var(--color-primary-hover);
}
.header .header__cta {
  height: 100%;
  margin-left: 1.563vw;
}
.header .header__cta a {
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  font-size: 13px;
  width: 90px;
  font-weight: 400;
  height: calc(100% + 1px)
}

@media (min-width: 768px) {
  .header .header__cta a {
    height: calc(100% + 36px);
    transform: translateY(-6px);
    width: 120px;
    font-size: 1rem;
    font-weight: 600
  }
  .menu-button-container {
    display: none;
  }
}
@media (min-width: 768px) {
  .header__menu_toggler {
    display: none;
  }
}
.menu-button-container {
  margin-left: 5vw;
}
.menu-button-container .header__menu_toggler {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  border: 0;
  text-transform: uppercase;
}
.menu-button-container .header__menu_toggler svg {
  width: 2rem;
  height: 2rem;
}

.site-logo a {
  display: flex;
}

.krex_logo {
  max-width: 93px;
  max-height: 50px;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .krex_logo {
    max-width: 122px;
    max-height: 66px;
  }
}

.header__navigation {
  display: flex;
  align-items: center;
}

.sub-menu, .header__menu {
  list-style-type: none;
}

.header__menu {
  display: flex;
  align-items: center;
}
.header__menu li a {
  font-weight: 600;
  color: #000;
  transition: color 0.3s ease-in-out;
}
.header__menu li a:hover {
  color: var(--color-primary);
}
.header__menu > li {
  margin-left: 1.563vw;
  position: relative;
}

@media (min-width: 768px) {
  .primary-menu-container .menu-item-has-children {
    padding: 1.5rem 0;
  }
  .primary-menu-container .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
  }
}
.primary-menu-container .sub-menu a {
  font-weight: normal;
}
@media (min-width: 768px) {
  .primary-menu-container .sub-menu {
    position: absolute;
    z-index: 101;
    background-color: #fff;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    left: 50%;
    transform: translateX(-50%) translateY(1rem);
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    box-shadow: 0px 0px 1rem 0px #0003;
    padding: 1rem;
    top: 4rem;
    visibility: hidden;
  }
  .primary-menu-container .sub-menu li a {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease-in-out;
    text-transform: none;
  }
  .primary-menu-container .sub-menu li a:hover {
    background-color: var(--color-secondary);
  }
  .primary-menu-container .sub-menu li a:hover::after {
    transform: translateX(0);
    opacity: 1;
  }
  .primary-menu-container .sub-menu li a::after {
    content: "";
    display: block;
    opacity: 0;
    transform: translateX(-0.25rem);
    transition: 0.3s transform ease-in-out;
    width: 1rem;
    height: 1rem;
    margin-left: 3rem;
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IldhcnN0d2FfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHdpZHRoPSIxNnB4IiBoZWlnaHQ9IjE2cHgiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTYgMTYiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iIzI1NDZBMCIgZD0iTTQuNjQ2LDEuNjQ2QzQuODQxLDEuNDUxLDUuMTU4LDEuNDUsNS4zNTMsMS42NDVjMCwwLDAsMCwwLjAwMSwwLjAwMWw2LDYNCgljMC4xOTUsMC4xOTUsMC4xOTYsMC41MTIsMC4wMDIsMC43MDdjLTAuMDAxLDAtMC4wMDEsMC0wLjAwMiwwLjAwMWwtNiw2Yy0wLjE5NSwwLjE5NS0wLjUxMywwLjE5NS0wLjcwOCwwcy0wLjE5NS0wLjUxMiwwLTAuNzA3DQoJTDEwLjI5Myw4TDQuNjQ2LDIuMzU0QzQuNDUxLDIuMTU5LDQuNDUsMS44NDIsNC42NDYsMS42NDZDNC42NDYsMS42NDYsNC42NDYsMS42NDYsNC42NDYsMS42NDZ6Ii8+DQo8L3N2Zz4NCg==");
  }
  .primary-menu-container .sub-menu li:not(:last-child) a {
    border-bottom: 1px solid var(--color-border);
  }
}
@media (max-width: 767px) {
  .primary-menu-container {
    position: fixed;
    display: flex;
    z-index: 300;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-left: 4px solid var(--color-primary);
    background-color: var(--color-secondary);
    justify-content: center;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.3s transform ease-in-out;
  }
  .primary-menu-container.active {
    transform: translateX(0);
  }
  .primary-menu-container .header__menu {
    flex-direction: column;
    padding: 6rem 0;
  }
  .primary-menu-container .header__menu li {
    text-align: center;
    margin-left: 0;
  }
  .primary-menu-container .header__menu li a {
    margin-bottom: 1rem;
    display: block;
  }
  .primary-menu-container .header__menu_toggler {
    position: absolute;
    right: 5vw;
    top: 1rem;
    background-color: transparent;
    border: 0;
  }
  .primary-menu-container .header__menu_toggler svg {
    width: 3rem;
    height: 3rem;
  }
}
@media (min-width: 768px) {
  .primary-menu-container .menu-button-container {
    display: none;
  }
  .primary-menu-container.krex_dots_before::after {
    display: none;
  }
  .primary-menu-container.krex_dots_before::before {
    display: none;
  }
}

@media (min-width: 768px) {
  .ghost-link a {
    padding: 1rem;
    background-color: var(--color-secondary);
  }
}

.header__woo_icons {
  list-style: none;
  margin-left: 1.563vw;
  display: flex;
  align-items: center;
}
.header__woo_icons > li:not(:last-child) {
  margin-right: 1.563vw;
}
.header__woo_icons > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  color: #000;
  font-size: 13px;
  text-transform: uppercase;
}
.header__woo_icons > li > a .custom-header-icon-label {
  margin-top: 3px;
}
.header__woo_icons > li > a svg {
  width: 1.5rem;
  height: 1.5rem;
}
.header__woo_icons .header__woo_icon_cart .cart-contents-count {
  position: absolute;
  right: 0;
  top: -0.5rem;
  background-color: var(--color-primary);
  color: #fff;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
}

.footer__top {
  background-color: var(--color-secondary);
  border-top: 4px solid var(--color-primary);
}

.footer__menu_container {
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1rem;
  padding: 1.5rem 0;
}
.footer__menu_container .footer__menu {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__menu_container .footer__menu li {
  margin: 0.25rem 0.75rem;
}
.footer__menu_container .footer__menu li a {
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  transition: color 0.3s ease-in-out;
}
.footer__menu_container .footer__menu li a:hover {
  color: var(--color-primary);
}

.footer__credits {
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 600px) and (max-width: 1199px) {
  .footer__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }
  .footer__row .footer__widgets:last-of-type {
    grid-column: 1/-1;
  }
}
@media (min-width: 1200px) {
  .footer__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.footer__row .btn {
  width: 100%;
  text-align: center;
}

.footer__widgets .gallery {
  display: flex;
}
.footer__widgets img {
  max-width: 35px;
}
.footer__widgets h6 {
  margin-bottom: 1rem;
}
.footer__widgets .widget_nav_menu ul {
  list-style: none;
}
.footer__widgets .widget_nav_menu ul li:not(:last-child) {
  margin-bottom: 0.25rem;
}
.footer__widgets .widget_nav_menu ul a {
  color: #000;
  transition: color 0.3s ease-in-out;
}
.footer__widgets .widget_nav_menu ul a:hover {
  color: var(--color-primary);
}
@media (max-width: 599px) {
  .footer__widgets:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.footer__widgets .widget:not(:last-of-type) {
  margin-right: 0.94rem;
  margin-bottom: 0.25rem;
}

.certificate_single {
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  transition: background-color 0.3s ease-in-out;
  background-color: #fff;
  padding: 1rem;
  height: 100%
}
@media(min-width: 600px) {
  .certificate_single {
    align-items: center;
    display: grid;
    grid-template-columns: 150px 1fr;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
  .certificate_single .certificate_single__image {
    text-align: center;
  }
}
.certificate_single:hover {
  background-color: var(--color-secondary);
}
.certificate_list, .product_list__certificates {
  display: grid;
  grid-gap: 1rem
}
@media(max-width: 599px) {
  .certificate_list, .product_list__certificates {
    grid-template-columns: 1fr 1fr;
  }
  .certificate_single .certificate_single__image img {
    margin-bottom: 0.5rem
  }
}
.certificate_single .certificate_single__image img {
  width: auto;
  max-width: 120px;
  max-height: 75px;
  height: 15vw
}
.certificate_single .certificate_single__info {
  color: #000;
}
.certificate_single .certificate_single__title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.certificate_single .certificate_single__description {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.certificate_single .certificate_single__link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  color: #fff;
  fill: #fff;
  text-transform: uppercase;
  font-size: 12px;
  width: 100%;
  padding: 0.5rem 0;
  transition: background-color 0.3s ease-in-out;
}
.certificate_single .certificate_single__link:hover {
  background-color: var(--color-primary-hover);
}
@media (min-width: 500px) {
  .certificate_single .certificate_single__link {
    flex-direction: column;
    width: 5.375rem;
  }
}
.certificate_single .certificate_single__link svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 500px) {
  .certificate_single .certificate_single__link svg {
    margin-bottom: 0.25rem;
  }
}
@media (max-width: 499px) {
  .certificate_single .certificate_single__link svg {
    margin-right: 0.25rem;
  }
}
.icon_box {
  display: flex;
}
.icon_box .icon_box__icon {
  margin-right: 0.75rem;
}
.icon_box .icon_box__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  top: 2px;
  position: relative;
  fill: var(--color-primary);
}
.icon_box .icon_box__title {
  font-weight: 600;
}
.icon_box a {
  color: #000;
  transition: color 0.3s ease-in-out;
}
.icon_box a:hover {
  color: var(--color-primary);
}

.icon_box_wrap:not(:last-of-type) {
  margin-bottom: 1rem;
}

.has-text-color a {
  color: inherit;
}
.has-text-color a:hover {
  color: inherit;
}

.has-white-color .icon_box svg {
  fill: #fff;
}

.krex_contact__contact_row {
  position: relative;
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 600px) {
  .krex_contact__contact_row::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 50%;
    bottom: 0;
    width: 210px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSIxMSI+PGNpcmNsZSBkYXRhLW5hbWU9IkVsbGlwc2UgMTIiIGN4PSIyLjUiIGN5PSIyLjUiIHI9IjIuNSIgZmlsbD0iIzI3NWZlNSIvPjwvc3ZnPg==);
    filter: brightness(0);
    opacity: 0.05;
  }
  .krex_contact__contact_row.dots_end::before {
    right: 0;
  }
}

.offer_list__list {
  display: grid;
  grid-gap: 30px;
}
@media (min-width: 600px) {
  .offer_list__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.offer_list__list .offer__card {
  position: relative;
}
@media (min-width: 600px) {
  .offer_list__list .offer__card:nth-child(2n):not(:last-child):before {
    content: "";
    display: block;
    position: absolute;
    width: 80px;
    height: 210px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSIxMSI+PGNpcmNsZSBkYXRhLW5hbWU9IkVsbGlwc2UgMTIiIGN4PSIyLjUiIGN5PSIyLjUiIHI9IjIuNSIgZmlsbD0iIzI3NWZlNSIvPjwvc3ZnPg==);
    filter: brightness(0);
    opacity: 0.05;
    left: calc(-160px / 3);
    bottom: calc(-420px / 3);
  }
}
@media (max-width: 599px) {
  .offer_list__list .offer__card:not(:last-child):before {
    content: "";
    display: block;
    position: absolute;
    width: 80px;
    height: 210px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSIxMSI+PGNpcmNsZSBkYXRhLW5hbWU9IkVsbGlwc2UgMTIiIGN4PSIyLjUiIGN5PSIyLjUiIHI9IjIuNSIgZmlsbD0iIzI3NWZlNSIvPjwvc3ZnPg==);
    filter: brightness(0);
    opacity: 0.05;
    left: 50%;
    bottom: -100px;
    z-index: -1;
    transform: translateX(-50%);
  }
}
.offer_list__list .offer__card .offer__thumbnail {
  position: relative;
}
.offer_list__list .offer__card .offer__thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-image: linear-gradient(to bottom, rgba(38, 71, 161, 0), rgba(38, 71, 161, 0.5));
  filter: brightness(1);
  transition: filter 0.3s ease-in-out;
}
.offer_list__list .offer__card .offer__thumbnail img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 500px) {
  .offer_list__list .offer__card .offer__thumbnail img {
    height: 475px;
  }
}
.offer_list__list .offer__card .offer__info .offer__link {
  font-weight: bold;
  display: flex;
  align-items: center;
}
.offer_list__list .offer__card .offer__info .offer__link svg {
  margin-left: 0.5rem;
}
@media (hover: hover) {
  .offer_list__list .offer__card .offer__info {
    padding: clamp(1rem, 3.125vw, 3.75rem);
    padding-top: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    color: #fff;
    transform: translateY(58%);
    transition: transform 0.3s ease-in-out;
  }
  .offer_list__list .offer__card .offer__info .offer__description {
    opacity: 0;
    transform: translateY(2rem);
    transition: 0.3s all ease-in-out 0.1s;
  }
  .offer_list__list .offer__card .offer__info .offer__link {
    opacity: 0;
    transform: translateY(2rem);
    transition: 0.3s all ease-in-out 0.2s;
  }
  .offer_list__list .offer__card .offer__info svg {
    fill: #fff;
  }
}
@media (hover: none) {
  .offer_list__list .offer__card .offer__info {
    color: #000;
    padding: 2rem;
    background-color: var(--color-secondary);
    border-left: 4px solid var(--color-primary);
  }
  .offer_list__list .offer__card .offer__info svg {
    fill: #000;
  }
}
.offer_list__list .offer__card .offer__info .offer__title {
  font-size: clamp(1.4rem, 1.771vw, 2rem);
  margin-bottom: 0;
}
.offer_list__list .offer__card .offer__info .offer__description {
  margin: 0.75rem 0;
  max-width: 532px;
}
@media (min-width: 500px) {
  .offer_list__list .offer__card:hover .offer__info {
    transform: translateY(0);
  }
  .offer_list__list .offer__card:hover .offer__info .offer__description, .offer_list__list .offer__card:hover .offer__info .offer__link {
    transform: translateY(0);
    opacity: 1;
  }
}
.offer_list__list .offer__card:hover .offer__thumbnail::before {
  filter: brightness(0);
}
.offer_list__list.offer_list__odd .offer__card:nth-last-child(1) {
  grid-column: 1/-1;
}

.krex_separator {
  margin-bottom: 2rem;
  display: flex;
}

.partners_list__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
.partners_list__list .partner_card {
  padding-bottom: 100%;
  height: 0;
  border: 1px solid var(--color-border);
  position: relative;
  flex-basis: 159px;
  margin: 0 0.5rem 1rem 0.5rem;
}
@media(min-width: 600px) {
  .partners_list__list {
    display: flex;
  }
  .partners_list__list .partner_card {
    padding-bottom: 177px;
    flex-basis: 177px;
  }
}
.partners_list__list .partner_card img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: clamp(1rem, 1.563vw, 1.875rem);
}
.partners_list__list a.partner_card {
  transition: 0.3s background-color ease-in-out;
}
.partners_list__list a.partner_card:hover {
  background-color: var(--color-secondary);
}

@media (min-width: 500px) {
  .terminals__buttons {
    display: flex;
  }
}
.terminals__buttons button {
  flex: 1;
}
@media (max-width: 499px) {
  .terminals__buttons button {
    width: 100%;
  }
}

.terminals__video_container {
  position: relative;
}
.terminals__video_container::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: -4px;
  background-color: #fff;
}
.terminals__video_container .container {
  position: relative;
  z-index: 1;
}
.terminals__video_container .container video {
  cursor: pointer;
}

.counter__heading {
  font-size: clamp(1.5rem, 2.083vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1;
  font-weight: bold;
}

.hero_video {
  position: relative;
}
.hero_video .hero_video__video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.hero_video .hero_video__description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  position: relative;
  min-height: calc(100vh - 90px);
  background-image: linear-gradient(to bottom, rgba(38, 71, 161, 0), rgba(38, 71, 161, 0.5));
}
.hero_video .hero_video__description .hero_video__inner_description > * {
  margin-bottom: 2rem;
}
.hero_video .hero_video__description .wp-block-buttons > .wp-block-button {
  margin-left: 0.5rem;
}
.hero_video .hero_video__description .wp-block-buttons > .wp-block-button:last-child {
  margin-right: 0.5rem;
}

@media (min-width: 768px) {
  .hero_section .hero_section__left_column_inner {
    width: 45%;
  }
  .hero_section .hero_section__right_column {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    left: 50%;
  }
  .hero_section .hero_section__right_column img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}
.hero_section .hero_section__left_column {
  display: flex;
  align-items: center;
  min-height: 60vh;
}
.hero_section .hero_section__left_column_inner *:nth-last-child(1) {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .hero_section .hero_section__right_column {
    position: relative;
  }
}
.hero_section .hero_section__right_column img {
  display: block;
}
.hero_section .hero_section__right_column::before {
  content: "";
  display: block;
  background-image: linear-gradient(to bottom, rgba(38, 71, 161, 0), rgba(38, 71, 161, 0.5));
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero_section__bottom {
  background-image: linear-gradient(180deg, transparent 50%, #fff 50%);
  position: relative;
}
@media (min-width: 768px) {
  .hero_section__bottom {
    margin-left: -4px;
    margin-right: -4px;
    font-size: 1.25rem;
  }
}
.hero_section__bottom .hero_section__bottom_container {
  background-color: var(--color-primary);
  color: #fff;
  position: relative;
}
@media (max-width: 767px) {
  .hero_section__bottom .hero_section__bottom_container {
    width: 100%;
    padding: var(--space-row);
  }
}
@media (min-width: 768px) {
  .hero_section__bottom .hero_section__bottom_container {
    padding: var(--space-section);
  }
  .hero_section__bottom .hero_section__bottom_container::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 80%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDkuOTEiIGhlaWdodD0iMTY5Ljg4NiIgdmlld0JveD0iMCAwIDIwOS45MSAxNjkuODg2Ij48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTUwLjIzNiAtMTU0Ljg3MykiPjxwYXRoIGQ9Ik00MC43NzcsMjQuNzY0YTIzLjE1NSwyMy4xNTUsMCwwLDEsOC4zOTIsMS42MDgsMjEuMiwyMS4yLDAsMCwwLC4yNjgsMy4zMTZjLjE3OSwxLjM1NywxLjE2LDE4LjY5MywxLjE2LDIxLDAsMS4xNTYtLjA5LDIuNjEzLDAsMy43MTlhNTAuMDQyLDUwLjA0MiwwLDAsMSwuMTc5LDUuMTc2YzAsLjkuMTc4LjkuMTc4LDEuODA4LjA4OSwyLjcxMywwLDQuMjcyLjE3OCw3LjI4Ni4wOSwyLjI2MiwwLDQuOTc1LDAsNy4yODYsMCwxLjQ1Ny4xNzgsMi4zMTIuMTc4LDMuNTY4djMuNzE4SDY3LjgzYy0uNDQ3LTUuNDc4LS4zNTctOS43NDktLjM1Ny0xNS4yNzYsMC0zLjk3LS4xNzgtMTEuMzU2LS41MzYtMTUuMTI1TDcyLjIsNTYuNDcxYzEzLjM5Myw5LDI5LjU1NCw2LjA4MSw0NC4zNzUsMi44NjUsMTMuMy0yLjkxNCwyNi41MTgtNy43ODksNDAtMTAuNTUyYTUxLjYxMyw1MS42MTMsMCwwLDEsNy40MTEtLjljNS4wOS0uNCw5LjIuNCwxMS42MDgsNC45NzUsMy44MzksNy40ODcsNC41NTQsMTkuNCw0LjU1NCwzMC40aDE0LjgyMWwuNTM2LTcuODM5Yy4yNjgtOC43OTMtLjgtMjAuNjUyLTQuNTU0LTI2LjM4YTE2Ljc4OSwxNi43ODksMCwwLDAtNy45NDYtNS45M2MtMTguNzUtNy42MzgtNDQuNzMyLDcuNTg4LTY3LjMyMSw3LjU4OC0xNC4xMDcsMC0yNi4xNjEtMy4yMTUtMzYuNDI4LTExLjM1NmE3Ljc2Niw3Ljc2NiwwLDAsMS0uODkzLS43NTRMNzUuNTA4LDM2LjA3YTk2LjE0LDk2LjE0LDAsMCwxLTYuMzM5LTcuMzM2Yy0xLjctMi4yNjEtMi42NzktMy44Ny00LjItNS45My0xLjMzOS0xLjkwOS0yLjg1Ny00LjI3LTQuMi02LjA4LTEuOTY0LTIuNjEzLTQuMDE4LTUuMjc2LTcuMDU0LTYuNjgzLTIuMDUzLS45NTUtMy42Ni0uNTU0LTYuMDcxLS45LTQuMi0uNTUyLTYuNzg2LS41NTItMTEuMjUtMi4zNjFhMjQuMTU2LDI0LjE1NiwwLDAsMS00LjQ2NS0yLjMxMkEyMy4xMDcsMjMuMTA3LDAsMCwxLDIzLjE4Ny03LjQsNzcuNDI2LDc3LjQyNiwwLDAsMSwyMC4yNC0xOC4xNDlDMTguNzIzLTI1LjM4NSwxMy4yNzctNDcuNywxMC4xNTEtNTUuODg3QTE2LjE3MSwxNi4xNzEsMCwwLDAsOS4xNy01OC4zTDguMTg3LTYwLjMxbC0uMjY4LS4zYzAsMS41NTgsMS4yNSwxMC43NTQsMS4yNSwxMy41MTcsMCwxLjkxLjM1NywzLjkyLjM1Nyw0Ljk3NWExMy42NDksMTMuNjQ5LDAsMCwwLC4wOSwxLjkxbC42MjUsMTAuMzUxYy4wODksMi41MTIuNDQ2LDQuMjcxLjUzNiw2LjkzNS4wOSwzLjM2NywxLjA3Miw5Ljg0OSwxLjI1LDEzLjcxOEExNTMuMywxNTMuMywwLDAsMCwxNC4xNjksNy4xMjdDMTUuNiwxNC40MTIsMTguMTg3LDIzLjIwNywyNi40LDI0LjYxNGM0LjI4Ni43LDcuMDUzLjE1LDEwLjcxNC4xNWgzLjY2MSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTYwLjYyIDI0MS41MDQpIiBmaWxsPSIjZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48cGF0aCBkPSJNMTEuNjQ5LTU1Ljg4NWMyLjQxMS0uMDUsMTYuMTYtMy45MiwyOS45MS0zLjkyLDEwLjM1NywwLDE2LjUxNy4zNTIsMjYuMzM5LDIuNTYzYTEzMi42MTUsMTMyLjYxNSwwLDAsMSwyNi44NzUsOS42NDdjMS45NjQsMS4wMDYsNi4zMzksMy4wNjYsOC4wMzYsNC4wNzEsMS4yNS43NTQsMi41ODksMS4zMDYsMy45MjksMi4xMWw3LjY3OSw0LjM3M2M1Ljk4MiwzLjQxNywxNS42MjUsOS4yNDUsMjEuMzM5LDEyLjA2bDEwLjA4OSw1LjAyNWMuNzE1LjMsMS4yNS42LDIuMTQzLjk1NC44LjMsMS41MTguNjU0LDIuMjMyLjk1NSwxMS43LDQuODI0LDIwLjUzNiw3LjQzNywzMy4zOTMsOS4wNDUuOTgyLjEsNS4xNzkuMzUyLDUuNjI1LjU1My0uMTc4LS41LTEuMDcxLS41LTIuMDUzLS43QTg4LjMzNyw4OC4zMzcsMCwwLDEsMTYyLjU0MS0xOC43YTE3Ny40NTMsMTc3LjQ1MywwLDAsMS0xOS4xMDctMTIuNTEzbC05LjgyMS03LjIzNWMtMS4xNjEtLjg1NC0yLjIzMi0xLjYwOS0zLjM5My0yLjUxMmwtNi42MDctNC43NzQtMTAuMzU3LTYuODg0Yy0xLjE2MS0uNzU0LTIuMzIxLTEuNDA2LTMuNTcxLTIuMTFzLTIuMzIyLTEuMzU3LTMuNjYxLTIuMDFjLTkuNzMyLTQuODI0LTEyLjc2OC02LjA4LTIyLjk0Ny04LjY0M2E3My4wNzcsNzMuMDc3LDAsMCwwLTcuMjMyLTEuMzA3QzU4LjctNjkuMiw0NS43NTYtNjUuNjg0LDI5LjY4NC02MS43MTRMMjMuNDM1LTYwYy0zLjkyOSwxLjIwNi02LjYwNywxLjk2LTEwLjQ0NiwzLjI2Ni0uOC4zLS44OTMuMi0xLjMzOS44NTQiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE3MC45MDggMjIyLjQwNikiIGZpbGw9IiNmZmYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjxwYXRoIGQ9Ik0zLjA1LTY2LjA3OXYuMTUxYzUuOTgyLDAsMTEuNyw0Ljc3NCwxNSw5LjJsNy44NTcsMTAuOTU1YTM4LjE2OSwzOC4xNjksMCwwLDAsNSw1LjY3OGM3LjE0Myw2Ljg4NCwyMS44NzUsNi4xMzEsMjEuODc1LTEuMTA1YTkuNCw5LjQsMCwwLDAtLjg5My00LjI3MmMtMi4xNDMtMy4wMTQtOS4xMDcuNzU0LTExLjk2NC0xLjQ1N2E1OS41NjQsNTkuNTY0LDAsMCwxLTcuMjMyLTYuMzMxTDI1LjcyOC01OS42Yy0uNzE0LS41NTMtMS4yNS0uOTU0LTEuOTY0LTEuNDU4QTI1LjYsMjUuNiwwLDAsMCw3LjMzNS02Ni40OGMtMS43LDAtMi44NTcuNC00LjI4Ni40IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNDcuMTg2IDIyNS4zMTMpIiBmaWxsPSIjZmZmIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L2c+PC9zdmc+");
    opacity: 0.15;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
  }
}
.hero_section__bottom .hero_section__bottom_container::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 50%;
  width: 126px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSIxMSI+PGNpcmNsZSBkYXRhLW5hbWU9IkVsbGlwc2UgMTIiIGN4PSIyLjUiIGN5PSIyLjUiIHI9IjIuNSIgZmlsbD0iIzI3NWZlNSIvPjwvc3ZnPg==);
  filter: brightness(0) invert(1);
  opacity: 0.15;
}
.hero_section__bottom p:last-of-type {
  margin-bottom: 0;
}
.hero_section__bottom a {
  color: #fff;
}

.product_list__menu_container {
  position: -webkit-sticky;
  position: sticky;
  top: 75px;
  background-color: #fff;
  z-index: 1;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border);
}
@media(min-width: 768px) {
  .product_list__menu_container {
    top: 91px;
  }
}
.product_list .product_list__menu {
  position: relative;
}
.product_list .product_list__menu a {
  font-weight: 600;
}
.product_list .product_list__menu .product_list__menu_prev, .product_list .product_list__menu .product_list__menu_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  cursor: pointer;
  background-color: #fff;
  z-index: 1;
}
.product_list .product_list__menu .product_list__menu_prev svg, .product_list .product_list__menu .product_list__menu_next svg {
  width: 1.5rem;
  height: 1.5rem;
}
.product_list .product_list__menu .product_list__menu_prev.swiper-button-disabled, .product_list .product_list__menu .product_list__menu_next.swiper-button-disabled {
  display: none;
}
.product_list .product_list__menu .product_list__menu_prev {
  left: 0;
}
.product_list .product_list__menu .product_list__menu_prev svg {
  transform: scaleX(-1);
}
.product_list .product_list__menu .product_list__menu_next {
  right: 0;
}
.product_list .product_list__menu a {
  color: #000;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  transition: color 0.3s ease-in-out;
}
.product_list .product_list__menu a:hover {
  color: var(--color-primary);
}

.product_list__product {
  display: grid;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media (min-width: 992px) {
  .product_list__product {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .product_list__product {
    grid-template-columns: 2fr 3fr;
  }
}
.product_list__product:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}
.product_list__product .product_list__image {
  text-align: center;
  position: relative;
  align-self: flex-start;
}
@media (min-width: 600px) and (max-width: 991px) {
  .product_list__product .product_list__image {
    width: 85%;
  }
}
@media (max-width: 767px) {
  .product_list__product .product_list__image {
    margin-bottom: var(--space-row);
  }
}
.product_list__product .product_list__image::before {
  content: "";
  display: block;
  max-width: 500px;
  max-height: 250px;
  width: 100%;
  height: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSIxMSI+PGNpcmNsZSBkYXRhLW5hbWU9IkVsbGlwc2UgMTIiIGN4PSIyLjUiIGN5PSIyLjUiIHI9IjIuNSIgZmlsbD0iIzI3NWZlNSIvPjwvc3ZnPg==);
  z-index: -1;
  filter: grayscale(1);
  opacity: 0.2;
}
.product_list__product .product_list__image img {
  max-height: 445px;
  width: auto;
  max-width: 100%;
}
.product_list__product .product_list__certificates_title {
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.product_list__product .product_list__certificates {
  list-style: none;
}
/* .product_list__product .product_list__certificates .product_list__certificate:not(:last-child) {
  margin-bottom: 1rem;
} */
.product_list__border_top {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border)
}
@media(min-width: 500px) {
  .product_list__certificates .certificate_list, .product_list__certificates {
    grid-template-columns: 1fr 1fr 1fr
  }
}
.product_list__certificates .certificate_single {
  text-align: center;
  display: block;
  border-left: 1px solid var(--color-border)
}
.product_list__certificates .certificate_single .certificate_single__image img {
  height: 3vw;
  min-height: 75px;
  margin-bottom: 0
}
.product_list__certificates .certificate_single .certificate_single__info {
  display: none
}
.product_list__product .product_list__title {
  font-size: clamp(1.8rem, 3vw, 2rem);
}
.product_list__product .product_list__certificates_box {
  margin-top: 2rem;
}
.product_list__product .product_list__contact {
  margin-top: 2rem;
}
.product_list__product .product_list__contact .icon_box:not(:last-child) {
  margin-bottom: 0.5rem;
}
.product_list__product .product_list__contact .btn {
  width: 100%;
}

.products_hero {
  position: relative;
}
.products_hero::before, .products_hero::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -3;
}
.products_hero::before {
  left: 0;
  right: 50%;
  background-image: linear-gradient(225deg, #EFF4DD, transparent 30%);
}
@media (min-width: 600px) {
  .products_hero::before {
    content: "";
  }
}
.products_hero::after {
  content: "";
  left: 50%;
  right: 0;
  background-image: linear-gradient(115deg, var(--color-secondary), transparent 30%);
}
@media (max-width: 600px) {
  .products_hero::before {
    left: 0;
    right: 0;
    bottom: 50%;
  }
  .products_hero::after {
    left: 0;
    right: 0;
    top: 0;
    background-image: linear-gradient(225deg, var(--color-secondary), transparent);
  }
}
@media (min-width: 768px) {
  .products_hero .products_hero__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
.products_hero .products_hero__row .product_hero__top {
  position: relative;
}
@media (min-width: 600px) {
  .products_hero .products_hero__row .product_hero__top {
    display: flex;
    align-items: center;
    position: relative;
  }
}
.products_hero .products_hero__row .product_hero__top::after {
  content: "";
  position: absolute;
  display: block;
  width: 80%;
  height: 200px;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSIxMSI+PGNpcmNsZSBkYXRhLW5hbWU9IkVsbGlwc2UgMTIiIGN4PSIyLjUiIGN5PSIyLjUiIHI9IjIuNSIgZmlsbD0iIzI3NWZlNSIvPjwvc3ZnPg==);
  filter: brightness(0);
  opacity: 0.05;
  z-index: -2;
}
@media (max-width: 599px) {
  .products_hero .products_hero__row .product_hero__image {
    position: relative;
  }
  .products_hero .products_hero__row .product_hero__image .product_hero__add_img {
    width: unset;
    max-width: 100%;
  }
}
.products_hero .products_hero__row .product_hero__image {
  display: block;
}
.products_hero .products_hero__row .product_hero__image .product_hero__cover {
  max-height: 360px;
  width: auto;
  transition: .3s transform ease-in-out;
}
.products_hero .products_hero__row .product_hero__image .product_hero__cover:hover {
  transform: scale(1.03);
}
@media (max-width: 599px) {
  .products_hero .products_hero__row .product_hero__image .product_hero__cover {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .products_hero .products_hero__row .product_hero__image .product_hero__cover {
    height: 22vw;
  }
}
.products_hero .products_hero__row .product_hero__add_img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 30vw;
  right: 0;
  max-width: 400px;
}
@media (min-width: 600px) {
  .products_hero .products_hero__row h3 {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
  }
}
@media (max-width: 599px) {
  .products_hero .products_hero__row h3 {
    text-align: center;
    margin-top: var(--space-row);
  }
}
@media (max-width: 767px) {
  .products_hero .products_hero__row .products_hero__left_column {
    margin-bottom: var(--space-row);
  }
}
@media (min-width: 600px) {
  .products_hero .products_hero__row .products_hero__left_column .product_hero__image {
    margin-left: 2.5vw;
  }
}
.products_hero .products_hero__row .products_hero__right_column .product_hero__top .product_hero__image {
  margin-right: 1.5vw;
}
.products_hero .products_hero__row .products_hero__right_column .product_hero__top .product_hero__add_img {
  margin-left: auto;
}
.products_hero .products_hero__row .products_hero__right_column .product_hero__top::after {
  left: 2rem;
  right: unset;
}
.products_hero .products_hero__row .products_hero__right_column .product_hero__top {
  flex-direction: row-reverse;
}
.products_hero .product_hero__icons .krex_product__attributes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  row-gap: 2rem;
}
@media (min-width: 600px) {
  .products_hero .product_hero__icons .krex_product__attributes {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .products_hero .product_hero__icons .krex_product__attributes {
    font-size: 0.8125rem;
  }
  .products_hero .product_hero__icons .krex_product__attributes svg {
    width: 2rem;
    height: 2rem;
  }
}

.products_hero__button {
  margin-top: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .woocommerce-account:not(.logged-in):not(.woocommerce-lost-password) .krex_account {
    background-image: linear-gradient(to right, #fff 50%, var(--color-secondary) 50%);
    margin-bottom: clamp(2rem, 3.124vw, 3.748rem);
  }
}
.woocommerce-account:not(.logged-in):not(.woocommerce-lost-password) #customer_login {
  display: grid;
}
@media (min-width: 768px) {
  .woocommerce-account:not(.logged-in):not(.woocommerce-lost-password) #customer_login {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
  }
  .woocommerce-account:not(.logged-in):not(.woocommerce-lost-password) #customer_login .u-column1, .woocommerce-account:not(.logged-in):not(.woocommerce-lost-password) #customer_login .u-column2 {
    width: 75%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .woocommerce-account:not(.logged-in):not(.woocommerce-lost-password) #customer_login .u-column1 {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
  }
}
.woocommerce-account:not(.logged-in):not(.woocommerce-lost-password) #customer_login .button {
  width: 100%;
}
.woocommerce-account:not(.logged-in):not(.woocommerce-lost-password) #customer_login .woocommerce-form-login__submit {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.woocommerce-account:not(.logged-in):not(.woocommerce-lost-password) .woocommerce-LostPassword.lost_password a {
  padding: 1rem 1.75rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  font-size: 1rem;
  display: inline-block;
  line-height: normal;
  text-align: center;
  background-color: #fff;
  border: 1px solid var(--color-border);
  width: 100%;
  color: #000;
}
.woocommerce-account:not(.logged-in):not(.woocommerce-lost-password) .woocommerce-LostPassword.lost_password a:hover {
  background-color: #f9f9f9;
}

.woocommerce-account.woocommerce-lost-password .krex_account {
  max-width: 700px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .woocommerce-account.woocommerce-lost-password form {
    border: 1px solid var(--color-border);
    padding: 3rem;
  }
}

.woocommerce-account.logged-in .woocommerce {
  display: grid;
  grid-gap: 2rem;
}
@media (min-width: 768px) {
  .woocommerce-account.logged-in .woocommerce {
    grid-template-columns: 1fr 2fr;
  }
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding: 2rem;
  background-color: var(--color-secondary);
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul li:not(:last-child) {
  margin-bottom: 1.25rem;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul a {
  color: #000;
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul a:hover {
  color: var(--color-primary);
}
.woocommerce-account.logged-in .woocommerce .woocommerce-MyAccount-navigation ul .is-active a {
  font-weight: 600;
}

.woocommerce-error {
  list-style: none;
  padding: 1rem 1.75rem;
  margin-bottom: 2rem;
  border: 1px solid;
  background-color: #f8d7da;
  color: #842029;
  border-color: #f5c2c7;
}

.woocommerce-message {
  list-style: none;
  padding: 1rem 1.75rem;
  margin-bottom: 2rem;
  border: 1px solid;
  background-color: #F8F8FF;
  color: #2546A0;
  border-color: #2546A0;
}

.header__woo_icon_cart:hover .header__woo_minicart {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.header__woo_icons {
  position: relative;
}

.header__woo_minicart {
  transform: translateY(1rem);
  transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
  box-shadow: 0px 0px 1rem 0px #0003;
  visibility: hidden;
  position: absolute;
  width: 360px;
  right: 0;
  background-color: #fff;
  z-index: 101;
  overflow: auto;
  padding: 1rem;
  box-shadow: 0px 0px 1rem 0px #0003;
}
.header__woo_minicart .woocommerce-mini-cart {
  list-style: none;
  max-height: 300px;
  overflow: auto;
}
.header__woo_minicart .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  margin-bottom: 8px;
}
.header__woo_minicart .button.wc-forward:not(.checkout) {
  display: none;
}
.header__woo_minicart .button.checkout {
  padding: 1rem 1.75rem;
  font-size: 1rem;
  text-transform: none;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 600;
  transition: background-color 0.3s ease-in-out;
  width: 100%;
  display: block;
  text-align: center;
}
.header__woo_minicart .button.checkout:hover {
  background-color: var(--color-primary-hover);
}

.woocommerce-mini-cart__buttons {
  margin-bottom: 0;
}

.woocommerce-mini-cart-item {
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.3s ease-in-out;
  padding-left: 116px;
  position: relative;
  min-height: 108px;
  display: flex;
  flex-direction: column;
}
.woocommerce-mini-cart-item a:not(.remove_from_cart_button) {
  font-weight: 600;
  color: #000;
  margin: 8px 0;
  display: inline-block;
  line-height: 1.2;
}
.woocommerce-mini-cart-item:hover {
  background-color: var(--color-secondary);
}
.woocommerce-mini-cart-item img {
  max-width: 100px;
  position: absolute;
  left: 0;
  top: 0;
}
.woocommerce-mini-cart-item .remove_from_cart {
  order: 1;
  margin-top: auto;
}
.woocommerce-mini-cart-item .remove_from_cart svg {
  width: 1rem;
  height: 1rem;
}
.woocommerce-mini-cart-item .quantity {
  display: inline-block;
  margin-bottom: 8px;
}

.woocommerce-mini-cart__empty-message {
  margin-bottom: 0;
}

.quantity:not(span) {
  position: relative;
  max-width: 80px;
  padding-right: calc(55px / 2 );
}
.quantity:not(span) .sub {
  bottom: 0;
}
.quantity:not(span) .add {
  top: 0;
}
.quantity:not(span) .sub, .quantity:not(span) .add {
  position: absolute;
  display: block;
  right: 0;
  height: calc(55px / 2);
  border: 1px solid var(--color-border);
  cursor: pointer;
  width: calc(55px / 2);
  text-align: center;
  transition: background-color 0.15s ease-in-out;
  background-color: #fff;
}
.quantity:not(span) .sub:hover, .quantity:not(span) .add:hover {
  background-color: var(--color-border);
}

/* Chrome, Safari, Edge, Opera */
input.qty::-webkit-outer-spin-button,
input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number].qty {
  -moz-appearance: textfield;
}

.variation {
  display: flex;
}
.variation p {
  margin-bottom: 0;
}
.variation dt {
  margin-right: 5px;
  font-weight: 600;
}

.woocommerce-cart .woocommerce {
  display: grid;
  grid-gap: 3rem;
}
@media (min-width: 1200px) {
  .woocommerce-cart .woocommerce {
    grid-template-columns: 2fr 1fr;
    row-gap: 0;
  }
  .woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
    grid-column: 1/-1;
  }
}
.woocommerce-cart .woocommerce .woocommerce-cart-form__contents {
  width: 100%;
}
.woocommerce-cart .woocommerce .woocommerce-cart-form__contents thead {
  display: none;
}
.woocommerce-cart .woocommerce .woocommerce-cart-form__contents .woocommerce-cart-form__cart-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.3s ease-in-out;
  position: relative;
}
@media (min-width: 1200px) {
  .woocommerce-cart .woocommerce .woocommerce-cart-form__contents .woocommerce-cart-form__cart-item {
    grid-template-columns: 1.5rem 150px 1fr 100px 82px 100px;
  }
}
.woocommerce-cart .woocommerce .woocommerce-cart-form__contents .woocommerce-cart-form__cart-item:hover {
  background-color: var(--color-secondary);
}
.woocommerce-cart .woocommerce .woocommerce-cart-form__contents .woocommerce-cart-form__cart-item td {
  display: block;
}
@media (max-width: 1200px) {
  .woocommerce-cart .woocommerce .woocommerce-cart-form__contents .woocommerce-cart-form__cart-item .product-thumbnail {
    grid-column: 1;
    grid-row: 1/span 5;
    align-self: flex-start;
  }
}
.woocommerce-cart .woocommerce .woocommerce-cart-form__contents .woocommerce-cart-form__cart-item .product-thumbnail img {
  max-width: 150px;
  display: block;
}
.woocommerce-cart .woocommerce .woocommerce-cart-form__contents .woocommerce-cart-form__cart-item .product-name a {
  font-weight: 600;
  color: #000;
}
@media (min-width: 1200px) {
  .woocommerce-cart .woocommerce .woocommerce-cart-form__contents .woocommerce-cart-form__cart-item .product-price, .woocommerce-cart .woocommerce .woocommerce-cart-form__contents .woocommerce-cart-form__cart-item .product-quantity, .woocommerce-cart .woocommerce .woocommerce-cart-form__contents .woocommerce-cart-form__cart-item .product-subtotal {
    text-align: center;
  }
}
.woocommerce-cart .woocommerce .woocommerce-cart-form__contents .woocommerce-cart-form__cart-item .product-subtotal {
  font-weight: 600;
}
@media (max-width: 1199px) {
  .woocommerce-cart .woocommerce .woocommerce-cart-form__contents .woocommerce-cart-form__cart-item .product-remove {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
  }
}
.woocommerce-cart .woocommerce .woocommerce-cart-form__contents button[name=update_cart] {
  margin-top: 2rem;
  float: right;
}

.woocommerce-cart-form .remove_from_cart svg {
  width: 1.5rem;
  height: 1.5rem;
}

.cart-collaterals .cart_totals {
  padding: 2rem;
  background-color: var(--color-secondary);
  border-left: 4px solid var(--color-primary);
}
.cart-collaterals .cart_totals .shop_table {
  display: block;
  text-align: left;
}
.cart-collaterals .cart_totals .shop_table .woocommerce-shipping-totals {
  margin: 1rem 0;
  border: 1px solid var(--color-border);
  border-left: 0;
  border-right: 0;
  padding: 1rem 0;
}
.cart-collaterals .cart_totals .shop_table .cart-subtotal, .cart-collaterals .cart_totals .shop_table .order-total {
  display: flex;
  justify-content: space-between;
}
.cart-collaterals .cart_totals .shop_table tbody, .cart-collaterals .cart_totals .shop_table tr, .cart-collaterals .cart_totals .shop_table td, .cart-collaterals .cart_totals .shop_table th {
  display: block;
}
.cart-collaterals .cart_totals .wc-proceed-to-checkout {
  margin-top: 2rem;
}
.cart-collaterals .cart_totals .wc-proceed-to-checkout .button {
  width: 100%;
}

form.woocommerce-checkout {
  display: grid;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  padding: clamp(2rem, 3.124vw, 3.748rem) 0;
}
form.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  grid-column: 1/-1;
  grid-row: 1;
}
@media (min-width: 768px) {
  form.woocommerce-checkout {
    grid-template-columns: 1fr 1fr;
    background-image: linear-gradient(to right, #fff 50%, var(--color-secondary) 50%);
  }
  form.woocommerce-checkout #customer_details {
    grid-row: 2/span 3;
  }
  form.woocommerce-checkout #order_review_heading {
    grid-column: 2;
    grid-row: 2;
  }
  form.woocommerce-checkout #order_review {
    grid-column: 2;
    grid-row: 3;
  }
  form.woocommerce-checkout #order_review, form.woocommerce-checkout #customer_details, form.woocommerce-checkout #order_review_heading {
    width: 75%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  form.woocommerce-checkout #order_review {
    background-color: var(--color-secondary);
    padding: 2rem;
  }
}
form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table {
  width: 100%;
  display: block;
}
form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .woocommerce-shipping-totals.shipping {
  display: block;
  width: 100%;
  margin: 2rem 0;
}
form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .woocommerce-shipping-totals.shipping th, form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .woocommerce-shipping-totals.shipping td {
  display: block;
  text-align: left;
}
form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table thead, form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tbody, form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table tfoot {
  display: block;
  width: 100%;
}
form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .cart_item, form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .cart-subtotal, form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table thead tr {
  display: flex;
  justify-content: space-between;
}
form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .cart_item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}
form.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table .cart-subtotal {
  margin-bottom: 0.75rem;
}
form.woocommerce-checkout #order_review #payment .payment_methods {
  list-style: none;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
form.woocommerce-checkout #order_review #payment .payment_methods .wc_payment_method {
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  background-color: #fff;
  position: relative;
}
form.woocommerce-checkout #order_review #payment .payment_methods .wc_payment_method input {
  display: none;
}
form.woocommerce-checkout #order_review #payment .payment_methods .wc_payment_method label {
  font-size: 1rem;
  display: flex;
  align-items: center;
}
form.woocommerce-checkout #order_review #payment .payment_methods .wc_payment_method label::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  margin-right: 1rem;
}
form.woocommerce-checkout #order_review #payment .payment_methods .wc_payment_method label::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}
form.woocommerce-checkout #order_review #payment .payment_methods .wc_payment_method input:checked ~ label::before {
  border: 7px solid var(--color-primary);
}
form.woocommerce-checkout #order_review #payment .payment_methods .wc_payment_method .payment_box {
  margin-left: 2.5rem;
  margin-top: 1rem;
}
form.woocommerce-checkout #order_review #payment .payment_methods .wc_payment_method .payment_box p {
  margin-bottom: 0;
}
form.woocommerce-checkout #order_review .place-order .button {
  width: 100%;
}

#shipping_method {
  list-style: none;
}
#shipping_method li {
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  background-color: #fff;
  position: relative;
}
#shipping_method input {
  display: none;
}
#shipping_method label {
  font-size: 1rem;
  display: flex;
  align-items: center;
}
#shipping_method label::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  margin-right: 1rem;
}
#shipping_method label::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}
#shipping_method input:checked ~ label::before {
  border: 7px solid var(--color-primary);
}

.order-total {
  border: 1px solid var(--color-border);
  padding: 1rem 2rem;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}

.site-chekout {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  width: 100%;
}

.woocommerce-safety-message, .woocommerce-back-to-cart {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.woocommerce-safety-message span, .woocommerce-back-to-cart span {
  margin-left: 0.5rem;
}

.krex_product {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 981px) {
  .krex_product > .product {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .krex_product > .product > *:not(.summary) {
    grid-column: 1;
  }
  .krex_product > .product .summary {
    grid-column: 2;
    position: -webkit-sticky;
    position: sticky;
    top: 7rem;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}
.krex_product > .product > *:not(.summary):not(.woocommerce-product-gallery):not(:last-child) {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
.krex_product > .product .summary {
  background-color: var(--color-secondary);
  border-left: 4px solid var(--color-primary);
  padding: 1rem;
}
@media (max-width: 980px) {
  .krex_product > .product .summary {
    margin: 2rem 0;
  }
}
@media (min-width: 600px) {
  .krex_product > .product .summary {
    padding: 3rem;
  }
}
.krex_product > .product .product_title {
  margin-bottom: 0;
}
.krex_product > .product .price {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}
.krex_product > .product .price del {
  opacity: 0.5;
}
.krex_product > .product .cart {
  display: flex;
  margin-top: 2rem;
}
.krex_product > .product .cart .button {
  margin-left: 1rem;
  width: 100%;
}
@media (min-width: 981px) {
  .krex_product > .product .woocommerce-product-gallery {
    margin-bottom: 3rem;
  }
}
.krex_product > .product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  border: 1px solid var(--color-border);
  padding: 1rem;
}
@media (min-width: 600px) {
  .krex_product > .product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
    padding: 3rem;
  }
}
.krex_product > .product .woocommerce-product-gallery ol {
  list-style: none;
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(5, 1fr);
}
.krex_product > .product .onsale {
  position: absolute;
}
.krex_product > .product .krex_product__icons {
  display: grid;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 2rem;
  margin-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) {
  .krex_product > .product .krex_product__icons {
    grid-template-columns: repeat(3, 1fr);
  }
}
.krex_product > .product .krex_product__icons .krex_product__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.2;
}
.krex_product > .product .krex_product__icons .krex_product__icon svg {
  width: 3rem;
  height: 3rem;
  fill: var(--color-primary);
  margin-bottom: 0.5rem;
}
@media(min-width: 768px) {
  .krex_product .comment-reply-title {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    display: block;
  }
}
@media(max-width: 767px) {
  .krex_product .comment-reply-title {
    padding: 1rem 1.75rem;
    font-weight: 600;
    border-radius: 0;
    font-size: 1rem;
    display: block;
    line-height: normal;
    text-align: center;
    cursor: pointer;
    border: 1px solid;
    width: 100%;
  }

  #review_form_wrapper #commentform {
    display: none;
  }

  #review_form_wrapper #commentform.active {
    display: block;
  }
}
.krex_product .comment-form .submit {
  padding: 1rem 1.75rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background-color: #fff;
  font-size: 1rem;
  display: block;
  line-height: normal;
  text-align: center;
  cursor: pointer;
  width: 100%;
}
.krex_product .comment-form .submit:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.krex_product .krex_product__certificates ul {
  margin-bottom: 1rem;
  list-style: none;
}
.krex_product .krex_product__certificates ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.single-product .krex_product .krex_product__certificates ul li:not(:last-child) {
  margin-bottom: 0;
}
.krex_product .related.products {
  margin-top: 3rem;
}
@media (max-width: 980px) {
  .krex_product form.cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background-color: #fff;
    z-index: 11;
  }
}

.krex_product__rating {
  display: flex;
  align-items: center;
  color: #000;
}
.krex_product__rating .krex_product__stars {
  display: flex;
  margin: 0 0.5rem;
}
.krex_product__rating .krex_product__stars svg {
  width: 1rem;
  height: 1rem;
  fill: #FFDD00;
}

.krex_product__attributes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.krex_product__attributes .krex_product__attribute {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.875rem
}
.krex_product__attributes .krex_product__attribute svg {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.5rem;
}

#reviews .commentlist {
  list-style: none;
}
#reviews .commentlist li {
  border: 1px solid var(--color-border);
  padding: 1rem;
}
#reviews .commentlist li p {
  margin-bottom: 0;
}

#review_form_wrapper {
  margin-top: 2rem;
}
#review_form_wrapper .stars span {
  display: flex;
  align-items: center;
}
#review_form_wrapper .stars a {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  margin-right: 0.5rem;
  transition: all 0.3s ease-in-out;
  color: #000;
}
#review_form_wrapper .stars a:hover {
  background-color: var(--color-border);
}
#review_form_wrapper .stars a.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

ul.products {
  list-style: none;
  display: grid;
  grid-gap: 3rem;
}
@media (min-width: 1024px) {
  ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
ul.products .product {
  position: relative;
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease-in-out;
}
ul.products .product:hover {
  background-color: var(--color-secondary);
}
ul.products .product:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}
ul.products .product a:not(.btn):not(.button) {
  color: #000;
}
ul.products .product .onsale {
  position: absolute;
}
ul.products .product .woocommerce-LoopProduct-link {
  position: relative;
  margin-bottom: 2rem;
  z-index: 0;
}
ul.products .product .woocommerce-LoopProduct-link::before {
  content: "";
  display: block;
  max-width: 500px;
  max-height: 250px;
  width: 100%;
  height: 50%;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  position: absolute;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSIxMSI+PGNpcmNsZSBkYXRhLW5hbWU9IkVsbGlwc2UgMTIiIGN4PSIyLjUiIGN5PSIyLjUiIHI9IjIuNSIgZmlsbD0iIzI3NWZlNSIvPjwvc3ZnPg==);
  z-index: -1;
  filter: grayscale(1);
  opacity: 0.2;
}
@media (min-width: 600px) {
  ul.products .product .woocommerce-LoopProduct-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    align-items: center;
  }
  ul.products .product .woocommerce-LoopProduct-link::before {
    width: 50%;
  }
}
ul.products .product .woocommerce-LoopProduct-link img {
  max-height: 445px;
  width: auto;
  max-width: 100%;
}
@media (max-width: 599px) {
  ul.products .product .woocommerce-LoopProduct-link img {
    margin-bottom: 2rem;
  }
}
ul.products .product h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2rem);
}
ul.products .product .price {
  font-size: clamp(1.8rem, 3vw, 2rem);
  color: var(--color-primary);
  font-weight: 600;
  display: block;
  margin-bottom: .5rem
}
ul.products .product .woocommerce-LoopProduct-button {
  width: 100%;
  margin-top: 1rem;
}
ul.products .product .add_to_cart_button {
  width: 100%;
  margin-top: 1rem;
}
ul.products .product .krex_product__attributes {
  grid-template-columns: repeat(2, 1fr);
  margin-top: auto;
  row-gap: 2rem;
}
@media (min-width: 600px) {
  ul.products .product .krex_product__attributes {
    grid-template-columns: repeat(4, 1fr);
  }
}

.woocommerce--available-message {
  display: flex;
  font-size: 14px;
  align-items: baseline;
  color: #198754;
  font-weight: 600;
}
.woocommerce--available-message span {
  margin-left: 0.5rem;
}
.woocommerce--available-message svg {
  fill: #198754;
}

.woocommerce-ajax-add-to-cart-popup-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(37, 70, 160, 0.2);
  display: none;
  visibility: hidden;
  opacity: 0;
}
.woocommerce-ajax-add-to-cart-popup-container.active {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.woocommerce-ajax-add-to-cart-popup {
  max-width: 100%;
  width: 500px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1000;
  margin: auto;
  background-color: #fff;
  border: 1px solid var(--color-border);
}
.woocommerce-ajax-add-to-cart-popup .woocommerce-ajax-add-to-cart-popup-header {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.woocommerce-ajax-add-to-cart-popup .woocommerce-ajax-add-to-cart-popup-header .woocommerce-ajax-add-to-cart-popup-message {
  fill: #198754;
  color: #198754;
  font-weight: 600;
}
.woocommerce-ajax-add-to-cart-popup .woocommerce-ajax-add-to-cart-popup-header .woocommerce-ajax-add-to-cart-popup-close {
  background-color: transparent;
  border: 0;
}
.woocommerce-ajax-add-to-cart-popup .woocommerce-ajax-add-to-cart-popup-header .woocommerce-ajax-add-to-cart-popup-close svg {
  width: 2rem;
  height: 2rem;
}
.woocommerce-ajax-add-to-cart-popup .woocommerce-ajax-add-to-cart-popup-content {
  text-align: center;
}
.woocommerce-ajax-add-to-cart-popup .woocommerce-ajax-add-to-cart-popup-content .woocommerce-ajax-add-to-cart-popup-image {
  max-width: 300px;
  padding: 1rem;
  margin: auto;
}
.woocommerce-ajax-add-to-cart-popup .woocommerce-ajax-add-to-cart-popup-content .woocommerce-ajax-add-to-cart-popup-title {
  font-weight: 600;
  font-weight: 20px;
  display: block;
}
.woocommerce-ajax-add-to-cart-popup .woocommerce-ajax-add-to-cart-popup-footer {
  text-align: center;
}
.woocommerce-ajax-add-to-cart-popup .woocommerce-ajax-add-to-cart-popup-footer a {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}
.woocommerce-ajax-add-to-cart-popup .woocommerce-ajax-add-to-cart-popup-footer .woocommerce-ajax-add-to-cart-popup-close {
  cursor: pointer;
}

.added_to_cart.wc-forward {
  display: none;
}

@media(max-width: 599px) {
  .offer_list {
    width: 100%;
  }
}

.fancy-video {
  position: relative;
  overflow: hidden;
}

.fancy-video::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgZmlsbD0iI2ZmZiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBkPSJNOCAxNUE3IDcgMCAxIDEgOCAxYTcgNyAwIDAgMSAwIDE0em0wIDFBOCA4IDAgMSAwIDggMGE4IDggMCAwIDAgMCAxNnoiLz4KICA8cGF0aCBkPSJNNi4yNzEgNS4wNTVhLjUuNSAwIDAgMSAuNTIuMDM4bDMuNSAyLjVhLjUuNSAwIDAgMSAwIC44MTRsLTMuNSAyLjVBLjUuNSAwIDAgMSA2IDEwLjV2LTVhLjUuNSAwIDAgMSAuMjcxLS40NDV6Ii8+Cjwvc3ZnPg==");
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-image: linear-gradient(to bottom, rgba(38, 71, 161, 0), rgba(38, 71, 161, 0.5));
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in-out;
  transition-property: opacity, transform;
  transform: translateY(1rem);
}

.fancy-video.hoverable:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.fancy-video video {
  margin-top: -1px;
}

.fancy-video video::-webkit-media-controls-panel {
  position: relative;
  z-index: 3
}

.product_list__contact_info .icon_box {
  padding: 0.25rem 0;
}

@media(min-width: 1200px) {
  .woocommerce-account .woocommerce-Addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem
  }
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address {
  border: 1px solid var(--color-border);
  padding: 1rem
}
.purchase_proof {
  display: flex;
  margin-bottom: 2rem
}

.purchase_proof__item {
  flex: 1;
}

.purchase_proof__item label {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  height: 55px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.purchase_proof__item:nth-of-type(1) {
  margin-right: 2rem;
}

.purchase_proof__item input {
  display: none
}

.purchase_proof__item input:checked + label {
  background-color: var(--color-primary);
  color: #fff;
}

.purchase_proof__item input:not(:checked) + label:hover {
  background-color: var(--color-secondary);
}

.woocommerce-form-login-toggle {
  max-width: 700px;
  margin: auto;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 2rem;
}

.woocommerce-checkout .woocommerce-form-login {
  border: 1px solid var(--color-border);
  padding: 2rem;
  max-width: 700px;
  margin: auto;
  text-align: center;
  margin-bottom: 2rem;
}

.woocommerce-checkout .woocommerce-form-login .krex_separator {
  display: none;
}

.woocommerce-checkout .woocommerce-form-login .lost_password {
  margin-bottom: 0;
}

.woocommerce-checkout .woocommerce-form-login label {
  text-align: left;
}

.woocommerce-checkout .woocommerce-form-login .woocommerce-form-login__submit {
  margin-top: 2rem;
  width: 100%;
}

.woocommerce-checkout .hide, .woocommerce-checkout #billing_company_field .optional, .woocommerce-checkout #billing_nip_field .optional {
  display: none;
}

#cms.container-narrow{
  overflow: hidden;
  word-break: break-word;
}

.wc_payment_method img {
  width: auto;
  margin-left: 1rem
}

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

.comment_container img {
  width: auto;
}

.comment_container .comment-text {
  margin-left: 1rem;
}

.cart-collaterals .woocommerce-shipping-totals.shipping {
  display: none!important
}

.wpcf7-list-item{
  margin: 0 0.5rem 0 0;
}

.acceptance-container{
  padding-bottom: 20px;
}

.contact-form-info{
  padding-bottom: 20px;
}

.contact-form-info__header{
  font-weight: bold;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.contact-form-info__header::after{
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iY29sbGFwc2UtYXJyb3ciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMTYgMTYiIGZpbGw9IiMwMDAiPgogICAgICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xLjY0NiA0LjY0NmEuNS41IDAgMCAxIC43MDggMEw4IDEwLjI5M2w1LjY0Ni01LjY0N2EuNS41IDAgMCAxIC43MDguNzA4bC02IDZhLjUuNSAwIDAgMS0uNzA4IDBsLTYtNmEuNS41IDAgMCAxIDAtLjcwOHoiIC8+PC9zdmc+);
    margin-left: 10px;
    content: "";
    background-repeat: no-repeat;
    background-size: 1rem;
    width: 1rem;
    height: 1rem;
    transition: transform 0.6s ease-in-out;
}

.contact-form-info__content{
  max-height: 0;
  display: block;
  overflow: hidden;
  transition: max-height 0.6s ease-in-out;
}

.contact-form-info.active .contact-form-info__content{
  max-height: 100rem;
}

.contact-form-info.active .contact-form-info__header::after{
    transform: rotate(180deg);
}

.contact-form-info__content-inner{
  height: 100%;
}


.contact-form-info__content li{
  margin-left: 17px;
}

.ml-17{
  margin-left: 17px;
}

.single_variation_wrap{
  width: 100%;
}


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

.woocommerce-variation-add-to-cart{
  display: flex;
  margin-top: 10px;
}

.variations label{
  margin-bottom: 0px;
  margin-right: 10px;
  font-size: 1rem;
}

.reset_variations{
  display: none!important;
}

.variations select{
  padding: 5px;
  border: 1px solid var(--color-border);
  padding: 5px;
}

#pa_ilosc option:first-child{
  display: none!important;
}

.variations_button .quantity{
  display: none!important;
}

.variations_button button{
  margin-left: 0rem!important;
}

.product-type-variable .summary.entry-summary>.price{
  display: none;
}

.product-type-variable .summary.entry-summary>.product_title.entry-title{
  margin-bottom: 20px;
}

.woocommerce-thankyou-order-received{
    border-bottom: 1px solid var(--color-border);
}

.woocommerce-thankyou-order-details{
  border-bottom: 1px solid var(--color-border);
}

.woocommerce-thankyou-order-details li{
  margin-left: 21px;
}

body.woocommerce-checkout.woocommerce-order-received main {
    max-width: 900px;
    margin: auto;
    padding: 3rem 0;
}

.wc-bacs-bank-details-heading{
  margin-top: 30px;
}

body.woocommerce-checkout.woocommerce-order-received table{
  width: 100%;
  border-collapse: collapse;
}

body.woocommerce-checkout.woocommerce-order-received .woocommerce-order-details th, body.woocommerce-checkout.woocommerce-order-received .woocommerce-order-details td{
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0.5rem;
}

body.woocommerce-checkout.woocommerce-order-received th{
  text-align: left;
}

body.woocommerce-checkout.woocommerce-order-received td{
  text-align: left;
}

body.woocommerce-checkout.woocommerce-order-received tfoot tr:last-child{
background-color: #F8F8FF;
}

.product_list__certificates_subtitle{
  margin-bottom: 4px;
  margin-top: 16px;
}

.footer__widgets #media_image-2, .footer__widgets #media_image-3{
  max-width: 120px;
}

/* @media (min-width: 992px){

.wegiel-table tr td:first-child{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wegiel-table tr:nth-child(1) td:first-child::after{
  background-image: url('https://www.krex.pl/wp-content/uploads/2022/06/kostka.png');
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  content: "";
  background-size: cover;
}

.wegiel-table tr:nth-child(2) td:first-child::after, .wegiel-table tr:nth-child(3) td:first-child::after{
  background-image: url('https://www.krex.pl/wp-content/uploads/2022/06/orzech.png');
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: inline-block;
  content: "";
  background-size: cover;
}

.wegiel-table tr:nth-child(4) td:first-child::after{
  background-image: url('https://www.krex.pl/wp-content/uploads/2022/06/ekogroszek.png');
  background-repeat: no-repeat;
  width: 29px;
  height: 29px;
  display: inline-block;
  content: "";
  background-size: cover;
}

.wegiel-table tr:nth-child(5) td:first-child::after, .wegiel-table tr:nth-child(6) td:first-child::after{
  background-image: url('https://www.krex.pl/wp-content/uploads/2022/06/mial.png');
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  content: "";
  background-size: cover;
}
} */

.coal-cards__card{
  border: 1px solid #f3f3f3;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  border-radius: 7px;
  max-width: 250px;
  margin: auto;
  box-shadow: 0 0 35px 0 rgb(154 161 171 / 15%);
}

.coal-cards__card--image{
  border-radius: 50%;
  width: 100%;
  margin-top: -50px;
  margin-bottom: 24px;
}

.coal-cards__card--image img{
  max-width: 100%;
  height: auto;
  width: 100px;
  border-radius: 50%;
}

.coal-cards__card--title{
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  margin-bottom: 1rem;
}

.coal-cards__card--text{
  font-size: 16px;
  width: 100%;
}


@media(max-width: 501px){
  .coal-cards__card{
    max-width: 100%;
  }
}

@media (min-width: 650px) and (max-width: 781px){
  .coal-cards__card{
    margin-top: 50px;
  }
}


.flag{
  max-width: 100%;
  height: auto;
  width: 23px;
  border: 1px solid;
}

.lang-menu{
  margin-left: 16px;
}

.lang-menu ul{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-menu ul li{
  display: flex;
  align-items: center;
}

.lang-menu ul li a{
  display: flex;
  align-items: center;
}

.krex_product__attributes{
  row-gap: 1rem;
}





.accordion {

  color: #444;
  cursor: pointer;

  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}



.accordion-job:nth-child(odd) {
    background: #F8F8FF;
}


.panel {
  padding: 0px 15px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accordion-title {
    font-size: 22px;
    display: flex;
    justify-content: space-between;
    padding: 15px 15px;
    background: #f8f8ff;
    font-weight: 600;
    align-items: center;
    line-height: 1;
}

.zag1 {
    width: 60%;
    justify-content: left;
    font-weight: 700;
}

.zag2 {
    justify-content: left;
    width: 40%;
    font-weight: 700;
}

a.accordione {
    display: flex;
    padding: 10px 15px;
}

.zagopis1 {
    width: 60%;
    justify-content: left;
    font-weight: 600;
}

.zagopis2 {
    justify-content: left;
    width: 40%;
    font-weight: 600;
}

a.accordion {
    display: flex;
    align-items: center;
}
.panel p {
    padding-top: 5px 10px;

}
.accordion-job{
  padding: 15px 15px;

}

a.accordion:hover div:first-child{
  text-decoration: underline;
}

@media (max-width:500px){
  a.accordion {
      font-size: 13px;
  }
  .accordion-title {
    font-size: 16px;
}
.panel p {
    padding: 10px 0;
    font-size: 13px;
}
}



body{
  position: relative;
}


#ac-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  z-index: 1001;
  height: 100%;
  background: rgba(0,0,0, 0.3);
  overflow: scroll;
  padding: 16px;
}

#popup {
  margin: auto;
  position: relative;
  font-size: 14px;
  display: flex;
  color: black;
  padding: 22px 40px;
  position: relative;
  height: auto;
  background: white;
  border-bottom: 2px solid #002273;
  max-width: 800px;
  border-radius: 10px;
}

#popup ul{
    padding: 0;
    margin-bottom: 1rem;
    font-weight: 600;
    list-style: none;
}

#popup a{
    background-color: #26a8be;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 3px;
    display: inline-block;
    line-height: 1;
    text-align: center;
    transition: all 0.5s;
    color: white;
}

#popup a:hover{
    background-color: #084148;
}

#popup h2{
    max-width: 380px;
}

#popup p {
  margin: 0;
  font-size: 14px;
  margin-bottom: 1rem;
}

.cp-popup-close-button {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    border: 2px solid #fff;
    z-index: 1000;
    left: 10px;
    top: 10px;
    cursor: pointer;
    opacity: .75;
    transition: opacity .3s ease-in-out;
    background: black;
    box-sizing: content-box!important;
}

.cp-popup-close-button:before, .cp-popup-close-button:after {
    content: '';
    width: 20px;
    height: 2px;
    position: absolute;
    top: 13px;
    left: 4px;
    background: #fff;
    border-radius: 10px;
    transition: transform .2s ease-in-out;
}

.cp-popup-close-button:before{
    transform: rotate(-45deg);
}

.cp-popup-close-button:after{
    transform: rotate(45deg);
}

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

.text-red{
  color: red;
  font-weight: bold;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/Montserrat-Regular.ttf') format('tff');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./assets/fonts/Montserrat-Medium.ttf') format('tff');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./assets/fonts/Montserrat-SemiBold.ttf') format('tff');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./assets/fonts/Montserrat-Bold.ttf') format('tff');
}
