@charset "UTF-8";
:root {
  --pageWidth: 100vw;
  --colorText: #000000;
  --colorTextMuted: #999999;
  --colorTextLighter: #3c5569;
  --colorBackground: #ffffff;
  --colorBackgroundHighlight: #f5f5f5;
  --colorBackgroundInfo: #f5fcff;
  --colorBackgroundDarker: #f6f6f6;
  --colorBackgroundDark: #3c5569;
  --colorBackgroundExtra: #fff7f1;
  --colorAccent: #009fe3;
  --colorHighlight: #ef8742;
  --colorSuccess: #06cc6d;
  --colorDanger: #e05543;
  --breakpointSmall: 600px;
  --breakpointMedium: 1000px;
  --breakpointLarge: 1300px; }

/* Based on https://hankchizljaw.com/wrote/a-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box; }

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0; }

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0; }

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5; }

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none; }

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto; }

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block; }

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit; }

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; } }

button {
  padding: 0;
  background: transparent;
  border: none; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  height: 45px;
  line-height: 21px;
  background: #ffffff;
  border: 1px solid currentColor;
  border-radius: 5px;
  color: #009fe3;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: 0.3s background, 0.3s color; }
.button:hover {
  background: #f5f5f5; }
.button.button-primary {
  background: #009fe3;
  border-color: #009fe3;
  color: #ffffff; }
.button.button-primary:hover {
  background-color: #007bb0;
  border-color: #007bb0; }
.button.button-highlight {
  background: #ef8742;
  border-color: #ef8742;
  color: #ffffff; }
.button.button-highlight:hover {
  background-color: #ea6914;
  border-color: #ea6914; }
.button.button-danger {
  background: #e05543;
  border-color: #e05543;
  color: #ffffff; }
.button.button-danger:hover {
  background-color: #ce3622;
  border-color: #ce3622; }
.button.button-block {
  display: flex;
  width: 100%; }
.button.button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  width: 1.8em;
  height: 1.8em; }
.button.button-link {
  border: none;
  padding: 0; }

.button-group {
  display: flex; }
.button-group > * + * {
  margin-left: 1.125rem; }
.button-group .button {
  border-color: #d0d0d0;
  color: #000000; }
.button-group .button.active {
  background-color: #f6f6f6;
  color: #ef8742; }

.card {
  padding: 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  background: #ffffff; }
@media (min-width: 1300px) {
  .shopping-cart .card {
    padding-left: 2rem;
    padding-right: 2rem; } }
.card.info {
  display: flex;
  align-items: center;
  background: #f5fcff; }
.card.info img {
  margin-right: 1rem;
  width: 4rem;
  height: 3rem;
  -o-object-fit: contain;
  object-fit: contain; }
@media (min-width: 1300px) {
  .card.info {
    flex-direction: column;
    text-align: center; }
  .card.info img {
    margin-right: 0;
    margin-bottom: 1rem; } }
.card.product {
  padding: 0;
  text-align: center; }
.products-grid .card.product {
  position: relative; }
.products-list .card.product {
  display: grid;
  grid-template-columns: 30% 40% 30%;
  grid-template-rows: auto 1fr;
  grid-template-areas: "image header footer"
 "image data-grid footer"; }
.products-list .card.product + .card.product {
  margin-top: 1.875rem; }
.card.product header {
  padding: 0 0.5rem; }
.products-grid .card.product header {
  position: relative;
  z-index: 6; }
.products-list .card.product header {
  grid-area: header; }
.card.product header .title {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1em;
  color: #009fe3;
  transition: 0.3s color; }
.card.product header .info {
  font-size: 1.5rem;
  font-weight: 300;
  transition: 0.3s color; }
.card.product .image {
  display: flex;
  align-items: center;
  max-width: 260px; }
.card.product .image:before {
  content: '';
  margin-left: -1px;
  padding-top: 75%;
  height: 0;
  width: 1px;
  float: left; }
.card.product .image:after {
  content: '';
  display: table;
  clear: both; }
.products-grid .card.product .image {
  margin: 1rem auto; }
.products-list .card.product .image {
  padding: 1rem;
  grid-area: image;
  border-right: 1px solid #d0d0d0; }
.card.product .image img {
  width: 100%;
  max-height: 195px;
  -o-object-fit: contain;
  object-fit: contain; }
.card.product .data-grid {
  display: flex;
  justify-content: stretch;
  margin-top: 1rem;
  border-top: 1px solid #d0d0d0; }
.products-list .card.product .data-grid {
  grid-area: data-grid; }
.card.product .data-grid .data-item {
  flex: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem; }
.card.product .data-grid .data-item + .data-item {
  border-left: 1px solid #d0d0d0; }
.card.product .data-grid .data-item * + * {
  margin-top: 0.5rem; }
.card.product footer {
  padding: 1rem; }
.products-grid .card.product footer {
  background: #009fe3;
  border-bottom-left-radius: calc(10px - 1px);
  border-bottom-right-radius: calc(10px - 1px);
  color: #ffffff; }
.products-list .card.product footer {
  grid-area: footer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid #d0d0d0; }
.products-grid .card.product footer .price {
  position: relative;
  z-index: 6; }
.products-list .card.product footer .price {
  color: #009fe3; }
.card.product footer .price .amount {
  font-size: 1.875rem;
  font-weight: 600; }
.card.product footer .price .tax {
  font-size: 1.25rem;
  font-weight: 300; }
.card.product footer .product-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
.products-grid .card.product footer .product-actions {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3c5569;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s opacity;
  z-index: 5; }
.card.product footer .product-actions a {
  color: #000000;
  text-decoration: none; }
.products-grid .card.product footer .product-actions a {
  color: #ffffff; }
.products-grid .card.product:hover header .title, .products-grid .card.product:hover header .info {
  color: #ffffff; }
.products-grid .card.product:hover footer .product-actions {
  opacity: 1;
  pointer-events: auto; }
.card.shopping-cart-item {
  display: flex;
  align-content: flex-start;
  justify-content: stretch;
  position: relative; }
.card.shopping-cart-item + .shopping-cart-item {
  margin-top: 1rem; }
@media (max-width: 1299px) {
  .card.shopping-cart-item {
    flex-wrap: wrap; } }
@media (min-width: 1300px) {
  .card.shopping-cart-item {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem; } }
.card.shopping-cart-item .product-data {
  flex: none; }
@media (max-width: 1299px) {
  .card.shopping-cart-item .product-data {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    width: 100%;
    border-bottom: 1px solid #d0d0d0; } }
@media (min-width: 1300px) {
  .card.shopping-cart-item .product-data {
    display: grid;
    grid-template-columns: 4rem auto;
    grid-template-rows: auto 1fr;
    grid-template-areas: "image name"
 "image details"; }
  .card.shopping-cart-item .product-data .image {
    grid-area: image; }
  .card.shopping-cart-item .product-data .name {
    grid-area: name;
    padding: 0.5rem 1rem; }
  .card.shopping-cart-item .product-data .details {
    grid-area: details;
    padding: 0 1rem; } }
.card.shopping-cart-item .product-data * {
  margin-top: 0; }
.card.shopping-cart-item .product-data .name {
  padding-right: 1rem;
  color: #009fe3; }
.card.shopping-cart-item .product-data .details {
  font-weight: 300; }
.card.shopping-cart-item .form-group.unit-price .form-control {
  padding-left: 0;
  padding-right: 0; }
.card.shopping-cart-item .form-group.quantity .form-control {
  text-align: center; }
.card.shopping-cart-item .form-group.total-price .form-control {
  padding-left: 0;
  padding-right: 0;
  font-weight: 600; }
@media (max-width: 1299px) {
  .card.shopping-cart-item .form-group {
    flex: auto; }
  .card.shopping-cart-item .form-group.unit-price {
    width: 30%; }
  .card.shopping-cart-item .form-group.quantity {
    width: 30%;
    text-align: center; }
  .card.shopping-cart-item .form-group.total-price {
    width: 40%;
    text-align: right; }
  .card.shopping-cart-item .form-group.total-price .form-control {
    text-align: right; } }
@media (min-width: 1300px) {
  .card.shopping-cart-item .form-group {
    flex: none; }
  .card.shopping-cart-item .form-group label {
    display: none; }
  .card.shopping-cart-item .form-group.quantity .form-control {
    width: 40%; } }
.card.shopping-cart-item .actions {
  position: absolute; }
@media (max-width: 1299px) {
  .card.shopping-cart-item .actions {
    top: 0.5rem;
    right: 0.5rem; } }
@media (min-width: 1300px) {
  .card.shopping-cart-item .actions {
    top: 2rem;
    right: 2rem; } }
.card.shopping-cart-item .actions .button-icon {
  font-size: 0.75rem; }
.card.extra {
  background-color: #fff7f1;
  font-weight: 300; }
.card.extra .card-section dl {
  display: flex;
  justify-content: space-between; }
@media (max-width: 1299px) {
  .card.extra .card-section + .card-section {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #d0d0d0; } }
@media (min-width: 1300px) {
  .card.extra {
    display: flex;
    align-items: center;
    justify-content: stretch; }
  .card.extra .card-section {
    flex: auto; }
  .card.extra .card-section .form-group {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .card.extra .card-section .form-group p {
    flex: none;
    margin-right: 2rem; }
  .card.extra .card-section + .card-section {
    margin-left: 5rem; } }
.card.total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600; }
.card.total .highlighted {
  color: #ef8742;
  font-weight: 800; }

form.card {
  padding: 0.5rem;
  background-color: #f5f5f5; }
@media (min-width: 1300px) {
  form.card.compact {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; }
  form.card.compact .column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%; }
  form.card.compact .form-group.navigation-radios label.radio {
    width: 50%; } }

@media (max-width: 999px) {
  .card-grid .card + .card {
    margin-top: 0.5rem; } }

@media (min-width: 1300px) {
  .card-grid {
    display: flex;
    justify-content: space-between; }
  .card-grid .card {
    width: calc(20% - 1.6rem);
    margin-bottom: 2rem; } }

.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: -0.9375rem; }
.products-grid .card {
  margin: 0.9375rem; }
@media (max-width: 599px) {
  .slider-container .products-grid .card {
    width: calc(var(--pageWidth) * 0.8); } }
@media (min-width: 600px) and (max-width: 999px) {
  .products-grid .card {
    width: calc(var(--pageWidth) * 0.9 / 2 - 0.9375rem); } }
@media (min-width: 1000px) and (max-width: 1299px) {
  .products-grid .card {
    width: calc(var(--pageWidth) * 0.9 / 3 - 1.25rem); } }
@media (min-width: 1300px) {
  .products-grid .card {
    width: calc(285px - 1.40625rem); } }

@media (min-width: 1300px) {
  .tabbed-card .tab-buttons {
    display: flex;
    justify-content: flex-start; } }

.tabbed-card .tab-buttons a {
  display: block;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #000000;
  font-weight: 300;
  text-decoration: none; }
@media (min-width: 1300px) {
  .tabbed-card .tab-buttons a {
    font-size: 1.5rem; } }
.tabbed-card .tab-buttons a:hover {
  color: #009fe3; }
.tabbed-card .tab-buttons a.active {
  background-color: #f6f6f6;
  border-color: #d0d0d0;
  color: #009fe3;
  font-weight: 500; }

.tabbed-card .tab-contents .card {
  margin-top: 1.875rem;
  background: #f6f6f6; }

@media (max-width: 1299px) {
  .tabbed-card.tabbed-card-initialized .tab-buttons {
    border: 1px solid #d0d0d0;
    border-bottom: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden; } }

@media (max-width: 1299px) {
  .tabbed-card.tabbed-card-initialized .tab-buttons a {
    border: none;
    border-radius: 0; }
  .tabbed-card.tabbed-card-initialized .tab-buttons a:not(:last-child) {
    border-bottom: 1px solid #d0d0d0; } }

@media (min-width: 1300px) {
  .tabbed-card.tabbed-card-initialized .tab-buttons a {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: #f6f6f6;
    margin-bottom: -1px; } }

.tabbed-card.tabbed-card-initialized .tab-contents .card {
  margin-top: 0; }
@media (max-width: 1299px) {
  .tabbed-card.tabbed-card-initialized .tab-contents .card {
    border-top-left-radius: 0;
    border-top-right-radius: 0; } }
@media (min-width: 1300px) {
  .tabbed-card.tabbed-card-initialized .tab-contents .card:first-child {
    border-top-left-radius: 0; } }
.tabbed-card.tabbed-card-initialized .tab-contents .card:not(.active) {
  display: none; }

@media (max-width: 999px) {
  .combined-cards .combined-cards-header {
    display: none; } }

@media (min-width: 1000px) {
  .combined-cards .combined-cards-header {
    display: flex;
    padding: 0.5rem 2rem;
    color: #999999;
    text-transform: uppercase; }
  .combined-cards .product-data {
    width: 42%; }
  .combined-cards .unit-price {
    width: 20%; }
  .combined-cards .quantity {
    width: 15%; }
  .combined-cards .total-price {
    width: 23%; }
  .combined-cards .card {
    position: relative; }
  .combined-cards .card:not(:first-of-type) {
    margin-top: 0;
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .combined-cards .card:not(:last-of-type) {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .combined-cards .card:not(:last-of-type):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: #d0d0d0; } }

.review + .review {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #d0d0d0; }

.review .info {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-style: italic; }

.review blockquote {
  position: relative;
  margin-top: 0.5rem;
  margin-left: 1.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid #d0d0d0; }
.review blockquote:before {
  content: '“';
  display: block;
  position: absolute;
  top: 0;
  left: -1.5rem;
  width: 1.5rem;
  margin-top: -0.8rem;
  font-size: 3em;
  color: #d0d0d0; }

.site-footer section {
  padding-top: 2rem;
  padding-bottom: 2rem; }

@media (max-width: 999px) {
  .site-footer .quick-links {
    text-align: center; }
  .site-footer .quick-links a {
    display: block; }
  .site-footer .quick-links a + a {
    margin-top: 0.5rem; } }

@media (min-width: 1000px) {
  .site-footer .quick-links {
    display: flex;
    justify-content: space-between; } }

.site-footer .legal {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600; }

.site-footer nav .menu-group {
  display: block; }
.site-footer nav .menu-group .menu-item {
  display: block; }
.site-footer nav .menu-group .menu-item.group-main {
  font-weight: 600; }
.site-footer nav .menu-group .menu-item.inline {
  display: inline-block; }
.site-footer nav .menu-group .menu-item + .menu-item {
  margin-top: 0.5rem; }

.site-footer nav.footer-menu, .site-footer nav.partners, .site-footer nav.favorites {
  font-size: 0.875rem; }

.site-footer nav.footer-menu, .site-footer nav.partners {
  display: flex; }

.site-footer nav.partners {
  align-items: center;
  justify-content: space-between; }

@media (max-width: 999px) {
  .site-footer nav.footer-menu {
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d0d0d0; }
  .site-footer nav.favorites .menu-group + .menu-group {
    margin-top: 2rem; } }

@media (min-width: 1300px) {
  .site-footer nav.footer-menu, .site-footer nav.favorites {
    margin: 0 -0.9375rem; }
  .site-footer nav.footer-menu .menu-group, .site-footer nav.favorites .menu-group {
    padding: 0 0.9375rem; }
  .site-footer nav.footer-menu {
    width: calc(33.33333333% + 1.875rem); }
  .site-footer nav.footer-menu .menu-group {
    width: 50%; }
  .site-footer nav.partners {
    width: 33.33333333%; }
  .site-footer nav.favorites {
    display: flex; }
  .site-footer nav.favorites .menu-group {
    width: 50%;
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem; } }

@media (min-width: 1300px) {
  .site-footer .footer-navigation {
    display: flex;
    margin: 0 -0.9375rem; }
  .site-footer .footer-navigation > * {
    padding: 0 0.9375rem; } }

form:not(.compact) > * + *, form:not(.compact) .form-section > * + * {
  margin-top: 1rem; }

form .form-section + .form-section {
  margin-top: 1.5rem; }

form.compact .form-section {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  margin: 0 -0.75rem; }
form.compact .form-section > * {
  flex-basis: 0;
  flex-grow: 0;
  margin: 0.5rem 0.75rem; }
form.compact .form-section > *:not(.divider) {
  flex-grow: 1; }
form.compact .form-section > *.divider {
  margin-left: 0;
  margin-right: 0; }
form.compact .form-section .form-group + .form-group {
  margin-top: 0.5rem; }

form.contact, form.review {
  margin-top: 1.5rem; }
@media (min-width: 1300px) {
  form.contact, form.review {
    display: flex;
    justify-content: center; } }
form.contact .form-section, form.review .form-section {
  text-align: center; }
@media (min-width: 1300px) {
  form.contact .form-section, form.review .form-section {
    margin: 1.875rem;
    width: 50%;
    max-width: 360px; } }
form.contact .form-section .form-group, form.review .form-section .form-group {
  text-align: left; }
form.contact .form-section.message, form.review .form-section.message {
  display: flex;
  flex-direction: column;
  justify-content: stretch; }
form.contact .form-section.message .form-group, form.review .form-section.message .form-group {
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: stretch; }
form.contact .form-section.message .form-group label, form.review .form-section.message .form-group label {
  flex: none; }
form.contact .form-section.message .form-group .form-control, form.review .form-section.message .form-group .form-control {
  flex: auto; }
form.contact .form-section.message .button, form.review .form-section.message .button {
  flex: none; }
form.contact .form-section .form-section, form.review .form-section .form-section {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  margin: 0 -0.75rem;
  width: auto;
  max-width: none; }
form.contact .form-section .form-section > *, form.review .form-section .form-section > * {
  margin: 1rem 0.75rem 0; }
form.contact .form-section .form-section > *:not(.divider), form.review .form-section .form-section > *:not(.divider) {
  width: 100%; }
form.contact .form-section .form-section > *.divider, form.review .form-section .form-section > *.divider {
  margin-left: 0;
  margin-right: 0; }
form.contact .form-section .form-section .form-group + .form-group, form.review .form-section .form-section .form-group + .form-group {
  margin-top: 0.5rem; }

form.contact {
  padding: 2rem; }

form .divider {
  margin-left: 0;
  margin-right: 0;
  align-self: flex-end; }
form .divider.slash:after {
  content: '/';
  color: #999999;
  line-height: 45px; }
@media reader, speech, aural {
  form .divider.slash:after {
    content: none; } }

form .form-buttons {
  display: flex;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  justify-content: stretch; }
form .form-buttons > * {
  flex: auto;
  margin-left: 0.5rem;
  margin-right: 0.5rem; }
@media (min-width: 1300px) {
  form .form-buttons {
    justify-content: space-between; }
  form .form-buttons > * {
    flex: none; } }

.shopping-cart h1, .shopping-cart h2, .shopping-cart h3, .shopping-cart h4, .shopping-cart h5, .shopping-cart h6 {
  color: #009fe3; }
.shopping-cart h1:not(:first-child), .shopping-cart h2:not(:first-child), .shopping-cart h3:not(:first-child), .shopping-cart h4:not(:first-child), .shopping-cart h5:not(:first-child), .shopping-cart h6:not(:first-child) {
  margin-top: 2rem; }

@media (min-width: 1300px) {
  .shopping-cart.customer-data .form-section {
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem; }
  .shopping-cart.customer-data .form-section .form-group {
    -moz-column-break-inside: avoid;
    break-inside: avoid; } }

.shopping-cart.confirmation > * + * {
  margin-top: 1rem; }

.shopping-cart.confirmation .card > * + * {
  margin-top: 1rem; }

@media (max-width: 1299px) {
  .shopping-cart.confirmation .card.info {
    flex-direction: column; }
  .shopping-cart.confirmation .card.info p {
    width: 100%; } }

@media (min-width: 1300px) {
  .shopping-cart.confirmation .card.info {
    flex-direction: row;
    justify-content: space-between; }
  .shopping-cart.confirmation .card.info .button {
    margin-top: 0; } }

.shopping-cart.confirmation span.highlight {
  color: #ef8742; }

.shopping-cart.confirmation dl {
  display: flex;
  flex-wrap: wrap;
  max-width: 25rem; }
.shopping-cart.confirmation dl dt {
  margin-right: 1rem;
  width: calc(30% - 1rem); }
.shopping-cart.confirmation dl dd {
  width: 70%;
  font-weight: 600; }

@media (min-width: 1300px) {
  .payment-selector {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    margin-left: -0.9375rem;
    margin-right: -0.9375rem; }
  .payment-selector .payment-method {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
    width: calc(33.33333333% - 1.875rem); }
  .payment-selector .payment-method header {
    flex: none; }
  .payment-selector .payment-method .card {
    flex: auto; } }

@media (max-width: 1299px) {
  .payment-selector .payment-method + .payment-method {
    margin-top: 1.875rem; } }

.payment-selector .payment-method header {
  margin-bottom: 0.5rem;
  color: #009fe3; }
.payment-selector .payment-method header p {
  font-weight: 600; }

.payment-selector .payment-method .card {
  font-weight: 300; }
.payment-selector .payment-method .card * + * {
  margin-top: 1rem; }
.payment-selector .payment-method .card img {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.site-header .user-header {
  padding: 2rem 0 1.75rem;
  color: #3c5569;
  font-size: 0.875rem; }
.site-header .user-header .section-content {
  display: flex;
  justify-content: space-between; }
.site-header .user-header a {
  color: #3c5569; }
.site-header .user-header .site-title {
  font-size: 2rem;
  line-height: 1em; }
.site-header .user-header .site-title img {
  width: auto;
  height: 1em; }

.site-header .main-menu {
  padding: 0;
  color: #ffffff; }
.site-header .main-menu .section-content {
  display: flex;
  justify-content: space-between; }
.site-header .main-menu .overlay {
  padding: 0; }
.site-header .main-menu .site-menu .menu-item {
  display: inline-block;
  padding: 1rem;
  line-height: 1.75rem;
  color: #ffffff; }
.site-header .main-menu .site-menu .menu-item:hover, .site-header .main-menu .site-menu .menu-item.active {
  color: #ef8742; }
.site-header .main-menu .search {
  padding: 0.875rem 0; }

.site-header .icon {
  font-size: 2rem; }

.site-header a {
  text-decoration: none; }

.site-header nav .menu-item.with-submenu:after {
  content: '';
  display: inline-block;
  margin-left: 0.5rem;
  width: 0.6rem;
  height: 0.6rem;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-0.25rem); }

.site-header nav .menu-item .icon-text {
  margin-right: 0.5rem; }

@media (max-width: 999px) {
  .site-header {
    position: -webkit-sticky;
    position: sticky;
    background: #3c5569;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
  .site-header .user-header {
    padding: 0.875rem; }
  .site-header .user-header .section-content {
    width: 100%; }
  .site-header .user-header .site-title {
    display: none; }
  .site-header .user-header nav > * + * {
   /*margin-left: 0.875rem;*/ }
  .site-header .basket .amount {
    display: none; }
  .site-header .main-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s opacity;
    z-index: 10; }
  .site-header .main-menu .section-content {
    position: relative;
    margin-left: 0;
    width: 80%;
    height: 100%;
    background: #3c5569;
    transform: translateX(-100%);
    transition: 0.3s transform;
    z-index: 2; }
  .site-header .main-menu .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1; }
  .site-header .main-menu .site-menu {
    width: 100%; }
  .site-header .main-menu .site-menu .menu-item {
    display: block;
    padding-left: 1.25rem; }
  .site-header .main-menu .site-menu .menu-item.home img {
    height: 2.5rem; }
  .site-header .main-menu .search {
    display: none; }
  .site-header .main-menu.opened {
    opacity: 1;
    pointer-events: auto; }
  .site-header .main-menu.opened .section-content {
    transform: translateX(0); } }

@media (min-width: 1000px) {
  .site-header .user-header .menu-toggle,
  .site-header .user-header .user-menu .menu-item.search {
    display: none; }
  .site-header .main-menu {
    background: #3c5569; }
  .site-header .main-menu .menu-item {
    margin: 0 3.5rem 0 -1rem; }
  .site-header .main-menu .menu-item.home {
    display: none; }
  .site-header nav > * + * {
    margin-left: 3.5rem; } }

i.icon {
  vertical-align: middle;
  overflow: hidden;
  text-indent: -1000em; }
i.icon, i.icon:before, i.icon:after {
  display: inline-block;
  position: relative;
  width: 1em;
  height: 1em; }
i.icon:before, i.icon:after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain; }
i.icon.user:before, a i.icon.user:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s opacity; }
i.icon.user:before {
  background-image: url("/assets/images/icons/user.png"); }
i.icon.user.light:before {
  background-image: url("/assets/images/icons/user-light.png"); }
@media (max-width: 999px) {
  i.icon.user.light-small:before {
    background-image: url("/assets/images/icons/user-light.png"); } }
a i.icon.user:after {
  background-image: url("/assets/images/icons/user-hover.png");
  opacity: 0; }
a:hover i.icon.user:before {
  opacity: 0; }
a:hover i.icon.user:after {
  opacity: 1; }
i.icon.basket:before, a i.icon.basket:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s opacity; }
i.icon.basket:before {
  background-image: url("/assets/images/icons/basket.png"); }
i.icon.basket.light:before {
  background-image: url("/assets/images/icons/basket-light.png"); }
@media (max-width: 999px) {
  i.icon.basket.light-small:before {
    background-image: url("/assets/images/icons/basket-light.png"); } }
a i.icon.basket:after {
  background-image: url("/assets/images/icons/basket-hover.png");
  opacity: 0; }
a:hover i.icon.basket:before {
  opacity: 0; }
a:hover i.icon.basket:after {
  opacity: 1; }
i.icon.magnifier:before, a i.icon.magnifier:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s opacity; }
i.icon.magnifier:before {
  background-image: url("/assets/images/icons/magnifier.png"); }
i.icon.magnifier.light:before {
  background-image: url("/assets/images/icons/magnifier-light.png"); }
@media (max-width: 999px) {
  i.icon.magnifier.light-small:before {
    background-image: url("/assets/images/icons/magnifier-light.png"); } }
a i.icon.magnifier:after {
  background-image: url("/assets/images/icons/magnifier-hover.png");
  opacity: 0; }
a:hover i.icon.magnifier:before {
  opacity: 0; }
a:hover i.icon.magnifier:after {
  opacity: 1; }
i.icon.menu:before, a i.icon.menu:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s opacity; }
i.icon.menu:before {
  background-image: url("/assets/images/icons/menu.png"); }
i.icon.menu.light:before {
  background-image: url("/assets/images/icons/menu-light.png"); }
@media (max-width: 999px) {
  i.icon.menu.light-small:before {
    background-image: url("/assets/images/icons/menu-light.png"); } }
a i.icon.menu:after {
  background-image: url("/assets/images/icons/menu-hover.png");
  opacity: 0; }
a:hover i.icon.menu:before {
  opacity: 0; }
a:hover i.icon.menu:after {
  opacity: 1; }

.icon-badge {
  display: inline-block;
  position: relative;
  margin: -0.25rem 0 0 -1rem;
  padding: 0.25rem;
  height: calc(1.25rem + 4px);
  line-height: 0.75rem;
  min-width: calc(1.25rem + 4px);
  font-size: 0.75rem;
  border: 2px solid #ffffff;
  border-radius: calc(0.625rem + 2px);
  color: #ffffff;
  background: #ef8742;
  text-align: center;
  vertical-align: top;
  z-index: 2; }

.rating {
  display: inline-block;
  position: relative;
  padding: 0.25em 0.9em 0.15em 0.2em;
  width: 2.1em;
  height: 1.4em;
  line-height: 1em;
  background: black;
  -webkit-clip-path: polygon(0% 0%, 66.66% 0%, 100% 50%, 66.66% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 66.66% 0%, 100% 50%, 66.66% 100%, 0% 100%);
  color: white;
  font-style: normal;
  font-weight: 800;
  text-align: center;
  -webkit-text-stroke: 0.75px black;
  z-index: 1; }
.rating:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  -webkit-clip-path: polygon(0% 0%, 66.66% 0%, 100% 50%, 66.66% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 66.66% 0%, 100% 50%, 66.66% 100%, 0% 100%);
  z-index: 0; }
.rating:after {
  position: relative;
  text-align: center;
  z-index: 2; }
.rating.rating-A:before {
  background: #00a650; }
.rating.rating-A:after {
  content: "A"; }
.rating.rating-B:before {
  background: #43a410; }
.rating.rating-B:after {
  content: "B"; }
.rating.rating-C:before {
  background: #c5d100; }
.rating.rating-C:after {
  content: "C"; }
.rating.rating-D:before {
  background: #ffe700; }
.rating.rating-D:after {
  content: "D"; }
.rating.rating-E:before {
  background: #f7b202; }
.rating.rating-E:after {
  content: "E"; }
.rating.rating-F:before {
  background: #f96600; }
.rating.rating-F:after {
  content: "F"; }
.rating.rating-G:before {
  background: #e50306; }
.rating.rating-G:after {
  content: "G"; }

body[data-size=tiny] img.hidden.hidden-on-tiny,
body[data-size=small] img.hidden.hidden-on-small,
body[data-size=medium] img.hidden.hidden-on-medium,
body[data-size=large] img.hidden.hidden-on-large {
  display: none; }

.form-group label, .form-group .label {
  display: block;
  margin-bottom: 0.25rem; }
.form-group label:not(.checkbox):not(.radio), .form-group .label:not(.checkbox):not(.radio) {
  color: #999999;
  font-size: 0.75rem;
  text-transform: uppercase; }
.form-group label + label, .form-group label + .label, .form-group .label + label, .form-group .label + .label {
  margin-top: 0.5rem; }

.form-group .phone-number {
  display: flex;
  align-items: center;
  justify-content: stretch;
  font-weight: 300; }
.form-group .phone-number span, .form-group .phone-number select {
  flex: none;
  margin-right: 1rem;
  width: auto; }
.form-group .phone-number input {
  flex: auto; }

.form-control {
  font-size: 1rem;
  font-weight: 300;
  transition: 0.3s border-color; }
.form-control:not(.hidden) {
  padding: 12px 8px;
  width: 100%;
  min-height: 45px;
  line-height: 21px;
  border: 1px solid #d0d0d0;
  border-radius: 5px; }
.form-control:not(.hidden):not(textarea) {
  height: 45px; }
@media (min-width: 1300px) {
  .form-control:not(.hidden) {
    padding-left: 18px;
    padding-right: 18px; } }
.form-control.hidden {
  padding: 0;
  line-height: 1em;
  background: transparent;
  border-width: 0;
  border-bottom-width: 1px;
  border-color: transparent; }
.form-control:focus, .form-control:active {
  outline: none;
  border-color: #ef8742; }
.form-control[readonly] {
  background-color: transparent;
  border-color: transparent; }
.form-control[disabled] {
  background: #ffffff;
  border: 1px solid #d0d0d0;
  opacity: 50%; }

select.form-control,
.checkbox-dropdown .summary.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 24px !important;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="14" height="9" viewbox="0 0 14 9"%3E%3Cpath fill="black" d="M0,2L7,9L14,2L12,0L7,5L2,0Z" /%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: center right 8px; }
@media (min-width: 1300px) {
  select.form-control,
  .checkbox-dropdown .summary.form-control {
    padding-right: 36px !important;
    background-position: center right 10px; } }

textarea.form-control {
  min-width: 100%;
  max-width: 100%; }

label.checkbox, label.radio {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.75rem;
  font-weight: 300;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
label.checkbox input, label.radio input {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  pointer-events: none; }
label.checkbox:before, label.radio:before {
  content: '';
  display: inline-block; }
label.checkbox .mark, label.radio .mark {
  display: block;
  flex: none;
  position: relative;
  margin-right: 0.5rem;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border: 1px solid #d0d0d0;
  transition: 0.3s border-color; }
label.checkbox .mark:after, label.radio .mark:after {
  content: '';
  position: absolute;
  opacity: 0;
  transition: 0.3s opacity; }
label.checkbox:hover .mark, label.radio:hover .mark {
  border-color: #009fe3; }
label.checkbox input:checked ~ .mark, label.radio input:checked ~ .mark {
  border-color: #009fe3; }
label.checkbox input:checked ~ .mark:after, label.radio input:checked ~ .mark:after {
  opacity: 1; }

label.checkbox .mark {
  border-radius: 5px; }
label.checkbox .mark:after {
  top: 3px;
  left: 9px;
  width: 12px;
  height: 18px;
  border: solid #009fe3;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg); }

label.radio .mark {
  border-radius: 50%; }
label.radio .mark:after {
  top: 8px;
  left: 8px;
  width: 12px;
  height: 12px;
  background: #009fe3;
  border-radius: 50%; }

.form-group.navigation-radios {
  display: flex;
  justify-content: space-between; }
@media (min-width: 1000px) {
  .form-group.navigation-radios {
    flex-wrap: wrap; } }
.form-group.navigation-radios label.radio {
  margin-top: 0;
  font-size: 0.875rem;
  font-weight: 500; }
.form-group.navigation-radios label.radio input:checked ~ .content {
  color: #ef8742; }
@media (max-width: 999px) {
  .form-group.navigation-radios {
    padding-bottom: 1rem;
    border-bottom: 1px solid #d0d0d0; }
  .form-group.navigation-radios label.radio {
    margin-bottom: 0; }
  .form-group.navigation-radios label.radio .mark {
    display: none; } }

.form-group[data-filterby].filtered [data-filter]:not(.visible) {
  display: none; }

.interval-input {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  font-weight: 300; }
.interval-input .interval-slider {
  position: relative;
  margin: 1.25rem 1.25rem 2rem;
  width: calc(100% - 2.5rem);
  height: 0; }
.interval-input .interval-slider:before {
  content: '';
  display: block;
  position: absolute;
  top: -0.5rem;
  left: -1.25rem;
  right: -1.25rem;
  bottom: -0.5rem;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 0.5rem;
  z-index: 1; }
.interval-input .interval-slider:after {
  content: '';
  display: block;
  position: absolute;
  top: calc(-0.5rem + 1px);
  left: var(--start-percent);
  right: var(--end-percent);
  bottom: calc(-0.5rem + 1px);
  background: #ef8742;
  z-index: 2; }
.interval-input .interval-slider .interval-button {
  position: absolute;
  top: 0;
  margin: -1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #ef8742;
  border: 0.75rem solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  cursor: ew-resize;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 3; }
.interval-input .interval-slider .interval-button.start {
  left: var(--start-percent); }
.interval-input .interval-slider .interval-button.end {
  right: var(--end-percent); }

.checkbox-dropdown {
  display: block;
  background: #ffffff;
  position: relative;
  height: 45px; }
.checkbox-dropdown:focus, .checkbox-dropdown:focus-within {
  outline: none;
  border-color: #ef8742; }
.checkbox-dropdown .summary {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  white-space: nowrap; }
.checkbox-dropdown .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 50vh;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  overflow-y: auto; }
@media (min-width: 1300px) {
  .checkbox-dropdown .options {
    width: 150%; } }
.checkbox-dropdown .options .option-group-label,
.checkbox-dropdown .options .option {
  display: block;
  padding: 4px 8px; }
@media (min-width: 1300px) {
  .checkbox-dropdown .options .option-group-label,
  .checkbox-dropdown .options .option {
    padding-left: 18px;
    padding-right: 18px; } }
.checkbox-dropdown:focus .options,
.checkbox-dropdown:focus-within .options,
.checkbox-dropdown .options:hover {
  display: block; }

.slider-wrap .slider-container {
  overflow: hidden; }
@media (max-width: 1139px) {
  .slider-wrap .slider-container.fullwidth {
    margin-left: calc(var(--pageWidth) * -0.05);
    margin-right: calc(var(--pageWidth) * -0.05);
    padding-left: calc(var(--pageWidth) * 0.05); } }
@media (min-width: 1140px) {
  .slider-wrap .slider-container.fullwidth {
    margin-left: calc((1140px - var(--pageWidth)) / 2);
    margin-right: calc((1140px - var(--pageWidth)) / 2);
    padding-left: calc((var(--pageWidth) - 1140px) / 2); } }
.slider-wrap .slider-container .slider-item {
  opacity: 0.3;
  transition: 0.3s opacity; }
.slider-wrap .slider-container .slider-item.active {
  opacity: 1; }

.slider-wrap .slider-track:not(.touch-move) {
  transition: 0.3s ease-in-out transform; }

.slider-wrap .slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem; }
.slider-wrap .slider-dots .slider-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer; }
.slider-wrap .slider-dots .slider-dot:before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  transition: 0.3s all; }
.slider-wrap .slider-dots .slider-dot:focus {
  border: none;
  outline: none; }
.slider-wrap .slider-dots .slider-dot.active:before {
  width: 1.75rem;
  height: 1.75rem;
  background: #009fe3; }
@media (max-width: 599px) {
  .slider-wrap .slider-dots .slider-dot {
    width: 1rem;
    height: 1rem; }
  .slider-wrap .slider-dots .slider-dot:before {
    width: 0.75rem;
    height: 0.75rem; }
  .slider-wrap .slider-dots .slider-dot.active:before {
    width: 0.875rem;
    height: 0.875rem; } }

.steps {
  display: flex;
  justify-content: stretch; }
.steps .step {
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: stretch; }
.steps .step:after {
  flex: auto;
  content: '';
  display: block;
  height: 0.25rem;
  background: #ffffff; }
.steps .step:last-child {
  flex: none; }
.steps .step:last-child:after {
  display: none; }
.steps .step .step-label {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #ffffff;
  font-size: 0.875rem;
  font-weight: 600; }
@media (min-width: 1300px) {
  .steps .step .step-label {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.25rem; } }
.steps .step:not(:first-child) .step-label:before,
.steps .step:not(:last-child) .step-label:after {
  content: '';
  display: block;
  position: absolute;
  border: solid transparent; }
.steps .step:not(:first-child) .step-label:before {
  right: 95%;
  border-width: 0.3rem 1rem 0.3rem 0;
  border-right-color: #ffffff; }
.steps .step:not(:last-child) .step-label:after {
  left: 95%;
  border-width: 0.3rem 0 0.3rem 1rem;
  border-left-color: #ffffff; }
.steps .step.done:after {
  background: #06cc6d; }
.steps .step.done.before:after {
  background: linear-gradient(to right, #06cc6d 0%, #ef8742 100%); }
.steps .step.done .step-label {
  background: #06cc6d;
  color: #ffffff; }
.steps .step.done .step-label:before {
  border-right-color: #06cc6d; }
.steps .step.done .step-label:after {
  border-left-color: #06cc6d; }
.steps .step.active:after {
  background: linear-gradient(to right, #ef8742 0%, #ffffff 100%); }
.steps .step.active .step-label {
  background: #ef8742;
  color: #ffffff;
  font-size: 1.125rem; }
@media (min-width: 1300px) {
  .steps .step.active .step-label {
    font-size: 1.75rem; } }
.steps .step.active .step-label:before {
  border-right-color: #ef8742; }
.steps .step.active .step-label:after {
  border-left-color: #ef8742; }

.skip-link {
  position: absolute;
  font-size: 0;
  opacity: 0; }

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5% 0; }
section > * {
  width: 90%; }
@media (min-width: 1300px) {
  section > * {
    max-width: 1140px; } }
@media (min-width: 1300px) {
  section {
    padding: 3.25rem 0; } }
section > * + * {
  padding-top: 2rem; }
@media (min-width: 1300px) {
  section.with-image-header {
    padding-top: 0; }
  section.with-image-header:before {
    content: '';
    display: block;
    padding-top: 25%;
    width: 100%;
    height: 0;
    background: no-repeat center var(--bgImage);
    background-size: cover;
    overflow: hidden; }
  section.with-image-header > *:first-child {
    margin-top: -6.625rem; } }
section.darker {
  background: #f6f6f6; 
}
section.dark {
  background: #3c5569;
  color: #ffffff; }
section.dark a {
  color: #ffffff; }
section.dark a:hover {
  color: #ef8742; }
section.breadcrumbs {
  padding: 0; }
section.breadcrumbs nav {
  padding: 1.5rem 0;
  border-bottom: 1px solid #d0d0d0; }
section.breadcrumbs nav a {
  display: inline-block;
  position: relative;
  margin-right: 2rem; }
section.breadcrumbs nav a:after {
  content: '»';
  display: block;
  position: absolute;
  top: 0;
  right: -2rem;
  width: 2rem;
  color: #000000;
  pointer-events: none;
  text-align: center; }
section.breadcrumbs nav a:last-child {
  color: #009fe3; }
section.breadcrumbs nav a:last-child:hover {
  color: #ef8742; }
section.breadcrumbs nav a:last-child:after {
  display: none; }
section .section-title {
  text-align: center; }

.page-content > .content > header {
  margin-bottom: 1.875rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #d0d0d0; }

@media (max-width: 1299px) {
  .page-content > aside {
    margin-bottom: 1.875rem; } }

@media (min-width: 1300px) {
  .page-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: stretch; }
  .page-content > *:first-child {
    margin-left: -0.9375rem; }
  .page-content > *:last-child {
    margin-right: -0.9375rem; }
  .page-content > .content {
    flex: auto;
    padding: 0 0.9375rem;
    width: 75%; }
  .page-content > aside {
    flex: none;
    padding: 0 0.9375rem;
    width: 25%; } }

.toggleable .content-wrap {
  overflow: hidden;
  transition: 0.3s height ease-in-out;
  height: auto; }

.toggleable .toggle-wrap {
  text-align: right; }
.toggleable .toggle-wrap .toggle {
  display: inline-block;
  color: #ef8742;
  text-decoration: none;
  cursor: pointer; }
.toggleable .toggle-wrap .toggle.expand {
  display: none; }

.toggleable.collapsed .toggle-wrap .toggle.expand {
  display: inline-block; }

.toggleable.collapsed .toggle-wrap .toggle.collapse {
  display: none; }

.list-settings {
  display: flex;
  align-items: flex-end;
  justify-content: stretch; }
@media (max-width: 1299px) {
  .list-settings {
    flex-wrap: wrap; }
  .list-settings .sorting {
    flex: auto;
    margin-right: 1.875rem; }
  .list-settings .view-type {
    flex: none; }
  .list-settings .pagination {
    flex: none;
    align-items: center;
    width: 100%; } }
@media (min-width: 1300px) {
  .list-settings {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem; }
  .list-settings > * {
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
    width: calc(33.33333333% - 1.875rem); }
  .list-settings .view-type {
    justify-content: center; }
  .list-settings .pagination {
    justify-content: flex-end; } }

article.product-data header h1 {
  line-height: 1.2;
  color: #009fe3; }

article.product-data header h2 {
  font-weight: 300; }

article.product-data .image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain; }

article.product-data .data-grid {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border: solid #d0d0d0;
  border-width: 1px 0; }
article.product-data .data-grid .data-item {
  display: flex;
  align-items: center;
  justify-content: flex-start; }
article.product-data .data-grid .data-item img {
  -o-object-fit: contain;
  object-fit: contain; }
article.product-data .data-grid .data-item * + * {
  margin-left: 0.25rem; }

article.product-data .specifications {
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  flex-wrap: wrap;
  padding-top: 2rem; }
article.product-data .specifications > * {
  margin-bottom: 0.5rem;
  width: 50%; }
article.product-data .specifications dt:after {
  content: ':'; }

@media (max-width: 1299px) {
  article.product-data > * + * {
    margin-top: 1.875rem; }
  article.product-data .image img {
    max-height: 50vw; } }

@media (min-width: 1300px) {
  article.product-data {
    display: grid;
    grid-template-columns: 33.33333333% 41.66666667% 25%;
    grid-template-rows: auto auto 1fr;
    grid-template-areas: "image header footer" "image data footer" "image data _";
    margin: -0.9375rem; }
  article.product-data > * {
    margin: 0 0.9375rem; }
  article.product-data header {
    grid-area: header; }
  article.product-data .image {
    grid-area: image; }
  article.product-data .data {
    grid-area: data; }
  article.product-data .data .data-grid {
    justify-content: flex-start; }
  article.product-data .data .data-item + .data-item {
    margin-left: 3rem; }
  article.product-data .data .data-item * + * {
    margin-left: 0.75rem; }
  article.product-data footer {
    grid-area: footer; } }

.product-footer.card {
  background: #f6f6f6; }
.product-footer.card .price {
  margin: -1rem -1rem 1rem -1rem;
  padding: 1.5rem 1rem 1rem;
  background: #009fe3;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #ffffff; }

.product-footer .price,
.product-footer .calculated-price {
  text-align: center; }
.product-footer .price .amount,
.product-footer .calculated-price .amount {
  line-height: 1;
  font-size: 1.875rem;
  font-weight: 600; }
.product-footer .price .tax,
.product-footer .calculated-price .tax {
  font-size: 1.25rem;
  font-weight: 300; }

.product-footer .calculated-price {
  color: #ef8742; }
.product-footer .calculated-price .amount {
  font-size: 1.5rem; }
.product-footer .calculated-price .tax {
  font-size: 1.125rem; }

.product-footer .instacash-badge {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 10px 5px;
  margin: 12px 0 8px 0;
  text-align: center;
  box-shadow: none; }
.product-footer .instacash-badge .badge-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap; }
.product-footer .instacash-badge .badge-feature {
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap; }
.product-footer .instacash-badge .badge-feature .checkmark {
  color: #4CAF50;
  font-weight: bold;
  font-size: 0.85rem;
  font-style: normal; }
.product-footer .instacash-badge .badge-title {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.2px; }

.product-footer .product-actions {
  text-align: center; }
.product-footer .product-actions form {
  margin-top: 1rem;
  margin-bottom: 1rem; }
.products-grid .product-footer .product-actions form {
  margin-top: 3rem; }
.product-footer .product-actions form .form-control {
  padding-left: 8px;
  padding-right: 8px;
  width: 45px;
  text-align: center; }
.product-footer .product-actions form .button {
  margin-top: 0; }
.product-footer .product-actions form .multiplier {
  display: inline-block;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
  font-size: 1.5rem;
  font-weight: 600; }

hr {
  height: 1px;
  background: #d0d0d0;
  border: none;
  color: transparent; }

.tabs {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 1px;
  background: #dadce0;
  border: 1px solid #d0d0d0;
  border-radius: 5px; }
.tabs .tab {
  display: block;
  flex: auto;
  padding: 0.5rem;
  width: 100%;
  border-radius: 5px;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: 0.3s background-color; }
.tabs .tab.active {
  background-color: #ffffff; }

body {
  background: #ffffff;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500; }

h1 {
  font-size: 1.875rem; }

h2 {
  font-size: 1.5rem; }

h3 {
  font-size: 1.375rem; }

h4 {
  font-size: 1.25rem; }

h5 {
  font-size: 1.125rem; }

h6 {
  font-size: 1rem; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 600; }

a {
  color: #009fe3;
  text-decoration: none;
  transition: 0.3s color; }

nav a {
  color: #000000;
  text-decoration: none; }
nav a[href]:hover {
  color: #ef8742; }

small, .text-small {
  font-size: 0.875rem; }

.text-big {
  font-size: 1.125rem; }

strong {
  font-weight: 600; }
/*# sourceMappingURL=styles.css.map */

@media only screen and (max-width: 600px) {
  .card-bottom {
    margin-top: 10px !important;
  }
}


.user-header .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  margin-left: -7px !important;
  background: #ffffff;
}

.user-header .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.user-header .dropdown-content a:hover {
  background-color: #f1f1f1
}

.user-header .user:hover + .dropdown-content{
  display: block;
}

.user-header .dropdown-content:hover{
  display: block;
}

.user-header .dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

.searchBox {

    transform: translate(0%,33%);
    height: 40px;
    border-radius: 40px;
    /* padding: 10px;*/

}

.searchBox:hover > .searchInput {
    width: 240px;
    padding: 0 6px;
}

.searchInput:focus {
    width: 240px;
    padding: 0 6px;
}

.searchBox:hover > .searchButton {
  color : #2f3640;
}

.searchButton {
    color: white;
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.6s;
    cursor: pointer;
}

.searchInput {
    border:none;
    background: none;
    outline:none;
    float:left;
    padding: 0;
    color: white;
    font-size: 16px;
    transition: 0.6s;
    line-height: 40px;
    width: 0px;
        border-bottom: 1px solid white;

}

@media screen and (max-width: 620px) {

  .search-container-mobile{
    position: absolute;
    top: 0;
    font-size: .8em;
    z-index: 1000;
    height: 1em;
    background: #3c5569;
    width: 100%;
    display: none;
    height: 100%;

  }

  .search-container-mobile-active{
    display: flex !important;
  }

  .searchBox-mobile {

      height: 40px;
      border-radius: 40px;
      /* padding: 10px;*/
  }


  .searchButton-mobile {
      color: white;
      float: right;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      position: absolute;
      top: -6px;
      right: 5px;
  }

  .searchInput-mobile {
      border:none;
      outline:none;
      float:left;
      color: white;
      font-size: 16px;   
      background: #3c5569;
      /*border-bottom: 1px solid white;*/
          width: 75%;
      position: absolute;
    top: 0;
    /* padding-left: 40px; */
    border-bottom: 1px solid white;
    padding-top: 22px;
    bottom: 15px;
    padding-right: 92px;
    left: 39px;
  }

  .searchInput-mobile::placeholder {
    color: white;
  }

  .close-search{
    padding-top: 0px;
    position: absolute;
    color: white;
    font-size: 20px;
    z-index: 103;
    left: 14px;
    top: 18px;
    width: 35px
  }

    .mobile-full > input{
      width: 100% !important;
    }

    .mobile-full > select{
      width: 100% !important;
    }

    .mobile-full > label {
      margin-right: 100%;
    }
}

.logged-in-name{
  width: 65%;
    text-align: right;
    margin-top: 9px;
  }
@media (max-width:1200px){
    .logged-in-name{
      width: 60% !important;
      text-align: right;
      margin-top: 9px;
    }


}

.delete-reg-submit:disabled{
  opacity: 0.5;
}

.refresh-search{
  width: 2.5em;
}

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

.is-invalid{
  border: 1px solid red !important;
}

.is-invalid-span{
    font-size: 12px;
    color: red;
}

@media (min-width:1025px) {
    .mobile-full > input{
      width: 50% !important;
    }

    .mobile-full > select{
      width: 50% !important;
    }

    .mobile-full > label {
      text-align: left;
      margin-left: 280px;
    }
}

.contact  .wrapper {
  margin: auto;
}

.contact .wrapper > p,
.contact .wrapper > h1 {
  margin: 1.5rem 0;
  text-align: center;
}

.contact .wrapper > h1 {
  letter-spacing: 3px;
}

.contact  .accordion {
  background-color: white;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  font-size: 1.1rem;
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.contact .accordion i {
  font-size: 1.6rem;
}

.contact .active,
.contact .accordion:hover {
  background-color: #f7f8fd;;
}
.contact .pannel {
  padding: 0 1rem 1rem 1rem;
  background-color: white;
  overflow: hidden;
background-color: #f7f8fd;
  display: none;
}
.contact .pannel p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  line-height: 1.4;
}

.contact .faq {
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 20px 0;
}
.contact .faq.active {
  border: none;
}

.contact .fa-chevron-down {
  transition: transform 0.3s ease; /* Add a transition for the transform property */

}

.contact .fa-chevron-up {
  transition: transform 0.3s ease; /* Add a transition for the transform property */
  transform: rotate(180deg); /* Rotate the icon when it's toggled */
}
