.white-popup {
  position: relative;
  background: #FFF;
  padding: 30px;
  width: auto;
  max-width: 900px;
  margin: 20px auto;
}

.popup-button a {
    border: 2px solid var(--primary-color);
    display: inline-block;
    padding: 10px 20px;
    color: #000;
    margin-top: 25px;
    font-weight: bold;
    transition: .5s;
    letter-spacing: 0.5px;
}

.popup-button {
    text-align: center;
}

.popup-button a:before {
    content: '\e80d';
    font-family: 'entypo-fontello';
    padding-right: 5px;
}

.popup-button a:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

h3.video-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 25px;
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .popup-button a {
        font-size: 18px;
    }

    h3.video-heading {
        font-size: 35px;
    }
}

.popup-inner video {
    border: 1px solid #e1e1e1 !important;
    display: block;
}