.hs_popup.video {
    position: absolute;
    box-sizing: border-box;
    left: 50%; top: -10px; margin-top: -20px;
    transform: translate(-50%,-100%) scale(0);
    transform-origin: bottom;
    width: 300px; height: auto;
    font-size: 0;
    opacity: 0;
    background-color: white;
    transition: transform 0.3s, opacity 0.3s;
}

.hs_popup.video.hover {
    transform:  translate(-50%,-100%) scale(1);
    opacity: 1;
}

/*
.hs_popup.justimage::before {
    content: '';
    display: block;
    position: absolute;
    left: 50%; top: 100%; 
    transform: translate(-50%,-50%) rotate(45deg);
    width: 15px; height: 15px;
    background-color: white;
    /* border: 10px solid transparent; border-top: 10px solid white; */
}
*/

.hs_popup.video {
}

.hs_popup.video .thumb {
    position: relative;
    padding: 0;
    /* padding: 10px 10px 0 10px; */
}

.hs_popup.video .thumb img {
    position: relative;
    width: 100%; height: auto;
}

.hs_popup.video .thumb::before {
    content: '';
    display: block; box-sizing: border-box;
    position: absolute;
    left: 50%; top: 50%; transform: translate(-50%,-50%) scale(1);
    width: 60px; height: 60px; border-radius: 100px;
    border: 4px solid rgba(228,37,37,1);
    background-color: rgba(255,255,255,0.4);
    z-index: 100;
    transition: transform 0.3s;

}

.hs_popup.video .thumb::after {
    content: '';
    display: block; box-sizing: border-box;
    position: absolute;
    left: 50%; top: 50%; 
    transform: translate(-50%,-50%) scale(0.9) translateX(12px);
    width: 20px; height: 20px; 
    border: 15px solid transparent; border-left: 26px solid rgba(228,37,37,1);
    z-index: 100;
    transition: transform 0.3s;
}

.hs_popup.video .thumb:hover::before {
    transform: translate(-50%,-50%) scale(1.2);
}

.hs_popup.video .thumb:hover::after {
    transform: translate(-50%,-50%) scale(1.5) translateX(12px);
}

.hs_popup.video .text {
    position: relative;
    padding: 13px 22px 15px 18px;
}

.hs_popup.video .text .title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 14px; line-height: 16px;
    margin-bottom: 8px;
    color: #1B133A;
}

.hs_popup.video .text .description {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 12px; line-height: 14px;
    color: #1B133A;
}


@media all and (max-width: 767px) {

.hs_popup.video .text {
    position: relative;
    padding: 13px 22px 15px 18px;
}

.hs_popup.video .text .title {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 16px; line-height: 18px;
    margin-bottom: 8px;
    color: #1B133A;
}

.hs_popup.video .text .description {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 14px; line-height: 16px;
    color: #1B133A;
}