/* BASE CSS */

html {
    overflow-x: hidden;
}

:root {
  --back:#121212;
  --white:#ffffff;
  --green:#86BC25;
  --dark-green:#568208;
  --grey:#9e9e9e;
  --light-grey:#e0e0e0;
  --dark-grey:#808080;
}

body {
  background: #000;
  font-family: 'Ubuntu', sans-serif;
  min-height: 100%;
  min-width: 100vw;
  overflow-x: hidden;

}
select:focus{
    outline-color: transparent;
    outline-width: 0;
    outline:none;
    border-color: transparent;
}
option:focus{
    outline-color: transparent;
    outline-width: 0;
    outline:none;
    border-color: transparent;
}
input:focus{
    outline-color: transparent;
    outline-width: 0;
    outline:none;
}

textarea{
    min-width: 100%;
    min-height: 100vh;
}
textarea:focus{
    outline-color: transparent;
    outline-width: 0;
    outline:none;
    border-color: transparent;
    box-shadow: none;
}
*{
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
  outline:none;
}


.site-header .navbar-nav .nav-link {
  color: #ffffff;
  padding-left: 0px;
}

#main-logo{
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.site-header{
    background: rgb(0,0,0);
    background: -moz-linear-gradient(165deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 39%, rgba(10,87,0,1) 100%);
    background: -webkit-linear-gradient(165deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 39%, rgba(10,87,0,1) 100%);
    background: linear-gradient(165deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 39%, rgba(10,87,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#0a5700",GradientType=1);
    border-bottom:1px solid #86BC25 ;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.75);
    position: fixed;
    top: 0;
    z-index: 99;
    min-width: 100%;
}


.navbar-brand.mr-4 {
    text-decoration: none;
}

.navbar-brand.mr-4:hover {
    color:  #86BC25;
}

.navbar-nav .nav-link {
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    color: #2d2d2d;
}


footer{
    position: fixed;
    left: 0;
    z-index: 50;
    font-weight: 100;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    height: 40px;
    font-size: 12px;
    overflow: hidden;
    padding: 12px 10px 10px 10px;
    background: linear-gradient(135deg,  #2b2b2b 1%,#2b2b2b 16%,#595959 29%,#595959 29%,#666666 45%,#474747 62%,#111111 79%,#000000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background: #000;
    border-top: 1px solid #86BC25;
}

footer span a{
    color: #fff;
    text-decoration: none;
}

footer span a:hover{
   color: #86BC25;
   text-decoration: none;
}
.green-ul{
    border-bottom: 1px solid #86BC25;
}
.copyright h3 {
    padding-top: 0.5em;
}

.copyright h3, p{
    color: white;
    font-size: 15px;
    font-weight: 300;
    margin-left: 40px;
}

.copyright a {
    text-decoration: none;
    color: white;
}

.jumbotron {
  background:#999;
  background-image: url('../img/landing.png');
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  min-width:  100vw;
  min-height: 100vh;
  border-radius: 0;
  padding:1rem 2.5rem;
  padding-top: 3rem;
  margin-bottom: 0px;
}
img.home-logo{
    margin-top: 50px;
    max-width: 200px;
    padding-bottom: 5px;
}


/* TAILORED CSS */
.form-control::placeholder {
  color: var(--grey);
  opacity: 1; /* Firefox */
}



.form-control:focus{
    box-shadow: 0 0 0 0rem rgba(0, 0, 0, 0.25);
    border-color: var(--green);
}

.btn-green{
    background-color: var(--green);
    border-color: var(--green);
}

.btn-green:hover{
    background-color: var(--dark-green);
    border-color: var(--dark-green);
}


.drop-zone {
    border: 2px dashed var(--light-grey);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    color: var(--grey);
    transition: background-color 0.3s;
    border-radius: 0.375rem;
}
.drop-zone.dragover {
    border-color: var(--green);
    background-color: rgba(134, 188, 37, 0.15);
}
  

div#response-wrap{
    border-radius: 0.375rem;
}



.unleashed{
    color: var(--green);
}

.text-green{
    color: var(--green) !important;
}


/*Login screen */

 .loginscreen{
        min-width:100vw;
        min-height:100vh;
        z-index:999;
        background:#2d2d2d;
        top:0;
        left:0;
        position: fixed;
    }
.login-wrap {
      background: #fff;
      border: 1px solid #ddd; 
      margin: 100px 0;
      padding: 80px 20px 0 20px;
      width: 80%;
      max-width: 450px;
      height: 450px;
      min-height: 450px;
      border-radius: 10px;
      
}
.showloginwrap{
    display: block;
}
.robinlogin{
    max-width: 75px;
}
.input-login{
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 16px;
    min-width: 250px;
    max-width: 250px;
    position: relative;
    border: 1px solid #2d2d2d;
}
.btn-login{
    color: #fff;
    border: none;
    background-color: #86BC25;
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 16px;
    min-width: 250px;
    max-width: 250px;
    position: relative;
    border: 1px solid #86BC25;
}
.btn-login:hover{
    cursor: pointer;
    color: #fff;
    border: none;
    background-color: #558500;
    border-color: #558500;
    padding: 10px 40px;
    border-radius: 50px;
    font-size: 16px;
}

.warn{
    background: #990a00;
    background-color:#990a00 ;
}

.point:hover{
    cursor: pointer !important;
}

@media (min-width: 999px) {
.logout-menu{
    right:0;
    position: absolute;
    /*margin-top: -20px;*/
    margin-right:10px;
}
}

.logout-menu:hover a.nav-link{
    color: #ff0000;
}

.form-control{
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid var(--light-grey);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.dropdown-item:hover{
    background-color: rgba(134, 188, 37, 0.33);
}

.promptversion{
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-size: 0.85rem;
}

.toaster{
    color: var(--green);
    font-size: 1.25rem;
    font-weight: bold;
    font-style: italic;
    opacity: 1;
    transition: 0.25s ease-in-out;
    min-width: 100%;
    text-align: center;
    padding-bottom: 10px;
    background-color: transparent;
}

.bread{
    opacity: 0;
    transition: 0.25s ease-in-out;
}