.hotspot_image_holder {
    position: relative;
}
.hotspot_buttons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}
.hotspot_marker {
    background-color: transparent;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--e-global-color-accent);
    border-radius: 50%;
    box-sizing: content-box;
    cursor: pointer;
    width: 40px;
    height: 40px;
    transition: width .3s ease, height .3s ease;
    transform-origin: center;
}
.hotspot_marker:before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--e-global-color-accent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width .3s ease, height .3s ease;
}
.hotspot_marker:hover {
    width: 48px;
    height: 48px;
}
.hotspot_marker:hover:before {
    width: 28px;
    height: 28px;
}
.hotspot_button {
    position: absolute;
    z-index: 5;
    width: 40px;
    height: 40px;
}
.hotspot_button.left {
    left: var(--horizontal-offset, 50%);
}
.hotspot_button.right {
    right: var(--horizontal-offset, 50%);
}
.hotspot_button.top {
    top: var(--vertical-offset, 50%);
}
.hotspot_button.bottom {
    bottom: var(--vertical-offset, 50%);
}
.hotspot_image {
    width: 100%;
}
.hotspot_navigation_container {
    position: relative;
    width: 40vw;
    float: right;
    background-color: #ffffff;
    top: -100px;
    padding: 20px;
    z-index: 3;
}
.hotspot_navigation_item {
    padding: 16px 0;
    border-bottom: 1px solid #cbd3dc;
    cursor: pointer;
}
.hotspot_navigation_item:first-child {
    border-top: 1px solid #cbd3dc;
}

.hotspot_image_container {
    position: relative;
}
.hotspot_flyout_container {
    position: fixed;
    transform: translateX(100%);
    transition: transform .3s ease;
    height: 100dvh;
    width: 100%;
    background-color: #00000088;
    right: 0;
    top: 0;
    z-index: 50;
}
.hotspot_flyout_container.active {
    transform: translateX(0);
}
.hotspot_flyout_content {
    position: relative;
    width: 50%;
    height: 100%;
    margin-left: auto;
    margin-right: unset;
    background-color: #fff;
    z-index: 7;
    padding: 80px 40px 24px;
    overflow-y: auto;
}

.hotspot_flyout_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 15px;
    width: calc(100% - 80px);
}
.hotspot_slider_header_next {
    margin-right: auto;
}
.hotspot_flyout_header svg {
    width: 40px;
    height: 40px;
    fill: #000;
}

.hotspot_nav_wrapper {
    display: flex;
    flex-direction: row;
    position: relative;
    justify-self: center;
    width: fit-content;
    margin-top: 24px;
    margin-bottom: 24px;
}
.hotspot_pagination {
    width: auto;
    padding: 0 40px;
    z-index: 10;
    min-height: var(--swiper-navigation-size);
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
.hotspot_nav {
    position: absolute;
    top: 50%;
    transform: translateX(-50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--e-global-color-accent);
}
.hotspot_slider_widget_prev {
    left: 15px;
    right: auto;
}
.hotspot_slider_widget_next {
    right: -10px;
    left: auto;
}
.hotspot_nav_wrapper .swiper-button-disabled {
    opacity: .7;
    cursor: not-allowed;
}
.hotspot_pagination .swiper-pagination-bullet {
    border-bottom: 2px solid transparent;
    transition: background-color .3s ease-in-out;
    background-color: #cbd3dc;
    width: 40px;
    height: 2px;
    border-radius: 0;
    opacity: 1;
}
.hotspot_pagination .swiper-pagination-bullet-active {
    background-color: var(--e-global-color-accent);
}
.hotspot_item_content {
    background-color: #fff;
    overflow-y: auto;
}
.header_nav,
.close_flyout {
    cursor: pointer;
}
.hotspot_flyout_text {
    padding-bottom: 40px;
}
.hotspot_flyout_text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hotspot_flyout_text ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 12px;
}
.hotspot_flyout_text ul li:before {
    content: "";
    width: 6px;
    height: 25px;
    background-color: var(--e-global-color-accent);
    position: absolute;
    left: 0;
    top: 0;
}

@media(min-width: 768px) {
    .hotspot_nav_wrapper {
        display: none;
    }
}

@media(max-width: 767px) {
    .hotspot_image_holder, 
    .hotspot_buttons,
    .hotspot_navigation_container {
        display: none;
    }
    .hotspot_flyout_container {
        position: relative;
        transform: translateX(0);
        height: auto;
        width: 100%;
        background-color: transparent;
        padding: 0 7.5vw;
        box-sizing: border-box;
    }
    .hotspot_flyout_content {
        width: 100%;
        height: auto;
        padding: 0;
    }
    .hotspot_item_content {
        background-color: #fff;
        height: auto;
    }

}