/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}*/

body {
  color:white!important;
}

footer {
    
}

    footer a {
        color: #f5a425!important;
    }

h2 {
    color: #fff !important;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

h4 {
    margin-top: 20px;
    font-size: 30px;
    color: #fff !important;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 40px;
    margin-bottom: 20px;
}

h4 em {
    font-style: normal;
    color: #f5a425;
}

.form-login {
    background-color: rgba(250, 250, 250, 0.1);
    padding: 30px;
    width: 100%;
}

    .form-login .input-login {
        width: 100%;
        height: 40px;
        background-color: rgba(250, 250, 250, 0.1);
        border-radius: 0px;
        border: none;
        outline: none;
        color: #fff;
        font-size: 13px;
        margin-bottom: 30px;
        letter-spacing: 0.5px;
    }

    .form-login .btn-theme {
        background-color: #f5a425;
        color: #fff;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 700;
        padding: 12px 20px;
        display: inline-block;
        outline: none;
        width:100%!important;
    }

.btn-link {
    color: #f5a425;
    font-size: 13px;
}

.btn-yellow {
    background-color: #f5a425;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    padding: 12px 20px;
    display: inline-block;
    outline: none;
    width: 100% !important;
}

table {
    color: white !important;
    font-size: 13px !important;
    line-height: 22px !important;
}

    table, th, td, dl {
        color: white !important;
        font-size: 13px !important;
        line-height: 22px !important;
    }


.form-edit {
    background-color: rgba(250, 250, 250, 0.1);
    padding: 30px;
    width: 100%;
}

    .form-edit .input-edit {
        width: 100%;
        height: 40px;
        background-color: rgba(250, 250, 250, 0.1);
        border-radius: 0px;
        border: none;
        outline: none;
        color: #fff;
        font-size: 13px;
        margin-bottom: 30px;
        letter-spacing: 0.5px;
    }

    .form-edit .btn-theme {
        background-color: #f5a425;
        color: #fff;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 700;
        padding: 12px 20px;
        display: inline-block;
        outline: none;
        width: 100% !important;
    }

.pulse {
    animation: animate 3s linear infinite
}

    .pulse i {
        position: relative;
        justify-content: center;
        align-items: center;
        color: #fff;
        cursor: pointer
    }

@keyframes animate {
    0% {
        box-shadow: 0 0 0 0 rgb(255, 109, 74, 0.7), 0 0 0 0 rgb(255, 109, 74, 0.7)
    }

    40% {
        box-shadow: 0 0 0 50px rgb(255, 109, 74, 0), 0 0 0 0 rgb(255, 109, 74, 0.7)
    }

    80% {
        box-shadow: 0 0 0 50px rgb(255, 109, 74, 0), 0 0 0 30px rgb(255, 109, 74, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgb(255, 109, 74, 0), 0 0 0 30px rgb(255, 109, 74, 0)
    }
}