.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Ratio 16:9 ( 100%/16*9 = 56.25% ) */
}

.iframe-container > * {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}


/*button loading*/

.form-loading {
    border: 3px solid #ffffff;
    border-radius: 30px;
    height: 30px;
    left: 50%;
    margin: -15px 0 0 -15px;
    opacity: 0;
    margin: 0px auto;
    top: 50%;
    width: 30px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation: pulsate 1s ease-out;
    -moz-animation-iteration-count: infinite;
    animation: pulsate 1s ease-out;
    animation-iteration-count: infinite;
    z-index: 99999;
}

button[type="submit"] {
    height: 50px;
    line-height: 48px;
    /*border: 2px solid #baaa97;*/
    border: 2px solid #5cb85c;
    /*background: #baaa97;*/
    background: #5cb85c;
    color: #fff;
    width: 100%;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 0 !important;
}

button[type="submit"]:focus {
    outline: none;
}

button[type="submit"].hollow {
    background: none;
    border: 2px solid #baaa97;
    color: #baaa97;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

button[type="submit"].hollow:hover {
    background: #baaa97;
    color: #fff;
}

button[type="submit"]:hover {
    background: none !important;
    /*color: #baaa97;*/
    color: #5cb85c;
}

button[type="submit"]:focus {
    outline: none;
}

button[type="submit"] .form-loading {
    height: 25px;
    width: 25px;
    display: inline-block;
    top: 9px;
    position: relative;
    left: 0;
}

.btn-white .form-loading {
    border: 3px solid #c8c8c8;
}

@keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }

}

@-webkit-keyframes pulsate {
    0% {
        transform: scale(0.1);
        opacity: 0.0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }

}

#bawah {
    position: relative;
    background-color: #EEE;
    border-top: 5px solid rgba(0,0,0,0.2);
}

#bawah .footer-widgets-wrap {
    position: relative;
    padding: 80px 0;
}

#bawah.dark,
.dark #bawah {
    background-color: #333;
    color: #CCC;
    border-top-color: rgba(0,0,0,0.2);
}

