.complainer {
  width: 440px;
  padding: 30px 40px;
  font-family: Arial, sans-serif;
}
.complainer * {
  box-sizing: border-box;
}
.complainer__preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 10;
}
.complainer__preloader__spinner {
  display: block;
  -webkit-animation: rotate 2s linear infinite;
  -o-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  height: 60px;
  width: 60px;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
  position: absolute;
  top: 50%;
  right: 50%;
  margin-right: -30px;
  margin-top: -30px;
}
.complainer__preloader__spinner__path {
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  -webkit-animation: dash 1.5s ease-in-out infinite;
  -o-animation: dash 1.5s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite;
  stroke: #0080ff;
  stroke-width: 4;
}
.complainer_view_reasons {
  width: 470px;
}
.complainer__title {
  position: relative;
  font-size: 18px;
  margin-bottom: 10px;
}
.complainer__title__back {
  position: absolute;
  width: 36px;
  height: 36px;
  left: 0;
  top: 0;
  margin-left: -36px;
  margin-top: -7px;
  background-image: url('/static/images/button_arrow_down.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: .7;
  border: 11px solid transparent;
  cursor: pointer;
}
.complainer__title__back:hover {
  opacity: 1;
}
.complainer__sections,
.complainer__reasons {
  margin: 0;
  padding: 0;
}
.complainer__sections__item,
.complainer__reasons__item {
  position: relative;
  margin: 0;
  padding: 6px 0;
  font-size: 14px;
  cursor: default;
  color: #006DD9;
}
.complainer__sections__item:before,
.complainer__reasons__item:before {
  content: '';
  display: none;
  visibility: hidden;
  float: none;
}
.complainer__sections__item:hover,
.complainer__reasons__item:hover {
  color: #cc0000;
  cursor: pointer;
}
.complainer__sections__item__note,
.complainer__reasons__item__note {
  padding: 10px 0;
}
.complainer__sections__item__note__hint,
.complainer__reasons__item__note__hint {
  color: #666666;
  font-size: 12px;
  padding-bottom: 10px;
}
.complainer__sections__item__note__text,
.complainer__reasons__item__note__text {
  border-radius: 3px;
  line-height: 14px;
  font-size: 13px;
  width: 100%;
  height: 50px;
  padding: 6px 10px;
}
.complainer__reasons__item_selected {
  color: #006DD9;
}
.complainer__reasons__item_selected:before {
  content: '';
  display: block;
  visibility: visible;
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url('/static/images/complainer_check.svg');
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
  top: 0;
  left: 0;
  margin-top: 6px;
  margin-left: -25px;
}
.complainer__note__hint {
  color: #666666;
  font-size: 12px;
  padding-bottom: 10px;
}
.complainer__note__text {
  border-radius: 3px;
  line-height: 14px;
  font-size: 13px;
  width: 100%;
  height: 50px;
  padding: 6px 10px;
}
.complainer__note_flash {
  border-radius: 2px;
  -webkit-animation-name: complainer-note-flash;
  -webkit-animation-duration: 800ms;
  -webkit-animation-iteration-count: 3;
  -webkit-animation-timing-function: linear;
}
.complainer__actions {
  text-align: left;
  width: 100%;
  display: block;
  margin-top: 20px;
}
.complainer__select {
  margin-left: 10px;
  vertical-align: top;
}
.complainer_mode_success {
  padding: 10px;
}
.complainer__success__hero {
  background-image: url('/static/images/good.svg');
  background-size: 120px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 100%;
  height: 230px;
}
.complainer__success__text {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 0 0 40px;
  opacity: .75;
}
@-webkit-keyframes complainer-note-flash {
  0% {
    background-color: rgba(249, 236, 188, 0);
  }
  25% {
    background-color: rgba(249, 236, 188, 0.25);
  }
  50% {
    background-color: rgba(249, 236, 188, 0.5);
  }
  75% {
    background-color: rgba(249, 236, 188, 0.25);
  }
  100% {
    background-color: rgba(249, 236, 188, 0.1);
  }
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
@-o-keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}
.agent-bonus-tooltip {
  width: 240px;
  font-size: 12px;
  font-family: Lato, LatoWeb;
}
.agent-bonus-tooltip__header {
  color: #000;
  font-weight: bold;
}
.agent-bonus-tooltip__body {
  color: #555;
}
body {
  border: none;
}
.offer-recidivist-modal {
  width: 480px;
}
.offer-recidivist-modal__icon {
  background: url('/static/images/recidivist.png') 0 0 no-repeat;
  background-size: 100%;
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: -8px;
  margin-right: 10px;
}
.offer-recidivist-modal .s-modal__title {
  font-size: 24px;
  color: #E10000;
}
.offer-recidivist-modal .s-modal__body {
  font-size: 14px;
  color: #585858;
  padding-top: 0;
  padding-bottom: 20px;
}
.offer-recidivist-modal .s-modal__actions {
  text-align: left;
}
.offer-detail__sharing-popup .s-popup__content {
  padding: 20px 10px 20px 20px;
}
.objects_complaints_button {
  color: white !important;
}
.objects_complaints_button:hover {
  color: white !important;
  border-color: #2b87db !important;
}
.objects_complaints_link {
  border: none !important;
  color: #2B87DB !important;
  -webkit-transition: color 150ms;
  -o-transition: color 150ms;
  transition: color 150ms;
}
.objects_complaints_link:hover {
  color: #256BA5 !important;
}
.objects_complaints {
  background: #ffeaea;
  border-left: 4px solid #ff5050;
  margin: 20px 0;
  padding: 15px;
}
.objects_complaints_title {
  font-size: 16px;
  font-weight: bold;
  color: #E10000;
}
.objects_complaints_list_item {
  list-style-type: disc;
  color: #E10000;
}
.objects_complaints_list_item:before {
  content: none;
}
.objects_complaints_list_item i {
  display: block;
}
.objects_complaints_actions {
  margin-top: 15px;
}
