@import url('//fonts.googleapis.com/css2?family=Poppins&display=swap');

@keyframes wiggle {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(3px);
    }
}

* {
    box-sizing: inherit;
}

html,
body {
    box-sizing: border-box;
    height: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

body[dir="rtl"] .video-footer>div:first-of-type {
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, .2);
    margin-left: 20px;
    padding-left: 20px;
    margin-right: auto;
    padding-left: auto;
}

body[dir="rtl"] .btn-text {
    left: auto;
    right: -10px;
}

body[dir="rtl"] .arrows {
    right: auto;
    left: 14px;
}

body[dir="rtl"] .button {
    font-family: 'Tahoma', sans-serif;
}

iframe {
    vertical-align: top;
}

.video-wrapper {
    width: 640px;
}

.video-footer {
    align-items: center;
    background: #0c2780;
    color: #fff;
    display: flex;
    height: 100px;
    flex-wrap: wrap;
    padding: 5px 20px;
    text-decoration: none;
}

.video-footer>div:first-of-type {
    flex: 1 0 0%;
    border-right: 1px solid rgba(255, 255, 255, .2);
    margin-right: 20px;
    padding-right: 20px;
}

.logo {
    width: 100px;
}

.cta-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    max-width: 30%;
}

.button {
    align-items: center;
    background: linear-gradient(to right, #2e86fe, #11afff);
    border-radius: .2em;
    box-shadow: 0 10px 10px -2px rgba(0, 0, 0, .4);
    color: #fff;
    display: flex;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    justify-content: center;
    min-height: 50px;
    line-height: 1;
    padding: 4px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    width: 180px;
    transition: .3s transform;
}

.button:hover {
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, .3);
    transform: translateY(3px);
}

.btn-text {
    left: -10px;
    position: relative;
    width: 74%;
}

.arrows {
    animation: wiggle .6s infinite alternate both ease-in-out;
    display: inline-block;
    position: absolute;
    right: 14px;
}

#rw {
    font-size: 13px;
    margin-top: 3px;
    line-height: 1;
    width: 100%;
}

#rw.EL {
    font-size: 12px;
}

#fca-disclaimer {
    font-size: 12px;
    display: none;
    margin-top: 8px;
    line-height: 1;
    text-align: center;
}