.btn:focus,
.btn:hover,
.btn.active {
    box-shadow: none;
    outline: medium none;
}

button:focus {
    outline: none;
}

.btn {
    border-width: 2px;
    cursor: pointer;
    text-transform: capitalize;
    transition: all 0.5s ease-in-out;
}

    .btn.active:focus,
    .btn:active:focus {
        box-shadow: none !important;
    }

.btn-default {
    background-color: #78787b;
    border: 2px solid #78787b;
    color: #fff !important;
    padding: 10px 30px;
}

    .btn-default:hover {
        background-color: #78787b;
        border-color: #78787b;
        color: #fff;
    }

.btn-black {
    border: 2px solid #333;
    background-color: #333;
    color: #fff;
    padding: 10px 30px;
}

    .btn-black:hover {
        background-color: #fff;
        color: #333;
    }

.btn-white {
    border: 2px solid #fff;
    background-color: #fff;
    color: #333 !important;
    padding: 10px 30px;
}

    .btn-white:hover {
        background-color: transparent;
        color: #fff !important;
    }

.btn-outline-white {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 30px;
}

    .btn-outline-white:hover {
        background-color: #fff;
        color: #78787b;
    }

.btn-outline-black {
    background-color: transparent;
    border: 2px solid #333;
    color: #333;
    padding: 10px 30px;
}

    .btn-outline-black:hover {
        background-color: #333;
        color: #fff;
    }

.btn-outline-default {
    background-color: transparent;
    border: 2px solid #78787b;
    color: #78787b;
    padding: 10px 30px;
}

    .btn-outline-default:hover {
        background-color: #78787b;
        color: #fff;
    }

.btn-radius,
.pr-radius {
    border-radius: 40px;
}

.btn + .btn {
    margin-left: 10px;
}

.btn i {
    margin-left: 5px;
    font-size: 22px;
    vertical-align: middle;
    line-height: 1;
}

.btn span {
    font-size: 14px;
}

.btn-group-sm > .btn,
.btn-sm {
    padding: 7px 15px;
}

.btn-group-lg > .btn,
.btn-lg {
    padding: 14px 35px;
}

.btn-xs {
    padding: 4px 15px;
    font-size: 12px;
}

.btn-md {
    padding: 10px 30px;
    font-size: 16px;
}

.btn.btn-xs i {
    font-size: 12px;
}

.btn.btn-sm i {
    font-size: 16px;
}

.btn.btn-lg i {
    font-size: 28px;
}

.btn-aylen,
.btn-aylen2 {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

    .btn-aylen::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        background-color: #fff;
        -moz-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
        transition: all 0.3s ease-in-out;
    }

    .btn-aylen:hover:before {
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
        z-index: -1;
    }

.btn-default.btn-aylen:hover {
    color: #78787b !important;
    z-index: 0;
}

.btn-aylen2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #fff;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.btn-aylen2:hover:before {
    -moz-transform: scale(0);
    -webkit-transform: scale(10);
    transform: scale(0);
}

.btn-horiz,
.btn-horiz2 {
    position: relative;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

    .btn-horiz::before {
        border-radius: 4px;
        content: "";
        position: absolute;
        left: 50%;
        top: -2px;
        bottom: -2px;
        background-color: rgba(0, 0, 0, 0.1);
        right: 50%;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        z-index: -1;
    }

    .btn-horiz:hover::before {
        left: -2px;
        right: -2px;
        visibility: visible;
    }

    .btn-horiz2::before {
        border-radius: 3px;
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        background-color: #fff;
        right: 0;
        transition: all 0.3s ease-in-out;
        z-index: -1;
    }

    .btn-horiz2:hover::before {
        left: 50%;
        right: 50%;
    }

.btn-radius.btn-horiz::before,
.btn-radius.btn-horiz2::before {
    border-radius: 40px;
}

.btn-3d {
    position: relative;
    border: 0;
}

    .btn-3d::before {
        border-bottom: 3px solid rgba(0, 0, 0, 0.2);
        content: "";
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        position: absolute;
        border-radius: 5px;
    }

    .btn-3d.rounded-0::before {
        border-radius: 0;
    }

.btn_box_shadow:hover,
.btn_box_shadow:focus,
.btn_box_shadow.active:focus,
.btn_box_shadow:active:focus {
    box-shadow: 0 0 15px #78787b !important;
}

.btn-danger.btn_box_shadow:hover,
.btn-danger.btn_box_shadow:focus,
.btn-danger.btn_box_shadow.active:focus,
.btn-danger.btn_box_shadow:active:focus,
.btn-outline-danger.btn_box_shadow:hover,
.btn-outline-danger.btn_box_shadow:focus,
.btn-outline-danger.btn_box_shadow.active:focus,
.btn-outline-danger.btn_box_shadow:active:focus {
    box-shadow: 0 0 15px #a154a0 !important;
}

.btn-success.btn_box_shadow:hover,
.btn-success.btn_box_shadow:focus,
.btn-success.btn_box_shadow.active:focus,
.btn-success.btn_box_shadow:active:focus,
.btn-outline-success.btn_box_shadow:hover,
.btn-outline-success.btn_box_shadow:focus,
.btn-outline-success.btn_box_shadow.active:focus,
.btn-outline-success.btn_box_shadow:active:focus {
    box-shadow: 0 0 15px #28a745 !important;
}

.btn-primary.btn_box_shadow:hover,
.btn-primary.btn_box_shadow:focus,
.btn-primary.btn_box_shadow.active:focus,
.btn-primary.btn_box_shadow:active:focus,
.btn-outline-primary.btn_box_shadow:hover,
.btn-outline-primary.btn_box_shadow:focus,
.btn-outline-primary.btn_box_shadow.active:focus,
.btn-outline-primary.btn_box_shadow:active:focus {
    box-shadow: 0 0 15px #007bff !important;
}

.btn-warning.btn_box_shadow:hover,
.btn-warning.btn_box_shadow:focus,
.btn-warning.btn_box_shadow.active:focus,
.btn-warning.btn_box_shadow:active:focus,
.btn-outline-warning.btn_box_shadow:hover,
.btn-outline-warning.btn_box_shadow:focus,
.btn-outline-warning.btn_box_shadow.active:focus,
.btn-outline-warning.btn_box_shadow:active:focus {
    box-shadow: 0 0 15px #ffc107 !important;
}

.btn-secondary.btn_box_shadow:hover,
.btn-secondary.btn_box_shadow:focus,
.btn-secondary.btn_box_shadow.active:focus,
.btn-secondary.btn_box_shadow:active:focus,
.btn-outline-secondary.btn_box_shadow:hover,
.btn-outline-secondary.btn_box_shadow:focus,
.btn-outline-secondary.btn_box_shadow.active:focus,
.btn-outline-secondary.btn_box_shadow:active:focus {
    box-shadow: 0 0 15px #6c757d !important;
}

.btn-info.btn_box_shadow:hover,
.btn-info.btn_box_shadow:focus,
.btn-info.btn_box_shadow.active:focus,
.btn-info.btn_box_shadow:active:focus,
.btn-outline-info.btn_box_shadow:hover,
.btn-outline-info.btn_box_shadow:focus,
.btn-outline-info.btn_box_shadow.active:focus,
.btn-outline-info.btn_box_shadow:active:focus {
    box-shadow: 0 0 15px #17a2b8 !important;
}

.btn-black.btn_box_shadow:hover,
.btn-black.btn_box_shadow:focus,
.btn-black.btn_box_shadow.active:focus,
.btn-black.btn_box_shadow:active:focus,
.btn-outline-black.btn_box_shadow:hover,
.btn-outline-black.btn_box_shadow:focus,
.btn-outline-black.btn_box_shadow.active:focus,
.btn-outline-black.btn_box_shadow:active:focus {
    box-shadow: 0 0 15px #333 !important;
}

.btn-dark.btn_box_shadow:hover,
.btn-dark.btn_box_shadow:focus,
.btn-dark.btn_box_shadow.active:focus,
.btn-dark.btn_box_shadow:active:focus,
.btn-outline-dark.btn_box_shadow:hover,
.btn-outline-dark.btn_box_shadow:focus,
.btn-outline-dark.btn_box_shadow.active:focus,
.btn-outline-dark.btn_box_shadow:active:focus {
    box-shadow: 0 0 15px #343a40 !important;
}

.badge-orange {
    color: #fff;
    background-color: #ee982c;
}

.company-controls.tooltips-list.tooltips-info .tooltipList li a {
    border-radius: initial;
}

.company-controls.tooltips-list.tooltips-info .tooltipList li a {
    width: 80%;
    height: auto;
    color: #fff;
}

    .company-controls.tooltips-list.tooltips-info .tooltipList li a .img-tooltips {
        width: 64px;
        height: auto;
        opacity: 1;
        color: #fff;
    }

    .company-controls.tooltips-list.tooltips-info .tooltipList li a.btn,
    .company-controls.tooltips-list.tooltips-info .tooltipList li a.btn-horiz2::before {
        background-color: transparent;
        margin: 10px;
    }

    .company-controls.tooltips-list.tooltips-info .tooltipList li a.btn-outline-default:hover,
    .ShopNow:hover {
        background-color: #78787b;
        color: #fff;
    }

    .company-controls.tooltips-list.tooltips-info .tooltipList li a:hover img {
        opacity: 1;
        -webkit-transform: translate(-10px, 0);
        -moz-transform: translate(-10px, 0);
        -o-transform: translate(-10px, 0);
        -ms-transform: translate(-10px, 0);
        -moz-transition: 0.35s ease-out;
        -o-transition: 0.35s ease-out;
    }

.tooltips-info {
    background-color: rgba(0, 0, 0, 0.5) !important;
    padding: 5% 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.company-controls.tooltips-list h2 {
    color: #fff;
}

.company-controls.tooltips-list div.divider {
    margin: 0;
    border: 1px solid #ffc107;
    background-color: #ffc107;
    color: #fff;
    padding: 0;
    height: 2px;
    opacity: 1;
}

.ShopNow {
    position: absolute;
    width: 38px;
    height: auto;
    z-index: 100;
    top: 4px;
    right: 10px;
    background: rgba(1, 0, 68, 0.5);
    padding: 5px;
    border: 1px solid #fff;
}

    .ShopNow img {
        width: 100%;
        height: auto;
    }

#home-pavillion-entities-list,
#home-pavillions {
    background-color: rgba(0, 0, 0, 0.5);
}

.pavillion-container:hover .over-button {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.section-name.i18n-item {
    color: #343c48;
    font-weight: bold;
}

@media only screen and (max-width: 700px) and (min-width: 300px) {
    #background-container {
        background-color: #a154a0;
    }

    #background {
        background-size: contain;
        background-color: #78787b;
    }

        #background video {
            display: inherit;
            position: fixed;
            top: 50%;
            left: 50%;
            width: 100%;
            min-height: auto;
            -ms-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
            -webkit-transform: translateX(-50%) translateY(-50%);
            -moz-transform: translateX(-50%) translateY(-50%);
            -o-transform: translateX(-50%) translateY(-50%);
            overflow: hidden;
        }

    .pavillion-container {
        height: 100px;
    }

    element.style {
        background-size: 100% auto;
    }

    .pavillion-name-container {
        height: 100px;
    }

    #heights-footer-social {
        display: none;
    }

    .company-controls.tooltips-list.tooltips-info .tooltipList li a {
        width: 95%;
    }
}

@media screen and (min-width: 1920px) {
    div.inners.abouty.LoginSize {
        margin: 80px 0;
        min-height: 718px;
    }
}

@media screen and (max-width: 1600px) {
    div.inners.abouty.LoginSize {
        margin: 80px 0;
        min-height: 538px;
    }
}

.logoLoginHeader {
    text-align: center;
    margin-bottom: 10px;
}

    .logoLoginHeader img {
        width: 100%;
        max-width: 200px;
    }

@media screen and (min-width: 1366px) {
    #background-stand,
    #background-stand-container {
        height: 650px;
    }
}

@media screen and (min-width: 1450px) {
    #background-stand,
    #background-stand-container {
        height: 700px;
    }
}

@media screen and (min-width: 1600px) {
    #background-stand,
    #background-stand-container {
        height: 760px;
    }
}

@media screen and (min-width: 1920px) {
    #background-stand,
    #background-stand-container {
        height: 850px;
    }
}

@media screen and (min-width: 200px) and (max-width: 400px) {
    #background-stand-container {
        margin-top: 85px;
    }

    #background-stand,
    #background-stand-container {
        height: 170px;
    }
}

@media screen and (min-width: 401px) and (max-width: 600px) {
    #background-stand-container {
        margin-top: 85px;
    }

    #background-stand,
    #background-stand-container {
        height: 210px;
    }
}

.owl-carousel {
    direction: ltr;
}

@media screen and (max-width: 1367px) {
    .company-controls.tooltips-list.tooltips-info .tooltipList li a {
        font-size: 12px;
        padding: 10px;
    }
}

#heights-footer {
    margin-left: 15px;
    margin-right: 15px;
}

p.footer-text a {
    font-size: 0.7em;
    color: #fff !important;
}

.row.footer-row {
    margin-top: 0;
    margin-bottom: 0;
}

p.footer-text a img.heightsLogo {
    width: auto;
    padding: 0 5px;
    height: 20px;
}

p.footer-text a img.techLogo {
    width: 100px;
    padding: 0 5px;
}

._imageMaps_area_view {
    margin-top: 100px;
}

@media screen and (max-width: 1920px) {
    ._imageMaps_area_view {
        margin-top: 85px;
    }
}

.main.mt50 {
    margin-top: 0px;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
}

#background-container {
    position: relative;
    width: auto !important;
}

#fair-info-home-container button {
    padding: 10px 70px 10px 70px;
    font-weight: 800;
}

.termsCondition {
    margin-top: 10px;
    text-align: justify;
}

    .termsCondition .termsContent {
        max-height: 250px;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 10px;
        background-color: #f9f9f9;
        margin: 5px 0;
        word-wrap: break-word;
    }

a {
    color: #a154a0;
}

#fair-info-home-container button,
#header.no-home .header-container {
    background-color: #a154a0;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

    #fair-info-home-container button:hover,
    #header.no-home .header-container {
        background-color: #a154a0;
        color: #fff;
        z-index: 101;
    }

.home-register-button-container.left button,
.menu-user-button.profile,
.menu-user-button.register {
    background-color: #54ab5d;
    color: #fff;
}

.home-register-button-container.right button,
.menu-user-button.profile,
.menu-user-button.register {
    background-color: #a154a0;
    color: #fff;
}

.home-register-button-container.left button:hover {
    background-color: #a154a0;
    color: #fff;
}

.home-register-button-container.right button:hover {
    background-color: #54ab5d;
    color: #fff;
}

.menu-user-button.login {
    background-color: #54ab5d;
}

#heights-footer {
    background: #2e356a;
    color: #fff;
}

#footer {
    background: #2e356a;
    color: #fff;
}

@media screen and (min-width: 1250px) {
    .menu-user-button:hover.login,
    .menu-user-button:hover.logout {
        background-color: #4a763e;
    }

    .menu-user-button:hover.profile,
    .menu-user-button:hover.register {
        background-color: #4a763e;
    }

    #background-dark-cover {
        background: rgba(0, 0, 0, 0.5);
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.5)), color-stop(25%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0)));
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 100%);
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 100%);
        background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 100%);
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), color-stop(25%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.4) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000',endColorstr='#000000',GradientType=0);
    }

    #fair-info-home-container button:hover {
        background: #17586c;
        color: #fff;
        transform: scale(1.1);
    }

    #menu-navigation {
        margin-top: 10px;
    }

    #change-pavillion-container,
    #offers-filters-container,
    #pavillion-filters-container {
        background: -webkit-linear-gradient(90deg, #a154a0 10%, #a154a0 90%);
        background: -moz-linear-gradient(90deg, #a154a0 10%, #a154a0 90%);
        background: -ms-linear-gradient(90deg, #a154a0 10%, #a154a0 90%);
        background: -o-linear-gradient(90deg, #a154a0 10%, #a154a0 90%);
        background: linear-gradient(90deg, #a154a0 10%, #a154a0 90%);
    }

    .entities-list-item-over {
        background-color: rgba(124, 176, 62, 0.8);
        z-index: 3333;
        border: 1px solid #28a745;
    }
}

.sub-header {
    background: -webkit-linear-gradient(90deg, #78787b 10%, #78787b 90%);
    background: -moz-linear-gradient(90deg, #78787b 10%, #78787b 90%);
    background: -ms-linear-gradient(90deg, #78787b 10%, #78787b 90%);
    background: -o-linear-gradient(90deg, #78787b 10%, #78787b 90%);
    background: linear-gradient(90deg, #78787b 10%, #78787b 90%);
    color: #fff;
    z-index: 100;
}

.desktop-list-remove-filters,
.desktop-list-search-filters {
    background-color: #a154a0;
    color: #78787b;
}

.btn-chat .btn-holder a:hover {
    background: #a154a0;
}

.btn-chat .btn-holder a {
    color: #fff;
    background: #024f2e;
    box-shadow: 0 0 0 1px #28a745 inset;
    border: 1px solid #28a745;
}

#header-circles .header-profile-container .header-logout-img,
#header-circles .header-profile-container .header-profile-img {
    background-color: #a154a0;
    padding: 10px;
    border: 5px solid #a154a0;
    margin-top: 12px;
    margin-right: 9px;
    width: 20px;
    height: 20px;
}

#header-circles .header-profile-container span {
    margin: 11px 10px 0 0;
}

.entities-list-item-info {
    background: #a154a0 url("../images/gallerBg.png") center top;
    color: #fff;
}

    .entities-list-item-info a h3 {
        color: #fff;
    }

.entities-list-item {
    box-shadow: 0 0 1px 0 #024f2e;
    margin: 7px 0 7px 1%;
    padding: 0;
    overflow: hidden;
}

#menu-header p {
    color: #a154a0;
}

    #menu-header p.MenuLogo {
        text-align: center;
        width: 100%;
        height: auto;
    }

.MenuLogo img {
    width: 100%;
    max-width: 200px;
}

button.btn {
    background-color: #a154a0;
    color: #fab816;
}

button.btn-default {
    background-color: #a154a0;
    border: 2px solid #a154a0;
    color: #fff;
}

    button.btn-default.active.focus,
    button.btn-default.active:focus,
    button.btn-default.active:hover,
    button.btn-default:active.focus,
    button.btn-default:active:focus,
    button.btn-default:active:hover,
    button.open > .dropdown-toggle.btn-default.focus,
    button.open > .dropdown-toggle.btn-default:focus,
    button.open > .dropdown-toggle.btn-default:hover {
        color: #a154a0;
        background-color: #a154a0;
        border-color: #a154a0;
    }

    button.btn-default:hover {
        background-color: #a154a0;
        border: 2px solid #a154a0;
        color: #fff;
    }

.form-control {
    display: block;
    width: 100%;
    height: 45px;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.pavillion-container .over-button button {
    background-color: #a154a0;
}

.pavillion-name-container button {
    background-color: #a154a0;
}

.pavillion-container .over-button button,
.pavillion-container .pavillion-name-container button {
    line-height: 0;
}

.CoffeeLogo {
    width: 100%;
}

.company-controls.tooltips-list.tooltips-info .tooltipList li a.btn-outline-default:hover {
    background-color: #a154a0;
    color: #fff;
}

.btn-outline-default {
    border: 2px solid #a154a0;
    color: #a154a0;
}

.button-goto-pavillion button {
    background-color: #a154a0;
    color: #fff;
}

    .button-goto-pavillion button:hover,
    .button-goto-pavillion button:active {
        background-color: #024f2e;
    }

#change-pavillion-container {
    background-color: #a154a0;
    color: #fff;
}

    #change-pavillion-container button {
        height: 35px;
        width: 55px;
        float: right;
        margin-left: 10px;
        background: url(../images/lists/lists-search-button-icon.svg) center no-repeat #a154a0;
        border: none;
        background-size: 45%;
        position: absolute;
        top: 0;
    }

#fair-info-home-container img#fair-logo {
    width: 60%;
    max-width: 250px;
}

@media screen and (min-width: 300px) and (min-width: 300px) {
    #fair-info-home-container img#fair-logo {
        width: 75%;
        display: initial;
        margin-top: -50px;
    }

    #fair-name-container {
        padding: 0 10px;
    }

    #home-register-buttons .welcome-message {
        text-shadow: 1px 1px 1px #000;
        line-height: 1.7;
        font-size: 14px;
    }

    #interactionsRegion .tooltips-info {
        background-color: rgba(0, 0, 0, 1) !important;
        padding: 5% 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

@media screen and (min-width: 480px) {
    #fair-info-home-container img#fair-logo {
        width: 75%;
        display: initial;
        margin-top: -50px;
    }

    #fair-name-container {
        padding: 0 10px;
    }

    #home-register-buttons .welcome-message {
        text-shadow: 1px 1px 1px #000;
        line-height: 1.7;
        font-size: 14px;
    }

    #interactionsRegion .tooltips-info {
        background-color: rgba(0, 0, 0, 0.5) !important;
        padding: 5% 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

@media screen and (min-width: 1250px) {
    #fair-info-home-container img#fair-logo {
        width: 80%;
        max-width: 250px;
        margin-top: 0;
    }

    #interactionsRegion .tooltips-info {
        background-color: rgba(0, 0, 0, 0.5) !important;
        padding: 5% 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    #fair-info-home-container {
        padding-top: 20px;
        width: 1000px;
    }

    #fair-info-home-container {
        left: calc(50% - 500px);
    }
}

#DEV_EntitiesListContainer .entity-list-item .entities-list-item-info h3 {
    padding: 5px 5px 0;
    font-size: 14px;
}

#fair-info-home-container h2 {
    text-shadow: 1px 1px 1px #000;
    line-height: 1.7;
}

#left-menu {
    right: 0;
}

.tooltip-box-dark {
    max-width: 270px;
    height: 50px;
}

.tooltip-pavillion-offers {
    width: calc(100% - 25px);
    font-weight: bold;
    font-size: 8px;
    line-height: 1.2;
}

div.entities-list-item-info {
    height: 90px;
}

.entities-list-item-info h3,
.entities-list-item-logo h3 {
    text-align: center;
    height: 90px;
    line-height: 1.3;
}

.container_wrap .container {
    width: 100%;
}

.ui-accordion-content.ui-corner-bottom.ui-accordion-content-active {
    border: none;
}

.sub-header.stand {
    overflow: hidden;
}

#commentsLst {
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: scroll;
    border: 1px solid #ddd;
}

    #commentsLst .item {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        border-radius: 20px;
        padding: 8px 15px;
        margin-top: 5px;
        margin-bottom: 5px;
        display: inline-block;
        width: 100%;
    }

        #commentsLst .item div:first-child {
            line-height: 1;
            width: 50%;
            float: left;
        }

            #commentsLst .item div:first-child h4 {
                font-weight: bolder;
                font-size: 13px;
                line-height: 1.7;
                color: #064d61;
            }

            #commentsLst .item div:first-child span {
                font-size: 9px;
                color: #000;
            }

            #commentsLst .item div:first-child p {
                line-height: 1.7;
                padding: 5px;
            }

            #commentsLst .item div:first-child a {
                color: #fff;
                font-size: 10px;
                padding: 5px 10px;
                background-color: #4e8849;
                border-radius: 5px;
            }

            #commentsLst .item div:first-child a {
                float: right;
            }

            #commentsLst .item div:first-child.mine a {
                float: left;
            }

.commentReply {
    margin: 5px 30px 0 30px !important;
}

#commentsLst .item .item div:first-child {
    float: left;
    align-items: flex-end;
}

#commentsLst .item div:first-child {
    color: #fff;
    background: linear-gradient(to bottom, #00d0ea 0%, #0085d1 100%);
    background-attachment: fixed;
    position: relative;
    border-radius: 5px;
    padding: 5px;
}

    #commentsLst .item div:first-child:before {
        content: "";
        position: absolute;
        z-index: 0;
        bottom: 0;
        height: 20px;
        width: 20px;
        background: linear-gradient(to bottom, #00d0ea 0%, #0085d1 100%);
        background-attachment: fixed;
        left: -8px;
        border-bottom-right-radius: 15px;
    }

    #commentsLst .item div:first-child:after {
        content: "";
        position: absolute;
        z-index: 1;
        bottom: 0;
        width: 10px;
        height: 20px;
        background: #fff;
        left: -10px;
        border-bottom-right-radius: 10px;
    }

    #commentsLst .item div:first-child.mine:before {
        left: initial;
        border-bottom-right-radius: 0;
        right: -8px;
        border-bottom-left-radius: 15px;
    }

    #commentsLst .item div:first-child.mine {
        float: right;
    }

        #commentsLst .item div:first-child.mine:after {
            left: initial;
            border-bottom-right-radius: 0;
            right: -10px;
            border-bottom-left-radius: 10px;
        }

.container-body-modal .container,
.container-body-modal-big .container {
    margin: auto !important;
    width: 100% !important;
    padding-bottom: 30px;
}

#background-stand,
#background-stand-container {
    margin-top: 0;
}

.alert.alert-danger a {
    color: #670000;
}

.modal-content .body-profile-header {
    background: none !important;
    background-color: #fff !important;
}
.header-profile-info{
    color: #2e356a !important;
}
#main {
    width: 100%;
    overflow: hidden;
}

figure.MainItem {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.hoverShine,
.hoverShine figure {
    position: relative;
}

    .hoverShine figure::before {
        position: absolute;
        top: 0;
        left: -75%;
        z-index: 2;
        display: block;
        content: "";
        width: 50%;
        height: 100%;
        background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
        background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
        -webkit-transform: skewX(-25deg);
        transform: skewX(-25deg);
    }

    .hoverShine figure img {
        width: 100%;
    }

    .hoverShine figure:hover::before {
        -webkit-animation: shine 1.75s;
        animation: shine 1.75s;
    }

    .hoverShine .hoverTitle {
        position: absolute;
        top: 0;
        height: 32px;
        width: 100%;
        left: 0;
        text-align: center;
        line-height: 2;
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        text-shadow: 1px 1px 3px #000;
        font-weight: bold;
    }

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

@media screen and (min-width: 1200px) {
    #home-register-buttons .welcome-message {
        text-shadow: 1px 1px 1px #000;
        line-height: 1.7;
        font-size: 17px;
    }
}

@media only screen and (max-width: 700px) and (min-width: 300px) {
    #home-register-buttons .welcome-message {
        color: #78787b;
        text-shadow: none;
    }

    #background {
        background-size: contain;
        background-color: #fff;
    }

    #ham-button-container #ham-button:before,
    #ham-button-container #ham-button .second-line,
    #ham-button-container #ham-button:after {
        background-color: #a154a0;
    }
    
    p.footer-text{
        margin: 5px;
        display:block;
        direction:ltr;
    }
    
    .event-details.m-50-20 {
        direction: rtl;
        line-height: 2;
        margin: 50px 0 100px 0;
    }
    .event-details h4{
        font-size: 21px;
    }
    .m-50-20.event-details p{
        font-size: 13px;
    }
}

.modal-body .row .col-md-4 {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

    .modal-body .row .col-md-4 img {
        width: 100%;
        max-width: 200px;
        height: auto;
        max-height: initial;
    }

figure.snip0018 {
    font-family: "LTAzer-Regular";
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 80%;
    max-width: 900px;
    background: #000000;
    text-align: center;
    margin: 30px auto 0px;
}

    figure.snip0018 * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    figure.snip0018 img {
        opacity: 1;
        width: 100%;
        -webkit-transition: opacity 0.35s;
        transition: opacity 0.35s;
    }

    figure.snip0018 figcaption {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

        figure.snip0018 figcaption > div {
            height: 30%;
            overflow: hidden;
            width: 100%;
            position: relative;
        }

            figure.snip0018 figcaption > div.headd {
                height: 70%;
            }

        figure.snip0018 figcaption::before {
            position: absolute;
            top: 70%;
            right: 50%;
            left: 50%;
            height: 2px;
            content: '';
            opacity: 0;
            background-color: rgba(255, 255, 255, 0);
            -webkit-transition: all 0.4s;
            transition: all 0.4s;
            -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
        }

    figure.snip0018 h2,
    figure.snip0018 p {
        margin: 0;
        padding: 20px 35px 30px;
        opacity: 0;
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
        transition: opacity 0.4s,-webkit-transform 0.4s,-moz-transform 0.4s,-o-transform 0.4s,transform 0.4s;
    }

    figure.snip0018 h2 {
        display: inline-block;
        word-spacing: -0.1em;
        font-weight: 900;
        text-transform: uppercase;
        bottom: 0;
        font-size: 50px;
        background: rgb(60 15 94 / 90%);
        -webkit-transform: translate3d(0%, 50%, 0);
        transform: translate3d(0%, 50%, 0);
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        figure.snip0018 h2 span {
            font-weight: 800;
        }

    figure.snip0018 p {
        font-weight: 300;
        top: 0%;
        color: #094965;
        background: #fff;
        -webkit-transform: translate3d(0%, -50%, 0);
        transform: translate3d(0%, -50%, 0);
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
        font-size: 27px;
    }

    figure.snip0018 a {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        position: absolute;
        color: #ffffff;
    }

    figure.snip0018:hover img {
        opacity: 0.4;
    }

    figure.snip0018:hover figcaption h2,
    figure.snip0018:hover figcaption p {
        -webkit-transform: translate3d(0%, 0%, 0);
        transform: translate3d(0%, 0%, 0);
        -webkit-transition-delay: 0.3s;
        transition-delay: 0.3s;
    }

    figure.snip0018:hover figcaption h2 {
        opacity: 1;
    }

    figure.snip0018:hover figcaption p {
        opacity: 1;
    }

    figure.snip0018:hover figcaption::before {
        background: #ffffff;
        left: 0px;
        right: 0px;
        opacity: 1;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

.menu-navigation-item.home:hover {
    background-image: url(../images/common/menu-home-icon.svg);
}

.menu-navigation-item.pavillion:hover {
    background-image: url(../images/common/menu-pavillion-icon.svg);
}

.menu-navigation-item.jobs:hover {
    background-image: url(../images/common/menu-jobs-icon.svg);
}

.menu-navigation-item::after {
    content: '';
    right: 0;
    width: 2px;
    height: 0;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: transparent;
    position: absolute;
    -webkit-transition: all 0.4s, -webkit-transform 0.4s;
    transition: all 0.4s,-webkit-transform 0.4s,-moz-transform 0.4s,-o-transform 0.4s,transform 0.4s;
}

.menu-navigation-item::before {
    content: '';
    width: 0px;
    height: 2px;
    right: 30px;
    bottom: 2px;
    background-color: white;
    position: absolute;
    -webkit-transition: all 0.4s, -webkit-transform 0.4s;
    transition: all 0.4s,-webkit-transform 0.4s,-moz-transform 0.4s,-o-transform 0.4s,transform 0.4s;
}

.menu-navigation-item {
    -webkit-transition: all 0.4s, -webkit-transform 0.4s;
    transition: all 0.4s,-webkit-transform 0.4s,-moz-transform 0.4s,-o-transform 0.4s,transform 0.4s;
    position: relative;
    clear: both;
}

    .menu-navigation-item:hover::after {
        height: 80%;
    }

    .menu-navigation-item:hover::before {
        -webkit-transition-delay: 0.3s;
        width: 60px;
    }

@media screen and (min-width: 1250px) {
    body {
        font-size: 18px;
    }
}

.title-stand {
    background-color: #78787b;
    padding: 5px 10px;
    margin-top: -5px;
    border-radius: 5px;
}

.navbar-default {
    background: transparent;
}

#header.stand .sub-header {
    background: rgba(120,120,123, 0.20);
    text-align: left;
    padding: 0px 15px;
    line-height: 1;
    text-shadow: 1px 1px 1px #000;
}

.main.mt50 {
    margin-top: 50px;
}

.ShopNow {
    position: absolute;
    width: 38px;
    height: auto;
    z-index: 100;
    top: 4px;
    right: 10px;
    background: rgba(1, 0, 68, 0.5);
    padding: 5px;
    border: 1px solid #fff;
}

.whats-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    background-color: #a154a0;
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    line-height: 2;
}

figure.snip1191.blue h3, figure.snip1191.blue span {
   background-color:#29b5bd !important;
}

    figure.snip1191.blue span:before {
        border-color:#29b5bd transparent transparent !important;
    }

footer {
    width: 100%;
    overflow: hidden;
}

.btn-success {
    color: #fff;
    background-color: #29b5bd;
    border-color: #29b5bd;
}
