﻿@import '_vars.css';
@import 'ez-manual.css';
@import 'ez-contact-cards.css';

body {
    font-family: var(--primary-font-family);
    font-size: 16px;
    background: #f8f8f8;
}

    body.no-scroll {
        overflow-y: hidden;
    }

a, a:hover, a:active, a:focus {
    -moz-outline: 0;
    outline: 0;
}

ul, ul li {
    list-style-type: none;
}

input, button, select, textarea,
input.form-control, button.form-control, select.form-control, textarea.form-control {
    font-family: var(--input-font-family);
    font-size: 1em;
}

.form-row input.form-control-inline {
    display: inline;
    width: auto;
    box-shadow: none;
    height: auto;
}

label {
    font-size: 1em;
    font-weight: 600;
}


/*Buttons*/

button.btn,
a.btn {
    position: relative;
    z-index: 0;
    font-weight: 300;
    padding: 10px 20px 10px 20px;
    font-size: 18px;
    text-align: center;
    min-width: 120px;
    text-decoration: none;
    border: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-transition: all 275ms cubic-bezier(0.4,0.0,0.2,1);
    -o-transition: all 275ms cubic-bezier(0.4,0.0,0.2,1);
    -webkit-transition: all 275ms cubic-bezier(0.4,0.0,0.2,1);
    transition: all 275ms cubic-bezier(0.4,0.0,0.2,1);
    font-family: var(--form-font-family);
    background-color: var(--form-button-background-color);
    color: var(--form-button-text-color);
}

    button.btn-default,
    a.btn.btn-default {
        color: #FFF;
    }

button.button__loading {
    padding-right: 30px;
    position: relative;
}

.button__loading-icon {
    position: absolute;
    right: 20px;
    font-size: 18px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

button[type="submit"],
.btn.btn-primary {
    background-color: var(--secondary-color);
    /*font-weight: 600;*/
}

.btn.btn-default:hover {
    background-color: var(--form-button-background-color);
    border-color: var(--form-button-background-color);
}

.btn.btn-primary:hover {
    color: var(--primary-color);
}

.btn:hover {
    color: var(--primary-color);
}

.btn::after,
.btn.btn-primary::after {
    content: '';
    width: 0;
    height: 0%;
    left: 50%;
    background: var(--primary-button-hover-color);
    z-index: -1;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    top: 50%;
    -moz-opacity: 0;
    opacity: 0;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.btn:hover::after,
.btn.btn-primary:hover::after {
    width: 100%;
    position: absolute;
    left: 0;
    -moz-opacity: 1;
    opacity: 1;
    height: 100%;
    top: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.form-control:focus {
    border-color: var(--secondary-color);
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 10px var(--secondary-color-shade-03);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 10px var(--secondary-color-shade-03);
}

button:focus,
button:active {
    outline: 0;
}




/*.btn {*/
/*    position: relative;*/
/*    z-index:0;*/
/*}*/

/*.btn.btn-primary {*/
/*    color: #000;*/
/*    background-color: var(--secondary-color);*/
/*    border-color: var(--secondary-color);*/
/*    font-family: var(--primary-font-family);*/
/*    -moz-transition: all 0.25s;*/
/*    -o-transition: all 0.25s;*/
/*    -webkit-transition: all 0.25s;*/
/*    transition: all 0.25s;*/
/*    padding: 8px 14px;*/
/*    font-size:1em;*/
/*}*/

/*.btn.btn-primary:hover{*/
/*    color:var(--primary-color);*/
/*}*/

/*.btn:hover{*/
/*    color:var(--primary-color);*/
/*}*/

/*.btn::after,*/
/*.btn.btn-primary::after {*/
/*    content: '';*/
/*    width: 0;*/
/*    height: 0%;*/
/*    left: 50%;*/
/*    background: var(--primary-button-hover-color);*/
/*    z-index: -1;*/
/*    -moz-transition: all 0.25s;*/
/*    -o-transition: all 0.25s;*/
/*    -webkit-transition: all 0.25s;*/
/*    transition: all 0.25s;*/
/*    top: 50%;*/
/*    -moz-opacity: 0;*/
/*    opacity: 0;*/
/*    -moz-border-radius: 50%;*/
/*    -webkit-border-radius: 50%;*/
/*    border-radius: 50%;*/
/*}*/
/*.btn:hover::after,*/
/*.btn.btn-primary:hover::after {*/
/*    width: 100%;*/
/*    position: absolute;*/
/*    left: 0;*/
/*    -moz-opacity: 1;*/
/*    opacity: 1;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    -moz-border-radius: 0;*/
/*    -webkit-border-radius: 0;*/
/*    border-radius: 0;*/
/*}*/

/*.form-control:focus {*/
/*    border-color: var(--secondary-color);*/
/*    -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 10px var(--secondary-color-shade-03);*/
/*    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 10px var(--secondary-color-shade-03);*/
/*}*/

/*** Header*/
.banner-event {
    height: 110px;
    background-color: var(--primary-color);
    -moz-transition: height 0.5s;
    -o-transition: height 0.5s;
    -webkit-transition: height 0.5s;
    transition: height 0.5s;
    position: absolute;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

    .banner-event .container {
        display: flex;
        align-items: center;
        height: 100%;
    }

@media (max-width: 768px) {
    .banner-event {
        position: fixed;
        height: 60px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: 5px 0px 25px 0px rgba(0,0,0,0.45);
        background: var(--primary-color);
    }
}

.main-logo {
    max-height: 100px;
    -moz-transition: height 0.5s, width 0.5s, border-radius 0.5s;
    -o-transition: height 0.5s, width 0.5s, border-radius 0.5s;
    -webkit-transition: height 0.5s, width 0.5s, border-radius 0.5s;
    transition: height 0.5s, width 0.5s, border-radius 0.5s;
    position: relative;
    z-index: 100;
}

    /*Just needed if the logos have different version for the landing page and the exhibitor zone once logged in*/
    .main-logo.exhibitor-zone {
        display: inline-block;
    }

    .main-logo.sign-in {
        display: none;
    }

    .main-logo img {
        max-height: 60px;
        -moz-transition: height 0.5s, width 0.5s;
        -o-transition: height 0.5s, width 0.5s;
        -webkit-transition: height 0.5s, width 0.5s;
        transition: height 0.5s, width 0.5s;
    }

@media (max-width:768px) {
    .main-logo {
        max-height: 50px;
    }

        .main-logo img {
            max-height: 50px;
        }
}

header h1 {
    display: inline-block;
    text-align: right;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
}

@media (max-width:576px) {
    header h1 {
        display: none;
    }
}

#menu {
    display: inline-block;
    width: 515px;
    position: relative;
    left: 50px;
}

#hamburger {
    position: relative;
    color: #FFFFFF;
    font-size: 30px;
    text-decoration: none;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100;
    width: 50px;
    height: 50px;
    display: inline-table;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    text-align: center;
    vertical-align: middle;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin-left: 20px;
    border: 2px solid #FFF;
    background: var(--primary-color);
}

    #hamburger i {
        display: table-cell;
        vertical-align: middle;
    }

    #hamburger:hover:active,
    #hamburger:hover {
        background-color: var(--secondary-color);
    }

body.home-index #hamburger, body.listing-index #hamburger {
    display: none;
}


@media only screen and (max-width: 420px) {
    #menu {
        left: initial;
        right: 0px;
    }

    #hamburger {
        position: absolute;
        right: 10px;
        top: 5px;
    }

    header h1 {
        display: none;
    }
}

/*Classes to modify Bootstrap ones*/
.row.no-margin,
div[class*="col-"].no-margin {
    margin: 0;
    padding: 0;
}

.row.break {
    margin-bottom: 10px;
}

.row.margin-top {
    margin: 10px 0 0 0;
}

.row.margin-bottom {
    margin: 10px 0;
}

.row.margin-top-bottom {
    margin: 10px 0;
}

.alert.alert-danger.centered-text {
    text-align: center;
}

.input-group-addon {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    color: #FFFFFF;
}

.alert {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #F26419;
    color: #F26419;
    border-style: dotted;
}

/*Forms*/
.form-horizontal.labels-left .control-label {
    text-align: left;
}

input[type="radio"], input[type="checkbox"] {
    display: inline-block;
}

input[type=text].form-control.phone-fax {
    /*width:85%;
    float:right;*/
    display: inline-block;
    border-left-color: #7B7B7B;
}

.form-group i.field-validation-error {
    position: absolute;
    right: -10px;
    top: 8px;
    cursor: pointer;
    color: #a94442;
}

.form-field-info {
    font-size: 1em;
}

/*Tables*/

.table-index-page {
    margin-top: 25px;
}

    .table-index-page > tbody > tr > td {
        position: relative;
    }

    .table-index-page > tbody > tr.deleting-row > td::after {
        content: " ";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        background-color: rgba(255,255,255,0.7);
        z-index: 2;
    }

    .table-index-page > thead > tr > th {
        border-bottom: 1px solid var(--primary-color);
        background: var(--primary-color);
        color: #FFFFFF;
    }

    .table-index-page > tbody > tr > td {
        vertical-align: middle;
        background: #fff;
    }

    .table-index-page > thead > tr > th:first-of-type {
        border-left: 1px solid var(--primary-color);
    }

    .table-index-page > thead > tr > th:last-of-type {
        border-right: 1px solid var(--primary-color);
    }

    .table-index-page > tbody > tr > td:first-of-type {
        border-left: 1px dashed #DDD;
    }

    .table-index-page > tbody > tr > td:last-of-type {
        border-right: 1px dashed #DDD;
    }

    .table-index-page > tbody > tr:last-of-type > td {
        border-bottom: 1px dashed #DDD;
    }

.table.borderless td, .table.borderless th {
    border: none;
}

/*Generic classes*/
ul.three-column-list,
ul.three-column-list li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    ul.three-column-list li {
        display: inline-block;
        width: 33%;
    }

@media (max-width: 768px) {
    ul.three-column-list li {
        width: 100%;
    }
}


@media (min-width: 768px) {
    ul.three-column-list li {
        width: 49%;
    }
}

@media (min-width: 992px) {
    ul.three-column-list li {
        width: 33%;
    }
}

/*@media (min-width: 1200px) {
  ul.three-column-list li {
    width:33%;
  }
}*/


/*Global*/
.main-container {
    padding-top: 140px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .main-container {
        padding-top: 75px;
    }
}

/*Navigation*/
nav.breadcrumbs {
    margin-top: 10px;
}

/*Exibitor Zone*********************************************************************************************/
/*Contractor zone*/
/*Tabs*/
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: var(--primary-color);
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default;
}

.nav-tabs {
    border-bottom: 1px solid #ddd;
}

.main-logo--contractor-zone img {
    max-height: 80px;
}

#contractorsContent {
    display: block;
}

    #exhibitorContent.ez-panel,
    #contractorsContent.ez-panel {
        display: none;
    }


        #exhibitorContent.ez-panel.active,
        #contractorsContent.ez-panel.active {
            display: block;
        }


h2.exhibitor-zone-section-header.contractor-zone-header {
    margin-top: 0;
}

.form-row.actions button.contractor-form__button,
.form-row.actions a.btn.contractor-form__button,
.contractor-form__button {
    font-family: var(--secondary-font-family);
}

.row.contractor-section {
    margin: -8px 0 20px 0;
    padding: 20px;
    border: 1px dashed var(--primary-color-shade-03);
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.contractor-panel {
    border: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #f8f8f8;
}

.contractor-panel__heading,
.panel-default > .contractor-panel__heading {
    padding: 0;
    background: #FFFFFF;
}

.contractor-panel__link,
.contractor-panel__link:active,
.contractor-panel__link:focus,
.contractor-panel__link:visited {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    transition: all 0.25s;
    background: var(--secondary-color);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 300;
    border-radius: 10px;
}

    .contractor-panel__link:hover {
        text-decoration: none;
        color: #FFFFFF;
        background: var(--primary-color);
    }


.contractor-panel__title {
    font-size: 24px;
    flex: 1 1 100%;
}

.contractor-panel__icon {
    font-size: 20px;
    transition: all 0.25s;
    transform: rotateZ(45deg);
}

.contractor-panel__link.collapsed .contractor-panel__icon {
    transform: rotateZ(0);
}


.panel-default > .panel-heading + .panel-collapse > .panel-body.contractor-panel__body,
.contractor-panel__body {
    border: none;
}

.contractor-useful-info-body {
    padding: 20px 30px;
    background: #FFF;
    border-radius: 6px;
    margin-bottom: 50px;
}

    .contractor-useful-info-body .table {
        margin-bottom: 0;
    }

        .contractor-useful-info-body .table > tbody > tr:first-of-type > td {
            border: none;
        }

/*Modal styles*/
.modal-header {
    border: none;
    background: var(--primary-color);
    color: #FFF;
    font-family: var(--secondary-font-family);
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 10px 30px;
}

.modal-body {
    padding: 15px 25px;
}

.modal-header .icon {
    line-height: 30px;
    font-size: 30px;
    color: var(--secondary-color);
}

.modal-title {
    font-size: 24px;
    font-weight: 300;
    padding-left: 20px;
}

.modal-header .close {
    position: absolute;
    right: 20px;
    color: #FFF;
    opacity: 0.8;
    font-size: 20px;
}

.modal-body h3 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
}


.modal-sm.modal-dialog-contractor {
    width: 400px;
}


td.no-staff {
    text-align: center;
    height: 50px;
    font-size: 20px;
    font-weight: 300;
}

a.show-modal {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 20px;
}



.row.subsection {
    position: relative;
    padding: 60px 20px 20px 20px;
    box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.2);
}

.row.margin-top.subsection {
    margin-top: 20px;
}

.row.subsection h3 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0;
    padding: 10px;
    background-color: #494E54;
    color: #FFFFFF;
}

.contractor-section h4 {
    border-bottom: 1px solid rgba(14, 82, 135, 0.2);
}

span.table-notes {
    font-size: 12px;
}

.contractor-form div[class^="col-md-offset"] label {
    display: inline;
}

.contractor-modal .modal-body {
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    ;
}

ul.contractor-exhibitors li {
    display: inline-block;
    width: 33%;
}

#dialing-code-addon {
    min-width: 60px;
}

/*Form validation*/
.input-validation-error {
    border-color: rgba(230,39,39,0.8);
    -webkit-box-shadow: 0 0 10px #FF0000;
    box-shadow: 0 0 10px #FF0000;
}

.custom-tooltip + .tooltip > .tooltip-inner {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: normal;
    min-width: 170px;
}

.staff-actions {
    text-align: right;
}

label[for^="Agreed"] {
    display: inline;
}

.big-tab {
    font-size: 20px;
    font-weight: bold;
}

/**ListingStatus*/
/**Contact Details*/

/**Forms (Other questions section)*/
body.listing-form input[type=checkbox].checkbox {
    margin-left: 0;
}

/**Features (AKA Essential Supporting Information)*/
.features-form {
    display: inline-block;
    width: 100%;
    padding: 10px 40px 0 40px;
    background: #FFF;
}

.features-textarea {
    width: 100%;
    padding: 10px 20px;
    resize: none;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: 0;
    border-radius: 4px 4px 0 0;
    background: #F8F8F8;
}

    .features-textarea:focus {
        border-bottom-color: var(--secondary-color);
    }

    .features-textarea:disabled {
        cursor: not-allowed;
        background: repeating-linear-gradient( 45deg, #f8f8f8, #f8f8f8 1px, #e8e8e8 2px, #e8e8e8 3px );
        border-bottom-color: transparent;
    }

div[id*="featureError"] {
    display: none;
}

.page-actions {
    margin: 40px 0 50px 0;
    text-align: center;
}

/**Tables*/
table.table .table-actions {
    width: 30px;
}

/**Showcase*/

/**Index image + tooltip*/
.table-index-page > tbody > tr > td.table-image {
    padding: 0 5px;
    width: 40px;
    vertical-align: middle;
    text-align: center;
}

.table-product-image {
    max-width: 100%;
    max-height: 50px;
    height: auto;
    width: auto;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}


.table-index-page .product-current-image-tooltip {
    right: unset;
    left: 60px;
    z-index: 1;
}

.table-product-image:hover + .product-current-image-tooltip {
    display: block;
}


/**Edit product image tooltip*/
.product-current-image-label {
    cursor: pointer;
}

.form-row input.product-image-file-input,
.product-image-file-input {
    margin-top: 5px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.product-current-image-container {
    position: absolute;
    top: 0;
    right: 0;
    border: 1px solid #f8f8f8;
    border-bottom: none;
    background: #f8f8f8;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px 4px 8px;
    -webkit-border-top-right-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-border-top-left-radius: 2px;
    border-top-left-radius: 2px;
}

.product-image-file-input:focus + .product-current-image-container,
.product-current-image-label:hover .product-image-file-input {
    border-color: var(--form-input-focus-border-color);
}

i.product-current-image {
    font-size: 24px;
    padding: 0;
    position: relative;
    bottom: -2px;
    cursor: pointer;
    color: var(--primary-color);
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
}

    .product-current-image-label:hover i.product-current-image,
    i.product-current-image:hover {
        color: var(--secondary-color);
    }

.product-current-image-tooltip {
    display: none;
    position: absolute;
    border: 1px solid #ddd;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    max-width: 230px;
    bottom: 5px;
    right: 45px;
    background: #FFF;
}

.product-current-image-tooltip-title {
    position: absolute;
    width: calc(100% + 2px);
    min-width: 110px;
    top: 0;
    left: 50%;
    -moz-transform: translate(-50%, calc(-100% - 2px));
    -ms-transform: translate(-50%, calc(-100% - 2px));
    -o-transform: translate(-50%, calc(-100% - 2px));
    -webkit-transform: translate(-50%, calc(-100% - 2px));
    transform: translate(-50%, calc(-100% - 2px));
    text-align: center;
    font-weight: 300;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color-shade-07);
    color: #FFF;
}

.product-current-image {
    max-width: 226px;
    max-height: 226px;
    height: auto;
    width: auto;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.product-current-image-label:hover .product-current-image-tooltip,
i.product-current-image:hover + .product-current-image-tooltip {
    display: block;
}


/*End Contractor Zone****************************************************************************************/

/************************************************************
**Delivery and collection of stand equipment*
*************************************************************/

.ezsh-centered,
.alert-centered {
    text-align: center;
}

body.listing-standequipmentdeliverycollection .alert.alert-warning {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: var(--terciary-color-shade-01);
    border-color: var(--terciary-color);
    color: var(--terciary-color);
    display: block;
    margin: 20px auto 10px auto;
    width: 100%;
    font-size: 1.1em;
}


.as-label {
    border: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-left: 0;
    font-style: italic;
    border-bottom: 1px solid #DDD;
}

#DeliveryTime {
    padding-left: 50px;
}

.time-picker-btn {
    left: 0;
    border: none;
    background: var(--secondary-color);
    color: var(--terciary-color);
    font-size: 22px;
    position: absolute;
    height: 40px;
    width: 40px;
    bottom: 0;
    border: 1px solid #8892bd;
    transition: all .25s;
}

    .time-picker-btn:hover {
        border-color: var(--primary-color);
    }

label.required::after {
    content: "*";
    color: var(--secondary-color);
    margin-left: 3px;
}


/*Timepicker*/
#ui-timepicker-div .ui-timepicker-table {
    display: inline-table;
    width: 0;
    border: none;
    background: #FFF;
    box-shadow: 0 3px 6px var(--primary-color-shade-04);
}

    #ui-timepicker-div .ui-timepicker-table td {
        width: auto;
    }

.ui-timepicker-table .ui-timepicker-title {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-family: var(--primary-font-family);
    font-weight: 500;
}

.ui-timepicker-table td.ui-timepicker-hours {
    padding: 3px 2px 3px 2px;
    /*border-right:2px solid #FFFFFF;*/
}

.ui-timepicker-table td.ui-timepicker-minutes {
    padding: 3px 2px 3px 0;
}

#ui-timepicker-div .periods {
    display: none;
}

#ui-timepicker-div .ui-timepicker-table .ui-state-default,
#ui-timepicker-div .ui-timepicker-table .ui-state-active {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-family: var(--primary-font-family);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    height: 30px;
    width: 30px;
}

#ui-timepicker-div .ui-timepicker-table .ui-state-default {
    color: var(--primary-color);
}

#ui-timepicker-div .ui-timepicker-table .ui-state-active {
    color: var(--secondary-color);
    background: var(--primary-color);
}

/*Health and safety*/
body.listing-healthandsafety label {
    cursor: pointer;
}

body.listing-healthandsafety input[type="checkbox"] {
    vertical-align: -webkit-baseline-middle;
}

.form-horizontal.form-labels-left .control-label {
    text-align: left;
}

.operations-team {
    border: 1px solid #CCCCCC;
    padding: 10px;
    display: inline-block;
}

section.risk-group {
    border-top: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
}

    section.risk-group:last-child {
        border-bottom: 1px solid #cccccc;
        margin-bottom: 20px;
    }

.existing-doc {
    padding: 5px 10px;
    display: inline-block;
    font-size: 16px;
    color: #f88920;
    margin-top: 10px;
    border: 1px solid;
    transition: all 0.2s;
    font-family: Oswald, sans-serif;
    font-weight: 300;
}

    .existing-doc i {
        font-size: 20px;
    }

a.existing-doc {
    text-decoration: none;
}

.existing-doc:hover {
    background: #f88920;
    color: #FFFFFF;
}

.covid-info-panel {
    background: #fcfcfd;
    color: #372f50;
    padding: 10px 20px;
    border: 1px solid #dcdce6;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
}

.covid-info-panel-title {
    margin-top: 10px;
    margin-bottom: 20px;
}

.covid-info-panel-body ul,
.covid-info-panel-body ul li {
    list-style-type: inherit;
}


/*New Exhibitor Zone Design*******************/

.btn.btn--table-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    outline: 0;
}

    .btn.btn--table-button.btn-danger {
        color: #fff;
        background-color: #d9534f;
        border-color: #d43f3a;
    }

    .btn.btn--table-button.btn-move-up-down:hover {
        color: #fff;
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

h1.exhibitor-zone-main-header {
    font-family: var(--primary-font-family);
    color: var(--ez-main-header-color);
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

@media screen and (max-width:768px) {
    h1.exhibitor-zone-main-header {
        text-align: center;
    }
}

body.listing-index,
body.exhbitor-home-index,
body.listing-marketingmaterial,
body.listing-standgraphics,
body.listing-furniture,
body.listing-covid {
    background: #f8f8f8;
}

h1.exhibitor-zone-header,
h2.exhibitor-zone-header {
    color: var(--primary-color);
    font-family: var(--ez-section-headers-font-family);
    margin-bottom: 40px;
    margin-top: 20px;
    position: relative;
}

    h1.exhibitor-zone-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 70px;
        height: 5px;
        /* background: var(--secondary-color-shade-01); */
        background: linear-gradient(90deg, #eee,#f5f5f5);
        /*background:#eee;*/
        z-index: -1;
        right: 0;
        border-radius: 5px;
    }

.exhibitor-zone-header--for-form,
.exhibitor-zone-header--for-form-md,
.exhibitor-zone-header--for-form-sm {
    width: 100%;
    margin: 20px auto 40px auto;
}

.exhibitor-zone-header--for-form {
    max-width: 700px;
}

.exhibitor-zone-header--for-form-md {
    max-width: 650px;
}

.exhibitor-zone-header--for-form-sm {
    max-width: 600px;
}

/*h2.exhibitor-zone-section-header{*/
/*    color: #FFFFFF;*/
/*    text-transform: uppercase;*/
/*    font-family: var(--ez-section-headers-font-family);*/
/*    background-color:var(--ez-section-headers-background-color);*/
/*    font-size: 24px;*/
/*    width: 100%;*/
/*    padding: 5px 15px;*/
/*    margin-top: 25px;*/
/*    -moz-border-radius: 2px;*/
/*    -webkit-border-radius: 2px;*/
/*    border-radius: 2px;*/
/*}*/

h2.exhibitor-zone-section-header {
    position: relative;
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: var(--ez-section-headers-font-family);
    font-size: 24px;
    width: 100%;
    padding: 5px 15px 5px 20px;
    margin: 25px 0 15px 0;
}

button.exhibitor-zone-section-header {
    position: relative;
    color: var(--primary-color);
    text-transform: uppercase;
    font-family: var(--ez-section-headers-font-family);
    font-size: 20px;
    width: 100%;
    padding: 5px 15px 5px 20px;
    /* margin: 25px 0 15px 0;*/
}

.nav-tabs {
    border: none;
    margin-bottom: 10px;
}

    .nav-tabs > li > a {
        background-color: var(--secondary-color);
        font-size: 20px;
        color: #fff;
        border-radius: 7px;
        margin: 0px;
    }

    .nav-tabs > li {
        background-color: var(--secondary-color);
        color: #fff;
        border-radius: 7px;
        margin: 1px;
    }

        .nav-tabs > li.active, .nav-tabs > li.active:hover, .nav-tabs > li.active:focus {
            background-color: #fff;
            color: #000;
            border-radius: 7px;
            margin: 0px;
        }

            .nav-tabs > li.active > a, .nav-tabs > li:hover > a, .nav-tabs > li.active:hover > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active:hover > a:focus {
                background-color: #fff;
                color: #000;
                border-radius: 7px;
                margin: 0px;
            }

                .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
                    border-bottom-color: #ddd;
                }

.nav > li > a:hover, .nav > li > a:focus {
    text-decoration: none;
    background-color: var(--secondary-color);
}

.tab-content {
    background-color: #fff;
    padding: 20px;
}

h2 .exhibitor-zone-section-header::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: var(--secondary-color);
    width: 5px;
    height: 100%;
    border-radius: 2px;
}

.exhibitor-zone-item {
    display: inline-flex;
    position: relative;
    padding: 0 18px;
    margin-bottom: 1%;
    text-decoration: none;
    border: 1px solid #eeeeee;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    vertical-align: bottom;
    align-items: center;
    justify-content: flex-start;
    height: 80px;
    background: #FFF;
    border-radius: 4px;
}

@media (min-width:935px) {
    .exhibitor-zone-item {
        width: calc((98% / 3) - 2px);
    }

        .exhibitor-zone-item:not(:nth-child(3n)) {
            margin-right: 1%;
        }
}

@media (min-width:637px) and (max-width:934px) {
    .exhibitor-zone-item {
        width: calc((99% / 2) - 2px);
    }

    .pills-container {
        display: flex;
        flex-direction: row;
    }

    .nav-tabs {
        display: flex;
        flex-direction: column;
        width: 40%;
        margin-right: 20px;
        border: none;
    }

        .nav-tabs > li > a {
            font-size: 18px;
        }

    .category-input-group-label {
        font-size: 18px;
    }

    .exhibitor-zone-item:not(:nth-child(2n)) {
        margin-right: 1%;
    }
}

@media (max-width:636px) {
    .exhibitor-zone-item {
        width: 100%;
        margin-bottom: 3%;
    }

    .page-actions {
        width: 100%;
    }

    .pills-container {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .nav-tabs {
        display: flex;
        flex-direction: column;
        width: 80%;
    }

        .nav-tabs > li > a {
            font-size: 18px;
        }

    .category-input-group-label {
        font-size: 18px;
    }
}

.exhibitor-zone-item:hover {
    border-color: var(--ez-item-border-hover-color);
    -webkit-box-shadow: 0px 5px 15px 0px var(--ez-item-box-shadow-hover-color);
    -moz-box-shadow: 0px 5px 15px 0px var(--ez-item-box-shadow-hover-color);
    box-shadow: 0px 5px 15px 0px var(--ez-item-box-shadow-hover-color);
}

.exhibitor-zone-item.exhibitor-zone-item-with-logo {
    padding: 10px 18px;
    height: 100px;
}

.exhibitor-zone-item__content {
    display: flex;
    -ms-flex-flow: column;
    flex-flow: column;
    justify-content: center;
    padding-left: 15px;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
}

span.section-name {
    font-size: 1.1em;
    line-height: 23px;
    padding-right: 25px;
}

@media (max-width:768px) {
    span.section-name {
        top: 15px;
        line-height: 20px;
    }
}

span.section-deadline {
    font-size: 0.9em;
}

.exhibitor-zone-item .section-icon,
.exhibitor-zone-item .section-name,
.exhibitor-zone-item .section-deadline {
    color: var(--ez-item-color);
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.section-icon {
    font-size: 50px;
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    display: flex;
    justify-content: center;
}

.exhibitor-zone-item:hover,
.exhibitor-zone-item:hover .section-icon,
.exhibitor-zone-item:hover .section-name,
.exhibitor-zone-item:hover .section-deadline,
.exhibitor-zone-item:active,
.exhibitor-zone-item:focus,
.exhibitor-zone-item:active .section-icon,
.exhibitor-zone-item:active .section-name,
.exhibitor-zone-item:active .section-deadline {
    text-decoration: none;
    color: var(--ez-item-color-hover);
}

.exhibitor-zone-item-logo {
    height: 100%;
    margin: auto;
}

/*a[href="#ComingSoon"].exhibitor-zone-item {
    border: 1px solid var(--primary-color-shade-02);
}*/

a[href="#ComingSoon"].exhibitor-zone-item .section-icon,
a[href="#ComingSoon"].exhibitor-zone-item .section-name,
a[href="#ComingSoon"].exhibitor-zone-item .section-deadline {
    color: var(--primary-color-shade-03);
}

a[href="#ComingSoon"].exhibitor-zone-item::after {
    content: "Coming soon";
    position: absolute;
    -moz-opacity: 0;
    opacity: 0;
    top: 50%;
    left: 50%;
    text-align: center;
    display: inline-block;
    -moz-transform: translate(-50%,-50%) rotateZ(-12deg) scale(0.95);
    -ms-transform: translate(-50%,-50%) rotateZ(-12deg) scale(0.95);
    -o-transform: translate(-50%,-50%) rotateZ(-12deg) scale(0.95);
    -webkit-transform: translate(-50%,-50%) rotateZ(-12deg) scale(0.95);
    transform: translate(-50%,-50%) rotateZ(-12deg) scale(0.95);
    font-family: var(--secondary-font-family);
    -moz-transition: all 0.275s;
    -o-transition: all 0.275s;
    -webkit-transition: all 0.275s;
    transition: all 0.275s;
    color: var(--primary-color);
    font-size: 20px;
    text-transform: uppercase;
    padding: 5px;
    border: 6px double;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    box-shadow: 0 0 7px var(--primary-color);
    background-color: var(--lighter-05);
}

a[href="#ComingSoon"].exhibitor-zone-item:hover {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    a[href="#ComingSoon"].exhibitor-zone-item:hover::after {
        -moz-opacity: 1;
        opacity: 1;
        -moz-transform: translate(-50%,-50%) rotateZ(-12deg) scale(1);
        -ms-transform: translate(-50%,-50%) rotateZ(-12deg) scale(1);
        -o-transform: translate(-50%,-50%) rotateZ(-12deg) scale(1);
        -webkit-transform: translate(-50%,-50%) rotateZ(-12deg) scale(1);
        transform: translate(-50%,-50%) rotateZ(-12deg) scale(1);
    }

img.image-icon {
    width: 81px;
    height: 50px;
    margin: 0;
    padding: 0;
    -moz-opacity: 0.5;
    opacity: 0.5;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.exhibitor-zone-item:hover img.image-icon {
    -moz-opacity: 1;
    opacity: 1;
}

i.section-status {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 20px;
    z-index: 90;
    -moz-transition: color 0.3s;
    -o-transition: color 0.3s;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

    i.section-status .exhibitor-zone-item_tooltip {
        display: none;
        position: absolute;
        left: 100%;
        top: -8px;
        font-family: var(--primary-font-family);
        font-size: 0.7em;
        font-weight: 300;
        padding: 6px;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        white-space: nowrap;
        /*Animation*/
        -webkit-animation: exhibitor-item__tooltip-pop 0.2s ease-in 1;
        -moz-animation: exhibitor-item__tooltip-pop 0.2s ease-in 1;
        -o-animation: exhibitor-item__tooltip-pop 0.2s ease-in 1;
        animation: exhibitor-item__tooltip-pop 0.2s ease-in 1;
        -o-animation-fill-mode: forwards;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -moz-transform: scale(0) translate(-100%, -100%);
        -ms-transform: scale(0) translate(-100%, -100%);
        -o-transform: scale(0) translate(-100%, -100%);
        -webkit-transform: scale(0) translate(-100%, -100%);
        transform: translate(-100%, -100%) scale(0);
        -moz-transform-origin: top left;
        -ms-transform-origin: top left;
        -o-transform-origin: top left;
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -moz-opacity: 0;
        opacity: 0;
    }

        i.section-status .exhibitor-zone-item_tooltip::after {
            content: "";
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            position: absolute;
            bottom: -6px;
            z-index: 1;
        }

    i.section-status:hover .exhibitor-zone-item_tooltip {
        display: block;
    }

a[href="#ComingSoon"].exhibitor-zone-item i.section-status:hover .exhibitor-zone-item_tooltip {
    display: none;
}

i.section-status.fa-check-circle,
i.section-status.fa-exclamation-triangle,
i.section-status.fa-info-circle,
i.section-status.fa-html5 {
    color: var(--ez-item-mini-icon-default-color);
}

.exhibitor-zone-item:hover i.section-status.fa-check-circle {
    color: var(--ez-item-completed-color);
}

    .exhibitor-zone-item:hover i.section-status.fa-check-circle .exhibitor-zone-item_tooltip {
        background: var(--ez-item-completed-color);
        border: 1px solid var(--ez-item-completed-color);
        color: #FFF;
    }

        .exhibitor-zone-item:hover i.section-status.fa-check-circle .exhibitor-zone-item_tooltip::after {
            border-top: 8px solid var(--ez-item-completed-color);
            right: 3px;
        }

.exhibitor-zone-item:hover i.section-status.fa-exclamation-triangle {
    color: var(--ez-item-incomple-color);
}

    .exhibitor-zone-item:hover i.section-status.fa-exclamation-triangle .exhibitor-zone-item_tooltip {
        background: var(--ez-item-incomple-color);
        border: 1px solid var(--ez-item-incomple-color);
        color: #FFF;
    }

        .exhibitor-zone-item:hover i.section-status.fa-exclamation-triangle .exhibitor-zone-item_tooltip::after {
            border-top: 8px solid var(--ez-item-incomple-color);
            right: 4px;
        }

.exhibitor-zone-item:hover i.section-status.fa-info-circle {
    color: var(--ez-item-info-color);
}

    .exhibitor-zone-item:hover i.section-status.fa-info-circle .exhibitor-zone-item_tooltip {
        background: var(--ez-item-info-color);
        border: 1px solid var(--ez-item-info-color);
        color: #FFF;
    }

        .exhibitor-zone-item:hover i.section-status.fa-info-circle .exhibitor-zone-item_tooltip::after {
            border-top: 8px solid var(--ez-item-info-color);
            right: 3px;
        }

i.section-status.fa-arrow-circle-down,
i.section-status.fa-html5 {
    color: #bbbbbb;
}

.exhibitor-zone-item:hover i.section-status.fa-arrow-circle-down {
    color: #666666;
}

.exhibitor-zone-item:hover i.section-status.fa-html5 {
    color: var(--ez-item-html-color);
}

    .exhibitor-zone-item:hover i.section-status.fa-html5 .exhibitor-zone-item_tooltip {
        background: var(--ez-item-html-color);
        border: 1px solid var(--ez-item-html-color);
        color: #FFF;
    }

        .exhibitor-zone-item:hover i.section-status.fa-html5 .exhibitor-zone-item_tooltip::after {
            border-top: 8px solid var(--ez-item-html-color);
            right: 2px;
        }

i.section-status.fa-file-pdf-o {
    color: #bbbbbb;
}

.exhibitor-zone-item:hover i.section-status.fa-file-pdf-o {
    color: #990000;
}


a[href="#ComingSoon"].exhibitor-zone-item:hover i.section-status {
    color: var(--ez-item-mini-icon-default-color);
}


span.header-icon {
    display: inline-flex;
    position: relative;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
    color: var(--ez-header-icon-color);
    padding: 0;
    margin: 0;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    border: 1px solid #eee;
}

    span.header-icon i {
        font-size: 28px;
        padding: 0;
        margin: 0;
        display: table-cell;
        vertical-align: middle;
    }

span.header-text {
    display: inline-table;
    vertical-align: middle;
    font-size: 36px;
}


@media (max-width:480px) {
    span.header-text {
        display: inline-table;
        vertical-align: middle;
        font-size: 26px;
    }
}

span.header-text.small-text {
    font-size: 26px;
}

p.listing-link-text {
    margin-top: 20px;
    overflow-wrap: break-word;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}


    .logo-container img {
        max-height: 300px;
    }

.video-wrapper {
    text-align: center;
    display: block;
    margin: auto;
    margin-top: 15px;
}

/*End New Exhibitor Zone Design********************************************/

/**********************************************/
/******Styles for pages containing forms*******/
/**********************************************/

.form-loading {
    position: relative;
}

.form-page-container {
    max-width: 700px;
    width: 100%;
    margin: auto;
}

.form-page-container--md {
    max-width: 650px;
}

.form-page-container--sm {
    max-width: 600px;
}

.form-page-container--spaced {
    margin-top: 30px;
    margin-bottom: 20px;
}

.form-page-container form,
.wrapper-with-header {
    padding: 0 30px 15px 30px;
    border: 1px solid var(--form-wrapper-border-color);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #fff;
}

.wrapper-with-header {
    margin-top: 25px;
}

.form-page-container form h2.exhibitor-zone-section-header {
    margin: 30px 0 25px 0;
    text-transform: capitalize;
}

.row.deadline {
    text-align: center;
}

.deadline h2.exhibitor-zone-section-header {
    display: inline-block;
    width: auto;
    padding: 20px 40px;
    background: #FFF;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px dotted var(--secondary-color);
    text-shadow: 0 1px 1px var(--primary-color-shade-07);
    background: var(--secondary-color-shade-01);
    -moz-box-shadow: 0 0 4px var(--primary-color-shade-02);
    -webkit-box-shadow: 0 0 4px var(--primary-color-shade-02);
    box-shadow: 0 0 4px var(--primary-color-shade-02);
}

    .deadline h2.exhibitor-zone-section-header::after {
        content: none;
    }

.section-description {
    display: inline-block;
    padding: 20px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid rgba(67, 71, 86, 0.20);
    width: 100%;
    background: rgba(67, 71, 86, 0.05);
    margin-bottom: 20px;
}


.form-page-container form .section-description {
    margin-bottom: 0;
}

.section-description.centered {
    text-align: center;
    margin-top: 15px;
}

.section-description.important {
    background-color: var(--terciary-color-shade-01);
    border-color: var(--terciary-color);
    color: var(--terciary-color);
}


.help-text,
p.help-text {
    font-size: 0.9em;
    width: 100%;
    padding: 5px;
    margin-top: 0px;
}

.eg-text {
    font-style: italic;
}

/*Operations team/Contact card styles */
.operations-team-card {
    padding: 4px 4px 15px 4px;
    display: block;
    margin: 10px auto;
    background-color: var(--ez-contact-card-background-color);
    color: var(--ez-contact-card-font-color);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    width: 100%;
    text-align: center;
}

.otc-row {
    display: block;
}

    .otc-row > span {
        display: inline-table;
        padding: 2px 20px;
    }

.otc-title {
    width: 100%;
    padding: 10px 30px 10px 30px;
    text-align: center;
    font-size: 22px;
    color: var(--ez-contact-card-title-color);
    background: var(--ez-contact-card-title-background-color);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.otc-text,
.otc-header {
    display: table-cell;
    vertical-align: middle;
}

    .otc-text a {
        color: #FFFFFF;
        -moz-transition: all 0.2s;
        -o-transition: all 0.2s;
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

        .otc-text a:hover {
            color: var(--terciary-color);
        }

.otc-name::before,
.otc-email::before,
.otc-telephone::before {
    font-family: 'Font Awesome 5 Pro';
    font-size: 22px;
    margin-right: 10px;
    font-weight: 900;
}

.otc-name::before {
    content: '\f82d';
}

.otc-email::before {
    content: '\f1fa';
}

.otc-telephone::before {
    content: '\f67d';
}

p.centered-medium {
    font-size: 16px;
    text-align: center;
    padding: 20px 0 10px 0;
}





/*Banners and pdf generation*/
.pdf-banners-description {
    border: 1px solid #CCC;
    padding: 10px 20px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #FAFAFA;
    margin: 15px 0;
}

.pdf-banner-list {
    text-align: center;
}

.pdf-banner-link {
    font-family: var(--secondary-font-family);
    font-size: 16px;
    color: var(--primary-color);
    padding: 5px 10px;
    width: 210px;
    border: 1px solid var(--secondary-color);
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    display: inline-block;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin: 10px 5px;
}

    .pdf-banner-link i {
        font-size: 26px;
        margin-right: 10px;
        color: var(--secondary-color);
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .pdf-banner-link:hover {
        background: var(--secondary-color);
        color: #FFF;
        text-decoration: none;
    }

        .pdf-banner-link:hover i {
            color: #FFF;
        }

.image-banner-link {
    position: relative;
    display: inline-block;
    margin: 10px 20px 10px 0;
    padding: 10px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #FFF;
    box-shadow: none;
    border: 1px solid #eee;
}

    .image-banner-link::after {
        content: "Click to Download";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        padding: 10px;
        font-family: var(--secondary-font-family);
        color: #000;
        -moz-opacity: 0;
        opacity: 0;
        z-index: 2;
        text-transform: uppercase;
        font-size: 22px;
        font-weight: 300;
        -moz-transition: all 0.25s;
        -o-transition: all 0.25s;
        -webkit-transition: all 0.25s;
        transition: all 0.25s;
        text-align: center;
        background: var(--secondary-color-shade-08);
        -webkit-text-shadow: 0 2px 4px var(--secondary-color);
        text-shadow: 0 2px 4px var(--secondary-color);
    }

    .image-banner-link::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: rgba(255,255,255,0.3);
        -moz-opacity: 0;
        opacity: 0;
        z-index: 1;
        -moz-transition: all 0.25s;
        -o-transition: all 0.25s;
        -webkit-transition: all 0.25s;
        transition: all 0.25s;
    }

    .image-banner-link:hover::after,
    .image-banner-link:hover::before {
        -moz-opacity: 1;
        opacity: 1;
    }

    .image-banner-link img {
        max-width: 500px;
        width: 100%;
    }

    .image-banner-link.image-banner-logo::after {
        content: "Click to Open";
    }

    .image-banner-link.banner-dark-bg {
        background: rgba(0,0,0,.1);
    }
/*Registration (Booking)*********************************************************************************************/
/**Basket summary*******************************************/
@media only screen and (min-width: 320px) and (max-width: 767px) {
    #basket-summary {
        margin-top: 20px;
    }
}

/* Progress Tracker ****************************************/
.progress-tracker {
    margin-bottom: 20px;
    margin-right: 0;
    padding: 0;
    float: left;
}

    .progress-tracker li {
        display: inline;
        list-style: none;
        width: 90px;
        float: left;
        text-align: center;
        font-weight: bold;
        padding-top: 40px;
        background-repeat: no-repeat;
        background-image: url("../../images/progress/progress_bar_5.png");
    }

        .progress-tracker li.future {
            color: #ccc;
        }

        .progress-tracker li.previous {
            color: #999;
        }

        .progress-tracker li.current {
            background-image: url("../../images/progress/progress_bar_5_over.png");
        }

        .progress-tracker li.attendance-type {
            background-position: 0px -25px;
            border: none;
        }

        .progress-tracker li.personal-details {
            background-position: -90px -25px;
        }

        .progress-tracker li.demographics {
            background-position: -180px -25px;
        }

        .progress-tracker li.packages {
            background-position: -270px -25px;
        }

        .progress-tracker li.checkout {
            background-position: -360px -25px;
        }


/*Demographics*/
body.booking-demographics ul {
    padding: 0;
}

.form-builder-error {
    cursor: pointer;
    color: #a94442;
    font-size: 18px;
}

/**Products*/


.product ul {
    padding: 0;
}



/*End Registration************************************************************************************************/



/*Footer**********************************************************/
.footer {
    border: 1px solid #cccccc;
    clear: both;
    margin-top: 30px;
}


a.logo-brintex {
    top: -10px;
    left: 40px;
    display: inline-block;
    position: relative;
    z-index: 100;
}

    a.logo-brintex img {
        width: 120px;
    }


@media (max-width:767px) {
    footer.footer {
        text-align: center;
    }

    a.logo-brintex {
        top: -3px;
        left: initial;
    }

        a.logo-brintex img {
            width: 153px;
        }
}

/*End Footer******************************************************/


/**Qtip (tooltips library)****/

.qtip-font-md .qtip-content {
    font-size: 12px;
}

/**These are the different limits for the media queries used in bootstrap*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
}



@media only screen and (max-width : 991px) {
    .container {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media screen and (max-width:768px) {
    .exhibitor-main-header h3 {
        font-size: 1.5em;
        line-height: 1.5em;
    }

        .exhibitor-main-header h3 i {
            top: 7px;
        }

    ul.exhib-list-entries li {
        min-height: 75px;
    }
}

@media screen and (max-width:480px) {
    .brands-cell.brands-empty {
        display: none;
    }
}


/*Mobile media queries for exhibitor zone sections, mainly for the text in the new headers */
/*Standard Breakpoints*/
@media (max-width:768px) {

    /*Contact Details*/
    body.listing-contact .form-horizontal .form-group,
    body.listing-standcontractor .form-horizontal .form-group,
    body.listing-form .form-horizontal .form-group,
    body.listing-healthandsafety .form-horizontal .form-group,
    body.listing-socialnetworking .form-horizontal .form-group {
        margin-left: 0px;
        margin-right: 0px;
    }
}


/*Custom Breakpoints*/
@media (max-width:1200px) {
    /*Health & Safefty*/
    body.listing-healthandsafety span.header-text {
        font-size: 20px;
    }
}

@media (max-width:868px) {
    /*Health & Safefty*/
    body.listing-healthandsafety span.header-text {
        font-size: 18px;
        line-height: 18px;
    }
}

@media (max-width:790px) {
    /*Health & Safefty*/
    body.listing-healthandsafety span.extra-text {
        display: none;
    }

    body.listing-healthandsafety span.header-text {
        font-size: 26px;
    }
}


@media (max-width:525px) {
    /*Essential Supporting Info*/
    body.listing-features span.header-text,
    body.listing-standcontractor span.header-text {
        font-size: 24px;
    }
}


@media (max-width:460px) {
    /*Description*/
    body.listing-description span.header-text {
        font-size: 20px;
    }
}

@media (max-width:430px) {
    /*Essential Supporting Info*/
    body.listing-features span.header-text,
    body.listing-standcontractor span.header-text {
        font-size: 20px;
    }
}

@media (max-width:400px) {
    /*Banners,Health & Safefty, Marketing Material*/
    body.listing-banners span.header-text,
    body.listing-marketingmaterial span.header-text,
    body.listing-healthandsafety span.header-text,
    body.listing-facetime span.header-text {
        font-size: 20px;
    }
}

@media (max-width:370px) {
    /*Essential Supporting Info*/
    body.listing-features span.header-text,
    body.listing-standcontractor span.header-text {
        font-size: 16px;
    }
    /*exhibitor list info*/
    body.listing-exhibitorlistinfo span.header-text {
        font-size: 20px;
    }
}

@media (max-width:330px) {
    /*Description, Banners*/
    body.listing-description span.header-text,
    body.listing-banners span.header-text,
    body.listing-healthandsafety span.header-text,
    body.listing-facetime span.header-text {
        font-size: 18px;
        line-height: 18px;
    }
}

/*loading*/
.loading-overlay,
.loading-overlay-fixed {
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.5);
    z-index: 1000000;
}

.loading-overlay {
    position: absolute;
}

.loading-overlay-fixed {
    position: fixed;
}

.loading-overlay i {
    font-size: 40px;
    color: var(--secondary-color);
}

.loading-overlay-fixed i {
    font-size: 30px;
}

.loading-container {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    background: rgb(153 195 40);
    color: #fff;
    font-weight: 300;
    border-radius: 6px;
}

.loading-message {
    line-height: 1;
    margin-left: 15px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    body.home-exhibitor .col-lg-1,
    body.home-exhibitor .col-lg-10,
    body.home-exhibitor .col-lg-11,
    body.home-exhibitor .col-lg-12,
    body.home-exhibitor .col-lg-2,
    body.home-exhibitor .col-lg-3,
    body.home-exhibitor .col-lg-4,
    body.home-exhibitor .col-lg-5,
    body.home-exhibitor .col-lg-6,
    body.home-exhibitor .col-lg-7,
    body.home-exhibitor .col-lg-8,
    body.home-exhibitor .col-lg-9,
    body.home-exhibitor .col-md-1,
    body.home-exhibitor .col-md-10,
    body.home-exhibitor .col-md-11,
    body.home-exhibitor .col-md-12,
    body.home-exhibitor .col-md-2,
    body.home-exhibitor .col-md-3,
    body.home-exhibitor .col-md-4,
    body.home-exhibitor .col-md-5,
    body.home-exhibitor .col-md-6,
    body.home-exhibitor .col-md-7,
    body.home-exhibitor .col-md-8,
    body.home-exhibitor .col-md-9,
    body.home-exhibitor .col-sm-1,
    body.home-exhibitor .col-sm-10,
    body.home-exhibitor .col-sm-11,
    body.home-exhibitor .col-sm-12,
    body.home-exhibitor .col-sm-2,
    body.home-exhibitor .col-sm-3,
    body.home-exhibitor .col-sm-4,
    body.home-exhibitor .col-sm-5,
    body.home-exhibitor .col-sm-6,
    body.home-exhibitor .col-sm-7,
    body.home-exhibitor .col-sm-8,
    body.home-exhibitor .col-sm-9,
    body.home-exhibitor .col-xs-1,
    body.home-exhibitor .col-xs-10,
    body.home-exhibitor .col-xs-11,
    body.home-exhibitor .col-xs-12,
    body.home-exhibitor .col-xs-2,
    body.home-exhibitor .col-xs-3,
    body.home-exhibitor .col-xs-4,
    body.home-exhibitor .col-xs-5,
    body.home-exhibitor .col-xs-6,
    body.home-exhibitor .col-xs-7,
    body.home-exhibitor .col-xs-8,
    body.home-exhibitor .col-xs-9 {
        padding: 0;
    }
}
