#profilePicture,
#profilePicture img {
    position: relative;
    width: 96px;
    height: 96px;
    display: block;
    margin: 10px auto 10px;
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
}

/*
https://digitalfox-tutorials.com/tutorial.php?title=How-to-create-an-FAQ-section-using-javascript-html-and-css
*/

.faqContainer {
    max-width: 640px;
    width: 100%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.faqTitle {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.faq {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 0px;
    border-bottom: thin dotted #d4d4d4;
}

.faq .question {
    cursor: pointer;
    font-size: 1rem;
}

.faq .question::after {
    content: "\2304";
    display: inline-block;
    position: absolute;
    transform: translateY(-10px);
    right: 0;
    font-size: 1rem;
    transition: transform .2s ease;
    color: #999;
}

.faq .question.active::after {
    transform: translateY(0px) rotate(-180deg);
}

.faq .answer {
    max-height: 0;
    transition: max-height .1s ease;
    overflow: hidden;
    padding-top: 10px;
    padding-left: 10px;
    line-height: 26px;
    color: #666;
    font-size: 0.9rem;
}

.faq .answer img {
    width: 200px;
    float: left;
    padding-right: 20px;
    display: inline-block;
    margin-top: 10px;
}

.faq .answer ol {
    padding-left: 20px;
}

.faq .answer ol li {
    margin-bottom: 10px;
}

.language {
  width: 55px;
  height: 30px;
  font-size: 14px;
  line-height: 1;
  margin: 1em 0;
}

.language__container--left,
.language__container--right {
  position: relative;
  float: left;
  width: 55px;
  height: 30px;
  padding: 5px;
}

.language__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 55px;
  font-size: 0.75rem;
  border: 1px solid #ccc;
  padding: 4px;
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: 7px 7px;
  background-size: 14px;
  text-align: center;
}

.language__container--left .language__label {
  border-radius: 8px 0 0 8px;
}

.language__container--right .language__label {
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.language__control:hover + .language__label,
.language__control:focus + .language__label {
  background-color: #eee;
}

.language__control:checked + .language__label {
  background-color: #000;
  color: #fff;
}

.language__control:focus + .language__label,
.language__control:checked:focus + .language__label {
  z-index: 2;
  outline: 2px solid #85bffd;
  box-shadow: 0 0 8px #85bffd;
}