/**
 * Variables
 * Variables should follow the $component-state-property-size formula for
 * consistent naming. Examples:
 * $nav-link-disabled-color
 * $modal-content-box-shadow-xs 
 *
 * Customization:
 * To customize Bootstrap variables:
 * Copy the desired variable from node_modules/bootstrap/scss/_variables.scss
 * @see https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss
 * Change the value and remove the !default flag.
 * Examples:
 * $body-bg: #000;
 * $body-color: $gray-100;
 */
:root {
  --jblue: rgb(0, 104, 155);
  --jlight-blue:rgb(88, 136, 181);
  --jnavy: rgb(39, 100, 149);
  --jcyan: rgb(0, 190, 186);
  --jred: rgb(234 0 41);
  --j-gwhite: rgb(248, 248, 255);
  --j-nav-active: rgba(0, 194, 189, 1);
  --jlime: #8dc73f;
  --jlime-alt: #6D9E2E;
  --bs-dropdown-link-active-bg: var(--jnavy);
  --table-border-color: var(--jnavy);
}

:root,
[data-bs-theme=light] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: rgb(5.2, 44, 101.2);
  --bs-secondary-text-emphasis: rgb(43.2, 46.8, 50);
  --bs-success-text-emphasis: rgb(10, 54, 33.6);
  --bs-info-text-emphasis: rgb(5.2, 80.8, 96);
  --bs-warning-text-emphasis: rgb(102, 77.2, 2.8);
  --bs-danger-text-emphasis: rgb(88, 21.2, 27.6);
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: rgb(206.6, 226, 254.6);
  --bs-secondary-bg-subtle: rgb(225.6, 227.4, 229);
  --bs-success-bg-subtle: rgb(209, 231, 220.8);
  --bs-info-bg-subtle: rgb(206.6, 244.4, 252);
  --bs-warning-bg-subtle: rgb(255, 242.6, 205.4);
  --bs-danger-bg-subtle: rgb(248, 214.6, 217.8);
  --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: rgb(158.2, 197, 254.2);
  --bs-secondary-border-subtle: rgb(196.2, 199.8, 203);
  --bs-success-border-subtle: rgb(163, 207, 186.6);
  --bs-info-border-subtle: rgb(158.2, 233.8, 249);
  --bs-warning-border-subtle: rgb(255, 230.2, 155.8);
  --bs-danger-border-subtle: rgb(241, 174.2, 180.6);
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: rgb(10.4, 88, 202.4);
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: rgb(255, 242.6, 205.4);
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: rgb(42.5, 47.5, 52.5);
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: rgb(109.8, 168, 253.8);
  --bs-secondary-text-emphasis: rgb(166.8, 172.2, 177);
  --bs-success-text-emphasis: rgb(117, 183, 152.4);
  --bs-info-text-emphasis: rgb(109.8, 223.2, 246);
  --bs-warning-text-emphasis: rgb(255, 217.8, 106.2);
  --bs-danger-text-emphasis: rgb(234, 133.8, 143.4);
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: rgb(2.6, 22, 50.6);
  --bs-secondary-bg-subtle: rgb(21.6, 23.4, 25);
  --bs-success-bg-subtle: rgb(5, 27, 16.8);
  --bs-info-bg-subtle: rgb(2.6, 40.4, 48);
  --bs-warning-bg-subtle: rgb(51, 38.6, 1.4);
  --bs-danger-bg-subtle: rgb(44, 10.6, 13.8);
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: rgb(7.8, 66, 151.8);
  --bs-secondary-border-subtle: rgb(64.8, 70.2, 75);
  --bs-success-border-subtle: rgb(15, 81, 50.4);
  --bs-info-border-subtle: rgb(7.8, 121.2, 144);
  --bs-warning-border-subtle: rgb(153, 115.8, 4.2);
  --bs-danger-border-subtle: rgb(132, 31.8, 41.4);
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: rgb(109.8, 168, 253.8);
  --bs-link-hover-color: rgb(138.84, 185.4, 254.04);
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: rgb(230.4, 132.6, 181.2);
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: rgb(102, 77.2, 2.8);
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: rgb(117, 183, 152.4);
  --bs-form-valid-border-color: rgb(117, 183, 152.4);
  --bs-form-invalid-color: rgb(234, 133.8, 143.4);
  --bs-form-invalid-border-color: rgb(234, 133.8, 143.4);
}

.node-type--product h1 {
  color: var(--jblue);
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 600;
  letter-spacing: -0.065rem;
}
.node-type--product .field--name-body {
  font-size: 1rem;
}
.node-type--product .mobile-product-type,
.node-type--product .mobile-h1-target {
  margin-bottom: 1rem;
}
.node-type--product .desktop-product-type {
  margin-bottom: 0.5rem;
}
.node-type--product .h1-original {
  margin-bottom: 1rem;
}

.slick--optionset--product-main {
  margin-bottom: 1.5rem;
}
.slick--optionset--product-main .slick__slider {
  border-radius: 1rem;
  /*box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(44, 43, 148, 0.1) 0px 8px 30px 0px !important;*/
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.05), 0px 0px 2px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.slick--optionset--product-main .slick__slider .slick-list {
  aspect-ratio: 1/1;
}

/*
background-color: #fff;
  border-radius: .25rem;
  box-shadow: 0 0 1rem rgba(43,55,64,.039);
  margin: 1em;
  padding: 2em;*/
.slick--optionset--x-prod-nav .slick__slide {
  /*border: 1px solid rgb(0, 0, 0);
  border-radius: 7px;*/
  overflow: hidden;
  margin: 0.5rem;
}
.slick--optionset--x-prod-nav .slick__slide.slick-current {
  /*border-color: var(--jblue);*/
  box-shadow: 0px 0px 6px 0px rgb(0, 104, 155), 0px 3px 6px 0px rgba(0, 0, 0, 0.23);
}

#accordionFeatures {
  --bs-accordion-border-color: transparent;
  --bs-accordion-border-radius: 0;
  --bs-accordion-btn-padding-x: 0.25rem;
  --bs-accordion-btn-color: var(--jnavy);
  --bs-accordion-active-color: var(--jnavy);
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23276495'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23276495'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  margin: 2rem 0;
  /* .accordion-button {

      &::before,
      &::after {
          content: '';
          background-image: var(--bs-accordion-btn-active-icon);
          width: 2rem;
          height: 2rem;
          background-repeat: no-repeat;
          background-size: cover;
      }

      &::after {
          transform: var(--bs-accordion-btn-icon-transform);
      }

      &::before {
          position: absolute;
          right: 0.25rem;
      }

      &:not(.collapsed)::after {
          transform: rotate(0deg);
      }
  }*/
}
#accordionFeatures h2 .accordion-button {
  font-size: 1.3rem;
  font-weight: 600;
}
#accordionFeatures .accordion-item {
  border-bottom: 1px solid rgb(0, 0, 0);
}
#accordionFeatures .accordion-item:first-child {
  border-top: 1px solid rgb(0, 0, 0);
}

.field--name-field-edu-resource .media--type-document {
  margin: 1rem 0;
  transition-duration: 0.15s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.field--name-field-edu-resource .media--type-document .resource-title {
  margin: 0 1rem;
}
.field--name-field-edu-resource .media--type-document .card-resource__icon-svg {
  width: 22px;
  color: var(--jblue);
}
.field--name-field-edu-resource .media--type-document .card-resource__icon-svg svg {
  width: 100%;
  height: auto;
}
.field--name-field-edu-resource .media--type-document .card-resource__icon-svg--hover {
  display: none;
}
.field--name-field-edu-resource .media--type-document:hover .card-resource__icon-svg {
  color: var(--j-blue);
}
.field--name-field-edu-resource .media--type-document:hover .card-resource__icon-svg--hover {
  display: flex;
}
.field--name-field-edu-resource .media--type-document:hover .card-resource__icon-svg--default {
  display: none;
}
.field--name-field-edu-resource .media--type-document .file a {
  display: flex;
  align-items: center;
  color: var(--bs-body-color);
  text-decoration: none;
  overflow: hidden;
  transition-duration: 75ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  /*  &::before {
      content: '';
      display: block;
      width: 3rem;
      height: 3rem;
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="40" viewBox="0 0 32 40" fill="none"><g clip-path="url(%23clip0_327_1028)"><path d="M6 13L18 13" stroke="currentColor" stroke-width="2" stroke-linecap="round"></path><path d="M6 18H26" stroke="currentColor" stroke-width="2" stroke-linecap="round"></path><path d="M6 23H26" stroke="currentColor" stroke-width="2" stroke-linecap="round"></path><path d="M6 28H26" stroke="currentColor" stroke-width="2" stroke-linecap="round"></path><path d="M6 33H26" stroke="currentColor" stroke-width="2" stroke-linecap="round"></path><path d="M22.8182 1H5C2.79086 1 1 2.79086 1 5V35C1 37.2091 2.79086 39 5 39H27C29.2091 39 31 37.2091 31 35V9.60177M22.8182 1L31 9.60177M22.8182 1V9.60177H31" stroke="currentColor" stroke-width="2"></path></g><defs><clipPath id="clip0_327_1028"><rect width="32" height="40" rx="4" fill="white"></rect></clipPath></defs></svg>');
      background-position: 0.5rem center;
      background-size: 2rem;
      background-repeat: no-repeat;
      background-size: contain;
      &:hover {
          background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="40" viewBox="0 0 32 40" fill="none"><path d="M16 9V25M16 25L10 18.697M16 25L22 18.697" stroke="currentColor" stroke-width="3" stroke-linecap="square"></path><path d="M6 25V31H26V25" stroke="currentColor" stroke-width="3" stroke-linecap="square"></path></svg>');
      }
  }*/
}
.field--name-field-edu-resource .media--type-document .file a:hover {
  text-decoration: underline;
}

.field--name-field-product-type {
  display: flex;
  flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1em;
}
.field--name-field-product-type .field__item {
  margin: 0.5em 0;
  color: #fff;
  border: 1px solid var(--jlight-blue);
  background-color: var(--jlight-blue);
  padding: 0.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.field--name-field-product-type .field__item:hover {
  background-color: #fff;
  color: var(--jlight-blue);
}
.field--name-field-product-type .field__item:hover a {
  color: var(--jlight-blue);
}
.field--name-field-product-type .field__item a {
  color: #fff;
}
.field--name-field-product-type .field__item a:hover {
  color: var(--jlight-blue);
}

/*# sourceMappingURL=product.css.map*/