@charset "UTF-8";

* {
  border: none;
  margin: 0px;
  padding: 0px;
}

:root {
  /* Colors */
  --color-red: #da5235;
  --color-yellow: #fec35a;
  --color-green: #67baaf;
  --color-light-grey: #b1b1b1;
  --color-lighter-grey: #cccccc;
  --color-grey: #77787b;
  --color-dark-grey: #4d4c4f;
  --color-white: #ffffff;
  --color-black: #000000;
}

/* Fonts */
@font-face {
  font-family: Franklin-Gotham-Book;
  font-style: normal;
  src: url(../fonts/Franklin Gothic Book.otf);
}
@font-face {
  font-family: Gotham-Black;
  font-style: normal;
  src: url(../fonts/Gotham-Black.otf);
}
@font-face {
  font-family: Gotham-Medium;
  font-style: normal;
  src: url(../fonts/Gotham-Medium.otf);
}
@font-face {
  font-family: Gotham-Book;
  font-style: normal;
  src: url(../fonts/Gotham-Book.otf);
}
@font-face {
  font-family: Lobster;
  font-style: normal;
  src: url(../fonts/Lobster.otf);
}
@font-face {
  font-family: Verdana;
  font-style: normal;
  src: url(../fonts/Verdana.otf);
}

/* Nimbus */
@font-face {
  font-family: Nimbus;
  font-style: normal;
  src: url(../../fonts/NimbusSansD/NimbusSanD-Reg.otf);
}
@font-face {
  font-family: NimbusBlack;
  font-style: normal;
  src: url(../../fonts/NimbusSansD/NimbusSanD-Bla.otf);
}
@font-face {
  font-family: NimbusBold;
  font-style: normal;
  src: url(../../fonts/NimbusSansD/NimbusSanD-Bol.otf);
}
@font-face {
  font-family: NimbusLight;
  font-style: normal;
  src: url(../../fonts/NimbusSansD/NimbusSanD-Lig.otf);
}
@font-face {
  font-family: NimbusCondensedLight;
  font-style: normal;
  src: url(../../fonts/NimbusSansD/NimbusSanConD-Lig.otf);
}
@font-face {
  font-family: NimbusUltraLight;
  font-style: normal;
  font-weight: normal;
  src: url(../../fonts/NimbusSansD/NimbusSanD-UltLig.otf);
}
@font-face {
  font-family: NimbusOutlineBold;
  font-style: normal;
  font-weight: normal;
  src: url(../../fonts/NimbusSansD/NimbusSanOutD-Bol.otf);
}

.too-small {
  display: none;
  visibility: hidden;
}

strong{
  font-family: Gotham-medium;
}

#copiedToClipboard {
  align-items: center;
  background-color: var(--color-yellow);
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  width: 100vw;
  z-index: 1000;
}
#copiedToClipboard.show {
  opacity: 1;
  visibility: visible;
}
#copiedToClipboard h1 {
  color: var(--color-white);
  font-size: 40px;
  line-height: 40px;
}
#copiedToClipboard p {
  color: var(--color-black);
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 30px;
}
#copiedToClipboard.show .video-container {
    margin: 0 auto;
    width: 1000px;
}
.video {
  background: #b1b1b1;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.video iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

#left, #right {
  box-sizing: border-box;
  float: left;
  height: 100vh;
}

/* Left */
#left {
  background: #ffffff;
  padding: 80px;
  width: 40%;
  overflow-y: scroll;
}
#left .container {
  margin-top: 0px;
}
#left .container p {
  margin-bottom: 20px;
}
#left img {
  margin-bottom: 40px;
  width: 100%;
}
#left span.linkIcon {
  background-image: url('../images/download-link-icon.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 16px;
  width: 16px;
}

/* Right */
#right {
  background: #b1b1b1;
  width: 60%;
}
#right .container {
  background: #ffffff;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 40px;
  position: relative;
  max-width: 650px;
  top: 50%;
  transform: translateY(-50%);
}
#right .container.noPadding {
  padding: 0px;
}
#right .container:after {
  clear: both;
  content: "";
  display: table;
}
#right table td {
  float: left;
  font-family: Verdana;
  padding: 10px 0px;
  width: 100%;
}
#right table tr.banner,
#right table tr.banner > * {
  display: none;
  height: 0px;
  visibility: hidden;
}
#right table tr.banner.show {
  display: block;
  height: 153px;
  visibility: visible;
}
#right table tr.banner.show > * {
  display: block;
  visibility: visible;
}

h1 {
  color: var(--color-black);
  font-family: NimbusBlack;
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h1.noMargin {
  margin-bottom: 0px;
}

h2, h3, h4, h5, h6 {
  color: var(--color-red);
  font-family: NimbusBold;
  font-size: 28px;
  line-height: 36px;
  text-transform: uppercase;
}
h2 span {
  color: var(--color-light-grey);
  font-size: 20px;
  text-transform: uppercase;
}

p {
  color: var(--color-black);
  font-family: Gotham-Book;
  font-size: 18px;
  line-height: 24px;
}

p a:link,
p a:active,
p a:visited {
  color: var(--color-red);
  text-decoration: none;
}
p a:hover {
  text-decoration: underline;
}

label {
  color: var(--color-black);
  font-family: Gotham-Book;
  font-size: 16px;
  line-height: 22px;
}
label span {
  color: var(--color-red);
  float: right;
}
label span.hide {
  display: none;
}

input[type=text]{
  background: #ffffff;
  border: 1px #77787b solid;
  box-sizing: border-box;
  color: var(--color-black);
  font-size: 16px;
  height: 40px;
  margin-bottom: 20px;
  padding: 0px 20px;
  width: 100%;
}

input[type=checkbox]{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* checkbox */
label.checkbox {
  cursor: pointer;
  display: block;
  font-size: 14px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 35px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
label.checkbox:after {
  clear: both;
  content: "";
  display: table;
}
.checkmark {
  background-color: var(--color-lighter-grey);
  height: 25px;
  left: 0;
  position: absolute;
  top: 0;
  width: 25px;
}
label.checkbox:hover input ~ .checkmark {
  background-color: var(--color-lighter-grey);
}
label.checkbox input:checked ~ .checkmark {
  background-color: var(--color-red);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
label.checkbox input:checked ~ .checkmark:after {
  display: block;
}
label.checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
input[type='submit'],
button {
  background: var(--color-red);
  border: none;
	color: #ffffff;
  cursor: default;
	display: block;
	float: left;
  font-family: Gotham-Medium;
	font-size: 16px;
  margin-top: 20px;
	padding: 10px 40px;
	text-align: center;
	text-decoration: none;
  text-transform: uppercase;
	transition: background .3s;
	-webkit-transition: background .3s;
  width: 100%;
}
input[type='submit']:hover,
button:hover {
  background: var(--color-dark-grey);
  cursor: pointer;
}
input[type='submit']:focus,
button:focus {
  outline: none;
}
button a, button a:hover {
  color: #ffffff;
  text-decoration: none;
}
button:disabled,
button.error,
button[disabled] {
  background-color: var(--color-light-grey);
  cursor: auto;
}

@media only screen and (max-width: 1200px) {
  /* * {
    visibility: hidden;
  } */
  /* body {
    background: var(--color-red);
    height: 100vh;
    position: relative;
    width: 100vw;
  } */
  /* .too-small {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    visibility: visible;
    width: 100vw;
  } */
  /* .too-small h1 {
    color: var(--color-white);
    font-size: 40px;
    line-height: 40px;
    text-align: center;
    visibility: visible;
  } */

  #left{
    width: 100%;
    height: auto;
    padding: 80px 20px 80px 20px;
    .choice-group{
      grid-template-columns: 1fr;
    }
  }

  #right{
    width: 100%;
    height: 50vh;
  }
}

.choice-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  max-width: 900px;
}

/* Visually hide but keep accessible and focusable */
.img-radio {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.img-radio + label {
  display: grid;
  /* display: flex; */
  /* flex:1; */
  gap: 10px;
  cursor: pointer;
  user-select: none;
  /* border-radius: var(--radius); */
  border: 1px solid #d6d6d6;
  padding: 12px;
  background: #fff;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.img-radio + label:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border-color: #bdbdbd;
}

.img-radio + label .thumb {
  width: 100%;
  height: 120px;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  /* background: #f2f2f2; */
  display: grid;
  place-items: center;
}

.img-radio + label img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  display: block;
}

.img-radio + label .caption {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Selected state */
.img-radio:checked + label {
  border-color: var(--color-red);
  box-shadow: 0 0 0 var(--ring) rgba(31, 111, 235, 0.25);
}

/* Keyboard focus ring (tabbing) */
.img-radio:focus-visible + label {
  outline: var(--ring) solid rgba(31, 111, 235, 0.5);
  outline-offset: 3px;
}

/* Optional: disabled */
.img-radio:disabled + label {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

