.container-cursor-trailer {
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    column-gap: 10px;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    background-color: #fff;
    color: #000;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    font-size: 13px;
    z-index: 10;
    cursor: pointer;
}

.container-cursor-trailer img.icon {
    height: 20px;
}

.container-cursor-trailer.show {
    opacity: 1;
    transform: scale(1);
}

.container-cursor-trailer a {
    color: white;
    text-decoration: none;
}