p:empty {
    display: none !important;
}

.hiddenBlocks {
    position: relative;
    background: #fac750;
}

.entry-content .hiddenBlocks .hide_blocks-btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
}

.hiddenBlocks > div {
    /* display: none; */
}

.map-container {
    position: relative;
    width: 100%;
    height: 1300px;
    padding: 50px;
}

.map-container .map {
    position: absolute;
    width: 786px;
    left: 50%;
    transform: translateX(-50%);
}

.map-container .map > img {
    width: 786px;
}

.map-container .map area {
    display:block;
    position:relative;
    cursor: pointer;
}

.map-container .map map {
    width: 786px;
}

/**
 * Item Hover
 */
.map-container .map .hover-item {
    position: absolute;
    width: fit-content;
    max-width: 225px;
    text-align: center;
    color: white;
    padding: 3px;
    font-weight: 700;
    background: linear-gradient(45deg, orange, red);
    transition: 0.5s;
    z-index: -1;
    opacity: 0;
}

.map-container .map .hover-item.active {
    z-index: 99999;
    opacity: 1;
}

/**
 * Item Modal
 */
.map-container .map .modal-item .modal-background {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(250, 200, 80, 0.8);
    width: 100%;
    height: calc(100% + 20px);
    transition: 0.5s;
    z-index: -1;
    opacity: 0;
}

.map-container .map .modal-item.active .modal-background {
    z-index: 999999;
    opacity: 1;
}

.map-container .map .modal-item .modal-background .modal {
    position: absolute;
    width: 80%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #194664;
    padding: 10px 15px;
}

.map-container .map .modal-item .modal-background .modal .close-btn {
    position: absolute;
    bottom: 100%;
    right: 0;
    color: white;
    width: 30px;
    height: 30px;
    line-height: 27px;
    text-align: center;
    font-size: 1.5rem;
    background: #194664;
    cursor: pointer;
}

.map-container .map .modal-item .modal-background .modal .modal-content {
    width: 100%;
    height: 100%;
    overflow: auto;
}

.map-container .map .modal-item .modal-background .modal .modal-content .modal-title {
    text-align: right;
    color: white;
    font-weight: 700;
    background: linear-gradient(45deg, orange, red);
    margin: 0;
    font-size: 1.4rem;
    padding: 0 15px;
    line-height: 30px;
    height: 30px;
}

.map-container .map .modal-item .modal-background .modal .modal-content .content {
    width: 100%;
    height: 400px;
    background: white;
    text-align: center;
    vertical-align: middle;
}

.map-container .map .modal-item .modal-background .modal .modal-content .description {
    width: 100%;
    background: white;
    padding: 15px;
}

.map-container .map .modal-item .modal-background .modal .modal-content .description h4 {
    color: red;
    max-width: 50%;
}

.map-container .map .modal-item .modal-background .modal .modal-content .description p {
    max-width: 50%;
    margin: 0;
}

.map-container .map .modal-item .modal-background .modal .modal-content .contact {
    width: 100%;
    background: rgba(250, 200, 80, 1);
    padding: 15px;
}

.map-container .map .modal-item .modal-background .modal .modal-content .contact h4 {
    color: red;
    max-width: 50%;
}

.map-container .map .modal-item .modal-background .modal .modal-content .contact p {
    max-width: 50%;
    margin: 0;
    color: white;
}