.floor-plan-map-wrap {
    margin: 0 auto;
    position: relative;
    background-size: cover;
    background-position: center;
}

.wp-admin .floor-plan-map-wrap {
    margin: 0;
    margin: 0;
}

.tradeshow_fp__draggable-item__wrap {
    position: absolute;
}

.tradeshow_fp__draggable-item__wrap.active .tradeshow_fp__draggable-item {
    border-color: #2271b1;
}

.tradeshow_fp__draggable-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    text-align: center;
    background: white;
    border: 1px solid #333;
    box-sizing: border-box;
    transition: all 0.3s ease;
    position: relative;
}

.tradeshow_fp__draggable-item:hover {
    opacity: 0.85;
}

.tradeshow_fp__draggable-item strong {
    font-size: 13px;
    backface-visibility: hidden;
}

.tradeshow_fp_front-wrap {
    overflow: visible;
}

.tradeshow_fp__modal {
    display: none;
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.tradeshow_fp__modal__inner {
    max-height: calc(100% - 100px);
    max-width: calc(100% - 40px);
    overflow: auto;
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 415px;
    padding: 0px 10px 38px;
    border: 1px solid;
    background: #fff;
}

.tradeshow_fp__all_table .tradeshow_fp__modal__inner {
    width: auto;
}

.tradeshow_fp__modal-front .tradeshow_fp__modal__inner {
    padding: 0;
}

.tradeshow_fp__modal__close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tradeshow_fp__toggle-next {
    cursor: pointer;
}

.tradeshow_fp__draggable-actions {
    position: absolute;
    z-index: 1;
    display: none;
    flex-wrap: wrap;
    width: 84px;
    bottom: -60px;
}

.tradeshow_fp__draggable-actions.active {
    display: flex;
}

.tradeshow_fp__draggable-actions button {
    padding: 4px 4px 2px;
    cursor: pointer;
}

.tradeshow_fp__draggable-actions button img {
    width: 16px;
    height: 16px;
}

.tradeshow_fp__notice {
    display: none;
    font-size: 17px;
    padding: 7px 11px;
    position: fixed;
    bottom:30px;
    right: 30px;
    /*transform: translate(-50%, -50%);*/
    background-color: #fff;
    -webkit-box-shadow: 5px 5px 15px 5px #9E9E9E;
    box-shadow: 5px 5px 15px 5px #9E9E9E;
    pointer-events: none;
}

.tradeshow_fp__comma:last-of-type {
    display: none;
}

.tradeshow_fp__map_header {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.tradeshow_fp__map_header__category {
    display: flex;
    align-items: center;
    font-size: 13px;
    margin-right: 15px;
}

.tradeshow_fp__map_header__category__color {
    width: 24px;
    height: 24px;
    margin-right: 9px;
    box-sizing: border-box;
}

.tradeshow_fp__spinner-wrap {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.tradeshow_fp__spinner {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.tradeshow_fp__spinner div {
    transform-origin: 40px 40px;
    animation: tradeshow_fp-spinner 1.2s linear infinite;
}

.tradeshow_fp__spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #fff;
}

.tradeshow_fp__spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.tradeshow_fp__spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.tradeshow_fp__spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.tradeshow_fp__spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.tradeshow_fp__spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
}

.tradeshow_fp__spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.tradeshow_fp__spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.tradeshow_fp__spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.tradeshow_fp__spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.tradeshow_fp__spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.tradeshow_fp__spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.tradeshow_fp__spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes tradeshow_fp-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.tradeshow_fp__modal__heading {
    padding: 17px 10px;
    background-color: #214B75;
    margin: 0 0 15px !important;
}

.tradeshow_fp__modal__heading h4 {
    font-size: 17px;
    margin: 0 !important;
    color: #fff;
}

.tradeshow_fp__modal__content {
    padding: 0 10px 10px;
}

.tradeshow_fp__tooltip {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3000;
    color: #000;
    border: 1px solid #111;
    background-color: #C2E0F5;
    padding: 10px 10px 6px;
    white-space: nowrap;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tradeshow_fp__draggable-item__wrap:hover .tradeshow_fp__tooltip {
    opacity: 1;
    visibility: visible;
}

.floor-plan-map-wrap .tradeshow_fp__tooltip h3{
    font-size: 11px;
    margin: 0 0 4px;
}

.floor-plan-map-wrap .tradeshow_fp__tooltip h4{
    font-size: 13px;
    margin: 0 0 6px;
}

.floor-plan-map-wrap .tradeshow_fp__tooltip h5{
    font-size: 11px;
    margin: 0 0 4px;
}

.ill-tradeshow-floorplan__shortcode {
    cursor: pointer;
}

.ill-tradeshow--open {
    color: #000;
    background-color: #fff;
}

.ill-tradeshow--occupied {
    color: #fff;
    background-color: #165a8a;
}

.ill-tradeshow--reserved {
    color: #fff;
    background-color: #8b0025;
}

.ill-tradeshow--premium-booth {
    border: 1px solid gold;
}

.ill-tradeshow--annual-gold-sponsor {
    color: #fff;
    background-color: #d4b400;
}

.ill-tradeshow--annual-platinum-sponsor {
    color: #fff;
    background-color: #999999;
}

.ill-tradeshow--event-sponsor {
    color: #fff;
    background-color: #009471;
}

.ill-tradeshow--disabled {
    background: #fff url("../img/power-off-solid.svg") no-repeat center center / 20px !important;
}

.wp-admin .ill-tradeshow--disabled strong {
    display: none;
}

.tradeshow_fp__exhibitors-wrap tr:hover td{
    cursor: pointer;
    color: #214B75;
    text-decoration: underline;
}

#ill-tradeshow--ajax-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

#ill-tradeshow--ajax-spinner div {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/*.tradeshow_fp__all_table__form-table th,*/
/*.tradeshow_fp__all_table__form-table td {*/
/*    padding: 10px;*/
/*}*/

.tradeshow_fp__all_table__form-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
    margin-bottom: 20px;
}

.tradeshow_fp__all_table__form-table th {
    background-color: #f4f4f4;
    color: #333;
    font-weight: bold;
    padding: 10px;
    border: 1px solid #ddd;
}

.tradeshow_fp__all_table__form-table td {
    padding: 10px;
    border: 1px solid #ddd;
}

.tradeshow_fp__all_table__form-table tr:hover {
    background-color: #f9f9f9;
}

.tradeshow_fp__all_table__form-table tr:nth-child(even) {
    background-color: #f7f7f7;
}

[ill-tradeshow-floorplan--table-editor-input]::-webkit-outer-spin-button,
[ill-tradeshow-floorplan--table-editor-input]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}