.youtube-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 25%;
    height: 40px;
    background: #7c6d53;
    position: relative;
    cursor: pointer;
}

.youtube-link:hover .popup-link {
    display: block;
}

.popup-link {
    display: none;
    background: #7c6d53;
    position: absolute;
    bottom: 100%;
    right: 50%;
    transform: translateX(50%);            
    width: 100%;
    max-width: 280px; 
    padding: 20px 16px 16px;

}

.popup-link > li {
    border-radius: 4px;
    background-color: #e5e1d0!important;
}

.popup-link > li > a {
    padding: 10px!important;
    height: auto!important;
    width: 100%!important;
    background-color: transparent!important;
    color: #1e1e1e;
    justify-content: flex-start!important;
    font-weight: bold;
    font-size: 14px;
}

.popup-link-image {
    width: 40px;
    border-radius: 100%;
    margin-right: 8px
}

.popup-link li:first-of-type {
    margin-bottom: 10px;
}

@media screen and (max-width: 980px) {
    .popup-link {
        max-width: 10000px;
        width: 280px;
        transform: none;
        right: 0;
    }
}