﻿
::-webkit-input-placeholder { color: inherit; }
::-moz-placeholder { color: inherit; }
:-ms-input-placeholder { color: inherit; }
:-moz-placeholder { color: inherit; }

input:focus:-moz-placeholder { opacity: 0; }
input:focus:-ms-input-placeholder { opacity: 0; }
input:focus::-moz-placeholder { opacity: 0; }
input:focus::-webkit-input-placeholder { opacity: 0; }

input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {  -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield!important; -webkit-appearance: unset!important; }

.no-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}

.lazy-scroll{ overflow: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; }

.forcewrap {
    -ms-word-break: break-all;
    word-break: break-all;

 /* Non standard for webkit */
     word-break: break-word;

    -webkit-hyphens: auto;
       -moz-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
}

video { width: 100% !important; height: auto !important; }

input[type=text],
input[type=email],
input[type=number],
input[type=password],
textarea,
select { width: 100%; font-family: inherit; font-size: inherit; color: initial; padding: 0 20px; height: 40px; line-height: 40px; border: none; background-color: #EDE7E1; }

textarea { -webkit-appearance: none; padding: 0 20px; resize: none; height: auto; line-height: unset; padding-top: 15px; padding-bottom: 15px; display: block; }
 
input[type=text],select{ -webkit-appearance: none; }

input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=password]:focus,
select:focus,
textarea:focus{ box-shadow: 0 2px 4px 0 rgba(0,0,0,0.05); }

select::-ms-expand {  display: none; }
input[type=email]::-ms-clear,
input[type=text]::-ms-clear { display: none; }

form *:user-invalid{ border: 1px solid rgba(210,15,20,0.5)!important; box-shadow: 0 2px 4px 0 rgba(0,0,0,0.05); color: #D20F14; }

form .field{ margin-bottom: 15px; }
form .field > label{ display: block; margin-bottom: 7px; }
form .field label > em{ color: #D20F14!important; }

.select { position: relative; }
.select select { position: relative; z-index: 2; width: 100%; }
.select:after { content: ""; display: block; position: absolute; top: 50%; right: 15px; line-height: 0; z-index: 1; background: url(chevron-down.svg); width: 18px; height: 18px; background-size: cover; margin-top: -9px; pointer-events: none; }

form .disabled{ position: relative; z-index: 1; display: block; }
form .disabled:before{ content: ""; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; }
form .disabled *{ opacity: 0.5; }

form .placeholder{ position: relative; z-index: 1; margin-bottom: 20px; }
form .placeholder > label{ position: absolute; top: 16px; left: 20px; color: #696D69; font-size: 14px; line-height: 1; margin-bottom: 0!important; transition: all .2s ease; pointer-events: none; }

form .placeholder { position: relative; }
form .placeholder label.active,
form .placeholder label.sticky,
form .placeholder > input:focus + label,
form .placeholder > textarea:focus + label{ top: -4px; font-size: 10px; z-index: 3; }

form .placeholder label.sticky{ transition: unset; }

form .placeholder label.active::after,
form .placeholder label.sticky::after{ content: ""; display: block; position: absolute; height: 100%; top: 0; z-index: -1; width: calc(100% + 10px); margin-left: -5px; background-color: #fff; }

form .placeholder .alert + label{ z-index: 2; }

form .placeholder > label > em{ color: red; }
form .placeholder{ margin: 10px 0; }
form div.label{ margin-bottom: .25rem; text-transform: uppercase; color: #222; font-size: 14px; font-weight: 500; }

div.spinners-wrapper{ position: relative; z-index: 1; display: inline-block; width: 150px; vertical-align: top; }
div.spinners-wrapper {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}

.tooltip {
  --tooltipColor: rgba(229, 229, 229);
	position: absolute;
	background: var(--tooltipColor);
	border: 4px solid var(--tooltipColor);
  border-radius: 3px;
  padding: 5px 7px;
  visibility: hidden;
  white-space: nowrap;
  z-index: 999;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.333333;  
  transform: translateX(calc(-50% + 13px));
  bottom: calc(100% + 6px);
}
.tooltip:after, .tooltip:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.tooltip:after {
	border-top-color: var(--tooltipColor);
	border-width: 5px;
	margin-left: -5px;
}
.tooltip:before {
	border-top-color: var(--tooltipColor);
	border-width: 11px;
	margin-left: -11px;
}

.ease{ transition: all 0.3s ease; }
.multiply{ mix-blend-mode: multiply; }

body.fixed{ overflow: hidden; }

.left{ float: left; }
.right{ float: right; }
.clear{ clear: both ;}
.alignright{ text-align: right; }
.alignleft{ text-align: left; }
.cursor{ cursor: pointer; }
.center{ text-align: center; }
.abscenter{ position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%,-50%); -ms-transform: translate(-50%,-50%); transform: translate(-50%,-50%); }
.relative{ position:relative; } 
.ucase{ text-transform: uppercase; }
.capitalize{ text-transform: capitalize; }

article div.text ul li{ padding-left: 15px; }
article div.text ul li + li{ margin-top: 10px; }
article div.text ul li::before { content: ""; display: block; width: 4px; height: 4px; border-radius: 50%; position: absolute; top: .6em; left: 0; background-color: currentColor; }


ol{ margin-left: 17px; }
ol li{ margin-bottom: 17px; }

ul.accordion > li::before{ display: none!important; }
ul.accordion li div.toggler { padding-left: 50px; cursor: pointer; }
ul.accordion li div.toggler::after { content: ""; display: block; width: 26px; height: 32px; background: url(svg/faq-list-icon.svg) center center no-repeat; position: absolute; top: 24px; left: 0; transition: .2s; }
ul.accordion li.open div.toggler::after { transform: rotate(90deg); }

ul.accordion li div.wrapper { text-wrap: pretty; display: grid; grid-template-rows: 0fr; transition: grid-template-rows 250ms; }
ul.accordion li.open div.wrapper { grid-template-rows: 1fr; }
ul.accordion li div.wrapper > div { overflow: hidden; }

table{ border-collapse: collapse; }
table td, table th{ padding: 0; }

.radio-list .radio{ margin-bottom: 15px; }
.radio-list .radio:last-child{ margin: 0; }

.radio label{ cursor: pointer; padding-left: 30px; position: relative; line-height: 22px; display: inline-block; }
.radio input{ opacity: 0; position: absolute; z-index: -1; }
.radio input + label:before{ content: ""; display: block; height: 22px; width: 22px; background-color: #fff; cursor: pointer; position: absolute; top: -1px; left: 0; border-radius: 50%; border: 1px solid rgba(77,77,77,0.5); }
.radio input:checked + label:after{ content: ""; display: block; width: 14px; height: 14px; background-color: var(--primary); border-radius: 50%; position: absolute; top: 3px; left: 4px; }

.checkbox label:before,
.radio label:before { display: inline-block; }

.checkbox label{ cursor: pointer; padding-left: 30px; position: relative; line-height: 22px; display: inline-block; }
.checkbox input{ opacity: 0; position: absolute; z-index: -1; }
.checkbox input + label:before{ content: ""; display: block; height: 22px; width: 22px; background-color: #fff; cursor: pointer; position: absolute; top: -1px; left: 0; border: 1px solid rgba(77,77,77,0.3); border-radius: 2px; }
.checkbox input:checked  + label:before{ background-color: var(--secondary); }
.checkbox input:checked  + label:after{
	content: "";
    display: block;
    width: 7px;
    height: 14px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 8px;
    top: 2px;
}

.checkbox-list .checkbox{ margin-bottom: 15px; }
.checkbox-list .checkbox:last-child{ margin: 0; }

.checkbox label a{ border-bottom: 1px solid #aaa; }

.context-menu,
.dd{ display: block; position: relative; color: inherit; z-index: 3; text-align: left!important; }

.context-menu.clicked,
.dd.clicked{ z-index: 4; }

.context-menu > label,
.dd > label{ cursor: pointer; background-color: #fff; line-height: 39px; display: inline-block; color: inherit; padding: 0 16px; padding-right: 60px; border: 1px solid #1C1B1B; position: relative; }

.context-menu.clicked > label,
.dd.clicked > ul,
.dd.clicked > label{ box-shadow: 0 2px 4px 0 rgba(0,0,0,0.05); }

.dd > label + input[type=hidden]{ display: none; }
.dd > label em{ display: none!important; }

.context-menu > label::after,
.dd > label::after{ content: ""; display: block; position: absolute; top: 50%; right: 0; margin-top: -4px; width: 14px; height: 8px; background: url(chevron-down.svg) center center no-repeat; background-repeat: no-repeat!important; background-size: contain!important; transition: all .2s ease; }

.context-menu.clicked > label::after,
.dd.clicked > label::after{ transform: rotate(-180deg); }

.dd > label.alert{ color: #9F4343; }

.context-menu > ul,
.dd > ul{ position: absolute; z-index: -1; width: 100%; top: 100%; background-color: #fff; display: none; border-top: 1px solid #8C1E2E; border-bottom: 1px solid #8C1E2E;; max-height: 440px; overflow: auto; }

.dd > ul li{ padding: 8px 15px; background: #fff; color: initial; }

.dd > ul li:first-child.True{ display: none; }
.dd > ul li:hover{ background: #BE9155; color: #fff; cursor: pointer; }
.dd > ul li.True{ background: #8C1E2E; color: #fff; }

header div.context-menu ul{ background-color: var(--black); border: unset; width: 72px; left: -22px; top: 55px; }
header div.context-menu ul li a{ padding: 12px 22px; }
header div.context-menu ul li a:hover{ background-color: var(--darkGreen); }
header div.context-menu ul li + li{ border-top: 1px solid var(--darkGreen); }

a.x,
span.x{ width: 16px; height: 16px; position: absolute; right: 0; display: block; background: url(white-x.svg) no-repeat; top: -25px; cursor: pointer; }

.fs-video .container span.x{ top: -25px; right: 15px; z-index: 2; }


.video-frame { overflow: hidden; padding-top: 56.25%; position: relative; }
.video-frame iframe,
.video-frame video { border: 0; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

div.image img + div.video-frame{ position: absolute; z-index: 1; inset: 0; }

dialog{ top: 50%; transform: translateY(-50%); max-width: 100%; margin: 0  auto; border: none; background: none; padding: 0; overflow: visible; }
dialog::backdrop { background: rgb(0 0 0 / 0.5); }
dialog[open] .content{ max-height: calc(100dvh - 100px); overflow: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; max-width: calc(100vw - var(--bs-gutter-x)); background-color: #fff;; margin: 0 auto; }

dialog .content{ width: 345px; padding: 24px; }
dialog .content.large{ width: 770px; padding: 40px 30px; }
dialog .content h2 + p{ margin-top: 1rem; }
dialog .content .field{ position: relative; }

button.play{
  border: none; 
  padding: 0;
  background: none; 
  width: 80px; 
  height: 80px; 
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); 
  cursor: pointer; 
  display: block;
}

button.play:hover{ opacity: .75; }
button.play::after{
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 8px solid var(--primary);
  border-radius: 50%;
  transition: all .2s ease;
}
button.play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 27px;
  border-color: transparent transparent transparent var(--primary);
  margin: 0 auto;
  position: absolute;
  left: calc(50% - 10px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

aside.ipcheck-wrapper{ position: fixed; z-index: 999; background-color: #fff; font-size: 10px; top: 50vh; }
aside.ipcheck-wrapper > h3{ background-color: #ff9900; font-size: 10px; margin: 0; color: #fff; padding: 5px 10px; }
aside.ipcheck-wrapper > div{ padding: 5px 10px; }
aside.ipcheck-wrapper > div + div{ border-top: 1px solid #eee; }

article.knowledge-bank ul.accordion li div.toggler{ padding-left: 0; }
article.knowledge-bank ul.accordion li div.toggler::after{ display: none; }
article.knowledge-bank ul.accordion > li{ border-left: 4px solid rgba(186,216,10,0.25); background-color: var(--black); padding: 21px 24px; }
article.knowledge-bank ul.accordion > li.open{ border-left: 4px solid rgba(186,216,10,1); }
article.knowledge-bank ul.accordion > li + li{ margin-top: 24px; }

article.knowledge-bank ul.accordion > li div.toggler{ cursor: pointer; }
article.knowledge-bank ul.accordion li.open div.wrapper > div{ padding-top: 7px; }

article.knowledge-bank ul.accordion li.open div.wrapper > div p + p,
article.knowledge-bank ul.accordion li.open div.wrapper > div p + ul,
article.knowledge-bank ul.accordion li.open div.wrapper > div ul + p{ margin-top: 24px; }

article.knowledge-bank div.text ul li + li { margin-top: 0; }

article.data-block{ overflow: hidden; }
article.data-block div.text{ text-align: center; }
article.data-block div.text div.h4{ color: var(--green); }


article.faq div.wrapper{ width: 100%; max-width: 1000px; }
article.faq ul.accordion{ margin-top: 40px; border-top: 1px solid var(--black); }
article.faq ul.accordion li{ border-bottom: 1px solid var(--black); padding: 24px 0; }
article.faq ul.accordion li div.toggler { line-height: 31px; }
article.faq ul.accordion li div.wrapper div.text{ padding: unset; }
article.faq ul.accordion li.open div.wrapper div.text{ padding-top: 24px; }
article.faq div.text p + div.h3{  margin-top: 14px; }
article.faq div.text div.h3 + p{  margin-top: 3px; }

article.cta div.bg-darkgreen{ padding: var(--defaultPadding); }

article.cta div.text p + div.h3{ margin-top: 32px; }

article.jobs ul{ margin-top: 40px; }
article.jobs ul li{ display: flex; width: 100%; }
article.jobs ul li + li{ margin-top: 24px; }
article.jobs ul li div.image{ width: 206px; }
article.jobs ul li div.text{ padding: 24px; background-color: var(--black); }
article.jobs ul li div.text div.h3 + p { margin-top: 12px; }
article.jobs div.text p + p .arrow{ margin-top: 0!important; }

article.jobs div.text div.flex{ gap: 30px; margin: 20px 0; }
article.jobs div.text div.flex label{ display: block; font-size: 14px; opacity: .7 }

article.podcasts{ --bs-gutter-x: 0;}
article.podcasts div.text{ padding: 0 var(--defaultPadding); }
article.podcasts div.wrapper{ padding-right: var(--defaultPadding); }

article.podcasts ul li + li{ margin-top: 24px; }
article.podcasts ul li { padding: 24px; background-color: var(--black); }
article.podcasts ul li div.h3 + p { margin-top: 12px; }

article.podcasts ul li div.flex{ align-items: center; gap: 12px; margin-top: 20px; }
article.podcasts ul li div.flex .audio{ position: relative; top: -2px; }

span.audio{ display: block; width: 36px; height: 36px; border-radius: 50%; background-color: var(--green); }
span.audio svg:nth-child(2){ display: none; }
li[data-state=playing] span.audio svg:nth-child(1){ display: none; }
li[data-state=playing] span.audio svg:nth-child(2){ display: block; }

div.track-bar{ position: absolute; width: 100%; bottom: 0; left: 0; }
div.track-bar em{ display: block; background-color: var(--green); width: 0; height: 2px; }

li[data-state=stopped] div.track-bar em{ width: 0!important; }

footer{ padding-bottom: 0; }
footer address{ display: block; font-style: normal; margin-top: 24px; margin-bottom: 12px; }
footer ul.SoMe{ gap: 14px;  }

footer div.h3{ margin-bottom: 16px; }
footer div.buttons{ width: 250px; }
footer div.buttons a{ display: block; max-width: 240px; }
footer div.buttons a + a{ margin-top: 20px; }

footer ul.links li + li { margin-top: 7px; }

footer div.center{ border-top: 1px solid #fff; margin-top: var(--defaultPadding); }
footer div.center div.flex{ gap: 20px; padding: 24px 0; flex-wrap: wrap;  align-items: center; justify-content: center; }

@media (hover: hover) and (pointer:fine) and (min-width: 1260px) {

  header nav ul.menu a:hover{ color: var(--green); border-color: var(--green); }
  header ul.menu > li:hover > a{ border-color: var(--green); color: var(--green); }
  header ul.menu > li:hover > ul{ display: block; }


}



@media (hover: hover) and (pointer:fine) {


  .outline:hover{ color: var(--green); }

}

@media (max-width: 1199px){

  article.data-block div.row{ --bs-gutter-x: 40px; --bs-gutter-y: 40px; }

  article.podcasts div.text { padding: 0 20px; }
  article.podcasts div.wrapper { padding-right: 20px; }

}

@media (max-width: 991px){

  article.cta div.bg-darkgreen{ padding: var(--defaultPadding) 16px; }
  footer div.h3 { margin-top: 40px; }

  article.podcasts div.wrapper { padding: var(--defaultPadding) 16px 0 16px; }


}

@media (max-width: 767px){




}

@media (max-width: 575px){
  
  table.responsive{ display: block; }
  table.responsive thead{ display: none; }
  table.responsive tbody{ display: block; border-top: 1px solid #999; }
  table.responsive tbody tr{ display: flex; flex-wrap: wrap; border-bottom: 1px solid #999; padding: 5px 0; }
  table.responsive tbody tr td:nth-child(1){ font-weight: bold; }
  table.responsive tbody tr td{ width: 100%; border: none; padding: 0; height: unset!important; padding: 5px 0; }
  table.responsive tbody tr td::before{ content: attr(data-label); display: block; font-weight: normal; opacity: .7; }

  footer div.center div.flex { flex-flow: column; gap: 10px; text-align: left; align-items: unset; }

  article.faq ul.accordion,
  article.jobs ul { margin-top: 20px; }

  article.jobs ul li { display: block; }
  
  article.podcasts div.text { padding: 0 16px; }

}
