/* 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: 35px;
  font-size: 14px;
  padding: 12px;
  font-weight: 800;
}
/* line 604, sassy.scss */
.entry .row form input[type="checkbox"] {
  height: auto;
  position: relative;
  top: 2px;
  margin-right: 3px;
}
/* line 610, sassy.scss */
.entry .row form input[type="text"] {
  margin: 0px;
}
/* line 613, sassy.scss */
.entry .row form input:focus {
  border-color: #852C2E;
}
/* line 618, sassy.scss */
.entry .row form .btn {
  background: #852C2E;
  border-radius: 0px;
  height: 45px;
  border: none;
  border-right: 5px solid #852C2E;
  padding: 10px 50px;
}
/* line 625, sassy.scss */
.entry .row form .btn:active {
  background: #616060;
  border: none;
  border-right: 5px solid #616060;
  outline: none;
}
/* line 632, sassy.scss */
.entry .row form .btn-link {
  font-size: 14px;
  display: block;
  color: #852C2E;
  font-weight: 800;
  margin-top: 20px;
}
/* line 639, sassy.scss */
.entry .row form .fas {
  padding-right: 10px;
}
/* line 642, sassy.scss */
.entry .row form .register {
  margin-top: 15px;
}
/* line 646, 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 661, sassy.scss */
.entry .row .alert:after {
  content: url("../img/alert-decoration.png");
  position: absolute;
  top: 42px;
  left: 16px;
}
/* line 673, sassy.scss */
.entry#panel-reset h5 {
  color: #852C2E;
}
/* line 677, sassy.scss */
.entry#panel-reset ul li {
  padding: 0 10px;
}
/* line 679, sassy.scss */
.entry#panel-reset ul li:first-child {
  padding-left: 0px;
}
/* line 681, 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 692, sassy.scss */
.entry#panel-reset ul li a {
  font-size: 14px;
  font-weight: bold;
}

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

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

/* line 762, sassy.scss */
#panel-survey-list {
  /*
   * Copied/duplicated from #panel-survey-chart-list
   */
}
/* line 763, sassy.scss */
#panel-survey-list .main-status {
  padding: 30px 0;
  font-size: 14px;
  text-transform: uppercase;
}
/* line 768, sassy.scss */
#panel-survey-list .no_log_data {
  text-align: center;
  display: block;
}
/* line 773, sassy.scss */
#panel-survey-list .mCSB_scrollTools {
  right: -30px;
  margin: 0px;
}
/* line 778, 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 787, sassy.scss */
#panel-survey-list .showdetails {
  cursor: pointer;
}
/* line 790, sassy.scss */
#panel-survey-list .parent {
  padding: 20px;
  background: #f6f6f6;
  position: relative;
  margin-right: 0px;
}
/* line 795, sassy.scss */
#panel-survey-list .parent.manage-panel {
  margin-right: -15px;
}
/* line 801, sassy.scss */
#panel-survey-list .parent .row div:nth-child(1) {
  text-align: left;
  padding-left: 39px;
}
/* line 804, sassy.scss */
#panel-survey-list .parent .row div:nth-child(1).manage-panel {
  padding-left: 15px;
}
/* line 809, 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 814, sassy.scss */
#panel-survey-list .parent .row div:nth-child(3) .task-status i {
  color: #b6b2b8;
}
/* line 819, sassy.scss */
#panel-survey-list .parent .row div:nth-child(4) {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
}
/* line 823, sassy.scss */
#panel-survey-list .parent .row div:nth-child(4) b {
  /*font-size: 1rem;*/
  text-transform: none;
  padding-left: 5px;
}
/* line 829, sassy.scss */
#panel-survey-list .parent .row div.showdetails {
  color: #852C2E;
  text-transform: uppercase;
  font-size: 14px;
}
/* line 833, 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 844, sassy.scss */
#panel-survey-list .parent .row div.opened-details b:after {
  content: "\f106";
}
/* line 849, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) {
  position: absolute;
  right: 0px;
}
/* line 852, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown {
  display: inline-block;
}
/* line 854, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-toggle {
  display: block;
  width: 62px;
  top: -5px;
  height: 32px;
  transform: rotate(90deg);
  right: -35px;
  border-radius: 0px;
  background: #e6e6e6;
  position: relative;
  border: transparent;
  cursor: pointer;
  outline: none;
}
/* line 867, 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 876, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-toggle:after {
  display: none;
}
/* line 879, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-toggle:hover {
  background: #2b2a33;
}
/* line 881, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-toggle:hover:before {
  color: #fff;
}
/* line 885, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-toggle.opened-dropdown {
  background: #dcd3d3;
}
/* line 888, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-toggle.opened-dropdown:hover:before {
  color: #342a32;
}
/* line 894, sassy.scss */
#panel-survey-list .parent .row div:nth-child(5) .dropdown .dropdown-menu {
  padding: 18px 15px;
  left: -188px;
  top: -2px;
}
/* line 901, sassy.scss */
#panel-survey-list .parent .row div .supervisor {
  color: #212529;
}
/* line 904, sassy.scss */
#panel-survey-list .parent .row div .supervisor b:after {
  display: none !important;
}
/* line 907, sassy.scss */
#panel-survey-list .parent .row div .supervisor b:before {
  display: none !important;
}
/* line 914, sassy.scss */
#panel-survey-list .parent.opened-tab {
  border-bottom: 1px solid #dad8db;
  border-top: 8px solid #842c2d;
  background: #eae1e2;
}
/* line 921, sassy.scss */
#panel-survey-list .parent.opened-tab .row div:nth-child(5) b:after {
  content: "\f106";
}
/* line 932, sassy.scss */
#panel-survey-list .parent.opened-tab-log .row div:nth-child(5) b:after {
  content: "\f106";
}
/* line 941, sassy.scss */
#panel-survey-list .child {
  background: #f6f0f0;
  padding: 0 20px;
}
/* line 944, sassy.scss */
#panel-survey-list .child .first {
  display: block;
  font-weight: normal;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 951, sassy.scss */
#panel-survey-list .select-bar {
  padding: 0 0 0 28px;
  margin-top: 30px;
  margin-bottom: 30px;
}
/* line 955, sassy.scss */
#panel-survey-list .select-bar input#selectall {
  position: relative;
  top: 10px;
}
/* line 960, sassy.scss */
#panel-survey-list .select-bar input[name=search] {
  height: 35px;
}
/* line 965, 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 974, sassy.scss */
#panel-survey-list .summary h6 {
  font-weight: 400;
  padding-left: 24px;
}
/* line 978, sassy.scss */
#panel-survey-list .summary .row {
  margin-right: 20px;
  margin-left: 20px;
}
/* line 981, sassy.scss */
#panel-survey-list .summary .row #summary-table {
  width: 100%;
}
/* line 983, sassy.scss */
#panel-survey-list .summary .row #summary-table #summary-head {
  padding: 10px 0;
  margin-left: -10px !important;
  margin-right: 20px;
}
/* line 989, sassy.scss */
#panel-survey-list .summary .row #summary-table #summary-body .row {
  padding: 5px 0;
  margin-left: -10px !important;
}
/* line 997, sassy.scss */
#panel-survey-list #export-button-container {
  display: none;
  height: 130px;
  text-align: center;
}
/* line 1001, 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 1012, sassy.scss */
#panel-survey-list .no_side_padding {
  padding-left: 0px;
  padding-right: 0px;
}
/* line 1016, sassy.scss */
#panel-survey-list .no_top_bottom_padding {
  padding-top: 0px;
  padding-bottom: 0px !important;
}
/* line 1021, sassy.scss */
#panel-survey-list .manage-panel-filter .sortby {
  color: #fff;
}
/* line 1023, 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 1031, sassy.scss */
#panel-survey-list .manage-panel-filter .sortby:hover {
  text-decoration: none;
}
/* line 1040, sassy.scss */
#panel-survey-list .filter_section div input {
  padding: 8px 15px;
}
/* line 1045, 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 1053, sassy.scss */
#panel-survey-list .select-wrapper select::-ms-expand {
  display: none;
}
/* line 1056, 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 1068, 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 1079, sassy.scss */
#panel-survey-list .auswerten {
  margin: 5px 1px 3px 0px;
  padding-bottom: 11px;
  padding-top: 10px;
  width: 100%;
}
/* line 1084, 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 1097, sassy.scss */
#panel-survey-chart-list {
  padding-top: 20px;
}
/* line 1099, 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 1108, 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 1118, sassy.scss */
#panel-survey-chart-list .parent .showdetails.opened-details b:after {
  content: "\f106";
}
/* line 1124, sassy.scss */
#panel-survey-chart-list .parent .showdetails.real_graph_position b {
  display: block;
  float: right;
}
/* line 1131, sassy.scss */
#panel-survey-chart-list .child {
  background: #f6f6f6;
  padding: 0px;
}
/* line 1134, sassy.scss */
#panel-survey-chart-list .child .charts-container {
  margin: 0;
  padding: 0 30px;
}
/* line 1138, sassy.scss */
#panel-survey-chart-list .child .first {
  display: block;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 1144, sassy.scss */
#panel-survey-chart-list .child .second {
  display: block;
  font-weight: 800;
  font-size: 14px;
}
/* line 1149, sassy.scss */
#panel-survey-chart-list .child #chart_draw {
  height: 550px;
  padding-top: 20px;
}
/* line 1154, sassy.scss */
#panel-survey-chart-list .child #chart_draw_2 {
  padding-top: 20px;
}
/* line 1160, sassy.scss */
#panel-survey-chart-list .child .parent_chart_2 {
  display: none;
}
/* line 1163, sassy.scss */
#panel-survey-chart-list .child .chart_draw_2_label {
  display: none;
}
/* line 1166, sassy.scss */
#panel-survey-chart-list .child.chart_show {
  margin: 0 -15px;
  background: #f6f6f6;
}
/* line 1175, sassy.scss */
#panel-survey-chart-list .child.show_two_charts .parent_chart_2 {
  display: inline;
}
/* line 1178, sassy.scss */
#panel-survey-chart-list .child.show_two_charts #chart_draw {
  height: 250px;
  margin-top: 20px;
}
/* line 1182, sassy.scss */
#panel-survey-chart-list .child.show_two_charts #chart_draw_2 {
  height: 250px;
  margin-top: 20px;
  display: initial;
}
/* line 1187, sassy.scss */
#panel-survey-chart-list .child.show_two_charts .chart_draw_2_label {
  display: inline;
  font-family: 'Roboto', regular;
  font-size: 12px;
}
/* line 1193, 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 1204, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input {
  position: relative;
}
/* line 1207, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input .year_dropdown .year_show {
  width: 100%;
  color: #842b2d;
}
/* line 1211, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input .year_dropdown:before {
  top: 8px;
}
/* line 1215, 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 1221, 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 1231, 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 1243, 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 1256, 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 1261, 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 1266, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input .showdetails {
  text-align: right;
  padding-right: 35px;
}
/* line 1269, sassy.scss */
#panel-survey-chart-list .parent.chart_show_input .showdetails b {
  line-height: 35px;
}
/* line 1273, 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 1280, 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 1287, 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 1297, 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 1306, 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 1313, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li {
  display: inline-block;
  margin: 15px;
}
/* line 1316, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure {
  margin: 0;
}
/* line 1319, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure div {
  height: 3px;
  width: 55px;
  margin: 0 auto;
}
/* line 1323, 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 1331, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure figcaption {
  padding: 10px 0;
}
/* line 1335, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure.circle div {
  background: #4d7ca8;
}
/* line 1337, 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 1346, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure.rhomb div {
  background: #852d2b;
}
/* line 1348, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure.rhomb div span {
  transform: rotate(45deg);
  background: #852d2b;
}
/* line 1355, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure.rectangle div {
  background: #098d42;
}
/* line 1357, sassy.scss */
#panel-survey-chart-list .custom-chart-legend li figure.rectangle div span {
  background: #098d42;
}
/* line 1367, 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 1377, sassy.scss */
#panel-survey-chart-list .chart_type select::-ms-expand {
  display: none;
}
/* line 1380, 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: 15px;
  color: #842b2d;
  pointer-events: none;
}
/* line 1393, 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 1402, sassy.scss */
#panel-survey-chart-list .select-wrapper select::-ms-expand {
  display: none;
}
/* line 1405, 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 1417, sassy.scss */
#panel-survey-chart-list .filter_section {
  margin-bottom: 5px;
}
/* line 1419, sassy.scss */
#panel-survey-chart-list .filter_section div {
  padding-left: 0;
}
/* line 1421, sassy.scss */
#panel-survey-chart-list .filter_section div:last-child {
  padding-right: 0;
}
/* line 1424, sassy.scss */
#panel-survey-chart-list .filter_section div input {
  padding: 8px 15px 8px 15px;
  height: 43px;
}
/* line 1432, 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 1438, 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 1449, sassy.scss */
#panel-survey-chart-list .auswerten {
  margin: 5px 1px 3px 0px;
  padding-bottom: 11px;
  padding-top: 10px;
  width: 100%;
}
/* line 1454, 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 1462, 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 1471, sassy.scss */
#panel-survey-chart-list .manage-panel-filter .row div {
  padding-right: 8px;
}
/* line 1474, sassy.scss */
#panel-survey-chart-list .manage-panel-filter .manage-panel {
  padding-left: 0px;
  padding-right: 0px;
}
/* line 1477, sassy.scss */
#panel-survey-chart-list .manage-panel-filter .manage-panel input {
  margin-left: 0px;
  margin-right: 25px;
}
/* line 1483, sassy.scss */
#panel-survey-chart-list .manage-panel-filter div .sortby {
  color: #fff;
}
/* line 1485, 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 1493, sassy.scss */
#panel-survey-chart-list .manage-panel-filter div .sortby:hover {
  text-decoration: none;
}
/* line 1497, sassy.scss */
#panel-survey-chart-list .manage-panel-filter div:last-child {
  text-align: right;
}
/* line 1505, 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 1510, sassy.scss */
#panel-survey-chart-list .manage-panel-filter .viability-sort b a:after {
  top: -8px;
}
/* line 1517, sassy.scss */
#panel-survey-chart-list .user-id-header {
  padding-left: 10px;
}
/* line 1520, sassy.scss */
#panel-survey-chart-list .user-id-content {
  padding-left: 5px;
}
/* line 1523, sassy.scss */
#panel-survey-chart-list .showdetails {
  padding-right: 35px;
  padding-left: 0;
}
/* line 1530, sassy.scss */
#panel-survey-chart-list #id_info_place .manage-panel {
  padding-left: 10px;
  padding-right: 0px;
  position: relative;
}
/* line 1534, sassy.scss */
#panel-survey-chart-list #id_info_place .manage-panel input {
  position: relative;
  margin-left: 0px;
  margin-top: 0px;
  margin-right: 25px;
}
/* line 1540, 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 1548, sassy.scss */
#panel-survey-chart-list #id_info_place .manage-panel.opened-tab {
  background: #eae1e2;
}
/* line 1550, sassy.scss */
#panel-survey-chart-list #id_info_place .manage-panel.opened-tab:not(:first-child) {
  border-top: 10px solid #842c2d;
}
/* line 1554, sassy.scss */
#panel-survey-chart-list #id_info_place .manage-panel .netto {
  text-align: right;
  padding-right: 25px;
}
/* line 1560, sassy.scss */
#panel-survey-chart-list #id_info_place .child {
  background: #f6f0f0;
  padding: 0px 10px;
}
/* line 1566, sassy.scss */
#panel-survey-chart-list .parent.manage-panel {
  background: #f6f6f6;
  color: black;
}
/* line 1569, sassy.scss */
#panel-survey-chart-list .parent.manage-panel.marked {
  background: #ebe1e2;
}
/* line 1577, sassy.scss */
#panel-survey-chart-list .options-menu {
  position: absolute;
  right: -20px;
}
/* line 1580, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown {
  display: inline-block;
}
/* line 1582, 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 1595, 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 1604, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown .dropdown-toggle:after {
  display: none;
}
/* line 1607, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown .dropdown-toggle:hover {
  background: #2b2a33;
}
/* line 1609, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown .dropdown-toggle:hover:before {
  color: #fff;
}
/* line 1613, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown .dropdown-toggle.opened-dropdown {
  background: #dcd3d3;
}
/* line 1616, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown .dropdown-toggle.opened-dropdown:hover:before {
  color: #342a32;
}
/* line 1622, sassy.scss */
#panel-survey-chart-list .options-menu .dropdown .dropdown-menu {
  padding: 18px 15px;
  left: -188px;
  top: -2px;
}
/* line 1629, sassy.scss */
#panel-survey-chart-list .delete-menu-option {
  padding-left: 0px;
  padding-right: 0px;
}
/* line 1632, sassy.scss */
#panel-survey-chart-list .delete-menu-option span {
  float: right;
  font-size: 16px;
  color: white;
}
/* line 1640, sassy.scss */
#panel-survey-chart-list .color_status span {
  color: #000000;
  font-size: 10px;
}
/* line 1647, sassy.scss */
#panel-survey-chart-list .color_status.black span {
  color: #d94d1c;
  font-size: 10px;
}
/* line 1654, sassy.scss */
#panel-survey-chart-list .color_status.green span {
  color: #0a8c44;
  font-size: 10px;
}
/* line 1660, sassy.scss */
#panel-survey-chart-list .color_status.yellow span {
  color: #af841e;
  font-size: 10px;
}
/* line 1667, sassy.scss */
#panel-survey-chart-list .color_status.red span {
  color: #852b2d;
  font-size: 10px;
}
/* line 1673, sassy.scss */
#panel-survey-chart-list .color_status.after2022 span {
  color: #b4b1b2;
  font-size: 10px;
}

/* line 1684, sassy.scss */
#panel-survey-edit .parent {
  font-size: 14px;
  font-weight: 800;
  padding: 20px;
  background: #842b2d;
  cursor: pointer;
  color: white;
  text-transform: uppercase;
}
/* line 1692, sassy.scss */
#panel-survey-edit .parent:first-of-type {
  border-top: none;
}
/* line 1695, 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 1704, sassy.scss */
#panel-survey-edit .parent .showdetails {
  color: #fff;
  padding-left: 75px;
  font-size: 14px;
}
/* line 1712, sassy.scss */
#panel-survey-edit .parent.opened-tab div:nth-child(2) b:after {
  content: "\f106";
}
/* line 1719, sassy.scss */
#panel-survey-edit .child {
  padding: 35px 0;
  background: #f6f6f6;
}
/* line 1722, sassy.scss */
#panel-survey-edit .child .editor {
  width: 85%;
  margin: 0 auto;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 1727, 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 1734, sassy.scss */
#panel-survey-edit .child .editor .form-control {
  padding-left: 10px;
  font-size: 14px;
  font-weight: bold;
  height: 35px;
}
/* line 1740, sassy.scss */
#panel-survey-edit .child .editor .select {
  height: 35px;
}
/* line 1743, sassy.scss */
#panel-survey-edit .child .editor .required:after {
  content: "*";
  color: #e88a24;
  font-size: 14px;
  position: absolute;
  margin-left: 2px;
  margin-top: -1px;
}
/* line 1751, sassy.scss */
#panel-survey-edit .child .editor select[name="survey[type]"] {
  width: 50%;
  float: left;
  margin-right: 10px;
}
/* line 1756, sassy.scss */
#panel-survey-edit .child .editor select[name="survey[type_number]"] {
  width: 20%;
  float: left;
  margin-right: 10px;
}
/* line 1761, sassy.scss */
#panel-survey-edit .child .editor select[name="survey[type_aux]"] {
  width: calc(25% + 2px);
  float: left;
}
/* line 1766, sassy.scss */
#panel-survey-edit .child .editor .second textarea {
  width: 100%;
  height: 200px;
}
/* line 1771, 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 1784, sassy.scss */
#panel-survey-edit .child.pick-year-container {
  background: #e6e6e6;
  height: 70px;
  padding: 0;
}
/* line 1790, sassy.scss */
#panel-survey-edit .milestone {
  background: #f6f6f6;
  color: #2b2a33;
  border-bottom: 1px solid #dad8db;
}
/* line 1794, sassy.scss */
#panel-survey-edit .milestone .milestone-details {
  color: #2b2a33;
}
/* line 1797, 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 1806, sassy.scss */
#panel-survey-edit .milestone.opened-tab {
  background: #eae1e2;
  border-top: 10px solid #842c2d;
}
/* line 1812, sassy.scss */
#panel-survey-edit .new-milestone-container {
  background: #e6e6e6;
  height: 70px;
}
/* line 1815, sassy.scss */
#panel-survey-edit .new-milestone-container .add-milestone {
  position: relative;
  top: 9px;
  color: #e88a24;
}
/* line 1820, sassy.scss */
#panel-survey-edit .new-milestone-container .btn-new-milestone {
  margin-top: 17px;
  background: transparent;
  border: none;
  color: #e88a24;
}
/* line 1825, 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 1829, sassy.scss */
#panel-survey-edit .new-milestone-container .btn-new-milestone:hover {
  background: transparent;
  color: #842b2d;
}
/* line 1836, sassy.scss */
#panel-survey-edit .year-tab {
  background: #dccfcf;
  color: #2b2a33;
  font-size: 14px;
  border-bottom: 1px solid #dad8db;
}
/* line 1841, sassy.scss */
#panel-survey-edit .year-tab .year-details {
  color: #2b2a33;
}
/* line 1843, sassy.scss */
#panel-survey-edit .year-tab .year-details .year-subtab {
  background: #eae1e2;
  color: #2b2a33;
  font-size: 14px;
}
/* line 1850, sassy.scss */
#panel-survey-edit .year-opened {
  background: #dccfcf;
}
/* line 1853, sassy.scss */
#panel-survey-edit .year-child {
  padding: 0;
  background: #eae1e2;
}
/* line 1857, sassy.scss */
#panel-survey-edit .table-child {
  padding: 0;
}
/* line 1859, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table {
  text-transform: uppercase;
  font-size: 12px;
  width: 100%;
}
/* line 1863, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table thead {
  background: #842b2d;
  line-height: 35px;
  color: white;
  text-align: center;
}
/* line 1868, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table thead tr {
  display: block;
  background: #842b2d;
}
/* line 1871, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table thead tr td {
  width: 6%;
}
/* line 1873, 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 1879, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table thead tr td:last-child {
  width: 8%;
}
/* line 1885, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody {
  display: block;
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
}
/* line 1890, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody tr {
  /* height: 90px; */
}
/* line 1892, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody tr td {
  width: 6.1%;
  padding: 0 5px;
}
/* line 1895, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody tr td:first-child {
  padding-left: 36px;
  width: 20%;
  min-width: 230px;
}
/* line 1900, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody tr td:last-child {
  width: 8%;
}
/* line 1903, 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 1910, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody tr td input:focus {
  padding: 0 5px;
}
/* line 1915, 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 1925, 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 1931, sassy.scss */
#panel-survey-edit .table-child .survey-cost-table tbody::-webkit-scrollbar {
  width: 12px;
  background: #eae1e2;
  height: 20px;
}
/* line 1936, 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 1951, sassy.scss */
#panel-survey-view {
  padding-top: 50px;
}
/* line 1953, 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 1963, 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 1976, sassy.scss */
#panel-survey-view .parent.opened-tab div:nth-child(2) b:after {
  content: "\f106";
}
/* line 1983, sassy.scss */
#panel-survey-view .child {
  background: #f6f6f6;
  padding: 0px;
}
/* line 1986, sassy.scss */
#panel-survey-view .child .first {
  display: block;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 1992, sassy.scss */
#panel-survey-view .child .second {
  display: block;
  font-weight: 800;
  font-size: 14px;
}
/* line 1997, sassy.scss */
#panel-survey-view .child .milestone {
  font-size: 14px;
  font-weight: bold;
  background: none;
  color: #212529;
}
/* line 2002, sassy.scss */
#panel-survey-view .child .milestone.opened-tab:not(:first-child) {
  background: #eae1e2;
  border-top: 10px solid #842c2d;
}
/* line 2007, sassy.scss */
#panel-survey-view .child .milestone-details {
  color: #2b2a33;
  border-top: 1px solid #dad8db;
}
/* line 2010, sassy.scss */
#panel-survey-view .child .milestone-details .row {
  border-bottom: 1px solid #dad8db;
  padding: 20px;
}
/* line 2013, sassy.scss */
#panel-survey-view .child .milestone-details .row:last-child {
  border-bottom: none;
}
/* line 2019, 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 2025, sassy.scss */
#panel-survey-view .child.business-cases-tab .business-case-category.active {
  background: #eae1e2;
  border-bottom: 1px solid #d0c9cd;
}
/* line 2034, sassy.scss */
#panel-survey-view .report-row .row {
  border-bottom: 1px solid #dad8db;
  padding: 20px;
  color: black;
}
/* line 2038, sassy.scss */
#panel-survey-view .report-row .row:last-child {
  border-bottom: none;
}
/* line 2043, sassy.scss */
#panel-survey-view .info {
  padding: 20px;
}
/* line 2045, sassy.scss */
#panel-survey-view .info .first {
  padding: 5px 0;
}
/* line 2050, sassy.scss */
#panel-survey-view .slider .slick-arrow {
  display: none;
}
/* line 2054, 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 2066, sassy.scss */
#panel-survey-view .table-container {
  padding-left: 0px;
  font-size: 14px;
  font-weight: bold;
  background: #eae1e2;
}
/* line 2071, sassy.scss */
#panel-survey-view .table-container .quarters-navigation {
  text-align: center;
  padding-left: 39px;
  padding-right: 39px;
  z-index: 5;
}
/* line 2077, 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 2083, 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 2090, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-prev {
  left: 10px;
}
/* line 2093, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-next {
  right: 10px;
}
/* line 2098, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-slide div {
  width: 100%;
}
/* line 2100, 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 2104, 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 2113, 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 2121, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-slide div a:hover {
  text-decoration: none;
  cursor: pointer;
}
/* line 2125, sassy.scss */
#panel-survey-view .table-container .quarters-navigation .slick-slide div a:focus {
  outline: none;
}
/* line 2133, sassy.scss */
#panel-survey-view .big-table {
  margin-top: -20px;
}
/* line 2135, sassy.scss */
#panel-survey-view .big-table .table-header {
  padding-right: 0px;
  font-weight: normal;
  text-transform: uppercase;
}
/* line 2139, sassy.scss */
#panel-survey-view .big-table .table-header .cell {
  text-align: left;
  padding: 10px;
  padding-left: 35px;
  background: #eae1e2;
}
/* line 2144, sassy.scss */
#panel-survey-view .big-table .table-header .cell.dark {
  background: #2b2a33;
  color: #fff;
}
/* line 2148, sassy.scss */
#panel-survey-view .big-table .table-header .cell.red {
  background: #842b2d;
  color: #fff;
}
/* line 2152, sassy.scss */
#panel-survey-view .big-table .table-header .cell.regular {
  border-top: 1px solid #dad8db;
  line-height: 1;
}
/* line 2156, sassy.scss */
#panel-survey-view .big-table .table-header .cell.empty {
  background: #eae1e2;
}
/* line 2162, sassy.scss */
#panel-survey-view .big-table .table-body .cell {
  padding: 10px;
  background: #f6f0f0;
  text-align: center;
}
/* line 2166, sassy.scss */
#panel-survey-view .big-table .table-body .cell.dark {
  background: #2b2a33;
  color: #fff;
}
/* line 2170, sassy.scss */
#panel-survey-view .big-table .table-body .cell.red {
  background: #842b2d;
  color: #fff;
  text-transform: uppercase;
}
/* line 2175, sassy.scss */
#panel-survey-view .big-table .table-body .cell.empty {
  background: #eae1e2;
}
/* line 2178, 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 2190, 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 2200, 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 2217, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .parent.row {
  margin-right: -15px;
}
/* line 2221, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child {
  background: #f6f6f6;
  padding-left: 0px;
  padding-right: 0px;
}
/* line 2225, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child .first {
  display: block;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 2231, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child .second {
  display: block;
  font-weight: 800;
  font-size: 14px;
}
/* line 2236, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child .milestone {
  font-size: 14px;
  font-weight: bold;
  background: none;
  color: #212529;
}
/* line 2241, 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 2246, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child .milestone-details {
  color: #2b2a33;
  border-top: 1px solid #dad8db;
}
/* line 2249, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child .milestone-details .row {
  border-bottom: 1px solid #dad8db;
  padding: 20px;
}
/* line 2252, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .child .milestone-details .row:last-child {
  border-bottom: none;
}
/* line 2258, 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 2264, 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 2273, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .report-row .row {
  border-bottom: 1px solid #dad8db;
  padding: 20px;
  color: black;
}
/* line 2277, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .report-row .row:last-child {
  border-bottom: none;
}
/* line 2282, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .info {
  padding: 20px;
}
/* line 2284, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .info .first {
  padding: 5px 0;
}
/* line 2289, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .slider .slick-arrow {
  display: none;
}
/* line 2293, 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 2305, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container {
  padding-left: 0px;
  font-size: 14px;
  font-weight: bold;
  background: #eae1e2;
}
/* line 2310, 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 2316, 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 2322, 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 2329, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-prev {
  left: 10px;
}
/* line 2332, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-next {
  right: 10px;
}
/* line 2337, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-slide div {
  width: 100%;
}
/* line 2339, 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 2343, 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 2355, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-slide div.changed_data_marker a {
  color: orange;
}
/* line 2359, 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 2367, 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 2371, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .table-container .quarters-navigation .slick-slide div a:focus {
  outline: none;
}
/* line 2379, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table {
  margin-top: -20px;
}
/* line 2381, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-header {
  padding-right: 0px;
  font-weight: normal;
  text-transform: uppercase;
}
/* line 2385, 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 2390, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-header .cell.dark {
  background: #2b2a33;
  color: #fff;
}
/* line 2394, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-header .cell.red {
  background: #842b2d;
  color: #fff;
}
/* line 2398, 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 2402, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-header .cell.empty {
  background: #eae1e2;
}
/* line 2408, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-body .cell {
  padding: 10px;
  background: #f6f0f0;
  text-align: center;
}
/* line 2412, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-body .cell.dark {
  background: #2b2a33;
  color: #fff;
}
/* line 2416, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-body .cell.red {
  background: #842b2d;
  color: #fff;
  text-transform: uppercase;
}
/* line 2421, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .big-table .table-body .cell.empty {
  background: #eae1e2;
}
/* line 2424, 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 2434, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu {
  position: absolute;
  right: 0px;
}
/* line 2437, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown {
  display: inline-block;
}
/* line 2439, 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 2452, 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 2461, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown .dropdown-toggle:after {
  display: none;
}
/* line 2464, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown .dropdown-toggle:hover {
  background: #2b2a33;
}
/* line 2466, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown .dropdown-toggle:hover:before {
  color: #fff;
}
/* line 2470, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown .dropdown-toggle.opened-dropdown {
  background: #dcd3d3;
}
/* line 2473, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown .dropdown-toggle.opened-dropdown:hover:before {
  color: #342a32;
}
/* line 2479, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .options-menu .dropdown .dropdown-menu {
  padding: 18px 15px;
  left: -188px;
  top: -2px;
}
/* line 2487, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .log_data_additional_info :first-child {
  padding-left: 20px;
}
/* line 2490, 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 2498, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .log_data_additional_info .new_value {
  color: green;
}
/* line 2499, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .log_data_additional_info .new_value b {
  color: black;
}
/* line 2504, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .log_data_additional_info .old_value {
  color: red;
}
/* line 2505, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .log_data_additional_info .old_value b {
  color: black;
}
/* line 2513, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .opened-tab {
  border-bottom: 1px solid #dad8db;
  border-top: 0px solid #842c2d;
}
/* line 2520, sassy.scss */
.panel-survey-log-element:not(#panel-survey-view) .opened-tab .row div:nth-child(5) b:after {
  content: "\f106";
}

/* line 2530, sassy.scss */
#panel-user-list {
  margin-bottom: 150px;
}
/* line 2532, sassy.scss */
#panel-user-list .row {
  position: relative;
  padding: 20px;
  background: #f6f6f6;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
}
/* line 2539, sassy.scss */
#panel-user-list .row .dropdown {
  display: inline-block;
}
/* line 2541, sassy.scss */
#panel-user-list .row .dropdown .dropdown-toggle {
  width: 65px;
  top: -18px;
  height: 35px;
  transform: rotate(90deg);
  right: -36px;
  border-radius: 0px;
  background: #e6e6e6;
  position: absolute;
  border: transparent;
  cursor: pointer;
  outline: none;
}
/* line 2553, 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 2562, sassy.scss */
#panel-user-list .row .dropdown .dropdown-toggle:after {
  display: none;
}
/* line 2565, sassy.scss */
#panel-user-list .row .dropdown .dropdown-toggle:hover {
  background-color: #2b2a33;
}
/* line 2567, sassy.scss */
#panel-user-list .row .dropdown .dropdown-toggle:hover:before {
  color: #fff;
}
/* line 2572, sassy.scss */
#panel-user-list .row .dropdown .dropdown-menu {
  padding: 10px 15px;
}
/* line 2577, sassy.scss */
#panel-user-list .btn {
  position: relative;
  left: -15px;
}
/* line 2581, sassy.scss */
#panel-user-list b {
  padding-left: 5px;
  text-transform: initial;
  /*font-size: 1rem;*/
}

/* line 2588, sassy.scss */
#colorPicker {
  padding: 50px 0;
}
/* line 2590, sassy.scss */
#colorPicker select {
  margin: 0 0 30px 0;
  display: block;
}
/* line 2594, sassy.scss */
#colorPicker h6 {
  display: none;
  margin: 30px 0;
}
/* line 2598, sassy.scss */
#colorPicker form {
  display: none;
}
/* line 2600, sassy.scss */
#colorPicker form .row {
  padding: 5px 15px;
}
/* line 2602, sassy.scss */
#colorPicker form .row label {
  min-width: 250px;
  padding: 3px 0;
  margin: 0px;
}
/* line 2608, sassy.scss */
#colorPicker form input[type=submit] {
  display: block;
  margin: 30px 0;
}

/* line 2615, sassy.scss */
#panel-user-edit {
  padding-top: 40px;
}
/* line 2617, sassy.scss */
#panel-user-edit input {
  max-width: 328px;
  font-weight: 800;
  font-size: 14px;
  padding: 10px;
}
/* line 2622, sassy.scss */
#panel-user-edit input[name="name"] {
  margin-left: 185px;
}
/* line 2625, sassy.scss */
#panel-user-edit input[name="email"] {
  margin-right: 185px;
}
/* line 2628, sassy.scss */
#panel-user-edit input[type="radio"] {
  margin: 0 5px 0 0px;
}
/* line 2632, sassy.scss */
#panel-user-edit input:invalid {
  outline: none;
  box-shadow: none;
}
/* line 2636, sassy.scss */
#panel-user-edit select {
  padding-left: 0px;
}
/* line 2639, sassy.scss */
#panel-user-edit label {
  text-transform: uppercase;
}
/* line 2642, sassy.scss */
#panel-user-edit label[for="name"] {
  padding-left: 185px;
}
/* line 2645, sassy.scss */
#panel-user-edit label[for="exampleFormControlSelect1"] {
  display: block;
  color: #000;
}
/* line 2649, sassy.scss */
#panel-user-edit .roles {
  padding-left: 200px;
}
/* line 2651, sassy.scss */
#panel-user-edit .roles h6 {
  display: block;
  width: 100%;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 10px;
}
/* line 2658, sassy.scss */
#panel-user-edit .roles .col-sm {
  padding-left: 0px;
  max-width: 20%;
  font-weight: 800;
  font-size: 14px;
  text-transform: capitalize;
}
/* line 2665, 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 2678, sassy.scss */
#panel-user-edit .roles .role input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* line 2683, 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 2694, sassy.scss */
#panel-user-edit .roles .role:hover input ~ .checkmark {
  background-color: #ccc;
}
/* line 2697, sassy.scss */
#panel-user-edit .roles .role input:checked ~ .checkmark {
  background-color: #fff;
  border: 1px solid #b8b6bb;
}
/* line 2701, sassy.scss */
#panel-user-edit .roles .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* line 2706, sassy.scss */
#panel-user-edit .roles .role input:checked ~ .checkmark:after {
  display: block;
}
/* line 2710, sassy.scss */
#panel-user-edit .roles .role .checkmark:after {
  top: 2px;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #842c2d;
}
/* line 2719, sassy.scss */
#panel-user-edit .supervisor {
  margin-left: 185px;
}
/* line 2721, sassy.scss */
#panel-user-edit .supervisor .users-list {
  height: 190px;
  width: 100%;
  max-width: 328px;
  overflow-y: scroll;
}
/* line 2726, sassy.scss */
#panel-user-edit .supervisor .users-list ul {
  list-style: none;
  padding-inline-start: 0px;
}
/* line 2729, sassy.scss */
#panel-user-edit .supervisor .users-list ul li {
  vertical-align: middle;
  margin: 5px 0;
}
/* line 2737, 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 2751, sassy.scss */
#panel-user-edit .account-info {
  margin-left: 170px;
}
/* line 2754, sassy.scss */
#panel-user-edit .btn {
  display: block;
}

/* line 2759, sassy.scss */
.pagination {
  display: block;
  text-align: center;
  margin-top: 25px;
  color: #212529;
}
/* line 2764, sassy.scss */
.pagination li {
  display: inline-block;
  padding: 0 3px;
}
/* line 2767, sassy.scss */
.pagination li.active {
  color: #842c2d;
  font-weight: 800;
}
/* line 2770, sassy.scss */
.pagination li.active .page-link {
  background-color: #842c2d;
  border-color: #842c2d;
}
/* line 2775, sassy.scss */
.pagination li a {
  color: #212529;
}
/* line 2779, sassy.scss */
.pagination li i.arrow-disabled {
  color: #212529;
  position: relative;
  top: -0.5px;
}
/* line 2784, sassy.scss */
.pagination li i.arrow-enabled {
  color: #842c2d;
  position: relative;
  top: -0.5px;
}

/* line 2794, 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 2804, sassy.scss */
.log_data .new_value {
  color: green;
}
/* line 2806, sassy.scss */
.log_data .new_value b {
  color: black;
}
/* line 2810, sassy.scss */
.log_data .old_value {
  color: red;
}
/* line 2811, sassy.scss */
.log_data .old_value b {
  color: black;
}

/* line 2819, sassy.scss */
.log_data :first-child {
  padding-left: 20px;
}
/* line 2822, 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 2832, sassy.scss */
.log_data .new_value {
  color: green;
}
/* line 2833, sassy.scss */
.log_data .new_value b {
  color: black;
  padding-left: 0px;
}
/* line 2839, sassy.scss */
.log_data .old_value {
  color: red;
}
/* line 2840, sassy.scss */
.log_data .old_value b {
  color: black;
  padding-left: 0px;
}

/* line 2848, sassy.scss */
.log_data_internal_id .first {
  padding-left: 20px;
}
/* line 2851, 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 2861, sassy.scss */
.log_data_internal_id .new_value {
  color: green;
}
/* line 2864, sassy.scss */
.log_data_internal_id .old_value {
  color: red;
}

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

/* line 2880, sassy.scss */
.log_data_business .log_sign_icon:before {
  width: 16px;
  height: 16px;
  content: " ";
  background-image: url(../img/black_excl_icon_16x16.png);
  position: absolute;
  left: 45px;
}
/* line 2888, sassy.scss */
.log_data_business .log_sign_icon {
  padding-left: 52px !important;
}
/* line 2891, sassy.scss */
.log_data_business .new_value {
  color: green;
}
/* line 2892, sassy.scss */
.log_data_business .new_value b {
  color: black;
}
/* line 2897, sassy.scss */
.log_data_business .old_value {
  display: block;
  color: red;
}
/* line 2898, sassy.scss */
.log_data_business .old_value b {
  color: black;
}

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

/* line 2916, 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/black_excl_icon_16x16.png);
  position: absolute;
  left: -12px;
}

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

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

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

  /* line 2953, sassy.scss */
  .app-submenu-container .fas {
    display: none;
  }
  /* line 2956, sassy.scss */
  .app-submenu-container .tab {
    margin: 20px 0px;
  }
  /* line 2958, 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 2968, sassy.scss */
  .header-tabs {
    height: 70px;
  }
  /* line 2971, sassy.scss */
  .header-tabs .tabs-row .trapeze-button {
    background-size: contain;
    height: 48px;
  }

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

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

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

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

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

  /* line 3056, sassy.scss */
  .showdetails b {
    font-size: 0px !important;
  }
  /* line 3058, 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 3068, sassy.scss */
  .status-message {
    font-size: 0px !important;
  }
  /* line 3070, sassy.scss */
  .status-message span {
    font-size: 0px !important;
  }
  /* line 3072, sassy.scss */
  .status-message span i {
    font-size: 1rem !important;
  }
}
@media (max-width: 767px) {
  /* line 3080, sassy.scss */
  .header {
    height: auto;
  }
  /* line 3083, sassy.scss */
  .header .row .logo {
    padding-bottom: 10px;
  }
  /* line 3085, sassy.scss */
  .header .row .logo .mobile-menu-button {
    display: block;
    position: absolute;
    right: 0px;
    top: 15px;
  }
  /* line 3092, sassy.scss */
  .header .row .settings {
    padding-top: 0px;
    text-align: left;
  }
  /* line 3095, sassy.scss */
  .header .row .settings .desktop-menu-button {
    display: none;
  }

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

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

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

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

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