@font-face {
  font-family: 'Neue Haas Display';
  src: url('../fonts/NeueHaasDisplayMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Neue Haas Display';
  src: url('../fonts/NeueHaasDisplayRoman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

:root{
  --grey-50: #FBF9F9;
  --grey-100: #F3F4F6;
  --grey-200: #E5E7EB;
  --grey-300: #D1D5DB;
  --grey-400: #9CA3AF;
  --grey-500: #6B7280;
  --grey-700: #374151;
  --grey-800: #1F2937;
  --grey-900: #111827;
  --feedred: #EF4444;
  --feedblue: #4B4EFC;
  --feedorange: #F59E0B;
  --feedgreen: #22C55E;

  --font-primary: 'Neue Haas Display';
}

.colorGrey50, .hoverColorGrey50:hover{
  color: var(--grey-50);
}
.bgColorGrey50, .hoverBgColorGrey50:hover{
  background: var(--grey-50);
}
.borderGrey50, .hoverBorderGrey50:hover{
  border-color: var(--grey-50);
}
.beforeGrey50::before, .hoverBeforeGrey50:hover:before{
  background: var(--grey-50);
}

.colorGrey100, .hoverColorGrey100:hover{
  color: var(--grey-100);
}
.bgColorGrey100, .hoverBgColorGrey100:hover{
  background: var(--grey-100);
}
.borderGrey100, .hoverBorderGrey100:hover{
  border-color: var(--grey-100);
}
.beforeGrey100::before, .hoverBeforeGrey100:hover:before{
  background: var(--grey-100);
}

.colorGrey200, .hoverColorGrey200:hover{
  color: var(--grey-200);
}
.bgColorGrey200, .hoverBgColorGrey200:hover{
  background: var(--grey-200);
}
.borderGrey200, .hoverBorderGrey200:hover{
  border-color: var(--grey-200);
}
.beforeGrey200::before, .hoverBeforeGrey200:hover:before{
  background: var(--grey-200);
}

.colorGrey300, .hoverColorGrey300:hover{
  color: var(--grey-300);
}
.bgColorGrey300, .hoverBgColorGrey300:hover{
  background: var(--grey-300);
}
.borderGrey300, .hoverBorderGrey300:hover{
  border-color: var(--grey-300);
}
.beforeGrey300::before, .hoverBeforeGrey300:hover:before{
  background: var(--grey-300);
}

.colorGrey400, .hoverColorGrey400:hover{
  color: var(--grey-400);
}
.bgColorGrey400, .hoverBgColorGrey400:hover{
  background: var(--grey-400);
}
.borderGrey400, .hoverBorderGrey400:hover{
  border-color: var(--grey-400);
}
.beforeGrey400::before, .hoverBeforeGrey400:hover:before{
  background: var(--grey-400);
}

.colorGrey500, .hoverColorGrey500:hover{
  color: var(--grey-500);
}
.bgColorGrey500, .hoverBgColorGrey500:hover{
  background: var(--grey-500);
}
.borderGrey500, .hoverBorderGrey500:hover{
  border-color: var(--grey-500);
}
.beforeGrey500::before, .hoverBeforeGrey500:hover:before{
  background: var(--grey-500);
}

.colorGrey700, .hoverColorGrey700:hover{
  color: var(--grey-700);
}
.bgColorGrey700, .hoverBgColorGrey700:hover{
  background: var(--grey-700);
}
.borderGrey700, .hoverBorderGrey700:hover{
  border-color: var(--grey-700);
}
.beforeGrey700::before, .hoverBeforeGrey700:hover:before{
  background: var(--grey-700);
}

.colorGrey800, .hoverColorGrey800:hover{
  color: var(--grey-800);
}
.bgColorGrey800, .hoverBgColorGrey800:hover{
  background: var(--grey-800);
}
.borderGrey800, .hoverBorderGrey800:hover{
  border-color: var(--grey-800);
}
.beforeGrey800::before, .hoverBeforeGrey800:hover:before{
  background: var(--grey-800);
}

.colorGrey900, .hoverColorGrey900:hover{
  color: var(--grey-900);
}
.bgColorGrey900, .hoverBgColorGrey900:hover{
  background: var(--grey-900);
}
.borderGrey900, .hoverBorderGrey900:hover{
  border-color: var(--grey-900);
}
.beforeGrey900::before, .hoverBeforeGrey900:hover:before{
  background: var(--grey-900);
}


::selection{
  color: #fff;
  text-shadow: none;
  background: var(--orange);
}

html, body{
  font-family: var(--font-primary), sans-serif;
  font-size: 20px;
  font-weight: 400;
  
  color: var(--grey-900);
}

p, a, span, li, ul, h1, h2, h3, h4, h5, h6, th, td{
  font: inherit;
  color: inherit;
  line-height: 1em;
}

ol{
  padding-inline-start: 0;
}

a{
  text-decoration: none;
  font-weight: 700;
}
a:hover{
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

p, label, figure{
  margin-bottom: 0;
}
p{
  line-height: 1.2rem;
}

:focus{
  outline: none!important;
}

ul{
  padding: 0;
  margin: 0;
}
ul li{
  list-style: none;
}

.display, .headline-l, .headline, .headline-s{
  font-weight: 500;
}

.p-l-spaced{
  letter-spacing: 4.6px;
}

@media(max-width: 991px){
  html, body{
    font-size: 20px;
  }

  .display{
    font-size: 5rem;
    line-height: 1em;
  }
  
  .headline-l{
    font-size: 2.5rem;
    letter-spacing: 0.28rem;
  }
  
  .headline{
    font-size: 1.6rem;
  }
  
  .headline-s{
    font-size: 1.5rem;
  }
  
  .p-xl, .p-xl > p{
    font-size: 1.6rem;
    line-height: 1.8rem;
  }
  
  .p-l{
    font-size: 1.3rem;
  }
  
  .p-l-spaced{
    font-size: 1.3rem;
    letter-spacing: 0.13rem;
  }
  
  .p-s{
    font-size: 0.8rem;
  }
  
  .p-xs{
    font-size: 0.8rem;
  }  
}

@media(min-width: 992px){
  html, body{
    font-family: var(--font-primary), sans-serif;
    font-size: 20px;
    font-weight: 400;
  }

  .display{
    font-size: 6rem;
    line-height: 1em;
  }
  
  .headline-l{
    font-size: 2.8rem;
    letter-spacing: 0.28rem;
  }
  
  .headline{
    font-size: 2.2rem;
  }
  
  .headline-s{
    font-size: 1.7rem;
  }
  
  .p-xl, .p-xl > p{
    font-size: 1.8rem;
    line-height: 2rem;
  }
  
  .p-l{
    font-size: 1.3rem;
  }
  
  .p-l-spaced{
    font-size: 1.3rem;
  }
  
  .p-s{
    font-size: 0.9rem;
  }
  
  .p-xs{
    font-size: 0.8rem;
  }
}

.customBtn{
  width: fit-content;
  display: inline-block;
  position: relative;
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-family: var(--font-primary), sans-serif;
  font-weight: 500;
  border-radius: 25px;
  cursor: pointer;
  text-align: center;
  border-width: 2px;
  border-style: solid;
  z-index: 1;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media(max-width: 767px){
  .customBtn{
    font-size: 0.8rem;
  }
}

.myForm .select2-dropdown{
  border: 4px solid var(--lightgrey) !important
}

.myForm .select2-container--default .select2-selection--single{
  height: auto;
  border: none;
  background-color: #f2f2f3;
}

.myForm .select2-container--default .select2-selection--single{
  border-radius: 0;
}

.myForm .select2-container--default .select2-selection--single .select2-selection__rendered{
  padding: 0.6rem 0.8rem;
  line-height: inherit;
  font: inherit;
  line-height: 1.5rem;
  color: var(--grey-500);
}

.myForm .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .myForm  .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.myForm .select2-container--default .select2-selection--single .select2-selection__arrow{
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1.5rem;
  width: 18px;
  height: 24px;
}

.myForm .select2-container--default .select2-selection--single .select2-selection__arrow::after{
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/dropdown.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.myForm .select2-container--default .select2-selection--single .select2-selection__arrow b{
  display: none;
}

.myForm .select2-dropdown .select2-results__options::-webkit-scrollbar {
  width: 11px;
}
.myForm .select2-dropdown .select2-results__options::-webkit-scrollbar-track {
  background: var(--lightgrey);
}
.myForm .select2-dropdown .select2-results__options::-webkit-scrollbar-thumb {
  background-color: var(--brown);
  border-radius: 6px;
  border: 3px solid var(--lightgrey);
}
.myForm .select2-dropdown .select2-results__options{
  scrollbar-width: thin;
  scrollbar-color: var(--brown) var(--lightgrey);
}

.select2-container--default .select2-results__option--highlighted[aria-selected]{
  background-color: var(--grey-100) !important;
  color: var(--grey-500) !important;
}

.select2-container--default .select2-results__option[aria-selected=true]{
  color: var(--grey-500) !important;
}

.jconfirm .jconfirm-box{
  padding: 3em 1em 2em 1em;
  font-size: .9rem;
  border-width: 2px !important;
  border-style: solid;
  border-radius: 0 !important;
}


.jconfirm .jconfirm-box div.jconfirm-closeIcon{
  opacity: 1;
  padding-top: 3px;
  top: 1em;
  right: 1em;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon::after {
  content: '';
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  top: -3px;
  left: -2px;
  z-index: -1;
}

.jconfirm .jconfirm-box .jconfirm-content-pane{
  margin-bottom: 0px !important;
}

.jconfirm .jconfirm-box-container.jconfirm-no-transition{
  padding: 4em 0 4em 0;
}

.jconfirm .jconfirm-box .jconfirm-content-pane .jconfirm-content > div{
  margin-bottom: 0;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button, .jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button{
  padding: 0.7rem 1.2rem;
  font-size: 0.7rem;
  font-family: var(--font-primary), sans-serif;
  font-weight: 500;
  border-radius: 25px;
  border: 2px solid var(--grey-900);
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button:focus, .jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button:focus{
  outline: none;
  box-shadow: none;
}


.jconfirm-content ul li{
  margin: 0.8rem 0;
}

/*clone titleLev4*/
.jconfirm .jconfirm-box div.jconfirm-title-c{
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.3em;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title{
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1em;
  text-transform: uppercase;
}

.jconfirm .jconfirm-box .jconfirm-buttons{
  float: none !important;
  text-align: right;
}

.jconfirm .jconfirm-box .jconfirm-buttons .btn.btn-default{
  border-radius: 0;
  color: white !important;
}

.jconfirm .jconfirm-box .jconfirm-buttons .btn.btn-default{
  background-color: var(--black);
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon::after{
  background: var(--black);
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon{
  color: white;
}


.jconfirm .jconfirm-box.jconfirm-type-blue{
  border-color: var(--feedblue);
  background-color: white;
}


.jconfirm .jconfirm-box.jconfirm-type-blue div.jconfirm-closeIcon:hover::after{
  background-color: var(--feedblue);
}

.jconfirm .jconfirm-box.jconfirm-type-blue div.jconfirm-title-c .jconfirm-title{
  color: var(--feedblue);
}

.jconfirm .jconfirm-box.jconfirm-type-blue .jconfirm-buttons .btn.btn-default:hover{
  background-color: var(--feedblue);
}



.jconfirm .jconfirm-box.jconfirm-type-green{
  border-color: var(--feedgreen);
  background-color: white;
}

.jconfirm .jconfirm-box.jconfirm-type-green div.jconfirm-closeIcon:hover::after{
  background: var(--feedgreen);
}

.jconfirm .jconfirm-box.jconfirm-type-green div.jconfirm-title-c .jconfirm-title{
  color: var(--feedgreen);
}

.jconfirm .jconfirm-box.jconfirm-type-green .jconfirm-buttons .btn.btn-default{
  background-color: var(--feedgreen);
}

.jconfirm .jconfirm-box.jconfirm-type-red{
  border-color: var(--feedred);
}

.jconfirm .jconfirm-box.jconfirm-type-red div.jconfirm-closeIcon:hover::after{
  background: var(--feedred);
}

.jconfirm .jconfirm-box.jconfirm-type-red div.jconfirm-title-c .jconfirm-title{
  color: var(--feedred);
}

.jconfirm .jconfirm-box.jconfirm-type-red .jconfirm-buttons .btn.btn-default:hover{
  background-color: var(--feedred);
}



.jconfirm .jconfirm-box.jconfirm-type-yellow{
  border-color: var(--feedorange);
}

.jconfirm .jconfirm-box.jconfirm-type-yellow div.jconfirm-closeIcon:hover::after{
  background: var(--feedorange);
}

.jconfirm .jconfirm-box.jconfirm-type-yellow div.jconfirm-title-c .jconfirm-title{
  color: var(--feedorange);
}

.jconfirm .jconfirm-box.jconfirm-type-yellow .jconfirm-buttons .btn.btn-default:hover{
  background-color: var(--feedorange);
}


.myCustomSelect + .select2-container .select2-selection .select2-selection__rendered{
  padding: 11px 17px !important;
  line-height: 1.5rem !important;
  font-size: 1rem !important;
  border-radius: 7px !important;
  background-color: #f2f2f3;
}

.main-content input.form-control[type=text], .main-content input.form-control[type=number], .main-content input.form-control[type=tel], .main-content input.form-control[type=email], .main-content textarea.form-control, .main-content select.form-control{
  font-size: 0.9rem;
  padding: 0.3em 0.6em;
}

input.form-control[type=text]:hover, input.form-control[type=number]:hover, input.form-control[type=tel]:hover, input.form-control[type=email]:hover, textarea.form-control:hover,select.form-control:hover,input.form-control[type=text]:focus, input.form-control[type=number]:focus, input.form-control[type=tel]:focus, input.form-control[type=email]:focus, textarea.form-control:focus, select.form-control:focus,
.myCustomSelect + .select2-container:focus,
.myCustomSelect + .select2-container .select2-selection:focus,
.myCustomSelect + .select2-container .select2-selection .select2-selection__rendered:focus{
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.mandatoryMarker{
  font: inherit;
  line-height: inherit;
  color: var(--grey900);
}

/* CUSTOM FORM APPEREANCE*/
.customRadio input[type=radio], .customCheckbox input[type=checkbox]{
  display: none;
}

/* CHECKBOX STYLE */

.customCheckbox input[type=checkbox] + label > .fakeCheck::after, .customRadio input[type=radio] + label > .fakeCheck::after{
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: var(--grey-900);
  cursor: pointer;
  -webkit-transition: all .3s cubic-bezier(.3,.81,.67,2.5);
  -moz-transition: all .3s cubic-bezier(.3,.81,.67,2.5);
  -o-transition: all .3s cubic-bezier(.3,.81,.67,2.5);
  transition: all .3s cubic-bezier(.3,.81,.67,2.5);
}

.customCheckbox input[type=checkbox] + label{
  padding-left: 1.4em;
  position: relative;
  cursor: pointer;
}

.customCheckbox input[type=checkbox] + label > .fakeCheck{
  display: block;
  position: absolute;
  font-size: calc(1em - 4px);
  margin-left: 2px;
  height: 1em;
  width: 1em;
  left: 0;
  top: 0.4em;
  cursor: pointer;
  outline: 2px solid var(--grey-500);
  padding: 2px;
}

.customCheckbox input[type=checkbox]:not(:checked) + label:hover > .fakeCheck,
.customCheckbox input[type=checkbox]:not(:checked) + label > .fakeCheck:hover{
  outline-color: var(--grey-900);
}

.customCheckbox input[type=checkbox]:checked + label > .fakeCheck{
  outline-color: var(--grey-900);
}

.customCheckbox input[type=checkbox]:checked + label > .fakeCheck::after{
  height: 0.6em;
  width: 0.6em;
}

.checkAllChecks, #formNewsletter .checkAllChecks{
  color: var(--grey-900);
  cursor: pointer;
  font-weight: 700;
}

/* END CHECKBOX STYLE */

/* RADIO STYLE */
.customRadio{
  display: inline-block;
}
.customRadio:not(:last-child){
  margin-right: 3em;
}

.customRadio input[type=radio] + label{
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.customRadio input[type=radio] + label > .fakeCheck{
  display: block;
  position: relative;
  height: 22px;
  width: 22px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 22px;
  flex: 0 0 22px;
  cursor: pointer;
  border: 2px solid var(--black);
  border-radius: 50%;
  margin-right: 0.4em;
}

.customRadio input[type=radio] + label > .fakeCheck::after{
  border-radius: 50%;
}

.customRadio input[type=radio]:checked + label > .fakeCheck{
  border-color: var(--grey-900);
}

.customRadio input[type=radio]:checked + label{
  color: var(--grey-900);
}

.customRadio input[type=radio]:checked + label > .fakeCheck::after{
  width: 12px;
  height: 12px;
}
/* END RADIO STYLE */

.myForm input.form-control[type=text], .myForm input.form-control[type=number], .myForm input.form-control[type=tel], .myForm input.form-control[type=email], .myForm textarea.form-control, .myForm select.form-control{
  font-size: 1em;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--grey-200);
  color: var(--grey-500);
  background: var(--grey-100);
  border-radius: 0;
}

.myForm .field textarea{
  resize: none;
}

.myForm .field:not(:last-child){
  margin-bottom: 1em;
}

.myForm .field label {
  margin-bottom: 0.3em;
}

.myForm .privacyContentBlock {
  font-size: .8em;
}

.textContainer *{
  line-height: inherit;
  color: inherit;
}

.imgContainer{
  position: relative;
  width: 100%;
  height: 0;
}

.imgContainer img{
  position: absolute;
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.image-text .resizer{
  width: 75%;
  margin-left: auto;
}

.image-text .imgContainer{
  padding-top: 130%;
}

.image-text .image-first .resizer{
  margin-left: unset;
  margin-right: auto;
}

/* List tabs section */

.list-tabs .resizer{
  width: 80%;
  margin: auto;
}

.list-tabs .imgContainer{
  padding-top: 80%;
}

.list-tabs .nav-link.active h4{
  color: var(--grey-900);
}

.nav-tabs{
  border: 0;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link{
  color: var(--grey-700) !important;
  background-color: transparent !important;
  border: 0 !important;
  padding: 0;
}

/* Fullscreen image section */

.fullscreen-image .resizer{
  width: 100%;
}

.fullscreen-image .imgContainer{
  padding-top: 28%
}


.centered-text .content-wrapper.bordered{
  border-top-width: 1px;
  border-top-style: solid;
}

#errorePage{
  height: 80vh;
}

@media (max-width: 1366px){

}

/* max lg */
@media (max-width: 1199px){
}

/* xs, sm, md*/
@media (max-width: 991px){

  .image-text .resizer, .image-text .image-first .resizer{
    width: calc(100% + 62px);
    margin-left: -31px;
    margin-right: unset;
  }

  .quantity-list .quantity-item:not(:last-child){
    padding-bottom: 2rem;
  }

  .list-accordion .resizer{
    width: 100%;
  }

  .list-accordion .imgContainer{
    padding-top: 50%;
  }

  .list-accordion .listaccordion-toggle[aria-expanded="true"] h4{
    color: var(--grey-900);
  }

  .image-text .imgContainer{
    padding-top: 70%;
  }


  .fullscreen-image .imgContainer {
    padding-top: 50%;
  }
}

/* xs, sm*/
@media (max-width: 767px){
  .fullscreen-image.mobile-tall .imgContainer{
    padding-top: 70vh;
  }

  .fullscreen-image .imgContainer{
    padding-top: 70%;
  }

  .image-text .imgContainer{
    padding-top: 130%;
  }

  .list-accordion .imgContainer{
    padding-top: 65%;
  }
}

/* xs */
@media (max-width: 575px){

}

/* sm */
@media (min-width: 576px){
}

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



}

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

/* xl */
@media (min-width: 1200px){
}

/* xxl */
@media (min-width: 1800px){
  .fullscreen-image .imgContainer{
    padding-top: 33%
  }
}

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

}


/* tablet portrait */
@media (min-width: 768px) and (max-width: 991px) and (orientation: portrait){}

/* tablet portrait */
@media (min-width: 1024px) and (max-width: 1279px) and (orientation: portrait){}
