/* Netsuite css V1 */
/* update 1 */

body {
  font-family: "Hanken Grotesk", sans-serif !important;
  color: hsl(203 82% 24% / 100%);
  font-size: 0.875rem;
  font-weight: 300;
  display: flex;
  align-items: center;
}

.Container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

#main_form {
  padding: 0 4rem;
  height: auto;
  width: 100%;
}

/* FORM */

.Form__Wrapper, .Form__Grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* INPUT */

.Form__Input {
  display: flex;
  gap: 0.25rem;
  position: relative;
  flex-direction: column;
}

.Form__Input label {
  font-size: 0.875rem;
  color: hsl(203 82% 24% / 100%);
  font-weight: 600;
}

.Form__Input select {
  border: 1px solid hsl(60 4% 11% / 100%);
  height: 2rem;
  font-size: 0.8rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease-in-out;
  width: 100%; 
}

.Form__Input input {
  border-radius: 0.25rem;
  height: 1.5rem !important;
  border: 1px solid hsl(60 4% 11% / 100%) !important;
  font-size: 0.875rem;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem;
  width: 100%;
}

.Form__Input input[type="checkbox"] {
  margin-right: 0.5rem;
  height: 0 !important;
}

/* CHECKBOXES */

.Form__Checkboxes{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.Form__CheckboxesWrapper{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox_unck .checkboximage, 
.checkbox_ck .checkboximage, 
.checkbox_read_unck .checkboximage, 
.checkbox_read_ck .checkboximage, 
.checkbox_disabled_unck .checkboximage, 
.checkbox_disabled_ck .checkboximage {
  display: none !important;
}

span input.checkbox {
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  z-index: 1 !important;
}

/* LABEL */

.Form__LabelBig {
  font-size: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.Form__LabelSmall {
  font-size: 0.75rem;
}

/* MESSAGE */

.Form__Input--Message { 
  margin-top: 1rem;
}

.Form__Input textarea {
  border: 1px solid hsl(60 4% 11% / 100%);
  height: 2.5rem;
  font-size: 0.8rem;
  border-radius: 0.25rem;
  width: 100%;
  min-height: 10rem;

}

/* BUTTON */

.Button {
  margin-top: 2rem;
  border: none !important;
  background-color: hsl(201 100% 37% / 100%);
  border-radius: 0.25rem;
  color: #fff;
  position: relative;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  width: 10rem;
} 

.Button:hover {
  background: hsl(203 82% 24% / 100%);
  border: none;
}

/* FORM DA VISUALIZZARE ESTERNAMENTE AL SITO */
/* HEADER */

.Header { 
  border-bottom: 1px solid hsl(201 100% 37% / 100%);
}

.Header__Wrapper a {
  color: hsl(60 4% 11% / 100%);
  text-decoration: none;
  font-weight: 500;
}

.Footer__Wrapper,
.Header__Wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
  padding: 1rem 4rem;
}

/* FOOTER */

.Footer {
  background-color: hsl(203, 100%, 14%);
  color: #fff;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.Footer__Wrapper a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* RESPONSIVE */

@media (min-width: 768px) {
  .Form__Grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
  }

  .Footer__Wrapper,
  .Header__Wrapper { 
    flex-direction: row;
    justify-content: space-between; 
    align-items: center;
  }
}