/* Details and Summary 
--------------------------------------------- */
.is-style-moe-style-1-details {
  background: transparent;
  border: 2px solid var(--wp--preset--color--primary-light);
  border-radius: 6px;
}

.is-style-moe-style-1-details > summary {
  list-style-type: none;
  outline: none;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 5px 5px 0 0;
  transition: margin 150ms ease-out;
  //display: flex;
  //flex-direction: row-reverse;
  //justify-content: space-between;
  //align-items: center;
  position: relative;
}

.is-style-moe-style-1-details[open] summary {
  margin-bottom: 5px;
  background: var(--wp--preset--color--primary-lighter);
  color: var(--wp--preset--color--text-primary);
}

.is-style-moe-style-1-details>summary::-webkit-details-marker {
  display: none;
}

/*
.is-style-moe-style-1-details>summary::before {
  content: '+';
  font-size: 24px;
  width: 25px;
  height: 25px;
  background: var(--wp--preset--color--primary-light-dark);
  text-align: center;
  line-height: 25px;
  border-radius: 50%;
  color: var(--wp--preset--color--primary);
  transition: 300ms;
}

.is-style-moe-style-1-details[open]>summary::before {
  content: '-';
  font-size: 34px;
  line-height: 18px;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--base);
}

.is-style-moe-style-1-details > summary::hover:before {
  background: var(--wp--preset--color--primary-light-dark);
}

*/
.is-style-moe-style-1-details>summary:before, 
.is-style-moe-style-1-details>summary:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 16px;
  height: 2px;
  background-color: var(--wp--preset--color--primary);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0.7;
}

.is-style-moe-style-1-details>summary::after {
  -webkit-transform: rotate(90deg) translateY(-50%);
  -ms-transform: rotate(90deg) translateY(-50%);
  transform: rotate(90deg) translateY(-50%);
  right: 16px;
  width: 16px;
}

.is-style-moe-style-1-details[open]>summary::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.is-style-moe-style-1-details[open]>summary::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}