

/* =======================================
    ACCORDION-START
  ======================================== */

.accordion-border {
  border: 1px solid #DDD;
}

.accordion-top-border {
  border: 1px solid #DDD;
  border-right: 0;
  border-left: 0;
}

.accordion-top-border-dashed {
  border: 1px dashed #DDD;
  border-right: 0;
  border-left: 0;
}

.accordion-top-border-dotted {
  border: 1px dotted #DDD;
  border-right: 0;
  border-left: 0;
}

.accordion-top-border-dotted > .panel {
  border-bottom: 1px dotted #DDD;
}

.accordion-top-border-dashed > .panel {
  border-bottom: 1px dashed #DDD;
}

.acc-content-wrap {
  border-bottom: 1px dotted #DDD;
  overflow: hidden;
}

.acc-content-wrap:first-child {
  border-top: 1px dotted #DDD;
}

.acc-btn {
  position: relative;
  cursor: pointer;
}

.acc-title, .acc-title-sm {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  padding: 15px;
  padding-right: 40px;
}

.acc-title-sm {
  padding-top: 6px;
  padding-bottom: 6px;
  font-weight: 400;
  padding-right: 15px;
}

/* .active-title::after {
  content: '\25E2';
  position: absolute;
  right: 14px;
  top: 16px;
  font-size: .7rem;
  font-weight: 600;
  color: #333;
  height: 12px;
  width: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background-color: #EEE;
  transform: rotate(225deg);
} */


.acc-title::after,
.acc-title-sm::after {
  content: '\25E2';
  position: absolute;
  right: 14px;
  top: 7px;
  font-size: .7rem;
  font-weight: 600;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
  transition: transform 300ms ease;
}

.active-title.acc-title::after {
  transform: rotate(225deg);
}

.active-title.acc-title-sm::after {
  transform: rotate(225deg);
}

/* .acc-sm > .active-title::after {
  top: 10px;
}

.acc-title-sm::after {
  top: 10px;
} */

.acc-content {
  height: 0px;
  transition: all 300ms ease;
}

.acc-content ul {
  list-style: none;
}

.acc-content > a > p:hover {
  color: #FF6633 !important;
}

.active-panel{
  height: auto;
  transition: all 300ms ease;
}

.acc-content > p:last-child {
  padding: 15px;
}



.accordion, .toggles {
  cursor: pointer;
  padding: 6px 15px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  background-color: transparent;
  position: relative;
}

.panel {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-bottom: 1px solid #DDD;
}

.panel:last-child {
  border-bottom: 0;
}

.accordion-flat .panel {
  border-bottom: 0;
}

.accordion-dark-border .panel {
  border-bottom: 1px solid #666;
}

.accordion-dark-border .acc-title::after,
.accordion-color .acc-title::after {
  color: #EEE;
}

.grey-bg {
  background-color: #8c8c8c;
}

.orange-bg {
  background-color: #FF8A00;
}

.accordion-grey-border .acc-title::after,
.accordion-color .acc-title::after {
  color: #EEE;
}

/* =======================================
    ACCORDION-END
  ======================================== */
