/*============ COMPARE-PAGE ============*/
.page-compare-list {
  margin-bottom: 80px;
  position: relative;
}
.page-compare-list .title-page {
  margin-bottom: 10px;
}
.page-compare-list .page-compare-list-body {
  overflow: auto;
  /* scroll-behavior: smooth; */
}
.page-compare-list .page-compare-list-body::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: #C4C4C4;
}
.page-compare-list .page-compare-list-body::-webkit-scrollbar-thumb {
  background-color: #C4C4C4;
  border-radius: 9em;
  box-shadow: inset 1px 1px 10px #211f20;
}
.page-compare-list .page-compare-list-body .page-compare-table {
  max-width: 100%;
  width: 100%;
  height: 100%;
}
.page-compare-list .page-compare-list-body .page-compare-table tbody td {
  min-width: 260px;
  max-width: 260px;
  width: 100%;
}
.page-compare-list .page-compare-list-body .page-compare-table tbody .products-row .product-item {
}
.page-compare-list .page-compare-list-body .page-compare-table tbody .products-row .product-item li {
  height: 100%;
}
.page-compare-list .page-compare-list-body .page-compare-table tbody .attributes-row .attribute-name {
  text-align: center;
  color: #ffffff;
  padding: 15px;
  border-radius: 5px;
  font-weight: 700;
}
.page-compare-list .page-compare-list-body .page-compare-table tbody .attributes-row .attribute-value {
  text-align: center;
  border-radius: 5px;
  font-weight: 400;
  padding: 15px;
}
.page-compare-list .page-compare-list-body .page-compare-table tbody .attributes-row .attribute-value ins {
  text-decoration: none;
}
.page-compare-list .page-compare-list-body .page-compare-table tbody .attributes-row:nth-last-child(even) .attribute-name {
}
.page-compare-list .page-compare-list-body .page-compare-table tbody .attributes-row:nth-last-child(even) .attribute-value {
  background: #000000;
}
.page-compare-list .page-compare-list-body .page-compare-table tbody .products-buttons-delete-row .product-button-delete {
}
.page-compare-list .page-compare-list-body .page-compare-table tbody .products-buttons-delete-row .product-button-delete .compare-delete-item {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  background: none;
  color: #ffffff;
}
.page-compare-list .page-compare-list-body .page-compare-table tbody .products-buttons-delete-row .product-button-delete .compare-delete-item .icon {
  margin-right: 5px;
  display: flex;
  align-items: center;
  font-weight: 400;
}
.page-compare-list .page-compare-list-body .page-compare-table tbody .products-buttons-delete-row .product-button-delete .compare-delete-item:hover {
  color: #404040;
}
.page-compare-list .page-compare-list-body .page-compare-table tbody .products-buttons-delete-row .product-button-delete .compare-delete-item:hover .icon svg path {
  fill: #404040;
}
.page-compare-list .navigations {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 120px;
  top: 50%;
  right: calc((100% - 1395px)/2);
  transform: translateY(-50%);
}
.page-compare-list .navigations button {
  width: 50px;
  height: 50px;
  background: #211f20;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease
}
.page-compare-list .navigations button:hover {
  background: #c52b33;
}
@media (max-width: 1800px) {
  .page-compare-list .page-compare-list-body {
    width: calc(100% - 60px);
  }
  .page-compare-list .navigations {
    background: #ffffff;
    z-index: 10;
    right: 10px;
  }
}
@media (max-width: 991px) {
  .page-compare-list {
    margin-bottom: 40px;
  }
  .page-compare-list .page-compare-list-body .page-compare-table tbody td {
    min-width: 230px;
    max-width: 230px;
  }
  .page-compare-list .page-compare-list-body .page-compare-table tbody .attributes-row .attribute-value {
    border-left: 15px solid #ffffff;
  }
  .page-compare-list .page-compare-list-body .page-compare-table tbody .products-row .product-item {
    border-bottom: 20px solid #ffffff;
    border-left: 15px solid #ffffff;
  }
  .page-compare-list .navigations {
    display: none;
  }
  .page-compare-list .page-compare-list-body {
    width: 100%;
  }
}
#compare-modal {
  position: fixed;
  right: 0;
  top: 70px;
  background-color: #fff;
  padding: 20px;
  border: 1px solid #211f20;
  color: #211f20;
  transition: all 0.3s ease-in;
  transform: translateX(400px);
}
#compare-modal.active {
  transform: translateX(0);
  z-index: 10000;
}