/* 
    Theme Name: Interstate8motel
    Version: 1.0
    Description: Custom Theme Development
    Technology Used: HTML 5, CSS3, Javascript, Jquery, Bootstrap, Wordpress 5.2.2
    Designer / Developer: Saugat Shrestha
*/

/*==========================
LINKING FONT FAMILY 
==========================*/

@font-face {
  font-family: 'BookAntiqua';
  src: url('fonts/BookAntiqua.eot?#iefix') format('embedded-opentype'),  
    url('fonts/BookAntiqua.woff') format('woff'), 
    url('fonts/BookAntiqua.ttf')  format('truetype'), 
    url('fonts/BookAntiqua.svg#BookAntiqua') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'robotoregular';
    src: url('fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


@font-face {
  font-family: 'DejaVuSans';
  src: url('fonts/DejaVuSans.eot?#iefix') format('embedded-opentype'),  
    url('fonts/DejaVuSans.woff') format('woff'), url('DejaVuSans.ttf')  format('truetype'), 
    url('fonts/DejaVuSans.svg#DejaVuSans') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OpenSans-Regular';
  src: url('fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),  
        url('fonts/OpenSans-Regular.woff') format('woff'), 
        url('fonts/OpenSans-Regular.ttf')  format('truetype'), url('OpenSans-Regular.svg#OpenSans-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}


/*==========================
RESET CSS
==========================*/

body {
    font-family: 'OpenSans-Regular';
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: normal;
}

ul,
li {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

a {
    color: #555;
}

a:hover,
a:focus {
    text-decoration: none;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.thumbnail-img {
    position: relative;
    overflow: hidden;
}

p {
    margin: 0;
}

.regularfont {
    font-family: 'OpenSans-Regular';
}

.font15 {
    font-size: 15px;
}

/*==========================
SITE HEADER CSS
==========================*/

.btn-toggle {
    display: none;
}

.site-header {
    background: #ff0000;
    padding: 5px 0;
}

.site-logo h1 {
    font-family: 'BookAntiqua', arial;
}

.site-logo > a {
    display: inline-block;
    vertical-align: middle;
}

.site-logo > h1 {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    color: #fee32c;
    font-size: 30px;
}

.site-logo > h1 span {
    color: #fff;
}

.phone {
    color: #fee32c;
    font-size: 26px;
    margin: 15px 0 0;
    text-align: right;
}

.phone i {
    margin-right: 10px;
    color: #fff;
}


/*==========================
HOME BANNER CSS
==========================*/

.homebanner img {
    width: 100%;
}



/*==========================
SITE NAVIGATION CSS 
==========================*/

.site-navigation {
    background: #fee32c;
}

.site-navigation ul {
    text-align: center;
}

.site-navigation ul li {
    display: inline-block;
    vertical-align: top;
    margin-right: 30px;
}

.site-navigation ul li:last-of-type {
    margin-right: 0px;
}

.site-navigation ul li a {
    display: block;
    padding: 15px 20px;
    color: #000;
    text-transform: uppercase;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}


.site-navigation ul li.current-menu-item a,
.site-navigation ul li:hover a {
    background: red;
    color: #fff;
}


/*==========================
WELCOME SECTION CSS
==========================*/

.welcome {
    padding: 60px 0;
}

h2.section-title {
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
    font-family: 'DejaVuSans';
    font-size: 28px;
}

h2.section-title::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 1px;
    width: 190px;
    background: red;
}

.welcome-content p {
    font-family: 'OpenSans-Regular';
    font-size: 17px;
    margin: 0 0 20px;
}

.welcome-content p:last-child {
    margin: 0;
}


/*==========================
ATTRACTIONS SECTION CSS
==========================*/

.attractions,
.rooms,
.amenities {
    text-align: center;
    position: relative;
    z-index: 1;
}

.amenities h2.section-title,
.rooms h2.section-title,
.attractions h2.section-title {
    margin: 0 0 40px;
}


.amenities h2.section-title::before,
.rooms h2.section-title::before,
.attractions h2.section-title::before {
    left: 50%;
    margin-left: -20px;
    width: 40px;
    height: 2px;
    background: #ffbe00;
}

.attractions-blockWrapper {
    margin: 40px 0;
}

.readmore {
    background: #fee32c;
    color: #000;
    padding: 10px 20px;
    display: inline-block;
    font-size: 15px;
    position: relative;
}

.readmore:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: red;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.readmore:hover::before {
    width: 100%;
}

.readmore span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.readmore:hover span {
    color: #fff;
}

.attblock-details {
    padding: 20px 30px;
    background: #ffffff;
}

.attblock-details h3 {
    font-size: 22px;
    margin: 0 0 20px;
}

.attractions-block .thumbnail-img img {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.attractions-block:hover .thumbnail-img img {
    transform: scale(1.2,1.2);
}


/*==========================
HASBG IMAGES CSS
==========================*/

.hasbg {
    background: url(images/hasbg.jpg)no-repeat center center;
    background-size: cover;
    height: 288px;
    position: relative;
    margin-top: -248px;
}


/*==========================
ROOMS CSS
==========================*/

.rooms {
    padding: 40px 0;
}

.rooms-block > a {
    display: block;
}

.rooms-block .thumbnail-img {
    position: relative;
}

.rooms-block .thumbnail-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.7);
}

.rooms-block .thumbnail-img a {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #fee32c;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    padding: 15px 20px;
    font-size: 16px;
    width: 70%;
}


/*==========================
AMENITIES CSS
==========================*/

.amenities {
    padding: 0 0 40px;
}

.amenities-block h5 {
    font-size: 14px;
    margin: 15px 0 0;
}


/*==========================
TESTIMONIALS CSS
==========================*/

.testimonials {
    background: url(images/testimonials-bg.jpg)no-repeat center center;
    background-size: cover;
    height: 360px;
    position: relative;
}

.testimonials:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 55%;
    background: rgba(0,0,0,0.65);
}

.testimonials-wrapper {
    padding: 80px 0;
}

.test-item {
    color: #fff;
}

.test-item h4 {
    margin-top: 30px;
    font-size: 22px;
}

.bx-wrapper {
    background: none;
    box-shadow: none;
    border: none;
}


/*==========================
SITE FOOTER CSS
==========================*/

.site-footer {
    padding: 30px 0;
    background: #2c2c2c;
}

.footer-block h4 {
    color: #fff;
    display: inline-block;
    font-size: 19px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #fff;
    position: relative;
}

.footer-block h4::before {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 30%;
    background: red;
}

.footer-block .thumbnail-img {
    margin-top: 10px;
}

.footer-block p {
    color: #fff;
    font-size: 15px;
}

.social li {
    display: inline-block;
    vertical-align: top;
    margin-right: 8px;
}

.social li:last-child {
    margin-right: 0px;
}

.copyright {
    background: #242424;
    padding: 30px 0;
}

.copyright p {
    color: #fff;
    text-align: center;
}

.copyright p a {
    color: #f7b628;
    font-size: 14px;
}

.padl40 {
    padding-left: 40px;
}

.padl50 {
    padding-left: 50px;
}

.pagebanner {
    background: url(images/bannerbg.jpg)no-repeat 0 -142px;
    text-align: center;
    padding: 50px 0;
    position: relative;
    background-size: cover;
}

.pagebanner:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.6);
}

.pagebanner h4 {
    font-size: 30px;
    color: #fff;
    position: relative;
}

.site-content {
    padding: 60px 0;
}

.site-content h3 {
    font-size: 22px;
    margin: 0 0 25px;
    padding: 0 0 10px;
}

.form-control {
    font-size: 14px;
    height: 40px;
}

.site-btn {
    background: red;
    color: #fff;
    padding: 6px 15px;
    font-size: 14px;
}

textarea {
    resize: none;
    padding: 15px;
}

.accommodation-listing li:nth-child(3n+1) {
    clear: both;
}

.accommodation-listing .col {
    float: left;
    margin: 0 3% 40px 0;
    width: 30.3%;
    list-style: none;
    border: 1px solid #ddd;
    padding: 10px 10px;
}

.accommodation-listing .col h3 {
    padding: 0 10px;
    font-size: 17px !important;
}

.accommodation-listing .col a {
    display: block;
    overflow: hidden;
}

.accommodation-listing .col a img {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.accommodation-listing .col:hover a img {
    transform: scale(1.2,1.2);
}

.accommodation-listing .col .no-style-list li {
    list-style: disc;
    font-size: 14px;
}

.accommodation-listing .col a.button1 {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    background: red;
    padding: 6px 13px;
    color: #fff;
}

.accommodation-listing .col a.button1:hover {
    background: red !important;
}

.accommodation-listing .col a.button2 {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    background: red;
    padding: 6px 13px;
    color: #fff;
}

.accommodation-listing .col .no-style-list {
    padding: 0 20px;
}

.title-style1 {
    border-bottom: #e8e8e8 1px solid;
    position: relative;
    font-size: 19px !important;
    margin: 20px 0 !important;
    padding-bottom: 10px;
}

.page-content a.button1:hover, 
.page-content a.button4:hover, 
.page-content a.button5:hover, 
a.button1:hover, 
a.button4:hover, 
a.button5:hover, 
    border: 1px solid;
    color: #fff;.nsu-submit:hover 
}

.page-content ul, .list-style1, .list-style2, .list-style3, .list-style4 {
    margin: 0 0 30px 16px;
    font-size: 14px;
} margin-top: 30px;
}

.page-content a.button2, a.button2, .button2, .page-content a.more-link, a.more-link, .more-link, #submit, .wpcf7-submit {
    color: #fff;
    background: #bf9958;
    padding: 6px 10px;
    display: inline-block;
    font-size: 13px;
}

.no-style-list {
    margin: 0 0 20px;
}

a.button2 {
    background: #ff0000;
    color: #fff;
    padding: 6px 10px;
    font-size: 13px;
    display: inline-block;
    margin-left: 10px;
}

.page-content ul, .list-style1, .list-style2, .list-style3, .list-style4 {
    margin: 0 0 30px 16px;
    font-size: 14px;
} 

.accommodation-listing li:nth-child(3n+1) {
    clear: both;
}

.no-style-list li strong {
    font-weight: normal;
    color: #a09d9d;
}

.list-style2 li, .sidebar li, .page-content li {
    list-style-image: url(images/list2.png);
    list-style-position: outside;
}

#page-header {
    padding: 60px 0 60px 0;
    background: url('images/headerBg.jpg') !important;
}

.content-wrapper, #topbar-wrapper {
    width: 1140px;
    margin: 0 auto;
    padding: 50px 0;
} 

.main-content {
    width: 64%;
    float: left;
}

.sidebar {
    width: 30%;
    float: right;
    border-left: #e8e8e8 1px solid;
    padding: 0 0 0 3%;
}

.ui-tabs {
    position: relative;
    padding: .2em;
    zoom: 1;
    margin: 0 0 30px 0;
}

#page-header h2 {
    margin: 0 auto;
    display: block;
    color: #fff;
    text-align: center;
    font-size: 26px;
}

.widget-reservation-box {
    border-bottom: 5px solid;
    padding: 30px;
    background: #1c1c1c;
}

.title-style3, #reply-title {
    position: relative;
    padding: 0 0 12px 0;
    margin: 0 0 40px 0 !important;
    font-size: 14px !important;
    text-transform: uppercase;
}

.room-price-widget {
    margin: 0 0 20px;
    text-align: center;
}

.room-price-widget p {
    color: #9e8e8e;
}

.room-price-widget h3.price {
    color: #fff;
    padding: 10px 0;
    font-size: 40px;
}

.widget-reservation-box input[type="text"] {
    width: 100%;
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #bbb;
    padding: 10px 9px;
    border: none;
}

.widget-reservation-box select {
    width: 100%;
    padding: 6px 5px;
    margin: 0 0 10px;
}

.ui-datepicker-calendar tbody tr td.ui-datepicker-unselectable span {
    color: #7b7b7b;
    height: 36px;
    line-height: 36px;
    padding: 7px 0 0 0;
    width: 36px;
    display: block;
    text-align: center;
}

#ui-datepicker-div a {
    color: #fff;
    text-decoration: none;
}

.ui-datepicker-prev {
    background: url(images/date_arrows.png) no-repeat -10px 2px #fff;
    display: block;
    -webkit-border-radius: 99%;
    -moz-border-radius: 99%;
    -o-border-radius: 99%;
    border-radius: 99%;
    width: 20px;
    height: 20px;
    text-indent: -9999px;
    position: absolute;
    top: 20px;
    left: 15px;
}

.ui-datepicker-next {
    background: url(images/date_arrows.png) no-repeat -88px 2px #fff;
    display: block;
    -webkit-border-radius: 99%;
    -moz-border-radius: 99%;
    -o-border-radius: 99%;
    border-radius: 99%;
    width: 20px;
    height: 20px;
    text-indent: -9999px;
    position: absolute;
    top: 20px;
    right: 15px;
}

.ui-datepicker-title {
    text-align: center;
    padding: 15px 0;
    color: #fff;
}

.widget-reservation-box #dateform {
    background-image: url(https://www.fremontinnandsuites.com/wp-content/plugins/hotel-booking/assets/images/calendar_widget_loading.gif);
    background-position: 95% 50%;
}

table {
    border-spacing: 0;
}

.ui-datepicker-calendar thead tr th {
    padding: 10px 0;
    margin: 0 0 10px 0;
    border-top: 1px solid;
    border-bottom: 1px solid;
    color: #fff;
    text-align: center;
}

input.bookbutton {
    background: red;
    padding: 10px;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

input.bookbutton:focus {
    outline: 0;
}

p.multiroom-link a {
    display: block;
    margin: 20px 0 0;
    color: #dabcbc;
    text-align: center;
    font-size: 14px;
    border: 1px solid #ddd;
    padding: 10px 0;
}

#ui-datepicker-div .ui-datepicker-calendar tbody tr td a {
    height: 36px;
    width: 36px;
    line-height: 36px;
    display: block;
    text-align: center;
    background: #4e4e4e;
}

.datepicker, .datepicker2 {
    background: url(images/date_icon.png) #fff no-repeat right center;
}

.key-available-icon, .price-details .total-line, .ui-datepicker-calendar tbody tr td a {
    background: #424242;
}

table.ui-datepicker-calendar {
    background: #423e3e;
}

.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
    background: #423e3e;
}

.dp-highlight-begin a, 
.ui-datepicker-calendar tbody tr td a.ui-state-hover, 
.dp-flip .ui-datepicker-calendar tbody tr td.dp-highlight-begin a.ui-state-hover {
    background: #bf9958 !important;
}   


.site-content h4 {
    margin: 0 0 20px;
}

.wp-block-column ul li {
    margin: 0 0 8px;
    font-size: 15px;
}

.boxWrapper {
    margin-top: 40px;
}

.boxWrapper .box {
    margin: 0 0 30px;
}

.boxWrapper .box p {
    margin: 0 0 15px;
}

.title-block, .button1:hover, 
.button4:hover, .button5:hover, 
.button2, .wpcf7-submit, #submit, .button3, .button6, #footer .button1, .page-content table th, .event-month, .key-selected-icon, .dark-notice, .booking-main input[type="submit"], .home-reservation-box input[type="submit"], .widget-reservation-box input[type="submit"], .booking-side input[type="submit"], .ui-datepicker-calendar tbody tr td a.ui-state-hover, .ui-datepicker-calendar .dp-highlight .ui-state-default, .step-icon-current, .pagination-wrapper .selected, .pagination-wrapper a:hover, .wp-pagenavi .current, .wp-pagenavi a:hover, .tagcloud a:hover, a.button0, .more-link, .nsu-submit:hover, 
#footer .nsu-submit, .nsu-submit:hover, #footer .nsu-submit {
    background: #bf9958 !important;
}

.accommodation-listing .button1:hover {
    background: none !important;
}

.booking-step-wrapper {
    margin: 0 0 40px;
}

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

.step-icon-wrapper {
    margin: 0 0 10px;
}

.step-icon-wrapper .step-icon {
    height: 60px;
    width: 60px;
    margin: auto;
    border-radius: 100%;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-size: 25px;
    background: #d0cfce;
}

.sidebar-title {
    background: red;
    color: #fff;
    padding: 10px 15px;
    font-size: 20px;
}

.sidebar-title.black {
    background: black;
}

table.ui-datepicker-calendar {
    width: 100%;
}

.dark-notice {
    padding: 10px 30px;
    text-align: center;
    color: #fff;
}

.row.step .ui-datepicker-prev {
    top: 13px;
    left: 35px;
}

.ui-datepicker-next {
    top: 13px;
    right: 35px;
}

.row.step .ui-datepicker-calendar tbody tr td {
    text-align: center;
}

.row.step .ui-datepicker-calendar tbody tr td.ui-datepicker-unselectable span {
    height: auto;
    width: auto;
}

.datepicker-key {
    background: #423e3e;
    padding: 30px 42px;
    color: #fff;
    font-size: 14px;
}

.display-reservation {
    padding: 0 20px;
}

.display-reservation ul {
    padding-left: 20px;
}

.display-reservation ul li {
    margin: 0 0 10px;
    list-style: disc;
}

a.button3.edit-reservation {
    background: red;
    width: 100%;
    color: #fff;
    display: block;
    padding: 8px 5px;
    text-align: center;
    margin: 0 0 30px;
}

.booking-side-wrapper.stp2 {
    background: #eae5e5;
}

.display-reservation-edit.hide {
    padding: 0 20px;
}

ul.room-list-wrapper li .room-list-left {
    float: left;
    width: 30%;
    margin-right: 25px;
    background: red;
}

ul.room-list-wrapper li .room-list-right {
    float: left;
    width: 60%;
}

ul.room-list-wrapper li.room-item {
    margin: 0 0 20px;
    background: #eae5e5;
    padding: 20px 20px;
}

ul.room-list-wrapper li.room-item h5 {
    margin: 0 0 15px;
    font-size: 18px;
}

ul.room-list-wrapper li.room-item .page-content table tbody tr td {
    color: #a09b9b;
}

.booking-main-wrapper.black {
    background: black;
    padding: 30px;
}

ul.room-list-wrapper li.room-item h5 a {
    display: block;
}

.booking-main-wrapper.black .title-style4 {
    color: #fff;
}

.room-meta ul li {
    color: #af9e9e;
}

.submitbtn2 {
    border: none;
    color: #fff;
}

.page-content table tbody tr td {
    display: block;
}

.input-field input {
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    padding: 0 15px;
}

.input-field label {
    display: block;
}

.input-field input,
.input-field select {
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    padding: 0 15px;
}

.input-field-full-width textarea {
    width: 100%;
}






/*======================
HOTEL SIDEBAR CSS
======================*/

.appsidebar .appcolumn {
    background: #000;
}

.appsidebar .appcolumn ul {
    padding: 0px 40px;
}

.appsidebar .appcolumn ul li {
    color: #fff;
    font-size: 15px;
    margin: 0 0 10px;
    list-style: disc;
}

.appsidebar .appcolumn h4 {
    color: #fff;
    font-size: 18px;
    text-align: center;
    padding: 10px 0;
    background: #565656;
}

.appsidebar .app-details .total-only {
    background: red;
    text-align: center;
    color: #bf9958;
    padding: 5px 0;
    font-size: 21px;
    color: #fff;
    margin: 20px 0;
}

.appsidebar .app-details .total-price {
    color: #fff;
    text-align: center;
    font-size: 40px;
}

.appsidebar p.price-breakdown a {
    display: block;
    text-align: center;
    padding: 10px 20px;
    border: 1px solid #ddd;
    max-width: 60%;
    color: #fff;
    margin: 0px auto 30px;
}

.appsidebar .page-content table {
    padding: 0 30px;
    display: block;
}

.appsidebar .page-content table tbody tr td {
    color: white;
    list-style: disc;
    display: block;
    margin: 0 0 5px;
    font-size: 15px;
}

.apprightbar form .input-field {
    margin: 0 0 20px;
}

.apprightbar form .input-field label {
    font-size: 15px;
}

.apprightbar form input.submit {
    background: red;
    border: none;
    color: #fff;
    margin: 20px 0 0;
    padding: 10px 15px;
    cursor: pointer;
}

.apprightbar h4 {
    margin: 0 0 20px;
    background: #565656;
    padding: 10px 15px;
    color: #fff;
    font-size: 20px;
}

#terms_conditions .page-content {
    background: #efe9e9;
    padding: 20px;
    font-size: 15px;
}

.site-content.contact form textarea {
    height: auto;
}

.booking-main p {
    color: #fff;
}















.roomsDetails h4 {
    font-size: 19px;
    margin: 0 0 10px;
}

.tableWrapper {
    margin: 30px 0 0;
}

.tableWrapper table {
    border: 1px solid #ddd;
    width: 100%;
}

.tableWrapper table tr td {
    border: 1px solid #ddd;
}

.tableWrapper h5 {
    margin: 0 0 10px;
    font-size: 16px;
}

.tableWrapper table tr td {
    border: 1px solid #ddd;
    font-size: 14px;
    padding: 10px 10px;
}

.tableWrapper table tr td:last-child {
    background: #eae3e3;
}

ul.pricelist {
    padding-left: 20px;
}

ul.pricelist li {
    margin: 0 0 5px;
    font-size: 14px;
    list-style: disc;
}

.pricebtn {
    display: inline-block;
    vertical-align: top;
    background: #ff0000;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    margin: 15px 0 0;
}

.pricebtn:hover {
    color: #fff;
}

.roomsgridView .roomsblock {
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid #ddd;
}

h3.rooms-heading {
    background: red;
    color: #fff;
    padding: 10px 15px;
    font-size: 20px;
}



.appsidebar .appcolumn form {
    padding: 0 30px;
}

.appsidebar .appcolumn form label {
    display: block;
    color: #fff;
}

.appsidebar .appcolumn form .form-group input {
    width: 100%;
    border: none;
    height: 30px;
    padding: 0 10px;
    font-size: 14px;
}

.appsidebar .appcolumn .select-wrapper select {
    width: 100%;
    height: 30px;
    border: none;
}

.apprigt .ui-datepicker-calendar tbody tr td {
    text-align: center;
}

.apprigt .ui-datepicker-calendar tbody tr td.ui-datepicker-unselectable span {
    display: block;
    width: auto;
    height: auto;
    text-align: center;
}

.apprigt .ui-datepicker-prev {
    top: 60px;
    left: 55px;
}

.apprigt .ui-datepicker-next {
    top: 60px;
    right: 55px;
}

.key-unavailable-wrapper,
.key-available-wrapper,
.key-selected-wrapper {
    position: relative;
    padding-left: 20px;
}

.key-unavailable-wrapper .key-unavailable-icon {
    height: 10px;
    width: 10px;
    background: #7b7b7b;
    position: absolute;
    top: 5px;
    left: 0;
}

.key-available-wrapper .key-available-icon {
    height: 10px;
    width: 10px;
    background: #fff;
    position: absolute;
    top: 5px;
    left: 0;
}

.key-selected-wrapper .key-selected-icon {
    height: 10px;
    width: 10px;
    background: #bf9958 ;
    position: absolute;
    top: 5px;
    left: 0;
}

.apprigt .ui-datepicker-calendar tbody tr td a {
    height: 35px;
    width: 35px;
    display: inline-block;
    color: #fff;
    line-height: 35px;
}

.apprigt .ui-datepicker-calendar tbody tr td a.ui-state-active {
    background: #bf9958;
    color: #fff;
}

.roomsgridView .booking-main > h4.title-style4 {
    background: red;
    color: #fff;
    padding: 10px 15px;
    font-size: 20px;
}

.roomsgridView .button2 {
    border: none;
    background: red;
    color: #fff;
    padding: 10px 15px;
    margin: 10px 0 0;
    cursor: pointer;
}

.roomsgridView .room-meta ul li {
    display: inline-block;
    color: #776a6a;
    font-size: 15px;
}

.roomsgridView .room-price p {
    color: #000;
    margin: 0 0 20px;
}

.roomsgridView .room-price p.price-breakdown > a {
    display: inline-block;
    color: #fff;
    background: #bdb4b4;
    padding: 5px 13px;
    font-size: 14px;
}

.roomsgridView .page-content table tr td {
    display: table-cell;
    border: 1px solid #bdb4b4;
    padding: 10px;
    font-size: 14px;
}

button.btn-toggle {
    width: 100%;
    height: 30px;
    font-size: 21px;
    border: none;
    background: #8a8282;
    color: #fff;
    text-align: right;
}

.home-reservation-box .booking-form input {
    font-size: 14px;
}

.home-reservation-box {
    position: absolute;
    top: 110px;
    left: 0;
    z-index: 1;
    width: 100%;
    text-align: right;
}

.home-reservation-box .booking-form input {
    display: inline-block;
    vertical-align: top;
    height: 40px;
    border: none;
    padding: 0 15px;
}

.home-reservation-box .booking-form .select-wrapper {
    display: inline-block;
    vertical-align: top;
    height:40px;
}

.home-reservation-box .booking-form .select-wrapper select {
    height: 40px !important;
    border: none;
    padding: 0 15px;
    font-size: 14px;
    -webkit-appearance: menulist-button;
    line-height: 35px;
}

.multiroom-link {
    display: none;
}

p.sorry {
    color: #000 !important;
}

p.price-breakdown {
    display: none;
}

.appsidebar .page-content table:first-of-type tbody tr:first-of-type td:first-child {
    display: none;
}

.booking-fields-form .hastextfield + .hastextfield {
    display: none;
}

#terms_conditions {
    display: none;
}

.modal {
    top: 10%;
}

.tgmodal {
    cursor: pointer;
    display: inline-block;
}

.modal-header {
    background: red;
    text-align: left;
    position: relative;
    padding: 10px 15px;
}

.modal-header .close {
    position: absolute;
    top: -5px;
    right: -1px;
    opacity: 1;
    text-shadow: none;
    height: 35px;
    width: 35px;
    border-radius: 100%;
    background: #ce2d2d;
    color: #fff;
}

.terms_content p {
    font-size: 14px;
    margin: 0 0 20px;
    line-height: 22px;
}

.terms_content p:last-of-type {
    margin: 0;
}

.modal-header h4 {
    margin: 0;
    color: #fff;
    font-size: 22px;
}

.modal-header .close span {
    position: absolute;
    top: 8%;
    left: 29%;
    font-size: 28px;
}

.modal-header .close:focus {
    outline: 0;
}

.site-logo {
    display: inline-block;
    vertical-align: middle;
    float:left;
}


.topbtn {
    color: #fff;
    vertical-align: middle;
    background: #bf1111;
    padding: 10px 10px;
    margin-left: 40px;
    font-size: 14px;
    text-align: center;
    font-weight: normal;
    float:left;
    width:205px;
    margin-top: 15px;
}

.topbtn:hover,
.topbtn:focus {
    color: #fff;
}
