.jura {
    font-family: "Jura", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body {
    accent-color: #ff6a00;
    margin: 0;
    padding: 0;

    background-color: #f6f6f6;
}

.lottery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: #f6f6f6;
    color: #1c1c1c;
}

.lottery-logo {
    width: 20rem;
    margin-top: 1.2em;
    margin-bottom: 2em;
}

.lottery-welcome-text {
    width: 20rem;

    text-align: center;
    user-select: none;
}

.lottery-info-dropdown-button {
    margin-top: 1em;
    padding: .5em 1.1em .5em 1.1em;

    border: none;
    border-radius: 8px;

    font-size: 14pt;
    font-weight: normal;
    text-align: center;

    background-color: #1c1c1c;
    color: #f6f6f6;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    z-index: 1;

    width: 7em;
    cursor: pointer;
    transition: all .3s ease;
    overflow: hidden;
}

.lottery-info-dropdown-button.expanded {
    width: 20rem;
    height: auto;
}

.lottery-info-dropdown-icon {
    width: 1em;
    transform: translate(.2em, .07em) rotate(-90deg);
    transition: all .3s ease;
}

.lottery-info-dropdown-icon.expanded {
    width: 1em;
    transform: translate(.2em, .07em) rotate(0deg);
}

.lottery-info-text-container {
    font-size: 14pt;

    margin: 0;
    padding: 0 .5em .5em .5em;

    width: 0;
    height: 0;

    overflow: hidden;
    transition: all .3s ease;
}

.lottery-info-text-container.expanded {
    width: 19.5rem;
    height: 20em;
}

.lottery-info-text {
    text-align: justify;
    user-select: none;
}

/* Form */

.lottery-form {
    display: flex;
    flex-direction: column;
    margin-top: 1em;
    align-items: center;
}

.lottery-form-entry {
    display: flex;
    flex-direction: column;

    font-size: 14pt;
    width: 100%;
}

.lottery-form-entry>.input-label {
    position: relative;
    transform: translate(2em, .5em);

    width: fit-content;
    padding-left: .5em;
    padding-right: .5em;

    background-color: #f6f6f6;
    color: #1c1c1c;

    font-size: 10pt;
    font-weight: 1000;
}

input {
    padding: .5em 0em .5em .5em;

    background-color: #f6f6f6;

    border-width: 30px;
    border-color: #1c1c1c;
    border-style: solid;
    border-radius: 8px;
    border-width: .15em;

    font-size: 14pt;
    font-family: jura;
    font-weight: 500;

    user-select: none;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
    border-color: #ff6a00;
    outline: none;
    box-shadow: 0 0 4px #ff6a00;
}

#submit {
    background-color: #1c1c1c;
    color: #f6f6f6;
    margin-bottom: 1em;
}

#submit:active {
    background-color: #FF6A00;
}

::placeholder {
    color: #1c1c1c96;
    font-size: 12pt;
    font-weight: 300;
    font-family: jura;
}

#entry_personal_data {
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    font-size: 10pt;
    padding: .5em 0 1.5em 0;
}

/* Overlay */

.overlay {
    display: flex;
    flex-direction: column;
    align-items: center;

    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    backdrop-filter: blur(1.5px);
}

.overlay-popup {
    margin-top: 20em;
    padding: 1em 1em 1em 1em;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: #f6f6f6;

    border-radius: 8px;
    border-color: #ff6a00;
    outline: none;
    box-shadow: 0 0 4px #ff6a00;

    user-select: none;
}

.overlay-text {
    margin: .5em 0 1.5em 0;

    color: #1c1c1c;

    text-align: center;
    font-family: jura;
    font-weight: 500;
}

.overlay-button {
    padding: .5em 1em;

    border-radius: 8px;

    background: #1c1c1c;
    color: #f6f6f6;

    width: 60%;

    text-align: center;
    text-decoration: none;
    font-family: jura;
    font-weight: 700;

    cursor: pointer;
}