body {
    font-family:"proxima-nova",sans-serif;
    color: #ffffff;
}

.blue-banner {
    width: 100%;
    z-index: -1000000;
    height: 250px;
    background-color: #0073df;
    top: 0px;
    position: absolute;
}

.bottom-banner {
    width: 100%;
    z-index: -1000000;
    height: 430px;
    background-color: #0073df;
    bottom: 0px;
    margin-top:155px;
}

.graph-pattern {
    margin-top: 49px;
    height: 237px;
    object-fit: contain;
    width:100%
}

.container {
    margin-top: 30px;
    max-width: 1050px;
}

.bottom-contents {
    margin-top: 70px;
    text-align: center;
}

.bottom-button {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    height: 20px;
}

.logo-bottom{
    height: 20px;
    margin-top:38px;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.request-icon {
    height: 1.5em;
    padding-right: 13px;
    object-fit: contain;
}

.tl-btn {
    font-size: 0.7em;
    padding-right: 17px;
    letter-spacing: 0.05em;
}

.tl-btn-success {
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    color: #fff;
    background-color: #09d497;
    border-color: #09d497;
}

.tl-btn-success:hover {
    color: #fff;
    background-color: #15e9a9;
    border-color: #15e9a9;
}

.tl-btn-success:focus, .tl-btn-success.focus {
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5);
}

.tl-btn-success.disabled, .tl-btn-success:disabled {
    background-color: #09d497;
    border-color: #09d497;
}

.tl-btn-success:active, .tl-btn-success.active,
.show > .tl-btn-success.dropdown-toggle {
    background-color: #07bf88;
    background-image: none;
    border-color: #07bf88;
}

.tl-btn-big {
    font-size: 1.3em;
    padding-right: 10px;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font-size: 2.5em;
    letter-spacing: 2px;
}

h2 {
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 0.05em;
}

h3 {
    font-size: 0.9em;
    font-weight: lighter;
}

h4 {
    font-size: 0.8em;
    font-weight: 600;
}

a {
    font-weight: bold;
    font-size: 0.7em;
    letter-spacing: 0.9px;
    color: #11b4c5;
}

b {
    font-weight: 600;
}

p {
    font-size: 1.1em;
}

p.tl-dark-blue {
    font-weight: 600;
}

.tl-dark-blue {
    color: #0073df;
}

.tl-light-grey {
    color: #7b7a7a;
}

.tl-card-title {

}
.title {
    padding-top: 20px;
}

.subtitle {
    padding-top: 10px;
    font-size: 0.95em;
}

.push-icon {
    height: 1.1em;
    object-fit: contain;
    margin-right: 10px;
}

.tl-card-deck {
    margin-top: 30px;
}


.tl-card-light {
    background-color: #fbfbfb;
    color: #4c4c4c;
    border: 0px;
}

.tl-card-dark {
    background-color: #0073df ;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    border: 0px;
    color: #ffffff;
}

.tl-card-body {
    padding-top: 30px;
    padding-left: 50px;
    padding-right: 50px;
}

.high-chart-container{
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
}

.high-chart-container-small{
    width: 100%;
    height: 70px;
    position: relative;

}

.outer-box{
    width: 100%;
    height: 400px;
}

.outer-box .inner-box {
    height: 100%;
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    margin: 0;
    position: absolute;
    transition: opacity .5s;
}
.outer-box:hover .inner-box {
    opacity: 0.99;
    transition: opacity .5s;
}

.tl-form {
    margin-top: 15px;
    margin-bottom: 50px;
}

.tl-input{
    margin-left: 5px;

}

.valueHolder{
    display:inline;
}

.catHolder{
    display:inline;
}

.front-content{
    margin-top: 20px;
}

.front-chart{
    bottom: 0px;
}


.focus {
    margin-top: 50px;
    font-size: 4em;
    font-weight: bold;
    color: #007bff;
    width: 100%;
    text-align: center;
    letter-spacing: 0.05em;
}

.description {
    font-size: .9em;
}

.vertical-center{
    display:flex;
    align-content: center;
}

.header-content{
    margin-bottom:20px;
}

.spinner {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin:auto;
}

.spinner-row{
    text-align: center;
}

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