/* Affixed Vertical Menu - https://codepen.io/nayanrajput/pen/mdJBLVo */
body{
	position: relative; /* required */
}
.list-group{
    position: sticky; /* Supported in latest version of Chrome, Firefox, Safari, Opera and Edge browsers */
    top: 200px;
    padding-bottom: 1.5rem;
}


/* Remove borders from vertical menu */
.list-group-item {
  border: none;
  padding-left: 0;
}

#random {
  padding-top: 0rem;
}

.last-padding {
  padding-bottom: 80px;
}

/* FAQ Accordion - https://codepen.io/kathykato/pen/MoZJom/ */
@import url('https://fonts.googleapis.com/css?family=Hind:300,400');

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


.accordion a:not(#email) {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  padding: 1rem 3rem 1rem 0rem;
  color: grey;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid #e5e5e5;
}

.accordion a:not(#email):hover,
.accordion a:not(#email):hover::after {
  cursor: pointer;
  color: #e43e54;
}

/* .accordion a:not(#email):hover::after {
  border: 1px solid #e43e54;
} */

.accordion a:not(#email).active {
  color: #e43e54;
  border-bottom: 1px solid #e43e54;
}

.accordion a:not(#email)::after {
  content: '+';
  font-weight: 800;
  position: absolute;
  float: right;
  right: 1rem;
  font-size: 1.5rem;
  color: #7288a2;
  padding: 5px;
  padding-top: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  background: no-repeat;
}

.accordion a:not(#email).active::after {
  /* font-family: 'Ionicons'; */
  content: '−';
  color: #e43e54;
}

.accordion .content {
  opacity: 0;
  padding: 0 1rem;
  max-height: 0;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
  clear: both;
  -webkit-transition: all 0.2s ease 0.15s;
  -o-transition: all 0.2s ease 0.15s;
  transition: all 0.2s ease 0.15s;
}

.accordion .content p {
  font-size: 1rem;
  font-weight: 300;
}

.accordion .content.active {
  opacity: 1;
  padding: 1rem;
  max-height: 100%;
  -webkit-transition: all 0.35s ease 0.15s;
  -o-transition: all 0.35s ease 0.15s;
  transition: all 0.35s ease 0.15s;
}