/* Your styles here */
:root {
    --cream: #e8e4c9;
    --green: #2b4424;
}

@font-face {
    font-family: 'sansnova';
    src: url(../fonts/sansnova-medium.woff2);
    font-weight: normal;
}

@font-face {
    font-family: 'sansnova';
    src: url(../fonts/sansnova.woff2);
    font-weight: bold;
}

@font-face {
    font-family: 'sansmtstd';
    src: url(../fonts/sansmtstd-light.woff2);
    font-weight: normal;
}

@font-face {
    font-family: 'Gill Sans Light';
    src: url(../fonts/gillsansmtstd-light-webfont.woff2);
    font-weight: 300;
    font-weight: normal;
}

@font-face {
    font-family: 'Gill Sans Book';
    src: url(../fonts/gillsansnova-book-webfont.woff2);
    font-weight: 400;
    font-weight: normal;
}

@font-face {
    font-family: 'Gill Sans Medium';
    src: url(../fonts/gillsansnova-medium-webfont.woff2);
    font-weight: 500;
    font-weight: normal;
}

@font-face {
    font-family: 'eirlys';
    src: url(../fonts/eirlys-regular.woff2);
    font-weight: normal;
}

body {
    background-color: var(--cream);
    font-family: 'Gill Sans Light', sans-serif;
    line-height: 26px;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.counters {
    width: 100%;
    max-width: 900px;
    perspective: 800px;
    color: var(--green);
    font-size: 13px;
}

@media screen and (max-width: 600px) {
    .counters {
        font-size: 2.5vw;
    }
}

.state-container {
    width: 100%;
    max-width: 900px;
    perspective: 800px;
    margin-inline: auto;
    display: flex;
    margin-block: 16px;
}

.state-center-container {
    margin-block: 24px;
    width: 100%;
    margin-inline: 32px;
    text-align: center;
}

.state-center-container h1 {
    font-family: 'eirlys', sans-serif;
    color: var(--green);
    font-size: 48px;
    margin: 0;
    font-weight: normal;
    line-height: 56px;
}

.state-center-container p {
    color: var(--green);
}

.state-center-container button {
    font-family: 'Gill Sans Book', sans-serif;
    color: var(--cream);
    border: none;
    background-color: var(--green);
    padding: 12px;
    min-width: 100px;
}

.static-card-stack img {
    height: 190px;
    width: 120px;
    border-radius: 12px;
}

.formContainer input[type='text'],
.formContainer select,
.claimLink input {
    background-color: var(--cream);
    color: var(--green);
    border: solid 2px var(--green);
    font-family: 'Gill Sans Light', serif;
    padding: 11px 10px 7px 10px;
}

.formContainer input[type='text']::placeholder {
    color: #1f4229;
    font-family: 'Gill Sans Light', serif;
}

.inputContainer label {
    display: none;
}

.buttonContainer {
    margin-inline: auto;
    text-align: center;
}

.buttonContainer button {
    font-family: 'Gill Sans Book', sans-serif;
    color: var(--cream);
    border: none;
    background-color: var(--green);
    padding: 12px;
    min-width: 100px;
    font-size: 13px;
}

.inputContainer .checkboxContainer label {
    display: block;
}

.formContainer .checkboxContainer > a {
    border: solid 2px var(--green);
    background-color: var(--cream);
}

.formContainer .checkboxContainer.checked > a i {
    color: var(--green);
}

.formContainer .checkboxContainer label {
    font-size: 12px;
    color: var(--green);
    margin-left: 16px;
    line-height: 1.3;
}

.mandatory-fields {
    font-size: 12px;
    margin-block: 0;
}

form {
    width: 100%;
    max-width: 400px;
}

@media only screen and (max-width: 600px) {
    .static-card-stack-top {
        display: none;
    }

    .state-container {
        flex-direction: column;
        align-items: center;
    }
}

.copyCode {
    border-radius: 8px;
    background: #cf172b;
    position: relative;
    display: inline-block;
    padding: 8px;
    color: #fff;
    outline: none;
    font-size: 1em;
    text-decoration: none;
    border: none;
}
.claimLink {
    width: 100%;
    max-width: 400px;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 100%;
    background-color: var(--green);
    color: var(--cream);
    text-align: center;
    border-radius: 6px;
    padding: 6px 5px 4px 5px;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    opacity: 0;
    transition: opacity 0.3s;
    left: 0;
    box-sizing: border-box;
}

.tooltip .tooltiptext::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--green) transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    z-index: 3;
}

.main button {
    cursor: pointer;
}

.formContainer .field.field_email {
    margin-top: -10px;
}
