.table-responsive {
  width: 100%;
  max-height: 354px;
  position: relative;
  overflow: auto;
}

.table-responsive::-webkit-scrollbar {
  height: 2px;
}

/** (Start) Table Size **/
.table-size {
  --bs-table-bg: var(--body-color);
  --bs-table-color: #808080;
  --bs-table-border-color: var(--item-color);
  width: 100%;
  min-width: 400px;
  margin-bottom: 0;
}

.table-size > :not(caption) > * > * {
  font-weight: 400;
  line-height: normal;
  padding: .3rem .5rem;
  text-transform: uppercase;
}

.table-size > :not(caption) > * > *:not(:first-child) {
  text-align: center;
}

.table-size > :not(caption) > * > *:first-child {
  padding-left: 2.5rem;
}

.table-size > :not(caption) > * > *:last-child {
  padding-right: .25rem;
}

.table-size > :not(tbody) > * > * {
  border: initial;
}

.table-size > thead {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1040;
}

.table-size > thead > * > * {
  font-weight: 400;
  color: var(--accent);
  background-color: var(--item-color);
}
/** (End) Table Size **/

/** (Start) Modal Size **/

.modal-guide .modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-error .modal-body {
  flex-direction: column;
}

.modal-error .modal-title {
  margin-bottom: 4rem;
}

.modal-error .modal-text {
  margin-bottom: 5rem;
}

.modal-error .error-text {
  color: #FF3232;
}

.modal-error .modal-text p {
  margin: 0;
}

.modal-error .modal-text p:not(:last-child) {
  margin-bottom: 1.25rem;
}

/** (End) Modal Size **/

@media (max-width: 1200px) {
  
  .table-size > :not(caption) > * > *:first-child {
    padding-left: 1.25rem;
  }

  .table-size > :not(caption) > * > *:last-child {
    padding-right: 1.25rem;
  }

}