.cwva-content {
    display:block;
}

.cwva-items {
    width:calc(45% - 20px);
    align-items:center;
    cursor:pointer;
    display:flex;
    transition: all 0.3s ease;
}
.cwva-items.active {
    align-items: start;
}
.cwva-items.active p {
    display:block;
    height:100%;
}
.cwva-items p {
    width:100% !important;
    display:none;
    height:0;
    -webkit-transition: all 0.3s ease;
    -moz-transition:    all 0.3s ease;
    -ms-transition:     all 0.3s ease;
    -o-transition:      all 0.3s ease;
    transition:         all 0.3s ease;
}

/* Improve focus visibility + allow card to receive focus (given tabindex="0" in HTML) */
.cwva-items:hover,
.cwva-items.active {
    outline: none;
}

.cwva-items:last-child {
    margin-bottom: 0;
}

/* Title badge */
.cwva-items .cwva-title {

}

/* Badge turns blue whenever the card is hovered, focused, or active */
.cwva-items:hover .cwva-title,
.cwva-items:focus .cwva-title,
.cwva-items.active .cwva-title {

}

.cwva-video {
    position: absolute;
    overflow:hidden;
    width: 50%;
    right: 0;
    top: 0;
}

.cwva-video video {
    display: none;
    width:auto;
}

.cwva-video video.active {
    display: block;
}

@media only screen and (max-width: 1024px) {
    .cwva-items {
        padding: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .cwva-items {
        width: 100%;
    }
    .cwva-video {
        position:relative;
        text-align:center;
        margin:auto;
        width:100%;
        right:0;
        left:0;
        top:0;
    }
}