/* Iframe style */
.signup-box-wrap{
    display: none;
}

.custom-iframe-sec{
    border: 1px solid #e7e7e7;
    border-radius: 20px;
}

.custom-iframe-sec > h3{
    padding: 20px 20px 0;
    font-size: 20px;
}

.custom-iframe-sec > iframe{
    display: block;
    border-radius: 0 0 20px 20px;
}
/* End Iframe style */
/* Watch video btn */
.watch-video {
    position: relative;
    padding: 10px 25px 10px 50px;
    border-color: #0047ff;
    color: #0047ff;
}

.watch-video::before, .watch-video::after{
    content: '';
    position: absolute;
}

.watch-video:before {
    width: 20px;
    height: 20px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border: 2px solid #0047ff;
    border-radius: 100%;
}

.watch-video:after {
    width: 0;
    height: 0;
    top: 50%;
    left: 28px;
    transform: translateY(-50%);
    border-color: transparent transparent transparent #0047ff;
    border-style: solid;
    border-width: 5px 0 5px 7px;
}
/* End watch video btn */
@media (max-width: 767px){
    .watch-video {
        line-height: 22px;
    }

    .custom-iframe-sec > h3{
        font-size: 18px;
    }
}

@media (max-width: 480px){
    .custom-iframe-sec > h3 {
        padding: 15px 15px 0;
    }
}