@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none !important;
}

header {
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #3767ea;
}
header .navArea {
  max-width: 80%;
  display: flex;
  align-items: center;
  gap: 30px;
}
header .navArea .navList {
  display: flex;
  align-items: center;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  display: inline-flex;
  line-height: 1.2;
  outline: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 30px;
}
header .navArea .navList ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
header .navArea .navList ul li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #0b0b0b;
}
header .navArea .navList ul li a.active {
  color: #3767ea;
}
header .navArea .logOutBtn {
  display: flex;
  align-items: center;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  display: inline-flex;
  line-height: 1.2;
  outline: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px 15px;
}
header .navArea .logOutBtn button {
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  outline-width: 0;
  text-decoration-line: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #353535;
  border: 0;
  color: #f1f1f1;
  box-shadow: none;
  border-radius: 0.5rem;
  height: 2rem;
  padding: 0.375rem 0.75rem;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
header .navArea .logOutBtn button:hover {
  background-color: #464646;
}

.homePage {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.homePage header .logo {
  color: #fff;
}

.upload-box {
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  width: 300px;
  left: 5em;
  margin: -12.8125em 0 0;
  padding: 1rem 0.625em;
  top: 50%;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  transform: scale(1);
  z-index: 30;
  transition: all 0.4s;
}
.upload-box .upload-header {
  background-color: #e9e9e9;
  padding: 4px;
  position: absolute;
  top: -24px;
  display: flex;
  align-items: center;
  width: 80%;
  margin: auto;
  left: 0;
  right: 0;
  border-radius: 10px 10px 0 0;
}
.upload-box .upload-header h3 {
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  width: 100%;
}
.upload-box .upload-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.upload-box .upload-form label {
  font-size: 16px;
  color: #5a5a5a;
  margin: 0;
  display: block;
  padding-left: 5px;
  font-weight: 600;
}
.upload-box .upload-form input {
  outline: none !important;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  width: 100%;
  padding: 10px 5px;
  font-size: 16px;
  line-height: 1;
}
.upload-box .upload-form input:hover {
  border-color: #c4d6ff;
}
.upload-box .upload-form input:focus {
  border-color: #3767ea;
}
.upload-box .uploadBtn .noEvent {
  pointer-events: none;
}
.upload-box .uploadBtn input {
  display: none;
}
.upload-box .uploadBtn-style {
  cursor: pointer;
  background-color: #e0eaff;
  border-radius: 8px;
  visibility: visible;
  opacity: 1;
  transition: background-color 0.1s ease-in 125ms;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.upload-box .uploadBtn-style .uploadDefaul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}
.upload-box .uploadBtn-style .uploadDefaul span {
  font-size: 14px;
  color: #0b0b0b;
  letter-spacing: 0.02em;
}
.upload-box .uploadBtn-style .uploadLoader .progress-svg {
  width: 80px;
  height: 80px;
}
.upload-box .uploadBtn-style .uploadLoader .progress-bar {
  stroke-dasharray: 213.6;
  stroke-dashoffset: 213.6;
  transition: stroke-dashoffset 0.3s ease;
}
.upload-box .uploadBtn-style .uploadSuccess {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}
.upload-box .uploadBtn-style .uploadSuccess-closed {
  pointer-events: all;
  position: absolute;
  top: 3px;
  right: 5px;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
  color: #df0303;
}
.upload-box .uploadBtn-style .uploadSuccess-closed svg {
  width: 1em;
  height: auto;
}
.upload-box .uploadBtn-style .uploadSuccess-closed:hover {
  color: #000;
}
.upload-box .uploadBtn-style .uploadSuccess .fileName {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #0b0b0b;
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  cursor: default;
}
.upload-box .uploadBtn-style .uploadSuccess .fileSize {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #5a5a5a;
}
.upload-box .uploadBtn-style .uploadDefaul,
.upload-box .uploadBtn-style .uploadLoader,
.upload-box .uploadBtn-style .uploadSuccess {
  display: none;
}
.upload-box .uploadBtn-style.defaultUploadStyle .uploadDefaul {
  display: flex;
}
.upload-box .uploadBtn-style.loadUploadStyle .uploadLoader {
  display: flex;
}
.upload-box .uploadBtn-style.successUploadStyle .uploadSuccess {
  display: flex;
}
.upload-box .uploadBtn-style:hover {
  background-color: #c4d6ff;
}
.upload-box .uploadFormSubmit {
  border-top: 1px solid #ccc;
  padding: 20px 0 10px;
}
.upload-box .uploadFormSubmit button {
  align-items: center;
  border-radius: 1rem;
  box-shadow: none;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  gap: 0.5rem;
  height: 3rem;
  justify-content: center;
  line-height: 1;
  outline-width: 0;
  padding: 1rem;
  text-decoration-line: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
  background-color: #3767ea;
  border: 0;
  color: #f5f8ff;
  outline: none;
  letter-spacing: 0.04em;
}
.upload-box .uploadFormSubmit button:hover {
  background-color: #4e7df7;
  color: #fff;
}
.upload-box .uploadFormSubmit button:active {
  background-color: #1842ce;
}
.upload-box .uploadFormSubmit button:focus-visible {
  box-shadow: 0 0 0 4px #4e7df7;
}

.linkCopyPopup {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.linkCopyPopup .modalFeild {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #ccc;
  padding: 10px 10px;
  border-radius: 5px;
}
.linkCopyPopup .modalFeild .modalFeildInput {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
}
.linkCopyPopup .modalFeild .modalFeildInput .icon {
  color: #323232;
  font-size: 24px;
}
.linkCopyPopup .modalFeild .modalFeildInput .icon svg {
  height: auto;
  width: 1em;
}
.linkCopyPopup .modalFeild .modalFeildInput input {
  box-shadow: none;
  border: none;
  outline: none;
  width: 100%;
  color: #323232;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.copy-btn {
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  color: #323232;
  border-radius: 3px;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: all 0.4s ease-in-out;
}
.copy-btn svg {
  max-width: 1em;
  max-height: 1em;
}
.copy-btn svg:nth-child(2) {
  display: none;
}
.copy-btn:hover {
  border-color: #1842ce;
  background-color: #c4d6ff;
  color: #1842ce;
}
.copy-btn.success {
  border-color: #0f5314;
  background-color: #c7ffc5;
  color: #0f5314;
}
.copy-btn.success svg:nth-child(1) {
  display: none;
}
.copy-btn.success svg:nth-child(2) {
  display: flex;
}

.modal-header .modal-title {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 20px;
  font-weight: 700;
  gap: 10px;
  color: #141414;
}
.modal-header .modal-title i {
  display: flex;
}

.tableMain {
  padding: 10px 5%;
  height: calc(100vh - 92px);
  overflow: hidden;
  overflow-y: auto;
}
.tableMain-header {
  padding-bottom: 30px;
}
.tableMain-header h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1;
  color: #282828;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.tableMain-header h3 .icon {
  display: flex;
}
.tableMain-header h3 .icon svg {
  width: auto;
  height: 1em;
}
.tableMain-header p {
  font-size: 16px;
  color: #a3a3a3;
  font-weight: 400;
  line-height: 1.2;
}

.tableContainer {
  width: 100%;
  border-radius: 15px;
  border: 1px solid var(--stroke-soft-200, #E1E4EA);
  background: #FFF;
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}
.tableContainer table {
  min-width: 100%;
}
.tableContainer table tr {
  border-bottom: 1px solid #E1E4EA;
  transition: all 0.3s ease-in-out;
}
.tableContainer table tr:hover {
  background-color: #fefefe;
}
.tableContainer table tr th,
.tableContainer table tr td {
  padding: 10px;
}
.tableContainer table tr th {
  color: var(--text-sub-600, #525866);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.084px;
  background-color: #F5F7FA;
}
.tableContainer table tr th span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.tableContainer table tr td {
  overflow: hidden;
  color: #0E121B;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.084px;
}
.tableContainer table tr td.tableError {
  color: #FF1F1F;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.084px;
  text-align: center;
  padding: 20px;
  text-transform: capitalize;
}

.tableError {
  overflow: hidden;
  color: #FF1F1F;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.084px;
}

.tablePagination {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.tablePagination.empty {
  margin-top: 0;
}
.tablePaginationNav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  list-style: none;
}
.tablePagination .pagi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 8px;
  border: 1px solid #E1E4EA;
  background: #FFF;
  color: #525866;
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.084px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.tablePagination .pagi-item.pagi-arrow {
  border: none;
}
.tablePagination .pagi-item:hover {
  background: #f1f1f1;
}
.tablePagination .pagi-item.active {
  border: none;
  background: #3767ea;
  color: #fff;
}
.tablePagination .pagi-item.disabled {
  background: #FFF;
  cursor: not-allowed;
  opacity: 0.5;
}
.tablePagination .pagi-item svg {
  width: 1.4em;
}

.downloadPge {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.auth-card {
  max-width: 95vw;
  max-height: 95vh;
  width: 400px;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 20px;
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 37px;
}
.auth-cardHead {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.auth-cardHead h4 {
  margin: 0;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.auth-cardHead h4 .icon {
  line-height: 1;
}
.auth-cardHead h4 .icon svg {
  height: 1em;
  width: auto;
}
.auth-cardHead p {
  font-size: 14px;
  color: #a3a3a3;
  font-weight: 400;
  line-height: 1.3;
}
.auth-cardDownloadForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.auth-cardDownloadForm-feild {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.auth-cardDownloadForm-feild label {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  color: #5a5a5a;
  margin: 0;
  display: inline-block;
  padding-left: 5px;
  font-weight: 600;
  cursor: pointer;
}
.auth-cardDownloadForm-feild input {
  outline: none !important;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  width: 100%;
  padding: 10px 5px;
  font-size: 16px;
  line-height: 1;
}
.auth-cardDownloadForm-feild input:-internal-autofill-selected {
  background-color: #fff;
}
.auth-cardDownloadForm-feild input:hover {
  border-color: #c4d6ff;
}
.auth-cardDownloadForm-feild input:focus {
  border-color: #3767ea;
}
.auth-cardDownloadForm-submit {
  padding: 20px 0 10px;
}
.auth-cardDownloadForm-submit button {
  align-items: center;
  border-radius: 0.5rem;
  box-shadow: none;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  gap: 0.5rem;
  height: 3rem;
  justify-content: center;
  line-height: 1;
  outline-width: 0;
  padding: 1rem;
  text-decoration-line: none;
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
  background-color: #3767ea;
  border: 0;
  color: #f5f8ff;
  outline: none;
  letter-spacing: 0.04em;
}
.auth-cardDownloadForm-submit button:hover {
  background-color: #4e7df7;
  color: #fff;
}
.auth-cardDownloadForm-submit button:active {
  background-color: #1842ce;
}
.auth-cardDownloadForm-submit button:focus-visible {
  box-shadow: 0 0 0 4px #4e7df7;
}/*# sourceMappingURL=style.css.map */