.btn {
  min-width: 100px;
  padding: 10px;
  color: #333;
  background: white;
  text-align: center;
  border-radius: 3px;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: none;
  margin: 0.5em;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.2), inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}
.btn > svg {
  position: relative;
  top: 2px;
  margin-right: 4px;
}
.btn:hover {
  background-color: #fafafa;
}
.btn:active,
.btn:focus {
  background-color: white;
  outline: none;
  box-shadow: inset 0 2px 2px 1px rgba(0, 0, 0, 0.2);
}
.btn-primary {
  background: #2676ff;
  color: white;
}
.btn-primary:hover {
  background-color: #5996ff;
}
.btn-primary:active,
.btn-primary:focus {
  background-color: #4086ff;
  outline: none;
  box-shadow: inset 0 2px 2px 1px #0d66ff;
}
.btn-cancel {
  background: transparent;
  color: #333;
  border-color: rgba(0, 0, 0, 0.3);
}
.btn-cancel:active,
.btn-cancel:focus,
.btn-cancel:hover {
  background: transparent;
}
.btn-sm {
  height: 25px;
  padding: 3px;
  font-size: 13px;
  min-width: 80px;
  margin: 4px 0;
}
/*# sourceMappingURL=style.css.map */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 1001;
}
.modal-content {
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  max-width: 736px;
  max-height: 700px;
  overflow-y: auto;
  background: white;
  margin: 0 auto;
  font-size: 14px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }
}
.modal-head {
  padding: 20px 40px;
  margin: 0;
  background: #37a981;
  color: #fff;
  font-size: 21px;
  line-height: 21px;
}
.modal-head h4 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-weight: normal;
}
.modal-head h4 svg {
  font-size: 46px;
  position: relative;
  display: inline-block;
  margin-top: -25px;
  top: 15px;
  margin-right: 6px;
  color: #666;
}
.modal-body {
  padding: 20px 40px;
  color: #222;
  font-size: 15px;
}
.modal-foot {
  padding: 20px 40px;
  text-align: center;
  border-top: 1px solid #dadada;
  background: #fafafa;
}
.modal-body h4 {
  font-size: 15px;
}
.modal-body a {
  color: #3777FB;
}
.modal-body .btn {
  color: white;
}
.modal-body-form label {
  color: #222;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1em;
}
.modal-body-form label .grey {
  color: #bbbbbb;
}
.modal-body-form input[type="text"],
.modal-body-form input[type="email"],
.modal-body-form input[type="number"] {
  min-width: 220px;
  line-height: 40px;
  border: 1px solid #eee;
  margin-bottom: 1em;
  font-size: 21px;
  padding: 0 12px;
}
.modal-body-form input:focus,
.modal-body-form input:active {
  border-color: #c1c1c1;
  outline: none;
}
.modal-body-form input::placeholder {
  color: #222222;
  opacity: 0.3;
  font-size: 15px;
}
.modal-body-form p {
  margin: 0 0 1em;
}
.modal-body-form table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.modal-body-form table td {
  position: relative;
  vertical-align: top;
}
.modal-body-form table th,
.modal-body-form table td {
  width: 24%;
}
.modal-body-form table td input[type="text"],
.modal-body-form table td input[type="email"] {
  width: 100%;
  font-size: 14px;
}
.modal-body-form table td input[type="email"].ng-invalid-email {
  border-color: #ff4056;
}
.modal-body-form table th:first-child,
.modal-body-form table td:first-child {
  width: 52%;
}
.modal-body-form table td:not(:last-child) {
  padding-right: 8px;
}
.modal-body-form .error {
  font-weight: normal;
  padding: 0;
}
.modal-body-form-control label {
  min-width: 100px;
}
.modal-body-new-member-email .modal-body-form input[type="text"],
.modal-body-new-member-email .modal-body-form input[type="email"] {
  min-width: 0;
}
.modal-foot-actions {
  text-align: right;
}
.modal-foot-actions a {
  text-decoration: none;
}
.modal-body-new-member-email p {
  color: #333;
  line-height: 24px;
  margin-top: 30px;
}
.modal-body-new-member-email .remove-element {
  text-decoration: none;
  position: absolute;
  right: -16px;
  top: 10px;
  font-size: 20px;
  color: #666666;
  display: none;
}
.modal-body-new-member-email .empty .remove-element {
  display: block;
}
.modal-body-new-member-email table td input[type="text"],
.modal-body-new-member-email table td input[type="email"] {
  margin-bottom: 6px;
}
.modal-static .modal-content {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  display: block;
  max-width: 500px;
}
.modal-static-error {
  margin-bottom: 200px;
}
.modal-static-error .modal-head {
  background: #fff5f4;
}
.modal-static-error .modal-head h4 {
  color: #333;
}
/*# sourceMappingURL=style.css.map */
html,
body {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
}
.survey h1 {
  text-align: center;
}
.survey h2,
.survey h3,
.survey h4 {
  color: #2676ff;
  font-weight: 200;
  text-align: center;
}
.text-center {
  text-align: center;
}
.groups {
  display: flex;
  margin-top: 2em;
  flex-wrap: wrap;
}
.groups-item {
  background: #fafafa;
  border: 1px solid #dadada;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  width: 360px;
  margin-right: 1em;
  padding: 0 15px;
  margin-bottom: 1em;
}
.groups-item-title {
  padding: 15px;
  text-align: center;
}
.groups-item-title-badge {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  background: #3e53bb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  top: -8px;
  border-radius: 3px;
  color: white;
  padding: 2px 4px;
  font-size: 12px;
  font-weight: bold;
}
.groups-item-title h3 {
  font-size: 22px;
  margin: 0;
  padding: 0;
}
.groups-item-options {
  background: rgba(0, 0, 0, 0.1);
  margin: 0 -15px;
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.groups-item-members {
  margin: 0 -15px;
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.groups-item-members-item {
  position: relative;
  padding: 5px 15px;
  margin: 0 -15px;
  vertical-align: top;
}
.groups-item-members-item small {
  display: block;
  color: rgba(0, 0, 0, 0.5);
}
.groups-item-members-item:before {
  content: '●';
  color: #ffab5f;
  display: inline-block;
  vertical-align: top;
}
.groups-item-members-item-options {
  position: absolute;
  top: 5px;
  right: 15px;
}
.groups-item-members-item-name {
  display: inline-block;
}
.groups-item-completed {
  background: #cfffc9;
}
.groups-item-empty {
  background: #ffdabf;
}
.groups-item-members-item-completed:before {
  color: #07d200;
}
.groups-item-completed .groups-item-members-item-completed {
  background: transparent;
}
.survey-form {
  margin: 0 auto;
  width: 700px;
}
.survey-group {
  margin: 1em;
}
.survey-group h3 {
  margin: 0;
  padding: 0;
}
.survey-group table {
  margin: 0 -15px;
}
.survey-group tr:nth-child(2n) {
  background: rgba(0, 0, 0, 0.05);
}
.survey-group-inactive {
  background: rgba(0, 0, 0, 0.2);
}
.survey-error {
  color: #d6413a;
  padding: 15px 0;
}
.survey-actions {
  border-top: 2px solid #dadada;
  margin: 1em 0 200px;
  padding: 1em 0em;
  padding-left: 110px;
}
.survey-group-row {
  border-bottom: 1px solid #efefef;
  margin: 0 -15px;
  padding: 8px 15px;
}
.survey-group-row-title {
  padding: 8px 15px;
  width: 300px;
}
.survey-group-num {
  font-size: 70px;
  position: absolute;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.15);
  width: 70px;
  text-align: right;
}
.survey-group table {
  position: relative;
  background: white;
  margin-left: 90px;
  border: 1px solid #eaeaea;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.survey-group table thead td {
  text-align: center;
}
.survey-group-done table {
  background: rgba(207, 255, 201, 0.54);
  border-color: rgba(7, 210, 0, 0.47);
  box-shadow: 0 0 12px rgba(7, 217, 0, 0.18);
}
.survey-group-done .survey-group-num {
  color: rgba(7, 210, 0, 0.47);
}
.survey-submitted .survey-group-invalid table {
  border-color: rgba(255, 102, 87, 0.54);
  box-shadow: 0 0 12px rgba(255, 92, 60, 0.38);
}
.survey-submitted .survey-group-invalid .survey-group-num {
  color: rgba(255, 102, 87, 0.54);
}
.survey-notif {
  font-size: 15px;
  background: #efefef;
  box-shadow: 0 9px 30px rgba(0, 0, 0, 0.3);
  margin: 50px;
  padding: 10px 40px;
}
.groups-item-members-item-options-customlink {
  position: absolute;
  left: 100%;
  background: #fafafa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 15px;
  margin-left: 20px;
  margin-top: -34px;
}
.groups-item-members-item-options-customlink:before {
  content: '◀';
  font-size: 30px;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  left: -20px;
  color: #fafafa;
  text-shadow: -4px 0 6px rgba(0, 0, 0, 0.2);
}
.groups-item-members-item-options-result {
  position: absolute;
  left: 100%;
  background: #fafafa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  width: 450px;
  text-align: center;
  padding: 15px 0;
  margin-left: 20px;
  margin-top: -160px;
  z-index: 99;
}
.groups-item-members-item-options-result:before {
  content: '◀';
  font-size: 30px;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  left: -20px;
  color: #fafafa;
  text-shadow: -4px 0 6px rgba(0, 0, 0, 0.2);
}
.survey-result-chart {
  position: relative;
  width: 200px;
  display: inline-block;
}
.print {
  width: 297mm;
  text-align: center;
}
.print-result .survey-result-title {
  width: 130mm;
  display: inline-block;
  margin-bottom: 5mm;
  font-size: 24px;
}
.print-result .survey-result-chart {
  width: 130mm;
  height: 90mm;
  margin-bottom: 5mm;
}
.print-result .survey-result-chart-rightchart,
.print-result .survey-result-chart-leftchart {
  height: 60mm;
  margin-bottom: 0;
}
.print-result h4 {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 15mm;
}
@media print {
  @page {
    size: A4;
    margin: 0;
    size: landscape;
  }
  html,
  body {
    width: 297mm;
    height: 210mm;
  }
  .print-result {
    page-break-after: always;
  }
}
a[href="http://www.amcharts.com/javascript-charts/"] {
  display: none !important;
}
/*# sourceMappingURL=style.css.map */