:disabled {
    color: inherit;
    pointer-events: none;
}


:root {
    --container--width: 1440px;
}


a {
    color: inherit;
    text-decoration: none;
}


body {
    background-color: #F9C0C4;;
    color: var(--color--black);
    font-family: "Archivo", sans-serif;
    font-size: 16px;
    margin: 0;
}


button {
    cursor: pointer;
    border: 0;
    font: inherit;
    text-align: inherit;
    text-transform: inherit;
}


div[hidden] {
    display: none;
}


fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}


form {
    margin: 0 auto;
    max-width: 100%;
    width: var(--container--width);
    padding: 0 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}


header {
    box-shadow: 0 4px 70px 0 #EC999F;
}


html {
    line-height: 1.2;
}


img {
    display: block;
    max-width: 100%;
}


input[type="email"],
input[type="tel"],
input[type="text"] {
    background-color: #FFF;
    border: 1px solid #2CAFEC;
    border-radius: 16px;
    box-sizing: border-box;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    padding: 15px 11px 12px;
    width: 100%;
}


label {
    display: block;
}


legend {
    border: 0;
    padding: 0;
}



.body-inner {
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    row-gap: 40px;
}



.wrapper {
    height: 64px;
    margin: 0 auto;
    max-width: 100%;
    width: var(--container--width);
    padding: 0 16px;
    box-sizing: border-box;
}

.wrapper img {
    height: auto;
    position: relative;
    top: 24px;
    width: 280px;
}


.form-header {
    text-align: center;
}

.form-header .title {
    font-family: "Yellowtail", sans-serif;
    font-size: 56px;
    color: #2CAFEC;
    margin: 0 0 4px;
}

.form-header p {
    margin: 0;
}


.fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
}

.fields .form-header {
    text-align: center;
    grid-column-start: span 2;
}

.fd-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 16px;
}

.checkbox {
    grid-column-start: span 2;
    cursor: pointer;
}

.checkbox a {
    text-decoration: underline;
}

.field span:first-child,
legend {
    color: #2CAFEC;
    font-family: "Amatic SC", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.fd-fields .field span {
    display: block;
    padding-top: 4px;
    color: #0773A5;
}

.submit {
    padding-top: 8px;
}

.step-1-btn {
    border-radius: 16px;
    background: #2CAFEC;
    color: #FFF;
    font-family: "Amatic SC";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    padding: 5px 12px;
}


.options {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 16px;
}

.options .form-header {
    text-align: center;
    grid-column-start: span 6;
}

.options label {
    cursor: pointer;
    position: relative;
}

.options .prod-bd {
    box-shadow: 0 4px 70px 0 #EC999F;
    border-radius: 29px;
    padding: 40px 0 10px;
    text-align: center;
    display: block;
    position: relative;
    margin-bottom: 16px;
}

.options input {
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
}

.options input:checked + .outline {
    position: absolute;
    border: 5px dashed #fff;
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    top: 0;
    left: 0;
    border-radius: 29px;
}

.options .product {
    color: #2C1109;
    font-family: "Yellowtail";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    display: block;
    line-height: normal;
    margin-top: 8px;
}

.options .btn {
    border-radius: 35px;
    background: #2CAFEC;
    color: #FFF;
    font-family: "Amatic SC";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 0.8;
    padding: 5px 12px;
    display: block;
    text-align: center;
    position: relative;
}


.options .submit {
    display: flex;
    justify-content: center;
    grid-column-start: span 6;
    padding-top: 48px;
}


.step-2-btn {
    border-radius: 16px;
    background: #2CAFEC;
    color: #F9C0C4;
    font-family: "Amatic SC";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    padding: 4px 12px;
    background: #2C1109;
    box-shadow: 0 4px 10px 0 rgba(236, 153, 159, 0.82);
    position: relative;
}

.step-2-btn::after {
    border-bottom-color: #fff;
    border-left-color: #fff;
    border-top-color: #fff;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    border-right-color: transparent;
    border-style: solid;
    border-width: 2px;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    transform: scale(0);
}

.step-2-btn[_active] {
    color: transparent;
}

.step-2-btn[_active]::after {
    animation: loading-circle 0.8s linear infinite;
    transform: scale(1);
}


.footer {
    margin-top: auto;
}

.footer p {
    background: #2CAFEC;
    color: #fff;
    margin: 0;
    text-align: center;
    padding: 12px 16px 8px;
    font-size: 14px;
}

.footer a {
    text-decoration: underline;
}


.finish {
    margin: auto;
}



.grecaptcha-badge {
    visibility: hidden;
}


.form-submit-response p {
    text-align: center;
    color: #ef1f1f;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0;
}



@keyframes loading-circle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



@media (max-width: 819px) {
    .fields {
        grid-gap: 24px 16px;
    }

    .fd-fields {
        grid-gap: 8px;
    }


    .options {
        grid-gap: 10px;
    }


    .options .product,
    .options .btn {
        font-size: 24px;
    }
}


@media (max-width: 767px) {
    .options .form-header,
    .options .submit {
        grid-column-start: span 3;
    }

    .options {
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 24px 16px;
    }

    .options .submit {
        padding-top: 32px;
    }
}


@media (max-width: 599px) {
    .wrapper img {
        margin: 0 auto;
    }


    .fields {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }


    .checkbox {
        padding-top: 10px;
    }


    .options .form-header,
    .options .submit {
        grid-column-start: span 2;
    }

    .options {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 16px 8px;
    }
}