html {
    height: 100%;
}

body {
    color: #000;
    background-color: #fff;
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.navbar-laravel {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.text-blue {
    color: #1C65A8;
}

#app {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
    background-color: #003465;
}

.before-register-page table thead {
    background-color: #1C65A8;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
}

.before-register-page table thead th {
    vertical-align: top;
    border-right: 1px solid #fff;
}

.before-register-page table thead th:last-of-type {
    border-right: none;
}

.before-register-page table tbody td {
    border-right: 1px solid #ececec;
}

.before-register-page table table td:last-of-type {
    border-right: none;
}

.before-register-page .btn-link-register {
    background-color: #1CBAB4;
    color: white;
    padding: 10px 40px;
    font-size: 15px;
    border: none;
    margin-left: 20px;
    display: inline-block;
}

.register-page .form-section-title {
    color: #003465;
    font-weight: bold;
}

.register-page .form-section-sub-title {
    color: #003465;
    font-weight: bold;
    font-size: 1rem;
}

.register-page .btn-submit {
    background-color: #1CBAB4;
    color: white;
    padding: 10px 40px;
    font-size: 15px;
    border: none;
}

.register-page .table-prices thead th {
    vertical-align: top;
}

.success-register-page #payment-form{
    text-align: center;
}

.loader-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    z-index: 1;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.loader-container .loader {
    border: 10px solid #f3f3f3;
    border-top: 10px solid #003465;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media screen and (max-width: 767px) {
    .navbar-brand {
        margin-right: 0;
    }
    .navbar-brand .logo {
        height: 45px;
        width: auto;
    }
}

@media screen and (min-width: 1024px) {
    .before-register-page table thead th:first-of-type {
        width: 43%;
    }
}
.has-error .form-control {
    border-color: #ED5466;
}
.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline {
    color: #ED5466;
}
.humane,
.humane-flatty {
    position: fixed;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 100000;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}

.humane,
.humane-flatty {
    font-family: Helvetica Neue, Helvetica, san-serif;
    font-size: 16px;
    top: 0;
    left: 30%;
    opacity: 0;
    width: 40%;
    color: #444;
    padding: 10px;
    text-align: center;
    background-color: #fff;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    -moz-transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
}

.humane p,
.humane-flatty p,
.humane ul,
.humane-flatty ul {
    margin: 0;
    padding: 0;
}

.humane ul,
.humane-flatty ul {
    list-style: none;
}

.humane.humane-flatty-info,
.humane-flatty.humane-flatty-info {
    background-color: #3498db;
    color: #FFF;
}

.humane.humane-flatty-success,
.humane-flatty.humane-flatty-success {
    background-color: #18bc9c;
    color: #FFF;
}

.humane.humane-flatty-error,
.humane-flatty.humane-flatty-error {
    background-color: #e74c3c;
    color: #FFF;
}

.humane-animate,
.humane-flatty.humane-flatty-animate {
    opacity: 1;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.humane-animate:hover,
.humane-flatty.humane-flatty-animate:hover {
    opacity: 0.7;
}

.humane-js-animate,
.humane-flatty.humane-flatty-js-animate {
    opacity: 1;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.humane-js-animate:hover,
.humane-flatty.humane-flatty-js-animate:hover {
    opacity: 0.7;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
}
.btn-payment {
    background-color: #1CBAB4;
    color: white;
    padding: 10px 40px;
    font-size: 15px;
    border: none;
}