.experience-form {
    background: var(--ln-body-bg);
    margin-top: var(--ln-navbar-height-sm);
}

.experience-form .header-wrapper {
    width: 100%;
    display: flex;
    height: 103px;
    position: relative;
    flex-direction: column;
    justify-content: center;
    background: var(--ln-color-dark-gray);
    border: 2px solid var(--ln-color-gray);
    border-left: none;
    border-right: none;
}

.experience-form .headline {
    margin: 0;
    text-align: center;
}

.experience-form .subheadline {
    margin: 0 0 26px;
    text-align: left;
}

.experience-form .form-input-wrapper + .subheadline {
    margin-top: 109px;
}

.experience-form .venue-btn {
    width: 100%;
}

.experience-form .venue-btn.is-hidden {
    display: none;
}

.experience-form .submit-btn {
    height: 44px;
    min-width: 128px;
}

.experience-form .form-input-label {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--ln-color-white);
}

.experience-form .form-input-label.has-margin {
    margin-top: 32px;
}

.experience-form .form-wrapper {
    padding-top: 54px;
}

.experience-form .form-separator {
    height: 4px;
    width: 100%;
    margin-top: 48px;
    background: var(--ln-color-gray);
}

.experience-form .opt-in-link {
    margin-left: 0.1em;
}

.experience-form .form-input-wrapper-select {
    position: relative;
}

.experience-form .form-input-wrapper-select::after {
    top: 32px;
    right: 24px;
    content: '';
    width: 15px;
    height: 10px;
    position: absolute;
    pointer-events: none;
    background: url('./images/arrow-select.svg') no-repeat;
}

.experience-form .form-input-wrapper-select option,
.experience-form .form-input-wrapper-select optgroup {
    font-size: 20px;
    background-color: var(--ln-color-black);
}

.experience-form .form-input-wrapper .form-control {
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    width: 100%;
    height: 72px;
    border: none;
    border-radius: 0;
    text-align: left;
    color: var(--ln-color-white);
    background-color: transparent;
    border-bottom: 2px solid var(--ln-color-white);
}

.experience-form .form-input-wrapper .form-control:focus {
    outline: none;
    box-shadow: none;
}

.experience-form .check-group-wrapper.has-margin {
    margin-top: 40px;
}

.experience-form .check-group-wrapper + .check-group-wrapper {
    margin-top: 8px;
}

.experience-form .form-check {
    display: flex;
    min-width: 35px;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.experience-form .form-check-input {
    -moz-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 0;
    margin: 0 0 0 5px;
    position: relative;
    display: inline-block;
    background-color: transparent !important;
    border: 2px solid var(--ln-color-white) !important;
}

.experience-form .form-check-input:checked {
    background: none !important;
}

.experience-form .form-check-input:checked::after,
.experience-form .form-check-input:checked::before {
    top: -1px;
    left: 8px;
    width: 2px;
    content: '';
    height: 20px;
    position: absolute;
    background-color: var(--ln-color-white) !important;
}

.experience-form .form-check-input:checked::after {
    transform: rotate(45deg);
}

.experience-form .form-check-input:checked::before {
    transform: rotate(-45deg);
}

.experience-form .check-group-wrapper .form-check {
    margin: 0;
    padding: 0;
}

.experience-form .check-group-wrapper .form-check-input {
    margin: 0 20px 0 0;
}

.experience-form .form-check-label {
    margin-right: auto;
}

.experience-form .button-wrapper {
    margin-top: 56px;
    text-align: center;
}

.experience-form .select-venue-fields {
    display: none;
}

.experience-form .select-venue-fields.is-visible {
    display: block;
}

.experience-form .venues-wrapper {
    display: none;
    margin-top: 38px;
}

.experience-form .venues-wrapper.is-visible {
    display: block;
}

.experience-form .venues-row {
    display: flex;
    flex-wrap: wrap;
    margin-top: -3px;
}

.experience-form .venue-item,
.experience-form .venue-item-result {
    width: 100%;
    height: 105px;
    display: flex;
    flex: 0 0 auto;
    margin-top: 3px;
    max-width: 100%;
    position: relative;
    flex-direction: row;
}

.experience-form .venue-item-result {
    margin: 0;
    display: none;
}

.experience-form .venue-item-result.is-visible {
    display: flex;
}

.experience-form .venue-media-container {
    width: 140px;
    height: 100%;
    position: relative;
}

.experience-form .venue-media-container::before {
    top: 50%;
    left: 50%;
    opacity: 0;
    z-index: 1;
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    transform: translate(-50%, -50%);
    background: url('./images/plus-icon.svg') no-repeat;
    transition: opacity var(--ln-transition-duration-sm);
}

.experience-form .venue-media-container::after {
    top: 7px;
    left: 8px;
    opacity: 0;
    content: '';
    position: absolute;
    width: calc(100% - 16px);
    height: calc(100% - 14px);
    background-color: rgba(0, 0, 0, 0.38);
    border: 4px solid var(--ln-color-white);
    transition: opacity var(--ln-transition-duration-sm);
}

.experience-form .venue-item:hover .venue-media-container::before,
.experience-form .venue-item:hover .venue-media-container::after,
.experience-form .venue-item:focus .venue-media-container::before,
.experience-form .venue-item:focus .venue-media-container::after {
    opacity: 1;
}

.experience-form .venue-media {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.experience-form .venue-media-label {
    top: 58%;
    left: 50%;
    opacity: 0;
    z-index: 1;
    position: absolute;
    transform: translateX(-50%);
    transition: opacity var(--ln-transition-duration-sm);
}

.experience-form .venue-info {
    flex: 1;
    height: 100%;
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 42px 18px 18px;
    background: var(--ln-color-white);
}

.experience-form .venue-info-headline {
    margin: 0;
}

.experience-form .venue-info-body {
    margin: 0;
    line-height: 20px;
    font-size: calc(min(20px, 4.83vw));
}

.experience-form .venue-info-address {
    margin: 0;
    white-space: pre;
}

.experience-form .clear-venue-btn {
    top: 50%;
    right: 10px;
    width: 32px;
    height: 44px;
    position: absolute;
    transform: translateY(-50%);
    background: url('./images/cross.svg') no-repeat;
    background-position: center;
}

.experience-form .clear-venue-btn-label {
    padding-top: 32px;
}

.experience-form .more-info-url {
    top: 50%;
    z-index: 2;
    right: 14px;
    width: 32px;
    height: 44px;
    position: absolute;
    text-decoration: none;
    transform: translateY(-50%);
    background: url('./images/arrow-right.svg') no-repeat;
    background-position: center;
}

.experience-form .more-info-url:focus,
.experience-form .more-info-url:hover {
    color: var(--ln-color-black);
}

.experience-form .form-submit-status {
    display: none;
    margin-top: 38px;
    text-align: center;
}

.experience-form .form-submit-content {
    display: none;
    max-width: 640px;
    text-align: center;
    margin: 140px auto 90px;
}

.experience-form .invalid-feedback {
    color: inherit;
    display: block;
    font-size: inherit;
    margin-bottom: 15px;
}

.experience-form .was-validated .form-control:invalid {
    color: var(--ln-color-danger);
    border-color: var(--ln-color-danger);
}

.experience-form .was-validated .form-check-input:invalid + .form-check-label,
.experience-form .was-validated .form-control:invalid::placeholder {
    color: var(--ln-color-danger);
}

.experience-form .was-validated .form-control:valid,
.experience-form .was-validated .form-control:invalid {
    background: none;
    box-shadow:  none;
    border-color: var(--ln-color-white);
}

.experience-form .was-validated .form-check-input:valid ~ .form-check-label,
.experience-form .was-validated .form-check-input.is-valid ~ .form-check-label {
    color: var(--ln-color-white);
}

.experience-form .success-headline {
    margin: 0;
}

.experience-form .success-body {
    margin: 28px 0 0;
}

.experience-form .success-cta {
    margin-top: 30px;
}

.experience-form .is-hide {
    display: none;
}

.experience-form .venue-name-selection {
    height: 0;
    visibility: hidden;
}

.experience-form .form-floating > .form-control:focus ~ label,
.experience-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    opacity: 1;
    transform: scale(.5) translateY(-0.5rem) translateX(0.85rem);
}

.experience-form .form-input-wrapper.text-box {
    margin-top: 24px;
}

.experience-form .form-input-wrapper.text-box .form-control {
    height: 128px;
    max-height: 128px;
    min-height: 128px;
}

@media (min-width: 768px) {
    .experience-form .header-wrapper {
        height: 185px;
    }

    .experience-form .venues-row {
        margin-top: -4px;
    }

    .experience-form .venue-item {
        width: 50%;
        margin-top: 4px;
        padding-left: 2px;
        padding-right: 2px;
    }
}

@media (min-width: 992px) {
    .experience-form {
        margin-top: var(--ln-navbar-height-lg);
    }

    .experience-form .subheadline {
        margin-bottom: 45px;
    }

    .experience-form .select-venue-headline {
        margin-top: 58px;
    }

    .experience-form .venue-btn.is-hidden {
        /*display: block;*/
    }

    .experience-form .venues-wrapper {
        margin-top: 52px;
        max-width: 960px;
        margin-left: auto;
        margin-right: auto;
        padding-right: calc(var(--ln-module-container-gutter) * .5);
        padding-left: calc(var(--ln-module-container-gutter) * .5);
    }

    .experience-form .venues-row {
        margin-top: -20px;
        margin-left: -10px;
        margin-right: -10px;
    }

    .experience-form .venue-item {
        height: auto;
        margin-top: 20px;
        padding-left: 10px;
        padding-right: 10px;
        width: 33.333333%;
        flex-direction: column;
    }

    .experience-form .venue-item-result {
        width: 100%;
        height: 140px;
    }

    .experience-form .venue-item .venue-info {
        width: 100%;
        height: 85px;
    }

    .experience-form .venue-item-result .venue-info {
        padding: 27px 74px 27px 24px;
    }

    .experience-form .venue-item-result .venue-media-container {
        width: 195px;
        height: 100%;
    }

    .experience-form .venue-item .venue-media-container {
        height: 0;
        width: 100%;
        padding-top: 77.2727%;
    }

    .experience-form .venue-item .venue-media-container::after {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .experience-form .venue-item:hover .venue-media-label {
        opacity: 1;
    }

    .experience-form .form-input-wrapper + .subheadline {
        margin-top: 179px;
    }

    .experience-form .submit-btn {
        min-width: 160px;
    }

    .experience-form .form-wrapper {
        padding-top: 87px;
    }

    .experience-form .form-input-label.has-margin {
        margin-top: 0;
    }

    .experience-form .success-cta {
        margin-top: 82px;
    }

    .experience-form .form-submit-content {
        margin-bottom: 132px;
    }

    .experience-form .clear-venue-btn {
        right: 24px;
        width: 44px;
    }

    .experience-form .more-info-url {
        top: 14px;
        right: 14px;
        width: auto;
        height: auto;
        transform: none;
        background: none;
    }
}

@media (min-width: 1200px) {
    .experience-form .venues-wrapper {
        max-width: 1140px
    }

    .experience-form .venue-item {
        width: 25%;
    }
}

@media (min-width: 1400px) {
    .experience-form .venues-wrapper {
        max-width: 1320px
    }
}
