.browse {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  min-height: 74px;
  background-color: #f7f9fa;
  padding: 1rem 1.25rem;
}
.browse .browse-input {
  position: relative;
  flex: auto;
}
.browse .browse-input i {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 16px;
  height: 16px;
  font-size: 16px;
  line-height: 14px;
  text-align: center;
  color: #949ba5;
}
.browse .browse-input input {
  padding-left: 2rem;
  border-radius: 0;
  border: none;
  background-color: transparent;
  outline: none;
  box-shadow: none;
}
.browse .browse-actions {
  flex: 0 0 auto;
}
.browse .browse-actions span {
  margin-right: 0.714rem;
  font-weight: 700;
  display: inline-block;
}

.filter-check {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.filter-check .item {
  display: block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.filter-check .item input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.filter-check .item label {
  position: relative;
  cursor: pointer;
  font-size: 0.857rem;
  border-radius: 1rem;
  color: #0070e0;
  font-weight: 600;
  padding: 0.25rem 1rem;
  margin-bottom: 0;
  text-transform: uppercase;
  border: 1px solid #0070e0;
  transition: all 0.1s ease-in-out;
}
.filter-check .item input:checked + label {
  background-color: #0070e0;
  color: #fff;
}

.platforms {
  position: relative;
  width: 100%;
  margin-top: 0.5rem;
}
.platforms > .row {
  margin-left: -0.536rem;
  margin-right: -0.536rem;
}
.platforms > .row > div {
  padding-left: 0.536rem;
  padding-right: 0.536rem;
}
.platforms .item {
  display: block;
  background-color: #ffffff;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 0.286rem;
  margin-bottom: 1.071rem;
  border: 1px solid #e6e8eb;
  transition: all 0.3s ease-in-out;
}
.platforms .item:hover {
  border-color: #0070e0;
  background-color: #f3f9ff;
}
.platforms .item img {
  display: block;
  height: 48px;
  margin: 0 auto;
}
.platforms .item p {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: flex-end;
  text-transform: uppercase;
  color: #3d464c;
  min-height: 40px;
  line-height: 1.4;
  margin-top: 0.5rem;
}

.audience-lists {
  position: relative;
  width: 100%;
  margin-bottom: 64px;
}
.audience-lists .audience-item {
  position: relative;
  display: block;
}
.audience-lists .audience-item .selecting {
  display: flex;
  flex-wrap: wrap;
}
.audience-lists .audience-item .selecting .select2 {
  flex: 0;
  margin-right: 1rem;
  margin-bottom: 1rem;
  min-width: 164px;
}
.audience-lists .audience-item .selecting .select2-container {
  width: 100% !important;
}
.audience-lists
  .audience-item
  .selecting
  .select2-container
  .select2-selection--single {
  border: 1px solid #c6c9d6;
  text-align: left;
  padding-left: 5px;
  height: 40px;
  border-radius: 4px;
  padding-top: 5px;
}
.audience-lists
  .audience-item
  .selecting
  .select2-container
  .select2-selection--single
  .select2-selection__arrow {
  top: 7px;
  right: 7px;
}
.audience-lists .audience-item .inner-line {
  position: relative;
  display: block;
  margin: 0 0 1rem;
}
.audience-lists .audience-item:last-child .inner-line {
  display: none;
}
.audience-lists .audience-item .inner-line::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 0.5px;
  background-color: #e6e8eb;
}
.audience-lists .audience-item .inner-line select {
  position: relative;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  background-color: #e6e8eb;
  border-color: #dad8d8;
  outline: none;
  box-shadow: none;
}
.audience-lists .audience-item .remove-data {
  position: absolute;
  right: 0;
  top: 7px;
  font-size: 18px;
}
.audience-lists .outer-line {
  position: relative;
  display: block;
  padding: 1.5rem 0;
}
.audience-lists .outer-line::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: calc(100% - 40px);
  height: 0.5px;
  background-color: #e6e8eb;
}
.audience-lists .outer-line::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 0.5px;
  height: 100%;
  background-color: #e6e8eb;
}
.audience-lists .outer-line select {
  position: relative;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  background-color: #e6e8eb;
  border-color: #dad8d8;
  outline: none;
  box-shadow: none;
  margin-left: 20px;
}

.page-nav-bottom {
  position: fixed;
  z-index: 10;
  right: 0;
  bottom: 0;
  width: calc(100% - 240px);
  min-height: 64px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 30px;
  padding-right: 40px;
  border-top: 1px solid #e4e4e4;
}
.page-sidebar-collapsed .page-nav-bottom {
  width: calc(100% - 60px);
}
.page-nav-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.page-nav-bottom ul li {
  display: block;
  margin-right: 1.5rem;
}
.page-nav-bottom ul li a {
  display: flex;
  color: #2b2b2b;
  align-items: center;
}
.page-nav-bottom ul li a:hover {
  color: #0070e0;
}
.page-nav-bottom ul li i {
  color: #0070e0;
  font-size: 12px;
  margin-right: 0.5rem;
}
.page-nav-bottom .nav-right {
  display: flex;
  align-items: center;
}
.page-nav-bottom .nav-right p {
  margin-right: 1rem;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #637282;
}
.page-nav-bottom .nav-right p span {
  display: block;
  color: #0070e0;
  font-size: 16px;
}
.page-nav-bottom .nav-right .btn span {
  display: block;
}
.page-nav-bottom .nav-right .btn i {
  display: none;
}

.audience-info {
  display: flex;
  flex-wrap: wrap;
}
.audience-info p {
  font-size: 12px;
  text-transform: uppercase;
  margin-right: 1rem;
  margin-bottom: 0;
  line-height: 1.2;
}
.audience-info p span {
  display: block;
  font-weight: 700;
  font-size: 140%;
  margin-top: 0.25rem;
}

#audienceMap {
  position: relative;
  z-index: 1;
  height: 350px;
}

.audience-progress {
  position: relative;
  max-height: 196px;
  overflow: auto;
  padding-right: 0.5rem;
}
.audience-progress .item-progress {
  margin-bottom: 1rem;
  display: block;
}
.audience-progress .item-progress p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.audience-progress .item-progress p b {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: 400;
  color: #767676;
}
.audience-progress .item-progress p span {
  color: #0070e0;
  font-weight: 700;
}
.audience-progress .item-progress .progress {
  margin-bottom: 0;
}

.custom-widget {
  position: relative;
  width: 100%;
  min-height: 290.5px;
  margin-bottom: 30px;
}
.custom-widget h4 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.custom-widget h4 .beta {
  display: inline-block;
  font-size: 70%;
  padding: 0.25rem 0.5rem;
  background-color: #ececec;
  margin-left: 0.5rem;
  color: #9a9a9a;
  border-radius: 4px;
}

/*! Page Title Override */
.page-title-custom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
}
.page-title-custom h3 > i {
  font-size: 70%;
}
.page-title-custom h3 > span {
  display: block;
  font-size: 60%;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.25rem;
  letter-spacing: 1px;
}

/*! Checkbox DataTable Override */
table.dataTable tbody td.select-checkbox:before,
table.dataTable tbody th.select-checkbox:before {
  content: ' ';
  margin-top: auto;
  margin-left: 0;
  border: 1px solid #d1d1d1;
  border-radius: 3px;
}
table.dataTable tbody td.select-checkbox:before,
table.dataTable tbody td.select-checkbox:after,
table.dataTable tbody th.select-checkbox:before,
table.dataTable tbody th.select-checkbox:after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 50%;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
}
table.dataTable tr.selected td.select-checkbox:before,
table.dataTable tr.selected th.select-checkbox:before {
  border-color: #0070e0;
  background-color: #0070e0;
}
table.dataTable tr.selected td.select-checkbox:after,
table.dataTable tr.selected th.select-checkbox:after {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\f00c';
  font-size: 10px;
  line-height: 15px;
  color: #fff;
  margin-top: auto;
  margin-left: 0;
  text-align: center;
  text-shadow: none;
}

table.dataTable.display tbody tr.odd.selected,
table.dataTable.display tbody tr.odd.selected .sorting_1 {
  background-color: #e5f2ff !important;
}
table.dataTable.display tbody tr.even.selected,
table.dataTable.display tbody tr.even.selected .sorting_1 {
  background-color: #d6ebff !important;
}

/*! Panels Override */
.panel-custom {
  padding: 0;
  border: 1px solid #f5f5f5;
  border-radius: 0;
  box-shadow: 0 10px 10px #00000008;
}

.custom-panel-heading {
  position: relative;
  background-color: #f7f9fa !important;
}
.custom-panel-heading .panel-toggle {
  display: block;
}
.custom-panel-heading .panel-toggle i {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 42px;
  margin: auto;
  width: 14px;
  height: 14px;
  text-align: center;
  font-size: 12px;
  color: #979797;
  transform: rotate(0deg);
  transform-origin: center center;
}
.custom-panel-heading .panel-toggle.collapsed i {
  transform: rotate(180deg) !important;
}
.custom-panel-heading .remove-filter {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 14px;
  height: 14px;
  text-align: center;
  font-size: 12px;
  color: #979797 !important;
}

.panel-action {
  margin-top: 1rem;
  text-align: right;
}

/*! Tables Override */
.custom-table table {
  border-bottom: none !important;
}
.custom-table table > tbody > tr > td {
  padding: 16px 16px 16px 8px !important;
}
.custom-table .tbl-status {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  display: inline-flex;
  font-weight: 700;
}
.custom-table .tbl-status.bg-primary {
  background-color: #80bfff;
}
.custom-table .tbl-status.bg-warning {
  background-color: #eed65d;
}
.custom-table .tbl-status i {
  font-size: 10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 100%;
  text-align: center;
  margin-left: 0.5rem;
}
.custom-table .tbl-status.bg-primary i {
  background-color: #0070e0;
}
.custom-table .tbl-status.bg-warning i {
  background-color: #f1c205;
}
.custom-table .tbl-actions {
  text-align: center;
}
.custom-table .tbl-actions a {
  display: inline-block;
  margin: 0 0.25rem;
}

/*! Modal Override */
.custom-modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.custom-modal-actions .form-check {
  display: flex;
}
.custom-modal-actions .form-check {
  display: flex;
}
.custom-modal-actions .form-check .checker {
  margin-right: 8px;
}
.custom-modal-actions .form-check label {
  margin: 0;
}

/*! Buttons Override */
.btn.btn-sm {
  min-width: auto !important;
  padding: 6px 15px !important;
  font-size: 14px !important;
}
.btn.btn-sm .fa {
  margin-right: 4px !important;
}

/*! Responsive Media Queries */
@media (min-width: 992px) {
  .custom-table table {
    width: 100% !important;
  }

  .dataTables_scrollHeadInner {
    width: 100% !important;
  }
}

@media (max-width: 991.98px) {
  .page-nav-bottom {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 575.98px) {
  .page-title-custom .breadcrumb-header {
    margin-bottom: 2rem;
  }
  .page-title-custom .btn.btn-default-2 {
    padding: 8px 12px !important;
    font-size: 12px !important;
  }

  .browse .browse-actions span {
    font-size: 12px;
    margin-top: 1rem;
  }
  .browse .btn.btn-default-2 {
    padding: 8px 12px !important;
    font-size: 12px !important;
  }
  .browse .btn + .btn {
    margin-left: 4px !important;
  }

  .audience-info p {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .page-nav-bottom ul li {
    margin-right: 0.5rem;
  }
  .page-nav-bottom ul li a span {
    display: none;
  }
  .page-nav-bottom .nav-right .btn {
    padding: 8px 10px !important;
    min-width: auto;
  }
  .page-nav-bottom .nav-right .btn span {
    display: none;
  }
  .page-nav-bottom .nav-right .btn i {
    display: block;
  }
}

/*! Form Wizard */
.form-wizard .select2 {
  flex: 0;
  margin-right: 1rem;
  margin-bottom: 1rem;
  min-width: 164px;
}
.form-wizard .select2-container {
  width: 100% !important;
}
.form-wizard .select2-container .select2-selection--single,
.form-wizard .select2-container .select2-selection--multiple {
  border: 1px solid #c6c9d6;
  text-align: left;
  padding-left: 8px;
  height: auto;
  min-height: 46px;
  border-radius: 4px;
  padding-top: 8px;
}
.form-wizard .select2-container .select2-selection--multiple {
  padding-top: 0 !important;
  padding-bottom: 5px !important;
}
.form-wizard
  .select2-container
  .select2-selection--single
  .select2-selection__arrow {
  top: 10px;
  right: 10px;
}
.form-wizard
  .select2-container
  .select2-selection--multiple
  .select2-selection__choice {
  margin: 5px 0 0 6px !important;
}

.form-wizard .row {
  margin-left: -12.5px;
  margin-right: -12.5px;
}
.form-wizard .row > div {
  padding-left: 12.5px;
  padding-right: 12.5px;
}

.input-range {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.input-range input {
  padding: 12.5px 16px;
  display: block;
  width: 100%;
  border: none;
  font-size: 14px;
  color: #000;
  border: 1px solid #c6c9d6;
  outline: none;
  border-radius: 4px;
}
.input-range input:focus {
  border: 1px solid #0070e0;
}
.input-range input::-webkit-outer-spin-button,
.input-range input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-range input[type='number'] {
  -moz-appearance: textfield;
}
.input-range input::-webkit-input-placeholder {
  color: #999;
}
.input-range input:-ms-input-placeholder {
  color: #999;
}
.input-range input::placeholder {
  color: #999;
}
.input-range > span {
  display: block;
  margin: 0 8px;
}

.range-slider {
  position: relative;
  width: 100%;
  padding: 24px;
  background-color: #f7f9fa;
  border-radius: 4px;
  margin-bottom: 16px;
}
.range-slider .range-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.range-slider .range-labels span {
  display: block;
  font-size: 90%;
  opacity: 0.75;
}
.range-slider .range-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.range-slider .range-values input {
  font-size: 120%;
  font-weight: 700;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
  box-shadow: none;
  display: block;
  background: none;
  width: 50%;
}
.range-slider .range-values input:last-child {
  text-align: right;
}
.range-slider .ui-widget-content {
  position: relative;
  z-index: 1;
  border: 1px solid #c6c9d6;
}
.range-slider .ui-widget-header {
  background: none;
  background-color: #d02b1e;
}
.range-slider .ui-slider .ui-slider-handle {
  border-radius: 100%;
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
}

.custom-table .select2 {
  margin-bottom: 0 !important;
}

/*! Material input small size */
.material-form-field.material-form-field-sm {
  padding: 11px 0 10px 0;
}
.material-form-field.material-form-field-sm .material-form-field-label {
  top: 0 !important;
}

/*! Material input for Date & Time */
.material-form-field input[type='date'],
.material-form-field input[type='time'] {
  padding-right: 8px;
}

/*! Remove arrow on material input */
.material-form-field input::-webkit-outer-spin-button,
.material-form-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.material-form-field input[type='number'] {
  -moz-appearance: textfield;
}

/*! Row small size */
.row.row--sm {
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.row.row--sm > div {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

/*! Audience Wizard */
.audience-wizard {
  position: relative;
  width: 100%;
  margin-top: 3rem;
}
.audience-wizard .steps {
  border: none;
  display: block;
  max-width: 480px;
  margin: 0 auto;
  padding: 0;
}
.audience-wizard .steps::before {
  position: absolute;
  z-index: 1;
  top: 18px;
  height: 1px;
  width: 80%;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #ededed;
}
.audience-wizard .steps ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.audience-wizard .steps ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.audience-wizard .steps ul li.disabled a,
.audience-wizard .steps ul li.disabled a:hover,
.audience-wizard .steps ul li.disabled a:active {
  color: #cfcccc;
  cursor: default;
}
.audience-wizard .steps ul li.done a,
.audience-wizard .steps ul li.done a:hover,
.audience-wizard .steps ul li.done a:active {
  color: #b3d9ff;
  cursor: pointer;
}
.audience-wizard .steps ul li a .current-info {
  display: none;
}
.audience-wizard .steps ul li a .number {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  background-color: #0070e0;
  border-radius: 100%;
  text-align: center;
  line-height: 36px;
  margin-bottom: 4px;
  color: #fff;
}
.audience-wizard .steps ul li.disabled a .number,
.audience-wizard .steps ul li.disabled a:hover .number,
.audience-wizard .steps ul li.disabled a:active .number {
  background-color: #e2e2e2;
}
.audience-wizard .steps ul li.done a .number,
.audience-wizard .steps ul li.done a:hover .number,
.audience-wizard .steps ul li.done a:active .number {
  background-color: #80bfff;
}
.audience-wizard .content .select2 + label.error {
  display: block;
  width: 100%;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.audience-wizard .actions {
  position: relative;
}
.audience-wizard .actions ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}
.audience-wizard .actions ul li {
  margin-left: 16px;
}
.audience-wizard .actions ul li:first-child {
  margin-left: 0;
}
.audience-wizard .actions ul li a {
  border-color: #0070e0;
  color: #fff;
  background-color: #0070e0;
  min-width: 100px;
  padding: 12px 20px;
  font-size: 14px;
  border-radius: 4px;
  display: block;
  text-align: center;
}
.audience-wizard .actions ul li:first-child a {
  border: #0070e0 solid 1px !important;
  color: #0070e0;
  background-color: transparent;
}

.audience-desc .receipt-label {
  display: block;
  color: #9ca8b0;
}
.audience-desc .receipt-label span {
  display: block;
  font-weight: 700;
  color: #3d464c;
}
.audience-desc ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}
.audience-desc p + ul {
  margin-top: -10px;
}
.audience-desc ul li {
  display: block;
  line-height: 1.6;
}

.hobbies-list {
  padding: 0;
  list-style: none;
}
.hobbies-list li {
  display: flex;
  align-items: center;
}
.hobbies-list li a {
  min-width: 30px;
  text-align: right;
}

.calculate {
  display: flex;
  align-items: center;
}
.calculate button {
  height: 42px;
  margin-left: 16px;
  padding: 4px 20px !important;
}

@media (max-width: 575.98px) {
  .audience-wizard .btn.btn-default-2.btn-block {
    padding: 12px 6px !important;
  }

  .audience-wizard .actions ul {
    justify-content: space-between;
  }
}
