/* Common styles */
/* line 5, sassy.scss */
body {
  padding-bottom: 50px;
}

/* line 9, sassy.scss */
input[type=text], textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border: 1px solid #DDDDDD;
}

/* line 19, sassy.scss */
input[type=text]:focus, textarea:focus {
  box-shadow: 0 0 5px #e88a24;
  padding: 3px 0px 3px 3px;
  margin: 5px 1px 3px 0px;
  border: 1px solid #e88a24;
}

/* line 26, sassy.scss */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #2b2a33 !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* line 42, sassy.scss */
.checkboxes label {
  display: inline-block;
  box-sizing: border-box;
  user-select: none;
  position: relative;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  cursor: pointer;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.1);
  text-align: center;
  vertical-align: middle;
}
/* line 57, sassy.scss */
.checkboxes label:after {
  content: '';
  display: block;
  margin-left: 3px;
  margin-top: -2px;
  width: 6px;
  height: 12px;
  border: solid rgba(0, 0, 0, 0.1);
  border-width: 0 2px 2px 0;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* line 68, sassy.scss */
.checkboxes label:hover {
  border: 2px solid rgba(0, 0, 0, 0.5);
  color: black;
}
/* line 72, sassy.scss */
.checkboxes label:active {
  -moz-transition-duration: 0;
  -o-transition-duration: 0;
  -webkit-transition-duration: 0;
  transition-duration: 0;
  -webkit-filter: brightness(0.8);
}
/* line 78, sassy.scss */
.checkboxes input {
  display: none;
}
/* line 81, sassy.scss */
.checkboxes input:checked + label {
  color: #852C2E;
}
/* line 84, sassy.scss */
.checkboxes input:checked + .green-background {
  border-color: #852C2E;
  background: #852C2E;
}
/* line 87, sassy.scss */
.checkboxes input:checked + .green-background:after {
  content: '';
  display: block;
  margin-left: 3px;
  margin-top: -2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 104, sassy.scss */
.radio-buttons label {
  padding: 8px 0 7px 28px;
}
/* line 107, sassy.scss */
.radio-buttons input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0 2rem;
  width: 2rem;
  height: 2rem;
  outline: none;
  background: rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 0 8px white, 0 0 0 2px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 0 8px white, 0 0 0 2px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 0 8px white, 0 0 0 2px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  -moz-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  cursor: pointer;
}
/* line 118, sassy.scss */
.radio-buttons input[type="radio"]:hover, .radio-buttons input[type="radio"]:checked {
  background: rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0 0 0 6px white, 0 0 0 2px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 0 0 0 6px white, 0 0 0 2px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 0 6px white, 0 0 0 2px rgba(0, 0, 0, 0.5);
}
/* line 123, sassy.scss */
.radio-buttons input[type="radio"]:checked {
  background: #852C2E;
  -moz-box-shadow: inset 0 0 0 6px white, 0 0 0 2px #852C2E;
  -webkit-box-shadow: inset 0 0 0 6px white, 0 0 0 2px #852C2E;
  box-shadow: inset 0 0 0 6px white, 0 0 0 2px #852C2E;
}
/* line 129, sassy.scss */
.radio-buttons div {
  display: inline;
}
/* line 131, sassy.scss */
.radio-buttons div.year_radio {
  margin-right: 15px;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* line 163, sassy.scss */
.btn-orange {
  background: #e88a24;
  text-transform: uppercase;
  padding: 15px 40px;
  margin: 30px auto;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: bold;
}

/* line 174, sassy.scss */
input[type="checkbox"] {
  background-color: #fff;
}

/* line 178, sassy.scss */
input[name="search"] {
  padding-left: 40px;
}

/* line 182, sassy.scss */
input[name="search"]:focus {
  padding-left: 40px;
}

/* line 186, sassy.scss */
button[name="addyear"] {
  margin: 15px;
  height: 40px;
  padding: 10px 40px;
}

/* line 192, sassy.scss */
select[name="newyear"] {
  height: 40px;
  padding: 10px;
  position: relative;
  top: 3px;
}

/* line 199, sassy.scss */
label[for='selectall'] {
  position: relative;
  top: 8px;
  left: 5px;
  text-transform: uppercase;
  font-size: 12px;
}

/* line 207, sassy.scss */
.search-container {
  padding: 0px;
  color: #b6b2b8;
}

/* line 212, sassy.scss */
.search-container:before {
  content: '**';
  position: absolute;
  top: 10px;
  left: 10px;
  color: #b6b2b8;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f002";
  z-index: 1;
}

/* line 225, sassy.scss */
.form-control:focus {
  box-shadow: 0 0 5px #e88a24;
  /*padding: 3px 0px 3px 3px;*/
  border: 1px solid #e88a24;
}

/*
::-webkit-input-placeholder {
    font-size: 12px;
    font-style: italic;
}
::-moz-placeholder {
    font-size: 12px;
    font-style: italic;
}
:-ms-input-placeholder {
    font-size: 12px;
    font-style: italic;

}
:-moz-placeholder {
    font-size: 12px;
    font-style: italic;
}*/
/* line 250, sassy.scss */
.custom-input-height {
  height: 36px;
}

/* line 253, sassy.scss */
.common-overflow {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* line 258, sassy.scss */
.instructions {
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 37px;
  padding-right: 50px;
}

/* line 265, sassy.scss */
body {
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

/* line 270, sassy.scss */
.avatar {
  border-radius: 50%;
}

/* line 274, sassy.scss */
.plus {
  color: #842c2d;
}

/* line 278, sassy.scss */
.active i {
  color: #fff;
}

/* line 281, sassy.scss */
.active i:hover {
  color: #fff;
}

/* line 285, sassy.scss */
a {
  color: #842c2d;
  text-decoration: none;
}

/* line 290, sassy.scss */
a:hover {
  color: #842c2d;
}

/* line 294, sassy.scss */
.username {
  font-weight: bold;
  color: #842c2d;
}

/* line 300, sassy.scss */
.parent {
  border-top: 1px solid #dad8db;
}

/* line 303, sassy.scss */
.parent:first-of-type {
  border-top: none;
}

/* line 306, sassy.scss */
.child {
  padding: 0 20px;
}

/* line 310, sassy.scss */
.form-control {
  border-radius: 0;
  padding-left: 40px;
}

/* line 315, sassy.scss */
.details-row {
  font-size: 14px;
  font-weight: bold;
  padding: 20px 0;
}
/* line 319, sassy.scss */
.details-row:not(:last-child) {
  border-bottom: 1px solid #dad8db;
}

/* line 324, sassy.scss */
.datepicker-dropdown {
  width: 210px;
}

/* Header */
/* line 330, sassy.scss */
.header {
  height: 65px;
  padding: 0 30px;
}
/* line 333, sassy.scss */
.header .logo {
  padding: 20px 0;
}
/* line 335, sassy.scss */
.header .logo .mobile-menu-button {
  display: none;
}
/* line 339, sassy.scss */
.header img {
  margin-right: 15px;
  display: inline;
}
/* line 343, sassy.scss */
.header h5 {
  font-size: 16px;
  color: #616060;
  display: inline;
}
/* line 348, sassy.scss */
.header .settings {
  padding: 10px 0px;
  position: relative;
  text-align: right;
  color: #aaa2a2;
}
/* line 353, sassy.scss */
.header .settings .desktop-menu-button {
  display: initial;
}
/* line 357, sassy.scss */
.header .dropdown {
  display: inline-block;
}
/* line 360, sassy.scss */
.header .dropdown > img {
  margin: 0 20px 0 15px;
}
/* line 363, sassy.scss */
.header .dropdown-menu {
  right: -2px;
  padding: 10px 15px;
}
/* line 367, sassy.scss */
.header .dropdown-toggle::after {
  display: none;
}
/* line 370, sassy.scss */
.header .fa-bars {
  top: 6px;
  position: relative;
  color: #aaa2a2;
}
/* line 375, sassy.scss */
.header .fas {
  width: 28px;
}
/* line 378, sassy.scss */
.header .fas:hover {
  cursor: pointer;
  color: #842c2d;
}
/* line 382, sassy.scss */
.header .far:hover {
  cursor: pointer;
  color: #842c2d;
}

/* line 388, sassy.scss */
.header-tabs {
  background: #f6f6f6;
  padding: 25px 0 0;
  text-align: center;
}
/* line 392, sassy.scss */
.header-tabs .tabs-row {
  padding: 0 15px;
}
/* line 395, sassy.scss */
.header-tabs .trapeze-button {
  height: 55px;
}
/* line 397, sassy.scss */
.header-tabs .trapeze-button.active-trapeze-button {
  background: url(../img/trapeze-button.png);
  background-size: cover;
  background-repeat: no-repeat;
}
/* line 403, sassy.scss */
.header-tabs a {
  position: absolute;
  width: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  color: #842c2d;
}
/* line 411, sassy.scss */
.header-tabs a:hover {
  text-decoration: none;
}

/* line 417, sassy.scss */
.app-subline-container {
  background: #dedede;
  font-size: 12px;
  padding: 15px 0;
  text-transform: uppercase;
}
/* line 422, sassy.scss */
.app-subline-container a {
  color: #842c2d;
  text-decoration: none;
}
/* line 426, sassy.scss */
.app-subline-container .breadcrumb {
  font-weight: 800;
  background: transparent;
  margin-bottom: 0;
  padding: 0;
}
/* line 431, sassy.scss */
.app-subline-container .breadcrumb.active {
  font-weight: 300;
}
/* line 435, sassy.scss */
.app-subline-container .breadcrumb .breadcrumb-item:before {
  display: inline-block;
  color: #6c757d;
  content: ">";
}
/* line 440, sassy.scss */
.app-subline-container .breadcrumb .breadcrumb-item:first-child:before {
  content: '';
}

/* line 447, sassy.scss */
.app-submenu-container {
  background: #e6e6e6;
}
/* line 449, sassy.scss */
.app-submenu-container .tab {
  width: auto;
  padding: 0 4px;
}
/* line 452, sassy.scss */
.app-submenu-container .tab a {
  background: #efefef;
  font-weight: 800;
  color: #000;
  height: 65px;
  display: block;
  margin: 20px 0;
  border: 1px solid grey;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px;
}
/* line 464, sassy.scss */
.app-submenu-container .tab a:hover {
  text-decoration: none;
}

/* line 471, sassy.scss */
.app-submenu-container-new {
  padding: 70px 0;
  background: #8a383a;
  color: #fff;
  display: none;
}
/* line 476, sassy.scss */
.app-submenu-container-new .menu-title {
  text-transform: uppercase;
}
/* line 480, sassy.scss */
.app-submenu-container-new .app-submenu-new a {
  color: #fff;
  font-weight: bold;
}
/* line 483, sassy.scss */
.app-submenu-container-new .app-submenu-new a:hover {
  text-decoration: none;
}
/* line 487, sassy.scss */
.app-submenu-container-new .app-submenu-new p {
  padding-top: 20px;
}

/* line 494, sassy.scss */
.app-submenu a {
  display: block;
  padding: 20px 0px;
  margin: 20px 0;
  border: 1px solid grey;
  text-align: center;
}
/* line 500, sassy.scss */
.app-submenu a.active {
  background-color: #852C2E;
  color: white;
}

/* line 507, sassy.scss */
.entry {
  background: #e6e6e6;
  height: 100vh;
}
/* line 510, sassy.scss */
.entry .row {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
/* line 516, sassy.scss */
.entry .row .col-md-6 .inner-content {
  position: relative;
  top: 50%;
  display: inherit;
  transform: translateY(-50%);
  padding: 25px 0;
}
/* line 522, sassy.scss */
.entry .row .col-md-6 .inner-content.logo-content {
  min-height: 150px;
}
/* line 526, sassy.scss */
.entry .row .col-md-6:nth-child(2) {
  border-left: 1px solid #616060;
}
/* line 530, sassy.scss */
.entry .row h4 {
  color: #616060;
  width: 100%;
  margin-top: 15px;
  float: right;
  text-align: right;
  padding-right: 50px;
}
/* line 538, sassy.scss */
.entry .row h5 {
  padding-left: 50px;
  color: #616060;
  padding-top: 25px;
}
/* line 543, sassy.scss */
.entry .row img {
  float: right;
  padding-right: 50px;
}
/* line 547, sassy.scss */
.entry .row ul {
  padding-left: 50px;
}
/* line 549, sassy.scss */
.entry .row ul li {
  display: inline-block;
  padding: 0 15px;
}
/* line 552, sassy.scss */
.entry .row ul li a {
  font-size: 24px;
}
/* line 554, sassy.scss */
.entry .row ul li a.active {
  color: #852C2E;
}
/* line 557, sassy.scss */
.entry .row ul li a.unactive {
  color: #616060;
  cursor: default;
}
/* line 561, sassy.scss */
.entry .row ul li a:hover {
  text-decoration: none;
}
/* line 565, sassy.scss */
.entry .row ul li:first-child {
  padding-left: 0px;
}
/* line 567, sassy.scss */
.entry .row ul li:first-child:after {
  content: " ";
  position: absolute;
  display: block;
  height: 35px;
  left: 175px;
  width: 1px;
  top: 25px;
  background: #616060;
}
/* line 578, sassy.scss */
.entry .row ul li.active {
  color: #852C2E;
}
/* line 583, sassy.scss */
.entry .row form {
  padding-left: 50px;
  margin-top: 20px;
}
/* line 586, sassy.scss */
.entry .row form label {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #616060;
}
/* line 591, sassy.scss */
.entry .row form label[for='remember'] {
  font-weight: 800;
  color: #333333;
}
/* line 596, sassy.scss */
.entry .row form input {
  max-width: 350px;
  border: 1px solid #b6b2b8;
  height: 35px;
  line-height: 14px;
  font-size: 14px;
  padding-left: 12px;
  font-weight: 800;
}
/* line 605, sassy.scss */
.entry .row form input[type="password"] {
  padding-top: 5px;
}
/* line 609, sassy.scss */
.entry .row form input[type="checkbox"] {
  height: auto;
  position: relative;
  top: 2px;
  margin-right: 3px;
}
/* line 615, sassy.scss */
.entry .row form input[type="text"] {
  margin: 0px;
}
/* line 618, sassy.scss */
.entry .row form input:focus {
  border-color: #852C2E;
}
/* line 622, sassy.scss */
.entry .row form .btn {
  background: #852C2E;
  border-radius: 0px;
  height: 45px;
  border: none;
  border-right: 5px solid #852C2E;
  padding: 10px 50px;
}
/* line 629, sassy.scss */
.entry .row form .btn:active {
  background: #616060;
  border: none;
  border-right: 5px solid #616060;
  outline: none;
}
/* line 636, sassy.scss */
.entry .row form .btn-link {
  font-size: 14px;
  display: block;
  color: #852C2E;
  font-weight: 800;
  margin-top: 20px;
}
/* line 643, sassy.scss */
.entry .row form .fas {
  padding-right: 10px;
}
/* line 646, sassy.scss */
.entry .row form .register {
  margin-top: 15px;
}
/* line 650, sassy.scss */
.entry .row .alert {
  position: relative;
  max-width: 350px;
  border-radius: 0px;
  background: #ddd3d4;
  border: 1px solid #852C2E;
  color: #000;
  font-size: 12px;
  margin-top: 1rem;
  margin-left: 50px;
  -webkit-animation: fadein 1s;
  -moz-animation: fadein 1s;
  -ms-animation: fadein 1s;
  -o-animation: fadein 1s;
  animation: fadein 1s;
}
/* line 665, sassy.scss */
.entry .row .alert:after {
  content: url("../img/alert-decoration.png");
  position: absolute;
  top: 42px;
  left: 16px;
}
/* line 677, sassy.scss */
.entry#panel-reset h5 {
  color: #852C2E;
}
/* line 681, sassy.scss */
.entry#panel-reset ul li {
  padding: 0 10px;
}
/* line 683, sassy.scss */
.entry#panel-reset ul li:first-child {
  padding-left: 0px;
}
/* line 685, sassy.scss */
.entry#panel-reset ul li:first-child:after {
  content: " ";
  position: absolute;
  display: block;
  height: 15px;
  left: 125px;
  width: 1px;
  bottom: 45px;
  top: auto;
}
/* line 696, sassy.scss */
.entry#panel-reset ul li a {
  font-size: 14px;
  font-weight: bold;
}

/* line 707, sassy.scss */
.areaform .odd {
  background-color: #f7f7f7;
}
/* line 710, sassy.scss */
.areaform .d-inline {
  margin-left: 5px;
}
/* line 714, sassy.scss */
.areaform .info_line .d-inline {
  padding: 0px;
}
/* line 718, sassy.scss */
.areaform .info_line .name_label {
  margin-left: 0px;
}

/* line 726, sassy.scss */
.processform .odd {
  background-color: #f7f7f7;
}
/* line 729, sassy.scss */
.processform .d-inline {
  margin-left: 5px;
}
/* line 733, sassy.scss */
.processform .info_line .d-inline {
  padding: 0px;
}
/* line 737, sassy.scss */
.processform .info_line .name_label {
  margin-left: 0px;
}
/* line 741, sassy.scss */
.processform .delete-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 16px;
  height: 16px;
  opacity: 0.3;
  cursor: pointer;
}
/* line 750, sassy.scss */
.processform .delete-icon:hover {
  opacity: 1;
}
/* line 753, sassy.scss */
.processform .delete-icon:before, .processform .delete-icon:after {
  position: absolute;
  left: 8px;
  content: ' ';
  height: 16px;
  width: 2px;
}
/* line 761, sassy.scss */
.processform .delete-icon:before, .processform .delete-icon:after {
  background-color: #fff;
}

/* line 766, sassy.scss */
#panel-survey-list {
  /*
   * Copied/duplicated from #panel-survey-chart-list
   */
}
/* line 767, sassy.scss */
#panel-survey-list .main-status {
  padding: 30px 0;
  font-size: 14px;
  text-transform: uppercase;
}
/* line 772, sassy.scss */
#panel-survey-list .no_log_data {
  text-align: center;
  display: block;
}
/* line 777, sassy.scss */
#panel-survey-list .mCSB_scrollTools {
  right: -30px;
  margin: 0px;
}
/* line 782, sassy.scss */
#panel-survey-list #export-form {
  height: 520px;
  overflow-y: scroll;
  overflow-x: hidden;
  width: calc(100%);
  margin-left: -15px;
  margin-right: -15px;
}
/* line 791, sassy.scss */
#panel-survey-list .showdetails {
  cursor: pointer;
}
/* line 794, sassy.scss */
#panel-survey-list .parent {
  padding: 20px;
  background: #f6f6f6;
  position: relative;
  margin-right: 0px;
}
/* line 799, sassy.scss */
#panel-survey-list .parent.manage-panel {
  margin-right: -15px;
}
/* line 805, sassy.scss */
#panel-survey-list .parent .row div:nth-child(1) {
  text-align: left;
  padding-left: 39px;
}
/* line 808, sassy.scss */
#panel-survey-list .parent .row div:nth-child(1).manage-panel {
  padding-left: 15px;
}
/* line 813, sassy.scss */
#panel-survey-list .parent .row div:nth-child(3) .task-status {
  color: #46454d;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 12px;
}
/* line 818, sassy.scss */
#panel-survey-list .parent .row div:nth-child(3) .task-status i {
  color: #b6b2b8;
}
/* line 823, sassy.scss */
#panel-survey-list .parent .row div:nth-child(4) {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
}
/* line 827, sassy.scss */
#panel-survey-list .parent .row div:nth-child(4) b {
  /*font-size: 1rem;*/
  text-transform: none;
  padding-left: 5px;
}
/* line 833, sassy.scss */
#panel-survey-list .parent .row div.showdetails {
  color: #852C2E;
  text-transform: uppercase;
  font-size: 14px;
}
/* line 837, sassy.scss */
#panel-survey-list .parent .row div.showdetails b:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  margin-left: 5px;
  padding-top: 2px;
  position: relative;
  top: 1px;
}
/* line 848, sassy.scss */
#panel-survey-list .parent .row div.opened-details b:after {
  content: "\f106";
}
/* line 853, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) {
  position: absolute;
  right: 0px;
}
/* line 856, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown {
  display: inline-block;
}
/* line 858, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-toggle {
  display: block;
  width: 63px;
  top: -5px;
  height: 33px;
  transform: rotate(90deg);
  right: -35px;
  border-radius: 0px;
  background: #e6e6e6;
  position: relative;
  border: transparent;
  cursor: pointer;
  outline: none;
}
/* line 871, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-toggle:before {
  content: '...';
  font-size: 30px;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #342a32;
}
/* line 880, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-toggle:after {
  display: none;
}
/* line 883, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-toggle:hover {
  background: #2b2a33;
}
/* line 885, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-toggle:hover:before {
  color: #fff;
}
/* line 889, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-toggle.opened-dropdown {
  background: #dcd3d3;
}
/* line 892, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-toggle.opened-dropdown:hover:before {
  color: #342a32;
}
/* line 898, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-menu {
  padding: 18px 15px;
  left: -188px;
  top: -2px;
}
/* line 905, sassy.scss */
#panel-survey-list .parent .row div .supervisor {
  color: #212529;
}
/* line 908, sassy.scss */
#panel-survey-list .parent .row div .supervisor b:after {
  display: none !important;
}
/* line 911, sassy.scss */
#panel-survey-list .parent .row div .supervisor b:before {
  display: none !important;
}
/* line 918, sassy.scss */
#panel-survey-list .parent.opened-tab {
  border-bottom: 1px solid #dad8db;
  border-top: 8px solid #842c2d;
  background: #eae1e2;
}
/* line 925, sassy.scss */
#panel-survey-list .parent.opened-tab .row div:nth-child(5) b:after {
  content: "\f106";
}
/* line 936, sassy.scss */
#panel-survey-list .parent.opened-tab-log .row div:nth-child(5) b:after {
  content: "\f106";
}
/* line 945, sassy.scss */
#panel-survey-list .child {
  background: #f6f0f0;
  padding: 0 20px;
}
/* line 948, sassy.scss */
#panel-survey-list .child .first {
  display: block;
  font-weight: normal;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 955, sassy.scss */
#panel-survey-list .select-bar {
  padding: 0 0 0 28px;
  margin-top: 30px;
  margin-bottom: 30px;
}
/* line 959, sassy.scss */
#panel-survey-list .select-bar input#selectall {
  position: relative;
  top: 10px;
}
/* line 964, sassy.scss */
#panel-survey-list .select-bar input[name=search] {
  height: 35px;
}
/* line 969, sassy.scss */
#panel-survey-list .summary {
  display: none;
  background: #000;
  min-height: 100px;
  width: 100%;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  margin-left: -15px;
}
/* line 978, sassy.scss */
#panel-survey-list .summary h6 {
  font-weight: 400;
  padding-left: 24px;
}
/* line 982, sassy.scss */
#panel-survey-list .summary .row {
  margin-right: 20px;
  margin-left: 20px;
}
/* line 985, sassy.scss */
#panel-survey-list .summary .row #summary-table {
  width: 100%;
}
/* line 987, sassy.scss */
#panel-survey-list .summary .row #summary-table #summary-head {
  padding: 10px 0;
  margin-left: -10px !important;
  margin-right: 20px;
}
/* line 993, sassy.scss */
#panel-survey-list .summary .row #summary-table #summary-body .row {
  padding: 5px 0;
  margin-left: -10px !important;
}
/* line 1001, sassy.scss */
#panel-survey-list #export-button-container {
  display: none;
  height: 130px;
  text-align: center;
}
/* line 1005, sassy.scss */
#panel-survey-list #export-button-container #export {
  padding: 20px 50px;
  color: #fff;
  background: #e88a24;
  border: none;
  border-radius: 0;
  position: relative;
  top: 50px;
  display: inline-block;
}
/* line 1016, sassy.scss */
#panel-survey-list .no_side_padding {
  padding-left: 0px;
  padding-right: 0px;
}
/* line 1020, sassy.scss */
#panel-survey-list .no_top_bottom_padding {
  padding-top: 0px;
  padding-bottom: 0px !important;
}
/* line 1025, sassy.scss */
#panel-survey-list .manage-panel-filter .sortby {
  color: #fff;
}
/* line 1027, sassy.scss */
#panel-survey-list .manage-panel-filter .sortby:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0dc";
  left: 8px;
  position: relative;
  right: -10px;
}
/* line 1035, sassy.scss */
#panel-survey-list .manage-panel-filter .sortby:hover {
  text-decoration: none;
}
/* line 1044, sassy.scss */
#panel-survey-list .filter_section {
  margin-bottom: 5px;
}
/* line 1046, sassy.scss */
#panel-survey-list .filter_section div {
  padding-left: 0;
}
/* line 1048, sassy.scss */
#panel-survey-list .filter_section div:last-child {
  padding-right: 0;
}
/* line 1051, sassy.scss */
#panel-survey-list .filter_section div input {
  padding: 8px 15px 8px 15px;
  height: 43px;
}
/* line 1059, sassy.scss */
#panel-survey-list .select-wrapper select {
  padding: 7px 35px 7px 10px !important;
  font-weight: 800;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* line 1067, sassy.scss */
#panel-survey-list .select-wrapper select::-ms-expand {
  display: none;
}
/* line 1070, sassy.scss */
#panel-survey-list .select-wrapper:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  position: absolute;
  top: 15px;
  right: 30px;
  color: #842b2d;
  pointer-events: none;
}
/* line 1082, sassy.scss */
#panel-survey-list .form-control.progress_dropdown {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  margin: 5px 1px 3px 0px;
  border: 1px solid #DDDDDD;
  height: 43px;
}
/* line 1093, sassy.scss */
#panel-survey-list .auswerten {
  margin: 5px 1px 3px 0px;
  padding-bottom: 11px;
  padding-top: 10px;
  width: 100%;
}
/* line 1098, sassy.scss */
#panel-survey-list .auswerten:before {
  content: url("../img/Auswertung_icon_button_16x16.png");
  position: relative;
  z-index: 5;
  top: 3px;
  left: -15px;
}

/* line 1111, sassy.scss */
#panel-survey-chart-list {
  padding-top: 20px;
}
/* line 1113, sassy.scss */
#panel-survey-chart-list .parent {
  padding: 20px;
  background: #842b2d;
  cursor: pointer;
  color: white;
  /*text-transform: uppercase;*/
  /*font-weight: bold;*/
  font-size: 15px;
}
/* line 1122, sassy.scss */
#panel-survey-chart-list .parent .showdetails b:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  margin-left: 5px;
  padding-top: 2px;
  position: relative;
  top: 1px;
}
/* line 1132, sassy.scss */
#panel-survey-chart-list .parent .showdetails.opened-details b:after {
  content: "\f106";
}
/* line 1138, sassy.scss */
#panel-survey-chart-list .parent .showdetails.real_graph_position b {
  display: block;
  float: right;
}
/* line 1145, sassy.scss */
#panel-survey-chart-list .child {
  background: #f6f6f6;
  padding: 0px;
}
/* line 1148, sassy.scss */
#panel-survey-chart-list .child .charts-container {
  margin: 0;
  padding: 0 30px;
}
/* line 1152, sassy.scss */
#panel-survey-chart-list .child .first {
  display: block;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 1158, sassy.scss */
#panel-survey-chart-list .child .second {
  display: block;
  font-weight: 800;
  font-size: 14px;
}
/* line 1163, sassy.scss */
#panel-survey-chart-list .child #chart_draw {
  height: 550px;
  padding-top: 20px;
}
/* line 1168, sassy.scss */
#panel-survey-chart-list .child #chart_draw_2 {
  padding-top: 20px;
}
/* line 1174, sassy.scss */
#panel-survey-chart-list .child .parent_chart_2 {
  display: none;
}
/* line 1177, sassy.scss */
#panel-survey-chart-list .child .chart_draw_2_label {
  display: none;
}
/* line 1180, sassy.scss */
#panel-survey-chart-list .child.chart_show {
  margin: 0 -15px;
  background: #f6f6f6;
}
/* line 1189, sassy.scss */
#panel-survey-chart-list .child.show_two_charts .parent_chart_2 {
  display: inline;
}
/* line 1192, sassy.scss */
#panel-survey-chart-list .child.show_two_charts #chart_draw {
  height: 250px;
  margin-top: 20px;
}
/* line 1196, sassy.scss */
#panel-survey-chart-list .child.show_two_charts #chart_draw_2 {
  height: 250px;
  margin-top: 20px;
  display: initial;
}
/* line 1201, sassy.scss */
#panel-survey-chart-list .child.show_two_charts .chart_draw_2_label {
  display: inline;
  font-family: 'Roboto', regular;
  font-size: 12px;
}
/* line 1207, sassy.scss */
#panel-survey-chart-list .child.show_two_charts .chart_draw_2_label span {
  content: "\A";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 10px;
}
/* line 1218, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input {
  position: relative;
}
/* line 1221, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input .year_dropdown .year_show {
  width: 100%;
  color: #842b2d;
}
/* line 1225, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input .year_dropdown:before {
  top: 8px;
}
/* line 1229, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input [type="radio"]:checked,
#panel-survey-chart-list .parent.chart_show_input [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
  color: #fff;
}
/* line 1235, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input [type="radio"]:checked + label,
#panel-survey-chart-list .parent.chart_show_input [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  margin-bottom: 0;
  display: inline-block;
}
/* line 1245, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input [type="radio"]:checked + label:before,
#panel-survey-chart-list .parent.chart_show_input [type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: transparent;
}
/* line 1257, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input [type="radio"]:checked + label:after,
#panel-survey-chart-list .parent.chart_show_input [type="radio"]:not(:checked) + label:after {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  position: absolute;
  top: 14px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
/* line 1270, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
/* line 1275, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* line 1280, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input .showdetails {
  text-align: right;
  padding-right: 35px;
}
/* line 1283, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input .showdetails b {
  line-height: 35px;
}
/* line 1287, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input .delete-menu-option {
  position: absolute;
  right: 0px;
  width: 35px;
  top: 0px;
  height: 100%;
  background: #782829;
}
/* line 1294, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input .delete-menu-option span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* line 1301, sassy.scss */
#panel-survey-chart-list .btn-orange.exel-export {
  background: #e88a24;
  text-transform: uppercase;
  margin: 30px auto;
  border: none;
  border-radius: 0;
  padding-bottom: 10px;
  padding-top: 10px;
  font-size: 14px;
  font-weight: bold;
}
/* line 1311, sassy.scss */
#panel-survey-chart-list .btn-orange.exel-export:before {
  content: "\f063";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 0px;
}
/* line 1320, sassy.scss */
#panel-survey-chart-list .custom-chart-legend {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0;
  list-style: none;
  list-style-type: none;
}
/* line 1327, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li {
  display: inline-block;
  margin: 15px;
}
/* line 1330, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure {
  margin: 0;
}
/* line 1333, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure div {
  height: 3px;
  width: 55px;
  margin: 0 auto;
}
/* line 1337, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure div span {
  display: inline-block;
  width: 15px;
  height: 15px;
  position: relative;
  top: -6px;
}
/* line 1345, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure figcaption {
  padding: 10px 0;
}
/* line 1349, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure.circle div {
  background: #4d7ca8;
}
/* line 1351, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure.circle div span {
  -moz-border-radius: 7.5px;
  -webkit-border-radius: 7.5px;
  border-radius: 7.5px;
  background: #4d7ca8;
}
/* line 1360, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure.rhomb div {
  background: #852d2b;
}
/* line 1362, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure.rhomb div span {
  transform: rotate(45deg);
  background: #852d2b;
}
/* line 1369, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure.rectangle div {
  background: #098d42;
}
/* line 1371, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure.rectangle div span {
  background: #098d42;
}
/* line 1381, sassy.scss */
#panel-survey-chart-list .chart_type select {
  padding: 7px 35px 7px 10px;
  color: #842b2d;
  font-weight: 800;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* line 1391, sassy.scss */
#panel-survey-chart-list .chart_type select::-ms-expand {
  display: none;
}
/* line 1394, sassy.scss */
#panel-survey-chart-list .chart_type:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  position: absolute;
  top: 7px;
  right: -6px;
  color: #842b2d;
  pointer-events: none;
}
/* line 1407, sassy.scss */
#panel-survey-chart-list .select-wrapper select {
  padding: 7px 35px 7px 10px !important;
  font-weight: 800;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* line 1416, sassy.scss */
#panel-survey-chart-list .select-wrapper select::-ms-expand {
  display: none;
}
/* line 1419, sassy.scss */
#panel-survey-chart-list .select-wrapper:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  position: absolute;
  top: 15px;
  right: 30px;
  color: #842b2d;
  pointer-events: none;
}
/* line 1431, sassy.scss */
#panel-survey-chart-list .filter_section {
  margin-bottom: 5px;
}
/* line 1433, sassy.scss */
#panel-survey-chart-list .filter_section div {
  padding-left: 0;
}
/* line 1435, sassy.scss */
#panel-survey-chart-list .filter_section div:last-child {
  padding-right: 0;
}
/* line 1438, sassy.scss */
#panel-survey-chart-list .filter_section div input {
  padding: 8px 15px 8px 15px;
  height: 43px;
}
/* line 1446, sassy.scss */
#panel-survey-chart-list .year_radio div, #panel-survey-chart-list .month_radio div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* line 1452, sassy.scss */
#panel-survey-chart-list .form-control.progress_dropdown {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  margin: 5px 1px 3px 0px;
  border: 1px solid #DDDDDD;
  height: 43px;
}
/* line 1463, sassy.scss */
#panel-survey-chart-list .auswerten {
  margin: 5px 1px 3px 0px;
  padding-bottom: 11px;
  padding-top: 10px;
  width: 100%;
}
/* line 1468, sassy.scss */
#panel-survey-chart-list .auswerten:before {
  content: url("../img/Auswertung_icon_button_16x16.png");
  position: relative;
  z-index: 5;
  top: 3px;
  left: -15px;
}
/* line 1476, sassy.scss */
#panel-survey-chart-list .manage-panel-filter {
  padding: 20px;
  background: #842b2d;
  cursor: pointer;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  height: 65px;
}
/* line 1485, sassy.scss */
#panel-survey-chart-list .manage-panel-filter .row div {
  padding-right: 8px;
}
/* line 1488, sassy.scss */
#panel-survey-chart-list .manage-panel-filter .manage-panel {
  padding-left: 0px;
  padding-right: 0px;
}
/* line 1491, sassy.scss */
#panel-survey-chart-list .manage-panel-filter .manage-panel input {
  margin-left: 0px;
  margin-right: 25px;
}
/* line 1497, sassy.scss */
#panel-survey-chart-list .manage-panel-filter div .sortby {
  color: #fff;
}
/* line 1499, sassy.scss */
#panel-survey-chart-list .manage-panel-filter div .sortby:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0dc";
  left: 8px;
  position: relative;
  right: -10px;
}
/* line 1507, sassy.scss */
#panel-survey-chart-list .manage-panel-filter div .sortby:hover {
  text-decoration: none;
}
/* line 1511, sassy.scss */
#panel-survey-chart-list .manage-panel-filter div:last-child {
  text-align: right;
}
/* line 1519, sassy.scss */
#panel-survey-chart-list .manage-panel-filter .viability-sort b a:before {
  content: url("../img/traffic_light_icon.png");
  position: relative;
  z-index: 5;
}
/* line 1524, sassy.scss */
#panel-survey-chart-list .manage-panel-filter .viability-sort b a:after {
  top: -8px;
}
/* line 1531, sassy.scss */
#panel-survey-chart-list .user-id-header {
  padding-left: 10px;
}
/* line 1534, sassy.scss */
#panel-survey-chart-list .user-id-content {
  padding-left: 5px;
}
/* line 1537, sassy.scss */
#panel-survey-chart-list .showdetails {
  padding-right: 35px;
  padding-left: 0;
}
/* line 1544, sassy.scss */
#panel-survey-chart-list #id_info_place .manage-panel {
  padding-left: 10px;
  padding-right: 0px;
  position: relative;
}
/* line 1548, sassy.scss */
#panel-survey-chart-list #id_info_place .manage-panel input {
  position: relative;
  margin-left: 0px;
  margin-top: 0px;
  margin-right: 25px;
}
/* line 1554, sassy.scss */
#panel-survey-chart-list #id_info_place .manage-panel .dropdown-toggle {
  width: 62px;
  top: -6px;
  padding: 0px;
  height: 34px;
  transform: rotate(90deg);
  right: 6px;
}
/* line 1562, sassy.scss */
#panel-survey-chart-list #id_info_place .manage-panel.opened-tab {
  background: #eae1e2;
}
/* line 1564, sassy.scss */
#panel-survey-chart-list #id_info_place .manage-panel.opened-tab:not(:first-child) {
  border-top: 10px solid #842c2d;
}
/* line 1568, sassy.scss */
#panel-survey-chart-list #id_info_place .manage-panel .netto {
  text-align: right;
  padding-right: 25px;
}
/* line 1574, sassy.scss */
#panel-survey-chart-list #id_info_place .child {
  background: #f6f0f0;
  padding: 0px 10px;
}
/* line 1580, sassy.scss */
#panel-survey-chart-list .parent.manage-panel {
  background: #f6f6f6;
  color: black;
}
/* line 1583, sassy.scss */
#panel-survey-chart-list .parent.manage-panel.marked {
  background: #ebe1e2;
}
/* line 1591, sassy.scss */
#panel-survey-chart-list .options-menu {
  position: absolute;
  right: -20px;
}
/* line 1594, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown {
  display: inline-block;
}
/* line 1596, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown .dropdown-toggle {
  display: block;
  width: 66px;
  top: -5px;
  height: 36px;
  transform: rotate(90deg);
  right: -15px;
  border-radius: 0px;
  background: #e6e6e6;
  position: relative;
  border: transparent;
  cursor: pointer;
  outline: none;
}
/* line 1609, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown .dropdown-toggle:before {
  content: '...';
  font-size: 30px;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #342a32;
}
/* line 1618, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown .dropdown-toggle:after {
  display: none;
}
/* line 1621, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown .dropdown-toggle:hover {
  background: #2b2a33;
}
/* line 1623, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown .dropdown-toggle:hover:before {
  color: #fff;
}
/* line 1627, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown .dropdown-toggle.opened-dropdown {
  background: #dcd3d3;
}
/* line 1630, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown .dropdown-toggle.opened-dropdown:hover:before {
  color: #342a32;
}
/* line 1636, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown .dropdown-menu {
  padding: 18px 15px;
  left: -188px;
  top: -2px;
}
/* line 1643, sassy.scss */
#panel-survey-chart-list .delete-menu-option {
  padding-left: 0px;
  padding-right: 0px;
}
/* line 1646, sassy.scss */
#panel-survey-chart-list .delete-menu-option span {
  float: right;
  font-size: 16px;
  color: white;
}
/* line 1654, sassy.scss */
#panel-survey-chart-list .color_status span {
  color: #000000;
  font-size: 10px;
}
/* line 1661, sassy.scss */
#panel-survey-chart-list .color_status.black span {
  color: #d94d1c;
  font-size: 10px;
}
/* line 1668, sassy.scss */
#panel-survey-chart-list .color_status.green span {
  color: #0a8c44;
  font-size: 10px;
}
/* line 1674, sassy.scss */
#panel-survey-chart-list .color_status.yellow span {
  color: #af841e;
  font-size: 10px;
}
/* line 1681, sassy.scss */
#panel-survey-chart-list .color_status.red span {
  color: #852b2d;
  font-size: 10px;
}
/* line 1687, sassy.scss */
#panel-survey-chart-list .color_status.after2022 span {
  color: #b4b1b2;
  font-size: 10px;
}

/* line 1698, sassy.scss */
#panel-survey-edit .parent {
  font-size: 14px;
  font-weight: 800;
  padding: 20px;
  background: #842b2d;
  cursor: pointer;
  color: white;
  text-transform: uppercase;
}
/* line 1706, sassy.scss */
#panel-survey-edit .parent:first-of-type {
  border-top: none;
}
/* line 1709, sassy.scss */
#panel-survey-edit .parent b:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  margin-left: 5px;
  padding-top: 2px;
  position: relative;
  top: 1px;
}
/* line 1718, sassy.scss */
#panel-survey-edit .parent .showdetails {
  color: #fff;
  padding-left: 75px;
  font-size: 14px;
}
/* line 1726, sassy.scss */
#panel-survey-edit .parent.opened-tab div:nth-child(2) b:after {
  content: "\f106";
}
/* line 1733, sassy.scss */
#panel-survey-edit .child {
  padding: 35px 0;
  background: #f6f6f6;
}
/* line 1736, sassy.scss */
#panel-survey-edit .child .editor {
  width: 85%;
  margin: 0 auto;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 1741, sassy.scss */
#panel-survey-edit .child .editor .first {
  font-size: 12px;
  margin: 15px 0px 5px 0px;
  text-transform: uppercase;
  display: block;
  font-weight: normal;
}
/* line 1748, sassy.scss */
#panel-survey-edit .child .editor .form-control {
  padding-left: 10px;
  font-size: 14px;
  font-weight: bold;
  height: 35px;
}
/* line 1754, sassy.scss */
#panel-survey-edit .child .editor .select {
  height: 35px;
}
/* line 1757, sassy.scss */
#panel-survey-edit .child .editor .required:after {
  content: "*";
  color: #e88a24;
  font-size: 14px;
  position: absolute;
  margin-left: 2px;
  margin-top: -1px;
}
/* line 1765, sassy.scss */
#panel-survey-edit .child .editor select[name="survey[type]"] {
  width: 50%;
  float: left;
  margin-right: 10px;
}
/* line 1770, sassy.scss */
#panel-survey-edit .child .editor select[name="survey[type_number]"] {
  width: 20%;
  float: left;
  margin-right: 10px;
}
/* line 1775, sassy.scss */
#panel-survey-edit .child .editor select[name="survey[type_aux]"] {
  width: calc(25% + 2px);
  float: left;
}
/* line 1780, sassy.scss */
#panel-survey-edit .child .editor .second textarea {
  width: 100%;
  height: 200px;
}
/* line 1785, sassy.scss */
#panel-survey-edit .child .editor .success-message {
  display: none;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #2c8460;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 75%;
  transform: translate(-50%, 75%);
}
/* line 1798, sassy.scss */
#panel-survey-edit .child.pick-year-container {
  background: #e6e6e6;
  height: 70px;
  padding: 0;
}
/* line 1804, sassy.scss */
#panel-survey-edit .milestone {
  background: #f6f6f6;
  color: #2b2a33;
  border-bottom: 1px solid #dad8db;
}
/* line 1808, sassy.scss */
#panel-survey-edit .milestone .milestone-details {
  color: #2b2a33;
}
/* line 1811, sassy.scss */
#panel-survey-edit .milestone .milestone-close {
  background: #dedede;
  position: absolute;
  right: -20px;
  height: 62px;
  top: -20px;
  width: 35px;
  font-size: 1.2em;
}
/* line 1820, sassy.scss */
#panel-survey-edit .milestone.opened-tab {
  background: #eae1e2;
  border-top: 10px solid #842c2d;
}
/* line 1825, sassy.scss */
#panel-survey-edit .milestone .description {
  margin-left: 10px;
  height: 15px;
  display: inline-block;
  width: 90%;
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis;
}
/* line 1836, sassy.scss */
#panel-survey-edit .new-milestone-container {
  background: #e6e6e6;
  height: 70px;
}
/* line 1839, sassy.scss */
#panel-survey-edit .new-milestone-container .add-milestone {
  position: relative;
  top: 9px;
  color: #e88a24;
}
/* line 1844, sassy.scss */
#panel-survey-edit .new-milestone-container .btn-new-milestone {
  margin-top: 17px;
  background: transparent;
  border: none;
  color: #e88a24;
}
/* line 1849, sassy.scss */
#panel-survey-edit .new-milestone-container .btn-new-milestone:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0);
}
/* line 1853, sassy.scss */
#panel-survey-edit .new-milestone-container .btn-new-milestone:hover {
  background: transparent;
  color: #842b2d;
}
/* line 1860, sassy.scss */
#panel-survey-edit .year-tab {
  background: #dccfcf;
  color: #2b2a33;
  font-size: 14px;
  border-bottom: 1px solid #dad8db;
}
/* line 1865, sassy.scss */
#panel-survey-edit .year-tab .year-details {
  color: #2b2a33;
}
/* line 1867, sassy.scss */
#panel-survey-edit .year-tab .year-details .year-subtab {
  background: #eae1e2;
  color: #2b2a33;
  font-size: 14px;
}
/* line 1874, sassy.scss */
#panel-survey-edit .year-opened {
  background: #dccfcf;
}
/* line 1877, sassy.scss */
#panel-survey-edit .year-child {
  padding: 0;
  background: #eae1e2;
}
/* line 1881, sassy.scss */
#panel-survey-edit .table-child {
  padding: 0;
}
/* line 1883, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table {
  text-transform: uppercase;
  font-size: 12px;
  width: 100%;
}
/* line 1887, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table thead {
  background: #842b2d;
  line-height: 35px;
  color: white;
  text-align: center;
}
/* line 1892, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table thead tr {
  display: block;
  background: #842b2d;
}
/* line 1895, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table thead tr td {
  width: 6%;
}
/* line 1897, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table thead tr td:first-child {
  padding-left: 36px;
  text-align: left;
  width: 20%;
  min-width: 230px;
}
/* line 1903, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table thead tr td:last-child {
  width: 8%;
}
/* line 1909, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody {
  display: block;
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
}
/* line 1914, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody tr {
  /* height: 90px; */
}
/* line 1916, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody tr td {
  width: 6.1%;
  padding: 0 5px;
}
/* line 1919, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody tr td:first-child {
  padding-left: 36px;
  width: 20%;
  min-width: 230px;
}
/* line 1924, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody tr td:last-child {
  width: 8%;
}
/* line 1927, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody tr td input {
  border: 1px solid #b6b2b8;
  text-align: right;
  height: 35px;
  padding: 0 5px;
  width: 100%;
  min-width: 55px;
}
/* line 1934, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody tr td input:focus {
  padding: 0 5px;
}
/* line 1939, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody tr:after {
  content: " ";
  border-bottom: 1px solid #d6d1d4;
  display: table-cell;
  width: 88.75%;
  position: absolute;
  left: 3%;
  display: none;
}
/* line 1949, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background: #eae1e2;
  margin: 25px 0;
}
/* line 1955, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody::-webkit-scrollbar {
  width: 12px;
  background: #eae1e2;
  height: 20px;
}
/* line 1960, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: #842b2d;
  height: 20px;
  max-height: 20px;
  padding-top: 45%;
  padding-bottom: 45%;
}

/* line 1975, sassy.scss */
#panel-survey-view {
  padding-top: 50px;
}
/* line 1977, sassy.scss */
#panel-survey-view .parent {
  padding: 20px;
  background: #842b2d;
  cursor: pointer;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  height: 65px;
}
/* line 1987, sassy.scss */
#panel-survey-view .parent .showdetails b:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  margin-left: 5px;
  padding-top: 2px;
  position: relative;
  top: 1px;
}
/* line 2000, sassy.scss */
#panel-survey-view .parent.opened-tab div:nth-child(2) b:after {
  content: "\f106";
}
/* line 2007, sassy.scss */
#panel-survey-view .child {
  background: #f6f6f6;
  padding: 0px;
}
/* line 2010, sassy.scss */
#panel-survey-view .child .first {
  display: block;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 2016, sassy.scss */
#panel-survey-view .child .second {
  display: block;
  font-weight: 800;
  font-size: 14px;
}
/* line 2021, sassy.scss */
#panel-survey-view .child .milestone {
  font-size: 14px;
  font-weight: bold;
  background: none;
  color: #212529;
}
/* line 2026, sassy.scss */
#panel-survey-view .child .milestone.opened-tab:not(:first-child) {
  background: #eae1e2;
  border-top: 10px solid #842c2d;
}
/* line 2031, sassy.scss */
#panel-survey-view .child .milestone-details {
  color: #2b2a33;
  border-top: 1px solid #dad8db;
}
/* line 2034, sassy.scss */
#panel-survey-view .child .milestone-details .row {
  border-bottom: 1px solid #dad8db;
  padding: 20px;
}
/* line 2037, sassy.scss */
#panel-survey-view .child .milestone-details .row:last-child {
  border-bottom: none;
}
/* line 2043, sassy.scss */
#panel-survey-view .child.business-cases-tab .business-case-category {
  background: #f6f6f6;
  color: #842b2d;
  font-weight: bold;
  font-size: 14px;
  border-top: 1px solid #dad8db;
}
/* line 2049, sassy.scss */
#panel-survey-view .child.business-cases-tab .business-case-category.active {
  background: #eae1e2;
  border-bottom: 1px solid #d0c9cd;
}
/* line 2057, sassy.scss */
#panel-survey-view .business-case-details hr {
  width: 100%;
}
/* line 2062, sassy.scss */
#panel-survey-view .report-row .row {
  border-bottom: 1px solid #dad8db;
  padding: 20px;
  color: black;
}
/* line 2066, sassy.scss */
#panel-survey-view .report-row .row:last-child {
  border-bottom: none;
}
/* line 2071, sassy.scss */
#panel-survey-view .info {
  padding: 20px;
}
/* line 2073, sassy.scss */
#panel-survey-view .info .first {
  padding: 5px 0;
}
/* line 2078, sassy.scss */
#panel-survey-view .slider .slick-arrow {
  display: none;
}
/* line 2082, sassy.scss */
#panel-survey-view .content {
  overflow: auto;
  position: relative;
  padding: 20px;
  background: #333;
  color: #fff;
  margin: 10px;
  width: 740px;
  max-width: 97%;
  height: 400px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 2094, sassy.scss */
#panel-survey-view .table-container {
  padding-left: 0px;
  font-size: 14px;
  font-weight: bold;
  background: #eae1e2;
}
/* line 2099, sassy.scss */
#panel-survey-view .table-container .quarters-navigation {
  text-align: center;
  padding-left: 39px;
  padding-right: 39px;
  z-index: 5;
}
/* line 2105, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-arrow.slick-prev:before {
  content: '\f104';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #000;
}
/* line 2111, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-arrow.slick-next:before {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #000;
}
/* line 2118, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-prev {
  left: 10px;
}
/* line 2121, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-next {
  right: 10px;
}
/* line 2126, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-slide div {
  width: 100%;
}
/* line 2128, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-slide div.active {
  border-bottom: 40px solid #842b2d;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}
/* line 2132, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-slide div.active a {
  width: 100%;
  height: 40px;
  background: #842b2d;
  float: left;
  padding: 10px;
  color: #fff;
}
/* line 2141, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-slide div a {
  width: 100%;
  height: 40px;
  background: transparent;
  float: left;
  padding: 10px;
  font-size: 14px;
  color: #212529;
}
/* line 2149, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-slide div a:hover {
  text-decoration: none;
  cursor: pointer;
}
/* line 2153, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-slide div a:focus {
  outline: none;
}
/* line 2161, sassy.scss */
#panel-survey-view .big-table {
  margin-top: -20px;
}
/* line 2163, sassy.scss */
#panel-survey-view .big-table .table-header {
  padding-right: 0px;
  font-weight: normal;
  text-transform: uppercase;
}
/* line 2167, sassy.scss */
#panel-survey-view .big-table .table-header .cell {
  text-align: left;
  padding: 10px;
  padding-left: 35px;
  background: #eae1e2;
}
/* line 2172, sassy.scss */
#panel-survey-view .big-table .table-header .cell.dark {
  background: #2b2a33;
  color: #fff;
}
/* line 2176, sassy.scss */
#panel-survey-view .big-table .table-header .cell.red {
  background: #842b2d;
  color: #fff;
}
/* line 2180, sassy.scss */
#panel-survey-view .big-table .table-header .cell.regular {
  border-top: 1px solid #dad8db;
  line-height: 1;
}
/* line 2184, sassy.scss */
#panel-survey-view .big-table .table-header .cell.empty {
  background: #eae1e2;
}
/* line 2190, sassy.scss */
#panel-survey-view .big-table .table-body .cell {
  padding: 10px;
  background: #f6f0f0;
  text-align: center;
}
/* line 2194, sassy.scss */
#panel-survey-view .big-table .table-body .cell.dark {
  background: #2b2a33;
  color: #fff;
}
/* line 2198, sassy.scss */
#panel-survey-view .big-table .table-body .cell.red {
  background: #842b2d;
  color: #fff;
  text-transform: uppercase;
}
/* line 2203, sassy.scss */
#panel-survey-view .big-table .table-body .cell.empty {
  background: #eae1e2;
}
/* line 2206, sassy.scss */
#panel-survey-view .big-table .table-body .cell.regular {
  border-top: 1px solid #dad8db;
  border-left: 1px solid #dad8db;
  line-height: 1;
}

/* line 2218, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .parent {
  padding: 20px;
  background: #842b2d;
  /*cursor: pointer;*/
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  height: 65px;
}
/* line 2228, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .parent .showdetails b:after, .panel-survey-log-element:not(#panel-survey-view) .parent .detail_sub_show_business b:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  margin-left: 5px;
  padding-top: 2px;
  position: relative;
  top: 1px;
}
/* line 2245, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .parent.row {
  margin-right: -15px;
}
/* line 2249, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child {
  background: #f6f6f6;
  padding-left: 0px;
  padding-right: 0px;
}
/* line 2253, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child .first {
  display: block;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 2259, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child .second {
  display: block;
  font-weight: 800;
  font-size: 14px;
}
/* line 2264, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child .milestone {
  font-size: 14px;
  font-weight: bold;
  background: none;
  color: #212529;
}
/* line 2269, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child .milestone.opened-tab:not(:first-child) {
  background: #eae1e2;
  border-top: 10px solid #842c2d;
}
/* line 2274, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child .milestone-details {
  color: #2b2a33;
  border-top: 1px solid #dad8db;
}
/* line 2277, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child .milestone-details .row {
  border-bottom: 1px solid #dad8db;
  padding: 20px;
}
/* line 2280, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child .milestone-details .row:last-child {
  border-bottom: none;
}
/* line 2286, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child.business-cases-tab .business-case-category {
  background: #f6f6f6;
  color: #842b2d;
  font-weight: bold;
  font-size: 14px;
  border-top: 1px solid #dad8db;
}
/* line 2292, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child.business-cases-tab .business-case-category.active {
  background: #eae1e2;
  border-bottom: 1px solid #d0c9cd;
}
/* line 2301, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .report-row .row {
  border-bottom: 1px solid #dad8db;
  padding: 20px;
  color: black;
}
/* line 2305, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .report-row .row:last-child {
  border-bottom: none;
}
/* line 2310, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .info {
  padding: 20px;
}
/* line 2312, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .info .first {
  padding: 5px 0;
}
/* line 2317, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .slider .slick-arrow {
  display: none;
}
/* line 2321, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .content {
  overflow: auto;
  position: relative;
  padding: 20px;
  background: #333;
  color: #fff;
  margin: 10px;
  width: 740px;
  max-width: 97%;
  height: 400px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* line 2333, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container {
  padding-left: 0px;
  font-size: 14px;
  font-weight: bold;
  background: #eae1e2;
}
/* line 2338, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation {
  text-align: center;
  padding-left: 39px;
  padding-right: 39px;
  z-index: 5;
}
/* line 2344, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-arrow.slick-prev:before {
  content: '\f104';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #000;
}
/* line 2350, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-arrow.slick-next:before {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #000;
}
/* line 2357, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-prev {
  left: 10px;
}
/* line 2360, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-next {
  right: 10px;
}
/* line 2365, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-slide div {
  width: 100%;
}
/* line 2367, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-slide div.active {
  border-bottom: 40px solid #842b2d;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}
/* line 2371, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-slide div.active a {
  width: 100%;
  height: 40px;
  background: #842b2d;
  float: left;
  padding: 10px;
  color: #fff;
}
/* line 2383, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-slide div.changed_data_marker a {
  color: orange;
}
/* line 2387, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-slide div a {
  width: 100%;
  height: 40px;
  background: transparent;
  float: left;
  padding: 10px;
  font-size: 14px;
  color: #212529;
}
/* line 2395, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-slide div a:hover {
  text-decoration: none;
  cursor: pointer;
}
/* line 2399, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-slide div a:focus {
  outline: none;
}
/* line 2407, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table {
  margin-top: -20px;
}
/* line 2409, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-header {
  padding-right: 0px;
  font-weight: normal;
  text-transform: uppercase;
}
/* line 2413, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-header .cell {
  text-align: left;
  padding: 10px;
  padding-left: 35px;
  background: #eae1e2;
}
/* line 2418, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-header .cell.dark {
  background: #2b2a33;
  color: #fff;
}
/* line 2422, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-header .cell.red {
  background: #842b2d;
  color: #fff;
}
/* line 2426, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-header .cell.regular {
  border-top: 1px solid #dad8db;
  line-height: 1;
}
/* line 2430, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-header .cell.empty {
  background: #eae1e2;
}
/* line 2436, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-body .cell {
  padding: 10px;
  background: #f6f0f0;
  text-align: center;
}
/* line 2440, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-body .cell.dark {
  background: #2b2a33;
  color: #fff;
}
/* line 2444, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-body .cell.red {
  background: #842b2d;
  color: #fff;
  text-transform: uppercase;
}
/* line 2449, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-body .cell.empty {
  background: #eae1e2;
}
/* line 2452, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-body .cell.regular {
  border-top: 1px solid #dad8db;
  border-left: 1px solid #dad8db;
  line-height: 1;
}
/* line 2462, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu {
  position: absolute;
  right: 0px;
}
/* line 2465, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown {
  display: inline-block;
}
/* line 2467, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown .dropdown-toggle {
  display: block;
  width: 66px;
  top: -5px;
  height: 36px;
  transform: rotate(90deg);
  right: -15px;
  border-radius: 0px;
  background: #e6e6e6;
  position: relative;
  border: transparent;
  cursor: pointer;
  outline: none;
}
/* line 2480, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown .dropdown-toggle:before {
  content: '...';
  font-size: 30px;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #342a32;
}
/* line 2489, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown .dropdown-toggle:after {
  display: none;
}
/* line 2492, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown .dropdown-toggle:hover {
  background: #2b2a33;
}
/* line 2494, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown .dropdown-toggle:hover:before {
  color: #fff;
}
/* line 2498, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown .dropdown-toggle.opened-dropdown {
  background: #dcd3d3;
}
/* line 2501, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown .dropdown-toggle.opened-dropdown:hover:before {
  color: #342a32;
}
/* line 2507, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown .dropdown-menu {
  padding: 18px 15px;
  left: -188px;
  top: -2px;
}
/* line 2515, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .log_data_additional_info :first-child {
  padding-left: 20px;
}
/* line 2518, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .log_data_additional_info .log_sign_icon:before {
  width: 16px;
  height: 16px;
  content: " ";
  background-image: url(../img/exclamation_mark_16x16.png);
  position: absolute;
  left: 14px;
}
/* line 2526, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .log_data_additional_info .new_value {
  color: green;
}
/* line 2527, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .log_data_additional_info .new_value b {
  color: black;
}
/* line 2532, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .log_data_additional_info .old_value {
  color: red;
}
/* line 2533, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .log_data_additional_info .old_value b {
  color: black;
}
/* line 2541, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .opened-tab {
  border-bottom: 1px solid #dad8db;
  border-top: 0px solid #842c2d;
}
/* line 2548, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .opened-tab .row div:nth-child(5) b:after {
  content: "\f106";
}

/* line 2558, sassy.scss */
#panel-user-list {
  margin-bottom: 150px;
}
/* line 2560, sassy.scss */
#panel-user-list .row {
  position: relative;
  padding: 20px;
  background: #f6f6f6;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
}
/* line 2567, sassy.scss */
#panel-user-list .row .dropdown {
  display: inline-block;
}
/* line 2569, sassy.scss */
#panel-user-list .row .dropdown .dropdown-toggle {
  width: 61px;
  top: -22px;
  height: 35px;
  transform: rotate(90deg);
  right: -34px;
  border-radius: 0px;
  background: #e6e6e6;
  position: absolute;
  border: transparent;
  cursor: pointer;
  outline: none;
}
/* line 2581, sassy.scss */
#panel-user-list .row .dropdown .dropdown-toggle:before {
  content: '...';
  font-size: 30px;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #342a32;
}
/* line 2590, sassy.scss */
#panel-user-list .row .dropdown .dropdown-toggle:after {
  display: none;
}
/* line 2593, sassy.scss */
#panel-user-list .row .dropdown .dropdown-toggle:hover {
  text-decoration: none;
  background-color: #2b2a33;
}
/* line 2596, sassy.scss */
#panel-user-list .row .dropdown .dropdown-toggle:hover:before {
  color: #fff;
}
/* line 2601, sassy.scss */
#panel-user-list .row .dropdown .dropdown-menu {
  padding: 10px 15px;
}
/* line 2606, sassy.scss */
#panel-user-list .btn {
  position: relative;
  left: -15px;
}
/* line 2610, sassy.scss */
#panel-user-list b {
  padding-left: 5px;
  text-transform: initial;
  /*font-size: 1rem;*/
}

/* line 2617, sassy.scss */
#colorPicker {
  padding: 50px 0;
}
/* line 2619, sassy.scss */
#colorPicker select {
  margin: 0 0 30px 0;
  display: block;
}
/* line 2623, sassy.scss */
#colorPicker h6 {
  display: none;
  margin: 30px 0;
}
/* line 2627, sassy.scss */
#colorPicker form {
  display: none;
}
/* line 2629, sassy.scss */
#colorPicker form .row {
  padding: 5px 15px;
}
/* line 2631, sassy.scss */
#colorPicker form .row label {
  min-width: 250px;
  padding: 3px 0;
  margin: 0px;
}
/* line 2637, sassy.scss */
#colorPicker form input[type=submit] {
  display: block;
  margin: 30px 0;
}

/* line 2644, sassy.scss */
#panel-user-edit {
  padding-top: 40px;
}
/* line 2646, sassy.scss */
#panel-user-edit input {
  max-width: 328px;
  font-weight: 800;
  font-size: 14px;
  padding: 10px;
}
/* line 2651, sassy.scss */
#panel-user-edit input[name="name"] {
  margin-left: 185px;
}
/* line 2654, sassy.scss */
#panel-user-edit input[name="email"] {
  margin-right: 185px;
}
/* line 2657, sassy.scss */
#panel-user-edit input[type="radio"] {
  margin: 0 5px 0 0px;
}
/* line 2661, sassy.scss */
#panel-user-edit input:invalid {
  outline: none;
  box-shadow: none;
}
/* line 2665, sassy.scss */
#panel-user-edit select {
  padding-left: 0px;
}
/* line 2668, sassy.scss */
#panel-user-edit label {
  text-transform: uppercase;
}
/* line 2671, sassy.scss */
#panel-user-edit label[for="name"] {
  padding-left: 185px;
}
/* line 2674, sassy.scss */
#panel-user-edit label[for="exampleFormControlSelect1"] {
  display: block;
  color: #000;
}
/* line 2678, sassy.scss */
#panel-user-edit .roles {
  padding-left: 200px;
}
/* line 2680, sassy.scss */
#panel-user-edit .roles h6 {
  display: block;
  width: 100%;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 10px;
}
/* line 2687, sassy.scss */
#panel-user-edit .roles .col-sm {
  padding-left: 0px;
  max-width: 20%;
  font-weight: 800;
  font-size: 14px;
  text-transform: capitalize;
}
/* line 2694, sassy.scss */
#panel-user-edit .roles .role {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 15px;
  margin-right: 35px;
}
/* line 2707, sassy.scss */
#panel-user-edit .roles .role input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* line 2712, sassy.scss */
#panel-user-edit .roles .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid #b8b6bb;
  border-radius: 50%;
}
/* line 2723, sassy.scss */
#panel-user-edit .roles .role:hover input ~ .checkmark {
  background-color: #ccc;
}
/* line 2726, sassy.scss */
#panel-user-edit .roles .role input:checked ~ .checkmark {
  background-color: #fff;
  border: 1px solid #b8b6bb;
}
/* line 2730, sassy.scss */
#panel-user-edit .roles .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* line 2735, sassy.scss */
#panel-user-edit .roles .role input:checked ~ .checkmark:after {
  display: block;
}
/* line 2739, sassy.scss */
#panel-user-edit .roles .role .checkmark:after {
  top: 2px;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #842c2d;
}
/* line 2748, sassy.scss */
#panel-user-edit .supervisor {
  margin-left: 185px;
}
/* line 2750, sassy.scss */
#panel-user-edit .supervisor .users-list {
  height: 190px;
  width: 100%;
  max-width: 328px;
  overflow-y: scroll;
}
/* line 2755, sassy.scss */
#panel-user-edit .supervisor .users-list ul {
  list-style: none;
  padding-inline-start: 0px;
}
/* line 2758, sassy.scss */
#panel-user-edit .supervisor .users-list ul li {
  vertical-align: middle;
  margin: 5px 0;
}
/* line 2766, sassy.scss */
#panel-user-edit .avatar .upload-button {
  border: 1px solid #ced4da;
  color: #212529;
  background-color: #e6e6e6;
  padding: 10px 15px;
  margin-left: 185px;
  margin-top: 25px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}
/* line 2780, sassy.scss */
#panel-user-edit .account-info {
  margin-left: 170px;
}
/* line 2783, sassy.scss */
#panel-user-edit .btn {
  display: block;
}

/* line 2788, sassy.scss */
.pagination {
  display: block;
  text-align: center;
  margin-top: 25px;
  color: #212529;
}
/* line 2793, sassy.scss */
.pagination li {
  display: inline-block;
  padding: 0 3px;
}
/* line 2796, sassy.scss */
.pagination li.active {
  color: #842c2d;
  font-weight: 800;
}
/* line 2799, sassy.scss */
.pagination li.active .page-link {
  background-color: #842c2d;
  border-color: #842c2d;
}
/* line 2804, sassy.scss */
.pagination li a {
  color: #212529;
}
/* line 2808, sassy.scss */
.pagination li i.arrow-disabled {
  color: #212529;
  position: relative;
  top: -0.5px;
}
/* line 2813, sassy.scss */
.pagination li i.arrow-enabled {
  color: #842c2d;
  position: relative;
  top: -0.5px;
}

/* line 2823, sassy.scss */
.log_data .log_sign_icon:before {
  width: 16px;
  height: 16px;
  content: " ";
  background-image: url(../img/exclamation_mark_16x16.png);
  position: absolute;
  left: -5px;
  top: 0px;
}
/* line 2833, sassy.scss */
.log_data .new_value {
  color: green;
}
/* line 2835, sassy.scss */
.log_data .new_value b {
  color: black;
}
/* line 2839, sassy.scss */
.log_data .old_value {
  color: red;
}
/* line 2840, sassy.scss */
.log_data .old_value b {
  color: black;
}

/* line 2848, sassy.scss */
.log_data :first-child {
  padding-left: 20px;
}
/* line 2851, sassy.scss */
.log_data .log_sign_icon:before {
  width: 16px;
  height: 16px;
  content: " ";
  background-image: url(../img/exclamation_mark_16x16.png);
  position: absolute;
  left: 14px;
  top: 0px;
}
/* line 2861, sassy.scss */
.log_data .new_value {
  color: green;
}
/* line 2862, sassy.scss */
.log_data .new_value b {
  color: black;
  padding-left: 0px;
}
/* line 2868, sassy.scss */
.log_data .old_value {
  color: red;
}
/* line 2869, sassy.scss */
.log_data .old_value b {
  color: black;
  padding-left: 0px;
}

/* line 2877, sassy.scss */
.log_data_internal_id .first {
  padding-left: 20px;
}
/* line 2880, sassy.scss */
.log_data_internal_id .log_sign_icon:before {
  width: 16px;
  height: 16px;
  content: " ";
  background-image: url(../img/exclamation_mark_16x16.png);
  position: absolute;
  left: 14px;
  top: 0px;
}
/* line 2890, sassy.scss */
.log_data_internal_id .new_value {
  color: green;
}
/* line 2893, sassy.scss */
.log_data_internal_id .old_value {
  color: red;
}

/* line 2899, sassy.scss */
.log_data_busness_parent .log_sign_icon:before {
  width: 16px;
  height: 16px;
  content: " ";
  background-image: url(../img/exclamation_mark_16x16.png);
  position: absolute;
  left: 45px;
}

/* line 2909, sassy.scss */
.log_data_business .log_sign_icon:before {
  width: 16px;
  height: 16px;
  content: " ";
  background-image: url(../img/exclamation_mark_16x16.png);
  position: absolute;
  left: 45px;
}
/* line 2917, sassy.scss */
.log_data_business .log_sign_icon {
  padding-left: 52px !important;
}
/* line 2920, sassy.scss */
.log_data_business .new_value {
  color: green;
}
/* line 2921, sassy.scss */
.log_data_business .new_value b {
  color: black;
}
/* line 2926, sassy.scss */
.log_data_business .old_value {
  display: block;
  color: red;
}
/* line 2927, sassy.scss */
.log_data_business .old_value b {
  color: black;
}

/* line 2935, sassy.scss */
.log_data_qtr_log {
  width: 16px;
  height: 16px;
  content: " ";
  background-image: url(../img/exclamation_mark_16x16.png);
  position: absolute;
  left: -12px;
}

/* line 2945, sassy.scss */
.log_data_business_parent .log_sign_icon:before, .milestone_section_parent .log_sign_icon:before, .additional_info_section_parent .log_sign_icon:before, .base_info_parent .log_sign_icon:before {
  width: 16px;
  height: 16px;
  content: " ";
  background-image: url(../img/exclamation_mark_16x16.png);
  position: absolute;
  left: -12px;
}

/* line 2955, sassy.scss */
.milestone_row_log:before {
  width: 16px;
  height: 16px;
  content: " ";
  background-image: url(../img/exclamation_mark_16x16.png);
  position: absolute;
  left: -5px;
  top: 2px;
}

/* line 2964, sassy.scss */
.higther_row {
  height: 105px !important;
}

/* Responsive styles start here */
@media (max-width: 1199px) {
  /* line 2972, sassy.scss */
  .header {
    height: 80px;
  }
  /* line 2974, sassy.scss */
  .header .settings {
    padding: 18px 0px;
  }
  /* line 2977, sassy.scss */
  .header h5 {
    display: block;
  }

  /* line 2982, sassy.scss */
  .app-submenu-container .fas {
    display: none;
  }
  /* line 2985, sassy.scss */
  .app-submenu-container .tab {
    margin: 20px 0px;
  }
  /* line 2987, sassy.scss */
  .app-submenu-container .tab a {
    display: table-cell;
    vertical-align: middle;
    max-width: 170px;
    height: 90px;
    padding-left: 23px;
    padding-right: 22px;
  }

  /* line 2997, sassy.scss */
  .header-tabs {
    height: 70px;
  }
  /* line 3000, sassy.scss */
  .header-tabs .tabs-row .trapeze-button {
    background-size: contain;
    height: 48px;
  }

  /* line 3006, sassy.scss */
  #panel-survey-edit {
    position: relative;
  }
  /* line 3010, sassy.scss */
  #panel-survey-edit .child .editor select[name="survey[type_aux]"] {
    width: calc(22%);
    float: left;
  }
}
@media (max-width: 1023px) {
  /* line 3020, sassy.scss */
  .app-submenu-container {
    display: none;
  }

  /* line 3023, sassy.scss */
  .header-tabs {
    height: 60px;
    padding: 15px 0 0;
  }
}
@media (max-width: 991px) {
  /* line 3031, sassy.scss */
  .header h5 {
    font-size: 13px;
  }

  /* line 3035, sassy.scss */
  .header-tabs {
    height: 60px;
  }
  /* line 3038, sassy.scss */
  .header-tabs .tabs-row .trapeze-button {
    background-size: calc(100% + 2px) !important;
    background-position-y: 10px;
    height: 45px;
  }
  /* line 3042, sassy.scss */
  .header-tabs .tabs-row .trapeze-button.active-trapeze-button {
    background: url(../img/trapeze-button-smalldesktops.png);
    background-repeat: no-repeat;
  }
  /* line 3046, sassy.scss */
  .header-tabs .tabs-row .trapeze-button a {
    font-size: 14px;
    line-height: 1;
    padding: 0 5px;
  }

  /* line 3056, sassy.scss */
  #panel-survey-edit .parent .showdetails {
    padding-left: 15px;
  }

  /* line 3062, sassy.scss */
  #panel-survey-list .title-bar {
    padding: 20px;
  }
  /* line 3069, sassy.scss */
  #panel-survey-list .parent .row div:nth-child(1) span {
    display: none;
  }
  /* line 3076, sassy.scss */
  #panel-survey-list .parent .row .options-menu .dropdown .dropdown-menu {
    left: -25px;
  }

  /* line 3085, sassy.scss */
  .showdetails b {
    font-size: 0px !important;
  }
  /* line 3087, sassy.scss */
  .showdetails b:after {
    font-size: 1.7rem !important;
    margin-right: 5px !important;
    position: absolute !important;
    left: 0px !important;
    top: -10px !important;
    z-index: 5 !important;
  }

  /* line 3097, sassy.scss */
  .status-message {
    font-size: 0px !important;
  }
  /* line 3099, sassy.scss */
  .status-message span {
    font-size: 0px !important;
  }
  /* line 3101, sassy.scss */
  .status-message span i {
    font-size: 1rem !important;
  }
}
@media (max-width: 767px) {
  /* line 3109, sassy.scss */
  .header {
    height: auto;
  }
  /* line 3112, sassy.scss */
  .header .row .logo {
    padding-bottom: 10px;
  }
  /* line 3114, sassy.scss */
  .header .row .logo .mobile-menu-button {
    display: block;
    position: absolute;
    right: 0px;
    top: 15px;
  }
  /* line 3121, sassy.scss */
  .header .row .settings {
    padding-top: 0px;
    text-align: left;
  }
  /* line 3124, sassy.scss */
  .header .row .settings .desktop-menu-button {
    display: none;
  }

  /* line 3133, sassy.scss */
  .header-tabs .tabs-row .trapeze-button.active-trapeze-button {
    background: url(../img/trapeze-button-mobiles.png);
    background-repeat: no-repeat;
  }

  /* line 3141, sassy.scss */
  #panel-survey-list .main-status {
    padding: 15px 0;
  }

  /* line 3149, sassy.scss */
  #panel-survey-edit .child .editor select[name="survey[type_aux]"] {
    width: calc(20%);
  }
}
@media (max-width: 575px) {
  /* line 3161, sassy.scss */
  #panel-survey-edit .child .editor select[name="survey[type_number]"] {
    width: calc(15%);
  }
  /* line 3164, sassy.scss */
  #panel-survey-edit .child .editor select[name="survey[type_aux]"] {
    width: calc(29%);
  }
}
/*
 * Global styles
 */
/* line 3176, sassy.scss */
.dropdown-menu {
  margin: 0;
  border-radius: 0;
  text-align: left;
}

/* line 3182, sassy.scss */
.row {
  font-size: 15px;
}

/*
 * IE11 hacks
 * Remove default red border for required <select>, <input> and <textarea>
 */
/* line 3190, sassy.scss */
select:required:invalid, input:required:invalid, textarea:required:invalid {
  outline: none;
}
