/**
Theme Name: Coalition to Protect America’s Health Care
Author: Team Kbw
Author URI: https://keybridgeweb.com/about/
Description: Coalition to Protect America’s Health Care Child Theme
Version: 2023
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: coalition-to-protect-americas-health-care
Template: astra
*/

.api_videos_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.api_video_item {
    display: inline-block;
    width: calc(33% - 20px);
}
.api_video_item video {
    display: block;
    width: 100%;
    max-height: 211px;
}
.video_thumb {
    display: block;
    clear: both;
    width: 100%;
    min-height: 350px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}
.video_thumb > img {
    object-fit: cover;
    height: 350px;
    width: 100%;
    cursor: pointer;
}
.video_thumb::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #2d67ff;
    opacity: 0.5;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
}
.video_thumb:hover::before {
    opacity: 0;
}
.video_thumb span {
    position: absolute;
    bottom: 20px;
    z-index: 110;
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: #fff;
    left: 0px;
    padding: 0px 15px;
    box-sizing: border-box;
}
.video_popup_outer {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0,0,0,0.6);
    display: none;
}
.video_popup_inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.video_popup_wrap {
    display: block;
    width: 100%;
    max-width: 650px;
    text-align: center;
    position: relative;
}
.video_popup_wrap video {
    display: block;
    width: 100%;
}
.video_popup_wrap span
{
    position: absolute;
    right: -20px;
    background: #fff;
    top: -20px;
    z-index: 100;
    width: 30px;
    height: 30px;
    line-height: 26px;
    font-size: 30px;
    border-radius: 40px;
    rotate: 41deg;
    padding-left: 1px;
    cursor: pointer;
}