#variable_wrapper {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
}
#variable_wrapper .stage_variable-wrapper {
  position: absolute;
  background-color: #E5F0FF;
  padding: 3px 6px;
  border: 1px solid #C3CCD9;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bolder;
  line-height: 24px;
}
#variable_wrapper .variable-value {
  display: inline-block;
  min-width: 40px;
  text-align: center;
  background-color: #FF8C1A;
  color: #ffffff;
  margin-left: 5px;
  border-radius: 5px;
  line-height: 20px;
}
.full-screen {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  height: 100% !important;
}
.full-screen .content {
  text-align: center;
}
.player-wrap {
  background: #fff;
}
.player-wrap .header {
  background: #E9EBEA;
}
.player-wrap .icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
}
.player-wrap .icon.icon-start {
  background: url('/static/front/images/community/start.svg') no-repeat;
}
.player-wrap .icon.icon-stop {
  background: url('/static/front/images/community/stop.svg') no-repeat;
}
.player-wrap .icon.icon-scale {
  background: url('/static/front/images/community/scale.svg') no-repeat;
}
.player-wrap .icon.icon-magnify {
  background: url('/static/front/images/community/magnify.svg') no-repeat;
}
.player-wrap .start-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border: 4px solid #fff;
  border-radius: 50%;
  padding: 16px;
  background: rgb(255, 255, 255, 0.5);
  z-index: 2;
}
.player-wrap .start-btn span {
  display: block;
  width: 4rem;
  height: 4rem;
  background: url('/static/front/images/community/start.svg') no-repeat;
}

/* question style */
.player-wrap .stage_question-wrapper{
  z-index: 999;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

}

.player-wrap .question-container {
    margin: 0.5rem;
    border: 1px solid #4C97FF;
    border-radius: 0.5rem;
    border-width: 2px;
    padding: 1rem;
    background: white;
}

.player-wrap .question-label {
    font-size: 0.75rem;
    font-weight: bold;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #575E75;
    padding-bottom: 0.5rem;
}

.player-wrap .question-input {
    display: flex; /* Keeps the input from going outside this container */
    position: relative;
}

.player-wrap .question-submit-button {
    position: absolute;
    top: calc(0.5rem / 2);
    right: 10px;
    width: calc(2rem - 0.5rem);
    height: calc(2rem - 0.5rem);

    border: none;
    border-radius: 100%;

    color: white;
    background: #4C97FF;
}
[dir="ltr"] .question-submit-button {
    right: calc(0.5rem / 2);
}

[dir="rtl"] .question-submit-button {
    left: calc(0.5rem / 2);
}

/* Input overrides: width, font-weight, focus outline and padding */
.player-wrap .question-input > input {
    width: 100%;
    font-weight: normal;
}

[dir="ltr"] .question-input > input {
    padding: 0 2rem 0 .75rem; /* To make room for the submit button */
}

[dir="rtl"] .question-input > input {
    padding: 0 .75rem 0 2rem; /* To make room for the submit button */
}

.player-wrap .question-input > input:focus {
    box-shadow: 0px 0px 0px 3px hsla(215, 100%, 65%, 0.35);
}

.player-wrap .question-submit-button-icon {
    width: calc(2rem - 0.5rem);
    height: calc(2rem - 0.5rem);
    position: relative;
}