body {
  overflow: overlay;
}
.main-section {
  padding-bottom: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: var(--header-level);
  height: 50px;
  padding: 0 30px;
  background-color: var(--white-color);
}
header .left {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .left > img {
  width: 16px;
}

section.main_table {
  min-height: 100vh;
  padding-top: 50px;
  background-color: var(--white-color);
}
@media screen and (max-width: 576px) {
  section.main_table {
    padding: 50px 20px 0;
  }
}
section.main_table .tabulator-header {
  border-bottom-color: #e1e1e1;
}
@media screen and (max-width: 1024px) {
  section.main_table .tabulator-header {
    border-bottom-color: transparent;
    border-bottom-color: var(--white-color);
  }
}
section.main_table .tabulator-header .tabulator-col {
  border-color: #e1e1e1;
}
@media screen and (max-width: 1024px) {
  section.main_table .tabulator-header .tabulator-col {
    background-color: white;
    border-color: transparent;
  }
}
section.main_table .tabulator-header .tabulator-col .tabulator-col-content {
  padding: 5px 12px;
}
section.main_table .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
  font-size: 12px;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  section.main_table .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {
    color: #aaaaaa;
  }
}
section.main_table .tabulator-table .tabulator-row {
  background-color: var(--white-color);
  border-bottom: 1px solid #e1e1e1;
}
@media screen and (max-width: 1024px) {
  section.main_table .tabulator-table .tabulator-row {
    border-color: transparent;
  }
}
section.main_table .tabulator-table .tabulator-row:hover .tabulator-cell {
  background-color: #eaeff3;
  /* border-right-color: #e1e1e1; */
}
@media screen and (max-width: 1024px) {
  section.main_table .tabulator-table .tabulator-row:hover .tabulator-cell {
    border-right-color: #eaeff3;
  }
}
section.main_table .tabulator-table .tabulator-row .tabulator-cell {
  padding: 8px 10px;
  font-size: 14px;
  border-right-color: #e1e1e1;
  border-bottom: unset;
  white-space: pre-wrap;
  background-color: #f7f9fb;
}
@media screen and (max-width: 1024px) {
  section.main_table .tabulator-table .tabulator-row .tabulator-cell {
    border-right-color: #f7f9fb;
  }
}
@media screen and (max-width: 576px) {
  section.main_table .tabulator-table .tabulator-row .tabulator-cell {
    border-right-color: #f7f9fb;
    margin-bottom: 7px;
  }
  section.main_table .tabulator-table .tabulator-row:last-child .tabulator-cell {
    margin-bottom: 0;
  }
}
section.main_table .tabulator-table .tabulator-row .tabulator-cell:first-child {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white-color);
  white-space: unset;
  border-bottom-left-radius: 4px;
}
@media screen and (max-width: 1024px) {
  section.main_table .tabulator-table .tabulator-row .tabulator-cell:first-child {
    background-color: #f7f9fb;
  }
}
@media screen and (max-width: 576px) {
  section.main_table .tabulator-table .tabulator-row .tabulator-cell:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }
  section.main_table .tabulator-table .tabulator-row .tabulator-cell:nth-last-of-type(2) {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
  }
}
section.main_table .tabulator-table .tabulator-row .tabulator-cell:nth-child(2),
section.main_table .tabulator-table .tabulator-row .tabulator-cell:nth-child(3) {
  white-space: unset;
}
section.main_table .tabulator-table .tabulator-row:hover .tabulator-cell:first-child {
  background-color: #eaeff3;
}
section.main_table .tabulator-table .tabulator-row.tabulator-selected .tabulator-cell {
  background-color: var(--bright-blue-color);
  color: var(--white-color);
}
section.main_table .tabulator-table .tabulator-row.tabulator-selected .tabulator-cell:first-child {
  background-color: var(--bright-blue-color);
}
section.main_table .image {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.main_table .image img {
  height: 60px;
}
@media screen and (max-width: 576px) {
  section.main_table .image img {
    height: 40px;
  }
}
section.main_table button {
  padding: 4px 12px;
  color: var(--bright-blue-color);
  border: 1px solid var(--bright-blue-color);
  border-radius: 4px;
  background-color: white;
}
section.main_table button:hover {
  cursor: pointer;
}

section.quotation {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 8px 30px;
  min-height: 46px;
  background-color: #eaeff3;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(80px);
  transition: transform 0.4s ease;
}
section.quotation.active {
  transform: translateY(0);
}
section.quotation .contain {
  display: flex;
  gap: 8px;
  flex-grow: 1;
}
section.quotation .contain .item {
  background-color: white;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
}
@media screen and (max-width: 1024px) {
  section.quotation .contain .item {
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 18px;
    border-color: transparent;
  }
}
@media screen and (max-width: 576px) {
  section.quotation .contain .item {
    width: 40px;
    height: 40px;
    gap: 4px;
  }
}
section.quotation .contain .item img {
  height: 20px;
}
@media screen and (max-width: 1024px) {
  section.quotation .contain .item img {
  }
}
section.quotation .contain .item .text {
  font-size: 10px;
  line-height: 20px;
}
@media screen and (max-width: 1024px) {
  section.quotation .contain .item .text {
    display: none;
  }
}
section.quotation .contain .item svg {
}
@media screen and (max-width: 1024px) {
  section.quotation .contain .item svg {
    display: none;
  }
}
section.quotation .action {
}
@media screen and (max-width: 576px) {
  section.quotation .action {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}
section.quotation .action button {
  padding: 3px 16px;
  border: 1px solid #666666;
  border-radius: 4px;
  font-size: 14px;
  line-height: 14px;
}
@media screen and (max-width: 576px) {
  section.quotation .action button {
    font-size: 12px;
  }
}
section.quotation .action button:hover {
  cursor: pointer;
}
section.quotation .action button.desktop_version {
  padding: 4px 12px;
  color: white;
  border-color: var(--bright-blue-color);
  background-color: var(--bright-blue-color);
}
@media screen and (max-width: 576px) {
  section.quotation .action button.desktop_version {
    display: none;
  }
}
section.quotation .action button.mobile_version {
  display: none;
  padding: 4px 12px;
  color: white;
  border-color: var(--bright-blue-color);
  background-color: var(--bright-blue-color);
}
@media screen and (max-width: 576px) {
  section.quotation .action button.mobile_version {
    display: inline-block;
  }
}
@media screen and (max-width: 576px) {
}
