.checkinn-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.checkinn-title {
    margin: 0 0 48px;
}
.checkinn-form__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.checkinn-form__inner .input-container {
    margin: 0;
}
.checkinn-form__inner .label {
    margin: 0 0 12px;
}
.checkinn-form .field--date .date-input + label {
    color: var(--text_pr);
}
.checkinn-form__inner .checkinn-form__submit {
    width: 100%;
    max-width: 100%;
    min-width: auto;
}
.checkinn-result {
    display: flex;
    align-items: center;
    color: var(--text_pr);
}
.checkinn-result.success {
    color: var(--success-fill);
}
.checkinn-result.error {
    color: var(--error-fill);
}
.checkinn-info__block {
    position: relative;
    padding: 24px 28px;
    margin: 0 0 20px;
    border-radius: 20px;
    background-color: var(--gray_3);
}
.checkinn-info__image {
    position: absolute;
    right: 0;
    bottom: -22%;
    width: 85px;
    height: 85px;
}
.checkinn-info__title {
    margin:  0 0 8px;
}
.checkinn-info__button {
    display: flex;
    justify-content: center;
}

.checkinn-details__title {
    color: var(--text_pr);
    margin: 0 0 20px;
}
.checkinn-details__text {
    color: var(--text_sec);
}
.checkinn-details__header {
    margin: 0 0 40px;
    max-width: 754px;
}
.checkinn-details__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.checkinn-details__blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.checkinn-details__block {
    padding: 24px 28px;
    border-radius: 20px;
    color: var(--text_sec);
}
.checkinn-details__block.block--blue {
    background-color: var(--blue_4);
}
.checkinn-details__block.block--gray {
    background-color: var(--gray_3);
}
.checkinn-details__image-wrapper {
    display: flex;
    justify-content: center;
}
.checkinn-details__image-wrapper img {
    width: 463px;
}

.checkinn-payments__wrapper {
    padding: 32px 46px 32px 88px;
    background-color: var(--blue_4);
    border-radius: 30px;
    display: flex;
    align-items: stretch;
    gap: 56px;
}
.checkinn-payments__content {
    flex: 0 0 calc(45% - 28px);
}
.checkinn-payments__title {
    margin: 0 0 12px;
    color: var(--text_pr);
}
.checkinn-payments__text {
    margin: 0 0 48px;
    color: var(--text_sec);
}
.checkinn-payments__image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 calc(55% - 28px);
    margin: -32px -40px -32px 0;
    padding: 32px 0 32px;
}
.checkinn-payments__image-wrapper img {
    max-width: 432px;
    height: auto;
    max-height: 100%;
    aspect-ratio: 432 / 362;
    border-radius: 22px;
    object-fit: cover;
}

.service-selection .wpcf7-list-item label {
    align-items: center !important;
}


@media (max-width: 1024px) {
    .checkinn-layout {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .checkinn-form__inner {
        display: flex;
        flex-direction: column;
    }
    .checkinn-details__content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .checkinn-payments__wrapper {
        display: flex;
        flex-direction: column;
        padding: 24px;
        gap: 24px;
    }
    .checkinn-payments__image-wrapper {
        margin: 0;
        padding: 0;
        justify-content: center;
    }
    .checkinn-payments__image-wrapper img {
        aspect-ratio: 287 / 194;
        max-width: 100%;
        border-radius: 16px;
    }
    .checkinn-payments__button {
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 440px) {
    .checkinn-details__image-wrapper img {
        width: 100%;
    }
    .checkinn-info__image {
        display: none;
    }
    .checkinn-result {
        font-size: 15px;
    }
}