/*!
Theme Name: branson
Theme URI:
Author: Frank
Description: Description
Version: 1.0.0
Text Domain: branson

*/

body,
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.fonts-Oswald{
    font-family: 'Oswald', sans-serif;
}

body{
    background: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    margin: 0;
    padding: 0;
    color: #333333;
    line-height: normal;
}


*, *:after, *::before{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* common style */
h1, h2, h3, h4, h5, h6{
    font-family: 'Oswald', sans-serif;
    margin: 0 0 20px;
    line-height: 1.2;
    font-weight: 700;
}

a{
    color: inherit;
    outline: none !important;

    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a:active,
a:focus,
a:hover{
    color: #5faf33;
    outline: none !important;
    text-decoration: none;
}

ul li,
ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

h1{
    font-size: 40px;
}

h2{
    font-size: 30px;
}

h3{
    font-size: 24px;
}

h4{
    font-size: 16px;
}

p{
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: normal;
}

img{
    max-width: 100%;
}

.form-group{
    position: relative;
    background: none;
    margin-bottom: 0;
    display: inline-block;
    width: 100%;
}

label{
    font-weight: normal;
    display: block;
}

textarea, select, input{
    background: #fff;
    border: 1px solid #999999;
    border-radius: 4px;
    height: 30px;
    display: inline-block;
    margin-bottom: 10px;
    width: 100%;
    padding: 6px 10px;
    box-shadow: none;
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: normal;
    color: #333;
    outline: none !important;

    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
textarea{
    height: auto;
    min-height: 100px;
}

textarea:focus, select:focus, input:focus{
    border-color: #01559f;
    outline: none !important;
    box-shadow: none;
}

input[type="submit"],
.button{
    font-family: 'Oswald', sans-serif;
    background: #6fbe44;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    border: none !important;
    font-size: 16px;
    line-height: 1;
    height: 40px;
    padding: 10px 20px 11px;
    text-transform: uppercase;
    border-radius: 4px;
    text-align: center;
    box-shadow: none;
    width: auto;
    min-width: 140px;
    text-shadow: none;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.button.btn_gray{
    background: #999999;
    border-color: #999999;
}

.button.btn_sm{
    height: 30px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    min-width: 100px;
}

input[type="submit"]:active,
input[type="submit"]:focus,
input[type="submit"]:hover,
button.button:active,
button.button:focus,
button.button:hover,
a.button:active,
a.button:focus,
a.button:hover{
    background: #01559f;
    border-color: #01559f;
    color: #fff;
    outline: none !important;
    box-shadow: none;
    text-shadow: none;
    z-index: 2;
}

input[type="submit"]:active,
input[type="submit"]:focus,
input[type="file"]:active,
input[type="checkbox"]:active,
input[type="radio"]:active,
input[type="file"]:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus{
    outline: none !important;
}


::-webkit-input-placeholder { color: #939393; opacity: 1; }
:-moz-placeholder { color: #939393; opacity: 1; }
::-moz-placeholder { color: #939393; opacity: 1; }
:-ms-input-placeholder { color: #939393; opacity: 1; }


.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 9999;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #111111;
}

.spinner {
    border: 1px solid transparent;
    border-radius: 5px;
    position: relative;
}

.spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin-top: -75px;
    margin-left: -75px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-top-color: #0155a0;
    animation: spinner .9s linear infinite;
}

@-webkit-@keyframes spinner {
    to {transform: rotate(360deg);}
}

@keyframes spinner {
    to {transform: rotate(360deg);}
}


/*** To start style ***/
.clearFix:after,
.clearFix:before,
.wrapper:after,
.wrapper:before,
section:after,
section:before,
header:after,
header:before,
footer:before,
footer:after{
    content: " ";
    clear: both;
    display: table;
}

.wrapper,
section,
header,
footer{
    display: block;
    clear: both;
}

.wrapper{
    overflow: hidden;
}

.container{
    max-width: 1090px;
}

/** header **/
#header-sticky-wrapper{
    position: absolute;
    background: none;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
}
.is-sticky #header{
    background: rgba(0, 0, 0, 0.8);
}

#header{
    background: #01559f;
    padding-top: 10px;
    position: relative;
    width: 100% !important;

    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

#header .head{
    padding: 0;
    position: relative;
    display: flex;
}
.logo{
    float: left;
    position: relative;
    display: inline-block;
    margin: 0 30px 5px 0;
}
.logo a{
    width: 175px;
    display: block;
}
.logo a img{
    display: block;
    width: 100%;
}

/** main_menu **/
.main_menu{
    float: left;
    text-align: left;
    width: 100%;
}

.main_menu .menu{
    position: relative;
}
.main_menu .menu ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.main_menu .menu ul li{
    float: left;
    list-style: none;
    position: relative;
}
.main_menu .menu ul li a{
    font-family: 'Oswald', sans-serif;
    display: block;
    padding: 0 30px;
    font-size: 24px;
    line-height: 90px;
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
}

.main_menu .menu ul li a:before{
    content: " ";
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #18406f;
    border-left: 1px solid #2a78be;
}

.main_menu .menu ul li:last-child a:after{
    content: " ";
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #18406f;
    border-left: 1px solid #2a78be;
}

.main_menu .menu ul li.active a,
.main_menu .menu ul li a:hover{
    color: #5faf33;
}

/** submenu **/
.main_menu .menu ul li.has_child{
    position: relative;
}
.main_menu .menu ul li.has_child a{
    padding-right: 60px;
}
.main_menu .menu ul li.has_child:before{
    content: " ";
    border: 8px solid transparent;
    border-top-color: #6fbf48;
    position: absolute;
    right: 26px;
    top: 50%;
    margin-top: -4px;
}
.main_menu .menu ul li.has_child .submenu{
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 220px;
    width: 100%;
    min-width: 196px;
    background: #0255a0;
    z-index: 1000;

    max-height: 0;
    overflow: hidden;
    -webkit-transform: rotate3d(1, 0, 0, -90deg);
    transform: rotate3d(1, 0, 0, -90deg);
    -webkit-transform-origin: 50% 0;
    -webkit-transition: 350ms;
    -moz-transition: 350ms;
    -o-transition: 350ms;
    transition: 350ms;
}
.main_menu .menu ul li.has_child:hover .submenu{
    max-height: 1000px;
    z-index: 1000;
    -webkit-transform: rotate3d(0, 0, 0, 0);
    transform: rotate3d(0, 0, 0, 0);
}

.main_menu .menu ul li li{
    float: none;
    display: block;
    width: 100%;
}
.main_menu .menu ul li li a{
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    padding: 5px 10px 5px 30px !important;
    text-transform: capitalize;
}
.main_menu .menu ul li li a:before{
    content: " ";
    height: 2px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    background: #18406f;
    border: none;
    border-top: 1px solid #2a78be;
}
.main_menu .menu ul li li a:after{
    display: none;
}
.main_menu .menu ul li li a:hover{
    background: #6fbe48;
    color: #fff;
}


/** responsive menu **/
.menuIcon{
    height: 38px;
    width: 42px;
    display: none;
    background: #5faf33;
    border: 2px solid #348906;
    color: #fff;
    padding: 6px 7px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    margin: 0;
    cursor: pointer;
    border-radius: 3px !important;
    outline: none !important;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.menuIcon:focus{
    outline: none !important;
}

.menuIcon .iconBar:after,
.menuIcon .iconBar:before{
    content: " ";
    width: 24px;
    height: 2px;
    display: block;
    background: #fff;
    position: absolute;
    top: -6px;

    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.menuIcon .iconBar:after{
    top: 6px;
}
.menuIcon .iconBar{
    position: relative;
    width: 24px;
    height: 2px;
    display: block;
    background: #fff;
    margin-top: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.resMenuOpen .menuIcon .iconBar{
    background: none;
}
.resMenuOpen .menuIcon .iconBar:after{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 0;
    top: 0;
}
.resMenuOpen .menuIcon .iconBar:before{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 0;
    top: 0;
}

#header #pageMenu.resMenuOpen{
    opacity: 1;
    visibility: visible;
    right: 0;
}
.mainSite{
    background: #ffffff;
    position: relative;
    width: 100%;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.wrapper,
.wrapper.resMenuOpen{
    background: #5faf33;
}
.wrapper.resMenuOpen .mainSite{
    margin-left: -210px;
}

.wrapper.resMenuOpen #header #pageMenu{
    position: absolute;
    right: -225px;
    visibility: visible;
}


/** user menu **/
.user_menu{
    float: right;
    text-align: right;
    margin: 20px 0;
    /*padding-right: 50px;*/
    position: relative;
}
.user_menu .bs_avatar{
    position: absolute;
    top: 0;
    right: 0;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    display: none;
}
.user_menu .bs_avatar img{
    display: block;
    width: 100%;
    height: 100%;
}
.user_menu ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.user_menu ul li{
    float: left;
    padding: 12px 0;
}
.user_menu ul li a{
    font-family: 'Oswald', sans-serif;
    display: block;
    font-size: 20px;
    line-height: 1;
    font-weight: normal;
    color: #fff;
    text-transform: capitalize;
    display: block;
    padding: 0 15px;
    position: relative;
}
.user_menu ul li a:hover{
    color: #5faf33;
}
.user_menu ul li a:after{
    content: " ";
    position: absolute;
    left: -1px;
    top: 1px;
    bottom: 0;
    height: 100%;
    width: 2px;
    background: #fff;
}
.user_menu ul li:first-child a:after{
    display: none;
}



/** footer **/
#footer{
    position: relative;
    color: #ffffff;
    margin-top: 30px;
    background-color: #888888;
    background-repeat: repeat-y;
    background: -webkit-gradient(linear, left top, right top, from(#666666), to(#999999));
    background: -webkit-linear-gradient(left, #666666, #999999);
    background: -moz-linear-gradient(left, #666666, #999999);
    background: -ms-linear-gradient(left, #666666, #999999);
    background: -o-linear-gradient(left, #666666, #999999);
}

#footer .footer{
    /*border-top: 1px solid rgba(81, 145, 202, 1);*/
    padding-top: 30px;
}

.footer_menu{
    float: right;
    text-align: right;
    margin-bottom: 30px;
}
.footer_menu ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer_menu ul li{
    float: left;
    margin-left: 20px;
}
.footer_menu ul li a{
    display: block;
    font-family: 'PT Sans', sans-serif;
    font-weight: normal;
    margin: 0;
    font-size: 14px;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
}
.footer_menu ul li a:hover{
    color: #6fbe44;
}

.copyright_text{
    float: left;
    text-align: left;
    margin-bottom: 30px;
}
.copyright_text p{
    font-family: 'PT Sans', sans-serif;
    font-weight: normal;
    margin: 0;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
}


/** main_content **/
.main_content{
    padding-top: 40px;
}

.bhp_container{
    position: relative;
}

.page_title,
.bhp_title{
    font-family: 'Oswald', sans-serif;
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(81, 145, 202, 1);
    margin-bottom: 30px;
}
.bhp_title h2{
    font-size: 30px;
    margin-bottom: 15px;
}

.page_title h2{
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
    font-weight: 400;
}
.page_title .input_search{
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 270px;
    vertical-align: middle;
}

.page_title .input_search input,
.page_title input{
    height: 34px;
    width: 100%;
    padding-right: 40px;
}
.page_title .input_search .search_icon{
    position: absolute;
    top: 3px;
    right: 3px;
    height: 28px;
    width: 28px;
    background: url(./images/search_icon.png) no-repeat center center;
    background-size: 100%;
    border: none;
    padding: 0;
    z-index: 10;
    margin: 0;
    min-width: 28px;
    text-indent: -9999px;
}
.page_title .input_search .search_icon img{
    display: block;
    width: 100%;
}

/** bhp_tab_menu **/
.bs_tab_content .tab-content > .tab-pane{
    min-height: 380px;
}

.bhp_tab_menu{
    font-family: 'Oswald', sans-serif;
}
.bhp_tab_menu ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.bhp_tab_menu ul li{
    float: left;
    margin-right: 40px;
    margin-bottom: 5px;
}
.bhp_tab_menu ul li a{
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    padding: 0 0 5px;
}
.bhp_tab_menu ul li.active a,
.bhp_tab_menu ul li a:hover{
    color: #5faf33;
}
.bhp_tab_menu ul li a:before{
    content: " ";
    position: absolute;
    left: 50%;
    width: 0px;
    bottom: 2px;
    height: 1px;
    background: #5faf33;

    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
.bhp_tab_menu ul li.active a:before,
.bhp_tab_menu ul li a:hover:before{
    width: 100%;
    left: 0;
}

/** tab content **/
.bs_tab_content{
    position: relative;
    padding: 30px 0 20px;
}
.display_flex{
    display: flex;
    flex-wrap: wrap;
}

.tab_main{
    position: relative;
    display: inline-block;
    width: 100%;
    padding-left: 35px;
}

.bdr_left{
    border-left: 1px solid rgba(2, 86, 160, 0.4);
}

.room_type_content{
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.bs_tab_content h2,
.tab_title{
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    display: block;
    padding: 5px 8px 6px;
    margin: 0 0 10px;
    font-size: 15px;
    line-height: 1;
    color: #01559f;
    text-transform: uppercase;
    background: #f5f5f5;
}

.rm_sec_block{
    position: relative;
    width: 100%;
    display: table;
    padding-left: 110px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    min-height: 30px;
    margin-bottom: 15px;
}
.rm_sec_block p{
    display: table-cell;
    height: 30px;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}
.rm_sec_block .rm_qty{
    width: 90px;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}
.rm_sec_block .rm_qty input{
    margin-bottom: 0;
}

.rm_sec_footer .button{
    margin-left: 20px;
}

/** custom row **/
.row_sm:after,
.row_sm:before{
    content: " ";
    clear: both;
    display: table;
}
.row_sm{
    margin-left: -7.5px;
    margin-right: -7.5px;
    position: relative;
}
.row_sm .col_6{
    float: left;
    width: 50%;
    padding-left: 7.5px;
    padding-right: 7.5px;
}
.row_sm .col_12{
    float: left;
    width: 100%;
    padding-left: 7.5px;
    padding-right: 7.5px;
}

hr{
    border-top: 1px solid rgba(2, 86, 160, 0.4);
}

/** tab_sidebar **/
.tab_sidebar{
    position: relative;
    display: inline-block;
    width: 100%;
    padding-right: 35px;
}
.tab_sidebar .row_sm .col_6{
    width: 50%;
}
.update_days{
    padding-top: 15px;
}

.text_upc{
    text-transform: uppercase;
}

/** calender **/
.calender{
    position: relative;
    display: inline-block;
    width: 100%;
    padding-right: 25px;
    height: 28px;
    margin-bottom: 15px;
}
.calender input{
    height: 28px;
    padding: 6px 8px;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
}
.error_message {
    color: red;
    text-align: center;
}
.error_message_left {
    color: red;
    text-align: left;
}
.error_message li+li {
    border-top: 1px solid #f5f5f5;
    margin-top: 3px;
    padding-top: 3px;
}
.icon_calender{
    background: url(images/icon_calender.png) no-repeat top right;
    height: 28px;
    width: 25px;
    position: absolute;
    top: 0;
    right: 0;
}
.ui-datepicker-trigger{
    height: 28px;
    width: 25px;
    position: absolute;
    top: 0;
    right: 0;
}

.add_date_btn{
    display: inline-block;
    width: 100%;
    margin: 15px 0;
}
.button i{
    font-size: 20px;
    vertical-align: middle;
    margin: -3px 6px 0 0;
}

.bs_close{
    position: absolute;
    right: -10px;
    top: 0;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    z-index: 100;
    display: block;
}
.row_sm:first-child .bs_close{
    display: none;
}


/* checkbox */
.day_list{
    padding-top: 20px;
}
.bs_checkbox{
    display: inline-block;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
}
.bs_checkbox label{
    font-size: 16px;
    line-height: 20px;
    font-family: 'PT Sans', sans-serif;
    font-weight: normal;
    position: relative;
}

.bs_checkbox [type="checkbox"]:not(:checked),
.bs_checkbox [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}
.bs_checkbox [type="checkbox"]:not(:checked) + label,
.bs_checkbox [type="checkbox"]:checked + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
}

/* checkbox aspect */
.bs_checkbox [type="checkbox"]:not(:checked) + label:before,
.bs_checkbox [type="checkbox"]:checked + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #999999;
    background: #fff;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* checked mark aspect */
.bs_checkbox [type="checkbox"]:not(:checked) + label:after,
.bs_checkbox [type="checkbox"]:checked + label:after {
    content: '✔';
    position: absolute;
    top: 3px;
    left: 3px;
    font-size: 18px;
    line-height: 14px;
    color: #01559f;
    transition: all .2s;
    font-family: Helvetica, Arial, sans-serif;
}

/* checked mark aspect changes */
.bs_checkbox [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    transform: scale(0);
}
.bs_checkbox [type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
}

/* disabled checkbox */
.bs_checkbox [type="checkbox"]:disabled:not(:checked) + label:before,
.bs_checkbox [type="checkbox"]:disabled:checked + label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #ddd;
}
.bs_checkbox [type="checkbox"]:disabled:checked + label:after {
    color: #999;
}
.bs_checkbox [type="checkbox"]:disabled + label {
    color: #aaa;
}

/* accessibility */
.bs_checkbox [type="checkbox"]:checked:focus + label:before,
.bs_checkbox [type="checkbox"]:not(:checked):focus + label:before {
    outline: none !important;
}

/** radio button **/
.bs_radio{
    display: inline-block;
    margin-left: 20px;
    vertical-align: middle;
}
.bs_radio [type="radio"]:checked,
.bs_radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.bs_radio [type="radio"]:checked + label,
.bs_radio [type="radio"]:not(:checked) + label{
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #1165af;
}

.bs_radio [type="radio"]:checked + label:before,
.bs_radio [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    border: 1px solid #9b9b9b;
    border-radius: 100%;
    background: #fff;
}
.bs_radio [type="radio"]:checked + label:after,
.bs_radio [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #1165af;
    position: absolute;
    top: 4px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.bs_radio [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.bs_radio [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.cyr_footer .bs_radio {
    display: inline-block;
    margin: 0 20px 10px 5px;
}

.bs_radio {
    display: inline-block;
    margin-left: 20px;
    vertical-align: middle;
}

/** switch control **/
.bs_switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
}

.bs_switch input {display:none;}

.bs_switch .bs_slider {
    border-radius: 17px;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .2s;
    transition: .2s;
}

.bs_switch .bs_slider:before {
    border-radius: 50%;
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .2s;
    transition: .2s;
}

.bs_switch input:checked + .bs_slider {
    background-color: #6fbd43;
}

.bs_switch input:focus + .bs_slider {
    box-shadow: 0 0 1px #6fbd43;
}

.bs_switch input:checked + .bs_slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
}

/** login_wrapper Page **/
.login_wrapper{
    background-image: url(images/login_page_bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    min-height: 550px;
}

.bs_login{
    max-width: 90%;
    width: 380px;
    height: 530px;
    margin: 0 auto;
    font-family: 'PT Sans', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.login_logo{
    display: inline-block;
    margin: 0 0 30px;
}
.login_logo a{
    display: inline-block;
    margin-bottom: 10px;
}
.login_logo a img{
    display: block;
    max-width: 100%;
}
.bs_login p{
    font-family: 'PT Sans', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    margin: 0 0 5px;
}

.form_group{
    display: inline-block;
    width: 100%;
    position: relative;
    margin-bottom: 15px;
}
.bs_login .form_group input{
    height: 64px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 4px;
    padding: 20px 50px 20px 20px;
    font-size: 18px;
    margin: 0;
    width: 100%;
    color: #333;
    -webkit-box-shadow: 0 7px 4px -6px #333;
    -moz-box-shadow: 0 7px 4px -6px #333;
    box-shadow: 0 7px 4px -6px #333;
}
.bs_login .form_group i{
    position: absolute;
    right: 20px;
    line-height: 64px;
    top: 0;
    color: #6fbe44;
    font-size: 26px;
}
.bs_login .button{
    width: 100%;
    height: 64px;
    font-size: 20px;
    line-height: 1;
    padding: 20px 30px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 7px 4px -6px #333;
    -moz-box-shadow: 0 7px 4px -6px #333;
    box-shadow: 0 7px 4px -6px #333;
}
.bs_login .login_request{
    display: inline-block;
    width: 100%;
    text-align: center;
}
.bs_login .login_request a{
    margin: 0 5px;
}


/** Table **/
.prt_table:after,
.prt_table:before{
    content: " ";
    display: table;
    clear: both;
}
.prt_table{
    position: relative;
    width: 100%;
    overflow-x: auto;
}
.table{
    font-size: 16px;
    color: #646464;
}
.prt_table .table > thead > tr > th,
.prt_table .table > tbody > tr > th,
.prt_table .table > tfoot > tr > th,
.prt_table .table > thead > tr > td,
.prt_table .table > tbody > tr > td,
.prt_table .table > tfoot > tr > td {
    padding: 7px 10px;
    line-height: 1.4;
    vertical-align: middle;
    border: none;
}

.prt_table .table > tfoot > tr > th:first-child,
.prt_table .table > tfoot > tr > td:first-child,
.prt_table .table > thead > tr > th:first-child,
.prt_table .table > thead > tr > td:first-child{
    padding-left: 0;
}

.prt_table .table > tfoot > tr > th:last-child,
.prt_table .table > tfoot > tr > td:last-child,
.prt_table .table > thead > tr > th:last-child,
.prt_table .table > thead > tr > td:last-child{
    padding-right: 0;
}
.prt_table .table .rm_sec_footer{
    margin-top: 50px;
}

.prt_table .table > tbody > tr > td{
    background: #f9f9f9;
}
.prt_table .table .tab_title{
    margin-bottom: 15px;
}

/*.btn_inactive{
        cursor: not-allowed;
}*/
a.btn_inactive:hover,
button.btn_inactive:hover{
    background: #999999 !important;
}


.height_10{
    background: none !important;
    padding: 0 !important;
    line-height: 8px !important;
    font-size: 0 !important;
    height: 8px !important;
}

.td_pad_20{
    padding: 20px 25px !important;
}

.sec_title{
    display: inline-block;
    width: 100%;
    color: #666666;
}
.sec_title h2{
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-weight: 400;
    font-family: "Oswald";
}

.mrg_30{
    margin-top: 30px;
}

.status_title{
    display: inline-block;
    width: 100%;
    min-height: 45px;
}

.status_title > span{
    margin: 0 15px 10px 0;
    display: inline-block;
    vertical-align: middle;
}

.text{
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.connected_prt,
.ac_edit_content{
    position: relative;
    padding-top: 20px;
    margin-bottom: 30px;
}

.edit_container textarea,
.edit_container select,
.edit_container input{
    margin-bottom: 15px;
}

.input_block{
    width: 100%;
    display: block;
    position: relative;
}
.input_block .pct_65{
    float: left;
    width: 65%;
}
.input_block .pct_30{
    float: right;
    width: 30%;
}

.rst_table{
    position: relative;
}
.rst_table .table,
.rst_table table{
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
}

.rst_table .table tr th{
    color: #1165af;
    text-transform: uppercase;
    vertical-align: bottom;
    border: none;
    font-weight: normal;
    line-height: 1.2;
    padding: 7px 10px;
}
.rst_table .table tr td{
    background: none;
    padding: 8px 10px;
    line-height: 1.4;
    vertical-align: middle;
    border: none;
}
.rst_table .table .bs_checkbox{
    width: 22px;
}

.rst_table .table .nb_night{
    text-align: center;
}
.rst_table .table .nb_night input{
    text-align: center;
    margin: 0;
}


.cyr_footer{
    display: inline-block;
    width: 100%;
    background: #f5f5f5;
    padding: 15px 5px 0 15px;
    text-align: center;
}

.text_inlb,
.bs_select{
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 15px;
}

.bs_select select,
.bs_select .select{
    padding: 3px 25px 3px 8px;
    margin: 0;
    width: auto;
    max-width: 100%;
    min-width: 150px;
    display: inline-block;
    vertical-align: middle;
    background: url(./images/slect_arrow.png) no-repeat top right #fff;

    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

.bs_select label,
.bs_select span {
    display: inline-block;
    vertical-align: middle;
    margin: 5px 5px 5px 0;
    text-transform: uppercase;
    color: #1165af;
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;;

}

.cyr_footer .bs_radio{
    display: inline-block;
    margin: 0 20px 10px 5px;
}
.cyr_footer .bs_radio label{
    color: #666 !important;
}

.yearly_rates .cyr_footer {
    text-align: left;
}

.yearly_rates .bs_select {
    display: block;
}

.yearly_rates .bs_select input {
    padding: 3px 8px 3px 8px;
    margin: 0;
    width: auto;
    max-width: 100%;
    min-width: 150px;
    display: inline-block;
    vertical-align: middle;
}

/** sidebar **/
.sidebar{
    position: relative;
    display: block;
}

.room_type_list{

}
.room_type_list ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.room_type_list ul li{
    position: relative;
    display: block;
    width: 100%;
    background: #f1f1f1;
    color: #595858;
    border-bottom: 2px solid #fff;
    padding: 10px;

    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.room_type_list ul li a{
    display: block;
    color: #595858;
    width: 100%;
    /*max-width: 250px;*/
    font-size: 16px;
    line-height: 1.5;
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    text-align: left;
}

.room_type_list ul li:hover,
.room_type_list ul li a:hover,
.room_type_list ul li.active{
    background: #d4e7fa;
    color: #1266b0;
}
.room_type_list ul li.active a{
    color: #1266b0 !important;
}


.room_setting{
    position: relative;
}
.room_setting hr{
    border-top-color: #999999;
    margin-top: 30px;
    margin-bottom: 40px;
}
.room_setting .input_block{
    display: table;
    margin-bottom: 15px;
}
.room_setting .input_block label,
.room_setting .input_block input{
    display: table-cell;
    vertical-align: middle;
    margin-bottom: 0;
}
.room_setting .input_block label.input_text{
    width: 145px;
    margin-right: 5px;
}


.roomSelected{
    opacity: 0.5;
}
.roomSelected .nb_night{
    pointer-events: none;
}


/** modal **/
.modal-dialog{
    width: 100%;
    max-width: 650px;
}
.bs_modal{
    position: relative;
}

.bs_modal .modal-footer,
.bs_modal .modal-header,
.bs_modal .modal-body{
    padding-left: 25px;
    padding-right: 25px;
}

.bs_modal,
.modal-content{
    border-radius: 0;
}

.bs_modal .modal-header{
    color: #fff;
    background: #01559f;
}

.modal_title{
    display: inline-block;
    width: 100%;
    position: relative;
}
.modal_title h2{
    font-size: 24px;
    font-family: "Oswald";
    line-height: 1;
    font-weight: 300;
    padding: 0;
    margin: 0;
}
.modal_title button.close{
    position: absolute;
    right: 5px;
    top: 3px;
    color: #fff;
}

.bs_modal .modal-footer{
    border-top: none;
    padding-bottom: 30px;
}

.bs_modal .modal-body{
    padding-top: 30px;
    padding-bottom: 30px;
}

.sec_block{
    display: inline-block;
    position: relative;
    width: 100%;
}

.bs_modal .sec_block{
    padding: 0 0 15px;
    text-align: left;
}
.bs_modal .sec_block h2{
    margin-bottom: 15px;
}
.bs_modal .sec_block input[type="text"]:last-child,
.bs_modal .sec_block p:last-child{
    margin-bottom: 0;
}

.icon_input,
.bs_modal .sec_block input[type="text"]{
    max-width: 140px;
    width: 100%;
}

.icon_input{
    position: relative;
}
.icon_input span.icon_text{
    position: absolute;
    right: 8px;
    top: 5px;
}
.bs_modal .tab_sidebar{
    padding-right: 10px;
}
.bs_modal .mdl_room_type{
    padding-left: 10px;
}
.bs_modal .col-sm-6 .rm_sec_footer .button{
    width: 45%;
    min-width: 100px;
    margin: 0 0 15px;
    float: left;
    padding: 10px;
}
.bs_modal .col-sm-6 .rm_sec_footer .button:last-child{
    float: right;
}

.prt_table .modal_table input[type="text"],
.prt_table .modal_table .bs_checkbox,
.prt_table .modal_table .tab_title{
    margin-bottom: 0;
}

.prt_table .modal_table .tab_title{
    padding: 0;
}
.prt_table .modal_table .bs_checkbox label{
    color: #999999;
    font-size: 12px;
    font-weight: bold;
}


/** calendar **/
.calendar_content{
    margin-bottom: 50px;
    border: 5px solid #d3d3d3;
    position: relative;
    overflow: hidden;
}
.calendar_content .table_box{
    overflow-y: hidden;
    overflow-x: scroll;
    margin-left: 250px;
}
.calendar_content .cal_table{
    margin: 0;
}
.calendar_content .cal_table .cal_head{
    height: 80px;
}
.calendar_content .cal_table tbody tr td.cal_sidebar{
    height: 50px;
}
.calendar_content .cal_table input{
    margin-bottom: 0;
}
.calendar_content .cal_table .btn-sm,
.calendar_content .cal_table .btn-group-sm > .btn{
    padding: 2px 6px;
}

.cal_table thead tr td,
.cal_table thead tr th,
.cal_table tbody tr td,
.cal_table tbody tr th{
    text-align: center;
    vertical-align: top;
    font-weight: 400;
    color: #666;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    line-height: 24px;
}
.cal_table tbody tr td{
    background: #6fbe44;
    color: #fff;
    vertical-align: middle;
}

.cal_table tbody tr.room_sub_row td{
    background: #f3f8fe !important;
    color: #666 !important;
}
.cal_table tbody tr.room_sub_row{
    display: none;
}
.cal_table tbody tr.room_sub_row.rowOpen{
    display: table-row;
}

.calendar_content .cal_table tr.room_sub_row .cal_sidebar .rm_type_list .rm_list_title,
.calendar_content .cal_table tr.room_sub_row .cal_sidebar{
    background: #f3f8fe;
    font-size: 14px;
    line-height: 24px;
    font-weight: bold;
    padding-left: 10px;
}

.calendar_content .cal_table tr th.cal_sidebar{
    top: -1px;
}
.calendar_content .cal_table tr .cal_sidebar{
    background: #fff;
    border-right: 5px solid #d3d3d3;
    width: 250px;
    color: #666;
    position: absolute;
    left: 0;
}

.cal_table .date_range{
    font-weight: bold;
    color: #1165af;
    display: block;
    margin-bottom: 5px;
}

.icon_border{
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #b7b7b7;
    border-radius: 4px;
    height: 28px;
    line-height: 16px;
    font-size: 16px;
    padding: 4px 10px;
    margin: 5px 2px;
    font-weight: bold;
    color: #6fbe44;
}
button.icon_border:hover,
a.icon_border:hover{
    border-color: #6fbe44;
}
.icon_border img{
    height: 100%;
    width: auto;
    display: block;
}

.cal_sidebar .rm_type_list{
    display: inline-block;
    width: 100%;
    position: relative;
    text-align: left;
    padding-left: 25px;
    padding-right: 25px;
}
.cal_sidebar .rm_type_list .rm_list_title{
    font-size: 16px;
    display: block;
}
.cal_sidebar .rm_type_list .rm_list_title i{
    font-size: 22px;
    color: #6fbe44;
    width: 15px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 1px;
    padding-left: 5px;

    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.activeRow .cal_sidebar .rm_type_list .rm_list_title i{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.cal_sidebar .rm_type_list .cal_edit{
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #a2a19f;
    border: 1px solid transparent;
    border-radius: 2px;
}
.cal_sidebar .rm_type_list .cal_edit:hover{
    border-color: #6fbe44;
}

/** legend mark **/
.legend{
    display: block;
    max-width: 470px;
    width: 100%;
    margin: 0 auto 5px;
    text-align: left;
}
.legend ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.legend ul li{
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
}
.legend ul li.open_abl,
.legend ul li.lgd_close,
.legend ul li.soldout,
.legend ul li.past_date,
.legend ul li.no_record{
    padding-left: 15px;
}
.legend ul li.open_abl:before,
.legend ul li.lgd_close:before,
.legend ul li.soldout:before,
.legend ul li.past_date:before,
.legend ul li.no_record:before{
    content: " ";
    height: 11px;
    width: 11px;
    background: #d79300;
    position: absolute;
    left: 0;
    top: 1px;
    display: block;
}
.legend ul li.open_abl:before{
    background: #6fbd43;
}
.legend ul li.lgd_close:before{
    background: #d02907;
}
.legend ul li.soldout:before{
    background: #d79300;
}
.legend ul li.past_date:before{
    background: black;
}
.legend ul li.no_record:before{
    background: darkgrey;
}


/** text color **/
.clr_limeGreen{
    color: #6fbe44;
}
.clr_goldenRod{
    color: #dd7e03;
}
.clr_lightBlue{
    color: #1165af;
}

/** background color **/
.bgNone{
    background: none !important;
}

.bg_goldenRod{
    background-color: #d79300;
}

.cal_table tbody tr td.bg_limeGreen,
.bg_limeGreen{
    background-color: #6fbf44;
    color: #fff;
}

.cal_table tbody tr td.bg_red,
.bg_red{
    background-color: #d02909;
    color: #fff;
}

.cal_table tbody tr td.bg_yellow,
.bg_yellow{
    background-color: #ece002;
    color: #fff;
}

.cal_table tbody tr td.bg_orange,
.bg_orange{
    background-color: #d79300;
    color: #fff;
}

.cal_table tbody tr td.bg_black,
.bg_black{
    background-color: black;
    color: #fff;
}

.cal_table tbody tr td.bg_grey,
.bg_grey{
    background-color: darkgray;
    color: #fff;
}

.editCell.closed {
    text-decoration: underline;
    text-decoration-color: #888;
}
.editCell[data-field="allocTotal"] {
    text-decoration: none;
}
.editCell input{
    border: 0 none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 50px;
}
.cal_table tr {
	height:60px;
}
.calendar_content .cal_table tbody tr td.cal_sidebar{
	height:60px;
}

.disabled {
    background-color: lightgrey;
}