﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}




body:before {
    content: "";
    display: block;
    background: url('/images/background.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    opacity: 0.3;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
}

/* Contents */
#main .content {
    display: none;
}


/* Loader */

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 1;
    background-color: rgba(128, 128, 128, 0.2);
    z-index: 99;
    text-align: center;
}

#loading-image {
    position: relative;
    height:230px;
    width: 190px;
    margin: 150px auto;
    z-index: 100;
    background: url(../images/loader.gif);
    background-repeat: no-repeat;
}
    #loading-image span {
        color: #4DBBFF;
        font-size: 16px;
        display: block;
        position: absolute;
        bottom: 0;
        margin: auto;
        z-index: 101;
    }

    /* Results */
.result-candidate {
    padding: 5px;
    border: 1px solid #17a2b8;
    cursor:pointer;
    border-radius: 10px;
}

.result-candidate span {
    display: inline-block;
    font-size: 16px;
    margin-left:10px;
    color: #666;
    font-weight: bold;
}

    .result-candidate:hover {
        /*outline: 2px solid #17a2b8;*/
        box-shadow: 0px 0px 3px 3px #17a2b8;
    }