.booking-form .button-loading {
    border: 1px solid #c4cdd5;
    cursor: default;
    text-shadow: none;
    color: transparent!important;
    position: relative;
    transition: border-color .2s ease-out
}

.booking-form .button-loading,
.booking-form .button-loading:active,
.booking-form .button-loading:focus,
.booking-form .button-loading:hover {
    color: transparent
}

.booking-form .button-loading:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    margin-top: -9px;
    margin-left: -9px;
    width: 18px;
    height: 18px;
    -webkit-animation: button-loading-spinner .7s linear infinite;
    animation: button-loading-spinner 1s linear infinite;
    border: 3px solid;
    border-color: #bb3e56 #8e2b86 transparent
}

.booking-form .required:after {
    content: " *";
    color: red
}

.booking-form .booking-message {
    margin: 0 0 20px;
    padding: 15px 30px 15px 15px;
    border-left: 5px solid #eee;
    border-radius: 0;
    display: block;
    width: 100%
}

.booking-form .booking-message.booking-success-message {
    background-color: #c0edf1;
    border-color: #58d0da;
    color: #000
}

.booking-form .booking-message.booking-error-message {
    background-color: #faeaa9;
    border-color: #f3cc31;
    color: #000
}

div.elem-group {
    margin: 20px 0;
}

div.elem-group.inlined {
    width: 49%;
    display: inline-block;
    float: left;
    margin-left: 1%;
}

label {
    display: block;
    padding-bottom: 10px;
}

input,
select,
textarea {
    border-radius: 2px;
    border: 2px solid #777;
    box-sizing: border-box;
    font-size: 1.25em;
    font-family: 'Nanum Gothic';
    width: 100%;
    padding: 10px;
}

div.elem-group.inlined input {
    width: 95%;
    display: inline-block;
}

textarea {
    height: 250px;
}

hr {
    border: 1px dotted #ccc;
}

@-webkit-keyframes button-loading-spinner {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

@keyframes button-loading-spinner {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}