/* Royal Accordion ------------------------------------------------- */
.royalaccwrapper {
  padding: 10px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px 0px;
  overflow: hidden;
}

.royalaccwrapper p {
  margin: 5px 0;
}

.royalaccwrapper .royalaccitemheading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  margin: 0px 0px 10px 0px;
  padding: 10px;
  width: 100%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-sizing: border-box;
  position: relative;  
}

.royalaccitemheading span.ui-accordion-header-icon {
  display: none;
}

.royalaccwrapper h1,
.royalaccwrapper h2,
.royalaccwrapper h3,
.royalaccwrapper h4,
.royalaccwrapper h5,
.royalaccwrapper h6,
.royalaccwrapper div,
.royalaccwrapper span,
.royalaccwrapper p
 {
  padding: 5px;
  margin: 0;
  font-size: 20px;
}

.ui-accordion-header-active .royalaccicon{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.ui-accordion-header-collapsed .royalaccicon{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.ui-accordion-header-active .style1::before{
  content: "\f068";
}
.ui-accordion-header-collapsed .style1::before{
  content: "\f067";
}

.ui-accordion-header-active .style2::before{
  content: "\f056";
}
.ui-accordion-header-collapsed .style2::before{
  content: "\f055";
}

.ui-accordion-header-active .style11::before{
  content: "\f105";
}
.ui-accordion-header-collapsed .style11::before{
  content: "\f107";
}

.ui-accordion-header-active .style12::before{
  content: "\f105";
  display: inline-block;
  transition: all 1s;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);  
}
.ui-accordion-header-collapsed .style12::before{
  content: "\f105";
  transition: all 1s;
}



.royalaccitem {
  float: left;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.royalaccitem.open {
  border-radius: 5px;
  margin-bottom: 10px;
}

.royalaccitem:last-child.open {
  margin-bottom: 0;
}

.royalaccitem:last-child .royalaccitemheading {
  margin: 0px;
}

.close .royalaccitemcontent {
  height: 0px;
  transition: height 1s ease-out;
  -webkit-transform: scaleY(0);
  -o-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  float: left;
  display: block;
}

.open .royalaccitemcontent {
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  width: 100%;
  display: block;
  -webkit-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transform-origin: top;
  -o-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  -o-transition: -o-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  box-sizing: border-box;
  overflow: hidden;
}

.open .royalaccitemheading {
  margin: 0px;
  -webkit-border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-topright: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-bottomright: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  background: #bdc3c7;
  color: #000;
}
/* royalaccordion ------------------------------------------------- */
