@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* media Queries */
.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
}

header {
  width: 100%;
  padding: 12px 10vw;
  background-color: #e5fded;
}
@media (max-width: 480px) {
  header {
    padding: 12px 4vw;
  }
}
header .header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header .header .logo {
  width: 100%;
  max-width: 360px;
}
header .header .logo img {
  display: block;
  width: 100%;
}
header .header .user {
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
header .header .user b {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  font-size: 15px;
  color: #404040;
}
@media (max-width: 1024px) {
  header .header .user b {
    display: none;
  }
}
header .header .user b span {
  color: #000;
  font-weight: 600;
}
header .header .user small {
  display: block;
  width: 48px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 1024px) {
  header .header .user small {
    display: none;
  }
}
header .header .user small img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .header .user input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: auto;
  height: 36px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  border: none;
  background: url(../icons/logout.svg) no-repeat left 16px center #df4f4f;
  background-size: 18px;
  border-radius: 8px;
  padding: 0 24px 0 42px;
  margin: 0 0 0 16px;
}
@media (max-width: 480px) {
  header .header .user input[type=submit] {
    background: url(../icons/logout.svg) no-repeat center #df4f4f;
    background-size: 18px;
    font-size: 0px;
    width: 36px;
    padding: 0;
  }
}
header .header .user input[type=submit]:hover, header .header .user input[type=submit]:focus {
  outline: none;
  background-color: #aa3333;
}

.wrapper {
  width: 100%;
  flex: 1;
  padding: 48px 10vw;
  display: flex;
  flex-flow: column;
  gap: 24px;
}
@media (max-width: 480px) {
  .wrapper {
    padding: 24px 4vw;
  }
}
.wrapper h1 {
  text-align: left;
  font-weight: 600;
  font-size: 24px;
  color: #000;
}
.wrapper .table {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 8px;
}
.wrapper .table table {
  width: 100%;
  border-collapse: collapse;
}
.wrapper .table table tbody {
  width: 100%;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .wrapper .table table tbody {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .wrapper .table table tbody {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .wrapper .table table tbody {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.wrapper .table table tbody tr {
  width: 100%;
  display: block;
}
.wrapper .table table tbody tr td {
  display: block;
  width: 100%;
}
.wrapper .table table tbody tr td .staffCon {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  flex-flow: column;
  overflow: hidden;
}
.wrapper .table table tbody tr td .staffCon .photo {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.wrapper .table table tbody tr td .staffCon .photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wrapper .table table tbody tr td .staffCon .photo small {
  display: inline-block;
  width: auto;
  font-weight: 500;
  font-size: 14px;
  padding: 4px 12px;
  background-color: #e4bd0f;
  color: #000;
  border-radius: 12px 0 0 0;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.wrapper .table table tbody tr td .staffCon .text {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 8px;
  padding: 16px;
}
.wrapper .table table tbody tr td .staffCon .text b {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  color: #000;
}
.wrapper .table table tbody tr td .staffCon .text p {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #505055;
}
.wrapper .table table tbody tr td .staffCon .text small {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  padding: 4px 12px;
  background-color: #e4bd0f;
  color: #000;
  border-radius: 50px;
}
.wrapper .table .addnew {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.wrapper .table .addnew input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: auto;
  height: 36px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  border: none;
  background: url(../icons/add.svg) no-repeat left 12px center #14a043;
  background-size: 22px;
  border-radius: 8px;
  padding: 0 24px 0 42px;
}
.wrapper .table .addnew input[type=submit]:hover, .wrapper .table .addnew input[type=submit]:focus {
  outline: none;
  background-color: #0d7830;
}
.wrapper .submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .submit input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  max-width: 220px;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  border: none;
  background-color: #1d31c7;
  border-radius: 8px;
  padding: 0 24px;
}
.wrapper .submit input[type=submit]:hover, .wrapper .submit input[type=submit]:focus {
  outline: none;
  background-color: #111d7b;
}

footer {
  width: 100%;
  padding: 16px 10vw;
  text-align: left;
  font-size: 13px;
  color: #fff;
  background-color: #207045;
}
@media (max-width: 480px) {
  footer {
    padding: 16px 4vw;
  }
}/*# sourceMappingURL=style.css.map */