.main-cta-button {
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.9em;
    font-family: 'BOLD';
    transition: all 0.2s;
}

.main-cta-button a {
    padding: 0.4em 1.5em;
    color: inherit;
    margin-right: 1em;
    border-radius: 0.3em;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;
    background-color: var(--color-primary);
    text-shadow: 0 0.3em 0.5em rgba(0, 0, 0, 0.5);
    border-bottom: 0.2em solid rgba(255, 255, 255, 0.0);
}

.main-cta-button a:hover {
    background-color: color-mix(in oklab, var(--color-primary), white 10%);
    border-bottom: 0.2em solid rgba(255, 255, 255, 0.5);
    transition: all 0.2s;
    box-shadow: 0 0 0.8em rgba(160, 96, 12, 0.527);
    color: white;
}

.contact-form {
    display: flex;
    margin: 0 auto;
    width: clamp(500px, 50%, 800px);
    flex-direction: column;
}

.contact-form .form-group {
    gap: 1em;
    display: flex;
    flex-direction: row;
    margin-bottom: 0.8em;
}

.contact-form .form-title {
    width: 20%;
    flex-shrink: 0;
    font-size: 0.9em;
    font-family: 'LITE';
    border: 0px solid red;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
}

.contact-form .form-fields {
    flex-grow: 1;
    font-size: 1.1em;
}

.contact-form select, 
.contact-form textarea, 
.contact-form input[type="email"],
.contact-form input[type="text"] {
    width: 100%;
    padding: 0.3em;
    border: 0px solid #ccc;
    border-radius: 0.2em;
    font-family: 'REGU';
}

.column {
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

/* --- */

input[type="checkbox"] {
    height: 1.5em;
    outline: none;
    cursor: pointer;
    appearance: none;
    position: relative;
    align-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 0.2em;
    justify-content: center;
    -webkit-appearance: none;
    background-color: white;
    transition: background-color 0.2s ease-in-out;
}

input[type="checkbox"]:after {
    width: 100%;
    height: 100%;
    content: "✓";
    display: none;
    font-size: 1.6em;
    font-weight: bold;
    position: absolute;
    color: white;
}

input[type="checkbox"]:hover {
  background-color: #8a8a8a;
}

input[type="checkbox"]:checked {
  background-color: var(--color-primary) !important;
  transition: background-color 0.2s ease-in-out;
}

input[type="checkbox"]:checked:after {
    display: flex;
    border: 0px solid red;
    align-items: center;
    justify-content: center;
}



/* --- */

input[type="radio"] {
    height: 1.5em;
    outline: none;
    cursor: pointer;
    appearance: none;
    position: relative;
    align-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    justify-content: center;
    -webkit-appearance: none;
    background-color: white;
    transition: background-color 0.2s ease-in-out;
}

input[type="radio"]:after {
    width: 50%;
    height: 50%;
    content: "";
    display: none;
    border-radius: 50%;
    position: absolute;
    background-color: rgb(117, 53, 53);
}

input[type="radio"]:hover {
  background-color: #8a8a8a;
}

input[type="radio"]:checked {
  background-color: var(--color-primary);
  border: 3px solid white;
  transition: background-color 0.2s ease-in-out;
}




.form-fields label {
    gap: 0.5em;
    display: flex;
    font-size: 0.8em;
    align-items: center;
    margin-bottom: 0.4em;
    border: 0px solid red;
    justify-content: flex-start;
    cursor: pointer;
}


#lock-all{
    transition: opacity 0.2s ease-in-out;
}

.locked {
    opacity : 0.3;
    cursor: not-allowed;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
}

select {
    border-right: 0.5em solid var(--color-primary) !important;
}
 

#submit-form-button {
    border: none;
    width: 100%;
    color: white;
    cursor: pointer;
    font-family: 'BOLD';
    padding: 0.5em 1.5em;
    transition: all 0.2s;
    border-radius: 0.2em;
    text-transform: uppercase;
    text-shadow: rgba(0, 0, 0, 0.5) 0 0.2em 0.5em;
    background-color: var(--color-primary);
    border-bottom: 2px solid transparent;
}

#submit-form-button:hover {
    border-bottom-color: white;
}

#submit-form-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.mrgtop {
    margin-top: 1.5em;
}

#meat {
    opacity: 0.7;
    color: var(--color-primary);
}

.infobox {
    border-radius: 3em;
    font-size: 0.75em;
    padding: 0.5em 3em;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    font-family: 'REGU';
    margin-bottom: 1em;
}

.mand::after {
    float: right;
    content: " *";
    color: var(--color-primary);
}

/* --- download form --- */

.download-pdf-form {
    display: flex;
    margin: 0 auto;
    color: black;
    padding: 1em 2em;
    border-radius: 0.5em;
    flex-direction: column;
    width: clamp(500px, 50%, 800px);
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.192);
    background-color: rgba(255, 255, 255, 0.8);
}

.download-pdf-form h2 {
    margin: 0 !important;
    padding: 0 !important;
}

.download-pdf-form .form-group {
    gap: 1em;
    display: flex;
    flex-direction: row;
    margin-bottom: 0.8em;
    justify-content: flex-start;
}
 
.download-pdf-form .form-fields {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
 
.download-pdf-form input[type="checkbox"] {
    background-color: white;
    border: 1px solid #666;
}

.download-pdf-form input[type="email"] {
    width: 100%;
    padding: 0.3em;
    border: 1px solid #666;
    border-radius: 0.2em;
    font-family: 'REGU';
}

.download-pdf-form button {
    margin: 0 auto;
    width: 50% !important;
    padding: 0.3em;
    border: 1px solid #666;
    border-radius: 0.2em;
    font-family: 'REGU';
}