.grd-offer-box {
    margin-top: 30px;
    padding: 22px 24px;
    border: 1px solid #d8d8d8;
    background: #ffffff;
    max-width: 720px;
    clear: both;
}

.grd-offer-title {
    font-size: 18px;
    font-weight: 700;
    color: #124c90;
    margin-bottom: 22px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 12px;
}

.grd-offer-step {
    margin-bottom: 28px;
}

.grd-offer-step-title {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 14px;
}

.grd-offer-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.grd-offer-row > label:first-child,
.grd-offer-destination-label {
    width: 150px;
    min-width: 150px;
    text-align: right;
    margin-bottom: 0;
    font-weight: 500;
}

.grd-offer-price-euros {
    width: 95px;
    height: 38px;
    text-align: center;
    border: 1px solid #cccccc;
}

.grd-offer-price-cents {
    width: 65px;
    height: 38px;
    text-align: center;
    border: 1px solid #cccccc;
}

.grd-offer-separator {
    font-size: 20px;
    line-height: 1;
}

.grd-offer-currency {
    font-size: 18px;
    font-weight: 600;
}

.grd-offer-tax-text {
    color: #777777;
    font-size: 13px;
}

.grd-offer-radio {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 12px;
    margin-bottom: 0;
    font-weight: 400;
}

.grd-offer-destination {
    flex: 1;
    min-width: 260px;
    height: 40px;
    border: 1px solid #cccccc;
    padding: 0 12px;
}

.grd-offer-actions {
    text-align: center;
    margin-top: 18px;
}

.grd-offer-button {
    background: #159447;
    color: #ffffff;
    border: 0;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.grd-offer-button:hover {
    background: #0f7e3a;
}

.grd-offer-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.grd-offer-message {
    margin-top: 16px;
    padding: 12px;
    text-align: center;
    border-radius: 3px;
}

.grd-offer-message.ok {
    background: #e8f7ed;
    color: #19733a;
    border: 1px solid #bfe6ca;
}

.grd-offer-message.error {
    background: #fff0f0;
    color: #b00020;
    border: 1px solid #f0c2c2;
}

@media (max-width: 768px) {
    .grd-offer-row {
        display: block;
    }

    .grd-offer-row > label:first-child,
    .grd-offer-destination-label {
        display: block;
        width: auto;
        min-width: 0;
        text-align: left;
        margin-bottom: 6px;
    }

    .grd-offer-destination {
        width: 100%;
        min-width: 0;
    }
}