.question-container {
  width: 100%;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.col-left {
  width: calc(18% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.col-center {
  width: 64%;
}

.col-center .main-btns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.col-center .main-btns.not-started .sound-btn {
  background-color: #445c95;
  transition: 0.3s;
}

.col-center .main-btns.not-started .sound-btn:hover {
  background-color: #0e2e7c;
  cursor: pointer;
}

.col-center .main-btns.not-started .record-btn {
  background-color: #c2c7d2;
}

.col-center .main-btns.locked .sound-btn {
  background-color: #c2c7d2;
}

.col-center .main-btns.locked .record-btn {
  background-color: #c2c7d2;
}

.col-center .main-btns.sound-in-progress .sound-btn {
  background-color: #445c95;
  z-index: 1;
}

.col-center .main-btns.sound-in-progress .record-btn {
  background-color: #c2c7d2;
}

.col-center .main-btns.record-in-progress .sound-btn {
  background-color: #445c95;
}

.col-center .main-btns.record-in-progress .record-btn {
  background-color: #fa8202;
}

.col-center .main-btns.record-in-progress .record-triangle-down:before {
  border-color: transparent transparent #fa8202 transparent;
}

.col-center .main-btns.record-in-progress .record-triangle-up:before {
  border-color: transparent #fa8202 transparent transparent;
}

.col-center .main-btns.completed .sound-btn {
  background-color: #16b76e;
}

.col-center .main-btns.completed .record-btn {
  background-color: #16b76e;
}

.col-center .main-btns.completed .record-triangle-down:before {
  border-color: transparent transparent #16b76e transparent;
}

.col-center .main-btns.completed .record-triangle-up:before {
  border-color: transparent #16b76e transparent transparent;
}

.col-right {
  width: calc(18% - 20px);
  display: flex;
  align-self: auto;
  align-items: center;
}

.sound-btn {
  color: #fff;
  height: 70px;
  width: calc(50% + 12px);
  text-align: center;
  line-height: 70px;
  border-radius: 10px 0 0 10px;
  background-color: #445c95;
  position: relative;
  overflow: hidden;
}

.sound-btn .sound-btn-range {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #0e2e7c;
  z-index: -1;
  border-radius: 10px 0 0 10px;
  width: 100%;
  transition: 0.3s;
}

.record-btn {
  z-index: 100;
  color: #fff;
  height: 70px;
  width: calc(50% - 16px);
  text-align: center;
  line-height: 70px;
  border-radius: 0 10px 10px 0;
  transition: 0.3s;
  background-color: #c2c7d2;
  position: relative;
}

.record-triangle-down {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  left: -29px;
  border-style: solid;
  border-width: 0 0 35px 25px;
  border-color: transparent transparent #ffffff transparent;
}

.record-triangle-down:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: -21px;
  border-style: solid;
  border-width: 0 0 35px 25px;
  border-color: transparent transparent #c2c7d2 transparent;
}

.record-triangle-up {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: -29px;
  border-style: solid;
  border-width: 0 25px 35px 0;
  border-color: transparent #ffffff transparent transparent;
}

.record-triangle-up:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 4px;
  border-style: solid;
  border-width: 0 25px 35px 0;
  border-color: transparent #c2c7d2 transparent transparent;
}

.record-btn i {
  font-size: 22px;
  padding-right: 3px;
  position: relative;
  top: 2px;
}

.skip-btn {
  background-color: #445c95;
  color: #fff;
  width: 100%;
  line-height: 1.2;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s;
  padding: 7px 5px 6px;
}

.sckip-btn i {
  font-size: 22px;
  padding-right: 5px;
  position: relative;
  top: 2px;
}

.skip-btn:hover {
  background-color: #0e2e7c;
  cursor: pointer;
}

.recording-circle {
  background-color: #fa8202;
  width: 20px;
  height: 20px;
  margin: 4px auto 6px;
  border-radius: 100%;
}

.recording-text {
  color: #fa8202;
  font-size: 12px;
  text-align: center;
}

.controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 5px;
}

.icon-btn {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c2c7d2;
}

.icon-btn:hover {
  background-color: #dcdcdc;
  cursor: pointer;
  color: black;
}

@media screen and (max-width: 800px) {
  .next-btn {
    font-size: 14px;
  }

  .next-btn i {
    font-size: 20px;
  }

  .record-btn, .sound-btn {
    font-size: 14px;
  }

  .record-btn i, .sound-btn i {
    font-size: 20px;
  }

  .recording-text {
    font-size: 10px;
  }
}