.popup {
  width: 100%;
  z-index: 10;
  background-color: #fff;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 3rem;
  transition: all .3s;
  display: flex;
  position: fixed;
  top: 100%;
  left: 0;
}

.popup--show {
  transform: translateY(-100%);
}

.popup-isp__list {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.popup-isp__item {
  flex-basis: calc(50% - .8rem);
}

.popup-isp__check {
  color: #fff;
  visibility: hidden;
  opacity: 0;
  font-size: 1.25rem;
  transition: all .1s;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
}

.popup-isp__check--show {
  visibility: visible;
  opacity: 1;
}

.popup-isp__item:active {
  transform: scale(.85);
}

.popup__confirm {
  width: 50%;
  align-self: center;
}

.popup-isp-edit {
  padding: 0;
}

.popup-isp-edit__title {
  text-align: center;
  color: var(--primary-color-light);
  background-color: var(--primary-color);
  padding: 2rem;
}

.popup-isp-edit__content {
  flex-direction: column;
  gap: 2rem;
  padding: 0 2rem 3rem;
  display: flex;
}

.popup-isp-edit__date-container {
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  font-size: 2rem;
  display: flex;
}

.popup-isp-edit__date-icon {
  font-size: 3.5rem;
}

.popup-isp-edit__actions {
  gap: .5rem;
  display: flex;
}

.popup-isp-edit__confirm, .popup-isp-edit__remove {
  flex: 1 0 0;
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: var(--grey-transparent);
  visibility: hidden;
  opacity: 0;
  transition: all .5s;
  position: fixed;
  inset: 0;
}

.overlay--show {
  visibility: visible;
  opacity: 1;
  -webkit-backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.popup-cancel {
  width: 3.6rem;
  background-color: #ad0426;
  border-radius: 50%;
  top: 0;
  left: 0;
  transform: translate(-40%, -50%);
}

@media only screen and (min-width: 37.5em) {
  .popup-isp {
    padding: 4rem 5rem;
  }

  .popup-isp__item {
    flex-basis: calc(33.33% - .8rem);
    gap: 2.5rem;
  }

  .popup__confirm {
    width: 33.33%;
  }

  .popup-isp-edit__content {
    gap: 2.5rem;
    padding: 0 7rem 3rem;
  }

  .popup-isp-edit__date-container {
    justify-content: space-between;
    padding: 0 1rem;
  }

  .popup-isp-edit__actions {
    gap: 1.5rem;
  }
}

@media only screen and (min-width: 48em) {
  .popup-isp-edit__content {
    padding: 0 10rem 3rem;
  }
}

@media only screen and (min-width: 62em) {
  .popup {
    width: 70%;
    border-radius: 20px 20px 0 0;
    margin: 0 auto;
    right: 0;
  }

  .popup-isp-edit__title {
    border-radius: 20px 20px 0 0;
    padding: 3rem;
  }
}

@media only screen and (min-width: 675em) {
  .popup {
    width: 60%;
  }
}

@font-face {
  font-family: iranyekan;
  src: url("iranyekanwebregularfanum.ee376063.woff2") format("woff2"), url("iranyekanwebregularfanum.788c5c82.woff") format("woff"), url("iranyekanwebregularfanum.ca29fa42.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  --primary-color: #363636;
  --primary-color-light: #e0e0e0;
  --primary-color-dark: #1c1c1c;
  --primary-red: #db143c;
  --grey-transparent: #80808080;
  --primary-green: #386641;
  font-size: 62.5%;
}

body {
  min-height: 100vh;
  font-family: iranyekan, "sans-serif";
  font-size: 1.4rem;
}

.disable-scroll {
  touch-action: none;
  overflow: hidden;
}

.btn {
  cursor: pointer;
  color: var(--primary-color-light);
  -webkit-user-select: none;
  user-select: none;
  border: 1px solid var(--primary-color-light);
  background-color: var(--primary-color);
  transform-style: preserve-3d;
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  padding: 1.1em;
  font-family: inherit;
  font-size: 1.2rem;
  transition: transform .15s ease-out, background .15s ease-out;
  display: flex;
  position: relative;
  -webkit-appearance: none !important;
  -webkit-tap-highlight-color: #0000 !important;
  outline: none !important;
}

.btn:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary-color-dark);
  border-radius: inherit;
  transition: transform .15s ease-out, box-shadow .15s ease-out;
  position: absolute;
  inset: 0;
  transform: translate3d(0, .6rem, -1em);
}

.btn:active {
  background-color: var(--primary-color-dark);
  transform: translate(0, .6rem);
}

.btn:active:before {
  transform: translate3d(0, 0, -1em);
}

.btn--circle {
  border-radius: 50%;
  padding: 1.3rem 1.5rem;
  font-size: 1.6rem;
}

.btn--success {
  background-color: var(--primary-green);
  font-size: 1.6rem;
}

.btn--danger {
  background-color: var(--primary-red);
  font-size: 1.6rem;
}

.page {
  width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  text-align: center;
  border: none;
}

thead tr {
  background-color: var(--primary-color);
}

th:first-child, th:last-child, td:first-child, td:last-child {
  padding: 1rem 1.5rem;
}

th {
  color: var(--primary-color-light);
  padding: 1rem .5rem;
  font-size: 2rem;
}

td {
  padding: 2rem .5rem;
}

tbody tr:nth-child(2n+1) {
  background-color: #fff;
}

tbody tr:nth-child(2n) {
  background-color: var(--primary-color-light);
}

.configs__ISP-head {
  width: 100%;
}

.configs__name {
  font-family: Arial, Helvetica, sans-serif;
}

.configs__ISP-container {
  flex-flow: column wrap;
  align-items: center;
  gap: .8rem;
  display: flex;
}

.configs__ISP-item, .configs__ISP-add {
  width: 100%;
}

.configs__ISP-item--animation {
  animation: .5s scale-up-items;
}

.loading-table {
  color: var(--primary-color);
  text-align: center;
  margin-top: 5rem;
  font-size: 5rem;
}

.loading-table--hide {
  display: none;
}

.reload-table {
  margin: 5rem auto;
  font-size: 2rem;
  display: none;
}

.reload-table--show {
  display: flex;
}

@keyframes scale-up-items {
  from {
    scale: 0;
  }

  to {
    scale: 1;
  }
}

@media only screen and (min-width: 37.5em) {
  .configs__ISP-container {
    flex-flow: wrap;
    gap: .8rem;
  }

  .configs__ISP-item, .configs__ISP-add {
    width: calc(50% - .8rem);
  }
}

@media only screen and (min-width: 48em) {
  .btn {
    font-size: 1.4rem;
  }

  .configs__ISP-container {
    gap: 1rem;
  }

  .configs__ISP-item, .configs__ISP-add {
    width: calc(33.33% - 1rem);
  }
}

@media only screen and (min-width: 62em) {
  body {
    font-size: 1.6rem;
  }

  .page {
    width: 90%;
    max-width: 140rem;
    margin: 0 auto;
  }

  table {
    border-radius: 20px 20px 0 0;
    margin-top: 5rem;
    overflow: hidden;
  }

  td, th {
    padding: 2rem !important;
  }

  th {
    font-size: 2.7rem;
  }

  .configs__ISP-item, .configs__ISP-add {
    width: calc(25% - 1rem);
  }
}

@media only screen and (min-width: 75em) {
  .page {
    width: 80%;
    max-width: 140rem;
    margin: 0 auto;
  }

  .configs__ISP-item, .configs__ISP-add {
    width: calc(20% - 1rem);
  }
}

/*# sourceMappingURL=index.b2625c6b.css.map */
