body {
    background: #f5f5f5;
}

label {
    cursor: pointer;
}

input:focus, select:focus {
    outline: none !important;
    border: 1px solid #ececec !important;
    border-top-width: 3px !important;
    border-left: none !important;
    box-shadow: none !important;
}

input, select {
    outline: none !important;
    border: 1px solid #ececec !important;
    border-top-width: 3px !important;
    border-left: none !important;
    box-shadow: none !important;
}

#search-container {
    padding: 4px 10px;
    /*margin: -100px 0px;
        min-height: 435px;*/
}

.nav-tabs i {
    margin: 0px 10px 0px 0px;
}

.tab-content {
    background-color: white;
    padding: 25px;
    padding-bottom: 20px;
    border: 1px solid #dddddd;
    border-top: none;
    box-shadow: 0px 4px 14px 0px #cacaca;
}

.addon-icon {
    background: none;
    border: 1px solid #ececec;
    border-right: none;
    border-top: 3px solid #ececec;
}

.input-group .form-control {
    border-left: none;
}

.tit-input-error, .tit-input-error:focus {
    border-color: #ff4136 !important;
    border-width: 1px;
    border-top-width: 3px;
}

.tit-input-error-icon {
    background: #ff4136;
    color: #fff;
    border-color: #ff4136;
}

.tit-input-warning, .tit-input-warning:focus {
    border-color: #ff851b !important;
    border-width: 1px;
    border-top-width: 3px;
}

.tit-input-warning-icon {
    border-color: #ff851b !important;
}

.bootstrap-datetimepicker-widget .prev, .datepicker .prev, .bootstrap-datetimepicker-widget .next, .datepicker .next {
    position: inherit;
    padding: 0px;
    float: none;
    background: inherit;
}

.select2-container {
    height: 34px;
    font-size: 12px;
}

.select2-container--default .select2-selection--single {
    border: 3px solid #ececec;
    border-radius: 0px;
    border-left: none;
    border-right-width: 1px;
    border-bottom-width: 1px;
    padding: 4px 0px;
    height: 100%;
}

.select2-container--open .select2-dropdown--below {
    margin: 0px 0px 0px 0px;
    border-color: #ececec;
    padding: 2px 0px 0px 0px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 2px solid #ececec;
    margin: 0px 0px 2px 0px;
}

.select2-selection__arrow {
    padding: 18px 0px;
}

#rbDisneyType label {
    width: 33%;
}

#rbDisneyType {
    width: 100%;
}

    #rbDisneyType input[type=radio] {
        display: none;
    }

    #rbUniversalType input[type=radio] {
        display: none;
    }
/* Common CSS Rules */
.text-center {
    text-align: center;
}


.DSearchTable {
    display: table;
    /*width: 100%;*/
    border-spacing: 5px;
}

.DSearchCell {
    /*text-align: center;*/
    width: 30%;
    display: table-cell;
}

    .DSearchCell input[type="radio"] {
        display: none;
    }





/* The container */
.dsearchlbl {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .dsearchlbl input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.dsearchlbl:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.dsearchlbl input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.dsearchlbl input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.dsearchlbl .checkmark:after {
    left: 8px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}