.modal-content{
    border-radius: 3px;
}
.modal-content .modal-body .row{
    margin: 0;
}
.modal-content .modal-footer{
    text-align: center;
}

/* modal thanks */
.thanking-message i.fa-check-circle {
    width:78px; 
    height:78px; 
    font-size: 81px; 
    line-height: 72px; 
    color: green; 
    padding:2px; 
    border: 2px solid green; 
    border-radius: 50%;
}

/*Modal Video*/
#modal-video .modal-lg{
    width: calc(100% - 64px);
    height: calc(100vh - 64px);
}
#modal-video .close{
    position: absolute;
    right: -32px;
    top: -48px;
    font-size: 64px;
    font-weight: lighter;
    color: #fff;
    opacity: 0.8;
}
#modal-video iframe{
    width: 100%;
    height: 100%;
}
.fade-scale {
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all 1.5s linear;
    -o-transition: all 1.5s linear;
    -moz-transition: all 1.5s linear;
    transition: all 1.5s linear;
}
.fade-scale.in {
    opacity: 1;
    transform: scale(1);
}