@import url('variables.css');
@import url('fonts.css');
@import url('figure.css');

* {
  box-sizing: border-box;
}

body {
  background-color: var(--white);
  color: var(--grey);
  font-family: var(--sans-serif);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
  font-size: 16px;
  scrollbar-color: var(--teal) #F4F4F5;
}
body ::-webkit-scrollbar {
  background-color: var(--grey-divider);
  height: 10px;
  width: 10px;
  border-radius: 4px;
}
body ::-webkit-scrollbar-thumb {
  background-color: var(--teal);
  border-radius: 4px;
}


/* Buttons */
::-webkit-scrollbar-button
{
  border-style: solid;

  background-color: transparent;
}



/* Left */
::-webkit-scrollbar-button:horizontal:decrement
{
  background: url('../assets/chevron-left-solid.svg');
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  background-position: center;
}

/* Right */
::-webkit-scrollbar-button:horizontal:increment
{
  background: url('../assets/chevron-right-solid.svg');
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  background-position: center;
}
/* up */
::-webkit-scrollbar-button:vertical:decrement
{
  background: url('../assets/chevron-up-solid.svg');
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  background-position: center;
}

/* down */
::-webkit-scrollbar-button:vertical:increment
{
  background: url('../assets/chevron-down-solid.svg');
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  background-position: center;
}


::-webkit-scrollbar-button:vertical:start:increment,
::-webkit-scrollbar-button:vertical:end:decrement,
::-webkit-scrollbar-button:horizontal:start:increment, 
::-webkit-scrollbar-button:horizontal:end:decrement 
{
    display: none;
}



img {
  height: auto;
  max-width: 100%;
}
fieldset {
  border: none;
  margin: 0;
  min-width: 0;
  padding: 0;
}
legend {
  margin: 0;
  padding: 0;
}
.hidden {
  border: 0;
  clip: rect(0,0,0,0);
  height: var(--1px);
  margin: var(---1px);
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: var(--1px);
}
.more.link {
  text-decoration: none;
}
.more.link::after {
  background-color: currentcolor;
  content: '';
  display: inline-block;
  height: 1ch;
  -webkit-mask: url('icons/chevron-right.svg') center no-repeat;
  mask: url('icons/chevron-right.svg') center no-repeat;
  transform: translate3d(0, 0, 0);
  transition: transform 150ms ease-out;
  width: 1ch;
}
.more.link:hover::after,
.more.link:focus::after {
  transform: translate3d(var(--2px), 0, 0);
}
.button {
  align-items: center;
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  font: var(--bold) var(--16px)/var(--21px) var(--sans-serif);
  height: var(--48px);
  justify-content: center;
  max-width: 100%;
  outline: none;
  overflow: hidden;
  padding: 0 var(--25px);
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.button.orange {
  background-color: var(--orange);
  color: var(--white);
}
.button.orange:hover,
.button.orange:focus {
  background-color: var(--orange-dark);
}
.button.white {
  background-color: var(--white);
  color: var(--grey);
}
.button.white:hover,
.button.white:focus {
  background-color: var(--grey);
  color: var(--white);
}
.button.teal {
  background-color: var(--teal);
  color: var(--white);
}
.button.teal:hover,
.button.teal:focus {
  background-color: var(--teal-dark);
}
.button.thin {
  border: var(--2px) solid currentcolor;
  box-sizing: content-box;
  height: var(--26px);
  line-height: var(--26px);
}
.button.thin.white {
  background-color: transparent;
  color: var(--white);
}
.button.pdf::before {
  background-color: var(--orange);
  content: '';
  height: var(--32px);
  margin-left: var(---5px);
  margin-right: var(--15px);
  -webkit-mask: url('icons/pdf.svg') center no-repeat;
  mask: url('icons/pdf.svg') center no-repeat;
  width: var(--22px);
}
.field::placeholder {
  color: var(--grey-placeholder);
}
.heading {
  font-weight: var(--semibold);
  text-transform: uppercase;
}
.list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list a {
  outline: none;
  text-decoration: none;
}
.row {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.row > .col {
  display: table-cell;
  vertical-align: top;
}
.rich-text > :first-child {
  margin-top: 0;
}
.rich-text > :last-child {
  margin-bottom: 0;
}
.rich-text a {
  color: var(--grey);
  text-decoration: underline;
  text-decoration-thickness: from-font;
}
.rich-text a:hover,
.rich-text a:focus {
  color: var(--orange);
}
.rich-text strong {
  font-weight: var(--semibold);
}
.rich-text h2,
.rich-text h3,
.rich-text h4,
.rich-text h5,
.rich-text h6 {
  font-weight: var(--semibold);
  text-transform: uppercase;
}
.rich-text h1 {
  color: var(--orange);
  font-family: var(--sans-serif);
  font-size: var(--24px);
  font-weight: var(--regular);
  line-height: var(--33px);
}
.rich-text h2 {
  font-size: var(--50px);
  line-height: var(--50px);
}
.rich-text h3 {
  font-size: var(--40px);
  line-height: var(--42px);
}
.rich-text h4,
.rich-text h5,
.rich-text h6 {
  color: var(--orange);
  font-size: var(--26px);
  line-height: var(--28px);
}
.rich-text p {
  margin: var(--32px) 0;
}
.rich-text ul,
.rich-text ol {
  line-height: var(--32px);
  margin: 0;
}
.rich-text ul {
  list-style: none;
  padding: 0;
}
.rich-text ul > li {
  padding-left: var(--20px);
  position: relative;
}
.rich-text ul > li::before {
  content: '–';
  left: 0;
  position: absolute;
  top: 0;
}
.rich-text ul ul {
  list-style-position: inside;
  list-style-type: circle;
}
.rich-text ul ul > li {
  padding-left: var(--4px);
}
.rich-text ul ul ul {
  list-style-type: square;
}
.rich-text ul ul ul > li {
  padding-left: var(--24px);
}
.rich-text ul ul > li::before {
  content: none;
}
.rich-text ol {
  list-style-position: inside;
  padding: 0;
}
.rich-text ol > li {
  font-weight: var(--semibold);
}
.rich-text ol > li > ul {
  font-weight: var(--light);
}


.page-numbers{
  font-size: 18px;
  margin: 0 2px;
}
.page-numbers.current {
  color: var(--orange);
  font-weight: bold;
}

.page-numbers{
  display: inherit;
}

/* for the checkbox */
.same-as-button .gfield_checkbox  {
  position: relative;
}

.same-as-button .gfield_checkbox  label {
  border: 2px solid var(--grey) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-content: center !important;
  padding: 20px !important;
  position: relative;

}

.same-as-button .gfield_checkbox label::after {
  content: "";
  opacity: 1;
}

.same-as-button .gfield_checkbox  input[type="checkbox"] {
  opacity: 0;
}

.same-as-button .gfield_checkbox  input[type="checkbox"]:checked+label{
  border: 2px solid var(--teal) !important;
}

.same-as-button .gfield_checkbox [class^="gchoice"] label:before,
.same-as-button .gfield_checkbox [class^="gchoice"] label:after {
  margin: auto;
  position: absolute;

  font-family: "dashicons" !important; 
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  bottom: unset;
  display: inline-block;
  font-size: 25px;

}

.same-as-button .gfield_checkbox [class^="gchoice"] label:after {

  content: "\f460" !important; 
}

.same-as-button .gfield_checkbox input[type="checkbox"]:checked+label:after {
 display: none;
}


/* tick */
.same-as-button .gfield_checkbox input[type="checkbox"]:checked+label:before {
  content: "\f147" !important; 
  z-index: 9;
  color: var(--teal);
}

/* Form Section */


.alc-container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1000px;
  padding: 20px;
}

.display-none {
  display: none;
}

.purchase-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
  margin-bottom: 50px;
}

.purchase-split .item {
  display: flex;
  justify-content: space-between;
  width: 50%;
  /* Adjust the width as needed */
  margin-bottom: 10px;
}

.purchase-split span {
  font-weight: 700;
  text-transform: uppercase;
}

.form-section .gform_wrapper .gfield {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.form-section .gform_wrapper input,
.form-section .gform_wrapper textarea,
.form-section .gform_wrapper input:focus-visible,
.form-section .gform_wrapper textarea:focus-visible {
  border: solid var(--1px) var(--grey-border);
  margin: 16 !important;
  padding: 10px 20px;
  background-color: white;
  border-radius: var(--4px);
  outline-style: none !important;
  font-family: var(--sans-serif);
}

.form-section .gform_wrapper .gfield_label {
  font-family: var(--sans-serif);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.form-section .gform_wrapper .gfield_required {
  color: var(--orange) !important;
}

.form-section .gform_wrapper .gform_button {
  color: white;
  font-size: 13px;
  background-color: var(--orange);
  border: solid 2px var(--orange);
  border-radius: 0px !important;
}

.form-section .gform_wrapper {
  background-color: var(--grey-background);
  padding: var(--150px);
}

.form-section .gform_legacy_markup_wrapper input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
  line-height: 16.8px;
}

@media screen and (max-width: 641px) {
  .form-section #gform_submit_button_10.gform_button {
    padding: 0;
    width: 100%;
  }
}