
    .popup-highlights {
        display:none !important;
        
        width: 150px;
        margin-bottom: 20px;
        background-color: transparent;
        position: fixed;
        bottom: 0;
        right:10px;
        z-index:20
    }

@media screen and (min-width: 450px) {

    /*STYLE ALL HEADER___________________________________*/
    .popup-highlights {
        display:block !important;
        width: 300px;
        margin-bottom: 20px;
        background-color: transparent;
        position: fixed;
        bottom: 0;
        right:10px;
        z-index:20
    }

    .container {
        max-width: 1800px;
        width: 100%;
    }

    .wrapper {
        padding: 0 40px;
    }

    .popup-highlights__inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #00000091;
        padding: 60px 16px;
        border-radius: 100%;
    }

    .popup-highlights__open-close {
        display: none;
    }

    .popup-highlights__check {
        position: absolute;
        width: fit-content;
        height: fit-content;
        cursor: pointer;
    }

    .popup-highlights__check--close {
        top: 0;
        left: 0;
    }

    .popup-highlights__check--open {
        bottom: 0;
        left: 40px;
    }

    .popup-highlights__link {
        color: white;
    }

    .popup-highlights__show {
        display: none;
    }

    .popup-highlights__open-close:checked+.popup-highlights__link {
        display: none;
    }

    .popup-highlights__icon {
        display: flex;
    }

    .popup-highlights__icon--close svg {
        width: 20px;
        height: 20px;
        color: black;
        border-radius: 100%;
        background-color: white;
    }

    .popup-highlights__icon--open svg {
        width: 40px;
        height: 40px;
        color: white;
        background-color: #00000087;
        border-radius: 100%;
    }

    .popup-highlights__container-image {
        width: 70%;
        height: 70%;
    }

    .popup-highlights__image {
        width: 100%;
    }

    .popup-highlights__content {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: linear-gradient(45deg, black, transparent);
        border: 1px solid yellow;
        transition: all 0.2s linear;

    }

    .popup-highlights__link:hover {
        color: white;
    }

    .popup-highlights__link:hover .popup-highlights__content {
        background: linear-gradient(45deg, #ce0000, transparent);
        border: 1px solid black;
        letter-spacing: 1px;
        transition: all 0.2s linear;
    }

    .popup-highlights__heading {
        text-transform: uppercase;
        font-weight: 700;
    }
}