/* BASIC */

html {
  background-color: #1738b0;
}

body {
  font-family: 'Varela Round', sans-serif;
  height: 100vh;
}

a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

#formFooter {
  background-color: #c7c7c7;
  border-top: 1px solid #a9a9a9;
  padding: 15px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}

/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}

/* FORM TYPOGRAPHY*/

input[type=button], input[type=submit], input[type=reset], button[type=submit]  {
  background-color: #56baed;
  border: none;
  color: white;
  padding: 0px 0px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.login_password, .login_email {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

input[type=text]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}

input[type=text]:placeholder {
  color: #cccccc;
}

/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}

/* OTHERS */

*:focus {
    outline: none;
}

/*
#icon {
  width:60%;
}
*/
.topnav {
  overflow: hidden;
  position: relative;
}

.topnav #myLinks {
  display: none;
}

.topnav a.dropMenuIcon {
  padding: 18px 14px;
  text-decoration: none;
  display: block;
}

.topnav a.dropMenu {
  color: white;
  padding: 0px 18px;
  text-decoration: none;
  display: block;
}

.topnav a.icon {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  color: white;
}

a.dropMenu:hover {
  background-color: #ddd;
  color:black
}

.error {
  color: red;
  margin-bottom: 5px;
  text-align: center;
}

a {
  text-decoration: none;
}

*{
    -webkit-box-sizing:border-box;
    box-sizing:border-box
}
body{
    padding:0;
    margin:0
}
#notfound{
    position:relative;
    height:100vh
}
#notfound .notfound{
    position:absolute;
    left:50%;
    top:50%;
    -webkit-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%)
}
.notfound{
    max-width:520px;
    width:100%;
    line-height:1.4;
    text-align:center
}
.notfound .notfound-404{
    position:relative;
    height:240px
}
.notfound .notfound-404 h1{
    font-family:montserrat,sans-serif;
    position:absolute;
    left:50%;
    top:50%;
    -webkit-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    font-size:252px;
    font-weight:900;
    margin:0;
    color:#262626;
    text-transform:uppercase;
    letter-spacing:-40px;
    margin-left:-20px
}
.notfound .notfound-404 h1>span{
    text-shadow:-8px 0 0 #fff
}
.notfound .notfound-404 h3{
    font-family:cabin,sans-serif;
    position:relative;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    color:#262626;
    margin:0;
    letter-spacing:3px;
    padding-left:6px
}
.notfound h2{
    font-family:cabin,sans-serif;
    font-size:20px;
    font-weight:400;
    text-transform:uppercase;
    color:#000;
    margin-top:0;
    margin-bottom:25px
}
@media only screen and (max-width:767px){
    .notfound .notfound-404{
        height:200px
    }
    .notfound .notfound-404 h1{
        font-size:200px
    }
}
@media only screen and (max-width:480px){
    .notfound .notfound-404{
        height:162px
    }
    .notfound .notfound-404 h1{
        font-size:162px;
        height:150px;
        line-height:162px
    }
    .notfound h2{
        font-size:16px
    }
}
.show-pwd{
    position: absolute;
    right: 65px;
    top: 29px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #56baed;
}
.show-newpwd{
    position: absolute;
    right: 65px;
    top: 29px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #56baed;
}
.show-cpwd{
    position: absolute;
    right: 65px;
    top: 29px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #56baed;
}
div.qrContainer {
    position: absolute;
    width: 38px;
    height: 38px;
    overflow: hidden;
    transition: .3s all;
    padding: 5px 5px 2px 5px;
    border-radius: 5px;
    top: 30px;
    right: -10px;
    z-index: 99;
    background: transparent;
    text-align: center;
}

div.previewContainer{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 375px;
    height: 100%;
}

div.qrContainer img{
    width: 32px;
}

div.qrContainer span{
    display: none;
    color: #151515;
    font: normal normal normal 18px/42px Inter;
}

div.qrContainer.open{
    position: fixed;
    top: 230px;
    right: -10px;
    width: 100%;
    height: 100vh;
    background: white;
}

div.qrContainer.open img{
    width: 350px;
}

div.qrContainer.open span{
    display: block;
}

#userform input[type="password"]:focus,#userform input[type="text"]:focus{
	outline:0;
}

.strength_meter{
	position: absolute;
	left: 36px;
	top: 60px;
	width: 410px;
	height: 5px;
	z-index: 10;
	border-radius:5px;
	padding-right:13px;
}
.button_strength {
	text-decoration: none;
	color: #000000;
	font-size: 13px;
}
.strength_meter div{
    width:0%;
	height: 5px;
	text-align: right;
	color: #000;
	line-height: 43px;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	padding-right: 12px;
	border-radius:5px;
}
.strength_meter div p{
	position: absolute;
	top: 22px;
	right: 0px;
	color: #000000;
	font-size:13px;
}
.veryweak{
    background-color: #FFA0A0;
	border-color: #F04040!important;
	width:25%!important;
}
.weak{
	background-color: #FFB78C;
	border-color: #FF853C!important;
	width:50%!important;
}
.medium{
	background-color: #FFEC8B;
	border-color: #FC0!important;
	width:75%!important;
}
.strong{
	background-color: #C3FF88;
	border-color: #8DFF1C!important;
	width:100%!important;
}
.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{
    opacity:.65;
    transform:scale(.85) translateY(-10px) translateX(40px)
}
.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{
    margin-top:0px
}
.jumbotron {
    padding: 1rem 0rem;
    margin-bottom: -2rem;
    border-radius: 0.3rem;
}
ul.no_bullets {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #f6f6f6;
    border: none;
    line-height: 0;
    color: #0d0d0d;
    text-align:center;
    text-decoration: none;
    display: inline-block;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}
.forced_feedback {
    width: 100%;
    font-size: 80%;
    color: #dc3545;
    right: -160px;
    margin-bottom: -20px;
    margin-top: -25px;
}
.admin_links {
    width: 100%;
    font-size: 80%;
    margin-bottom: -20px;
    text-align: center;
    margin-top: -25px;
    color: white
}
.admin_links_black {
    width: 100%;
    font-size: 80%;
    margin-bottom: -20px;
    text-align: center;
    margin-top: -25px;
    color: black
}
.table-condensed{
  font-size: 10px;
}
.tr-smaller{
  height: 8px;
}
.td-medium{
  font-size: 14px
}

.switcher {
    font-size: 2rem;
    font-family: sans-serif;
    padding: 2rem 0 2rem 2rem;
    color: white;
}

.toggle {
    margin:0 0 0 2rem;
    position: relative;
    display: inline-block;
    width: 6rem;
    height: 3.4rem;
}

.toggle input {
    display: none;
}

.roundbutton {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: black;
    display: block;
    transition: all 0.3s;
    border-radius: 3.4rem;
    cursor: pointer;
}

.roundbutton:before {
    position: absolute;
    content: "";
    height: 2.4rem;
    width: 2.5rem;
    border-radius: 100%;
    display: block;
    left: 0.5rem;
    bottom: 0.5rem;
    background-color: white;
    transition: all 0.3s;
}

input:checked + .roundbutton {
    background-color: #aac148;
}

input:checked + .roundbutton:before  {
    transform: translate(2.6rem, 0);
}
