
.zionLink {
  color: #FFFFFF !important;
  border-color: #F05F40;
}

.zionLink:hover, .zionLink:focus, .zionLink:active {
  color: #fff;
  background-color: #ee4b28 !important;
}

.zionLink:active, .zionLink:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(240, 95, 64, 0.5) !important;
  box-shadow: 0 0 0 0.2rem rgba(240, 95, 64, 0.5) !important;
}


/* Q&A Collapsible Set Styles */

.faqcollapsible {
  background-color: rgb(96, 134, 169);
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: rounded;
  border-color: white;
  text-align: left;
  outline: seashell;
  font-size: 15px;
}

.faqactive, .faqcollapsible:hover {
  background-color: rgb(104, 140, 173);
}

.faqcollapsible:after {
  content: '\002B';
  color: rgb(57, 57, 95);
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.faqactive:after {
  content: "\2212";
}

.faqcontent {
  padding: 0 18px;
  text-align: left;
  color:rgb(19, 83, 123);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}

