﻿/* Defaults */
/*---------------------------------------------*/

html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: #FFF;
    font-family: "calibri", Arial, sans-serif;
    font-size: 16px;
    /* MustOverride: color */
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

p {
    display: block;
    margin: 1% 0;
    padding: 0;
    line-height: 22px;
}

    p span {
        display: block;
    }

/* Links */
/*---------------------------------------------*/

a {
    text-decoration: none;
    /* MustOverride: color */
}

    a:hover {
        text-decoration: underline;
    }

/* Lists */
/*---------------------------------------------*/

ul, ol {
    margin: 0;
    padding: 0;
}

    ul li, ol li {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

/* Headings */
/*---------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    /* MustOverride: color */
}

h1 {
    font-size: 24px;
}

.grid-section-wrapper.header h1 {
    display: none;
}

h2 {
    font-size: 22px;
}

h3 {
    margin: 5px 0;
}

.grid-section-wrapper.sub-header h2 {
    font-size: 30px;
    margin: 30px 0;
    text-align: center;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .grid-section-wrapper.sub-header h2 {
        font-size: 24px;
        margin: 15px 0;
    }
}

@media only screen and (max-width: 480px) {
    .grid-section-wrapper.sub-header h2 {
        margin: 10px 0;
    }
}

h3 {
    font-size: 18px;
}

/* Responsive grid system overrides */
/*---------------------------------------------*/

/*
#grid-container {
    border: 1px solid red;
}

.grid-section-wrapper {
    border: 1px solid blue;
}

.grid-section {
    border: 1px solid green;
}

.group {
    border: 1px solid blue;
}

.grid-col,
.grid-col-xs,
.single-centered-grid-col {
    border: 1px solid red !important;
}
*/

.grid-col.no-pad,
.grid-col.no-margin {
    margin: 0 0 0 0;
}

/* Responsive specific styles */

.visible-for-mobile {
    display: none;
}

@media only screen and (max-width: 767px) {
    .hidden-for-mobile {
        display: none !important;
    }

    .visible-for-mobile {
        display: block;
    }
}

/* Styles for Bootstrap layout debugging */
/*---------------------------------------------*/

/*
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.container-fluid {
    border: 1px solid red;
}

header,
main,
footer {
    border: 1px solid blue;
}

.row {
    border: 1px solid red;
}


.col,
.col-auto, .col-sm-auto, .col-md-auto, .col-lg-auto,
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    border: 1px solid blue;
}
*/

/* Homepage menu */
/*---------------------------------------------*/

.homepage-menu {
}

    .homepage-menu ul {
        overflow: hidden;
    }

        .homepage-menu ul li {
            float: left;
            width: 33.3%;
            height: 200px;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center center;
            position: relative;
            cursor: pointer;
            overflow: hidden;
        }

            .homepage-menu ul li .main-menu-panel {
                color: #fff;
                font-size: 24px;
                font-weight: bold;
                text-align: center;
                text-transform: uppercase;
                line-height: 200px;
                display: block;
                background-color: rgba(0, 0, 0, 0.4);
            }

            .homepage-menu ul li:hover .main-menu-panel {
                line-height: 50px;
                background-color: rgba(0, 0, 0, 0.2);
                transition-property: all;
                transition-duration: .5s;
                transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
            }

                .homepage-menu ul li .main-menu-panel span {
                    width: 100%;
                }

            .homepage-menu ul li .sub-menu-panel {
                position: absolute;
                top: 200px;
                right: 0;
                left: 0;
                width: 100%;
                height: 150px;
                background-color: rgba(0, 0, 0, 0.2);
            }

            .homepage-menu ul li:hover .sub-menu-panel {
                top: 50px;
                transition-property: all;
                transition-duration: .5s;
                transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
            }

                .homepage-menu ul li:hover .sub-menu-panel a {
                    display: block;
                    color: #fff;
                    text-align: center;
                }

@media only screen and (max-width: 995px) {
    .homepage-menu ul li {
        width: 33.3%;
    }
}

@media only screen and (max-width: 767px) {
    .homepage-menu ul li {
        width: 50%;
    }
}

@media only screen and (max-width: 480px) {
    .homepage-menu ul li {
        width: 100%;
    }
}

/* MOBILE MENU
----------------------------------------------------------*/

.mobile-header-menu {
    display: none;
}

    .mobile-header-menu .toggle-menu {
        text-align: right;
        display: block;
    }

    .mobile-header-menu h3,
    .mobile-header-menu a {
        text-align: center;
        display: block;
    }

@media only screen and (max-width: 767px) {
    .mobile-header-menu {
        display: block;
    }
}


/* MENU (SF = SUPERFISH PLUGIN)
----------------------------------------------------------*/

.header-menu {
    position: absolute;
}

.sf-menu a.image_link {
    padding: 0 10px;
}

.sf-menu a.image_link:hover {
    background-color: #FFF;
}

.sf-menu a.image_link img {
    max-height: 44px;
    display: block;
}

    .sf-menu a.image_link .sf-sub-indicator {
        display: none;
    }

@media only screen and (max-width: 995px) {
}

@media only screen and (max-width: 767px) {
    .sf-menu {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
}

.sf-menu {
}

    .sf-menu ul {
        /*box-shadow: 2px 2px 6px rgba(0,0,0,.2);*/
        min-width: 12em;
    }

    .sf-menu li {
        white-space: nowrap;
        /* MustOverride ... */
        /*background-color: #fff;*/
    }

        .sf-menu li:hover {
            /* MustOverride ... */
            /*color: #000;*/
        }

    .sf-menu a {
        padding: .75em 1em;
        text-decoration: none;
        cursor: pointer;
        /* MustOverride ... */
        /*color: #bebbba;*/
        /*background-color: #fff;*/
    }

        .sf-menu a.sf-with-ul:hover {
            /* MustOverride ... */
            /*color: #000;*/
            /*background-color: #fff;*/
        }

        .sf-menu a:hover {
            /* MustOverride ... */
            /*color: #fff;*/
            /*background-color: #000;*/
        }

/* Primary layout elements */
/*---------------------------------------------*/

.grid-section-wrapper.header {
}

    .grid-section-wrapper.header .grid-section {
    }

#grid-container.login .grid-section-wrapper.sub-header {
    display: none;
}

.grid-section-wrapper.sub-header {
}

    .grid-section-wrapper.sub-header .grid-section {
    }

.grid-section-wrapper.banner {
}

    .grid-section-wrapper.banner .grid-section {
    }

.grid-section-wrapper.main-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

    .grid-section-wrapper.main-content .grid-section {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

@media only screen and (max-width: 767px) {
    .grid-section-wrapper.main-content .grid-section {
    }
}

#grid-container.login .grid-section-wrapper.main-content {
    /* Content of login screen is in the banner */
    display: none;
}

.grid-section-wrapper.footer {
}

    .grid-section-wrapper.footer .grid-section {
        /*padding: 20px 0;*/
    }

.margin-all {
    margin: 10px;
    /*margin: 1%;*/
}

.margin-none {
    margin: 0;
}

.margin-none-t {
    margin-top: 0;
}

.margin-none-l {
    margin-left: 0;
}

.margin-half-t {
    margin: 5px 0 0 0;
    /*margin: 0.5% 0 0 0;*/
}

.margin-t {
    margin: 10px 0 0 0;
    /*margin: 1% 0 0 0;*/
}

.margin-tb {
    margin: 10px 0;
    /*margin: 1% 0;*/
}

.margin-t {
    margin: 10px 0 0 0;
    /*margin: 1% 0 0 0;*/
}

.margin-r {
    margin: 0 10px 0 0;
    /*margin: 0 1% 0 0;*/
}

.margin-b {
    margin: 0 0 10px 0;
    /*margin: 0 0 1% 0;*/
}

.margin-half-b {
    margin: 0 0 5px 0;
    /*margin: 0 0 0.5% 0;*/
}

.margin-l {
    margin: 0 0 0 10px;
    /*margin: 0 0 0 1%;*/
}

.margin-tr {
    margin: 10px 10px 0 0;
    /*margin: 1% 1% 0 0;*/
}

.margin-half-tb {
    margin: 5px 0;
}

.padding-all {
    padding: 10px;
    /*padding: 1%;*/
}

.padding-half-all {
    padding: 5px;
}

.padding-none {
    padding: 0;
}

.padding-none-b {
    padding-bottom: 0;
}

.padding-tb {
    padding: 10px 0;
}

.padding-half-tb {
    padding: 5px 0;
}

.padding-t {
    padding: 10px 0 0 0;
}

.padding-r {
    padding: 0 10px 0 0;
}

.padding-tr {
    padding: 10px 10px 0 0;
}

.padding-l {
    padding: 0 0 0 10px;
}

.padding-b {
    padding: 0 0 10px 0;
}

.padding-half-b {
    padding: 0 0 5px 0;
}

.padding-lr {
    padding: 0 10px;
}

.padding-lrb {
    padding: 0 10px 10px 10px;
}

.no-border {
    border: 0 none;
}

.border-dashed-b {
    border-bottom: 1px dashed #D3D3D3;
}

.border-solid-b {
    border-bottom: 1px solid #D3D3D3;
}

.border-radius-all {
    border-radius: 5px;
}

.fl,
.float-left {
    float: left;
}

.fr,
.float-right {
    float: right;
}

.clearing {
    clear: both;
}

.clearing-container {
    overflow: hidden;
}

.lh {
    line-height: 24px;
}

.lal,
.tal,
.align-left,
.align_left {
    text-align: left;
}

.cal,
.tac,
.align-center,
.align_center {
    text-align: center;
}

.ral,
.tar,
.align-right,
.align_right,
.align-right-desktop-only {
    text-align: right;
}

@media only screen and (max-width: 767px) {
    .align-right-desktop-only {
        text-align: left;
    }
}

.vat {
    vertical-align: top;
}

.vam {
    vertical-align: middle;
}

.vab {
    vertical-align: bottom;
}

.buttons-lal,
.buttons_lal {
    text-align: left;
    margin: 5px 0;
}

.buttons-ral,
.buttons_ral {
    text-align: right;
    margin: 5px 0;
}

.hidden-column,
.hidden_column {
    display: none;
}

.display-none,
.display_none {
    display: none;
}

.display-inline {
    display: inline;
}

.display-inline-block {
    display: inline-block;
}

.display-block {
    display: block;
}

.visibility-hidden {
    visibility: hidden;
}

.info-text,
.error-text,
.success-text {
    padding: 10px;
    overflow: hidden;
}

.info-text {
    background-color: #FCFAF2;
    border: 1px solid #FCEFA1;
    color: #3282FF;
}

    .info-text h1,
    .info-text h2,
    .info-text h3 {
        color: #3282FF;
    }

.error-text {
    background-color: #FEF6F3;
    border: 1px solid #CD0A0A;
    color: #CD0A0A;
}

.success-text {
    background-color: #ddffdd;
    border: 1px solid #9bd89b;
}

.bordered-box {
    text-align: left;
    border: 1px solid #D3D3D3;
    overflow: hidden;
}

.word_break_all {
    word-break: break-all;
}

.white-space-nowrap {
    white-space: nowrap;
}

.form-fieldset-container {
    border: 1px solid #d3d3d3;
    background-color: #FFF;
    overflow: hidden;
    border-radius: 4px;
}

.form-fieldset-legend {
    background-color: #d3d3d3;
    color: #FFF;
    /* MustOverride: background-color, color */
    display: block;
    text-align: center;
    padding: 5px 0;
    margin: 0;
}

.user-login-silhouette {
    background: url("../images/user-login-silhouette.png") no-repeat scroll center center #F1F1F1;
    height: 153px;
}

.user-change-password-silhouette {
    background: url("../images/user-change-password-silhouette.png") no-repeat scroll center center #F1F1F1;
    height: 153px;
}

.page_top_text,
.page_footer_text {
    margin: 1% 0;
}

    /* Difficult to predict dynamic content of page top and footer text - however try and restrict images to 100% width max */
    .page_header_image img,
    .page_top_text img,
    .page_footer_text img {
        max-width: 100%;
    }

.password-strength-meter {
    width: 100%;
    border: solid 1px #D3D3D3;
    background-color: #F1F1F1;
    border-radius: 3px;
}

    .password-strength-meter .default,
    .password-strength-meter .very-weak,
    .password-strength-meter .weak,
    .password-strength-meter .medium,
    .password-strength-meter .strong,
    .password-strength-meter .very-strong {
        height: 14px;
        background-color: green;
    }

    .password-strength-meter .default {
        width: 0px;
    }

    .password-strength-meter .very-weak {
        width: 20%;
        background-color: #FF0000;
    }

    .password-strength-meter .weak {
        width: 40%;
        background-color: #FF0000;
    }

    .password-strength-meter .medium {
        width: 60%;
        background-color: #FFFF00;
    }

    .password-strength-meter .strong {
        width: 80%;
        background-color: #008000;
    }

    .password-strength-meter .very-strong {
        width: 100%;
        background-color: #008000;
    }

.password-validation,
.password-validation span {
    font-size: 14px;
    line-height: 14px !important;
}

    .password-validation .pass,
    .password-validation .fail {
        font-weight: bold;
    }

    .password-validation .pass {
        color: green;
    }

    .password-validation .fail {
        color: red;
    }

ul.password-requirements {
    padding-left: 50px;
}

    ul.password-requirements li {
        list-style-type: disc;
    }

.flexslider {
    position: relative;
}

    .flexslider .blend-lhs {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 10%;
        z-index: 1;
        background: -moz-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 ); /* IE6-9 */
    }

    .flexslider .blend-rhs {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 10%;
        z-index: 1;
        background: -moz-linear-gradient(right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 ); /* IE6-9 */
    }

    .flexslider ul li div {
        width: 100%;
        height: 500px;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

.flex-control-nav,
.flex-direction-nav {
    display: none;
}

@media only screen and (max-width: 995px) {
    .flexslider ul li div {
        height: 500px;
    }
}

@media only screen and (max-width: 767px) {
    .flexslider ul li div {
        height: 400px;
    }
}

@media only screen and (max-width: 480px) {
    .flexslider ul li div {
        height: 200px;
    }
}

.login-container {
    position: relative;
}

.proposal-company-logo {
    height: 150px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Venue search results */

.grid-col.hotel_result_item {
    position: relative;
}

    .grid-col.hotel_result_item:nth-child(3n+1) {
        margin-left: 0;
        clear: left;
    }

@media only screen and (max-width: 767px) {

    .grid-col.hotel_result_item:nth-child(3n+1) {
        margin-left: 1%;
        clear: none;
    }

    .grid-col.hotel_result_item:nth-child(odd) {
        margin-left: 0;
        clear: left;
    }

    .grid-col.hotel_result_item {
        width: 49.5%;
        margin: 1% 0 1% 1%;
    }
}

@media only screen and (max-width: 480px) {

    .grid-col.hotel_result_item {
        width: 100%;
        margin-left: 0;
    }
}

.hotel_result_item a .hotel_info {
    color: #000;
}

.hotel_result_item a:hover {
    text-decoration: none;
}

.hotel_result_item .hotel_graphic {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #E5E5E5;
    height: 150px;
}

.hotel_result_item .hotel_info {
    position: relative;
    padding: 5px 29px 5px 0;            
}

    .hotel_result_item .hotel_info h4 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .hotel_result_item .hotel_info .preferred_status {
        position: absolute;
        top: 7px;
        right: 0;
        width: 24px;
        height: 24px;
    }

.hotel_result_item .add_to_enquiry_panel {
    position: absolute;
    top: 0;
    right: 0;
}

.glyphicon_label {
    display: block; /* Should get inherited if inside a pragraph tag anyway */
    padding-left: 20px;
    background-repeat: no-repeat;
    background-position: left center;
    background-color: transparent;
    font-weight: bold;
    text-align: left;
}

    .glyphicon_label.phone {
        background-image: url('../images/proposal_phone.png');
    }

    .glyphicon_label.fax {
        background-image: url('../images/proposal_fax.png');
    }

    .glyphicon_label.date {
        background-image: url('../images/proposal_date.png');
    }

    .glyphicon_label.time {
        background-image: url('../images/proposal_time.png');
    }

    .glyphicon_label.no_of_people {
        background-image: url('../images/proposal_no_of_people.png');
    }

    .glyphicon_label.duration {
        background-image: url('../images/proposal_duration.png');
    }

    .glyphicon_label.natural_daylight {
        background-image: url('../images/proposal_natural_daylight.png');
    }

    .glyphicon_label.air_conditioning {
        background-image: url('../images/proposal_air_conditioning.png');
    }

    .glyphicon_label.venue_sustainability_tick {
        background-image: url('../images/green_tick.png');
        background-size: 16px;
        /*padding-left: 30px;*/
        font-weight: normal;
        /*line-height: 24px;*/
    }

.hotel_graphic,
.hotel_graphic_thumb {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #000;
}

.hotel_graphic {
    height: 266px;
}

.hotel_graphic_thumb {        
    display: block;
    height: 85.33px;
}

.hotel_graphic_thumb:nth-child(1),
.hotel_graphic_thumb:nth-child(2) {
    margin-bottom: 5px;
}

@media only screen and (max-width: 995px) {
    .hotel_graphic {
        height: 213px;
    }

    .hotel_graphic_thumb {
        height: 67.67px;
    }
}

@media only screen and (max-width: 767px) {
    .hotel_graphic {
        height: 230px;
    }

    .hotel_graphic_thumb {
        height: 73.33px;
    }
}

@media only screen and (max-width: 480px) {
    .hotel_graphic {
        display: block;
        width: 100%;
        height: 225px;
        margin: 5px 0;
    }

    .hotel_graphic.display_none {
        display: block;
    }

    .hotel_graphic_thumb {
        display: none;
    }
}

.flat-panel-dialog .ui-dialog-titlebar {
    display: none;
}

.flat-panel-dialog.ui-dialog {
    padding: 0;
}

.flat-panel-dialog .ui-dialog-content {
}

.flat-panel-dialog,
.flat-panel-dialog .ui-dialog-content,
.flat-panel-dialog .ui-widget-content {
    background: none #FFF !important;
    /*border: none !important;*/    
}

/* Form elements */
/*---------------------------------------------*/

.literal,
.label {
    font-weight: normal;
}

.literal-above {
    display: block;
    width: 100%;
}

.xx-small-font-size {
    font-size: 10px;
}

.x-small-font-size {
    font-size: 12px;
}

.small-font-size {
    font-size: 14px;
}

.medium-font-size {
    font-size: 16px;
}

.large-font-size {
    font-size: 18px;
}

.x-large-font-size {
    font-size: 20px;
}

.xx-large-font-size {
    font-size: 24px;
}

.paragraph-text {
    display: block;
    margin: 5px 0;
    padding: 0;
    line-height: 22px;
}

/* Legacy table layout - phase out? */
.TableLayout {
    width: 100%;
    margin: 1px 0;
}

    .TableLayout td {
        padding: 1px 0;
        margin: 0;
    }

div.input_block,
p.input_block,
.form_fieldset {
    overflow: hidden;
    margin: 2px 0px;
    width: 100%;
}

    div.input_block span,
    .form_fieldset span {
        display: block;
        overflow: hidden;
        /*_height: 1%;*/
    }

/*.literal,*/
.literal70,
.literal100,
.literal125,
.literal150,
.literal200 {
    float: left;
    text-align: right;
    margin-right: 5px;
    padding: 1px;
    border: solid 1px #DCDCDC;
    clear: left;
}

div.input_block .noborder {
    border-color: #FFF;
}

.literal70 {
    width: 70px;
}

.literal100 {
    width: 100px;
}

.literal125 {
    width: 125px;
}

.literal150 {
    width: 150px;
}

.literal200 {
    width: 200px;
}

.form_control_group {
}

    .form_control_group .literal,
    .form_control_group .label,
    .form_control_group label,
    .form_control_group span {
        line-height: 28px;
        display: inline-block;
    }

    /*.form_control_group .literal,*/
    .form_control_group .literal-above {
        font-weight: bold;
    }

    .form_control_group .collpase-empty-space:empty {
        line-height: initial;
        display: none;
    }

    .form_control_group .reserve-empty-space:empty:before {
        /*min-height: 28px;*/
        content: "\200b";
    }

    .form_control_group .grid-col,
    .form_control_group .grid-col-xs,
    .form_control_group .single-centered-grid-col {
        /*margin-top: 0.5%;
        margin-bottom: 0.5%;*/
        margin-top: 5px;
        margin-bottom: 5px;
    }

        .form_control_group .grid-col.no-margin,
        .form_control_group .grid-col.no-margin-tb,
        .form_control_group .grid-col-xs.no-margin,
        .form_control_group .grid-col-xs.no-margin-tb {
            margin-top: 0;
            margin-bottom: 0;
        }

        .form_control_group .grid-col.no-margin-t,
        .form_control_group .grid-col-xs.no-margin-t {
            margin-top: 0;
        }

    .form_control_group ul li {
        line-height: 28px;
    }

.form_control_group span.normal_line_height {
    line-height: normal;
}

.form_control_group span.force_line_height {
    line-height: 28px !important;
}

/* On mobiles controls will wrap, therefore line height can be reduced. */
@media only screen and (max-width: 767px) {
    .form_control_group .literal,
    .form_control_group .label,
    .form_control_group label,
    .form_control_group span {
        line-height: 22px;
    }

    /*
    .form_control_group .reserve-empty-space {
        min-height: 22px;
    }
    */

    .form_control_group ul li {
        line-height: 22px;
    }

    .form_control_group .grid-col,
    .form_control_group .grid-col-xs,
    .form_control_group .single-centered-grid-col {
        margin-top: 2px;
        margin-bottom: 2px;
    }
}

.xx_small,
.xx-small-width {
    width: 50px;
}

.x_small,
.x-small-width {
    width: 100px;
}

.small,
.small-width {
    width: 150px;
}

.medium,
.medium-width {
    width: 200px;
}

.large,
.large-width {
    width: 250px;
}

.x_large,
.x-large-width {
    width: 300px;
}

.xx_large,
.xx-large-width {
    width: 400px;
}

.full-width,
.full_width {
    width: 100%;
}

.half-width {
    width: 49%;
}

.one-third-width {
    width: 33%;
}

.two-thirds-width {
    width: 66%;
}

.full-width-max,
.full_width_max {
    max-width: 100%;
}

.Label {
}

.LabelMain {
    font-weight: bold;
}

.LabelError {
    color: #FF0000;
}

.LabelSuccess {
    color: #0000FF;
}

.LabelTitle {
    font-size: 22px;
    font-weight: bold;
}

.LabelMenu {
    font-weight: bold;
    display: block;
}

.LabelBold,
.label_bold,
.bold {
    font-weight: bold;
}

.LabelItalic,
.label_italic,
.italic {
    font-style: italic;
}

.Textbox,
.textbox,
.DropDownList,
.dropdownlist,
/*.CheckBox,*/
input[type="text"],
input[type="password"],
textarea,
select {
    font-family: "calibri", Arial, sans-serif;
    font-size: 15px;
    border: 1px solid #D3D3D3;
    /* MustOverride: color */
    padding: 4px;
}

textarea {
    resize: none;
}

/* Drop down lists seem to be 2px larger - reduce padding to bring inline with other inputs */
select {
    padding: 3px;
}

.radio-button,
.check-box,
.checkbox {
    overflow: hidden;
}

    .radio-button input[type=radio],
    .check-box input[type=checkbox],
    .checkbox input[type=checkbox] {
        float: left;
        margin-top: 7px;
        margin-right: 10px;
    }

    .radio-button label,
    .check-box label,
    .checkbox label {
        display: block;
        margin-left: 25px;
        line-height: 28px;
    }

@media only screen and (max-width: 767px) {
    .radio-button input[type=radio],
    .check-box input[type=checkbox],
    .checkbox input[type=checkbox] {
        margin-top: 4px;
    }

    .radio-button label,
    .check-box label,
    .checkbox label {
        line-height: 22px;
    }
}

@media only screen and (max-width: 480px) {
    .radio-button,
    .check-box,
    .checkbox {
        width: 100%;
    }
}

/* CB + RB lists - needed? */

.check-box-list label,
.radio-button-list label {
    padding: 0 10px 0 5px;
    line-height: 28px;
}

@media only screen and (max-width: 480px) {
    .check-box-list,
    .radio-button-list {
        overflow: hidden;
    }

        .check-box-list input,
        .check-box-list label,
        .radio-button-list input,
        .radio-button-list label {
            float: left;
        }

        .check-box-list input,
        .radio-button-list input {
            clear: left;
        }
}

/* Legacy buttons */
.Button,
.button-state-default,
input[type="button"],
input[type="submit"],
.button, .ui-dialog .ui-dialog-buttonpane button {
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    /* MustOverride: background-color, color */
}

.ui-dialog .ui-dialog-buttonpane button {
    background: none;
    min-width: 125px;
}

    .Button:hover,
    .button-state-hover,
    input[type="button"]:hover,
    input[type="submit"]:hover {
    }

    .Button:disabled,
    .button-state-default:disabled,
    input[type="button"]:disabled,
    input[type="submit"]:disabled {
        cursor: default;
    }

/* RWD buttons with support for an icon */
.button-primary,
.button-secondary {
    cursor: pointer;
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

    .button-primary span,
    .button-secondary span {
        font-size: 16px;
        vertical-align: middle;
        white-space: nowrap;
        display: inline-block;
        line-height: 24px;
    }

.button-primary {
    /* MustOverride: background-color */
}

    .button-primary span {
        /* MustOverride: color */
    }

    .button-primary:hover {
        /* MustOverride: background-color */
    }

        .button-primary:hover span {
            /* MustOverride: color */
        }

.button-secondary {
    /* MustOverride: background-color */
}

    .button-secondary span {
        /* MustOverride: color */
    }

/* Responsive layout - make buttons full width for mobile (portrait) */
@media only screen and (max-width: 480px) {
    .Button,
    .button-state-default,
    input[type="button"],
    input[type="submit"],
    .button-primary,
    .button-secondary {
        width: 100%;
        margin: 2px 0;
    }
}

.glyphicon-label {
    display: block; /* Should get inherited if inside a pragraph tag anyway */
    padding-left: 28px;
    background-repeat: no-repeat;
    background-position: left top 2px;
    background-color: transparent;
    margin: 2px 0;
}

    .glyphicon-label.warning-message {
        background-image: url("../images/glyphicon-warning-message.png");
    }

    .glyphicon-label.circle-info {
        background-image: url("../images/glyphicon-circle-info.png");
    }

/* Tables */
/*---------------------------------------------*/

.scrollable
{
    overflow: scroll;
    overflow-x: hidden;
}

.scroll-x
{
    overflow-x: scroll;
}

.standard_grid {
    font-size: 14px;
    /* MustOverride: color */
    border-collapse: collapse;
    border: 1px solid #D9D9D9;
    width: 100%;
    /*margin: 10px 0;*/
    margin: 5px 0;
}

    .standard_grid th,
    .standard_grid td {
        padding: 5px;
        text-align: left;
        vertical-align: top;
    }

    .standard_grid th {
        border: none;
        font-weight: bold;
        /* MustOverride: background-color, color */
    }

        .standard_grid th a {
        }

    .standard_grid td {
        border: none;
        /* MustOverride: background-color, color */
    }

        .standard_grid td a {
        }

    .standard_grid .alt td {
        /* MustOverride: background-color, color */
    }

    .standard_grid .unselected td {
        /* MustOverride: background-color, color */
        cursor: default;
    }

    .standard_grid .selected td {
        /* MustOverride: background-color, color */
        cursor: default;
    }

    .standard_grid th.ral,
    .standard_grid td.ral {
        text-align: right;
    }

    .standard_grid th.cal,
    .standard_grid td.cal {
        text-align: center;
    }

.standard_grid_container {
    /*padding: 0;*/
    /*margin: 10px 0;*/
    border: 1px solid #DEDEDE;
    /*overflow: scroll;*/
    /*overflow-x: hidden;*/
    /*background-color: #FFF;*/
}

@media only screen and (max-width: 767px) {
    .standard_grid.responsive {
        border: none;
    }

        .standard_grid.responsive thead,
        .standard_grid.responsive tr.legacy_datagrid_header {
            display: none;
        }

        .standard_grid.responsive tr {
            margin-bottom: 5px;
            display: block;
            border: 1px solid #D9D9D9;
            border-radius: 5px;
        }

            .standard_grid.responsive tr:last-child {
                margin-bottom: 0;
            }

        .standard_grid.responsive td {
            position: relative;
            display: block;
            padding-left: 35%;
            min-height: 29px;
            width: 100% !important;
        }

            .standard_grid.responsive td:last-child {
                /*border-bottom: 0;*/
            }

            .standard_grid.responsive td:before {
                content: attr(data-header-text);
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                width: 33%;
                padding: 5px 0;
                text-indent: 5px;
                /* MustOverride: background-color, color */
                
            }

            .standard_grid.responsive td.ral,
            .standard_grid.responsive td.cal {
                text-align: left;
            }
}

.new_enquiry_rooms {
    width: auto;
    border-collapse: collapse;
}

    .new_enquiry_rooms th,
    .new_enquiry_rooms td {
        padding-left: 0;
    }

    .new_enquiry_rooms th {
        font-size: 13px;
        font-weight: bold;
        text-align: left;
    }

.table_sort th {
    cursor: pointer;
}

/* Social networking icons */
/*---------------------------------------------*/

.socialnetworking {
    text-align: center;
    margin: 10px 0;
}

    .socialnetworking span {
    }

    .socialnetworking img {
        border: 0;
    }

    .socialnetworking a {
        width: 25px;
        height: 25px;
        display: inline-block;
        overflow: hidden;
        margin: 0 0 0 1px;
        position: relative;
        border: 0;
        vertical-align: middle;
    }

        .socialnetworking a.twittericon {
            background: url('../../images/shared/twitter.png') no-repeat;
        }

        .socialnetworking a.facebookicon {
            background: url('../../images/shared/facebook.png') no-repeat;
        }

/* Styles to make the file upload control look half decent */
/*---------------------------------------------*/

div.file_inputs {
    position: relative;
    /*width: 77px;*/
    height: 39px;
    overflow: hidden;
}

.fake_file {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
    width: 100%;
    height: 39px;
}

.real_file {
    position: absolute;
    top: 0px;
    right: 0px;
    -moz-opacity: 0;
    filter: alpha(opacity: 0);
    opacity: 0;
    z-index: 2;
    width: 100%;
    height: 39px;
}

/* JQuery UI Overrides */
/*---------------------------------------------*/

/* To fix IE8 issue where the overlay is larger than the screen therefore forcing scrollbars to display */
.ui-widget-overlay {
    position: fixed;
}

#menu .ui-datepicker,
.side-menu .ui-datepicker {
    width: auto;
}

/* Fixes for the social networking plugins */

.fb_iframe_widget {
    vertical-align: top;
}

.ui-datepicker {
    display: none;
}

.ui-widget-content a {
    /* MustOverride: color */
}

.ui-widget {
    font-family: "calibri", Arial, sans-serif;
}

    .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
        font-family: "calibri", Arial, sans-serif;
    }

.ui-widget-content {
    color: #6f7072;
}

.postcode-lookup-dialog.ui-dialog .ui-dialog-content {
    padding: 10px;
}

/* Misc */
/*---------------------------------------------*/

