/**
 *  NetGo.hu NetShop v3 LESS template
 *  Copyright(c) NetGo.hu Kft. (http://www.netgo.hu)
*/
/* 
    Created on : 2017.05.19., 16:00:14
    Author     : NetGo.hu Kft - All rights reserved
*/
@font-face {
  font-family: 'Roboto Regular';
  src: url('fonts/Roboto/Roboto-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto Bold';
  src: url('fonts/Roboto/Roboto-Bold.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'OpenSans Regular';
  src: url('fonts/Open_Sans/OpenSans-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'OpenSans Bold';
  src: url('fonts/Open_Sans/OpenSans-Bold.ttf');
  font-weight: normal;
  font-style: normal;
}
[type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #51a87d;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* Base for label styling */
#survey_main_cont [type="checkbox"]:not(:checked),
#survey_main_cont [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
#survey_main_cont [type="checkbox"]:not(:checked) + label,
#survey_main_cont [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.25em;
  height: 1.25em;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '✔';
  position: absolute;
  top: 0.1em;
  left: 0.3em;
  font-size: 1.3em;
  line-height: 0.8;
  color: #09ad7e;
  transition: all 0.2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
[type="checkbox"]:disabled + label {
  color: #aaa;
}
[type="checkbox"] + label:hover:before {
  border: 2px solid #4778d9 !important;
}
.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.inputfile + label {
  max-width: 80%;
  font-size: 15px;
  /* 20px */
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
  color: #f1e5e6;
  background-color: #e26e6e;
  /* 10px 20px */
  max-width: 185px;
}
.no-js .inputfile + label {
  display: none;
}
.inputfile:focus + label,
.inputfile.has-focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}
.inputfile + label * {
  /* pointer-events: none; */
  /* in case of FastClick lib use */
}
.inputfile + label svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  margin-top: -0.25em;
  /* 4px */
  margin-right: 0.25em;
  /* 4px */
}
.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
  background-color: #722040;
}
.upload-button {
  max-width: 80%;
  font-size: 15px;
  /* 20px */
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
  color: #f1e5e6;
  background-color: #00a76f;
  /* 10px 20px */
  max-width: 185px;
  margin-left: 20px;
}
.upload-button:hover {
  background-color: #008357;
}
.loading {
  display: none;
  margin-left: 10px;
}
.loading img {
  height: 37px;
}
.row {
  margin: 0 auto;
  max-width: 1200px;
  min-width: 800px;
}
.row:before {
  content: " ";
  display: table;
  clear: both;
}
.row:after {
  content: " ";
  display: table;
  clear: both;
}
.row-1200 {
  margin: 0 auto;
  max-width: 1200px;
  min-width: 800px;
}
.row-1200:before {
  content: " ";
  display: table;
  clear: both;
}
.row-1200:after {
  content: " ";
  display: table;
  clear: both;
}
.survey_container .left {
  margin-right: 70px;
}
.hidden {
  width: 0;
  height: 0;
  display: none;
}
html,
body {
  height: 100%;
}
#survey_main_cont .is_editing_message_cont {
  text-align: center;
  font-size: 18px;
  color: #fff;
  padding: 10px 20px;
  background: #b80000;
  border: 1px solid #e26e6e;
  margin-top: 40px;
}
#survey_main_cont .nick_title_cont {
  background: #cacaca;
  padding: 10px;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: -120px;
  z-index: 2;
}
#survey_main_cont .nick_title_cont.fixed {
  position: fixed;
  top: 0;
  z-index: 11;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
}
#survey_main_cont .nick_title_cont h1 {
  padding: 0;
  margin: 0;
  font-size: 14pt;
}
#survey_main_cont .nick_title_cont h1 b {
  font-weight: normal;
}
#survey_main_cont .nick_title_cont h1 span {
  font-size: 12px;
  margin-left: 10px;
  position: relative;
  top: -2px;
}
#survey_main_cont .admin_user_top_row {
  position: relative;
  zoom: 1;
}
#survey_main_cont .admin_user_top_row .fog {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff73;
  z-index: 10;
}
#survey_main_cont .admin_user_top_row:before,
#survey_main_cont .admin_user_top_row:after {
  content: "";
  display: table;
}
#survey_main_cont .admin_user_top_row:after {
  clear: both;
}
#survey_main_cont .admin_user_top_row .survey_uniq_id {
  float: right;
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 10px;
  padding: 2px 5px;
  color: #555d60;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left {
  width: 780px;
  margin: 25px auto 0 auto;
  position: relative;
  padding: 0 10px;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left .row {
  margin-top: 2px;
  margin-bottom: 2px;
  min-width: 0;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left .admin_survey_controlls_title {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  background: #efefef;
  width: 100%;
  color: #545c5f;
  padding: 5px 10px;
  box-sizing: border-box;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left .admin_survey_status_change_cont {
  text-align: left;
  float: left;
  vertical-align: top;
  width: 100%;
  margin-top: 30px;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left .admin_survey_footer_buttons {
  width: 100%;
  box-sizing: border-box;
  padding: 5px 0px;
  display: inline-block;
  margin-top: 10px;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  text-align: left;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left .admin_survey_financiers .selected_financiers {
  margin: 0;
  line-height: 26px;
  padding: 0;
  color: #000;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left .admin_survey_financiers div {
  display: inline-block;
  width: 340px;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left .admin_survey_financiers div select {
  margin-top: 5px;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left .admin_survey_financiers div select:first-child {
  margin-top: 0;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left .admin_survey_financiers button {
  margin-top: 58px;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left .notifications {
  display: inline-block;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left label {
  text-align: left;
  line-height: 26px;
  width: 190px;
  display: inline-block;
  float: left;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left input[type="text"],
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left select {
  width: 340px !important;
  border: 1px solid #bbb;
  height: 25px;
  padding: 0 5px;
  display: inline-block;
  margin: 0;
  color: #000;
  box-sizing: border-box;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left input[type="checkbox"] {
  position: initial;
  left: 0;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left button {
  color: #FFF;
  background-color: #51a87d;
  border: 1px solid #fff;
  cursor: pointer;
  margin-left: 5px;
  padding: 5px 7px;
  float: right;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left button:hover {
  color: #51a87d;
  background-color: #fff;
  border: 1px solid #51a87d;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left #admin_survey_delete_button {
  background-color: #e26e6e;
}
#survey_main_cont .admin_user_top_row .admin_survey_controlls_left #admin_survey_delete_button:hover {
  color: #e26e6e;
  background-color: #fff;
  border: 1px solid #e26e6e;
}
#survey_main_cont .admin_user_top_row .admin_survey_alias {
  text-align: left;
  float: left;
  vertical-align: top;
  width: 100%;
}
#survey_main_cont .admin_user_top_row .admin_survey_alias input[type='text'] {
  width: 200px;
}
#survey_main_cont .admin_user_top_row .admin_survey_deadline {
  text-align: center;
  float: left;
  vertical-align: top;
  text-align: left;
  width: 100%;
}
#survey_main_cont .admin_user_top_row .admin_survey_deadline input[type='text'] {
  width: 200px;
}
#survey_main_cont .admin_user_top_row .admin_survey_consultant,
#survey_main_cont .admin_user_top_row .admin_survey_ukv {
  text-align: center;
  float: left;
  vertical-align: top;
  text-align: left;
  width: 100%;
}
#survey_main_cont .admin_user_top_row .admin_survey_consultant select,
#survey_main_cont .admin_user_top_row .admin_survey_ukv select {
  width: 200px;
}
#survey_main_cont .admin_user_top_row .admin_survey_import {
  display: block;
  text-align: right;
}
#survey_main_cont .admin_user_top_row .admin_survey_import button {
  margin-top: 10px;
}
#survey_main_cont .admin_user_top_row .admin_survey_user_change_cont {
  text-align: right;
  float: right;
  width: 400px;
  vertical-align: top;
}
#survey_main_cont .admin_user_top_row .admin_survey_user_change_cont .explanation {
  font-size: 10px;
  color: #666;
  display: inline-block;
  line-height: 11px;
  font-weight: normal;
}
#survey_main_cont .admin_user_top_row #admin_survey_status_change_select_button {
  display: inline-block;
}
#survey_main_cont .admin_back_form {
  margin-bottom: 20px;
  display: none;
}
.pick_company_label {
  text-align: center;
  font-size: 20px;
}
.tooltip {
  position: relative;
  z-index: 1;
}
.tooltip .tooltip_icon {
  line-height: 30px;
}
.tooltip .tooltip_icon img {
  vertical-align: middle;
}
.tooltip .tooltip_icon img:hover {
  cursor: pointer;
}
.tooltip .tooltip_bubble {
  display: none;
  width: 250px;
  position: absolute;
  bottom: 35px;
  left: -20px;
  background-color: #FFF;
  padding: 10px 10px;
  line-height: 20px;
  color: #000;
  font-size: 14px;
  font-family: 'Roboto Regular', 'sans-serif';
  box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.28);
  border: 3px solid #eee;
}
.tooltip .tooltip_bubble .tooltip_bubble_content {
  overflow: hidden;
}
.tooltip .tooltip_bubble .tooltip_bubble_cross {
  position: absolute;
  bottom: -33px;
  left: 21px;
}
.tooltip .tooltip_bubble .tooltip_bubble_head {
  font-family: 'Roboto Regular', 'sans-serif';
  font-weight: bold;
  border-bottom: 1px dashed #eee;
  margin-bottom: 5px;
  padding-bottom: 5px;
}
.tooltip .tooltip_bubble .tooltip_bubble_head img {
  float: left;
}
.tooltip .tooltip_bubble .tooltip_bubble_head span {
  line-height: 22px;
  margin-left: 5px;
}
.tooltip .tooltip_bubble p {
  margin: 0px;
}
.sending_loading {
  position: fixed;
  width: 200px;
  height: 200px;
  left: 50%;
  top: 100px;
  margin-left: -100px;
  display: block;
  z-index: 2;
}
.sending_loading_bg {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}
.survey_container {
  position: relative;
  margin-top: 100px;
  margin-bottom: 70px;
  /*&.editing_blocked:after*/
}
.survey_container .row {
  background-color: #f9f9f9;
}
.survey_container .row.messages {
  background-color: #efefef;
}
.survey_container .recommended {
  font-weight: bold;
  color: #ed9420;
}
.survey_container .file {
  border-bottom: 1px solid #51a87d;
}
.survey_container.editing_blocked .elements_block > .row > div {
  position: relative;
}
.survey_container.editing_blocked .elements_block > .row > div:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: ' ';
  background: rgba(255, 255, 255, 0.3);
}
.survey_container.editing_blocked .elements_block > .row > div.elements_block_title:after {
  display: none;
}
.survey_container.editing_blocked .elements_block > .row > div .file.editing_enabled {
  position: relative;
  z-index: 10;
}
.survey_container .elements_block {
  page-break-inside: avoid;
}
.survey_container .elements_block * {
  page-break-inside: avoid;
}
.survey_container .elements_block .file.empty_error {
  border-left: 5px solid #e26e6e;
  background: #e26e6e14;
  padding-top: 10px;
}
.survey_container .elements_block .text.empty_error .text_input {
  position: relative;
}
.survey_container .elements_block .text.empty_error .text_input input,
.survey_container .elements_block .text.empty_error .text_input textarea {
  background: #e26e6e;
}
.survey_container .elements_block .checkbox_radio_value.empty_error input[type="radio"]:checked + label:after,
.survey_container .elements_block .checkbox_radio_value.empty_error [type="radio"]:not(:checked) + label:after {
  background-color: #FFF;
}
.survey_container .elements_block .checkbox_radio_value.empty_error label > label {
  color: #e26e6e;
}
.survey_container .elements_block .checkbox_radio_value.empty_error label > label:before {
  background: #e26e6e;
}
.survey_container .elements_block .checkbox_radio_value.empty_error label > label:after {
  color: #FFF;
}
.survey_container .elements_block.block_has_error .elements_block_title {
  background-color: #e26e6e;
}
.survey_container .elements_block .elements_block_title {
  /*width: 780px;*/
  height: 41px;
  line-height: 41px;
  font-family: 'Roboto Regular', 'sans-serif';
  font-size: 18px;
  color: #FFF;
  background-color: #51a87d;
  padding: 0px 10px;
  border-bottom: 2px solid #fff;
  position: relative;
}
.survey_container .elements_block .elements_block_title h2 {
  font-size: 20px;
}
.survey_container .elements_block .elements_block_title .toggle_survey_block_is_visible {
  display: block;
  height: 25px;
  width: 25px;
  transition: transform 0.5s;
  cursor: pointer;
  background: url(../../images/images/arrow_up.png) center center no-repeat;
  position: absolute;
  top: 10px;
  right: 10px;
}
.survey_container .elements_block .elements_block_title .toggle_survey_block_is_visible.closed {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.survey_container .elements_block .elements_block_title .toggle_survey_block_text_show,
.survey_container .elements_block .elements_block_title .toggle_survey_block_text_hide {
  display: block;
  height: 25px;
  font-size: 20px;
  line-height: 25px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 40px;
}
.survey_container .elements_block .elements_block_title .toggle_survey_block_text_show.toggle_survey_block_text_hide,
.survey_container .elements_block .elements_block_title .toggle_survey_block_text_hide.toggle_survey_block_text_hide {
  display: none;
}
.survey_container .elements_block .checkbox_radio_value_other {
  font-family: 'Roboto Regular', 'sans-serif';
  color: #555555;
  border: 1px solid #666;
  height: 20px;
  width: 200px;
  padding-right: 5px;
  padding-left: 5px;
  margin-bottom: 10px;
}
.survey_container .elements_block .checkbox_radio_value_other.active {
  border: 1px solid #51a87d;
}
.survey_container .elements_block .listbox .checkbox_radio_value {
  /*margin-left: 151px;*/
  margin-top: 10px;
  color: #555555;
}
.survey_container .elements_block .listbox .listbox_content.empty_error select {
  background: #e26e6e;
}
.survey_container .elements_block .radio,
.survey_container .elements_block .checkbox,
.survey_container .elements_block .block,
.survey_container .elements_block .file,
.survey_container .elements_block .form_template_tooltip,
.survey_container .elements_block .listbox {
  margin: 11px 0;
  padding: 0 20px;
}
.survey_container .elements_block .radio .radio_title,
.survey_container .elements_block .checkbox .radio_title,
.survey_container .elements_block .block .radio_title,
.survey_container .elements_block .file .radio_title,
.survey_container .elements_block .form_template_tooltip .radio_title,
.survey_container .elements_block .listbox .radio_title,
.survey_container .elements_block .radio .listbox_title,
.survey_container .elements_block .checkbox .listbox_title,
.survey_container .elements_block .block .listbox_title,
.survey_container .elements_block .file .listbox_title,
.survey_container .elements_block .form_template_tooltip .listbox_title,
.survey_container .elements_block .listbox .listbox_title,
.survey_container .elements_block .radio .checkbox_title,
.survey_container .elements_block .checkbox .checkbox_title,
.survey_container .elements_block .block .checkbox_title,
.survey_container .elements_block .file .checkbox_title,
.survey_container .elements_block .form_template_tooltip .checkbox_title,
.survey_container .elements_block .listbox .checkbox_title,
.survey_container .elements_block .radio .block_title,
.survey_container .elements_block .checkbox .block_title,
.survey_container .elements_block .block .block_title,
.survey_container .elements_block .file .block_title,
.survey_container .elements_block .form_template_tooltip .block_title,
.survey_container .elements_block .listbox .block_title,
.survey_container .elements_block .radio .file_title,
.survey_container .elements_block .checkbox .file_title,
.survey_container .elements_block .block .file_title,
.survey_container .elements_block .file .file_title,
.survey_container .elements_block .form_template_tooltip .file_title,
.survey_container .elements_block .listbox .file_title {
  line-height: 18px;
  color: #555555;
  font-size: 14px;
  font-family: 'Roboto Regular', 'sans-serif';
  padding-bottom: 10px;
}
.survey_container .elements_block .radio:before,
.survey_container .elements_block .checkbox:before,
.survey_container .elements_block .block:before,
.survey_container .elements_block .file:before,
.survey_container .elements_block .form_template_tooltip:before,
.survey_container .elements_block .listbox:before {
  content: " ";
  display: table;
  clear: both;
}
.survey_container .elements_block .radio:after,
.survey_container .elements_block .checkbox:after,
.survey_container .elements_block .block:after,
.survey_container .elements_block .file:after,
.survey_container .elements_block .form_template_tooltip:after,
.survey_container .elements_block .listbox:after {
  content: " ";
  display: table;
  clear: both;
}
.survey_container .elements_block .radio input[type=radio],
.survey_container .elements_block .checkbox input[type=radio],
.survey_container .elements_block .block input[type=radio],
.survey_container .elements_block .file input[type=radio],
.survey_container .elements_block .form_template_tooltip input[type=radio],
.survey_container .elements_block .listbox input[type=radio],
.survey_container .elements_block .radio input[type=checkbox],
.survey_container .elements_block .checkbox input[type=checkbox],
.survey_container .elements_block .block input[type=checkbox],
.survey_container .elements_block .file input[type=checkbox],
.survey_container .elements_block .form_template_tooltip input[type=checkbox],
.survey_container .elements_block .listbox input[type=checkbox] {
  display: none;
}
.survey_container .elements_block .radio select,
.survey_container .elements_block .checkbox select,
.survey_container .elements_block .block select,
.survey_container .elements_block .file select,
.survey_container .elements_block .form_template_tooltip select,
.survey_container .elements_block .listbox select {
  min-width: 50px;
  padding: 5px 10px 5px 5px ;
  background: #aad2ad;
}
.survey_container .elements_block .radio .checkbox_radio_value,
.survey_container .elements_block .checkbox .checkbox_radio_value,
.survey_container .elements_block .block .checkbox_radio_value,
.survey_container .elements_block .file .checkbox_radio_value,
.survey_container .elements_block .form_template_tooltip .checkbox_radio_value,
.survey_container .elements_block .listbox .checkbox_radio_value {
  padding-bottom: 2px;
}
.survey_container .elements_block .radio .checkbox_radio_value span,
.survey_container .elements_block .checkbox .checkbox_radio_value span,
.survey_container .elements_block .block .checkbox_radio_value span,
.survey_container .elements_block .file .checkbox_radio_value span,
.survey_container .elements_block .form_template_tooltip .checkbox_radio_value span,
.survey_container .elements_block .listbox .checkbox_radio_value span {
  display: inline-block;
  height: 20px;
}
.survey_container .elements_block .radio .checkbox_radio_value.elements_side_by_side,
.survey_container .elements_block .checkbox .checkbox_radio_value.elements_side_by_side,
.survey_container .elements_block .block .checkbox_radio_value.elements_side_by_side,
.survey_container .elements_block .file .checkbox_radio_value.elements_side_by_side,
.survey_container .elements_block .form_template_tooltip .checkbox_radio_value.elements_side_by_side,
.survey_container .elements_block .listbox .checkbox_radio_value.elements_side_by_side {
  float: left;
  margin-right: 10px;
}
.survey_container .elements_block .file {
  margin: 0;
  padding: 11px 20px 0 20px;
}
.survey_container .elements_block .block .block_grid_table.has_delete {
  margin-right: 40px;
}
.survey_container .elements_block .block .block_grid_row {
  /*width: 720px;*/
  position: relative;
}
.survey_container .elements_block .block .block_grid_row .block_grid_col {
  float: left;
}
.survey_container .elements_block .block .block_grid_row .block_grid_col .text_title {
  line-height: normal;
}
.survey_container .elements_block .block .block_grid_row .block_grid_col input {
  width: 100%;
  box-sizing: border-box;
}
.survey_container .elements_block .block .block_grid_row .block_grid_col .radio,
.survey_container .elements_block .block .block_grid_row .block_grid_col .checkbox,
.survey_container .elements_block .block .block_grid_row .block_grid_col .text {
  padding: 0px;
  margin: 10px 0px;
}
.survey_container .elements_block .block .block_grid_row .block_grid_col select {
  width: 100%;
  display: inline-block;
}
.survey_container .elements_block .block .block_grid_row .block_grid_col .all_text {
  float: right;
  margin-right: 20px;
  line-height: 30px;
  font-family: 'OpenSans Regular', 'sans-serif';
  font-size: 14px;
}
.survey_container .elements_block .block .block_grid_row .block_delete_row {
  position: absolute;
  bottom: 10px;
  right: -44px;
}
.survey_container .elements_block .block .block_grid_row .block_delete_row a {
  display: block;
  width: 31px;
  height: 31px;
  background: #e26e6e;
  text-align: center;
}
.survey_container .elements_block .block .block_grid_row .block_delete_row a img {
  display: inline-block;
  margin-top: 7px;
}
.survey_container .elements_block .block .block_grid_row .block_delete_row:hover {
  opacity: 0.6;
}
.survey_container .elements_block .block .block_grid_row:before {
  content: " ";
  display: table;
  clear: both;
}
.survey_container .elements_block .block .block_grid_row:after {
  content: " ";
  display: table;
  clear: both;
}
.survey_container .elements_block .block .block_add_new_element {
  float: left;
  min-width: 400px;
}
.survey_container .elements_block .block .block_add_new_element .block_add_row_button {
  display: inline-block;
  padding-right: 10px;
  min-width: 154px;
  height: 31px;
  background-color: #dddddd;
  line-height: 31px;
  text-decoration: none;
}
.survey_container .elements_block .block .block_add_new_element .block_add_row_button img {
  float: left;
}
.survey_container .elements_block .block .block_add_new_element .block_add_row_button span {
  color: #555555;
  font-size: 13px;
  font-family: 'Roboto Regular', 'sans-serif';
  margin-left: 6px;
}
.survey_container .elements_block .block .block_add_new_element .block_add_row_button:hover {
  background-color: #c8c8c8;
}
.survey_container .elements_block .block .block_summation {
  float: right;
  width: 100%;
}
.survey_container .elements_block .block .block_summation .text {
  margin: 0px !important;
}
.survey_container .elements_block .block .block_summation .text .text_input {
  line-height: 30px;
}
.survey_container .elements_block .block .block_summation .text .text_input input {
  height: 30px;
  border: none;
  background-color: #d7d7d7;
  padding: 0px 10px;
  color: #242424;
  font-size: 14px;
  font-family: 'OpenSans Regular', 'sans-serif';
  transition: all 0.5s ease;
}
.survey_container .elements_block .block .block_summation .text .text_input input:focus {
  -webkit-box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.75);
}
.survey_container .elements_block .block .block_summation .text .text_input textarea {
  min-height: 30px;
  border: none;
  background-color: #d7d7d7;
  padding: 0px 10px;
  color: #242424;
  font-size: 14px;
  font-family: 'OpenSans Regular', 'sans-serif';
  transition: all 0.5s ease;
}
.survey_container .elements_block .block .block_summation .text .text_input textarea:focus {
  -webkit-box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.75);
}
.survey_container .elements_block .block .block_summation .all_text {
  float: right;
}
.survey_container .elements_block .block:before {
  content: " ";
  display: table;
  clear: both;
}
.survey_container .elements_block .block:after {
  content: " ";
  display: table;
  clear: both;
}
.survey_container .elements_block .custom_content {
  margin: 15px 0px;
  padding: 0px 20px;
}
.survey_container .elements_block .custom_content .custom_content_cont {
  line-height: 30px;
  color: #555555;
  font-size: 14px;
  font-family: 'Roboto Regular', 'sans-serif';
}
.survey_container .elements_block .text {
  margin: 15px 0px;
  padding: 0px 20px;
}
.survey_container .elements_block .text .text_title {
  line-height: 30px;
  color: #555555;
  font-size: 14px;
  font-family: 'Roboto Regular', 'sans-serif';
}
.survey_container .elements_block .text .text_input {
  line-height: 30px;
}
.survey_container .elements_block .text .text_input input {
  height: 30px;
  border: none;
  background-color: #aad2ad;
  padding: 0px 10px;
  color: #242424;
  font-size: 14px;
  font-family: 'OpenSans Regular', 'sans-serif';
  transition: all 0.5s ease;
}
.survey_container .elements_block .text .text_input input:focus {
  -webkit-box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.75);
}
.survey_container .elements_block .text .text_input textarea {
  min-height: 30px;
  border: none;
  background-color: #aad2ad;
  padding: 0px 10px;
  color: #242424;
  font-size: 14px;
  font-family: 'OpenSans Regular', 'sans-serif';
  transition: all 0.5s ease;
}
.survey_container .elements_block .text .text_input textarea:focus {
  -webkit-box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.75);
}
.survey_container .elements_block .text:before {
  content: " ";
  display: table;
  clear: both;
}
.survey_container .elements_block .text:after {
  content: " ";
  display: table;
  clear: both;
}
.survey_container .elements_block .radio .radio_content .checkbox_radio_value label:hover,
.survey_container .elements_block .checkbox .radio_content .checkbox_radio_value label:hover,
.survey_container .elements_block .file .radio_content .checkbox_radio_value label:hover,
.survey_container .elements_block .radio .file_content .checkbox_radio_value label:hover,
.survey_container .elements_block .checkbox .file_content .checkbox_radio_value label:hover,
.survey_container .elements_block .file .file_content .checkbox_radio_value label:hover {
  cursor: pointer;
}
.survey_container .elements_block .radio .radio_content .checkbox_radio_value input:hover,
.survey_container .elements_block .checkbox .radio_content .checkbox_radio_value input:hover,
.survey_container .elements_block .file .radio_content .checkbox_radio_value input:hover,
.survey_container .elements_block .radio .file_content .checkbox_radio_value input:hover,
.survey_container .elements_block .checkbox .file_content .checkbox_radio_value input:hover,
.survey_container .elements_block .file .file_content .checkbox_radio_value input:hover {
  cursor: pointer;
}
.survey_container .elements_block .radio .radio_content .checkbox_radio_value.empty_error label,
.survey_container .elements_block .checkbox .radio_content .checkbox_radio_value.empty_error label,
.survey_container .elements_block .file .radio_content .checkbox_radio_value.empty_error label,
.survey_container .elements_block .radio .file_content .checkbox_radio_value.empty_error label,
.survey_container .elements_block .checkbox .file_content .checkbox_radio_value.empty_error label,
.survey_container .elements_block .file .file_content .checkbox_radio_value.empty_error label {
  color: #e26e6e;
}
.survey_container .elements_block .radio .radio_content .checkbox_radio_value.empty_error label::before,
.survey_container .elements_block .checkbox .radio_content .checkbox_radio_value.empty_error label::before,
.survey_container .elements_block .file .radio_content .checkbox_radio_value.empty_error label::before,
.survey_container .elements_block .radio .file_content .checkbox_radio_value.empty_error label::before,
.survey_container .elements_block .checkbox .file_content .checkbox_radio_value.empty_error label::before,
.survey_container .elements_block .file .file_content .checkbox_radio_value.empty_error label::before {
  background: #e26e6e;
}
.survey_container .unique_real_owners__table,
.survey_container .unique_net_income_block__table {
  width: 760px;
  margin: 20px 20px;
  border: 2px solid #000;
  background-color: #FFF;
  border-collapse: collapse;
}
.survey_container .unique_real_owners__table .verticalTableHeader,
.survey_container .unique_net_income_block__table .verticalTableHeader {
  text-align: center;
  white-space: nowrap;
  transform-origin: 50% 50%;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}
.survey_container .unique_real_owners__table .verticalTableHeader:before,
.survey_container .unique_net_income_block__table .verticalTableHeader:before {
  content: '';
  padding-top: 110%;
  /* takes width as reference, + 10% for faking some extra padding */
  display: inline-block;
  vertical-align: middle;
}
.survey_container .unique_real_owners__disabled,
.survey_container .unique_net_income_block__disabled {
  background-color: #aaaaaa;
}
.survey_container .unique_real_owners th,
.survey_container .unique_net_income_block th,
.survey_container .unique_real_owners td,
.survey_container .unique_net_income_block td {
  border: 1px solid #000;
}
.survey_container .unique_real_owners .checkbox_radio_value,
.survey_container .unique_net_income_block .checkbox_radio_value {
  margin: 2px 10px;
}
.survey_container .unique_real_owners input,
.survey_container .unique_net_income_block input {
  width: 100%;
  outline: none;
  box-sizing: border-box;
  border: none;
  text-align: center;
}
.page {
  margin-bottom: 0;
}
.page .header {
  float: left;
  min-width: 800px;
  /*.box-shadow(0px 5px 5px 0px rgba(0, 0, 0, 0.2));*/
  height: 110px;
  background-color: #51a87d;
  width: calc(100% - 75px);
  margin-left: 75px;
  display: inline-block;
}
.page .header .logo {
  float: left;
  width: 207px;
  height: 110px;
  background-color: #FFF;
}
.page .header .title {
  float: left;
  line-height: 110px;
  margin-left: 40px;
  position: relative;
}
.page .header .title h1 {
  color: #FFF;
  font-family: 'OpenSans Regular', 'sans-serif';
  font-size: 29px;
}
.page .header .header_menu {
  float: right;
}
.page .header .header_menu ul li {
  float: left;
  list-style: none;
  margin-right: 15px;
  margin-left: 15px;
  line-height: 110px;
  color: #FFF;
  font-size: 16px;
}
.page .header .header_menu ul li a {
  text-decoration: none;
  color: #FFF;
  font-size: 16px;
  padding: 15px;
}
.page .header .header_menu ul li.active a {
  border: 1px solid #FFF;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: color 0.25s ease-in-out;
  -moz-transition: color 0.25s ease-in-out;
  -ms-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
}
.page .header .header_menu ul li.active a:hover {
  background-color: #FFF;
  color: #000;
}
.page .header .header_menu .company_selector {
  float: left;
  line-height: 110px;
}
.page .header .header_menu .company_selector select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: 'OpenSans Regular', 'sans-serif';
  font-size: 14.58px;
  padding: 8px 29px 8px 10px;
  width: 200px;
  color: #6d6d6d;
  background-image: url(../../images/images/combobox_arrow.png);
  background-repeat: no-repeat;
  background-position: 202px 14px;
}
.page .header .header_menu .company_selector select::-ms-expand {
  display: none;
}
.page .header .header_menu__username {
  color: #FFF;
  font-size: 18px;
  font-family: 'OpenSans Regular', 'sans-serif';
  max-width: 300px;
  display: inline-block;
  line-height: 24px;
  vertical-align: middle;
}
.page .header .header_menu__profile {
  position: relative;
  display: none;
}
.page .header .header_menu__profile__icon {
  width: 42px;
  height: 43px;
  display: block;
  margin-top: 33px;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-image: url(../../images/images/profile_icons.png);
}
.page .header .header_menu__profile__icon:hover {
  background-position: -42px 0px;
  cursor: pointer;
}
.page .header .header_menu__profile__icon.opened {
  background-position: -42px 0px;
}
.page .header .header_menu__profile__opened_box {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  width: 419px;
  top: 88px;
  right: 16px;
  border: 1px solid #51a87d;
  z-index: 2;
  padding-top: 0;
}
.page .header .header_menu__profile__opened_box__survey_button {
  box-sizing: border-box;
  margin: 25px 10px 10px 10px;
}
.page .header .header_menu__profile__opened_box__survey_button .button_surveys {
  font-size: 14px;
  text-decoration: none !important;
  color: #FFF !important;
  font-size: 16px !important;
  padding: 15px !important;
  background-color: #51a87d;
  border-radius: 5px;
  margin-top: 10px;
}
.page .header .header_menu__profile__opened_box__survey_button .button_surveys:hover {
  background-color: #FFF;
  color: #51a87d !important;
  cursor: pointer;
  border: 1px solid #51a87d !important;
}
.page .header .header_menu__profile__opened_box__username {
  color: #51a87d;
  font-size: 18px;
  font-family: 'OpenSans Regular', 'sans-serif';
  float: left;
  line-height: 66px;
  margin-left: 10px;
}
.page .header .header_menu__profile__opened_box__logout {
  float: right;
  height: 66px;
  margin-right: 10px;
  height: 32px;
  margin-top: 25px;
}
.page .header .header_menu__profile__opened_box__logout a {
  text-decoration: none !important;
  color: #FFF !important;
  font-size: 16px !important;
  padding: 15px !important;
  background-color: #51a87d;
  border-radius: 5px;
}
.page .header .header_menu__profile__opened_box__logout a:hover {
  background-color: #FFF;
  color: #51a87d !important;
  cursor: pointer;
  border: 1px solid #51a87d !important;
}
.page .home {
  z-index: 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../../images/images/home_bg.jpg);
  background-attachment: fixed;
  background-color: white;
}
.page .home .home_headings {
  position: initial;
  top: 50%;
  width: 100%;
  padding: 0;
  z-index: 5;
  display: inline-block;
}
.page .home .home_headings .home_headings_content {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  text-align: center;
  margin-top: 0px;
  z-index: 6;
  padding: 25px 0;
}
.page .home .home_headings .home_headings_content h2 {
  display: block;
  font-family: 'OpenSans Regular', 'sans-serif';
  font-size: 65px;
  color: #fff;
  line-height: auto;
  margin: 0 auto;
  margin-bottom: 35px;
  z-index: 6;
}
.page .home .home_headings .home_headings_content h3 {
  display: block;
  font-family: 'OpenSans Regular', 'sans-serif';
  font-size: 15px;
  color: #fff;
  line-height: 30px;
  margin: 0 auto;
  margin-bottom: 35px;
  z-index: 6;
}
.page .home_login_box {
  display: none;
  position: absolute;
  right: 0px;
  z-index: 100;
  top: 110px;
  background-color: #51a87d;
}
.page .content {
  margin-top: 0;
  margin-bottom: 0;
  z-index: 1;
  float: left;
}
.page .content .survery_content_menu {
  position: relative;
  margin-bottom: 28px;
}
.page .content .survery_content_menu__list {
  margin-top: 15px;
  min-height: 40px;
}
.page .content .survery_content_menu__list__item {
  float: left;
  list-style: none;
  margin-right: 32px;
}
.page .content .survery_content_menu__list__item a {
  font-size: 18.75px;
  font-family: 'OpenSans Regular', 'sans-serif';
  color: #51a87d;
}
.file_content {
  width: 100%;
  margin-right: 0px;
}
.file_content__file_list {
  position: relative;
  width: 100%;
  margin-top: 10px;
}
.file_content__file_list .files_input_template {
  display: none;
}
.file_content__file_list__item {
  font-family: 'Roboto Regular', 'sans-serif';
  width: 100%;
  background-color: #FFF;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}
.file_content__file_list__item:before {
  content: " ";
  display: table;
  clear: both;
}
.file_content__file_list__item:after {
  content: " ";
  display: table;
  clear: both;
}
.file_content__file_list__item__filename {
  float: left;
}
.file_content__file_list__item__filename img {
  width: 40px;
  margin: 10px;
  float: left;
}
.file_content__file_list__item__filename span {
  line-height: 68.56px;
  font-size: 15px;
  font-weight: bold;
  float: left;
  display: block;
  margin-right: 10px;
}
.file_content__file_list__item__filesize {
  float: left;
}
.file_content__file_list__item__filesize span {
  line-height: 68.56px;
  float: left;
  display: block;
}
.file_content__file_list__item__upload_status {
  float: right;
}
.file_content__file_list__item__upload_status span {
  line-height: 68.56px;
  float: left;
  display: block;
  margin-right: 20px;
}
.file_content__file_list__item__upload_status .waiting_for_upload {
  color: #c98315;
  font-weight: bold;
  text-transform: uppercase;
}
.file_content__file_list__item__upload_status .uploaded {
  font-weight: bold;
  color: #51a87d;
}
.file_content__file_list__item__delete {
  float: right;
}
.file_content__file_list__item__delete span {
  line-height: 68.56px;
  float: right;
  display: block;
  margin-right: 10px;
}
.file_content__file_list__item__delete span:hover {
  cursor: pointer;
  font-weight: bold;
}
.file_content .file_element_checked label {
  padding-top: 2px;
}
.file_content .file_element_no_data {
  margin-top: 10px;
}
.file_content .file_element_no_data label {
  padding-top: 2px;
}
.elements_block .financiers {
  display: none !important;
  float: left;
  margin: 0;
  width: 100%;
  padding: 5px 10px;
  position: relative;
  left: -10px;
  background: #f9f9f9;
  margin-bottom: 10px;
}
.elements_block .financiers b {
  color: #000;
  margin-right: 10px;
  font-size: 12px;
}
.elements_block .financiers .financier {
  display: inline-block;
  margin-right: 15px;
}
.elements_block .financiers .financier input {
  display: inline-block;
}
.elements_block .financiers .financier label {
  display: inline-block;
  color: #000;
}
.elements_block .financiers .financier label::before {
  width: 1em;
  height: 1em;
}
.elements_block .file_uploaded_files_list_content .financiers {
  width: calc(100% - 20px);
  background: #f9f9f9;
  left: 0px;
  margin-bottom: 0;
  display: block !important;
}
.page .elements_block .file_uploaded_files_list_content .financiers {
  display: none !important;
}
.survery_content_filters {
  display: block;
  margin-top: 15px;
}
.survery_content_filters .filter {
  display: inline-block;
  margin-right: 10px;
}
.survery_content_filters .filter label {
  font-weight: bold;
  margin-right: 10px;
}
.survery_content_filters .filter select {
  padding: 5px 10px;
  cursor: pointer;
}
.survery_content_filters .filter button {
  color: #FFF;
  background-color: #51a87d;
  border: 1px solid #fff;
  cursor: pointer;
  margin-right: 10px;
  padding: 5px 7px;
}
.survery_content_filters .filter button:hover {
  color: #51a87d;
  background-color: #fff;
  border: 1px solid #51a87d;
}
.survery_content_statuses__button {
  float: left;
  padding: 10px;
  font-family: 'OpenSans Regular', 'sans-serif';
  font-size: 12px;
  color: #000;
  margin-right: 5px;
  margin-bottom: 5px;
  height: 17px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.survery_content_statuses__button:hover {
  cursor: pointer;
  opacity: 0.9;
}
.survery_content_statuses__button.tooltip .tooltip_bubble {
  width: 400px;
}
.survery_content_statuses__button.disabled {
  background-color: #c8c8c8 !important;
}
.survery_content_statuses__button > img {
  float: left;
  margin-right: 4px;
}
.footer {
  position: relative;
  display: inline-block;
  background-color: #51a87d;
  width: 100%;
  height: 39px;
  overflow: hidden;
  min-width: 800px;
  z-index: 10;
  float: left;
}
.footer .copyright {
  float: left;
  color: #FFF;
  font-family: 'OpenSans Regular', 'sans-serif';
  font-size: 14px;
  line-height: 39px;
  margin-left: 20px;
}
.footer .footer_menu {
  float: right;
  line-height: 39px;
  margin-right: 20px;
}
.footer .footer_menu ul li {
  float: left;
  list-style: none;
  margin-left: 30px;
}
.footer .footer_menu ul li a {
  text-decoration: none;
  color: #FFF;
  font-family: 'OpenSans Regular', 'sans-serif';
  font-size: 14px;
}
.disabled_click {
  z-index: 1;
  position: relative;
}
.disabled_click:after {
  display: block;
  position: absolute;
  z-index: 2;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
  background: rgba(255, 255, 255, 0.4);
  content: ' ';
}
.html_content {
  display: none;
}
#sign_in_form {
  font-family: 'OpenSans Regular', 'sans-serif';
  display: block;
  padding: 0;
  text-align: left;
  width: 425px;
}
#sign_in_form .sign_in_content_cont {
  margin: 0px 15px 20px 15px;
  box-sizing: border-box;
}
#sign_in_form .box_title {
  font-size: 22px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
#sign_in_form .sing_in_remember_password {
  color: #FFF;
  position: relative;
  top: -15px;
  left: 83px;
  max-width: 50%;
}
#sign_in_form .sing_in_remember_password input {
  position: relative;
  top: 2px;
}
#sign_in_form .sing_in_button_overs a {
  color: #FFF;
}
#sign_in_form .sing_in_buttons {
  margin-top: 16px;
}
#sign_in_form .sing_in_buttons .sign_in_button_element {
  width: 50%;
  display: inline-block;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#sign_in_form .sing_in_buttons .sign_in_button_element.registration_button {
  padding-left: 3px;
}
#sign_in_form .sing_in_buttons .sign_in_button_element a {
  display: inline-block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color 0.6s easy;
  -moz-transition: background-color 0.6s easy;
  -ms-transition: background-color 0.6s easy;
  -o-transition: background-color 0.6s easy;
}
#sign_in_form .sing_in_buttons .sign_in_button_element a#login_button {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #51a87d;
  border: 1px solid #FFF;
  color: #fff;
  margin-right: 3px;
  transition: all 0.5s ease;
}
#sign_in_form .sing_in_buttons .sign_in_button_element a#login_button:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}
#sign_in_form .sing_in_buttons .sign_in_button_element a#registration_button {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #51a87d;
  border: 1px solid #FFF;
  color: #fff;
  transition: all 0.5s ease;
}
#sign_in_form .sing_in_buttons .sign_in_button_element a#registration_button:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}
#sign_in_form .input_placeholder {
  margin-bottom: 20px;
  position: relative;
}
#sign_in_form .input_placeholder > label {
  font-size: 16px;
  top: 12px;
  color: #fff;
  display: inline-block;
  width: 85px;
}
#sign_in_form .input_placeholder > input {
  border: 1px solid #efefef;
  padding: 0px 17px;
  margin: 0px;
  box-sizing: border-box;
  width: calc(100% - 90px);
  height: 42px;
  font-size: 16px;
  outline: none;
}
#sign_in_form .input_placeholder > input[type="checkbox"] {
  width: 20px;
}
#sign_in_form .input_placeholder .privacy_policy_text {
  display: inline;
  padding: 0;
  margin: 0;
  color: #fff;
  position: relative;
  top: -16px;
  left: 5px;
  font-size: 13px;
}
#sign_in_form .input_placeholder .sign_in_error {
  color: #ff0000;
  padding: 5px 17px 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
}
#forgot_password_container {
  min-width: 800px;
  max-width: 1200px;
  margin: 0px auto;
  margin-top: 50px;
}
#forgot_password_container #forgot_password_title {
  font-family: 'OpenSans Regular', 'sans-serif';
  font-size: 20px;
}
#forgot_password_container #forgot_password_description {
  font-family: 'OpenSans Regular', 'sans-serif';
  font-size: 16px;
}
#forgot_password_container .form_panel_content .form_panel_label_forgot_password {
  font-family: 'OpenSans Regular', 'sans-serif';
  font-size: 16px;
  font-weight: bold;
  line-height: 44px;
}
#forgot_password_container .form_panel_content input {
  border: 1px solid #000;
  padding: 0px 17px;
  margin: 0px;
  box-sizing: border-box;
  width: 100%;
  height: 42px;
  font-size: 16px;
  outline: none;
}
#forgot_password_container .form_panel_buttons .object_button_forgot_password {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #51a87d;
  border: 1px solid #FFF;
  color: #fff;
  margin-right: 3px;
  transition: all 0.5s ease;
  padding: 0px 10px;
}
#forgot_password_container .form_panel_buttons .object_button_forgot_password:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
}
#forgot_password_container .form_panel_buttons a {
  display: inline-block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 18px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color 0.6s easy;
  -moz-transition: background-color 0.6s easy;
  -ms-transition: background-color 0.6s easy;
  -o-transition: background-color 0.6s easy;
}
#message_container {
  text-align: center;
  font-size: 15px;
  font-family: 'OpenSans Regular', 'sans-serif';
}
#message_container #program_desc_txt {
  text-align: initial;
  list-style-position: inside;
  padding: 0 50px;
}
.customer_bar {
  text-align: center;
}
.customer_bar a,
.customer_bar div {
  display: inline-block;
  margin-right: 20px;
}
.survey_type_list {
  position: relative;
  margin: 30px auto;
  max-width: 1200px;
  min-width: 800px;
  font-size: 22px;
}
.survey_type_list ul li {
  font-size: 16px;
  list-style: none;
  padding: 10px 0 0 0;
}
.survey_type_list .dropbtn {
  background-color: #dddddd;
  color: #555555;
  padding: 6px 48px 6px 15px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  width: 254px;
  text-align: left;
  background-repeat: no-repeat;
  background-position: 223px 0px;
  background-image: url("../../images/images/add_new_row.png");
}
.survey_type_list .dropbtn:hover,
.survey_type_list .dropbtn:focus {
  background-color: #c8c8c8;
}
.survey_type_list .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.survey_type_list .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.survey_type_list .dropdown-content a:hover {
  background-color: #f1f1f1;
}
.survey_type_list .show {
  display: block;
}
.filled_surveys_cont {
  margin: 30px auto;
  max-width: 1200px;
  min-width: 800px;
  font-size: 22px;
}
.filled_surveys_cont .last_8_time {
  font-size: 10px;
  font-weight: bold;
  background: #ffffff75;
  padding: 0 5px;
  float: right;
}
.filled_surveys_cont__surveys_label {
  margin-bottom: 10px;
}
.filled_surveys_cont__surveys_label__empty {
  font-family: 'OpenSans Regular', 'sans-serif';
  font-size: 15px;
}
.filled_surveys_cont ul a {
  text-decoration: none;
}
.filled_surveys_cont ul a li {
  background-color: #aad2ad;
  width: 100%;
  line-height: 22px;
  font-size: 14.58px;
  list-style: none;
  margin-bottom: 5px;
  clear: both;
  display: flex;
  padding: 10px 0;
  vertical-align: top;
  align-items: center;
}
.filled_surveys_cont ul a li span {
  float: left;
  margin-left: 0;
  color: #242424;
}
.filled_surveys_cont ul a li .title {
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}
.filled_surveys_cont ul a li .datetime {
  float: right;
  margin-right: 0;
  font-size: 12px;
  display: none;
}
.filled_surveys_cont ul a li.with_time .title {
  width: calc(100% - 215px);
}
.filled_surveys_cont ul a li.with_time .datetime {
  width: 215px;
  display: inline-block;
}
.filled_surveys_cont ul a li .status_icon {
  float: right;
  display: none;
}
.filled_surveys_cont ul a li .status_icon img {
  float: none;
  margin-top: 12px;
}
.filled_surveys_cont ul a li:hover {
  opacity: 0.9;
}
.modal {
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.69);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.modal.closed {
  display: none;
}
.modal__modal-content {
  border-radius: 5px;
  position: relative;
  background-color: #FFF;
  width: 430px;
  margin: 0px auto;
}
.modal__modal-content__head {
  margin-top: 133px;
  height: 111px;
  border-radius: 5px 5px 0px 0px;
  padding-top: 1px;
}
.modal__modal-content__head.error {
  background-color: #e26e6e;
}
.modal__modal-content__head__logo {
  background-repeat: no-repeat;
  width: 66px;
  height: 64px;
  margin: 23px auto;
}
.modal__modal-content__head__logo.error {
  background-image: url("../../images/images/modal_icon_error.png");
}
.modal__modal-content__head__logo:hover {
  cursor: pointer;
}
.modal__modal-content__container {
  border-radius: 0px 0px 5px 5px;
  background-color: #FFF;
  padding: 0 20px 10px 20px;
}
.modal__modal-content__container__p.h3 {
  font-family: 'Roboto Bold', 'sans-serif';
  font-size: 20px;
  color: #555555;
  text-align: center;
  margin-top: 18px;
  margin-bottom: 11px;
}
.modal__modal-content__container__p.h4 {
  font-family: 'Roboto Bold', 'sans-serif';
  font-size: 16px;
  color: #555555;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 11px;
}
.modal__modal-content__container__close_button {
  display: block;
  border-radius: 10px;
  width: 92px;
  height: 25px;
  font-family: 'Roboto Regular', 'sans-serif';
  font-size: 11px;
  line-height: 25px;
  text-align: center;
  margin: 10px auto;
}
.modal__modal-content__container__close_button img {
  margin-top: 5px;
  margin-right: 4px;
  width: 9px;
  height: 9px;
}
.modal__modal-content__container__close_button.error {
  background-color: #e26e6e;
  color: #FFF;
}
.modal__modal-content__container__close_button:hover {
  cursor: pointer;
  background-color: #de4d4d;
}
.modal__modal-content__head__logo.success {
  background: url("../../images/images/modal_icon_success.png");
  background-size: cover;
}
.modal__modal-content__head.success,
.modal__modal-content__container__close_button.success {
  background-color: #2ca02c;
  color: #fff;
}
.modal__modal-content__container__close_button.success:hover {
  background-color: #2ca02c;
}
.content {
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.content .content_inner_cont {
  position: relative;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.slide_left {
  -webkit-animation: slide 1s forwards;
  animation: slide 1s forwards;
}
.slide_back {
  -webkit-animation: slide-back 1.5s forwards;
  animation: slide-back 1.5s forwards;
}
.action_buttons,
.navigation_buttons {
  list-style: none;
  position: fixed;
  top: 8px;
  left: 0px;
  z-index: 12;
  pointer-events: none;
}
.action_buttons li,
.navigation_buttons li {
  pointer-events: initial;
}
.action_buttons li.title_label,
.navigation_buttons li.title_label {
  font-family: 'OpenSans Regular', 'sans-serif';
  font-size: 15px;
  display: inline-block;
  margin-left: 10px;
  height: 159px;
  padding: 0;
  transition: all 0.4s ease;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 60px;
  width: 33px;
  background-image: url(../../images/images/funkciok_gomb.png);
}
.action_buttons li.title_label i,
.navigation_buttons li.title_label i {
  margin: 23px 13px 0 15px;
  float: left;
  display: block;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.action_buttons li p,
.navigation_buttons li p {
  font-family: 'OpenSans Bold', 'sans-serif';
  font-size: 15px;
  display: block;
  margin-left: -2px;
  min-height: 40px;
  width: 60px;
  border-radius: 0 25px 25px 0;
  border: 2px solid #000;
  background: #FFF;
  margin-bottom: 1em;
  transition: all 0.4s ease;
  color: #2980b9;
  text-decoration: none;
  line-height: 1;
  position: relative;
}
.action_buttons li p:hover,
.navigation_buttons li p:hover {
  cursor: pointer;
  width: auto;
  color: #fff;
}
.action_buttons li p:hover span,
.navigation_buttons li p:hover span {
  display: block;
}
.action_buttons li p:not(.question_survey ).disabled,
.navigation_buttons li p:not(.question_survey ).disabled {
  background-color: #efefef !important;
  border-color: #ccc !important;
  color: #666 !important;
}
.action_buttons li p span,
.navigation_buttons li p span {
  display: none;
  padding: 22px 60px 22px 15px;
  white-space: nowrap;
  transition: left 0.4s ease;
}
.action_buttons li p span small,
.navigation_buttons li p span small {
  display: block;
  width: 263px;
  font-size: 11px;
  padding-top: 5px;
  font-weight: normal;
  white-space: normal;
  line-height: 13px;
  text-align: left;
}
.action_buttons li p i,
.navigation_buttons li p i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.5em;
}
.action_buttons li .verify_survey,
.navigation_buttons li .verify_survey {
  background: rgba(82, 167, 125, 0.1);
  border-color: #52a77d;
  color: #27ae60;
}
.action_buttons li .verify_survey:hover,
.navigation_buttons li .verify_survey:hover {
  background: #52a77d;
}
.action_buttons li .save_survey,
.navigation_buttons li .save_survey {
  background: rgba(226 110 110, 0.1);
  border-color: #e26e6e;
  color: #e26e6e;
}
.action_buttons li .save_survey:hover,
.navigation_buttons li .save_survey:hover {
  background: #e26e6e;
}
.action_buttons li .send_survey_for_validate,
.navigation_buttons li .send_survey_for_validate {
  background: rgba(213, 145, 0, 0.1);
  border-color: #d59100;
  color: #d59100;
}
.action_buttons li .send_survey_for_validate:hover,
.navigation_buttons li .send_survey_for_validate:hover {
  background: #d59100;
}
.action_buttons li .send_survey,
.navigation_buttons li .send_survey {
  background: rgba(245, 171, 53, 0.1);
  border-color: #f5ab35;
  color: #f5ab35;
}
.action_buttons li .send_survey:hover,
.navigation_buttons li .send_survey:hover {
  background: #f5ab35;
}
.action_buttons li .delete_survey,
.navigation_buttons li .delete_survey {
  background: rgba(226, 110, 110, 0.1);
  border-color: #e26e6e;
  color: #e26e6e;
}
.action_buttons li .delete_survey:hover,
.navigation_buttons li .delete_survey:hover {
  background: #e26e6e;
}
.action_buttons li .print_survey,
.navigation_buttons li .print_survey {
  background: rgba(70, 62, 255, 0.1);
  border-color: #463eff;
  color: #463eff;
}
.action_buttons li .print_survey:hover,
.navigation_buttons li .print_survey:hover {
  background: #463eff;
}
.action_buttons li .print_empty_survey,
.navigation_buttons li .print_empty_survey {
  background: rgba(42, 104, 181, 0.1);
  border-color: #2a68b5;
  color: #2a68b5;
}
.action_buttons li .print_empty_survey:hover,
.navigation_buttons li .print_empty_survey:hover {
  background: #477cbd;
}
.action_buttons li .question_survey,
.navigation_buttons li .question_survey {
  background: rgba(8, 178, 133, 0.1);
  border-color: #08b285;
  color: #08b285;
}
.action_buttons li .question_survey:hover,
.navigation_buttons li .question_survey:hover {
  background: #08b285;
}
.navigation_buttons {
  top: 50%;
  right: 0px;
  left: initial;
  transform: translate(0, -50%);
}
.navigation_buttons li {
  text-align: right;
}
.navigation_buttons li p {
  border-radius: 25px  0 0 25px;
  border-right: 0;
  display: inline-block;
  margin: 10px 0 0;
}
.navigation_buttons li.title_label {
  display: none;
}
.navigation_buttons li .nav_back {
  background: rgba(226 110 110, 0.1);
  border-color: #e26e6e;
  color: #e26e6e;
}
.navigation_buttons li .nav_back:hover {
  background: #e26e6e;
}
.navigation_buttons li .nav_start {
  background: rgba(42, 104, 181, 0.1);
  border-color: #2a68b5;
  color: #2a68b5;
}
.navigation_buttons li .nav_start:hover {
  background: #2a68b5;
}
.navigation_buttons li .nav_open_all {
  background: rgba(245, 171, 53, 0.1);
  border-color: #f5ab35;
  color: #f5ab35;
}
.navigation_buttons li .nav_open_all:hover {
  background: #f5ab35;
}
.navigation_buttons li .nav_close_all {
  background: rgba(245, 171, 53, 0.1);
  border-color: #f5ab35;
  color: #f5ab35;
}
.navigation_buttons li .nav_close_all:hover {
  background: #f5ab35;
}
.navigation_buttons li .nav_end {
  background: rgba(42, 104, 181, 0.1);
  border-color: #2a68b5;
  color: #2a68b5;
}
.navigation_buttons li .nav_end:hover {
  background: #2a68b5;
}
@-webkit-keyframes slide {
  40% {
    left: -100%;
  }
  50% {
    left: -180%;
  }
  100% {
    left: 0;
  }
}
@keyframes slide {
  40% {
    left: -100%;
  }
  50% {
    left: -180%;
  }
  100% {
    left: 0;
  }
}
.icofont-gear {
  -webkit-animation: spin 4s infinite linear;
  margin-top: -10px;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.hidden_dotted_input_wrapper {
  display: inline-block;
  border-bottom: 1px dashed #000;
}
.hidden_dotted_input_wrapper input {
  border: 0;
  background-color: transparent;
  width: 100%;
  text-align: center;
  padding: 0;
}
.hidden_dotted_input_wrapper span {
  display: none;
}
.unique_real_owners .hidden_dotted_input_wrapper {
  height: auto;
  margin-bottom: 5px;
}
#after_login_form {
  font-family: 'OpenSans Regular', 'sans-serif';
  display: inline-block;
  padding: 0;
  text-align: left;
  width: 470px;
  margin: 0 auto 50px auto;
  background: #fff;
  color: #000;
  left: 50%;
  position: relative;
  margin-left: -235px;
}
#after_login_form h2 {
  margin: 0;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 27px;
  text-transform: uppercase;
}
#after_login_form .desc {
  margin: 10px 0 15px 0;
  display: inline-block;
  width: 100%;
  text-align: justify;
}
#after_login_form .password_change_content_cont {
  margin: 0;
  box-sizing: border-box;
}
#after_login_form .box_title {
  font-size: 22px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 12px;
  margin-bottom: 20px;
}
#after_login_form .password_changebutton_overs a {
  color: #FFF;
}
#after_login_form .password_change_buttons {
  padding: 10px 0 15px 0;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  background-color: #51a87d;
}
#after_login_form button {
  text-decoration: none !important;
  color: #FFF !important;
  font-size: 16px !important;
  padding: 15px !important;
  background-color: #51a87d;
  border-radius: 5px;
  display: inline-block;
  border: 1px solid #fff;
  margin-left: 135px;
}
#after_login_form button:hover {
  background-color: #FFF;
  color: #51a87d !important;
  cursor: pointer;
  border: 1px solid #51a87d !important;
}
#after_login_form .input_placeholder {
  position: relative;
  background-color: #51a87d;
  padding: 15px 15px 0 15px;
}
#after_login_form .input_placeholder > label {
  font-size: 16px;
  top: 12px;
  color: #fff;
  display: inline-block;
  width: 120px;
}
#after_login_form .input_placeholder > input {
  border: 1px solid #efefef;
  padding: 0px 17px;
  margin: 0px;
  box-sizing: border-box;
  width: calc(100% - 125px);
  height: 42px;
  font-size: 16px;
  outline: none;
}
#after_login_form .input_placeholder > input[type="checkbox"] {
  width: 20px;
}
#after_login_form .input_placeholder .privacy_policy_text {
  display: inline;
  padding: 0;
  margin: 0;
  color: #fff;
  position: relative;
  top: -16px;
  left: 5px;
  font-size: 13px;
}
#after_login_form .password_change_errors {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}
#after_login_form .password_change_error {
  color: #ff0000;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
}
.custom_content_cont .row.messages {
  background-color: #f9f9f9;
  padding: 10px;
  box-sizing: border-box;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
}
.custom_content_cont .row.messages h3 {
  font-size: 21px;
  margin: 0 5px;
  display: inline-block;
}
.custom_content_cont .row.messages .message-list {
  margin: 10px 0;
}
.custom_content_cont .row.messages .message-list .message-entry {
  margin: 0;
  font-size: 14px;
  display: inline-block;
  width: 100%;
  padding: 5px;
  background: #fff;
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid #eee;
}
.custom_content_cont .row.messages .message-list .message-entry:hover {
  background-color: #eee;
}
.custom_content_cont .row.messages .message-list .message-entry .msg_usr {
  background-color: #51a87d;
  color: #fff;
  position: relative;
  left: -5px;
  padding: 0 5px 3px 0;
  display: inline-block;
  width: calc(100% + 5px);
}
.custom_content_cont .row.messages .message-list .message-entry .time {
  color: #fff;
  background: #51a87d;
  padding: 2px 5px;
  display: inline-block;
  width: 58px;
  vertical-align: top;
  box-sizing: border-box;
  font: normal 12px Arial;
}
.custom_content_cont .row.messages .message-list .message-entry .message {
  display: inline-block;
  width: calc(100% - 63px);
  padding: 0 5px;
  margin-left: 5px;
  box-sizing: border-box;
  text-align: justify;
  font: normal 14px Arial;
  min-height: 18px;
  border: 5px solid #51a87d;
}
.custom_content_cont .row.messages .message-list .message-entry .message li {
  list-style-position: inside;
}
.custom_content_cont .row.messages .message-list .message-entry.archived {
  display: none;
  background: #ddd;
}
.custom_content_cont .row.messages .message-list .message-entry.archived .time {
  background: #999;
}
.custom_content_cont .row.messages .message-list .message-entry.archived .message {
  border: 5px solid #999;
}
.custom_content_cont .row.messages .message-list .message-entry.no-entry .message {
  width: 100%;
}
.custom_content_cont .row.messages .message-list .message-entry .btn_del {
  float: right;
  margin-top: 5px;
  display: inline-block;
  color: #FFF;
  background-color: #e26e6e;
  border: 1px solid #fff;
  padding: 5px 7px;
  cursor: pointer;
}
.custom_content_cont .row.messages .message-list .message-entry .btn_del:hover {
  color: #e26e6e;
  background-color: #fff;
  border: 1px solid #e26e6e;
}
.custom_content_cont .row.messages .message-controls #btn_all,
.custom_content_cont .row.messages .message-controls #btn_read,
.custom_content_cont .row.messages .message-controls #btn_new,
.custom_content_cont .row.messages .message-controls #btn_send {
  color: #FFF;
  background-color: #51a87d;
  border: 1px solid #fff;
  cursor: pointer;
  margin-right: 10px;
  padding: 5px 7px;
}
.custom_content_cont .row.messages .message-controls #btn_all:hover,
.custom_content_cont .row.messages .message-controls #btn_read:hover,
.custom_content_cont .row.messages .message-controls #btn_new:hover,
.custom_content_cont .row.messages .message-controls #btn_send:hover {
  color: #51a87d;
  background-color: #fff;
  border: 1px solid #51a87d;
}
.custom_content_cont .row.messages .message-controls #btn_all {
  float: right;
  margin-right: 6px;
}
.custom_content_cont .row.messages .message-controls #btn_new {
  float: right;
  margin-right: 6px;
}
.custom_content_cont .row.messages .message-controls .message-text {
  padding: 15px 0 5px 0;
  display: inline-block;
  width: 100%;
}
.custom_content_cont .row.messages .message-controls .message-text textarea {
  display: inline-block;
  width: 99%;
  min-height: 594px;
}
.custom_content_cont .row.messages .message-controls .message-text .form_panel_label {
  width: 100%;
}
.custom_content_cont .row.messages .message-controls .message-text .form_panel_category {
  width: 100%;
  box-sizing: border-box;
}
.custom_content_cont .row.messages .message-controls .message-text .form_panel_category .mce-panel {
  width: 100% !important;
}
@media screen and (max-width: 1540px) {
  .page .header .header_menu ul li {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1600px) {
  .header_menu ul li {
    display: none;
  }
  .header_menu .company_selector_title {
    display: block;
  }
  .header_menu .header_menu__profile {
    display: block !important;
  }
  .header_menu .login_button {
    display: inline !important;
  }
}
@media screen and (max-width: 1200px) {
  .row-1200 {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 950px) {
  .company_selector_title {
    display: none !important;
  }
}
.xdsoft_datetimepicker .xdsoft_scrollbar > .xdsoft_scroller {
  background: #3af !important;
}
.zip_selector {
  position: absolute;
  top: 0;
  left: 0;
}
#time_to_logout {
  position: absolute;
  right: 15px;
  top: 115px;
  color: #ff3832;
  z-index: 1;
}
#time_to_logout.hidden {
  display: none;
}
#time_to_logout span {
  padding-left: 5px;
  font-weight: bold;
}
#survey_consultant_name,
#survey_ukv_name {
  color: #000000;
  z-index: 1;
  position: fixed;
  right: 15px;
  bottom: 39px;
  background: #fff;
  padding: 10px;
}
#survey_consultant_name.hidden,
#survey_ukv_name.hidden {
  display: none;
}
#survey_consultant_name span,
#survey_ukv_name span {
  padding-left: 5px;
  font-weight: bold;
}
#survey_ukv_name {
  bottom: 69px;
}
.in_survey_buttons {
  display: inline-block;
  width: 100%;
  text-align: center;
  position: relative;
  top: -35px;
}
#download_all_docs {
  width: auto;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  height: 47px;
  margin-bottom: 10px;
}
#download_all_docs button {
  color: #FFF;
  background-color: #51a87d;
  border: 1px solid #fff;
  cursor: pointer;
  padding: 15px 20px;
}
#download_all_docs button:hover {
  color: #51a87d;
  background-color: #fff;
  border: 1px solid #51a87d;
}
.financier_status_btn,
.insurance_status_btn {
  display: inline-block;
  vertical-align: top;
}
.financier_status_btn button,
.insurance_status_btn button {
  border: 0;
  padding: 0 20px;
  height: 47px;
  line-height: 47px;
  border: 1px solid #fff;
  margin-left: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 7px !important;
  border: 2px solid #51a87d !important;
}
.financier_status_btn button img,
.insurance_status_btn button img {
  margin-right: 4px;
  position: relative;
  top: 2px;
}
.financier_status_btn button:hover,
.insurance_status_btn button:hover {
  text-decoration: none;
}
#help_phone_number {
  font-size: 15px !important;
}
#logout_survey_timer {
  width: 100%;
  background-color: red;
  color: #fff;
  padding: 5px 0;
  margin: 5px 0 0;
  display: none;
}
#logout_survey_timer b {
  font-size: 15px;
}
#logout_survey_btn {
  color: #FFF;
  background-color: #e26e6e;
  border: 1px solid #fff;
  cursor: pointer;
  margin-right: 10px;
  padding: 5px 7px;
  margin-top: 5px;
  display: none;
}
#logout_survey_btn:hover {
  color: #e26e6e;
  background-color: #fff;
  border: 1px solid #e26e6e;
}
#messages_div_selector {
  width: 1200px;
  margin: 0 auto;
  text-align: left;
  display: block;
  height: 35px;
}
#messages_div_selector div {
  display: inline-block;
  width: auto;
  padding: 10px 25px 10px 25px;
  background: #cacaca;
  color: #fff;
  cursor: pointer;
  border-radius: 15px 15px 0 0;
}
#messages_div_selector div.active {
  background: #51a87d;
  top: -5px;
  padding-bottom: 15px;
  position: relative;
}
.survey_print_customer_name {
  display: none;
}
.file_tag {
  display: inline-block;
  width: 100%;
}
.file_tag input {
  width: 99%;
  display: inline-block;
  margin: 0 0 5px 5px;
  border: 0;
  border-left: 10px solid #2a68b5;
  background-color: #e9eff8;
  padding: 1px 5px;
  box-sizing: border-box;
}
.file_element_file_radios.hidden {
  display: inline-block;
}
.file_element_file_radios.hidden * {
  display: none;
}
.download_entry_docs_btn {
  color: #457bbe;
  font-size: 12px;
  padding-top: 5px;
  display: inline-block;
  cursor: pointer;
  min-width: 200px;
}
.download_entry_docs_btn:hover {
  text-decoration: underline;
}
.privacy_error_msg {
  display: inline-block;
  color: red;
  font-size: 16px;
  margin-top: 50px;
}
.in_survey_alert_popup_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #cccccc85;
  z-index: 100;
  display: none;
}
.in_survey_alert_popup_container .in_survey_alert_popup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  padding: 0;
  border: 1px solid #f00;
  box-sizing: border-box;
  background-color: #fff;
}
.in_survey_alert_popup_container .in_survey_alert_popup .popup_title {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  background-color: #f00;
  color: #fff;
  font-size: 14px;
  line-height: 32px;
  height: 32px;
  font-weight: bold;
  padding: 0 10px;
}
.in_survey_alert_popup_container .in_survey_alert_popup .popup_content {
  display: inline-block;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
.in_survey_alert_popup_container .in_survey_alert_popup .popup_content p {
  display: inline-block;
  padding: 10px 0 0 0;
  margin: 0;
  font-size: 14px;
  line-height: 19px;
  color: #000;
  text-align: center;
}
.in_survey_alert_popup_container .in_survey_alert_popup .popup_buttons {
  display: inline-block;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  text-align: right;
}
.in_survey_alert_popup_container .in_survey_alert_popup .popup_buttons button {
  display: inline-block;
  padding: 0 10px;
  margin: 0;
  font-size: 14px;
  line-height: 32px;
  height: 32px;
  color: #fff;
  border: 0;
  cursor: pointer;
  background-color: #08b285;
}
.in_survey_alert_popup_container .in_survey_alert_popup .popup_buttons button:hover {
  background-color: #0c9772;
}
