body {
  /* color: #fff; */
  /* font-family: system-ui; */
  font-size: 1em;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.tooltip {
  color: -webkit-link;
  cursor: pointer;
  text-decoration: underline;
}

/* .master-box {
    padding: 0 15%;
  } */

@media (min-width:320px) {
  .master-box {
    padding: 0 0;
  }

  #myBtnContainer {
    flex-direction: column;
    align-items: center;
    margin: 15px;
    letter-spacing: 5px;
  }

  .btn {
    margin: 5px 0;
    width: 100%;
  }

  #myUL li .text-check{
    padding: 10px;
  }
}
@media (min-width:801px)  {
  .master-box {
    padding: 0 0;
  }

  #myBtnContainer {
    flex-direction: column;
    align-items: center;

    margin: 15px;
    letter-spacing: 5px;
  }

  .btn {
    margin: 5px 0;
    width: 100%;
  }
}
.Container-answer {
  border: 1px solid #AEBFFF;
  border-radius: 6px;
  padding: 1.5%;
}

.faq-header {
  /* background: #303f94;
    background: #303f94; */
  /* background: -webkit-linear-gradient(to right, #303f94, #4b558a);
    background: linear-gradient(to right, #303f94, #4b558a); */
  padding: 0 30px 10px 0;
  text-align: center;
  color: black;
}

h1.title {
  font-size: 2.1em;
  letter-spacing: -1px;
  font-weight: 400;
}

h4.subtitle {
  font-size: 1.05em;
  letter-spacing: -1px;
  font-weight: 400;
}

h4.title {
  color: black;
  font-size: 1.6em;
  letter-spacing: -1px;
  font-weight: 400;
}

#myInput {
  width: 100%;
  margin: 15px 0 15px 0;
}

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

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 8px 15px 8px 0px;
  background-color: #355FA4;
  color: white;
  cursor: pointer;
  font-size: 12.0pt;
  line-height: 115%;
  font-family: Roboto;
  width: auto;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .2);
}

.filter-search {
  text-check: center;
  position: relative;
  width: 50%;
  margin-left: 25%;
  margin-right: 25%;

}

img.course-content__filter-field-search--icon {
  position: absolute;
  left: 2%;
  margin: 0 0 0 12px;
  top: 50%;
  transform: translate(-50%, -50%);
}

.search-input {
  border: 1px solid #AEBFFF;
  border-radius: 6px;
  height: 44px;
  padding: 13px 36px;
  width: 100%;
  font-size: 12px;
  color: #919191;
}

.search-input:focus-visible {
  outline: none;
}

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

.item {
  display: flex;
  margin-left: 2em;
}

.item img {
  width: 1.938rem;
  height: 1.938rem;
}

.contact {
  display: flex;
  justify-content: flex-end;
}

.btn.active {
  padding: 8px 15px 8px 15px;
  background: #5e91ff;
  color: white;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3), 0 3px 5px 0 rgba(0, 0, 0, 0.3);
}

.btn::before {
  content: '\00bb   ';
  font-size: 18px;
  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 .text-check {
  cursor: pointer;
  -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: 1px solid lightgrey;
  margin-top: -1px;
  padding: 10px 0px 10px 0px;
  margin: 0;
  text-decoration: none;
  font-size: 16px;
  color: #03264D;
  display: block;
}

#myUL li .text-check:hover:not(.header) {
  background-color: #a6c7fd;
  border: 1px solid grey;
}

.filterDiv {
  border: 1px solid #8BA6F6;
  border-radius: 6px;
  display: none;
  /* Hidden by default */
  transition: all 0.3s;
  margin-bottom: 4px;
  background-color: white;
}

.show {
  display: block;
}

.accordion-thumb {
  display: flex;
  padding: 10px;
  font-weight: bold;
  background: #ECF1FF;
  border-radius: 6px;
  align-items: center;
}

/* Active answer */
.filterDiv.is-active .accordion-thumb::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.accordion-thumb::before {
  content: '';
  display: inline-block;
  height: 7px;
  width: 7px;
  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;
}

.accordion-panel {
  padding: 10px 20px 10px 20px;
  display: none;
  color: #021b39;
  font-size: 14px;
  font-weight: normal;
  background: white;
}

.course-content__filter-field-search--btn-submit {
  border-radius: 50%;
  background-color: var(--color-blue-2);
  color: var(--color-white);
  position: absolute;
  /* top: 11px; */
  /* right: 12px; */
  border: 1px solid var(--color-blue-2);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 10px;
  text-check: center;
  position: absolute;
  right: 0%;
  margin: 0 auto;
  top: 50%;
  transform: translate(-50%, -50%);

}