@font-face {
    font-family: hn;
    src: url(/static/fonts/1.ttf) format('truetype');
    font-weight: 200;
}

@font-face {
    font-family: hn;
    src: url(/static/fonts/2.ttf) format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: hn;
    src: url(/static/fonts/3.ttf) format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: hn;
    src: url(/static/fonts/4.ttf) format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: hn;
    src: url(/static/fonts/5.ttf) format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: hn;
    src: url(/static/fonts/6.ttf) format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: hn;
    src: url(/static/fonts/italics.ttf) format('truetype');
    font-style: italic;
}

/*all vglobal ariables for css*/
:root {
    --black-color: rgb(80, 80, 80);
    --primary-color: rgb(159,164,181); /*text and gradients, backgrounds*/
    --secondary-color: white; /*gradients, some backgrounds, highlights, animations*/
    --grey-color: rgb(159, 164, 181);
    --dark-color: rgb(118,127,136);
    --primary-color-grey: rgb(159,164,181);
    --light-dark-color: rgb(230, 230, 230);
    --error-color: rgb(255, 86, 86);
    --white-color: rgb(255, 255, 255);
    --text-color: rgb(118,127,136);
    --shadow-weak: 3px 7px 15px -7px rgba(0,0,0,0.15);
    /* complex row settings */
    --side-margin: 20vw;
    /* complex row settings */
}

* {
    font-family: 'Avenir', Helvetica, sans-serif;
    color: var(--black-color);
    transition: all 0.2s;
    transition-property: transform, color, background-color, opacity;
}

body {
    margin: 0;
}

.errorlist {
    list-style: outside;
    margin: 10px !important;
}

.errorlist li {
    color: var(--error-color);
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 10px;
}

.nonfield {
    margin: 25px 0 !important;
    list-style: none;
}

.nonfield li {
    font-size: 1.1em;
}

/*components*/
.button_primary,.button_secondary, .button_white, .button_primary_alt, .button_dark {
    background-color: var(--primary-color) !important;
    color: white;
    border-style: none;
    padding: 15px 50px;
    cursor: pointer;
}

.button_primary *, .button_secondary *, .button_primary, .button_secondary, .button_white, .button_primary_alt, .button_dark, .button_dark * {
    font-weight: bold !important;
}

.button_primary:hover, .button_secondary:hover, .button_white:hover, .button_primary_alt:hover, .button_dark:hover {
    transform: scale(1.05);
}

.button_primary_alt {
    background-color: var(--primary-color) !important;
    color: white;
}

.button_secondary {
    background-color: transparent !important;
    border: solid 1px var(--primary-color);
    color: var(--primary-color);
}

.button_white {
    color: var(--primary-color) !important;
    background-color: var(--white-color) !important;
}

.button_dark {
    color: var(--text-color) !important;
    outline: 1px solid var(--dark-color);
    background-color: rgba(118,127,136,0.2) !important;
    font-size: 1.05em;
}

.button_dark * {
    color: var(--text-color) !important;
}

.button:disabled,
button[disabled]{
  cursor: not-allowed;
  opacity: 0.5;
}

.h1_title {
    font-size: 3em;
    font-weight: lighter;
    letter-spacing: 0.1em;
}

/*components*/

.custom_javascript_popup_full {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-color);
    padding: 20px 30px 20px 30px;
    border-radius: 20px;
}

.custom_questionnaire_wrapper_wrapper {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.custom_questionnaire_qna_wrapper button {
    transform: scale(2);
    font-weight: lighter;
}

.custom_questionnaire_qna_wrapper button:hover {
    transform: scale(2.1);
}

.custom_questionnaire {
    --size: 300px;
    display: block;
    width: var(--size);
    height: var(--size);
    border-radius: var(--size);
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.custom_questionnaire:hover {
    transform: scale(1.05);
}

.custom_questionnaire * {
    color: white;
    font-size: 1.4em;
    margin: 20px;
}

.custom_base_wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.custom_splitter_div {
    margin: auto;
    text-align: center;
}

.custom_splitter_div h1 {
    font-size: 9em;
    margin: 0;
    margin-bottom: 30px;
}

.custom_splitter_div * {
    color: white;
    font-weight: lighter;
}

.custom_splitter_login_wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 30px;
    margin: auto;
}

.custom_splitter_login_text_wrapper {
    flex: 1 1 40%;
    min-width: 400px;
    max-width: 600px;
    margin: 10px 20px;
}

.custom_splitter_login_text_wrapper_buttons {
    display: flex;
    justify-content: center;
    width: 85%;
    gap: 30px;
    margin: 40px auto 0 auto;
}

.custom_splitter_login_text_wrapper_buttons > * {
    flex: 1 1 50%;
}

.custom_splitter_login_text_wrapper_buttons button {
    width: 100%;
}

.custom_splitter_login_text_wrapper h1 {
    font-size: 9rem;
    margin: 0;
}

.custom_splitter_video_wrapper {
    flex: 4 4 60%;
    min-width: 400px;
    max-width: 800px;
    margin: 10px 20px;
}

.custom_home_sections {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    padding-top: 150px;
    min-height: 100vh;
    box-sizing: border-box;
    justify-content: stretch;
}

.custom_home_sections_stretcher {
    flex: 1 1 100%;
}

.custom_home_sections h1 {
    font-size: 8rem;
    margin: 0 20px;
}

.custom_home_sections_sections { 
    display: flex;
    font-weight: bold;
    text-align: center;
    gap: 40px;
    margin-top: 65px;
    align-items: center;
    justify-content: center;
    align-self: center;
    position: relative;
    z-index: 1;
}

.custom_home_sections_sections_section {
    --size: 200px;
    width: calc(var(--size)* 1.5);
    height: var(--size);
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.custom_home_sections_sections_section * {
    color: var(--text-color) !important;
    font-size: 1.4rem;
}

.custom_home_sections_sections_section:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
    box-shadow: 4px 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.custom_home_sections_sections_section:hover * {
    color: white !important;
}

.custom_home_sections_sections_section:hover img {
    filter: invert(100%) !important;
}

.custom_home_sections_sections_background {
    background-color: var(--primary-color);
    width: 100%;
    height: 250px;
    margin-top: -150px;
}

.custom_home_sections_footer {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white-color);
    width: 100vw;
    height: 100px;
    padding: 0 75px;
}

.custom_home_sections a {
    text-decoration: none;
}

.custom_home_sections * {
    color: var(--primary-color);
}

.custom_research_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    margin: auto;
    gap: 30px;
    background-color: var(--primary-color);
    padding: 75px;
    box-sizing: border-box;
    margin-left: 15px;
}

.custom_research_wrapper .background_primary_color_circle {
    --img-height: 100px;
    position: absolute;
    top: calc(0px - var(--img-height)/2);
    left: 50%;
    height: var(--img-height);
    transform: translate(-50%, 0);
}

.custom_research_text .text_small {
    margin: 60px 0;
}

.custom_research_text {
    flex: 1 1 40%;
    min-width: 400px;
    max-width: 600px;
    margin: 10px 20px;
    text-align: center;
}

.custom_research_text * {
    color: white;
}

.custom_research_image {
    flex: 2 2 50%;
    max-width: 700px;
    max-height: 80%;
}

.custom_research_options > * {
    display: inline-block;
    margin-right: 20px;
    font-size: large;
}

.custom_research_options > ::before {
    --size: 7px;
    content: "";
    display: inline-block;
    width: var(--size);
    height: var(--size);
    margin: 10px;
    margin-top: 7px;
    border: 1px solid var(--primary-color);
    border-radius: var(--size);
    vertical-align: middle;
}

.custom_research_buttons {
    margin-top: 50px;
    margin-left: 20px;
}

.custom_research_buttons > * {
    margin-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* HELPER */    
.primary_text_color {
    color: var(--primary-color) !important;
}

.dark_text_color {
    color: var(--dark-color) !important;
}

.grey_text_color {
    color: var(--grey-color) !important;
}

.white_text_color {
    color: var(--white-color) !important;
}

.primary_background {
    background-color: var(--primary-color);
}

.text_large_lines {
    line-height: 150%;
}

.thin_font {
    font-weight: 100;
}

.bold_font {
    font-weight: 700;
}

.center_item {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.overflow_ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.no_margin {
    margin: 0;
}

.no_decoration {
    text-decoration: none;
}

.black_color {
    color: var(--black-color) !important;
}

.primary_color {
    color: var(--primary-color) !important;
}

.hidden {
    display: none;
}

.grow:hover {
    transform: scale(1.05);
}

.side_margins_base {
    margin-left: var(--side-margin);
    margin-right: var(--side-margin);
}

.text_small {
    font-size: 0.8em;
}

.background_primary_color_circle {
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
}

.background_primary_color_circle > img {
    width: calc(100% + 3px);
    height: calc(100% + 3px);
}

.color_image_invert {
    filter: invert(100%);
}
/* HELPER */

/* base form styling START*/
.custom_base_form_wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    align-self: center;
    margin: auto;
    padding-bottom: 100px;
    padding-top: 100px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.custom_base_form_wrapper .custom_base_form_upper > :first-child {
    color: var(--white-color);
    font-weight: 100;
}

.custom_base_form_wrapper .custom_base_form_form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.custom_base_form_wrapper .custom_base_form_fields {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.custom_base_form_wrapper .custom_base_form_fields p, .custom_base_form_wrapper .custom_base_form_fields li, .custom_base_form_wrapper .custom_base_form_fields ul {
    margin: 0;
}

.custom_base_form_wrapper .custom_base_form_form a {
    color: var(--white-color);
    text-decoration: none;
}

.custom_base_form_wrapper .custom_base_form_button_area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.custom_base_form_wrapper input, .custom_base_form_wrapper textarea, .custom_base_form_wrapper select {
    box-sizing: border-box;
    padding: 15px;
    background-color: var(--white-color);
    color: var(--black-color);
    border: none;
    outline: none;
    min-width: 280px;
}

.custom_base_form_wrapper textarea {
    min-width: 630px;
    min-height: 310px;
}

.custom_base_form_wrapper label {
    display: none;
}

.custom_base_form_wrapper input:focus, .custom_base_form_wrapper textarea:focus, .custom_base_form_wrapper select:focus {
    outline: 1px solid var(--black-color);
}

.custom_base_form_wrapper input::placeholder, .custom_base_form_wrapper textarea::placeholder {
    color: var(--black-color);
}
/* base form styling END */

.custom_base_form_wrapper_president_answer_form{
    border-radius: 60px;
}

.custom_base_form_wrapper_register, .custom_base_form_wrapper_login, .custom_base_form_wrapper_password_reset_final, .custom_base_form_wrapper_password_reset_request  {
    align-items: flex-start;
    margin-left: 20vw;
}

.custom_base_form_wrapper_register *:not(p), .custom_base_form_wrapper_login *:not(p), .custom_base_form_wrapper_password_reset_final *:not(p), .custom_base_form_wrapper_password_reset_request *:not(p) {
    align-items: flex-start !important;
}

/* invoice and contract forms START */
.custom_base_form {
    /* border: 1px solid var(--primary-color); */
    width: 800px;
    margin: 50px auto;
    padding: 20px 60px 40px 60px;
    background-color: white;
    box-sizing: border-box;
    box-shadow: 12px 0 15px -4px rgba(0,0,0,0.1), -12px 0 8px -4px rgba(0,0,0,0.1);
}

.custom_base_form *:not(button) {
    color: var(--grey-color);
}

.custom_base_form_wrapper_questionnaire_form {
    background-color: var(--white-color);
    box-shadow: 12px 0 15px -4px rgba(0,0,0,0.1), -12px 0 8px -4px rgba(0,0,0,0.1);
    position: relative;
}

.custom_base_form h1 {
    text-align: center;
    color: var(--primary-color);
    font-weight: lighter;
}

select {
    padding: 15px;
    background-color: var(--white-color);
    color: var(--black-color);
    border: none;
    outline: var(--primary-color) solid 1px;
    font-weight: bold;
    min-width: 50%;
    max-width: 100%;
}

.custom_base_form input {
    outline: none;
    border-radius: 0 !important;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-weight: bold;
    line-height: 20px;
    padding: 0 0 5px 5px;
    width: 100%;
    background-color: transparent;
    color: var(--primary-color);
}

.custom_base_form input::placeholder {
    color: var(--grey-color);
}

.custom_base_form_wrapper_invoice_form input:focus::placeholder, .custom_base_form_wrapper_contract_form input:focus::placeholder {
    color:rgb(80, 80, 80)
}

.custom_base_form_wrapper_invoice_form button, .custom_base_form_wrapper_contract_form button {
    margin-top: 40px;
}

.custom_base_form_wrapper_invoice_form label, .custom_base_form_wrapper_contract_form label {
    display: none;
}

.custom_base_form_wrapper_invoice_form .custom_base_form_lower p {
    margin: 25px 0 50px 0;
}

.custom_base_form_wrapper_invoice_form .custom_base_form_lower > div{
    outline: 1px solid var(--primary-color);
    padding: 50px;
    color: var(--primary-color);
}

.custom_base_form_wrapper_invoice_form .custom_base_form_upper {
    margin-bottom: 40px;
}

.custom_base_form_wrapper_contract_form .custom_base_form_lower {
    margin-top: 40px;
}
/* invoice and contract forms END */

/* QNA simple rows START */
.custom_simple_row_wrapper, .custom_complex_row_wrapper {
    width: 100%;
    background-color: var(--white-color);
    margin-left: 10px;
}

.custom_complex_row_card {
    display: flex;
    gap: 40px;
    height: 125px;
    text-decoration: none;
    padding: 5px;
    align-items: center;
    background-color: var(--primary-color);
    outline: 1px solid var(--primary-color);
}

.custom_complex_row_card_alternate {
    box-shadow: var(--shadow-weak);
    padding-left: 35px;
    margin-top: 30px;
    background-color: var(--primary-color);
}

.custom_complex_row_card_alternate > * {
    transform: translateX(-85px);
}

.custom_complex_row_card .background_primary_color_circle {
    min-width: 100px;
    min-height: 100px;
}

.custom_complex_row_card > img {
    width: 75px;
    height: 100%;
    object-fit: contain;
    display: block;
}

.custom_complex_row_card > div {
    color: var(--primary-color);
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.custom_complex_row_card p {
    color: var(--grey-text);
    font-size: 0.8em;
}

.custom_qna_answer_block {
    background-color: white;
    box-shadow: none;
    height: auto;
    padding: 50px;
}

.custom_qna_answer_block h4 {
    color: var(--grey-color);
}
/* QNA SIMPLE ROWS END */

/* QUESTIONNAIRES */
.custom_questionnaire_wrapper {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 50px;
    padding: 20px 100px;
    flex-wrap: wrap;
}

.custom_base_form_wrapper_questionnaire_form {
    margin-top: 125px;
    background-color: var(--white-color);
    position: relative;
    padding-bottom: 100px;
}

.custom_base_form_wrapper_questionnaire_form form {
    margin-bottom: 100px;
}

.custom_base_form_wrapper_questionnaire_form * {
    text-align: justify;
}

.custom_base_form_wrapper_questionnaire_form textarea {
    box-sizing: border-box;
    resize: vertical;
    outline: 1px solid var(--primary-color);
    border-bottom: none;
    padding: 10px 15px;
}

.custom_base_form_wrapper_questionnaire_form label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.custom_base_form_wrapper_questionnaire_form label input {
    width: auto;
}

.custom_questionnaire_letter_multiple_choice {
    position: relative;
    width: 0;
    height: 0;
    margin-right: 10px;
    margin-left: 25px;
}

.custom_questionnaire_letter_multiple_choice:checked::before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    outline: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-49%);
    left: -6px;
}

.mc_validate input {
    width: auto !important;
}

.custom_questionnaire_letter_multiple_choice::after {
    position: absolute;
    content: attr(data-count);
    color:rgb(80, 80, 80);
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.alt-mode:checked::before {
    border-radius: 0;
}

.custom_base_form_wrapper_questionnaire_form textarea::placeholder {
    color: var(--grey-color) !important;
    font-weight: bold;
}

.custom_questionnaire_button_wrapper {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.custom_base_form_wrapper_questionnaire_form button {
    margin: 40px 0;
    cursor: pointer;
}

.custom_base_form_wrapper_questionnaire_form button:hover {
    transform: scale(1.05);
}

/* QUESTIONNAIRES */

.custom_qna_all_questions_header {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    color: white;
}

.custom_base_form_wrapper_questionnaire_form textarea {
    box-sizing: border-box;
    resize: vertical;
    outline: 1px solid var(--primary-color);
    border-bottom: none;
    padding: 10px 15px;
    width: 80%;
}

.custom_question_splitter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.custom_question_splitter > p {
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.custom_question_splitter_buttons > * {
    --size: 300px;
    width: var(--size);
    height: var(--size);
    text-decoration: none;
    background-color: white;
    border-radius: var(--size);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    margin: 20px 50px;
}

.custom_question_splitter_buttons > *:hover {
    transform: scale(1.05);
}

.custom_question_splitter_buttons > * > * {
    color: var(--primary-color);
    font-size: 2.5em;
    text-align: center;
}

@keyframes custom_popup_wrapper_animation {
    0% {backdrop-filter: blur(0px) brightness(100%);}
    100% {backdrop-filter: blur(5px) brightness(80%);}
}

.custom_popup_wrapper {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    backdrop-filter: blur(5px) brightness(80%);
    z-index: 99999;
    animation-name: custom_popup_wrapper_animation;
    animation-duration: 0.2s;
}

.custom_okay_popup_inside {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.custom_okay_popup_inside > * {
    border-radius: 50px;
}

.custom_popup {
    min-height: 100px;
    min-width: 200px;
    background-color: var(--white-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    overflow: hidden;
    animation-name: custom_popup_animation;
    animation-duration: 0.2s;
    padding: 25px 35px;
    /* display:flex;
    flex-direction: column;
    justify-content: space-between; */
}

.custom_popup_x {
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(255, 0, 0, 0.74);
    color: var(--white-color);
    border-bottom-left-radius: 5px;
    cursor: pointer;
    padding: 3px 20px;
}

.custom_popup_x:hover {
    background-color: red;
}

.custom_connect_button {
    transform: scale(1.5);
    margin-top: 20px;
}

.custom_connect_button:hover {
    transform: scale(1.6);
}

.custom_questionnaire_finish_wrapper {
    align-self: center;
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: auto;
    margin-left: 200px;
    margin-top: 200px;
}

.custom_questionnaire_finish_wrapper * {
    color: var(--primary-color);
}

.custom_questionnaire_finish_wrapper h1 {
    font-size: 6em;
    margin-bottom: 20px;
    font-weight: lighter;
}

.custom_video_materials_video_card_no_videos {
    text-align: center;
}

.custom_video_materials_wrapper_no_videos p {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 1.5em;
}

.custom_video_materials_wrapper_wrapper {
    display: flex;
    align-items: flex-start;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    margin-left: 40px;
}

.custom_video_materials_wrapper_wrapper h1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    color: var(--primary-color);
}

.custom_video_materials_wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-direction: column;
}

.custom_video_materials_row {
    display: flex;
    gap: 25px;
    margin: 10px 0;
    text-decoration: none;
}

.custom_video_materials_row > :first-child {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom_video_materials_row > :last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--primary-color);
    gap: 5px;
}

.custom_video_materials_row h2 {
    color: var(--primary-color);
}

.custom_video_materials_row p {
    color: var(--grey-color);
}

.custom_video_materials_row:hover p {
    color: var(--primary-color);
}

.custom_base_header {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    padding: 0px 150px;
}

.custom_base_header_user_type {
    padding: 30px 15px;
    background-color: var(--primary-color);
    margin: 0;
}

.forms_label_custom_checkbox_row {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 25px;
    width: 375px;
    margin: 10px 0 !important;
    flex-direction: row-reverse;
}

.forms_label_custom_checkbox_row label {
    color: white;
    cursor: pointer;
}

.forms_label_custom_checkbox_row input {
    min-width: 1px !important;
    width: 1px !important;
    height: 1px !important;
}

.forms_label_custom_checkbox_row input::after {
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    top: -10px;
    left: -4px;
    border: 1px solid white;
    border-radius: 50px;
    content: "";
    background: transparent;
    z-index: 500;
    cursor: pointer;
}

.forms_label_custom_checkbox_row input:checked::after {
    background: var(--primary-color);
}

.custom_ask_question_wrapper {
    min-height: 100%;
}

.custom_ask_question_wrapper > :first-child {
    background-color: white;
    height: 200px;
    width: 100vw;
}

.custom_ask_question_wrapper > :first-child p {
    padding-top: 125px;
    margin: 0 150px;
    font-weight: bold;
    font-size: 1.5em;
}

.custom_ask_question_wrapper > :nth-child(2) {
    text-align: center;
    padding: 40px 0;
}

.custom_ask_question_wrapper input:not([type="checkbox"]), .custom_ask_question_wrapper textarea {
    width: 100%;
    height: 50px;
    border: 1px solid var(--grey-color);
    padding: 0 10px;
    margin: 10px 0;
    box-sizing: border-box;
}

.custom_ask_question_wrapper input:not([type="checkbox"])::placeholder, .custom_ask_question_wrapper textarea::placeholder {
    color: var(--grey-color);
}

.custom_ask_question_wrapper textarea {
    height: 200px;
    padding: 15px 0 0 10px;
}

.custom_question_form_splitter button {
    margin-top: 40px;
}

.custom_ask_question_wrapper label {
    display: none;
}

.custom_question_form_splitter {
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 50px 100px;
}

.custom_question_form_splitter > :first-child {
    padding: 30px;
    outline: 1px solid var(--primary-color);
    flex: 1 1 60%
}

.custom_question_form_splitter > :last-child {
    padding: 30px;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 40%;
}

.custom_question_form_splitter > :last-child > div * {
    color: white;
}

.custom_base_form_wrapper_president_question_form {
    padding-top: 50px;
    background-color: white;
}

.custom_base_form_wrapper_president_question_form .forms_label_custom_checkbox_row input::after {
    border: 1px solid var(--primary-color) !important;
}

.custom_base_form_wrapper_president_question_form .forms_label_custom_checkbox_row * {
    color: var(--grey-color) !important;
}

.custom_base_split_wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    min-height: 100vh;
    padding: 140px 150px 40px 150px;
    box-sizing: border-box;
}

.custom_base_split_side {
    flex: 1 1 auto;
    max-width: 400px;
    min-width: 250px;
}

.custom_base_split_side h2 {
    color: var(--primary-color)
}

.custom_base_split_side p {
    color: var(--grey-color)
}


.custom_base_split_main {
    flex: 3 3 auto;
    max-width: 1220px;
    min-width: 400px;
}

.custom_footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 100px;
}

.custom_footer_first {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 50px;
}

.custom_footer_second {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 50px;
}

.custom_footer_second a, .custom_footer_second span {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.8rem;
}

.custom_footer_first > p:last-of-type {
    max-width: 750px;
    text-align: left;
    color: white;
    font-size: 0.8rem;
    line-height: 150%;
    min-width: 220px;
}

.custom_footer_contact_info_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 0.8;
}

.custom_footer_contact_info_section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding-left: 20px;
}

.custom_footer_contact_info_section > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom_document_form_pdf {
    display: none;
}

.custom_document_form_center_two_buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 10px 20px;
}

.custom_document_form_center_two_buttons > * {
    flex: 1 1;
    margin: 0 !important;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 300px;
    box-sizing: border-box;
}

.custom_document_form_signature_canvas_wrapper {
    margin: 30px auto;
    margin-top: 15px;
}

.custom_document_form_signature_canvas {
    outline: grey 1px solid;
    
    display: block;
    margin: auto;
    border-radius: 15px;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;

    /*watch out when changing width height, they are also tied in javascript*/
    width: 620px;
    height: 190px;
}

.custom_document_form_signature_canvas_wrapper_text {
    text-align: center;
    margin: 10px 0;
    margin-bottom: 0;
}

.custom_document_form_signature_canvas_clear_button {
    margin-top: 10px !important;
    transform: scale(0.7);
}

.custom_document_form_signature_canvas_clear_button:hover {
    transform: scale(0.8);
}

.document_form_hidden_2, .document_form_hidden_3, .document_form_hidden_4 {
    display: none;
}

.custom_form_pdf_enlarge {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 90px);
    z-index: 99999;
    display: block;
}

.custom_form_pdf_minify_wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: var(--primary-color);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom_form_pdf_minify_wrapper > button {
    color: white;
    border-color: white;
}

.custom_document_form_pdf_enlarge_button {
    display: block;
    margin: 20px auto;
}

.custom_document_form_section_title {
    margin-top: 50px;
    text-align: center;
    color: var(--primary-color) !important;
}

.custom_signature_confirm {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.custom_signature_confirm > :first-child {
    width: 15px;
}

.custom_questionnaire_floating_save_button {
    position: fixed;
    bottom: 200px;
    right: 0;
    margin: 40px !important;
    z-index: 100;
    background-color: white !important;
}

.custom_loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom_loading > div {
    width: 250px;
    height: 120px;
    border-radius: 20px;
    background-color: white;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.custom_loading div p {
    font-size: large;
    color: var(--black-color);
    font-weight: bold;
}

/*balls inside of this bouncing up and down*/
.custom_loading_balls {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-top: 10px;
}

.cookie_warning {
    display: none;
    position: fixed;
    min-height: 50px;
    bottom: 0px;
    left: var(--navigation-bar-width);
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: 1px solid var(--primary-color);
    z-index: 999;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

@keyframes bounce {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-10px);
    }
}

.custom_loading_balls > div {
    --size: 15px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: var(--primary-color);
    animation: bounce 1s infinite alternate;
}

.custom_loading_balls > div:nth-child(2) {
    animation-delay: 0.2s;
}

.custom_loading_balls > div:nth-child(3) {
    animation-delay: 0.4s;
}

@media screen and (max-width: 1350px) {
    .custom_questionnaire_floating_save_button {
        display: none;
    }
}

@media (max-width: 1200px) {
    .custom_base_header {
        padding: 0px 40px;
    }

    .custom_base_split_wrapper {
        padding: 140px 40px 40px 40px;
    }
}

@media (max-width: 800px) {
    .custom_base_header {
        padding: 0px 20px;
    }

    .custom_base_split_wrapper {
        padding: 140px 20px 40px 20px;
    }
}