@font-face {
  font-family: "TT Commons";
  src: url("../fonts/TTCommons-DemiBold.woff2") format("woff2"), url("../fonts/TTCommons-DemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "TT Commons";
  src: url("../fonts/TTCommons-Regular.woff2") format("woff2"), url("../fonts/TTCommons-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "TT Commons";
  color: #091928;
}

h1 {
  font-weight: 600;
}

.form-control {
  box-shadow: none !important;
  border-radius: 0px !important;
  color: #091928;
  font-weight: 600;
  border: none;
  border-bottom: 1px solid #091928;
  outline: none !important;
  transition-duration: 0.4s;
}

.form-control:focus {
  color: #091928;
  background-color: #fff;
  outline: 0;
  box-shadow: none;
  border-bottom: 1px solid #F9423A !important;
}

.container-fluid {
  padding: 0 140px;
}

.btn-custom {
  position: relative;
  text-transform: uppercase;
  padding: 16px 48px 16px 0;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.4s ease;
  margin-top: 0px;
  display: inline-block;
  color: #091928;
  box-shadow: none !important;
}
.btn-custom:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #F9423A;
  width: 0;
  z-index: -1;
  transition: all 0.4s ease;
}
.btn-custom:after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 15px;
  background: #F9423A;
  position: absolute;
  right: 24px;
  bottom: 16px;
  z-index: 1;
  -webkit-animation: showing 1.5s infinite;
  animation: showing 1.5s infinite;
}

.login-wrap {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.login-wrap h1 {
  margin-bottom: 20px;
  margin-top: 50px;
}

.login {
  background: url("../images/homeElement.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}
.login .login-form {
  display: flex;
  flex-direction: column;
  width: 300px;
  align-items: flex-start;
}
.login .login-form input {
  padding: 10px;
  margin-bottom: 20px;
  width: 100%;
  border: none;
  border-bottom: 2px solid #F1F2F3;
  outline: none;
  transition: 0.5s;
}
.login .login-form input:active, .login .login-form input:focus {
  border-bottom: 2px solid #F9423A;
}

.header {
  position: absolute;
  height: 50px;
  display: block;
  width: 100%;
  background: #333;
  z-index: 9;
  text-align: center;
  color: #f2f2f2;
  top: 0px;
  padding: 20px 0 0 0;
}

.header-container {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 5;
  transition: color 0.8s ease;
  font-weight: 400;
}
.header-container .wrap {
  position: relative;
  padding: 0 30px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-container .wrap .logo {
  display: flex;
  width: 225px;
}
.header-container .wrap .workBtn {
  position: absolute;
  left: calc(14.28571% * 6);
  transition-duration: 0.3s;
}
.header-container .wrap .workBtn .btn-custom {
  color: #F9423A;
}

.dashboard {
  padding-top: 180px;
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: scroll;
}

.projects_table thead tr th {
  border-top: none;
}
.projects_table .actions {
  list-style: none;
  display: flex;
  padding-left: 0px;
}
.projects_table .actions button {
  background: transparent;
  border: none;
  outline: none;
  margin-right: 10px;
}

@-webkit-keyframes showing {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0.8;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showing {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0.8;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*# sourceMappingURL=admin.css.map */
