/* @import url(http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css); */


ol {
  margin-left: 50px;
  list-style-type: decimal;
}

.drop-down-question {
  display: flex;
  /* background: darkgrey; */
  cursor: pointer;
  /* margin: 10px; */
  padding: 10px;
}

.drop-down-question:hover {
  background: darkgrey;
}

.icon_5 {
  display: flex;
  align-items: center;
  width: 15px;
  margin: 0 5px;
  transition: all .3s;
  width: 10px;
}
.icon_5:before {
  /* content: '\f054'; */
  font: 16px 'FontAwesome';
  /* width: 10px; */
}

.drop-down {
  /* height: 100%; */
  /* cursor: pointer; */
  height: 100%;
  /* padding: 10px; */
  transition: height .2s;
  background: lightgrey;
  margin: 5px 0;
}

.drop-down-content {
  height: auto;
  opacity: 0;
  display: none;
  transition: all .5s;
  padding: 20px;
}

.drop-down-click {
  display: block;
  opacity: 1
}


.arrow-rotate {
  transform: rotate(90deg);
}

.close {
  color: red;
}

@media (max-width: 480px) {
  .icon_5 {
    width: 20px;
    margin-left: 0;
    margin-right: 10px;
  }
}
