.device-player-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000b2;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.device-player-popup-overlay.is-active {
    display: flex;
}

.device-player-popup-container {
    display: none;
    position: fixed;
    background-color: #ffffff;
    width: 880px;
    height: auto;
    padding: 36px;
    box-sizing: border-box;
    border-radius: 16px;
    z-index: 1001;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.device-player-popup-container.is-active {
    display: initial;
}

.device-player-popup-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.device-player-popup-close {
    background: none;
    border: none;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.device-player-popup-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.device-player-popup-title {
    font-size: 1.53em;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.about_mgs_player-wrapper {
    width: 284px;
}

.close-icon::before,
.close-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 30px;
    background: #333333;
}

.close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.device-player-popup-description {
    font-size: 0.92em;
}
