body{
    font-family: "Roboto";
    font-size: 17px;
    color: #333;
}

h1{
    font-size: 65px;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
}

h2{
    color: #fff;
    font-weight: 300;
    font-size: 28px;
    margin-bottom: 80px;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
}

h3{
    font-weight: 300;
    font-size: 24px;
}

hr{
    margin: 45px 0px;
    border: none;
    border-bottom: 1px solid #ccc;
}

p{
    line-height: 145%;
}

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

.bg{
    background-size: contain;
    /*background-color: #2196f3;*/
    background-color: #fd9246;
    /*background-image: linear-gradient(to bottom,#2196f3 0,#464afd 50%);*/
    background-image: linear-gradient(to bottom,#f3a921 0,#fd9246 50%);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.page-wrapper{
    padding-top: 70px;
    position: relative;
    z-index: 2;
}

.loading-screen-content{
    display: none;
}

.result-container{
    padding: 40px;
    margin: 0 auto;
    background: #fff;
    border-radius: 2px;
    width: 100%;
    max-width: 1200px;
    text-align: left;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
    margin-bottom: 70px;
}

.result-container h2{
    color: #333;
    text-shadow: none;
}

.result-container h2 span{
    color: #2d82f5;
}

.result-container table td{
    border-bottom: 1px solid #ddd;
}

.result-container table tbody tr:last-child td{
    border-bottom: 0;
}

.result-container table td,
.result-container table th{
    padding: 7px 10px;
    border-width: 1px !important;
}

.result-container table tr.error-404,
.result-container table tr.error-404 a{
    color: #fd4646;
}
.result-container table tr a{
    color: #333;
    text-decoration: none;
    display: inline-block;
    word-break: break-all;
}

.form-wrapper{
    text-align: center;
    margin-top: 150px;
}

.input-wrapper{
    position: relative;
    display: inline-block;
}

.input-wrapper .setting{
    position: absolute;
    right: 14px;
    top: 19px;
    background-size: 46px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.input-wrapper .checkbox{
    text-align: left;
    display: inline-block;
    float: left;
    margin-right: 22px;
    margin-top: 20px;
}


.input-wrapper .checkbox:last-child{
    margin-right: 0px;
}

.input-wrapper .checkbox input{
    width: auto;
    float: left;
    margin-right: 5px;
}

.input-wrapper .option-row{
    display: none;
    justify-content: center;
    transition: all .3s ease-in-out;
}


.input-wrapper .setting:hover svg path:last-child{
    fill: #333333;
}

.form-wrapper input{
    width: 650px;
    padding: 25px;
    border: 0px;
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
    border-radius: 2px;
    font-size: 16px;
    outline: none !important;
    margin: 0 auto;
    display: block;
    transition: all .3s ease-in-out;
    transition-property: box-shadow,transform;
    height: inherit;
}

.btn,
a.btn{
    border-radius: 2px!important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .9em;
    padding: 0 1em;
    min-width: 14em;
    line-height: 4.2em;
    height: 4.2em;
    transition: all .3s ease-in-out;
    transition-property: box-shadow,transform;
    box-shadow: 0 2px 10px rgba(0,0,0,.25);
    border: none;
    color: rgba(4,40,68,.8);
    margin-top: 50px;
    outline: none !important;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.form-wrapper input:hover,
.form-wrapper input:focus,
.form-wrapper input:active,
.btn:hover,
.btn:focus,
.btn:active{
    box-shadow: 0 2px 22px rgba(0,0,0,.4);
    background: #fff;
}

.dark-overlay{
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: none;
    transition: all .3s ease-in-out;
}

.last-results-container{
    z-index: 2;
    position: fixed;
    bottom: 0px;
    margin: 0 140px;
    left: 0;
    right: 0;
    height: 70px;
    opacity: 0.7;
    transition: all .3s ease-in-out;
    padding-bottom: 30px;
    padding-top: 75px;
}

.last-results-container.open{
    height: auto;
    transition: all .3s ease-in-out;
    opacity: 1;
}

h2.result-header{
    text-align: center;
    font-size: 58px;
    font-weight: 700;
    display: none;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 5;
    position: absolute;
    top: 34%;
    height: 68px;
    left: 50%;
    margin-left: -407px;
}


.last-results-container .card{
    background: #fff;
    display: inline-block;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 22px rgba(0,0,0,.4);
    margin-right: 20px;
}

.last-results-container .card h3{
    margin: 10px;
    font-size: 20px;
}

.last-results-container .card hr{
    margin: 22px 0px;
    border: none;
    border-bottom: 1px solid #eee;
}

.last-results-container .card .btn-to-result{
    text-align: center;
}

.last-results-container .card .btn-to-result .btn{
    font-size: 15px;
    text-transform: none;
    margin-top: 20px;
    margin-bottom: 0px;
}

.nav-tabs{
    margin-top: 30px;
    margin-bottom: 15px;
}





.spinner {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 100px auto;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;

    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    } 50% {
          transform: scale(1.0);
          -webkit-transform: scale(1.0);
      }
}