* {
  font-family: 'Source Sans Pro', sans-serif;
  color:#333;
  font-weight: 400;
  font-size: 18px;
}
a{
  color:#f5a623;
}
a:hover{
  color:#f5a623;
}
#top{
  background-color:rgba( 240, 208, 34, .8 );
  padding:10px;
  z-index:5;
  position:absolute;
  width:100%;
  top:0;
}

#top a{
  color:#596974;
}

#logout{
  position: absolute;
  right:75px;
  top:25px;
  font-weight: 600;
  text-decoration: underline;
  z-index:101;
}

.button{
  cursor: pointer;
  border-radius: 4px;
  background-color: #f5a623;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  padding: 21px;
  border:2px solid #f5a623;
}

.button:hover{
  color:#f5a623;
  background-color:white;
  text-decoration:none;
}

.button-xl{
  padding:20px 40px;
  font-size:1.5rem;
}

.loading{
  position: relative;
}

.loading::before{
  width:100%;
  height:100%;
  background-color:rgba( 254, 246, 233, .9 );
  position: absolute;
  content:'';
  z-index:5;
  left:0;
  right:0;
}

.loading::after{
  font-family: "Font Awesome 5 Free";
  content: "\f110";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  left:calc( 50% - 15px );
  top:50%;
  font-size:32px;
  color:#596974;
  z-index:6;
  animation: fa-spin 2s infinite linear;
}

.text-saving,.text-saved{
  background-color:rgba( 254, 246, 233, .8 );
  box-shadow: 0px 0px 10px rgba( 254, 246, 233, .8 );

  z-index:100;
  display:none;
  position: absolute;
  top:0;
  left:0;
  padding:25px 0 25px 75px;
  width:calc( 100% );
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: rgba(245, 166, 35, 0.6);
}

.saved .text-saved{
  display: block;
}

.text-saving span{
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-style: italic;
  color: rgba(245, 166, 35, 0.6);
  opacity: 0;
  animation: 1s dot infinite;
}

@keyframes dot {
  0%   {
    opacity:1;
  }
  75%  {
    opacity:0;
  }
}


.text-saving span:nth-child(1){
  animation-delay: 0s;
}
.text-saving span:nth-child(2){
  animation-delay: .25s;
}

.text-saving span:nth-child(3){
  animation-delay: .5s;
}

.loading .text-saved,.saved .text-saving{
  display: none;
}
.loading .text-saving{
  display: block;
}

body.loading{
  position: fixed!important;
}


body.warning::after{
  content: ' ';
  position:fixed;
  height:100%;
  width:100%;
  z-index:4;
  background-color: rgba( 0, 0, 0, 0.4 );
}

#warning{
  position:fixed;
  height:100%;
  width:100%;
  z-index:5;
  display:flex;
  align-items: center;
  justify-content: center;
}

#warning h1{
  text-align:center;
  color:#f0d022;
}

#warning>div{
  border-radius:2px;
  background-color:white;
  padding:50px 30px 100px 30px;
  font-size:1.5rem;
  position: relative;
  min-width:400px;
}

#warning>div .footer{
  border-top:2px solid #e2e3e4;
  background-color:#f0f0f0;
  padding:10px;
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.close-warning{
  color:#596974;
  position:absolute;
  right:10px;
  top:5px;
  font-size:1rem;
  opacity: .5;
  cursor:pointer;
}

.close-warning:hover{
  opacity: 1;
}

.warning{
  padding:25px;
  display: inline-flex	;
  border-radius: 4px;
  background-color: #ffffff;
  max-width:80%;
  width:750px;
  align-items: center;
}

.warning h2{
  font-family: 'Source Sans Pro', sans-serif!important;
  font-size: 30px!important;
  font-weight: 700!important;
  text-align:left!important;
}

.warning .exclamation{
  font-size: 30px;
  font-weight: bold;
  color:white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  background-color: #f5a623;
  border-radius:55px;
}

.warning .content{
  width:calc( 100%  - 55px );
  padding-left:25px;
  font-size:18px;
  text-align: left;
}

#loginpage{
  background-color:#fef6e9;
}

#login button{
  width:80%;
  margin:0 10%;
}

#loginpage label{
  font-weight: 600;
}

#loginpage h1{
  font-size: 30px;
  font-weight: bold;
  text-align:center;
  margin:40px 0;
  font-family: Montserrat, sans-serif;
}

input.form-control{
  border-radius: 4px;
  border: solid 2px #c1c1c1;
  background-color: #ffffff;
  padding:5px;
}
