.loading {
    position: fixed;
    top: 0; right: 0;
    bottom: 0; left: 0;
    /* background: #fff; */
    z-index: 1000;
}
.loader {
    left: 50%;
    margin-left: -4em;
    font-size: 10px;
    border: .8em solid rgba(218, 219, 223, 1);
    border-left: .8em solid #336699;
    animation: spin 1.1s infinite linear;
}
.loader, .loader:after {
    border-radius: 50%;
    width: 8em;
    height: 8em;
    display: block;
    position: absolute;
    top: 40%;
    margin-top: -4.05em;
}

.legal p{
  color: #77838f !important
}

.legal li{
  color: #77838f !important
}
.legal strong{
  color: #1e2022 !important
}

.legal h2{
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}

.dash-menu li{
  margin: 5px;
}

#faqSection {
  padding: 60px 0;
  overflow: hidden;
}

#faqSection #faq-list {
  padding: 0;
  list-style: none;
}

#faqSection #faq-list li {
  border-bottom: 1px solid #ebebeb;
}

#faqSection #faq-list a {
  padding: 22px 0;
  display: block;
  position: relative;
  /* font-family: "Montserrat", sans-serif; */
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  padding-right: 20px;
}

#faqSection #faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 20px;
}

#faqSection #faq-list p {
  margin-bottom: 20px;
}

#faqSection #faq-list a.collapse {
  color: #336699;
}

#faqSection #faq-list a.collapsed {
  color: #77838f;
}

#faqSection #faq-list a.collapsed i::before {
  content: "\f2c7" !important;
}

.accordion a {
  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 1rem;
  /* color: #646769; */
  /* font-size: 1.15rem; */
  font-weight: 400;
  border-bottom: 1px solid #e5e5e5;
}
.accordion a:hover,
.accordion a:hover::after {
  cursor: pointer;
  color: #336699;
}
.accordion a:hover::after {
  /* border: 1px solid #336699; */
}
.accordion a.active {
  color: #336699;
  border-bottom: 1px solid #336699;
}
.accordion a::after {
  font-family: 'Ionicons';
  content: '\f218';
  position: absolute;
  float: right;
  right: 1rem;
  font-size: 1rem;
  /* color: #646769; */
  padding: 5px;
  width: 30px;
  height: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  /* border: 1px solid #646769; */
  text-align: center;
}
.accordion a.active::after {
  font-family: 'Ionicons';
  content: '\f209';
  color: #336699;
  /* border: 1px solid #336699; */
}
.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;
}
@keyframes spin {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4a9933;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  stroke-width: 5;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #4a9933;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {

  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 50px #4a9933;
  }
}

#search-by-ref {
  height: 50px;
}