/* Primary #6028c1
text #f5ce42 */
/* rgb(105, 19, 19) */
@import url(https://fonts.googleapis.com/css?family=Karla);

:root{
    --primary-bg-color: #35424a;
    --secondary-bg-color: #8AABBF;
    --tertiary-bg-color: #B8E4FF;
    --primary-text-color: white;
    --secondary-text-color: #e8491d;
    --logo-color: #ff5425 ; /*#f5ce42  #e8491d*/
    --btn-color: #ff5425;
    --primary-link-hover-color: red;
    --primary-link-color: firebrick;
    --wave-bg-color: #702d67;
    --sidebar-color: #702d67;
}
*{
    box-sizing: border-box;
    font-family: 'Karla', sans-serif;
}
body,html,.container{
    min-height: 100%;
}
body{
    background-color: white;
    padding: 0px;
    margin: 0px;
}


.gradient-bg {
	width: 100wh;
	height: 90vh;
	color: #fff;
	background: linear-gradient(-45deg, var(--wave-bg-color), #7D3273, var(--wave-bg-color), #7D3273);
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}


.container{
    position: relative;
    width: 100%;
    min-height: 100vh;
    /* margin-bottom: -50px; */
    display: inline-block;
}

.footer{
    /* height: 40px; */
    background-color: var(--primary-bg-color);
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 2px
}

.row{
    width: 100%;
    height: 100%;
}
[class*="col-"]{
    width: 100%;
    float: left;
    padding: 15px;
    padding-top: 0px;
}
[class*="col-"]::after{
    content: " ";
    display: table;
    clear: both;
}
[class*="offset-"]{
    margin-left: 0%;
}
.overlay{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 5;
}

.home-overlay.overlay{
    position: absolute;
    top: 0px;
    left: 0%;
    right: 0px;
    z-index: 5;
}
.overlay-text{
    position: relative;
    top: 200px;
    left: 0px;
    text-align: left;
    color: white;
    font-size: 18px;
    font-weight: bolder;
    margin-left: 100px;
}
.home-btn {
    width: 100%;
}
.full-overlay{
    background-color: var(--primary-bg-color);
    bottom: 0px;
    opacity: .9;
    padding: 30px;
    top: 50px;
    display: none;
}
.full-height{
    height: 100vh;
    margin-top: 0px;
}
.full-overlay .content{
    height: 600px;
    top: 10%;
    background-color: rgb(255, 251, 251);
    overflow-y: scroll;
    padding: 20px;
}
.overlay-btn{
    position: static !important;
    margin: 10px;
}
.home-overlay{
    background-color: var(--wave-bg-color);
    opacity: .8;
}
.content .details * {
    color: firebrick;
    border-color: firebrick;
}
.content .details button {
    color: white;
}

.full-overlay .content .details label {
    font-size: 14px
}

.bg-black{
    background-color: black;
}

.bg-white{
    background-color: white;
}
.opacity-5{
    opacity: .5;
}
.opacity-7{
    opacity: .7;
}
.opacity-8{
    opacity: .8;
}
.opacity-9{
    opacity: .9;
}

.float-left{
    float: left;
}
.float-right{
    float: right;
}
.clear, .float-left::after, .float-right::after{
    content: " ";
    display: table;
    clear: both;
}

/* Padding */
.padding-16{
    padding: 16px;
}
.no-padding{
    padding: 0px;
}
.margin-20{
    margin: 20px;
}

.margin-top-30{
    margin-top: 30px;
}

.form form{
    display: block;
}
.primary-color{
    color: white;
    font-weight: bold;
    font-size: 16px
}
.signup-form{
    background-color: inherit;
    /* background-color:#AECDE6 */
}

.primary-bg-color{
    background-color: var(--primary-bg-color);
}
.primary-bg-color:hover{
    background-color: red;
}
.color-red{
    color: firebrick;
}
.color-white{
    color: white;
}
.color-grey{
    color: grey !important;
}
.color-red:hover{
    color: red;
}

a{
    color: var(--secondary-text-color);
    text-decoration: underline;
}
a:hover{
    color: red;
}

/* Form css */
.input-wrapper{
    margin-bottom: 35px;
}
label{
    font-weight: bolder;
    font-size: 18px;
    color: white;
}
input{
    border: none;
    background-color: transparent;
    border-bottom: .1px solid rgb(224, 223, 223);
    height: 30px;
    width: 100%;
    color: white;
    padding-left: 5px;
}
input.isrequired{
    border-bottom: 1px solid red;
    transition: all 0.5s linear;
}
input:focus{
    border-bottom: 1px solid red;
    outline: none;
    transition: all 0.5s linear;
}
.input-group .input-wrapper{
    width: auto;
    float: left;
    margin-right: 40px;
}

.input-group::after{
    content: " ";
    display: table;
    clear: both;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
textarea {
    width: 100%;
    resize: none;
}
::placeholder{
    color: white;
    opacity: .7
}
.custom-select{
    border: 1px solid #ccc;
    width: 120px;
    border-radius: 3px;
    overflow: hidden;
}

.custom-select select {
    padding: 5px 8px;
    width: 130%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
}

.custom-select select:focus {
    outline: none;
}
.btn{
    min-width: 100px;
    height: 25px;
    border: none;
    background-color: var(--btn-color);
    color: white;
    font-weight: 900;
}
.btn:hover, .btn:focus{
    background-color: red;
    transition: all 0.5s linear;
}

.form{
    margin-bottom: 50px;
    padding: 10px;
    /* box-shadow: 3px 2px rgb(226, 226, 226); */
}
.form-selection{
    margin-bottom: 25px;
    padding: 10px;
    background-color: firebrick;
    height: 40px;

}

.shadow-box {
    box-shadow: 2px 2px 2px rgb(163, 163, 163);
}

.form-selection a{
    font-size: 20px;
    margin-right: 30px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}
.menu{
    position: relative;
    height: 50px;
    background-color: var(--primary-bg-color);
    z-index: 10;
}
.menu nav{
    position: absolute;
    top: 5px;
    right: 0px;
    float: right;
    color: white;
    padding: 10px
}
.menu nav::after{
    display: table;
    content: " ";
    clear: both;
}
.menu nav a {
    color: white;
    font-weight: bolder;
    text-decoration: none;
    font-size: 17px;
    margin-left: 10px;
}
.menu nav a:hover {
    color: #f5ce42;
}
.logo{
    display: inline-block;
    color: var(--logo-color);
    font-weight: bolder;
    font-size: 20px;
    padding: 10px;
}

.sidebar{
    height: 100%;
    background-color: var(--sidebar-color);
    padding: 10px;
    color: white;
    font-weight: bold;
    opacity: .9;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 80px;
    bottom: 0px;
    z-index: 300;
    display: none;
}
.sidebar a{
    display: block;
    text-align: left
}
.sidebar a{
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px;
    font-size: 18px;
}
.sidebar a.active{
    background-color: rgb(179, 179, 179);
}
.sidebar a i{
    color: firebrick;
    font-size: 13px;
}
.sidebar a:hover{
    /* color: red; */
    background-color: rgb(179, 179, 179);
}
.sidebar .account-name{
    display: block;
    margin-bottom: 20px;
    border-bottom: 1px solid firebrick;
    text-align: center;
}

.content{
    width: 100%;
    position: relative;
}
.page-title{
    padding: 5px;
    border-bottom: 2px solid firebrick;
    margin-bottom: 10px
    /* display: none; */
}
.page-title span{
    color: firebrick;
    font-size: 20px;
    font-weight: bold;
}

.page-title span:hover{
    color: red;
}
.card-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    width: 100%;
    padding: 10px;
    height: inherit;
}
.card{
    height: 300px;
    width: 230px;
    margin: auto;
    margin-bottom: 20px;
    /* background-color: rgb(216, 213, 213); */
    background-color: #DCE6E1;
}
.card-header{
    padding: 5px;
    margin-bottom: 30px;
}
.card-header span:nth-child(1){
    float: left;
    text-decoration: underline;
}
.card-header span:nth-child(2){
    float: right;
    color: gray;
}
.card-header span::after{
    content: " ";
    display: table;
    clear: both;
}
.card-header span{
    color: var(--secondary-text-color)

}
/* .card-header span:hover{
    color: red;

} */
.card-content{
    padding: 5px;
}
.card-content span{
    display: block;
    color: firebrick;
    font-weight: 500;
}

.card-content span i{
    color: gray;
    font-size: 14px;
}
.card-content span i::before{
   content: ":";
   color: red;
}

.card-content a{
    margin-top: 20px;
    /* background-color: firebrick; */
    color: var(--primary-link-color);
    font-weight: bold;
    font-size: 16px;
    padding: 3px;
    float: right;
    position: relative;
    bottom: -50px;
}
.card-content  a:nth-of-type(1){
    float: right;
}

.card-content a:nth-of-type(2){
    float: left;
}
.card-content a:hover{
    color: var(--primary-link-hover-color);

}

/* Position */
.position-relative{
    position: relative;
}
.position-absolute{
    position: absolute;
}

.alert{
    min-height: 50px;
    background-color: green;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    opacity: .8;
    z-index: 999;
    -webkit-box-shadow: 0 0 5px black;
    -moz-box-shadow:    0 0 5px black;
    box-shadow:         0 0 5px black;
}
.close-btn{
    color: white;
    font-weight: bold;
    position: absolute;
    right: 5px;
}
.close-btn:hover{
    color: red;
}
.message{
    color: white;
    font-size: 14px;
    font-weight: bolder;
    text-align: center;
}

.notification{
    height: 150px;
    width: 300px;
    background-color: orange;
    position: fixed;
    right: 10px;
    bottom: 10px;
    opacity: .8;
    z-index: 999;
}
.modal{
    height: 350px;
    width: 70%;
    background-color: green;
    position: fixed;
    top: 20%;
    left: 15%;
    z-index: 999;
}
.success{
    background-color: green;
}
.warning{
    background-color: yellow;
}

.danger{
    background-color: red;
}

.info{
    background-color: orange;
}


.alert, .notification, .modal{
    display: none;
}
.show{
    display: block;
}

.hide{
    display: none;
}

.size-16 *{
    font-size: 16px;
}
.size-10 *{
    font-size: 10px;
}
.heading{
    color: var(--secondary-text-color);
    font-weight: bolder;
    text-align: center;
    font-size: 20px;
}

.banner{
    height: 150px;
    background-color: white;
    width: 100%;
    opacity: .9;
    position: relative;
    top: 920px;
}
.banner .inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}
.banner img{
    height: 100px;
    margin: auto;
}
.banner-text{
    font-size: 23px;
    color: firebrick;
    font-weight: bolder;
    text-align: center;
}
.banner .img-text {
    color: rgb(109, 109, 109);
    font-size: 18px;
    text-align: center;
}
.icon{
    font-size: 25px;
}
.icon.trigram::after{
    content: '\02630';
}

.icon.close::after{
    content: '\02613';
}
.loader{
    border: 16px solid #f3f3f3;
    /* border-radius: 50%; */
    border: 10px solid firebrick;
    width: 50px;
    height: 50px;
    position: relative;
    top: 50%;
    left: 40%;
}
.bg-red{
    background-color: firebrick
}

  
  .generic-card {
    display: inline-block;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.15);
    margin: 20px;
    position: relative;
    transition: all .2s ease-in-out;
  }
  
  .generic-card:hover {
    /*box-shadow: 0 5px 22px 0 rgba(0,0,0,.25);*/
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    /* margin-bottom: 54px; */
  }
  
  .generic-card .image {
    height: 200px;
    opacity: .7;
    overflow: hidden;
    transition: all .2s ease-in-out;
  }
  .dashboard-card{ 
      width: 400px;
  }
  .image:hover,
  .generic-card:hover .image {
    height: 200px;
    opacity: 1;
  }
  
  .generic-card .text {
    background: #FFF;
    /* padding: 20px; */
    /* min-height: 200px; */
  }
  
  .generic-card .text p {
    margin-bottom: 0px;
  }
  
  .fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    margin-top: -50px;
    right: 20px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, .3);
    color: #fff;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    background: #0066A2;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
  }
  
  .fab:hover {
    background: #549D3C;
    cursor: pointer;
    -ms-transform: rotate(90deg);
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
  }

  .circle{
    width: 150px;
    height: 150px;
    border-radius:100%;
    text-align:center;
    line-height:0;
    position:relative;
    margin-bottom: 10px;
  }

  .circle span {
      display: block;
      position: relative;
      top: 50%;
      color: firebrick;
      font-size: 27px;
  }

  .metric-container{
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      flex-basis: 200px;
  }

  .metric-container .circle{
    background-color: white;
    border: 10px solid rgb(214, 214, 214);
    clip: rect(0, 1em, 1em, 0.5em);
}
.metric-card{
    display: block;
    width: 300px;
    height: 150px;
    text-align: center;
}
.metric-card .title{
    font-size: 20px;
    font-weight: unset;
}
.metric-card .fas{
    font-size: 60px;
    color: purple;
}
.metric-card span{
    display: block;
    font-size: 20px
}





/* Progress pie chart
Inspiration gotten from Alex Marinenko (https://codepen.io/jo-asakura/pen/stFHi) */
.metric span.text{
    font-size: 18px;
    display: block;
    text-align: center;
}
.metric:nth-child(1){
    margin-right: 50px;
}
.set-size {
    font-size: 5em;
  }
  .charts-container{
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      height: 150px;
  }
  
  .charts-container:after {
    clear: both;
    content: "";
    display: table;
  }
  
  .pie-wrapper {
    height: 1em;
    width: 1em;
    float: left;
    margin: 15px;
    position: relative;
  }
  .pie-wrapper:nth-child(3n + 1) {
    clear: both;
  }

  .pie-wrapper .pie .half-circle {
    height: 100%;
    width: 100%;
    border: 0.1em solid #3498db;
    border-radius: 50%;
    clip: rect(0, 0.5em, 1em, 0);
    left: 0;
    position: absolute;
    top: 0;
  }
  .pie-wrapper .label {
    background: #34495e;
    border-radius: 50%;
    bottom: 0.4em;
    color: #ecf0f1;
    cursor: default;
    display: block;
    font-size: 0.25em;
    left: 0.4em;
    line-height: 2.8em;
    position: absolute;
    right: 0.4em;
    text-align: center;
    top: 0.4em;
    background: none;
    color: #7f8c8d;
  }
  .pie-wrapper .label .smaller {
    color: #bdc3c7;
    font-size: 0.45em;
    padding-bottom: 20px;
    vertical-align: super;
  }
  .pie-wrapper .shadow {
    height: 100%;
    width: 100%;
    border: 0.1em solid #bdc3c7;
    border-radius: 50%;
  }
  
 
  .pie-wrapper.progress-10 .pie .half-circle {
    border-color: #1abc9c;
  }
  .pie-wrapper.progress-10 .pie .left-side {
    -webkit-transform: rotate(36deg);
            transform: rotate(36deg);
  }
  .pie-wrapper.progress-10 .pie .right-side {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .pie-wrapper.progress-10 .pie .right-side {
    display: none;
  }


   .pie-wrapper.progress-20 .pie .half-circle {
    border-color: #8e44ad;
  }
  .pie-wrapper.progress-20 .pie .left-side {
    -webkit-transform: rotate(72deg);
            transform: rotate(72deg);
  }
  .pie-wrapper.progress-20 .pie .right-side {
    display: none;
  }



  .pie-wrapper.progress-30 .pie .half-circle {
    border-color: #8e44ad;
  }
  .pie-wrapper.progress-30 .pie .left-side {
    -webkit-transform: rotate(108deg);
            transform: rotate(108deg);
  }
  .pie-wrapper.progress-30 .pie .right-side {
    display: none;
  }

  .pie-wrapper.progress-40 .pie {
    clip: rect(auto, auto, auto, auto);
  }
  .pie-wrapper.progress-40 .pie .half-circle {
    border-color: #8e44ad;
  }
  .pie-wrapper.progress-40 .pie .left-side {
    -webkit-transform: rotate(144deg);
            transform: rotate(144deg);
  }
  .pie-wrapper.progress-40 .pie .right-side {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }


  .pie-wrapper.progress-50 .pie {
    clip: rect(auto, auto, auto, auto);
  }
  .pie-wrapper.progress-50 .pie .half-circle {
    border-color: #8e44ad;
  }
  .pie-wrapper.progress-50 .pie .left-side {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .pie-wrapper.progress-50 .pie .right-side {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }


  .pie-wrapper.progress-60 .pie {
    clip: rect(auto, auto, auto, auto);
  }
  .pie-wrapper.progress-60 .pie .half-circle {
    border-color: #8e44ad;
  }
  .pie-wrapper.progress-60 .pie .left-side {
    -webkit-transform: rotate(216deg);
            transform: rotate(216deg);
  }
  .pie-wrapper.progress-60 .pie .right-side {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .pie-wrapper.progress-70 .pie {
    clip: rect(auto, auto, auto, auto);
  }
  .pie-wrapper.progress-70 .pie .half-circle {
    border-color: #8e44ad;
  }
  .pie-wrapper.progress-70 .pie .left-side {
    -webkit-transform: rotate(252deg);
            transform: rotate(252deg);
  }
  .pie-wrapper.progress-70 .pie .right-side {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }


  .pie-wrapper.progress-80 .pie {
    clip: rect(auto, auto, auto, auto);
  }
  .pie-wrapper.progress-80 .pie .half-circle {
    border-color: #e74c3c;
  }
  .pie-wrapper.progress-80 .pie .left-side {
    -webkit-transform: rotate(288deg);
            transform: rotate(288deg);
  }
  .pie-wrapper.progress-80 .pie .right-side {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .pie-wrapper.progress-90 .pie {
    clip: rect(auto, auto, auto, auto);
  }
  .pie-wrapper.progress-90 .pie .half-circle {
    border-color: #e74c3c;
  }
  .pie-wrapper.progress-90 .pie .left-side {
    -webkit-transform: rotate(324deg);
            transform: rotate(324deg);
  }
  .pie-wrapper.progress-90 .pie .right-side {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }


  .pie-wrapper.progress-100 .pie {
    clip: rect(auto, auto, auto, auto);
  }
  .pie-wrapper.progress-100 .pie .half-circle {
    border-color: #e74c3c;
  }
  .pie-wrapper.progress-100 .pie .left-side {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  .pie-wrapper.progress-100 .pie .right-side {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .card {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    background-color: white;
  }
  
  /* On mouse-over, add a deeper shadow */
  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }

  .approved{
      color: rgb(4, 179, 4) !important;
  }
  .rejected{
      color: red !important;
  }