@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/Gotham-Light.eot?#iefix') format('embedded-opentype'),  url('../fonts/gotham/Gotham-Light.otf')  format('opentype'),
    url('../fonts/gotham/Gotham-Light.woff') format('woff'), url('../fonts/gotham/Gotham-Light.ttf')  format('truetype'), url('../fonts/gotham/Gotham-Light.svg#Gotham-Light') format('svg');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/Gotham-Book.eot?#iefix') format('embedded-opentype'),  url('../fonts/gotham/Gotham-Book.otf')  format('opentype'),
    url('../fonts/gotham/Gotham-Book.woff') format('woff'), url('../fonts/gotham/Gotham-Book.ttf')  format('truetype'), url('../fonts/gotham/Gotham-Book.svg#Gotham-Book') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/Gotham-Medium.eot?#iefix') format('embedded-opentype'),  url('../fonts/gotham/Gotham-Medium.otf')  format('opentype'),
    url('../fonts/gotham/Gotham-Medium.woff') format('woff'), url('../fonts/gotham/Gotham-Medium.ttf')  format('truetype'), url('../fonts/gotham/Gotham-Medium.svg#Gotham-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/Gotham-Bold.eot?#iefix') format('embedded-opentype'),  url('../fonts/gotham/Gotham-Bold.otf')  format('opentype'),
    url('../fonts/gotham/Gotham-Bold.woff') format('woff'), url('../fonts/gotham/Gotham-Bold.ttf')  format('truetype'), url('../fonts/gotham/Gotham-Bold.svg#Gotham-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../fonts/gotham/Gotham-Black.eot?#iefix') format('embedded-opentype'),  url('../fonts/gotham/Gotham-Black.otf')  format('opentype'),
    url('../fonts/gotham/Gotham-Black.woff') format('woff'), url('../fonts/gotham/Gotham-Black.ttf')  format('truetype'), url('../fonts/gotham/Gotham-Black.svg#Gotham-Black') format('svg');
    font-weight: 800;
    font-style: normal;
}

body {
    color: #58595B;
    font-family: 'Gotham', Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6, strong {
    color: #E6B122;
    font-weight: 800;
}

.lead {
    
}

.login-container {
    max-width: 620px;
}

.text-primary {
    color: #E6B122 !important;
}

.btn {
    border: 0;
    border-radius: 10px;
    outline: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.btn-primary {
    background-color: #E6B122;
    color: #fff;
}

.btn-secondary {
    background-color: #4A2A75;
    color: #fff;
}

.btn-primary:hover, .btn-secondary:hover {
    background-color: #333;
    color: #fff;
}

.form-control:disabled, .form-control[readOnly] {
    color: #999;
    background-color: transparent;
}

.form-group.bordered {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 5px 10px;
}

.form-group.bordered.is-invalid {
    border-color: #dc3545;
}

.form-group.bordered label {
    color: #58595B;
    font-size: 0.8rem;
    margin: 0;
}

.form-group.bordered .form-control {
    display: block;
    width: auto;
    width: -webkit-fill-available;
    height: auto;
    border: 0;
    box-shadow: none;
    margin: 0 -10px;
    outline: 0;
    padding: 2.5px 10px;
}

.form-group.bordered.disabled {
    background: #ddd;
}

.form-group.bordered.disabled label {
    color: #999;
}

@media (min-width:768px) {
    .form-group.bordered {
        border-radius: 12.5px;
        padding: 7.5px 15px 5px;
    }

    /* .form-group.bordered .form-control {
        margin: 0 -10px;
        padding: 2.5px 10px;
    } */
}

.separator-or {
    line-height: 1;
    text-align: center;
    overflow: hidden;
}

.separator-or span {
    display: inline-block;
    position: relative;  
}

.separator-or span:before,
.separator-or span:after {
    content: "";
    width: 600px;
    height: 2px;
    border-top: 2px solid #E6B122;
    margin-top: -1px;
    position: absolute;
    top: 50%;
}

.separator-or span:before {
    right: 100%;
    margin-right: 15px;
}
.separator-or span:after {
    left: 100%;
    margin-left: 15px;
}

.date-separator {
    position: relative;
}

.date-separator:before, .date-separator:after {
    content: '/';
    display: block;
    width: 10px;
    margin-top: -7px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.date-separator:before {
    left: -5px;
}
.date-separator:after {
    right: -5px;
}

.invalid-feedback a {
    color: inherit;
    text-decoration: underline;
}