.clear {
    clear: both !important;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

div[class*="grid-left"] {
    float: left;
}

div[class*="grid-right"] {
    float: right;
}

.grid-container {
    width: 100%;
    display: table;
    position: relative;
}

.grid-left-5 {
    width: 5%;
}

.grid-left-10 {
    width: 10%;
}

.grid-left-15 {
    width: 15%;
}

.grid-left-20 {
    width: 20%;
}

.grid-left-25 {
    width: 25%;
}

.grid-left-30 {
    width: 30%;
}

.grid-left-35 {
    width: 35%;
}

.grid-left-40 {
    width: 40%;
}

.grid-left-45 {
    width: 45%;
}

.grid-left-50 {
    width: 50%;
}

.grid-left-55 {
    width: 55%;
}

.grid-left-60 {
    width: 60%;
}

.grid-left-65 {
    width: 65%;
}

.grid-left-70 {
    width: 70%;
}

.grid-left-75 {
    width: 75%;
}

.grid-left-80 {
    width: 80%;
}

.grid-left-85 {
    width: 85%;
}

.grid-left-90 {
    width: 90%;
}

.grid-left-95 {
    width: 95%;
}

.grid-right-5 {
    width: 5%;
}

.grid-right-10 {
    width: 10%;
}

.grid-right-15 {
    width: 15%;
}

.grid-right-20 {
    width: 20%;
}

.grid-right-25 {
    width: 25%;
}

.grid-right-30 {
    width: 30%;
}

.grid-right-35 {
    width: 35%;
}

.grid-right-40 {
    width: 40%;
}

.grid-right-45 {
    width: 45%;
}

.grid-right-50 {
    width: 50%;
}

.grid-right-55 {
    width: 55%;
}

.grid-right-60 {
    width: 60%;
}

.grid-right-65 {
    width: 65%;
}

.grid-right-70 {
    width: 70%;
}

.grid-right-75 {
    width: 75%;
}

.grid-right-80 {
    width: 80%;
}

.grid-right-85 {
    width: 85%;
}

.grid-right-90 {
    width: 90%;
}

.grid-right-95 {
    width: 95%;
}

a {
    color: #000000;
    position: relative;
    text-decoration: underline;
}

a.link:active {
    top: 1px;
}

.text-m {
    font-size: 14px;
}

.text-lg {
    font-size: 16px;
}

.text-bold {
    font-weight: bold;
}

.text-normal {
    font-weight: normal;
}

.text-up {
    text-transform: uppercase;
}

.text-white {
    color: #ffffff;
}

.text-red {
    color: #ff0000;
}

.btn {
    border: none;
    margin: 0px;
    padding: 10px 15px;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn:active {
    top: 1px;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
}

.btn-lg {
    padding: 10px 13px;
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-primary {
    color: #ffffff;
    background: #000000;
}

.btn-red {
    color: #ffffff;
    background: #fe0000;
}

.btn-no-bg {
    color: #000000;
    background-color: transparent;
}

.tab {
    width: 100%;
    padding: 0px;
}

.tab-nav {
    display: table;
    border-bottom: 1px solid #4f413c;
}

.tab-nav > li {
    display: inline-block;
    background: #f2f2f2;
    float: left;
    text-align: center;
    margin-right: 1px;
    line-height: 40px;
    cursor: pointer;
    letter-spacing: 1px;
    font-size: 14px;
    transition: background-color ease 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.tab-nav > li:hover {
    background: #e5e5e5;
}

.tab-nav > li:last-child {
    margin-right: 0px;
}

li[data-status="tab-active"], li[data-status="tab-active"]:hover {
    background-color: #000000;
    color: #ffffff;
    cursor: default;
}

.tab-content {
    position: relative;
    display: table;
    width: 100%;
}

.tab-content > li {
    display: block;
}

li[data-status="tab-content-active"] {
    display: block !important;
}

input[type="text"], input[type="password"] {
    padding: 0px 15px;
    height: 34px;
    line-height: 34px;
    outline: none;
    border: 1px solid #b5b5b5;
}

input[type="text"]:focus, input[type="password"]:focus {
    border-color: #000000;
}

textarea {
    padding: 10px 15px;
    height: 34px;
    line-height: 14px;
    outline: none;
    border: 1px solid #b5b5b5;
    resize: vertical;
}

textarea:focus {
    border-color: #000000;
}

.modal {
    visibility: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 1200;
}

.modal-backdrop {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0;
}

.modal-dialog {
    width: 700px;
    position: fixed;
    margin-left: -350px;
    top: -100%;
    left: 50%;
    z-index: 120;
    opacity: 0;
    -webkit-box-shadow: 0 0px 8px rgba(0, 0, 0, .5);
    box-shadow: 0 0px 8px rgba(0, 0, 0, .5);
    border: 1px solid #ffffff;
}

.modal-header {
    height: 40px;
    line-height: 40px;
    background: #000000;
    padding: 0px 15px;
    color: #ffffff;
}

.modal-header > h3 {
    float: left;
    font-weight: bold;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 93%;
}

.modal-header span {
    font-size: 20px;
    float: right;
    cursor: pointer;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.modal-header [data-icon="p"] {
    position: relative;
    top: 10px;
    left: 5px;
}

.modal-warning {
    background: #f1c40f;
    line-height: 35px;
    padding: 0px 15px;
    color: #ffffff;
}

.modal-content {
    position: relative;
    background: #ffffff;
    width: 100%;
    border: 10px solid #ffffff;
    padding-bottom: 15px;
    overflow-y: auto;
}

.modal-content h3 {
    font-weight: normal;
    margin-bottom: 10px;
    line-height: 18px;
}

.modal-footer {
    text-align: right;
    padding: 6px 15px;
    background: #eeeeee;
}

.ui-slider {
    position: relative;
    text-align: left;
}

.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    cursor: pointer;
    -ms-touch-action: none;
    touch-action: none;
}

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit;
}

.ui-slider-horizontal {
    height: 4px;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -6px;
    margin-left: -8px;
}

.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}

.ui-slider-vertical {
    width: .8em;
    height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
    left: -.3em;
    margin-left: 0;
    margin-bottom: -.6em;
}

.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
    bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
    top: 0;
}

#confirm-text {
    margin-top: 70px;
}

#confirm-text span:first-child {
    font-size: 24px;
    vertical-align: middle;
}

#loadingContent {
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1100;
}

.loading-spin {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: 1200;
    border-top-color: rgba(255, 255, 255, 0.75);
    border-bottom-color: rgba(255, 255, 255, 0.75);
    -webkit-animation-name: spinnerRotate;
    -webkit-animation-duration: 0.75s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spinnerRotate;
    -moz-animation-duration: 0.75s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spinnerRotate;
    -ms-animation-duration: 0.75s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
}

.loading-status {
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 2px;
    font-size: 16px;
    width: 100%;
    text-align: center;
    top: 50%;
    position: fixed;
    margin-top: 60px;
}

@-webkit-keyframes spinnerRotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spinnerRotate {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@-ms-keyframes spinnerRotate {
    from {
        -ms-transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
    }
}


/* Booking Status Color */
.book-status-pending {
     color: rgba(52, 152, 219, 1);
 }

.book-status-confirm {
    color: rgba(46, 204, 113, 1);
}

.book-status-alternate-offer {
    color: rgba(142, 68, 173, 1);
}

.book-status-amend-request {
    color: rgba(230, 126, 34, 1);
}

.book-status-waiting-charge-balance {
    color: rgba(241, 196, 15, 1);
}

.book-status-cancel {
    color: rgba(231, 76, 60, 1);
}

.book-status-cc-declined-deposit {
    color: rgba(0, 128, 128, 1);
}

.book-status-cc-declined-balance {
    color: rgba(22, 160, 133, 1);
}

.book-status-fully-booked {
    color: rgba(52, 73, 94, 1);
}

.book-status-no-show {
    color: rgba(252, 55, 104, 1);
}
.charge-type-charge, .charge-type-refund, .charge-type-non-refund {
    font-weight: bold;
}