/* @font-face {
    font-family: 'GolosText-VariableFont_wght';
    src: url('../css/GolosText-VariableFont_wght.ttf');
    font-display: swap;
} */

@font-face {
  font-family: 'Cera Pro Medium';
  src: url('../css/Cera Pro Medium.ttf');
  font-display: swap;
}
@font-face {
  font-family: 'Cera Pro Light';
  src: url('../css/Cera Pro Light.ttf');
  font-display: swap;
}
@font-face {
  font-family: 'Cera Pro Bold';
  src: url('../css/Cera Pro Bold.ttf');
  font-display: swap;
}
*{
    font-family: 'Cera Pro Medium';
}
h1,h2,h3,h4,h5,h6{
  font-family: 'Cera Pro Bold';
}
.login-page {
  background-image: url('/storage/app/public/image/home.jpg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 100vh;
}

.login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  padding: 50px;
  transform: translate(-50%, -50%);
  background: black;
  border-radius: 10px;
}

.heading-login-box {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}

.user-box {
  position: relative;
}

.user-box-input {
  width: 100%;
  padding: 10px 0;
  font-size: 14px;
  color: #fff;
  margin-bottom: 30px;
  border: none;
  border-bottom: 1px solid #fff;
  outline: none;
  background: transparent;
}

.user-box-label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 14px;
  color: #fff;
  pointer-events: none;
  transition: 0.5s;
}

.login-box .user-box input:focus~label,
.login-box .user-box input:valid~label {
  top: -20px;
  left: 0;
  color: #27cac4;
  font-size: 12px;
}

.login-box-button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  color: #27cac4;
  font-size: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: .5s;
  margin-top: 30px;
}

.login-box button:hover {
  background: #27cac4;
  color: #fff;
}

.login-box button span {
  position: absolute;
  display: block;
}

.login-box-button span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #27cac4);
  animation: btn-1 1.7s linear infinite;
}

@keyframes btn-1 {
  0% {
      left: -100%;
  }

  50%,
  100% {
      left: 100%;
  }
}

.login-box-button span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #27cac4);
  animation: btn-2 1.7s linear infinite;
  animation-delay: 0.25s;
}

@keyframes btn-2 {
  0% {
      top: -100%;
  }

  50%,
  100% {
      top: 100%;
  }
}

.login-box-button span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #27cac4);
  animation: btn-3 1.7s linear infinite;
  animation-delay: 0.5s;
}

@keyframes btn-3 {
  0% {
      right: -100%;
  }

  50%,
  100% {
      right: 100%;
  }
}

.login-box-button span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #27cac4);
  animation: btn-4 1.7s linear infinite;
  animation-delay: 0.75s;
}

@keyframes btn-4 {
  0% {
      bottom: -100%;
  }

  50%,
  100% {
      bottom: 100%;
  }
}
@media screen and (max-width: 576px) and (min-width: 400px) {
  .login-box {
      width: 250px;
  }
}

@media screen and (max-width: 400px) {
  .login-box {
      width: 200px;
  }

  .heading-login-box {
      font-size: 16px !important;
  }

  .user-box-input {
      font-size: 12px;
  }

  .user-box-label {
      font-size: 12px;
  }
  .login-box-button {
      font-size: 12px;
  }
}

.nlink:hover{
  color: #27cac4;
}
.cbtn, .cbtn:hover{
  background-color: #27cac4;
  color: white;
  border-radius: 25px;
}
.title{
  color: #27cac4;
}
.tlink,.tlink:hover{
  color: #27cac4;
}
.dcard{
  color:white;
  background: #27cac4;
  /* box-shadow: #bbb 10px 5px 10px 5px !important; */
}
.cicon{
  font-size: 30px;
    border: 1px solid white;
    border-radius: 50%;
    padding: 5px 15px;
}
.ucharts{
  height: 350px;
}

.form {
  display: block;
  /* width: 330px; */
  height: auto;
  padding: 32px;
  background-color: #f8f9fa;
  border-radius: 13px;
  box-shadow: 3px 3px 5px #BABECC, -5px -5px 10px #FFF;
}
.form__field {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

.input-group {
  width: 100%;
  height: auto;
}
.input-group__label {
  display: block;
  padding-left: 10px;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #27cac4;
  text-shadow: 1px 1px 0 #FFF;
  margin-bottom: 8px;
}
.input-group__input {
  display: block;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background-color: transparent;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #61677C;
  text-shadow: 1px 1px 0 #FFF;
  padding: 12px;
  outline: none;
  border: none;
  border-radius: 30px !important;
  box-shadow: inset 2px 2px 5px #BABECC, inset -5px -5px 10px #FFF;
  transition: all 0.2s ease-in-out;
}
.input-group__input:focus {
  box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFF;
}

.button {
  background-color: #27cac4;
  color: white;
  /* font-size: 20px; */
  /* font-weight: bold; */
  letter-spacing: 0.07em;
  /* text-shadow: 1px 1px 0 #FFF; */
  padding: 8px 20px;
  border: 0;
  border-radius: 30px;
  box-shadow: 3px 3px 5px #BABECC, -4px -4px 10px #FFF;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.button:hover {
  box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}
.button:active {
  box-shadow: inset 2px 2px 3px #BABECC, inset -2px -2px 3px #FFF;
}

.ebtn {
  background-color: #27cac4;
  color: white;
  /* font-size: 20px; */
  /* font-weight: bold; */
  letter-spacing: 0.07em;
  /* text-shadow: 1px 1px 0 #FFF; */
  padding: 7px 12px;
  border: 0;
  border-radius: 50%;
  box-shadow: 3px 3px 5px #BABECC, -4px -4px 10px #FFF;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ebtn:hover {
  box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}
.ebtn:active {
  box-shadow: inset 2px 2px 3px #BABECC, inset -2px -2px 3px #FFF;
}

.dbtn {
  background-color: #ea1e39;
  color: white;
  /* font-size: 20px; */
  /* font-weight: bold; */
  letter-spacing: 0.07em;
  /* text-shadow: 1px 1px 0 #FFF; */
  padding: 7px 12px;
  border: 0;
  border-radius: 50%;
  box-shadow: 3px 3px 5px #BABECC, -4px -4px 10px #FFF;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.dbtn:hover {
  box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}
.dbtn:active {
  box-shadow: inset 2px 2px 3px #BABECC, inset -2px -2px 3px #FFF;
}

.sbtn {
  background-color: #1aef21e7;
  color: white;
  /* font-size: 20px; */
  /* font-weight: bold; */
  letter-spacing: 0.07em;
  /* text-shadow: 1px 1px 0 #FFF; */
  padding: 7px 12px;
  border: 0;
  border-radius: 50%;
  box-shadow: 3px 3px 5px #BABECC, -4px -4px 10px #FFF;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.sbtn:hover {
  box-shadow: -2px -2px 5px #FFF, 2px 2px 5px #BABECC;
}
.sbtn:active {
  box-shadow: inset 2px 2px 3px #BABECC, inset -2px -2px 3px #FFF;
}

thead{
  background-color: #27cac4;
  color: white;
}
th{
  font-family: 'Cera Pro Light' !important;
  /* font-weight: normal !important; */
}
th::before,th::after{
  opacity: 1 !important;
}

.sorting_desc::before,.sorting_asc:after{
  opacity: 0.5 !important;
}

.itback{
  background-image: url('/storage/app/public/image/template.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* padding: 10%; */
}

.drag {
font-size: 20px;
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;

}

.drag:active {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}

input[type="file"]::file-selector-button {
  border: 2px solid #27cac4;
  padding: 0.2em 0.4em;
  border-radius: 30px;
  background-color: #27cac4;
  transition: 1s;
  color: white;
}

.navbar-nav .nav-link.active{
  color: #27cac4 !important;
}