* {
    margin: 0;
    padding: 0;
}

body {
  padding: 0 15px;
}

html {
    font-family: 'Helvetica Neue';
    font-weight: normal;
    font-style: normal;
    font-size: 1.1rem;
    color: #858585;
}

.custom-container { max-width: 960px; margin: 0 auto; }

/* Colors*/
.gray-100 { color: #DEDBD7; }
.gray-200 { color: #9E9893 }
.gray-300 { color: #858585; }
.gray-400 { color: #1D1D1B; }

.red { color: rgb(197,40,28); }


/* Fonts */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue.woff2') format('woff2'),
        url('fonts/HelveticaNeue.woff') format('woff'),
        url('fonts/HelveticaNeue.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('fonts/HelveticaNeue-Thin.woff2') format('woff2'),
        url('fonts/HelveticaNeue-Thin.woff') format('woff'),
        url('fonts/HelveticaNeue-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

.regular-text {
    font-family: 'Helvetica Neue';
    font-weight: normal;
    font-style: normal;
}

.thin-text {
    font-family: 'Helvetica Neue';
    font-weight: 100;
    font-style: normal;
}

.bold-text {
  font-weight: bold !important;
}

.text-justify {
  text-align: justify;
}
.very-small { font-size: 0.5rem !important; }

.fs-0 { font-size: 1rem !important; }
.fs-1 { font-size: 1.25rem !important; }
.fs-2 { font-size: 1.563rem !important; }
.fs-3 { font-size: 1.953rem !important; }
.fs-4 { font-size: 2.441rem !important; }
.fs-5 { font-size: 3.052rem !important; }

.button, input[type=submit] {
    text-decoration: none;
    background: rgb(165,38,22);
    background: radial-gradient(circle, rgba(165,38,22,1) 0%, rgba(103,30,0,1) 100%);
    padding: 1.0rem 4rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1rem;
    display: inline-block;
    text-align: center;
    border-top-left-radius: 80px;
    border-bottom-right-radius: 80px;
    transition:all 0.3s ease;
    opacity: 1;
}
.button:hover, input[type=submit]:hover {
  opacity: 0.75;
  color: #fff;
}
.button:active, input[type=submit]:active {
  opacity: 1;
}

.img-fluid { 
  height: fit-content !important;
}

.cursor-pointer {
  cursor: pointer;
}

/* Radio button */
:root {
    --form-control-color: #1D1D1B;
  }
  
  *,
  *:before,
  *:after {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    padding: 0;
  }
  
  .screen-height {
    height: calc(100vh - 90px);
  }
 
  .form-control {
    font-size: 1.1rem;
    /* line-height: 1.1; */
    display: grid;
    grid-template-columns: 1em auto;
    gap: 1em;
    border: 0px;
  }
  
  .form-control + .form-control {
    margin-top: 1em;
  }
  
  input[type=radio], input[type=checkbox] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    -moz-appearance: none;
         appearance: none;
    /* For iOS < 15 */
    background-color: #DADADB;
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
  }
  
  input[type=radio]::before, input[type=checkbox]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    /* Windows High Contrast Mode */
    background-color: CanvasText;
  }
  
  input[type=radio]:checked::before, input[type=checkbox]:checked::before {
    transform: scale(1);
  }
  
  input[type=radio]:focus, input[type=checkbox]:focus {
    outline: max(2px, 0.15em) solid rgb(165,38,22);
    outline-offset: max(2px, 0.15em);
    border-color: rgba(0, 0, 0, 0);
  }

/* Custom Image Radio */

.custom-radio [type=radio],.custom-checkbox [type=checkbox]  { 
  width: 100%;
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.custom-radio [type=radio] + img, .custom-checkbox [type=checkbox] + img {
  cursor: pointer;
  width: 100%;
}

.custom-radio [type=radio]:checked + img, .custom-checkbox [type=checkbox]:checked + img {
  -webkit-filter: drop-shadow(-7px 6px 0 rgb(165,38,22));
  filter: drop-shadow(-7px 6px 0 rgb(165,38,22));
}

.custom-container [type=radio]:checked + img + .thin-text, .custom-container [type=checkbox]:checked + img + .thin-text {
  font-weight: 500 !important;
}




/* Input text */
input[type=text], input[type=date], input[type=number], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: none;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
  box-sizing: border-box;
  background-color: #DEDBD7;
  text-align:center;
}

input[type=text]:active, input[type=text]:focus, input[type=text]:focus-within {
  border: none;
}

input[type=submit] {
  border: none;
}

textarea:focus, input:focus, select:focus { outline-color: #858585; }

select {
  appearance: none; 
  background-image: url(down-arrow.svg);
  background-repeat: no-repeat;
  background-position: 90%;
  background-size: 16px;
}

select option { background-color: #fff; }

/* Checkbox */
.container-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

.container-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

.container-checkbox input:checked ~ .checkmark {
  background-color: rgb(165,38,22);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.container-checkbox .checkmark:after {
  left: 9px;
  top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Card */
.card {
  border: 1px solid #9E9893;
  background-color: #ececec;
  border-top-left-radius: 80px;
  border-bottom-right-radius: 80px;
}
.card-body {
  padding: 0.5rem 2rem 0.5rem 1rem;
}
.card-highlight {
  border: 1px solid #dbd6d3 !important;
  background-color: #505050 !important;
  color: #fff !important;
}

/* Print */
.print .fixed-indent {
  width: 150px;
}

.print .extra-info-section .small {
  font-size: 0.675em;
}

/* Tooltip */
.tooltip-icon {
  height: 18px;
  margin-bottom: 0.4rem;
  color: rgb(165,38,22);
}
.custom-tooltip {
  --bs-tooltip-max-width: 300px;
}