* {
  box-sizing: border-box;
}
body {
  font-family: 'Source Sans Pro', sans-serif;
  background: #FFFFFF;
  padding: 0;
  margin: 0;
}
body.login {
  font-family: 'Source Sans Pro', sans-serif;
  display: flex;
  align-items: center;
  background: #00743F /*url(../images/blurred-bg.jpg)*/;
  background-size: cover;
  margin: 0;
  height: 100vh;
  justify-content: center;
}
/* style the login box  */
.container-box {
  background: #FFFFFF;
  width: 960px;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .container-box {
    flex-direction: column;
  }
}
.container-box .form {
  /* display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center; */
  padding: 2rem 3rem;
  flex: 1;
  max-height: 475px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .container-box .form {
    order: 0;
  }
}
.container-box .form .nav {
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
}
.container-box .form .nav li {
  text-transform: uppercase;
  font-size: 80%;
  font-weight: 600;
  flex: 1;
}
.container-box .form .nav li .nav-link {
  color: #000000;
}
.container-box .form .nav li .active {
  background: #F2F2F2;
  color: #000000;
  border-radius: 0;
}
.container-box .form p {
  margin: 1rem 0;
  line-height: 1.5rem;
}
.container-box .form form {
  width: 100%;
}
.container-box .form form p {
  margin: 1rem 0;
  line-height: 1.5rem;
}
.container-box .form .form-group {
  width: 100%;
}
.container-box .form p {
  font-size: 0.85rem;
}
.container-box .form a {
  color: #F1A104;
}
.container-box .form input:not([type='checkbox']) {
  background-color: #F2F2F2;
  border: 0;
  border-radius: 3px;
  font-size: 14px;
  padding: 0.65rem;
  width: 100%;
  outline: none;
}
.container-box .form .form-check {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 0;
}
.container-box .form button {
  background: #00743F;
  color: #FFFFFF;
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: left;
  margin-bottom: 1.5rem;
  padding: 5px 50px;
}
.container-box .features {
  flex: 1;
  padding: 1.5rem 3rem;
  background: url(../images/main-image.png);
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .container-box .features {
    order: 1;
  }
}
.container-box .features .feature {
  color: #FFFFFF;
}
.container-box .features .feature h1 {
  font-weight: 700;
  font-size: 1.3rem;
}
.container-box .features .feature p {
  font-size: 95%;
  line-height: 1.2rem;
}
.container-box .features .feature .btn-back,
.container-box .features .feature .btn-elig {
  border-radius: 20px;
  margin-top: 1rem;
  padding: 4px 15px;
  font-weight: 600;
  font-size: 13px;
}
.container-box .features .feature .btn-back {
  background: #F1A104;
  color: #FFFFFF;
}
.container-box .features .feature .btn-back i {
  margin-right: 5px;
}
.container-box .features .feature .btn-elig {
  background: #FFFFFF;
  color: #000000;
}
.container-box .features .feature .btn-elig i {
  margin-left: 5px;
}
.container-box .features .links {
  padding-right: 3rem;
  display: flex;
  justify-content: space-between;
}
.container-box .features .note {
  position: absolute;
  bottom: 15px;
  padding-right: 3rem;
}
.container-box .features::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(243, 240, 241, 0.9)), color-stop(100%, rgba(27, 27, 27, 0.9)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(243, 240, 241, 0) 0%, rgba(27, 27, 27, 0.9) 125%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(243, 240, 241, 0) 0%, rgba(27, 27, 27, 0.9) 125%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(243, 240, 241, 0) 0%, rgba(27, 27, 27, 0.9) 125%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(243, 240, 241, 0) 0%, rgba(27, 27, 27, 0.9) 125%) /* W3C */;
}
#sidebarMenu ul {
  margin-top: 1.5rem;
  padding: 0;
}
#sidebarMenu ul li {
  padding: 0px;
  margin: 0px;
  font-size: 88%;
}
#sidebarMenu ul li .nav-link {
  padding: 0.5rem 0;
  color: #333333;
}
#sidebarMenu ul li .nav-link i {
  margin: 0 10px 0;
  width: 20px;
}
#sidebarMenu ul li .active {
  color: #00743F;
}
#welcome-dash {
  background: #F1A104;
  color: #FFFFFF;
  position: relative;
  padding: 4rem 2rem 1.5rem;
  margin-top: 2rem;
}
#welcome-dash:before {
  content: '';
  width: 42%;
  height: 112%;
  position: absolute;
  right: 5%;
  bottom: 0px;
  background: url(../images/girl-on-desk.png) bottom right no-repeat;
  background-size: contain;
}
#welcome-dash h1 {
  font-size: 150%;
  font-weight: 600;
}
#welcome-dash .lead {
  width: 50%;
}
#dash-tabs {
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
}
#dash-tabs li {
  font-size: 80%;
  font-weight: 600;
  flex: 1;
}
#dash-tabs li .nav-link {
  color: #000000;
}
#dash-tabs li .active {
  background: #F2F2F2;
  color: #000000;
  border-radius: 0;
}
/* styling the dashboard tools*/
.dash-tools {
  margin: 2.5rem 0 0 0;
}
.dash-tools .tool {
  padding: 10px;
  margin-bottom: 2rem;
}
.dash-tools .tool a {
  display: flex;
  color: #444444;
}
.dash-tools .tool span {
  display: block;
  height: 55px;
  width: 60px;
  font-size: 230%;
  text-align: center;
  border-radius: 5px;
}
.dash-tools .tool label {
  display: block;
  font-weight: 600;
  font-size: 105%;
  padding: 5px 0 0 10px;
  line-height: 22px;
  flex: 1;
}
.dash-tools > :nth-child(1) > div > a > span,
.dash-tools > :nth-child(7) > div > a > span,
.dash-tools > :nth-child(13) > div > a > span {
  background: #ECFAF4;
}
.dash-tools > :nth-child(1) > div > a > span i,
.dash-tools > :nth-child(7) > div > a > span i,
.dash-tools > :nth-child(13) > div > a > span i {
  color: #00743F;
}
.dash-tools > :nth-child(2) > div > a > span,
.dash-tools > :nth-child(8) > div > a > span,
.dash-tools > :nth-child(14) > div > a > span {
  background: #FDF6E8;
}
.dash-tools > :nth-child(2) > div > a > span i,
.dash-tools > :nth-child(8) > div > a > span i,
.dash-tools > :nth-child(14) > div > a > span i {
  color: #F1A104;
}
.dash-tools > :nth-child(3) > div > a > span,
.dash-tools > :nth-child(9) > div > a > span,
.dash-tools > :nth-child(15) > div > a > span {
  background: #FDF0F0;
}
.dash-tools > :nth-child(3) > div > a > span i,
.dash-tools > :nth-child(9) > div > a > span i,
.dash-tools > :nth-child(15) > div > a > span i {
  color: #DE1414;
}
.dash-tools > :nth-child(4) > div > a > span,
.dash-tools > :nth-child(10) > div > a > span,
.dash-tools > :nth-child(16) > div > a > span {
  background: #EFF5FD;
}
.dash-tools > :nth-child(4) > div > a > span i,
.dash-tools > :nth-child(10) > div > a > span i,
.dash-tools > :nth-child(16) > div > a > span i {
  color: #3C88F0;
}
.dash-tools > :nth-child(5) > div > a > span,
.dash-tools > :nth-child(11) > div > a > span,
.dash-tools > :nth-child(17) > div > a > span {
  background: #ECF0FC;
}
.dash-tools > :nth-child(5) > div > a > span i,
.dash-tools > :nth-child(11) > div > a > span i,
.dash-tools > :nth-child(17) > div > a > span i {
  color: #001F74;
}
.dash-tools > :nth-child(6) > div > a > span,
.dash-tools > :nth-child(12) > div > a > span,
.dash-tools > :nth-child(18) > div > a > span {
  background: #FAEFEF;
}
.dash-tools > :nth-child(6) > div > a > span i,
.dash-tools > :nth-child(12) > div > a > span i,
.dash-tools > :nth-child(18) > div > a > span i {
  color: #F56969;
}
#dash-content {
  background: #FFFFFF;
  margin: 2rem 0.25rem;
  padding: 2rem;
}
#dash-content h2 {
  font-size: 1.26rem;
}
#dash-content .progress-tabs {
  width: 100%;
}
#dash-content .progress-tabs li {
  font-size: 80%;
  font-weight: 600;
  flex: 1;
}
#dash-content .progress-tabs li .nav-link {
  color: #8c8b8b;
  background: #f7f7f7;
  border-radius: 0px;
  border-bottom: 2px solid #CCCCCC;
}
#dash-content .progress-tabs li .active {
  background: #FDF6E8;
  color: #000000;
  border-radius: 0;
  border-bottom: 2px solid #F1A104;
}
#dash-content .file {
  margin-bottom: 1rem;
}
#dash-content .file span {
  padding: 0 15px ;
  font-weight: 600;
}
#dash-content .file span i {
  color: #00743F;
}
#dash-content .file .btn-download {
  background: #F1A104;
  color: #FFFFFF;
  width: auto;
  margin: 0;
  border-radius: 5px;
  padding: 7px 20px;
}
#dash-content .file .btn-download i {
  padding-left: 5px;
}
#dash-content .file .btn-download:hover {
  color: #333333;
}
#dash-content form {
  margin: 2rem 0;
}
#dash-content form label {
  font-weight: 600;
}
