#playpause {
    display: block;
    position: absolute;
    top: calc(50% - 58px);
    left: calc(50% - 45px);
    width: 90px;
    height: 90px;
    border: 2px solid #fff;
    border-radius: 45px;
}

#video:hover, #playpause:hover {
    cursor: pointer;
}

#playpause.play:after,
#playpause.play::after {
    display: block;
    position: absolute;
    content: '';
    width: 16px;
    left: calc(50% - 8px);

    height: 28px;
    top: calc(50% - 14px);
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;
}

#playpause.paused:after,
#playpause.paused::after {
    display: block;
    position: absolute;
    content: '';
    width: 0;
    left: calc(50% - 4px);
    height: 28px;
    top: calc(50% - 14px);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 15px solid #fff;
}

#questions {
    position: relative;
    max-width: 900px;
    margin: 20px auto 30px auto;
    height: 80px;
    border: none;
}
#video{
    max-width: 900px;
    width: 100%;
}
#current_question {
    background-color: #fff;
    border-radius: 5px;
    padding: 26px 0 25px 85px;
    display: block;
    height: 100%;
    font-weight: 500;
    font-size: 18px;
    color: #6d6e70;
    letter-spacing: 0.025em;
    border: 1px solid #fff;
}

h1.page-title {
    letter-spacing: 0.02em;
    padding-top: 3px;
}

.select-arrow {
    display: none;
}

#current_question .select-arrow {
    display: block;
    position: absolute;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 10px solid #5cc238;
    border-bottom: 0;
    right: 31px;
    top: 37px;
    width: 20px;
    height: 11px;
    z-index: 100;
}

#current_question .select-arrow:after {
    position: absolute;
    content: '';
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 10px solid #fff;
    border-bottom: 0;
    right: -12px;
    top: -13px;
    width: 20px;
    height: 20px;
    z-index: 100;
}

#current_question .question_play {
    display: block;
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 20px;
    background-color: #5cc238;
    padding-top: 4px;
    left: 26px;
    top: 22px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#questions_list {
    z-index: 99;
    position: absolute;
    background-color: #fff;
    width: 100%;
    top: 0;
    border: 1px solid #5cc238;
    border-radius: 5px;
    padding-bottom: 20px;
    padding-left: 0;
}

#questions_list li, #questions_list2 li {
    list-style-type: none;
    position: relative;
    padding: 26px 0 20px 85px;
    height: auto;
    font-size: 18px;
    color: #6d6e70;
    width: 100%;
    letter-spacing: 0.025em;
}

#questions_list2 li a {
  color: #6d6e70;
  text-decoration: none;
}

#questions_list li:hover, #questions_list2 li a:hover {
    color: #5cc238;
}

#questions_list li .question_play,
#questions_list2 li .question_play {
    display: block;
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 20px;
    background-color: #5cc238;
    padding-top: 4px;
    left: 25px;
    top: 21px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#current_question.play .question_play,
#questions_list li.play .question_play,
#questions_list2 li.play .question_play {
    color: #5cc238;
}

#current_question.play .question_play:after,
#current_question.play .question_play::after,
#questions_list li.play .question_play:after, #questions_list2 li.play .question_play:after,
#questions_list li.play .question_play::after, #questions_list2 li.play .question_play::after {
    display: block;
    position: absolute;
    content: '';
    width: 0;
    left: calc(50% - 2px);
    height: 8px;
    top: calc(50% - 7px);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 8px solid #fff;
}

#questions2 {
  position: relative;
  max-width: 900px;
  margin: 120px auto 30px auto;
  min-height: 950px;
  border: none;
}

#questions_list2 {
  z-index: 99;
position: relative;
background-color: #fff;
width: 100%;
top: 0;
border: 1px solid #5cc238;
border-radius: 5px;
padding-bottom: 20px;
padding-left: 0;
}
