.tour-order {

}

.tour-order form {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.tour-order .css-tour-title {
    text-align: center;
    
    font-size: 1.5em;
}

.tour-order form input {
    padding: 5px 10px;
    border-radius: 3px;
    border: solid 1px rgba(94, 94, 94, 0.81);
}

.tour-order form .form-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    margin-top: 10px;
}

.tour-order form .css-form-label {
    color: #5e5e5e;
    font-size: 0.9em;

    margin-bottom: 0;
}

.tour-order form .form-row p,
.tour-order form .form-row input {
    width: 48%;
}

.tour-order form button {
    height: 35px;
    margin-top: 10px;
    border-radius: 3px;
    padding-right: 8px;
    padding-left: 8px;
    border: solid 1px #ffffff;
    background-image: linear-gradient(to top, #ee5643, #fa9168);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s all;
    cursor: pointer;
}

.tour-order > form button:hover {
    background: #de4f4f;
}

.tour-order > form button span {
    color: white;
    font-weight: bold;
    text-transform: none;
    font-size: 0.8em;
    text-decoration: none;
    transition: .5s all;
}