.cub-booking {
    max-width: 700px;
    margin: 40px auto;
}

.cub-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.cub-field {
    flex: 1;
}

.cub-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.cub-field input,
.cub-field select {
    width: 100%;
    height: 46px;
}

.cub-price {
    margin: 30px 0;
    font-size: 22px;
    font-weight: bold;
}

.cub-submit {
    text-align: center;
}

.cub-submit label {
    display: none;
    text-align: left;
    padding: 14px 20px;
    margin-bottom: 30px;
    background: #ccc;
    border-radius: 8px;
    color: #000;
    transition-duration: 1s;
}

.cub-submit label.alert-loading,
.cub-submit label.alert-success,
.cub-submit label.alert-danger {
    display: block;
}

.cub-submit label.alert-success {
    background: darkseagreen;
}

.cub-submit label.alert-danger {
    background: indianred;
}

[data-kubio] .cub-submit .button {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1px;
    text-decoration: none;
    color: rgba(var(--kubio-color-8), 1);
    background-color: rgba(var(--kubio-color-9), 1);
    border-top-color: rgba(var(--kubio-color-7), 1);
    border-top-width: 2px;
    border-top-style: solid;
    border-right-color: rgba(var(--kubio-color-7), 1);
    border-right-width: 2px;
    border-right-style: solid;
    border-bottom-color: rgba(var(--kubio-color-7), 1);
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-left-color: rgba(var(--kubio-color-7), 1);
    border-left-width: 2px;
    border-left-style: solid;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    text-align: center;
    box-shadow: 0px 0px 10px 2px rgba(var(--kubio-color-7), 1);
    justify-content: center;
    transition-duration: 1s;
}

[data-kubio] .cub-submit .button:hover {
    background-color: rgba(var(--kubio-color-10), 1);
    border-color: rgba(var(--kubio-color-7), 1);
}

@media (max-width: 768px) {
    .cub-row {
        flex-direction: column;
    }
}