
.master-box {
  background: transparent;
  width: 95%;
  max-width: 1640px;
  margin: 10% auto 30px;
}

.faq-header {
  padding: 0 10px 10px 0;
  text-align: left;
  color: #1A043F;
}
.master-box .sticky-top {
  margin-top: 37%;
}

.master-box .sticky-top img {
  position: static;
  height: 100%;
}

h1.title {
  font-family: 'Roboto', sans-serif;
  font-size: 50px;
  font-weight: 600;
  color: #1A043F;
}
h2.title {
  font-family: 'Roboto', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #1A043F;
  margin: 35px auto 35px;
}
h3.title {
  font-family: 'Roboto', sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #1A043F;
  margin-bottom: 20px;
}
h4.subtitle {
  font-weight: 200;
}

#myInput {
  width: 100%;
  font-size: 18px;
  padding: 15px 20px 15px 20px;
  border: 1px solid #707070;
  margin: 15px 0 15px 0;
  border-radius: 30px;
  position: relative;
}

.filter-search {
  position: relative;
}

.filter-search .fa-magnifying-glass::before, .filter-search .fa-search::before {
	content: "\f002";
	position: absolute;
	right: 20px;
	top: 60px;
	z-index: 99;
  cursor: pointer;
}

hr.hr-sep {
  width: 80%;
  border-radius: 50%;
}

#myBtnContainer {
  margin: 15px;
  letter-spacing: 5px;
}

/* Style the buttons */
.btn {
  outline: none;
  padding: 8px 15px 8px;
  margin: 10px 0px 10px;
  background-color: #fff;
  color: #1A043F;
  cursor: pointer;
  font-size: 14px;
  width: auto;
  /* box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.2); */
  border-radius: 30px;
  border: solid 2px #474747;
}

.btn:hover {
  background: #4369bb;
  color: white;
  box-shadow: 0 1px 1px 0 rgba(160,160,160,0.3), 0 3px 5px 0 rgba(170,170,170,0.3);
  transition: all 0.2s ease;
}

.btn.active {
  background: #263470;
  color: #fff;
  /* box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3), 0 3px 5px 0 rgba(0, 0, 0, 0.3); */
  border: none;
}

.btn::before {
  content: '\00bb   ';
  font-size: 0;
  opacity: 0;
  transition: 0.4s;
}

.btn.active::before {
  content: '\00bb   ';
  opacity: 1;
  transition: 0.5s;
}

#myUL {
  list-style-type: none;
  width: 100%;
  padding: 0;
  background: rgba(255, 255, 255, 0.01);
}

#myUL li a {
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  border: 0px solid lightgrey;
  margin-top: -1px;
  padding: 10px 0px 10px 0px;
  margin: 0;
  text-decoration: none;
  font-size: 16px; 
  color: #565555;
  display: block;
  border-radius: 30px;
}



#myUL li a:hover:not(.header) {
    background-color: transparent;
    border:0px solid grey;
}

#myUL li span {

  color: #565555;

}


.filterDiv {
  display: none; /* Hidden by default */
  transition: all 0.3s;
  margin-bottom: 10px;
  position: relative;
  background: transparent;
  border-radius: 30px;
  border: 1px solid #C7CDE3;
  padding: 20px;
  cursor: pointer;
}

.filterDiv:hover {
  background-color: #e4ecf9;
  border: 1px solid #C7CDE3;
}

.show {
  display: block;
}


.accordion-thumb {
  font-weight: bold;
  background:transparent;
  border: solid 0px #C7CDE3;
}


.filterDiv.general.show.is-active, .filterDiv.management.show.is-active,  .filterDiv.history.show.is-active, 
.filterDiv.mpayments.show.is-active, .filterDiv.rpayments.show.is-active, .filterDiv.transfers.show.is-active,
.filterDiv.administration.show.is-active, .filterDiv.authorizations.show.is-active, .filterDiv.support.show.is-active
 {
	background: #fff;
}

/* Active answer */
.filterDiv.is-active .accordion-thumb::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.accordion-thumb::before {
	background: #D8DFFF;
	content: '';
	display: inline-block;
	height: 40px;
	width: 40px;
	padding: 10px;
	position: absolute;
	right: 8px;
	border-radius: 50%;
	top: 14px;
}
.accordion-thumb::after {
  content: '';
  display: inline-block;
  height: 16px;
  width: 16px;
  margin-right: 1rem;
  margin-left: .5rem;
  vertical-align: middle;
  border-right: 1px solid;
  border-bottom: 1px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
  position: absolute;
  right: 4px;
  top:24px
}
 
  
  .accordion-panel {
    padding: 10px 20px 10px 0px;
    display: none;
    color: black;
    font-size: 14px;
    font-weight: normal;
    /* background: white; */
    border-radius: 30px;
    width: 90%;
  } 

    ul.accordion-panel  {
      margin-left: 20px;
    }
  
  