/* REDESIGN PILOT START */
html,
body {
  height: 100%;
}

body {
  margin: 0;
  background-color: #f5f5f6;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

body > span {
  position: absolute;
  z-index: 999;
}

p {
  margin: 0;
}

a:active,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

label {
  font-weight: 500;
}

.-half {
  width: 48%;
}

.flex {
  display: flex;
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-start {
  justify-content: flex-start !important;
}

.flex-end {
  justify-content: flex-end !important;
}

.space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.text-white {
  color: #fff;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
  min-height: 20px;
  margin-bottom: 0;
}

.empty-status {
  border: 1px solid #ccc !important;
  color: #ccc !important;
  padding: 0 15px !important;
}

.empty-status:hover,
.empty-status:focus {
  text-decoration: none;
}

.login__form {
  max-width: 400px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 80px;
  background-color: #fff;
  padding: 35px;
}

.login__logo img {
  margin: 10px auto;
  display: block;
  max-width: 300px;
}

.form {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.form.-spaces {
  padding: 20px 0;
}

.form_text {
  font-size: 15px;
  color: #333;
  text-align: center;
}

.form_row {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 10px 0;
  position: relative;
}

.form_group {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  margin: 5px 0;
}

.form_group.-center {
  justify-content: center;
}

.form_label {
  font-size: 13px;
  color: #777;
}

.form_input {
  height: 40px;
  border-radius: 3px;
  border: 1px solid #ccc;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 5px 0;
  font-size: 15px;
  overflow: visible;
  color: #333;
  transition: all 0.3s ease-in-out;
}

.form_input:active,
.form_input:focus {
  outline: none;
}

.form_submit {
  width: 100px;
  height: 40px;
  background-color: #4a90e2;
  border-radius: 3px;
  border: none;
  color: #fff;
  font-size: 15px;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  text-transform: uppercase;
}

.form_link {
  font-size: 13px;
  color: #333;
}

.form_link.-blue {
  font-size: 15px;
  color: #4a90e2;
  padding: 0 5px;
}

.form_link.-button {
  border: 1px solid #4a90e2;
  border-radius: 3px;
  display: block;
  padding: 7px 10px;
  text-transform: uppercase;
  font-size: 15px;
  color: #4a90e2;
  margin: 10px auto;
  text-decoration: none;
  max-width: 140px;
  text-align: center;
}

.form_checkbox {
}

.form_checkbox input {
  opacity: 0;
  position: absolute;
}

.form_checkbox input + label {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  cursor: pointer;
  z-index: 1;
}

.form_checkbox input + label:before {
  content: '';
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 3px;
  border: 1px solid #ccc;
  margin: 0 5px 0 0;
  z-index: 1;
}

.form_checkbox input:checked + label:before {
  background-image: url('images/checked.png');
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 1px 1px;
}

.form_block-wrapper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  width: 100%;
}

.form_block.-half {
  width: 50%;
}

.form-gray-background {
  background-color: #eee;
  border-radius: 5px;
}

.form_field-small {
  max-width: 125px;
  margin: 0 10px 0 0;
}

.adjustment-input {
  flex: 1;
  min-width: 0;
  padding: 6px 10px;
  font-size: 13px;
}

.btn-add {
  background-color: #28a745;
  color: white;
}

.btn-add:hover {
  background-color: #218838;
}

.btn-subtract {
  background-color: #dc3545;
  color: white;
}

.btn-subtract:hover {
  background-color: #c82333;
}

.-state_invalid input[type='email'],
.-state_invalid input[type='password'],
.-state_invalid input[type='text'] {
  border: 1px solid #f14848;
  background-color: #fbf4f4;
}

.-clear,
.-invalid {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  font-size: 13px;
  display: block;
  height: 0;
}

.-state_invalid .-clear {
  opacity: 1;
  width: 21px;
  height: 21px;
  position: absolute;
  background-image: url('images/cross.png');
  background-repeat: no-repeat;
  -webkit-background-size: 15px;
  background-size: 15px;
  background-size: 15px;
  background-position: center center;
  right: 10px;
  top: 37px;
  cursor: pointer;
}

.-state_invalid .-invalid {
  color: #f14848;
  opacity: 1;
  height: auto;
}

.-spacing {
  margin: 25px 0;
}

.login_subTitle {
  font-size: 20px;
  color: #7ed321;
  text-align: center;
  font-weight: 500;
}

/* REDESIGN PILOT END */

/* REDESIGN PILOT #2 START */

.content {
  max-width: 1024px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.content.-with_menu {
  display: flex;
  min-height: 100vh;
}

.manage_data .content_side {
  margin-right: 37px;
}

.content_side {
  width: 250px;
  background-color: #e8f0fa;
  padding: 20px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.content_main {
  width: calc(100% - 250px);
  background-color: #fff;
  padding: 20px 40px;
}

.content_main.-grey {
  background-color: #f5f5f6;
  width: calc(100% - 320px);
  padding: 20px 0px;
}

.currentDate {
  border-top: 2px solid #c7d9f0;
  display: block;
  color: #333;
  text-align: center;
  font-size: 13px;
  line-height: 18px;
  padding: 20px 0;
  margin: 0 -20px -20px;
}

.bottomMenu_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mainMenu_list {
  padding: 0 0 0 0;
  list-style: none;
}

.mainMenu_item {
  height: 50px;
  border-left: 5px solid transparent;
}

.mainMenu_link {
  padding: 0 20px;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 48px;
  color: #4a90e2;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.mainMenu_link:hover,
.mainMenu_link:active,
.mainMenu_link:focus {
  color: #333;
  text-decoration: none;
}

.mainMenu_item.active .mainMenu_link {
  color: #333;
}

.mainMenu_item.active {
  background-color: #fff;
  border-left: 5px solid #4a90e2;
}

.logo_holder {
  position: relative;
  margin: 20px;
}

.logo {
  max-height: 60px;
  max-width: 210px;
}

.bottomMenu {
  padding: 0 20px;
}

.bottomMenu_list {
  border-top: 2px solid #c7d9f0;
}

.bottomMenu_link {
  border: none;
  background-color: transparent;
  border-radius: 0;
  color: #333;
  font-size: 15px;
  line-height: 20px;
  padding: 15px;
  position: relative;
}

.bottomMenu_link:after {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  border: 2px solid #333333;
  border-right: none;
  border-top: none;
  transform: rotate(135deg);
  right: -10px;
  top: 22px;
}

.btn-group.open .dropdown-toggle,
.open > .bottomMenu_link:active,
.open > .bottomMenu_link:hover,
.open > .bottomMenu_link:focus,
.bottomMenu_link:active,
.bottomMenu_link:hover,
.bottomMenu_link:focus {
  background-color: transparent;
  border-color: #c7d9f0;
  box-shadow: none;
}

.actionWrapper {
  padding: 10px 0 20px;
}

.actionWrapper.-right {
  text-align: right;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.search-dashboard {
  width: 350px;
  padding: 6px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 15px;
  background-color: #ffffff;
  transition: all 0.1s ease-in-out;
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.search-dashboard:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-dashboard:hover {
  border-color: #cbd5e1;
}

.search-dashboard::placeholder {
  color: #64748b;
  opacity: 1;
}

.actionWrapper.-space_between {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 0 0;
}

.button {
  border: none;
  padding: 10px;
  font-size: 15px;
  text-align: center;
  height: 40px;
  align-items: center;
}

.btn-white {
  border: 1px solid #4a90e2;
  padding: 0 15px;
  font-size: 15px;
  text-align: center;
  height: 40px;
  align-items: center;
}

.manage_data .button {
  border: none;
  padding: 10px;
  font-size: 13px;
  text-align: center;
  height: 30px;
  align-items: center;
}

.button:hover {
  text-decoration: none;
}

.button.-new {
  border-radius: 3px;
  background-color: #4a90e2;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 15px 10px 40px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.button.-new:hover {
  background-color: #426aa6;
}

.button:hover,
.button:active,
.button:focus {
  outline: none;
}

.button.-new:before,
.button.-new:after {
  content: '';
  position: absolute;
  display: block;
  width: 3px;
  height: 13px;
  background-color: #fff;
  left: 20px;
  top: 12px;
}

.button.-new:before {
  transform: rotate(90deg);
}

.button.-hollow {
  border: 1px solid #4a90e2;
  background: transparent;
  color: #4a90e2;
  font-size: 15px;
  border-radius: 3px;
  margin: 0 0 0 10px;
  display: flex;
  padding: 5px 10px;
}

.button.-download {
  background: transparent;
  color: #4a90e2 !important;
  font-size: 15px;
  display: block;
  padding: 5px 15px 5px 40px;
  text-transform: uppercase;
  background-image: url(/static/pdf.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: 10px 3px;
  width: 135px;
  text-align: right;
}

.button.-download.grey {
  color: #ccc !important;
  background-image: url(/static/grey-pdf.png);
}

.button.-default {
  background: #4a90e2;
  color: #fff;
  border: 1px solid #4a90e2;
  margin: 0 0 0 10px;
  border-radius: 3px;
  display: block;
  padding: 7px 12px;
  line-height: 15px;
}

.block_buttonGroup {
  display: flex;
  flex-direction: row-reverse;
}

.panel-default > .panel-heading,
.table > caption + thead > tr:first-child > td,
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.panel.panel-default {
  border-radius: 0;
  border: none;
}

.table > thead:first-child > tr > th:first-child {
  padding-left: 20px;
}

.panel-default > .panel-heading {
  padding-left: 20px;
}

.table > thead > tr > th {
  border-bottom: none;
}

.panel.panel-default {
  margin-bottom: 5px;
}

.table_heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eee;
}

.heading_text:first-child {
  width: 50%;
}

.table_heading .menu_toggler {
  margin: -10px -15px -10px 0;
}

.table.-style_narrow_th {
  margin: 15px 0 40px;
}

.table.-style_narrow_th th {
  padding: 6px;
  border-top: 1px solid #ccc !important;
}

.-style_narrow_th th a {
  font-size: 13px;
}

.menu_toggler {
  background-color: transparent;
  width: 51px;
  height: 50px;
  position: relative;
  border: none;
  border-radius: 0;
}

.menu_toggler:before {
  content: '...';
  display: block;
  position: absolute;
  font-size: 40px;
  transform: rotate(90deg);
  width: 50px;
  height: 50px;
  left: 1px;
  top: 0;
  line-height: 24px;
  letter-spacing: -2px;
}

.menu_toggler.menu_toggler_xd:before {
  content: '...';
  display: block;
  position: absolute;
  font-size: 40px;
  transform: rotate(90deg);
  width: 20px;
  height: 50px;
  left: 1px;
  top: 0;
  line-height: 24px;
  letter-spacing: -2px;
}

.recipient_td_first {
  display: table-cell;
  padding: 5px;
  width: 25%;
}

.recipient_td_last {
  display: table-cell;
  padding: 5px;
  width: 30%;
}

.user_table {
  margin-bottom: 40px;
}

.user_table tr {
  border-bottom: 1px solid #ccc;
}

.user_table th {
  font-size: 13px;
  font-weight: 500;
}

.user_table td {
  vertical-align: middle !important;
  font-size: 15px;
  border-top: none !important;
}

.user_table td:first-child {
  max-width: 30%;
  min-width: 30%;
  width: 30%;
  padding-left: 20px;
}

.user_table td:last-child {
  max-width: 50px;
  min-width: 50px;
  width: 50px;
  box-sizing: content-box;
  padding: 0 1px 0 0;
}

.dropdown-menu {
  border-radius: 0;
  border: none;
}

.dropdown-menu li a {
  padding: 10px 20px;
}

.btn:active,
.btn:focus {
  outline: none;
}

.btn {
  text-transform: uppercase;
}

.btn.btn-default {
  border: 1px solid #4a90e2;
  color: #4a90e2;
  background-color: #fff !important;
}

.btn.btn-default:hover {
  background-color: #fff;
}

.btn.btn-primary {
  background-color: #4a90e2;
  border: 1px solid #4a90e2;
}

.btn.btn-primary:focus {
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.25);
}

.btn.btn-secondary {
  background-color: #a7a6a6;
  border: 1px solid #a7a6a6;
}

.btn.btn-secondary:disabled {
  opacity: 0.3;
}

.btn.btn-secondary:focus {
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.25);
}

button.btn-collapse {
  outline: none;
  border-color: transparent;
}

button.btn-collapse.collapsed:before {
  content: '+';
  display: block;
}

button.btn-collapse:before {
  content: '-';
  display: block;
  width: 15px;
}

.modal-header {
  border: none;
  padding: 30px 30px 10px;
}

.modal-title {
  font-size: 20px;
}

.form-group label {
  font-size: 13px;
  color: #777;
  width: 100%;
}

.modal-body {
  display: flex;
  flex-wrap: wrap;
}

.form-control {
  height: 40px;
  box-shadow: none !important;
}

.form-select-arrow {
  position: relative;
}

.form-select-arrow select::-ms-expand {
  display: none;
}

.form-select-arrow select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

.form-select-arrow:before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  border: 2px solid #333333;
  border-right: none;
  border-top: none;
  transform: rotate(-45deg);
  right: 17px;
  top: 11px;
}

.modal-footer .btn {
  height: 32px;
}

.link.-new {
  color: #4a90e2;
  position: relative;
  padding: 10px 10px 10px 40px;
}

.link.-new:hover {
  color: #4a90e2;
}

.link.-new:before,
.link.-new:after {
  content: '';
  position: absolute;
  display: block;
  content: '';
  position: absolute;
  display: block;
  width: 3px;
  height: 13px;
  background-color: #4a90e2;
  left: 20px;
  top: 12px;
}

.dropdown-menu {
  width: 100%;
}

.link.-new:after {
  transform: rotate(90deg);
}

.btn.btn-default.-custom {
  width: 100%;
  border-color: #ccc;
  color: #333;
  text-align: left;
  height: 40px;
}

.open > .dropdown-toggle.btn-default {
  background-color: transparent !important;
}

.open > .dropdown-toggle.btn-default {
  border-color: #66afe9 !important;
  outline: 0;
  -webkit-box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}

.pending td {
  color: #7f7f7f;
}

.pending .pending-status {
  display: block;
  color: #7f7f7f;
  font-size: 13px;
  line-height: 18px;
}

.pending .menu_toggler:before {
  color: initial;
}

.pending .dropdown-menu li:first-child a {
  color: #7f7f7f;
}

.pending .dropdown-menu li:first-child {
  pointer-events: none;
}

.col-lg-6 {
  width: 50%;
}

.col-lg-12 {
  width: 100%;
}

.block_title {
  font-size: 20px;
  color: #333;
}

.without-background {
  max-width: 700px;
  margin: 50px auto 20px;
}

.without-background i {
  font-style: normal;
  float: right;
  font-size: 13px;
  padding-top: 7px;
}

.without-background span {
  font-size: 15px;
}

.block_title.-style_spaced {
  padding: 0 0 25px;
}

.-sort {
  color: #333;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.-sort:hover {
  color: #333;
}

.block_heading {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 10px 20px;
  border-bottom: 1px solid #ccc;
}

.block_heading_empty {
  padding-bottom: 15px !important;
  border: 0;
}

.block_ {
  border-radius: 3px;
  background-color: #fff;
  margin: 20px 0;
  padding: 0 0 20px;
}

.block_.-noContent {
  padding: 0 0 10px;
}

.block_.-noContent .block_heading {
  border: none;
}

.block_ li {
  list-style: none;
}

.block_ .ui-state-default {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  border: none;
  background: transparent;
}

.block_buttonHolder {
  min-width: 175px;
  display: flex;
  align-items: center;
}

.task_item_expand {
  text-transform: uppercase;
  color: #4a90e2;
  padding: 0 20px;
  position: relative;
  cursor: pointer;
  font-size: 13px;
}

.task_item_expand:after {
  content: 'MORE';
  color: #4a90e2;
  font-size: 13px;
  padding: 0 0 0 5px;
}

.task_item_expand.-active:after {
  content: 'LESS';
}

.task_item_expand.-active {
}

.task_item_expand:before {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  border: 2px solid #4a90e2;
  border-top: none;
  border-right: none;
  position: absolute;
  right: 0;
  top: 0px;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.task_item_expand.-active:before {
  transform: rotate(-225deg);
  top: 6px;
}

.task_item {
  width: calc(100% - 175px);
}

.task_item_count {
  background-color: #e8f0fa;
  margin: 0 25px;
  position: relative;
  padding: 10px;
}

.task_item_body {
  background-color: #e8f0fa;
  margin: 0 25px;
  height: 0;
  overflow: hidden;
  padding: 0;
}

.task_item_body.-active {
  height: auto;
  padding: 10px;
  max-height: 80px;
  /*font-size: 30px;*/
  overflow-y: hidden;
}

.task_item_count {
  border-top: 1px solid transparent;
  display: flex;
  justify-content: space-between;
  padding-left: 28px;
}

.task_item_count span:first-child {
  font-size: 15px;
}

.task_item_count:before {
  content: '';
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #ccc;
  bottom: 0;
  left: 0;
}

.task_item_title.-style_empty {
  padding: 0px 0 0 0;
  color: #7f7f7f;
  font-size: 15px;
  background: transparent;
  border: none;
  margin-bottom: 0;
  padding-top: 20px;
}

.ui-state-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.ui-state-default:last-child .ui-state-row {
  border-bottom: none;
}

.block_body {
  padding: 0;
  margin: 0;
  max-height: 186px;
  overflow-y: hidden;
}

.wrapper.-modal {
  max-width: 700px;
  background-color: #fff;
  border-radius: 3px;
  padding: 40px 70px;
  margin: 15px auto;
}

.big-modal .modal-content {
  padding: 30px 20px 10px !important;
}

.block_row {
  display: flex;
  align-items: flex-end;
}

.block_controls {
  display: flex;
}

.block_field {
  width: 100%;
}

.block_titleWrapper {
  width: 700px;
  margin: 40px auto 15px;
  display: flex;
  align-items: flex-end;
}

.block_subTitle {
  color: #7f7f7f;
  line-height: 16px;
  margin: 0 0 0 10px;
}

.block_field label {
  color: #7f7f7f;
}

.file > span {
  display: none;
}

.file.is-active > span {
  display: inline-block;
  padding: 0;
  background: #eee;
  border-radius: 3px;
}

.file.is-active > span.btn {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.file.is-active > input {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
}

.file > input:focus + span {
  outline-offset: 2px;
  outline: 1px solid #5d6b72;
}

.-sort {
  position: relative;
}

/*.-sort:before{
    content: '';
    display: block;
    position: absolute;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    right: -15px;
    top: 2px;
}*/

#report_permission {
  display: none;
}

.slide_toggle {
  display: flex;
}

.slide_toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  display: block;
}

.slide_toggle input + label {
  transition: all 0.3s ease-in-out;
  background-color: #ccc;
  width: 40px;
  height: 20px;
  border-radius: 10px;
  position: relative;
  border: 1px solid #ccc;
  cursor: pointer;
  margin: 0 10px;
}

.slide_toggle input + label:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-color: #7f7f7f;
  position: absolute;
  right: -1px;
  top: -1px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.slide_toggle input:checked + label {
  background-color: #b8e986;
  border: 1px solid #7ed321;
}

.slide_toggle input:checked + label:before {
  background-color: #7ed321;
  right: 19px;
}

/*.modal .slide_toggle label {*/
/*transition: all .3s ease-in-out;*/
/*background-color: #ccc;*/
/*width: 40px;*/
/*height: 20px;*/
/*border-radius: 10px;*/
/*position: relative;*/
/*border: 1px solid #ccc;*/
/*cursor: pointer;*/
/*margin: 0 10px;*/
/*}*/

/*.modal .slide_toggle label:before {*/
/*content: '';*/
/*display: block;*/
/*width: 20px;*/
/*height: 20px;*/
/*background-color: #7F7F7F;*/
/*position: absolute;*/
/*right: -1px;*/
/*top: -1px;*/
/*border-radius: 10px;*/
/*transition: all .3s ease-in-out;*/
/*}*/

/*.modal .slide_toggle label.check {*/
/*background-color: #B8E986;*/
/*border: 1px solid #7ED321;*/
/*}*/

/*.modal .slide_toggle label.check:before {*/
/*background-color: #7ED321;*/
/*right: 19px;*/
/*}*/

#img-previews {
  width: 280px;
  height: 140px;
  padding: 5px;
  border: 1px solid #ccc;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}

#img-previews img {
  max-width: 280px;
  max-height: 140px;
  height: auto;
  display: block;
  padding: 5px;
}

.choosen-template {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  justify-content: space-between;
  border: 1px solid #ccc;
  margin-top: -1px;
}

.choosen-template a,
.delete-template {
  display: block;
  width: 15px;
  height: 15px;
  background: url(/static/css/images/cross-black.svg) no-repeat;
}

.form-group.-template {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  position: relative;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.check-modal .modal-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.check-modal .modal-body {
  padding-top: 0px;
  padding-bottom: 0px;
  max-height: 287px;
  overflow-y: auto;
}

.check-modal .modal-dialog {
  width: 500px;
}

.check-modal .checkbox {
  width: 100%;
  margin: 0;
  height: 46px;
  display: flex;
  align-items: center;
}

.checkbox label {
  width: 100%;
  height: 100%;
}

.form-group.-template .check-modal label {
  position: relative;
  cursor: pointer;
  color: #333;
  font-size: 15px;
  display: flex;
  align-items: center;
  height: 48px;
  border-bottom: 1px solid #ccc;
  top: auto;
}

.form-group.-template .checkbox:last-child label {
  border-bottom: 0;
}

.check-modal input[type='checkbox'],
.dataBackup input[type='radio'],
#importPartModal input[type='radio'],
.default-checkbox input[type='checkbox'],
.checkbox input[type='checkbox'],
.question-checkbox-holder input[type='radio'] {
  position: absolute;
  right: 9000px;
}

/*Check box*/
.checkbox input[type='checkbox'] + .label-text:before,
#importPartModal input[type='radio'] + .label-text:before,
.question-checkbox-holder input[type='radio'] + .label-text:before {
  content: '';
  height: 20px;
  width: 20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  display: inline-block;
  margin-right: 15px;
  position: relative;
  top: 5px;
}

#importPartModal input[type='radio'] + .label-text:before,
.question-checkbox-holder input[type='radio'] + .label-text:before {
  border-radius: 50%;
}

.checkbox input[type='checkbox']:checked + .label-text:before,
#importPartModal .checkbox input[type='radio']:checked + .label-text:before,
.question-checkbox-holder input[type='radio']:checked + .label-text:before {
  content: '';
  background-color: #7ed321;
  border: 1px solid #7ed321;
}

#importPartModal .checkbox input[type='radio']:checked + .label-text:before,
.question-checkbox-holder input[type='radio']:checked + .label-text:before {
  border-radius: 50%;
}

.checkbox input[type='checkbox']:disabled + .label-text {
  color: #aaa;
}

.checkbox input[type='checkbox']:disabled + .label-text:before {
  content: '\f0c8';
  color: #ccc;
}

.task_item_title {
  height: 40px;
  width: 100%;
  background-color: transparent;
  border: none;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  padding: 0 10px;
  color: #7f7f7f;
  font-size: 15px;
}

.form-group.-template .file {
  position: absolute;
  right: 0;
  top: -5px;
  width: 70px;
  height: 30px;
  z-index: 9;
}

.form-group.-template label {
  position: relative;
  top: 0px;
  display: block;
  height: 30px;
  margin: 0;
}

.form_footer {
  text-align: right;
  position: relative;
}

.valid-message {
  color: red;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

.ajax-file-upload {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  border: 1px solid #cccccc;
  background: #fff;
  color: #333;
  font-size: 15px;
  box-shadow: none;
  padding: 0 10px;
}

.ajax-file-upload:hover {
  background: #fff;
  box-shadow: none;
}

.ajax-file-upload input {
  color: #4a90e2;
}

.upload_logo .ajax-upload-dragdrop {
  border: none;
  padding: 0;
  margin: 0;
}

.upload_logo .ajax-file-upload {
  margin: 0;
  padding: 0;
  font-size: 15px;
  border: 1px solid #4a90e2;
  color: #4a90e2;
  background-color: #fff !important;
  width: 280px;
  box-shadow: none;
  cursor: pointer;
  font-weight: 100;
  padding: 7px 14px;
  height: 36px;
}

.upload_wrapper .ajax-file-upload-container {
  margin: 0;
  padding: 0;
}

.upload_wrapper .ajax-file-upload-statusbar {
  margin: 0;
  padding: 0;
  border: none;
  width: 280px !important;
}

.upload_logo .ajax-file-upload:hover {
  box-shadow: none;
}

.upload_logo span {
  display: none;
}

.upload_wrapper {
  position: relative;
}

.upload_wrapper .ajax-file-upload-progress {
  margin: 0;
  border: none;
  position: absolute;
  top: 31px;
  height: 5px !important;
  overflow: hidden;
  border-radius: 5px;
  left: 0;
  width: 280px;
}

.uploader-holder {
  position: relative;
}

.ajax-file-upload-container {
  margin: 0;
  position: absolute;
  width: 280px;
  top: 29px;
  left: 0px;
}

.ajax-file-upload input {
  width: 240px !important;
}

.ajax-file-upload-error {
  display: none;
}

.ajax-file-upload-filename {
  width: 220px;
  height: auto;
  margin: 0px;
}

.ajax-file-upload-statusbar {
  border: 1px solid #ccc;
  width: 100%;
  height: 40px;
  margin: 0 !important;
  border-radius: 4px;
  padding: 8px 10px;
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ajax-file-upload-progress {
  margin: 0;
  position: absolute;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 0 0 3px 3px;
  display: inline-block;
  color: #ffffff;
  left: 0;
  right: 0;
  bottom: 0;
}

.ajax-file-upload-delete {
  display: block !important;
  width: 20px;
  height: 20px;
  background: none;
  font-size: 0;
  background-image: url(/static/css/images/cross-black.svg);
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.ajax-file-upload-preview {
  position: absolute;
  top: calc(100% + 35px);
  left: 0;
  right: 0;
  margin: 0 auto;
}

.ajax-file-upload-bar {
  background-color: #4a90e2;
  width: 0;
  height: 5px;
  border-radius: 0 0 3px 3px;
  color: #ffffff;
}

.email-holder,
.clients {
  justify-content: space-between;
}

.email-holder #email {
  width: 422px;
}

.email-holder .btn {
  height: 40px;
  display: flex;
  align-items: center;
}

.btn-small {
  height: 30px;
  border: 1px solid #4a90e2;
  border-radius: 3px;
  color: #4a90e2;
  padding: 0 7px;
}

.btn-small:hover {
  color: #4a90e2;
}

.label-btn-holder {
  width: 100%;
  margin-bottom: 10px;
}

.create-acc-form .form-group {
  margin-bottom: 30px;
}

.clients ul,
.added-recipients,
.rec-clients,
.added-ind,
.added-pair,
.added-team {
  width: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.clients ul li,
.rec-clients li,
.added-recipients li,
.added-ind li,
.added-pair li,
.added-team li {
  height: 40px;
  padding: 0 10px;
  justify-content: space-between;
  background: transparent;
  border: 1px solid #ccc;
  margin-top: -1px;
}

.email-holder ~ hr {
  border: 1px solid #ccc;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 40px;
}

.close-btn,
.close-btn-org {
  display: block;
  width: 15px;
  height: 15px;
  background: url(/static/css/images/cross-black.svg) no-repeat;
  flex-shrink: 0;
}

#email_msg {
  resize: none;
}

.buttons-group {
  justify-content: space-between;
}

.buttons-group .btn {
  color: #4a90e2;
}

.buttons-group .btn img {
  width: 21px;
  height: 20px;
  margin-right: 5px;
}

.buttons-group button.btn {
  height: 40px;
  margin-left: 10px;
  color: #fff;
}

/*small popup styles start*/
.small-popup .modal-dialog {
  max-width: 420px;
  margin: 0 auto;
  top: 25%;
  padding: 30px 20px;
  background: #fff;
  border-radius: 5px;
}

.small-popup form {
  margin: 0;
}

.small-popup .modal-footer {
  padding: 0;
  border: 0;
  text-align: center;
  margin-bottom: 20px;
}

.small-popup .form-footer {
  text-align: right;
}

.small-popup img {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
}

.small-popup p {
  color: #333333;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.delete-popup .btn.btn-default {
  border: 1px solid #f14848;
  color: #f14848;
  background-color: #fff !important;
}

.delete-popup .btn.btn-primary {
  background-color: #f14848;
  border: 1px solid #f14848;
}

.small-popup h3 {
  margin-bottom: 20px;
  font: 20px/26px 'Roboto';
}

.small-popup .btn.btn-default.-custom {
  border: 1px solid #ccc;
  color: #333;
  text-transform: inherit;
}

.small-popup .dropdown-menu-select {
  padding: 0;
}

.dropdown-radio {
  display: block;
  position: relative;
  margin: 0;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #eaeaea;
  cursor: pointer;
}

.dropdown-radio input {
  visibility: hidden;
  position: absolute;
  left: -30px;
}

.dropdown-radio i {
  font-weight: normal;
  font-style: normal;
  display: block;
  padding: 7px;
}

/*small popup styles end */
.empty-box,
.empty-box-2 {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  background-color: #ededed;
  border: 1px solid #cccccc;
  color: #7f7f7f;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.empty-box.danger {
  border-color: #f14848;
  color: #f14848;
}

.file_upload {
  position: relative;
  overflow: hidden;
  font-size: 15px;
  height: 40px;
  line-height: 34px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.file_upload > button,
.file_upload > div {
  cursor: pointer;
}

.file_upload > button {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  outline: none;
  background: url(/static/css/images/cross-gray.svg) no-repeat;
  background-size: 20px;
  background-position: center;
}

.file_upload > div {
  padding-left: 10px;
  padding-right: 45px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}

.file_upload input[type='file'],
.upload_csv input[type='file'] {
  position: absolute;
  top: 0;
  visibility: hidden;
  left: 0;
  width: 240px;
  bottom: 0;
}

.progress-bar {
  background-color: #ccc;
  border: 1px solid #ccc;
  border-radius: 0 0 3px 3px;
  width: 100%;
  height: 5px;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0px;
  overflow: hidden;
  opacity: 0;
}

.progress-value {
  text-align: left;
  background-color: #4a90e2;
  transition: 0.3s all linear;
  border-radius: 0 0 3px 3px;
  height: 5px;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0px;
}

#editUserModal .modal-dialog {
  max-width: 650px;
}

#editUserModal hr {
  border: 0;
  background: #ccc;
  width: 100%;
  height: 2px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.steps {
  float: right;
  font-size: 13px;
}

.data-modal .modal-header {
  padding: 30px 20px 20px;
  border: 0;
  align-items: flex-end;
  flex-wrap: wrap;
}

.data-modal .modal-header:before,
.data-modal .modal-header:after {
  display: none;
}

.data-modal .checkbox {
  border-top: 2px solid #ccc;
  font-size: 15px;
  height: 48px;
  color: #333;
}

.dataBackup .checkbox:after {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  border: 2px solid #4a90e2;
  border-top: none;
  border-right: none;
  position: absolute;
  right: 2px;
  top: 19px;
  transform: rotate(-135deg);
  transition: all 0.3s ease-in-out;
}

.data-modal .checkbox:last-child {
  border-bottom: 0;
}

#type {
  padding: 0 20px;
  max-height: 299px;
  overflow-y: auto;
}

.dataBackup .checkbox label {
  padding: 0;
  width: 100%;
  height: 100%;
}

.dataBackup input[type='checkbox'] + .label-text:before {
  display: none;
}

.label-text i {
  font-style: normal;
  margin-left: 20px;
}

.select-all-holder {
  width: 100%;
  display: block;
  text-align: right;
}

.select-all-holder label {
  color: #4a90e2;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-align: right;
  margin: 0;
}

#usrBackupModal .select-all-holder,
#orgBackupModal .select-all-holder,
#send_recipients .select-all-holder {
  width: auto;
}

#importBackup form .uploader-holder {
  width: 380px;
  margin-left: 20px;
}

.small-popup h2 {
  color: #f5a623;
  font-size: 20px;
  letter-spacing: 0.67px;
  line-height: 26px;
  margin-bottom: 15px;
}

.small-popup .modal-footer .btn {
  height: 40px;
  padding: 9px 12px;
  min-width: 80px;
}

#restoreConfirm h2 {
  color: #f14848;
}

#setDefaultModal h2 {
  color: #4a90e2;
}

#restoreUserConfirm {
  color: #f5a623;
}

.default_value {
  display: inline-block;
  height: 22px;
  width: 63px;
  border-radius: 100px;
  background-color: #e8f0fa;
  font-size: 13px;
  line-height: 22px;
  margin-right: 10px;
  text-align: center;
}

#warning-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}

.textarea-holder {
  border: 1px solid #ccc;
  border-radius: 4px;
}

.textarea-holder ~ .help-block {
  margin-top: -50px;
  padding-left: 15px;
  padding-top: 20px;
}

.textarea-holder img {
  display: block;
  margin: 30px auto;
}

.textarea-holder #email_msg {
  border: 0;
  border-radius: 0;
}

.block_body .empty-backup,
.block_body .empty-import {
  width: calc(100% - 50px);
  margin: 0 auto;
  position: relative;
  display: none;
}

.empty-backup .empty-box,
.empty-import .empty-box {
  justify-content: space-between;
  padding: 0 10px;
  letter-spacing: 0;
}

.empty-backup .empty-box span,
.empty-import .empty-box span {
  font-size: 15px;
}

.upload_csv {
  width: 99px;
  height: 30px;
  border: 1px solid #4a90e2;
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.2;
  color: #4a90e2;
  cursor: pointer;
}

.item-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.item-row .col {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 2px;
  box-sizing: border-box;
}

.item-row .name {
  width: 130px;
}

.item-row .email {
  width: 200px;
}

.item-row .extra {
  width: 100px;
}

.user_name {
  color: #333333;
  font-size: 20px;
  line-height: 26px;
  padding-left: 20px;
  margin-bottom: 20px;
}

.user_balance {
  color: #333333;
  font-size: 15px;
  line-height: 20px;
  padding-left: 20px;
  margin-bottom: 10px;
}

.request_credit_link {
  width: calc(100% - 40px);
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid #c7d9f0;
  margin-bottom: 20px;
}

.request_credit_link a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  color: #4a90e2;
}

.request_credit_link a:before {
  content: '';
  width: 16px;
  height: 15px;
  background: url(/static/css/images/plus.svg) no-repeat;
  display: inline-block;
  margin-right: 7px;
}

.summary_page .block_ {
  margin: 20px 0 40px;
}

.summary_page .block_heading {
  padding: 30px;
  border-bottom: 0;
}

.graph_block .block_body {
  padding: 0 0 17px 57px;
  max-height: 100%;
  overflow: auto;
}

#chart {
  height: 275px;
  width: 507.64px;
}

.total_block {
  display: flex;
  align-items: center;
  padding: 0;
}

.total_block h2 {
  display: flex;
  width: 33.3%;
  border-right: 1px solid #ccc;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  color: #333333;
  font-size: 13px;
  letter-spacing: 0.33px;
  line-height: 18px;
}

.total_block h2:last-child {
  border: 0;
}

.total_block h2 b {
  color: #333333;
  font-size: 20px;
  letter-spacing: 0.51px;
  line-height: 26px;
}

.response_block {
  padding: 0;
}

.response_heading {
  align-items: flex-end;
}

.response_heading h3 {
  color: #333333;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 20px;
}

.response_heading .btn-small {
  padding: 0 15px;
}

.response_table {
  width: 100%;
  margin: 0;
}

.response_table td {
  padding-top: 15px;
  padding-bottom: 15px;
  letter-spacing: 0.5px;
}

.response_table td:first-child {
  padding-left: 24px;
}

.response_table td:nth-child(2) {
  padding-left: 100px;
}

.response_table tr:last-child {
  border-bottom: 0;
}

.empty_block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border: 1px solid #cccccc;
  background-color: #ededed;
  color: #9b9b9b;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-align: center;
}

.invitation_content {
  padding: 20px 107px;
}

.invitation_content .email-holder {
  margin-bottom: 15px;
}

.invitation_content .content-title {
  color: #7f7f7f;
  font-size: 13px;
  line-height: 18px;
  border-bottom: 2px solid #ccc;
  margin: 20px 0 40px;
  padding-bottom: 5px;
}

.expiry-access-wrapper {
  align-items: flex-end;
}

.expiry-access-wrapper .permission-holder {
  height: 40px;
}

.expiry-access-wrapper .permission-holder label[for='report_permission'] {
  font-size: 13px;
  line-height: 18px;
  margin: 0;
}

.expiry-access-wrapper .slide_toggle {
  margin-left: 15px;
}

.input-group-addon {
  background: transparent;
}

.input-group-addon img {
  width: 20px;
  height: 20px;
}

.input-group.date {
  width: 180px;
}

.input-group.date input {
  border-right: 0;
}

.input-group.date input:focus {
  border-color: #ccc;
}

.datepicker.dropdown-menu {
  width: auto !important;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.clear-date,
.clear-date:hover,
.clear-date:focus {
  color: #cccccc;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 20px;
  margin-left: 10px;
  flex-shrink: 0;
}

.clear-date.active,
.clear-date.active:hover,
.clear-date.active:focus {
  color: #4a90e2;
  text-decoration: none;
}

.bootstrap-select .btn {
  padding: 9px 12px;
  border: 1px solid #ccc;
  color: #333333;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 20px;
  text-transform: initial;
}

.invite-textarea {
  border-radius: 4px 4px 0 0;
}

.invite-textarea textarea {
  color: #333333;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 20px;
  padding: 0 25px;
}

.default-checkbox {
  height: 40px;
  width: 100%;
  border: 1px solid #cccccc;
  border-top: 0;
  border-radius: 0 0 3px 3px;
  background-color: #e9e9e9;
  margin: 0;
}

.default-checkbox label {
  padding-left: 10px;
  height: 100%;
}

.default-checkbox label span {
  color: #333333;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 20px;
  height: 100%;
}

.default-checkbox label span:before {
  background: #fff;
  top: 0px !important;
  margin-right: 10px !important;
}

.recipient-holder-list .block_title {
  align-items: flex-end;
  margin-bottom: 10px;
}

.recipient-holder-list .block_title label {
  margin: 0;
  color: #7f7f7f;
  font-size: 13px;
  line-height: 18px;
}

#add_recipients .select-all-holder {
  width: auto;
}

.checkbox .first-name {
  height: 100%;
  margin-right: 5px;
}

.checkbox .first-name:before {
  top: 0 !important;
}

.checkbox .last-name {
  margin-right: 15px;
}

.general-links-content .title-holder {
  align-items: flex-end;
  margin-bottom: 10px;
}

.general-links-content .title-holder h3 {
  color: #7f7f7f;
  font-size: 15px;
  line-height: 20px;
}

.general-links-content .title-holder .btn {
  padding: 9px 31px;
}

.links-table {
  margin: 0;
}

.links-table tbody {
  border-bottom: 2px solid #ccc;
}

.links-table th {
  border-top: 2px solid #ccc !important;
  border-bottom: 2px solid #ccc !important;
  color: #333333;
  font-size: 13px;
  line-height: 18px;
}

.links-table tbody tr {
  height: 50px;
}

.links-table tbody tr td {
  padding: 0;
  vertical-align: middle;
  border-top: 2px solid #ccc;
}

.links-table tbody tr td:first-child {
  padding-left: 20px;
}

.links-table tbody tr td:nth-child(2) {
  padding-left: 8px;
  min-width: 95px;
}

.links-table td:last-child,
.links-table th:last-child,
.links-table td:nth-last-child(2),
.links-table th:nth-last-child(2) {
  width: 50px;
  text-align: center;
}

.links-table .btn-group.open .dropdown-toggle {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}

.open > .copy-link-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copy-link-dropdown {
  min-width: 465px;
  padding: 15px;
  border-radius: 3px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.35);
  top: 45px;
  right: -50px;
}

.copy-link-dropdown:before {
  content: '▲';
  height: 8px;
  width: 16px;
  background-color: transparent;
  text-shadow: 0 -2px 4px rgba(0, 0, 0, 0.15);
  position: absolute;
  color: #fff;
  right: 63px;
  top: -15px;
  z-index: 2;
}

.copy-link-dropdown a:hover,
.copy-link-dropdown a:focus {
  text-decoration: none;
}

.copy-link-dropdown span {
  display: inline-block;
  width: 320px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #333333;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 20px;
}

.check-modal .edit-link-form .modal-body {
  max-height: 100%;
  padding: 0 20px;
}

.check-modal .edit-link-form .modal-body .form-group {
  width: 100%;
}

.edit-link-form .input-group.date {
  width: 296px;
}

.edit-link-form .permission-holder label[for='report_permission'] {
  margin: 0;
}

.import-participants-form .uploader-holder {
  border-top: 2px solid #ccc;
  padding-top: 20px;
}

.import-participants-form .uploader-holder span {
  color: #777777;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 5px;
}

.total-invitation {
  min-height: 100px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 20px 0 30px;
  position: relative;
}

.total-invitation:before {
  content: '';
  width: 1px;
  height: 100px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #ccc;
}

.total-invitation span {
  width: 50%;
  text-align: center;
  color: #7f7f7f;
  font-size: 13px;
  letter-spacing: 0.33px;
  line-height: 18px;
}

.total-invitation span b {
  color: #333333;
  font-size: 20px;
  letter-spacing: 0.51px;
  line-height: 26px;
}

.invitation-table > thead:first-child > tr > th:first-child,
.invitation-table tbody tr td:first-child,
.invitation-table tbody tr td,
.individual-table > thead:first-child > tr > th:first-child,
.individual-table tbody tr td:first-child,
.individual-table tbody tr td {
  padding-left: 10px;
}

.invitation-table th,
.individual-table th {
  color: #333333;
  font-size: 13px;
  line-height: 18px;
}

.invitation-table th:nth-last-child(2) {
  text-align: left;
}

.invitation-table td,
.individual-table td {
  color: #333333;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.5;
}

.invitation-table td .status {
  color: #7f7f7f;
  font-size: 15px;
  line-height: 20px;
}

.invitation-table .dropdown-menu {
  min-width: 213px;
}

.invitation-table .dropdown-menu > li > a {
  white-space: inherit;
}

.ind-reports-page .block_heading,
.comparison-page .block_heading {
  padding: 20px 0 10px;
  align-items: flex-end;
  border: 0;
}

.ind-reports-page .block_heading h2,
.comparison-page .block_heading h2 {
  color: #333333;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 20px;
}

.ind-reports-page,
.comparison-page {
  width: fit-content;
  min-width: 820px;
}

#receivedModal .checkbox .first-name {
  margin-right: 30px;
  height: auto;
}

.individual-table .button.-download {
  height: auto;
  line-height: 22px;
}

.expired-status {
  height: 25px;
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f14848;
  border-radius: 100px;
  background-color: rgba(241, 72, 72, 0.1);
  color: #f14848 !important;
  font-size: 11px !important;
  line-height: 15px !important;
  font-weight: 500;
  text-transform: uppercase;
  margin-right: 5px;
}

.confirm-modal p {
  color: #7ed321;
  font-size: 20px;
  letter-spacing: 0.67px;
  line-height: 26px;
  text-align: center;
}

.empty-box-50px {
  height: 50px;
}

#archiveModal .modal-header {
  padding: 0px 0px 20px;
  justify-content: flex-start;
}

#archiveModal .modal-footer {
  padding: 15px 0;
}

#archiveModal .response-row {
  display: flex;
  align-items: center;
  min-height: 48px;
  justify-content: space-between;
  border-top: 2px solid #ccc;
  padding-right: 15px;
}

.response-row span {
  color: #333333;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 20px;
}

.response-row .restore {
  color: #4a90e2;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 22px;
  text-transform: uppercase;
}

#moreCredits .form-group {
  padding: 0 20px;
}

.request-window {
  height: 88px;
  width: 100%;
  border: 1px solid #f4324a;
  background-color: #ffffff;
  margin-bottom: 20px;
  flex-direction: column;
}

.request-window span {
  color: #f4324a;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 10px;
}

.request-window a {
  color: #4a90e2;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  text-decoration: none;
  display: flex;
}

.request-window a:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 15px;
  background: url(/static/css/images/plus.svg) no-repeat;
  margin-right: 10px;
}

.request-window a:hover,
.request-window a:focus {
  text-decoration: none;
}

.comparison-report-holder .right-box,
.comparison-report-holder .left-box {
  height: 355px;
  width: 340px;
  border: 1px solid #cccccc;
  background-color: #eff1f3;
  text-align: center;
  overflow-y: auto;
  position: relative;
}

.comparison-report-holder .right-box .empty-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  color: #9b9b9b;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 20px;
  background-color: #eeeeee;
  z-index: 1;
}

.comparison-report-holder .right-box.-empty,
.comparison-report-holder .left-box.-empty {
  border: 1px solid #cccccc;
  background-color: #eeeeee;
  text-align: center;
}

.comparison-report-holder .left-box.-empty {
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.comparison-report-holder .left-box.-empty p {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 51%;
}

.left-box .checkbox {
  height: 50px;
  margin: 0;
  border-bottom: 2px solid #ccc;
  background: #fff;
}

.left-box .checkbox label {
  padding-left: 15px;
}

.left-box .checkbox span {
  color: #333333;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 20px;
}

.filter-holder {
  background: #fff;
  height: 60px;
  padding: 10px;
  position: relative;
  border-bottom: 2px solid #ccc;
  width: 100%;
}

.filter-holder:before {
  content: '';
  height: 20px;
  width: 21px;
  background: url(/static/css/images/search.svg) no-repeat;
  position: absolute;
  left: 25px;
  top: 50%;
  margin-top: -10px;
}

.filter-holder input {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 5px;
  background-color: #eff1f3;
  box-shadow: none;
  color: #333333;
  font-size: 15px;
  line-height: 20px;
  padding-left: 45px;
  outline: none;
}

.filter-holder input::-webkit-input-placeholder,
.filter-holder input::-moz-input-placeholder,
.filter-holder input:-moz-input-placeholder,
.filter-holder input:-ms-input-placeholder {
  color: #333333;
}

.filter-holder input:focus {
  border: 0;
  box-shadow: none;
}

.comparison-report-holder {
  margin-bottom: 30px;
}

#compareList {
  height: calc(100% - 60px);
}

.checkbox-list {
  height: calc(100% - 54px);
  overflow-y: auto;
}

.checkbox-list .right-checkbox {
  height: 50px;
  background: #fff;
  border-bottom: 2px solid #ccc;
  padding: 0 15px;
}

.right-box form {
  height: 100%;
  justify-content: space-between;
}

.right-box .modal-footer {
  padding: 10px;
  background: #fff;
  border-top: 2px solid #ccc;
}

#compareModal {
  min-height: 100%;
}

#compareModal .modal-body {
  flex-direction: column;
  padding: 0 20px;
  max-height: 100%;
  overflow: inherit;
}

.count-holder {
  position: relative;
}

.count-holder .cw_count {
  position: absolute;
  top: 35px;
  right: 10px;
  color: #333333;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 20px;
}

.count-holder .cw_count_warning {
  color: #f14848;
}

#chart .c3-circle,
#chart .c3-circle._expanded_ {
  fill: rgb(0, 174, 231) !important;
  r: 4;
  stroke-width: 0;
}

#chart .c3-line-Response {
  stroke-width: 2px;
}

#chart .tick text {
  color: rgba(51, 51, 51, 1);
  font-size: 12px;
  letter-spacing: 0.4px;
  line-height: 16px;
}

#chart .tick line {
  display: none;
}

#chart path.domain {
  stroke-width: 1px;
  stroke: #9b9b9b;
}

#chart .c3-grid line {
  stroke: #f6f6f6;
}

#chart .c3-xgrid,
#chart .c3-ygrid {
  stroke-dasharray: 0;
}

.copy-link-expired {
  width: 16px;
  height: 16px;
}

#compareModal .-download {
  padding: 5px 15px 5px 36px;
  background-image: url(/static/white-pdf.png);
  background-repeat: no-repeat;
  background-size: 20px 15px;
  background-position: 10px 7px;
}

.participant-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
}

.participant-head-wrapper {
  background: #4a90e2;
}

.participant-head {
  height: 82px;
  padding: 0 45px;
  max-width: 1024px;
  margin: 0 auto;
}

.participant-head h1 {
  color: #ffffff;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.83px;
  line-height: 30px;
}

.participant-head a:hover {
  color: #fff;
}

.participant-form-wrapper {
  width: 100%;
  height: calc(100% - 82px);
  background: #fff;
  padding-top: 230px;
}

.participant-form {
  max-width: 700px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 0 25px;
}

@media (max-width: 690px) {
  .participant-form {
    flex-direction: column;
  }
}

.participant-form h2 {
  color: #4a90e2;
  width: 100%;
  color: #4a90e2;
  font-size: 22px;
  line-height: 29px;
  margin-bottom: 15px;
}

.participant-form input {
  max-width: 246px;
  height: 40px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: transparent;
  margin-right: 10px;
  color: #333;
  font-size: 16px;
  letter-spacing: 0.53px;
  line-height: 22px;
  padding: 0 15px;
}

@media (max-width: 690px) {
  .participant-form input {
    max-width: 100%;
    margin: 0 auto 15px;
  }
}

.participant-form input::-webkit-input-placeholder {
  color: #9b9b9b;
}

.participant-form input::-moz-placeholder {
  color: #9b9b9b;
}

.participant-form input:-ms-input-placeholder {
  color: #9b9b9b;
}

.participant-form input:-moz-placeholder {
  color: #9b9b9b;
}

.participant-form button {
  margin-left: 15px;
  width: 110px;
  height: 40px;
  padding: 0;
}

.study-form-wrapper {
  width: 100%;
  height: calc(100% - 82px);
  background: #fff;
  padding-top: 50px;
}

.study-form-wrapper form {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 0px 50px 0px;
}

.study-form-wrapper form .btn,
.question-form-wrapper .btn {
  width: 110px;
}

.study-form-wrapper h2 {
  color: #4a90e2;
  font-size: 22px;
  line-height: 29px;
  margin-bottom: 5px;
}

.study-form-wrapper p {
  color: #333333;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 17px;
}

.study-form-wrapper .leadership-info {
  color: #333333;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 28px;
}

#sorting,
#qlist {
  display: flex;
  flex-direction: column;
}

#qlist {
  max-width: 339px;
  width: 100%;
}

.selected-holder {
  margin-bottom: 4px;
}

.numbers-block {
  display: flex;
  flex-direction: column;
}

.numbers-block b {
  width: 39px;
  height: 39px;
  background: #6e9bcf;
  border: 1px solid #ccc;
  border-right: 0;
  color: #fff;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  margin-bottom: 4px;
}

.numbers-block:before,
.numbers-block:after {
  color: #333333;
  font-size: 13px;
  line-height: 18px;
}

.numbers-block:before {
  content: 'Most';
}

.numbers-block:after {
  content: 'Least';
}

.qselected {
  display: block;
  width: 300px;
  height: 39px;
  background: #eee;
  border: 1px solid #ccc;
}

.radio-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.radio-container-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 50px;
  border: 1px solid black;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-top: 10px;
}

.radio-container-wrapper:hover {
  background-color: #679dda;
  color: white;
}

.radio-with-text-container-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 125px;
  height: 50px;
  border: 1px solid black;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
  margin-top: 10px;
}

.radio-with-text-container-wrapper:hover {
  background-color: #679dda;
  color: white;
}

.radio-container-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

.radio-container-label {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 0;
  line-height: normal;
  font-size: 13px;
}

.radio-container-input:checked + .radio-container-label {
  background-color: #4a90e2;
  color: white;
}

.radio-container-input::-webkit-appearance {
  display: none;
}

.radio-container-input:focus + .radio-container-label {
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.4);
}

.qitem-holder {
  display: block;
  width: 100%;
  height: 39px;
  background: #eee;
  border: 1px solid #ccc;
  margin-bottom: 4px;
}

.qitem {
  display: flex;
  align-items: center;
  width: 100%;
  height: 37px;
  background: #fff;
  padding-left: 12px;
  position: relative;
}

.qitem.ui-draggable-dragging {
  border: 1px solid #ccc;
  box-shadow: 0 0 3px 0 #ccc;
}

.qitem:before {
  content: '';
  width: 17px;
  height: 17px;
  background: url(/static/css/images/drag-icon.png) no-repeat;
  display: inline-block;
  margin-right: 15px;
}

.ui-state-highlight {
  border: 1px solid #4a90e2 !important;
  background: #eee !important;
}

.drag {
  cursor: move;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

@media (max-width: 768px) {
  .study-form-wrapper form,
  .question-form-wrapper form {
    padding: 0 15px;
  }

  .study-form-wrapper #container {
    flex-direction: column;
  }

  .nubmer-sorting-wrapper {
    width: 100%;
  }

  .nubmer-sorting-wrapper #sorting {
    width: 100%;
  }

  #qlist {
    max-width: 100%;
    margin: 20px 0;
  }

  .qselected {
    width: 100%;
  }

  .study-form-wrapper {
    height: 100%;
    padding-bottom: 30px;
  }
}

@media (max-width: 580px) {
  .participant-head {
    padding: 0 15px;
  }

  .participant-head h1 {
    font-size: 20px;
  }

  .participant-head a {
    flex-shrink: 0;
  }
}

.question-form-wrapper {
  padding: 50px 0 110px;
  background: #fff;
}

.question-form-wrapper form {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.question-content {
  margin-bottom: 60px;
}

@media (max-width: 640px) {
  .question-content {
    margin-bottom: 30px;
  }
}

.question-content h2 {
  color: #333333;
  font-size: 30px;
  line-height: 39px;
  margin-bottom: 15px;
}

@media (max-width: 640px) {
  .question-content h2 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 10px;
  }
}

.question-content p {
  color: #333333;
  font-size: 15px;
  line-height: 22px;
}

.question-title {
  color: #4a90e2;
  font-size: 22px;
  line-height: 29px;
  margin-bottom: 20px;
}

.question-checkbox-holder {
  display: flex;
  flex-wrap: wrap;
}

.question-checkbox-holder .checkbox {
  width: 43%;
  margin: 0;
  margin-bottom: 20px;
}

.question-radio-holder .checkbox {
  width: 100%;
}

.question-checkbox-holder .checkbox label {
  padding: 0;
}

.question-checkbox-holder span {
  color: #333333;
  font-size: 16px;
  letter-spacing: 0.53px;
  line-height: 22px;
  text-transform: capitalize;
}

.question-checkbox-holder .checkbox input[type='checkbox'] + .label-text:before,
.question-checkbox-holder .checkbox input[type='radio'] + .label-text:before {
  content: '';
  height: 22px;
  width: 22px;
  margin-right: 18px;
  border: 1px solid #979797;
}

.question-checkbox-holder .checkbox input[type='checkbox']:checked + .label-text:before,
.question-checkbox-holder .checkbox input[type='radio']:checked + .label-text:before {
  border: 1px solid #7ed321;
}

textarea.commentBox {
  width: 100%;
  height: 180px;
  border: 1px solid #979797;
  border-radius: 3px;
  resize: none;
  padding: 10px 15px;
  color: #333;
  font-size: 16px;
  letter-spacing: 0.53px;
  line-height: 22px;
}

textarea.commentBox::-webkit-input-placeholder {
  color: #9b9b9b;
}

textarea.commentBox::-moz-placeholder {
  color: #9b9b9b;
}

textarea.commentBox:-ms-input-placeholder {
  color: #9b9b9b;
}

textarea.commentBox:-moz-placeholder {
  color: #9b9b9b;
}

.horizontal-checkbox-holder {
  flex-wrap: nowrap;
  height: 60px;
  border: 1px solid #979797;
  border-radius: 3px;
}

@media (max-width: 640px) {
  .horizontal-checkbox-holder {
    height: 40px;
  }
}

.horizontal-checkbox-holder .checkbox {
  width: 100%;
  margin: 0;
  height: 100%;
  border-right: 2px solid #979797;
}

.horizontal-checkbox-holder label {
  display: flex;
  justify-content: center;
}

.horizontal-checkbox-holder .checkbox:last-child {
  border-right: 0;
}

.horizontal-checkbox-holder .checkbox input[type='radio'] + .label-text {
  color: #333333;
  font-size: 22px;
  line-height: 29px;
  z-index: 2;
}

@media (max-width: 640px) {
  .horizontal-checkbox-holder .checkbox input[type='radio'] + .label-text {
    font-size: 18px;
    line-height: 20px;
  }
}

.horizontal-checkbox-holder .checkbox input[type='radio'] + .label-text:before {
  content: '';
  height: 100%;
  width: 100%;
  margin-right: 0;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 0;
  border: 0;
  top: 0;
  z-index: -1;
}

.horizontal-checkbox-holder .checkbox input[type='radio']:checked + .label-text:before {
  background-color: #a4db68;
  border: 0;
}

#singleTextbox {
  border: 1px solid #979797;
  border-radius: 3px;
  color: #333;
}

#singleTextbox::-webkit-input-placeholder {
  color: #9b9b9b;
}

#singleTextbox::-moz-placeholder {
  color: #9b9b9b;
}

#singleTextbox:-ms-input-placeholder {
  color: #9b9b9b;
}

#singleTextbox:-moz-placeholder {
  color: #9b9b9b;
}

.question-form-wrapper .bootstrap-select .btn,
.question-form-wrapper .bootstrap-select .btn:focus {
  max-width: 331px;
  width: 100%;
  border: 1px solid #979797;
  outline: 0 !important;
  outline-color: transparent !important;
  box-shadow: none;
}

.question-form-wrapper .form-group {
  margin: 0;
}

.question-form-wrapper .bootstrap-select.btn-group .dropdown-toggle .filter-option {
  color: #444444;
  font-size: 16px;
  letter-spacing: 0.53px;
  line-height: 22px;
}

.question-form-wrapper .bootstrap-select.btn-group .dropdown-menu {
  max-width: 331px;
  width: 100%;
  min-width: auto;
}

.question-form-wrapper .bootstrap-select.btn-group .dropdown-toggle .caret {
  position: absolute;
  display: block;
  right: 10px;
  top: 9px;
  height: 20px;
  width: 21px;
  background: url(/static/css/images/circle-down.svg) no-repeat;
  background-size: contain;
  transform: rotate(0);
  border: 0;
}

/*range styles*/

.slider {
  height: 8px !important;
  width: 100% !important;
  border: 1px solid #979797 !important;
  border-radius: 3px !important;
  margin-bottom: 40px;
}

.slider .ui-slider-handle {
  -webkit-appearance: none;
  outline: none;
  margin-top: -16px;
  height: 45px !important;
  width: 25px !important;
  border: 1px solid #979797 !important;
  border-radius: 30px !important;
  background-color: #fafafa !important;
}

@media (max-width: 640px) {
  .slider .ui-slider-handle {
    width: 17px !important;
  }
}

.slider label {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 30px;
  margin-left: -15px;
  text-align: center;
  margin-top: 30px;
  color: #333333;
  font-size: 22px;
  line-height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

@media (max-width: 640px) {
  .slider label {
    width: 20px;
    height: 20px;
    border-radius: 30px;
    margin-left: -10px;
    margin-top: 30px;
    font-size: 12px;
    line-height: 14px;
  }
}

.slider label.active {
  background-color: #a4db68;
}

.question-content .file_upload {
  height: 40px;
  width: 136px;
  border: 1px solid #6b787f;
  border-radius: 5px;
  text-align: center;
}

.question-content .file_upload input[type='file'] {
  visibility: visible;
  z-index: -1;
}

.question-content .file_upload > div {
  color: #6b787f;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  padding: 0;
  display: block;
  width: 90px;
  padding-right: 10px;
  padding-top: 9px;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}

.success-form-wrapper {
  width: 100%;
  background: #fff;
  min-height: calc(100vh - 82px);
  padding-top: 100px;
}

@media (max-width: 640px) {
  .success-form-wrapper {
    padding: 50px 15px;
  }
}

.success-info {
  min-height: 216px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #7ed321;
  border-radius: 5px;
  background-color: #fcfefb;
  text-align: center;
  padding: 0 135px 30px;
}

.invalid-wrapper .success-info {
  min-height: 391px;
  border: 1px solid #f5a623;
  border-radius: 5px;
  background-color: rgba(245, 166, 35, 0.05);
}

@media (max-width: 640px) {
  .success-info {
    padding: 0 35px;
  }
}

.success-info img {
  width: 52px;
  margin: 50px auto 0;
}

.invalid-wrapper .success-info img {
  width: 52px;
  margin: 100px auto 20px;
}

.success-info h2 {
  color: #7ed321;
  font-size: 30px;
  line-height: 39px;
  margin-bottom: 20px;
}

.success-info p {
  color: #333333;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 40px;
}

.download-survey-holder {
  margin: 0 auto 80px;
}

@media (max-width: 640px) {
  .download-survey-holder {
    flex-direction: column;
    margin: 0 auto 40px;
  }
}

.invalid-wrapper a,
.download-survey {
  height: 40px;
  width: 117px;
  border-radius: 3px;
  background-color: #4a90e2;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 17px;
}

.invalid-wrapper a {
  margin: 0 auto;
}

.template-name {
  color: #333333;
  font-size: 15px;
  line-height: 17px;
}

@media (max-width: 640px) {
  .template-name {
    margin-bottom: 10px;
  }
}

.template-name:before {
  content: '';
  display: inline-block;
  width: 21px;
  height: 20px;
  margin-right: 5px;
  background: url(/static/pdf-black.png) no-repeat;
  background-size: contain;
}

.login-link-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 110px;
  border-radius: 3px;
  background-color: #4a90e2;
  margin: 0px auto 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.have-account {
  color: #333333;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
}

.have-account a {
  text-decoration: underline;
  font-weight: 600;
}

.user-create-login .form-group {
  margin-bottom: 5px;
}

.user-create-login .has-error .form-control {
  background: #fbf4f4 !important;
}

/*.confirm-password ul li:nth-child(1) {*/
/*display: none !important;*/
/*}*/

.header-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

input[name='regenerate_report'] {
  position: static !important;
  right: auto !important;
}

.pretty-checkbox {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 14px;
  user-select: none;
  display: flex;
  align-items: center;
}

/* Hide the default checkbox */
.pretty-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* On hover */
.pretty-checkbox:hover input ~ .checkmark {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* When checked */
.pretty-checkbox input:checked ~ .checkmark {
  background-color: #007bff;
  border-color: #007bff;
}

/* Create the checkmark (hidden when not checked) */
.checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

/* Show checkmark when checked */
.pretty-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark */
.pretty-checkbox .checkmark:after {
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.add-email-section {
  padding-top: 15px;
  margin-bottom: 15px;
  border-top: 2px solid #ccc;
}

.add-email-input {
  display: flex;
  gap: 10px;
  align-items: center;
}

.add-email-input input[type='email'] {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.add-email-btn {
  padding: 8px 16px;
  white-space: nowrap;
}

.recipient_email {
  font-style: normal;
  color: #333;
}

.question-count-label {
  height: 35px;
  display: flex;
  align-items: flex-end;
}

.categories-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
  width: 100%;
}
.category-body {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2px;
  row-gap: 2px;
}

.category-section {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 15px;
  background-color: #f9f9f9;
}

.category-header {
  width: 100%;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid #337ab7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-total {
  font-size: 14px;
  color: #337ab7;
}

.question-row {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 2px 5px;
}

.question-label {
  flex: 1;
  font-size: 13px;
}

.question-input {
  width: 55px;
}
