﻿
::-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: inherit; padding: 0 20px; height: 50px; line-height: 50px; border: none; }

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); background-color: #FAF6F6!important; 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 > input:focus + label::after,
form .placeholder > textarea:focus + label::after,
*/

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 ul li + li{ margin-top: 0; }
article 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-right: 50px; cursor: pointer; }
ul.accordion li div.toggler::after { content: ""; display: block; width: 24px; height: 24px; background: url(chevron-down.svg) center center no-repeat; position: absolute; top: 0; right: 0; transition: .2s; }
ul.accordion li.open div.toggler::after { transform: rotate(-180deg); }

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: 16px; margin-top: -12px; width: 24px; height: 24px; background: url(chevron-down.svg); background-size: cover; transition: all .2s ease; }

.context-menu.clicked > label::after,
.dd.clicked > label::after{ transform: rotate(-180deg); }

.dd > label.alert{ color: #9F4343; }

.context-menu > label::after,
.dd > label.alert::after{ background: url(chevron-down.svg); }

.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; }


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%!important; height: 100%!important; 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;
  z-index: 1;
  transition: unset;
}
button.play:hover{ opacity: .75; transition: all .2s ease; }
button.play::after{
  position: absolute;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 8px solid var(--primary);
  border-radius: 50%;
}
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; }

footer div.row{ justify-content: space-between !important; }

footer{ background-color: var(--primary); color: var(--secondary); }
footer div.h3{ margin-bottom: .5rem; }

footer img.logo{ width: 200px; height: auto; max-width: 40vw; }

footer ul{ margin-bottom: 2rem; }
footer ul li a{ line-height: 1.75; }

footer a:hover{ text-decoration: underline; }

@media (hover: hover) and (pointer:fine) {
  

}

@media (max-width: 1199px){

}

@media (max-width: 991px){



}

@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; }



}
