/* ===============================
   BUTTON STYLE
================================= */

.av-variations-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff !important;
  background-color: #ff6600 !important;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.av-variations-button:hover {
  background-color: #e65c00 !important;
}

.av-variations-button-arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.av-variations-button[aria-expanded="true"] .av-variations-button-arrow {
  transform: rotate(180deg);
}


/* ===============================
   ACCORDION WRAPPER
================================= */

.av-variations-accordion {
  margin-top: 10px;
  margin-bottom: 20px;
}

.av-variations-content {
  overflow-x: auto;
}


/* ===============================
   FORCE BORDER TABLE STYLE
================================= */

.av-variations-table {
  width: 100% !important;
  border-collapse: collapse !important;
  border: 1px solid #cccccc !important;
  background: #ffffff !important;
}

.av-variations-table thead tr {
  border-bottom: 1px solid #cccccc !important;
}

.av-variations-table th,
.av-variations-table td {
  border: 1px solid #cccccc !important;
  padding: 10px 12px !important;
  text-align: left !important;
  font-size: 14px;
}

.av-variations-table th {
  font-weight: 600 !important;
  background: #f9f9f9 !important;
}

.av-variations-table tbody tr {
  border-bottom: 1px solid #cccccc !important;
}

.av-variations-table tbody tr:last-child td {
  border-bottom: 1px solid #cccccc !important;
}


/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 600px) {

  .av-variations-button {
    width: 100%;
    font-size: 18px;
  }

  .av-variations-table th,
  .av-variations-table td {
    font-size: 13px !important;
    padding: 8px !important;
  }
}


