:root {
    --en-z-index-marquee: 2147483620;
}

.en-marquee-module * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.en-marquee-module {
    width: 100%;
    margin: 0 auto;
    white-space: nowrap;
    background: #fff;
    /*position: relative;*/
    height: 100%;
    max-height: 40px;
    z-index: var(--en-z-index-marquee);
    display: none;
    --en-marquee-popup-border-width: 1px;
    --en-marquee-popup-border-color: #aaa;
    --en-marquee-popup-background: #f8f8f8;
    --en-marquee-popup-text-color: #000;

    --en-marquee-button-background: #d8d8d8;
    --en-marquee-button-text-color: #333;
}

.en-marquee-module .en-marquee-module-content-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
    min-height: 10px;
}

.en-marquee-module .en-marquee-module-content {
    display: inline-block;
    text-indent: 0;
    animation: en-marquee 20s linear infinite;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #000;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.en-marquee-module .en-marquee-module-content:hover {
    animation-play-state: paused;
}

@keyframes en-marquee {
    0% {
        left: 100%;
        transform: translateY(-50%);
    }

    100% {
        left: 0;
        transform: translateX(-100%) translateY(-50%);
    }
}

.en-marquee-module .en-marquee-popup-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    width: 100%;
    max-width: 400px;
}

.en-marquee-module.popup-top .en-marquee-popup-wrapper {
    transform: translate(-50%, -100%);
    flex-direction: column-reverse;
}

.en-marquee-module:hover .en-marquee-popup-wrapper {
    visibility: visible;
}

.en-marquee-module.popup-bottom:hover .en-marquee-popup-wrapper {
    margin-top: -30px;
}

.en-marquee-module .en-marquee-popup-wrapper .en-marquee-popup-icon {
    border-width: 20px;
    border-style: solid;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: var(--en-marquee-popup-background);
    border-left-color: transparent;
}

.en-marquee-module.popup-top .en-marquee-popup-wrapper .en-marquee-popup-icon {
    border-top-color: var(--en-marquee-popup-background);
    border-bottom-color: transparent;
}

.en-marquee-module .en-marquee-popup-wrapper .en-marquee-popup {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 100%;
    border: var(--en-marquee-popup-border-width) solid var(--en-marquee-popup-border-color);
    border-radius: 8px;
    background-color: var(--en-marquee-popup-background);
}


.en-marquee-module.popup-top .en-marquee-popup-wrapper .en-marquee-popup {
    flex-direction: column-reverse;
}

.en-marquee-module .en-marquee-popup-wrapper .en-marquee-popup .en-marquee-tooltip-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.en-marquee-module .en-marquee-popup button,
.en-marquee-module .en-marquee-tooltip-buttons button {
    background: var(--en-marquee-button-background);
    color: var(--en-marquee-button-text-color);
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    font-size: 17px;
    cursor: pointer;
}

.en-marquee-module .en-marquee-popup .en-marquee-popup-text {
    color: var(--en-marquee-popup-text-color);
    margin-top: 10px;
    font-size: 17px;
    white-space: normal;
    text-align: center;
}

.en-marquee-module .en-marquee-popup .en-marquee-popup-text br {
    display: none;
}

.en-marquee-module.popup-top .en-marquee-popup .en-marquee-popup-text {
    margin-top: 0;
    margin-bottom: 10px;
}

.en-marquee-module .en-marquee-module-content[paused-animation],
.en-marquee-module .en-marquee-module-content.pause-animation {
    animation-play-state: paused;
}

.en-marquee-module.v2 .en-marquee-popup-wrapper .en-marquee-popup {
    z-index: 1;
}
.en-marquee-module.v2 .en-marquee-popup-wrapper .en-marquee-popup-icon {
    position: relative;
    z-index: 3;
    top: calc(1.4142 * var(--en-marquee-popup-border-width));;
}
.en-marquee-module:not(.v2) .en-marquee-popup-wrapper .en-marquee-popup-icon-borders {
    display: none;
}
.en-marquee-module.v2 .en-marquee-popup-wrapper .en-marquee-popup-icon-borders {
    position: absolute;
    top: calc(-1 * var(--en-marquee-popup-border-width));
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: calc(20px + var(--en-marquee-popup-border-width));
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: var(--en-marquee-popup-border-color);
    border-left-color: transparent;
    z-index: 2;
}

.en-marquee-module.v2.animation-paused button.en-marquee-tooltip-pause-button {
    display: none;
}
.en-marquee-module.v2.animation-paused button.en-marquee-tooltip-play-button {
    display: inline-block;
}

.en-marquee-module.v2:not(.animation-paused) button.en-marquee-tooltip-pause-button {
    display: inline-block;
}
.en-marquee-module.v2:not(.animation-paused) button.en-marquee-tooltip-play-button {
    display: none;
}

.en-marquee-module.v2.popup-top .en-marquee-popup-wrapper .en-marquee-popup-icon {
    bottom: calc(1.4142 * 1 * var(--en-marquee-popup-border-width));;
    top: auto;
    transform: translateY(1px);
}
.en-marquee-module.v2.popup-top .en-marquee-popup-wrapper .en-marquee-popup-icon {
    transform: translateY(-1px);
}
.en-marquee-module.v2.popup-top .en-marquee-popup-wrapper .en-marquee-popup-icon-borders {
    bottom: calc(-1 * var(--en-marquee-popup-border-width));
    top: auto;
    border-top-color: var(--en-marquee-popup-border-color);
    border-bottom-color: transparent;
}