:root {
  --d-blue: #024c93;
  --m-blue: #1a5d9e;
  --l-blue: #b2d4f5;
  --d-gray: #4f525c;
  --m-gray: #afb0b3;
  --l-gray: #f2f5f8;
  --white: #ffffff;
  --yellow: #ffd332;
  --red: #e96f3a;
  --green: #57c695;
}

:root {
  --d-blue: #024c93;
  --m-blue: #1a5d9e;
  --l-blue: #b2d4f5;
  --d-gray: #4f525c;
  --m-gray: #afb0b3;
  --l-gray: #f2f5f8;
  --white: #ffffff;
  --yellow: #ffd332;
  --red: #e96f3a;
  --green: #57c695;
}

fieldset {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
fieldset > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.icon {
  display: inline-block;
  height: 20px;
  width: 20px;
}
.icon--cart-outline {
  background-color: var(--d-blue);
  cursor: pointer;
  -webkit-mask: url("/assets/cart-outline.svg") no-repeat center;
          mask: url("/assets/cart-outline.svg") no-repeat center;
}
.icon--cart-outline.yellow {
  background-color: var(--yellow);
}
.icon--info {
  background-color: var(--d-blue);
  cursor: pointer;
  height: 16px;
  -webkit-mask: url("/assets/info.svg") no-repeat center;
          mask: url("/assets/info.svg") no-repeat center;
  width: 16px;
}

.row {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10px 30px 20px 0;
}

.hidden {
  display: none;
}

.helptool {
  position: relative;
  display: inline-block;
}
.helptool .helptooltext {
  background-color: var(--white);
  border-radius: 6px;
  border: 1px solid var(--d-blue);
  color: var(--d-blue);
  display: none;
  font-size: 0.875rem;
  left: 50%;
  margin-top: 32px;
  padding: 8px 4px;
  position: absolute;
  text-align: center;
  top: 5px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  z-index: 1;
}
.helptool .helptooltext.wide {
  width: 640px;
}
@media (max-width: 1366px) {
  .helptool .helptooltext.wide {
    width: 50vw;
  }
}
.helptool:hover .helptooltext {
  display: block;
}

.alert {
  border-radius: 0.25rem;
  border: 1px solid transparent;
  left: 0;
  margin: 1rem 0 1rem 0;
  padding: 0.75rem 1.25rem;
  position: relative;
  top: 0;
  width: 100%;
}
.alert--success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert--warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.umbraco-forms-form fieldset {
  margin-bottom: 20px;
  padding: 10px 10px 0 0;
}
.umbraco-forms-form label {
  display: inline-block;
}
.umbraco-forms-form .umbraco-forms-label {
  color: var(--d-gray);
  font-weight: bold;
  margin: 5px 0;
}
.umbraco-forms-form span.field-validation-error {
  color: var(--red);
}
.umbraco-forms-form input,
.umbraco-forms-form textarea {
  font-family: "Barlow", sans-serif !important;
}
.umbraco-forms-form textarea {
  height: 250px;
}
.umbraco-forms-form input.text,
.umbraco-forms-form textarea {
  display: block;
  max-width: 400px;
  width: 95%;
}
.umbraco-forms-form input.text,
.umbraco-forms-form input.title,
.umbraco-forms-form textarea,
.umbraco-forms-form select {
  margin: 0.5em 0;
}
.umbraco-forms-form input[type=checkbox] {
  margin-top: 5px;
  vertical-align: top;
}
.umbraco-forms-form input[type=submit] {
  background-color: transparent;
  border-radius: 50px;
  border: 2px solid var(--d-blue);
  color: var(--d-blue);
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 2px;
  outline: none;
  padding: 12px 30px;
  text-transform: uppercase;
}
.umbraco-forms-form input[type=submit]:hover {
  background: var(--m-blue);
  border: 2px solid var(--m-blue);
  color: var(--white);
}
.umbraco-forms-form .umbraco-forms-field.consentforstoringsubmitteddata .field-validation-error {
  display: block;
}
.umbraco-forms-form .umbraco-forms-navigation {
  padding: 1em 0em;
}

#toasters {
  position: fixed;
  right: 0;
}
#toasters .toaster-container {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0.75rem;
}
#toasters .toaster-container .toaster {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(178, 212, 245, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#toasters .toaster-container .toaster:not(.show) {
  opacity: 0;
}
#toasters .toaster-container .toaster.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
#toasters .toaster-container .toaster.show {
  opacity: 1;
}
#toasters .toaster-container .toaster button.close {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000}'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
  margin-top: auto;
  margin-left: auto;
  margin-bottom: auto;
  margin-right: 0.5rem;
}
#toasters .toaster-container .toaster button.close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
#toasters .toaster-container .toaster button.close:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25 rgba(var(--d-blue), 0.25);
          box-shadow: 0 0 0 0.25 rgba(var(--d-blue), 0.25);
  opacity: 1;
}
#toasters .toaster-container .toaster__body {
  padding: 0.75rem;
  word-wrap: break-word;
}

#modalRoot {
  position: relative;
  z-index: 999;
}
#modalRoot .modal {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#modalRoot .modal__header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--d-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
}
#modalRoot .modal__content {
  background-color: var(--white);
  padding: 32px;
  min-width: 640px;
}
#modalRoot .modal__content ul {
  min-height: 40px;
  width: 100%;
}
#modalRoot .modal__content ul li {
  border-bottom: 1px solid var(--d-blue);
  padding: 24px 0px;
}
#modalRoot .modal__content ul li:first-of-type {
  padding-top: 0px;
}
#modalRoot .modal__content ul li:last-of-type {
  border-bottom: none;
  padding-bottom: 0px;
}
#modalRoot .modal__content ul li:only-child {
  padding: 24px 0px;
}
#modalRoot .modal__content ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#modalRoot .modal__content ul li img {
  margin-right: 8px;
}

.spinner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.spinner-overlay.root {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
}
.spinner-overlay .spinner {
  background-color: transparent;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHdpZHRoPSI0MHB4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCA0MCA0MCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWw6c3BhY2U9InByZXNlcnZlIiBzdHlsZT0iZmlsbC1ydWxlOmV2ZW5vZGQ7Y2xpcC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO3N0cm9rZS1taXRlcmxpbWl0OjEuNDE0MjE7IiB4PSIwcHgiIHk9IjBweCI+CiAgICA8ZGVmcz4KICAgICAgICA8c3R5bGUgdHlwZT0idGV4dC9jc3MiPjwhW0NEQVRBWwogICAgICAgICAgICBALXdlYmtpdC1rZXlmcmFtZXMgc3BpbiB7CiAgICAgICAgICAgICAgZnJvbSB7CiAgICAgICAgICAgICAgICAtd2Via2l0LXRyYW5zZm9ybTogcm90YXRlKDBkZWcpCiAgICAgICAgICAgICAgfQogICAgICAgICAgICAgIHRvIHsKICAgICAgICAgICAgICAgIC13ZWJraXQtdHJhbnNmb3JtOiByb3RhdGUoLTM1OWRlZykKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0KICAgICAgICAgICAgQGtleWZyYW1lcyBzcGluIHsKICAgICAgICAgICAgICBmcm9tIHsKICAgICAgICAgICAgICAgIHRyYW5zZm9ybTogcm90YXRlKDBkZWcpCiAgICAgICAgICAgICAgfQogICAgICAgICAgICAgIHRvIHsKICAgICAgICAgICAgICAgIHRyYW5zZm9ybTogcm90YXRlKC0zNTlkZWcpCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9CiAgICAgICAgICAgIHN2ZyB7CiAgICAgICAgICAgICAgICAtd2Via2l0LXRyYW5zZm9ybS1vcmlnaW46IDUwJSA1MCU7CiAgICAgICAgICAgICAgICAtd2Via2l0LWFuaW1hdGlvbjogc3BpbiAxLjVzIGxpbmVhciBpbmZpbml0ZTsKICAgICAgICAgICAgICAgIC13ZWJraXQtYmFja2ZhY2UtdmlzaWJpbGl0eTogaGlkZGVuOwogICAgICAgICAgICAgICAgYW5pbWF0aW9uOiBzcGluIDEuNXMgbGluZWFyIGluZmluaXRlOwogICAgICAgICAgICB9CiAgICAgICAgXV0+PC9zdHlsZT4KICAgIDwvZGVmcz4KICAgIDxnIGlkPSJvdXRlciI+CiAgICAgICAgPGc+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMCwwQzIyLjIwNTgsMCAyMy45OTM5LDEuNzg4MTMgMjMuOTkzOSwzLjk5MzlDMjMuOTkzOSw2LjE5OTY4IDIyLjIwNTgsNy45ODc4MSAyMCw3Ljk4NzgxQzE3Ljc5NDIsNy45ODc4MSAxNi4wMDYxLDYuMTk5NjggMTYuMDA2MSwzLjk5MzlDMTYuMDA2MSwxLjc4ODEzIDE3Ljc5NDIsMCAyMCwwWiIgc3R5bGU9ImZpbGw6YmxhY2s7Ii8+CiAgICAgICAgPC9nPgogICAgICAgIDxnPgogICAgICAgICAgICA8cGF0aCBkPSJNNS44NTc4Niw1Ljg1Nzg2QzcuNDE3NTgsNC4yOTgxNSA5Ljk0NjM4LDQuMjk4MTUgMTEuNTA2MSw1Ljg1Nzg2QzEzLjA2NTgsNy40MTc1OCAxMy4wNjU4LDkuOTQ2MzggMTEuNTA2MSwxMS41MDYxQzkuOTQ2MzgsMTMuMDY1OCA3LjQxNzU4LDEzLjA2NTggNS44NTc4NiwxMS41MDYxQzQuMjk4MTUsOS45NDYzOCA0LjI5ODE1LDcuNDE3NTggNS44NTc4Niw1Ljg1Nzg2WiIgc3R5bGU9ImZpbGw6cmdiKDIxMCwyMTAsMjEwKTsiLz4KICAgICAgICA8L2c+CiAgICAgICAgPGc+CiAgICAgICAgICAgIDxwYXRoIGQ9Ik0yMCwzMi4wMTIyQzIyLjIwNTgsMzIuMDEyMiAyMy45OTM5LDMzLjgwMDMgMjMuOTkzOSwzNi4wMDYxQzIzLjk5MzksMzguMjExOSAyMi4yMDU4LDQwIDIwLDQwQzE3Ljc5NDIsNDAgMTYuMDA2MSwzOC4yMTE5IDE2LjAwNjEsMzYuMDA2MUMxNi4wMDYxLDMzLjgwMDMgMTcuNzk0MiwzMi4wMTIyIDIwLDMyLjAxMjJaIiBzdHlsZT0iZmlsbDpyZ2IoMTMwLDEzMCwxMzApOyIvPgogICAgICAgIDwvZz4KICAgICAgICA8Zz4KICAgICAgICAgICAgPHBhdGggZD0iTTI4LjQ5MzksMjguNDkzOUMzMC4wNTM2LDI2LjkzNDIgMzIuNTgyNCwyNi45MzQyIDM0LjE0MjEsMjguNDkzOUMzNS43MDE5LDMwLjA1MzYgMzUuNzAxOSwzMi41ODI0IDM0LjE0MjEsMzQuMTQyMUMzMi41ODI0LDM1LjcwMTkgMzAuMDUzNiwzNS43MDE5IDI4LjQ5MzksMzQuMTQyMUMyNi45MzQyLDMyLjU4MjQgMjYuOTM0MiwzMC4wNTM2IDI4LjQ5MzksMjguNDkzOVoiIHN0eWxlPSJmaWxsOnJnYigxMDEsMTAxLDEwMSk7Ii8+CiAgICAgICAgPC9nPgogICAgICAgIDxnPgogICAgICAgICAgICA8cGF0aCBkPSJNMy45OTM5LDE2LjAwNjFDNi4xOTk2OCwxNi4wMDYxIDcuOTg3ODEsMTcuNzk0MiA3Ljk4NzgxLDIwQzcuOTg3ODEsMjIuMjA1OCA2LjE5OTY4LDIzLjk5MzkgMy45OTM5LDIzLjk5MzlDMS43ODgxMywyMy45OTM5IDAsMjIuMjA1OCAwLDIwQzAsMTcuNzk0MiAxLjc4ODEzLDE2LjAwNjEgMy45OTM5LDE2LjAwNjFaIiBzdHlsZT0iZmlsbDpyZ2IoMTg3LDE4NywxODcpOyIvPgogICAgICAgIDwvZz4KICAgICAgICA8Zz4KICAgICAgICAgICAgPHBhdGggZD0iTTUuODU3ODYsMjguNDkzOUM3LjQxNzU4LDI2LjkzNDIgOS45NDYzOCwyNi45MzQyIDExLjUwNjEsMjguNDkzOUMxMy4wNjU4LDMwLjA1MzYgMTMuMDY1OCwzMi41ODI0IDExLjUwNjEsMzQuMTQyMUM5Ljk0NjM4LDM1LjcwMTkgNy40MTc1OCwzNS43MDE5IDUuODU3ODYsMzQuMTQyMUM0LjI5ODE1LDMyLjU4MjQgNC4yOTgxNSwzMC4wNTM2IDUuODU3ODYsMjguNDkzOVoiIHN0eWxlPSJmaWxsOnJnYigxNjQsMTY0LDE2NCk7Ii8+CiAgICAgICAgPC9nPgogICAgICAgIDxnPgogICAgICAgICAgICA8cGF0aCBkPSJNMzYuMDA2MSwxNi4wMDYxQzM4LjIxMTksMTYuMDA2MSA0MCwxNy43OTQyIDQwLDIwQzQwLDIyLjIwNTggMzguMjExOSwyMy45OTM5IDM2LjAwNjEsMjMuOTkzOUMzMy44MDAzLDIzLjk5MzkgMzIuMDEyMiwyMi4yMDU4IDMyLjAxMjIsMjBDMzIuMDEyMiwxNy43OTQyIDMzLjgwMDMsMTYuMDA2MSAzNi4wMDYxLDE2LjAwNjFaIiBzdHlsZT0iZmlsbDpyZ2IoNzQsNzQsNzQpOyIvPgogICAgICAgIDwvZz4KICAgICAgICA8Zz4KICAgICAgICAgICAgPHBhdGggZD0iTTI4LjQ5MzksNS44NTc4NkMzMC4wNTM2LDQuMjk4MTUgMzIuNTgyNCw0LjI5ODE1IDM0LjE0MjEsNS44NTc4NkMzNS43MDE5LDcuNDE3NTggMzUuNzAxOSw5Ljk0NjM4IDM0LjE0MjEsMTEuNTA2MUMzMi41ODI0LDEzLjA2NTggMzAuMDUzNiwxMy4wNjU4IDI4LjQ5MzksMTEuNTA2MUMyNi45MzQyLDkuOTQ2MzggMjYuOTM0Miw3LjQxNzU4IDI4LjQ5MzksNS44NTc4NloiIHN0eWxlPSJmaWxsOnJnYig1MCw1MCw1MCk7Ii8+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4K);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  height: 40px;
  width: 40px;
  display: inline-block;
}

.spinner-parent {
  position: relative;
}

.slideshow-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
  text-align: center;
  /* Position the "next button" to the right */
}
.slideshow-container .image-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 740px;
}
.slideshow-container .image-container .slide {
  display: none;
}
.slideshow-container .image-container .slide.fade {
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.slideshow-container .image-container .slide img {
  max-height: 740px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (max-height: 1080px) {
  .slideshow-container .image-container {
    height: 400px;
  }
  .slideshow-container .image-container .slide img {
    max-height: 400px;
  }
}
.slideshow-container .prev,
.slideshow-container .next {
  border-radius: 3px;
  color: black;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  padding: 16px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: auto;
  /* On hover, add a black background color with a little bit see-through */
}
.slideshow-container .prev:hover,
.slideshow-container .next:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.slideshow-container .next {
  border-radius: 3px;
}
.slideshow-container .next::after {
  content: ">";
}
.slideshow-container .prev::after {
  content: "<";
}
.slideshow-container .active,
.slideshow-container .dot:hover {
  background-color: #717171;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-size: 1rem;
  font-family: "Barlow", sans-serif !important;
}

* {
  margin: 0;
  padding: 0;
}

.wrapper {
  height: 100vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--d-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1rem;
  padding: 0 30px;
}
@media (min-width: 1366px) {
  .header ul > li {
    font-size: 1.25rem;
  }
}
.header .logo {
  padding: 20px 0;
}
.header ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}
.header ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 15px;
  text-transform: uppercase;
}
.header ul li a {
  color: var(--white);
  text-decoration: none;
}
.header ul li a.active {
  color: var(--yellow);
}
.header ul li a:hover {
  color: var(--yellow);
}
.header ul li img {
  height: 30px;
}
.header ul li .cart-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.header ul li .cart-link .cart-count {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgb(153, 245, 0);
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  display: none;
  font-size: 1rem;
  height: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: -0.009375rem;
  line-height: 1.2;
  position: absolute;
  right: -16px;
  text-align: center;
  top: calc(50% - 24px);
  width: 24px;
}
.header ul li .cart-link .cart-count.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content {
  height: 100%;
  overflow-y: auto;
}

.product-configurator span a {
  margin-right: 50px;
}
.product-configurator .product {
  display: grid;
  grid-column-gap: 50px;
  grid-template-areas: "main side";
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 100px 1fr;
}
.product-configurator .product #addToCart {
  display: none;
}
.product-configurator .product #addToCart.visible {
  display: inline-block;
}
.product-configurator .product .side h4 + h4 {
  font-weight: 500;
}
.product-configurator .size .main {
  display: grid;
  grid-template-columns: repeat(3, 2fr) 1fr;
}
.product-configurator .size .main .row {
  margin-right: 0;
  padding-right: 20px;
}
.product-configurator .size .main .row:last-child {
  grid-column: span 4;
  padding: 0;
}
.product-configurator .size .main .row.search-button {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.product-configurator .row {
  border-bottom: 1px solid var(--m-gray);
  min-height: 80px;
  padding-bottom: 10px;
}
.product-configurator ul li {
  margin-bottom: 10px;
}

.component-order-history,
.component-invoice-history {
  padding-top: 16px;
  padding-left: 16px;
}
.component-order-history.wide,
.component-invoice-history.wide {
  padding-bottom: 16px;
  padding-top: 32px;
  padding-left: 0;
}

.component-order-details .documents h2,
.component-invoice-details .documents h2 {
  margin-top: 32px;
}
.component-order-details .documents ul,
.component-invoice-details .documents ul {
  border-bottom: 1px solid var(--d-blue);
  border-top: 1px solid var(--d-blue);
  padding: 32px 0;
}

.component-documents {
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  display: grid;
  grid-template-columns: 1fr 200px;
  grid-template-rows: auto 1fr;
}
.component-documents ul {
  font-size: 1.25rem;
}
.component-documents ul > li {
  font-weight: bold;
}
.component-documents ul > li li {
  font-weight: normal;
}
.component-documents #folders {
  grid-row: span 2;
}

.component-cart li {
  padding: 16px 0;
  border-bottom: 1px solid var(--d-blue);
}
.component-cart .cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.component-cart .cart-item > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 18%;
}
.component-cart .cart-item > div.description {
  width: 36%;
}
.component-cart .cart-item > div.options {
  width: 10%;
}
.component-cart .cart-item > div.options a {
  cursor: pointer;
  text-align: center;
}
.component-cart .cart-item > div.options a:hover {
  text-decoration: underline;
}
.component-cart .cart-item > div.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.component-cart .cart-item > div.price-summary {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.component-cart .cart-item > div.price-summary .price {
  margin-right: 4px;
}
.component-cart .cart-item .quantity-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.component-cart .cart-item .quantity-button {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--d-blue);
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem;
  cursor: pointer;
}
.component-cart .cart-item .quantity-button.disabled {
  pointer-events: none;
  background-color: var(--m-gray);
}
.component-cart .cart-summary {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.component-cart .cart-next {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.component-customer-products .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.component-account {
  margin: 0 auto;
  min-width: 1060px;
}
.component-account .top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.component-account h2 {
  margin: 20px 0;
}

.component-checkout #addressManual {
  display: none;
}
.component-checkout #addressManual.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.component-checkout #addressSaved {
  display: none;
}
.component-checkout #addressSaved.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.component-checkout .row button {
  -ms-flex-item-align: center;
      align-self: center;
}

.component-product-search .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.component-product-search .search-message {
  color: var(--d-blue);
  display: none;
  font-style: italic;
  padding: 16px 0;
}
.component-product-search .search-message.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main.page {
  margin: 0 auto;
  max-width: 1280px;
}

main.login-page form {
  margin: auto;
  max-width: 500px;
}
main.login-page form div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}

main.start-page {
  display: grid;
  grid-template-columns: 1fr 400px;
  grid-template-rows: 1fr;
}
@media (max-width: 768px) {
  main.start-page {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
main.start-page .news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
main.start-page .news__item {
  border-bottom: 1px solid var(--m-gray);
  -webkit-box-flex: 1;
      -ms-flex: 1 0 44%;
          flex: 1 0 44%;
  padding: 2%;
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
  border-right: 1px solid var(--m-gray);
}
main.start-page .news__item:only-of-type {
  border-bottom: none;
}
main.start-page .news__item:hover {
  background-color: var(--l-gray);
}
main.start-page .news__item:hover img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
}
main.start-page .news__item .image-case {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
main.start-page .news__item .image-case img {
  max-width: 100%;
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.8s ease-out;
  transition: -webkit-transform 0.8s ease-out;
  transition: transform 0.8s ease-out;
  transition: transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

main.news-page img {
  max-width: 100%;
}/*# sourceMappingURL=main.css.map */