:root {
    --wr-accent-color: #72b239;
}

body {
    font-family: 'Noto Sans', sans-serif;
    /*-webkit-touch-callout: none;*/
    /*-webkit-user-select: none;*/
    /*-moz-user-select: none;*/
    /*-ms-user-select: none;*/
    /*user-select: none;*/
}

body h1.entry-title {
    display: none;
}

section.wr-section {
    margin: 0 auto 50px auto;
    max-width: min(800px, 95%);
}

section.wr-section.thank-you {
    text-align: center;
    font-size: 1.5rem;
}

section.wr-section.thank-you a {
    text-decoration: none;
    padding: 10px;
}


.step-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    border: 1px solid lightgrey;
    border-radius: 5px;
    padding: 20px;

}

.step-labels p {
    text-align: center;
}

.step.current {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.step {
    display: none;
}

.step-name[data-skipped="true"], .step[data-skipped="true"] {
    display: none;
}

.step-name {
    display: block;
    position: relative;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-align: center;
}


.step-name.complete {
    color: var(--wr-accent-color, #72b239);
    cursor: pointer;
}

.step-name.current {
    color: var(--wr-accent-color, #72b239);
    font-size: 16px;
    cursor: pointer;
}

.step-name.current::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--wr-accent-color, #72b239);
    border-radius: 50%;
}

.step-name {
    color: #666;
    cursor: text;
}

.wr-section > .price-info.inner {
    border-radius: 5px;
    margin-top:10px;
    position: sticky;
    bottom: 0;
}

.wr-section > .form.inner {
    border-radius: 5px;
}

.wr-section > .inner {
    padding: 30px;
    box-shadow: 5px -5px 10px rgb(0, 0, 0, 0.15);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.form-banner, .price-info {
    background-color: transparent;
    background-image: linear-gradient(120deg, #2EB546 0%, #159774 100%);
    text-align: left;
    color: #fff;
}

.form-wrapper form .price-info {
    padding: 20px;
}

.price-info .transfer-details {
    padding-bottom: 20px;
    border-bottom: 2px inset rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.price-info .transfer-detail-title {
    border-bottom: 1px inset rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    flex: 1 1 100%;
}


.price-info .detail-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.price-info .detail {
    flex: 40% 1 1;
}

.price-info .detail .title {
    font-weight: 300;
}

.price-info .detail .value {
    font-weight: 700;
}

.price-info .detail.trip-fee .value::before {
    content: '€';
}

.price-info .detail.trip-fee .value::after {
    content: ' (Euros)';
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.wr-section .form select, .wr-section .form input {
    width: 100%;
    display: inline-block;
    padding: 12px 25px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid lightgrey;
    font-size: 1em;
    font-family: inherit;
    background: white;
}

.wr-section .form label {
    font-size: 14px;
    font-weight: 600;
    margin-left: 5px;
}

.wr-section .form label .required-symbol {
    color: red;
    font-weight: 700;
    vertical-align: super;
    font-size: smaller;
}

.wr-section .form label.required::after {
    content: " *";
    color: red;
}

.step-nav {
    display: flex;
    justify-content: space-between;
}

.wr-button:hover {
    border: 1px solid #fff;
    color: #fff;
    background-color: var(--wr-accent-color);

}

.wr-button {
    min-width: 110px;
    border: 1px solid var(--wr-accent-color);
    color: var(--wr-accent-color);
    font-weight: 600;
    transition: all 0.3s linear;
}

.wr-button:focus {
    background-color: var(--wr-accent-color);
    color: #fff;
}

.wr-button[disabled] {
    border: 1px solid #999;
    color: #999;
    background-color: #fff;
    cursor: not-allowed;
    pointer-events: none;
}

.form-field input.wr-submit {
    background-color: var(--wr-accent-color);
    color: #fff;
    margin: auto;
    width: auto;
}

.hidden {
    display: none !important;
}

@media (max-width: 767px) {
    .price-info .detail {
        flex-basis: 100%;
    }

    .step-nav {
        flex-direction: column;
        gap: 10px;
    }

    .step-labels {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
        align-items: center;
        border: 1px solid lightgrey;
        border-radius: 5px;
        padding: 5px;

    }
}

