.installment-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.installment-item {
  cursor: pointer;
}
.installment-item .check-mark {
  position: relative;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s ease-in-out;
}
.installment-item img {
  height: 60px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.installment-item input:checked ~ .check-mark {
  border-color: #2D52A0;
}
.installment-item input:checked ~ .check-mark::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  right: -6px;
  top: -6px;
  background-color: #2D52A0;
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.33268 2.5L3.74935 7.08333L1.66602 5" stroke="white" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 100%;
}
.installment-item:hover .check-mark {
  border-color: #2D52A0;
}

.table-installment td {
  width: 20%;
  text-align: center;
  padding: 8px 12px;
  height: 60px;
  vertical-align: middle;
}
.table-installment td:nth-child(1) {
  text-align: left;
  text-wrap: pretty;
}

.btn-cart-empty {
  font-weight: 500;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 8px 24px;
  border-radius: 12px;
  background-color: #2D52A0;
  color: #fff;
  transition: 0.15s ease-in-out;
}
.btn-cart-empty:hover {
  background: #203A72;
}

@media (max-width: 1024px) {
  .installment-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .installment-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .installment-item img {
    height: 40px;
  }
  .section-layout {
    padding: 16px 10px !important;
  }
  .table-installment {
    width: 1000px;
  }
}
