/* Most-Least Arrow CSS */
.arrow-block {
  text-align: center;
}
.arrow-block .most-like {
  width: 100%;
  position: absolute;
  left: 0;
  top: 2px;
}
.arrow-block .least-like {
  bottom: 2px;
  position: absolute;
  width: 100%;
  left: 0;
}
.arrow-block .like-unlike-arrow-top {
  height: 90px;
  background: url(../img/ud_arrow.png) no-repeat;
  background-position: center 30px;
  line-height: 20px;
}
.arrow-block .like-unlike-arrow-bottom {
  height: 90px;
  background: url(../img/ud_arrow.png) no-repeat;
  background-position: center -114px;
  line-height: 20px;
}
.arrow-block .like-unlike-arrow-middle {
  height: calc(100% - 180px);
  background: url(../img/ud_arrow_middle.png);
  background-repeat: repeat-y;
  background-position: center;
}
@media (max-width: 640px) {
  .arrow-block .like-unlike-arrow-top {
    background-position: center 75px;
  }
  .arrow-block .like-unlike-arrow-bottom {
    background-position: center -154px;
  }
}

/* Progress Bar CSS */
.op-progressbar {
  width: 100%;
  height: 20px;
  /*margin-bottom: 20px;*/
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  display: none;
}
.op-progressbar__back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.op-progressbar__front {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
}
.op-progressbar__text {
  padding-left: 10px;
  width: 100px;
  text-align: left;
}

/* Loader */
.fade.in {
  opacity: 1 !important;
}
.op-container .loader {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: 0px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1000;
  display: none;
}

/* Form CSS */
.op-container .form-slide {
  margin-bottom: 20px;
}
.op-container .form-slide .input-block {
  margin-bottom: 15px;
}

.op-container .op-slide {
  display: none;
}
.op-container .op-slide.active-slide {
  display: block;
}
.op-container .op-survey-body {
  margin-bottom: 20px;
}
.op-container .question-title {
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  min-height: 54px;
}
.op-container .question-title__inner {
  position: absolute;
  bottom: 0;
  left: 0;
}
.op-container .op-sortable-list {
  margin-bottom: 0;
  overflow: auto;
}
.op-container .op-sortable-list .sortable-item {
  border: 1px solid #ccc;
  border-radius: 10px;
  margin: 5px 0;
  list-style: none;
  cursor: move;
  padding: 10px 20px;
  background: #fff;
}
.op-container .submit-btn-wrapper {
  display: none;
}
