* {
  box-sizing: border-box;
}

#ffw-main-wrapper .ffw-main-wrapper-shortcode {
  width: 90%;
}
#ffw-main-wrapper details {
  width: 100%;
  min-height: 5px;
  padding: 15px 25px 15px 25px;
  margin: 0 auto;
  position: relative;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  box-sizing: border-box;
  transition: all 0.3s;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.12);
}
#ffw-main-wrapper details p {
  font-weight: 300;
}
#ffw-main-wrapper details + details {
  margin-top: 20px;
}
#ffw-main-wrapper details[open] {
  min-height: 50px;
  background-color: #f6f7f8;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
}
#ffw-main-wrapper details[open] .control-icon-close {
  display: initial;
  transition: 0.3s ease;
}
#ffw-main-wrapper details[open] .control-icon-expand {
  display: none;
}
#ffw-main-wrapper summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
}
#ffw-main-wrapper summary::-webkit-details-marker {
  display: none;
}
#ffw-main-wrapper summary:focus {
  outline: none;
}
#ffw-main-wrapper summary .control-icon {
  fill: #7f54b3;
  transition: 0.3s ease;
}
#ffw-main-wrapper summary .control-icon-close {
  display: none;
}
#ffw-main-wrapper .ffw-is-rtl {
  direction: rtl;
  text-align: right;
}