/*! ========================================================================
 * Bootstrap Toggle: bootstrap-toggle.css v2.2.0
 * http://www.bootstraptoggle.com
 * ========================================================================
 * Copyright 2014 Min Hur, The New York Times Company
 * Licensed under MIT
 * ======================================================================== */


.checkbox label .toggle,
.checkbox-inline .toggle {
	margin-left: -20px;
	margin-right: 5px;
}

.toggle {
	position: relative;
	overflow: hidden;
}
.toggle input[type="checkbox"] {
	display: none;
}
.toggle-group {
	position: absolute;
	width: 200%;
	top: 0;
	bottom: 0;
	left: 0;
	transition: left 0.35s;
	-webkit-transition: left 0.35s;
	-moz-user-select: none;
	-webkit-user-select: none;
}
.toggle.off .toggle-group {
	left: -100%;
}
.toggle-on {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 50%;
	margin: 0;
	border: 0;
	border-radius: 0;
}
.toggle-off {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
}
.toggle-handle {
	position: relative;
	margin: 0 auto;
	padding-top: 0px;
	padding-bottom: 0px;
	height: 100%;
	width: 0px;
	border-width: 0 1px;
}

.toggle.btn { min-width: 59px; min-height: 34px; }
.toggle-on.btn { padding-right: 24px; }
.toggle-off.btn { padding-left: 24px; }

.toggle.btn-lg { min-width: 79px; min-height: 45px; }
.toggle-on.btn-lg { padding-right: 31px; }
.toggle-off.btn-lg { padding-left: 31px; }
.toggle-handle.btn-lg { width: 40px; }

.toggle.btn-sm { min-width: 50px; min-height: 30px;}
.toggle-on.btn-sm { padding-right: 20px; }
.toggle-off.btn-sm { padding-left: 20px; }

.toggle.btn-xs { min-width: 35px; min-height: 22px;}
.toggle-on.btn-xs { padding-right: 12px; }
.toggle-off.btn-xs { padding-left: 12px; }


/*! =======================================================
                      VERSION  10.6.2              
========================================================= */
/*! =========================================================
 * bootstrap-slider.js
 *
 * Maintainers:
 *		Kyle Kemp
 *			- Twitter: @seiyria
 *			- Github:  seiyria
 *		Rohit Kalkur
 *			- Twitter: @Rovolutionary
 *			- Github:  rovolution
 *
 * =========================================================
  *
 * bootstrap-slider is released under the MIT License
 * Copyright (c) 2019 Kyle Kemp, Rohit Kalkur, and contributors
 * 
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following
 * conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * ========================================================= */
.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.slider.slider-horizontal {
  width: 210px;
  height: 20px;
}
.slider.slider-horizontal .slider-track {
  height: 10px;
  width: 100%;
  margin-top: -5px;
  top: 50%;
  left: 0;
}
.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
  height: 100%;
  top: 0;
  bottom: 0;
}
.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -10px;
}
.slider.slider-horizontal .slider-tick.triangle,
.slider.slider-horizontal .slider-handle.triangle {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-width: 0 10px 10px 10px;
  width: 0;
  height: 0;
  border-bottom-color: #2e6da4;
  margin-top: 0;
}
.slider.slider-horizontal .slider-tick-container {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 20px;
}
.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  padding-top: 4px;
  display: inline-block;
  text-align: center;
}
.slider.slider-horizontal .tooltip {
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.slider.slider-horizontal.slider-rtl .slider-track {
  left: initial;
  right: 0;
}
.slider.slider-horizontal.slider-rtl .slider-tick,
.slider.slider-horizontal.slider-rtl .slider-handle {
  margin-left: initial;
  margin-right: -10px;
}
.slider.slider-horizontal.slider-rtl .slider-tick-container {
  left: initial;
  right: 0;
}
.slider.slider-horizontal.slider-rtl .tooltip {
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}
.slider.slider-vertical {
  height: 210px;
  width: 20px;
}
.slider.slider-vertical .slider-track {
  width: 10px;
  height: 100%;
  left: 25%;
  top: 0;
}
.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
.slider.slider-vertical .slider-track-low,
.slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}
.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
  margin-top: -10px;
}
.slider.slider-vertical .slider-tick.triangle,
.slider.slider-vertical .slider-handle.triangle {
  border-width: 10px 0 10px 10px;
  width: 1px;
  height: 1px;
  border-left-color: #2e6da4;
  border-right-color: #2e6da4;
  margin-left: 0;
  margin-right: 0;
}
.slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}
.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 4px;
}
.slider.slider-vertical .tooltip {
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.slider.slider-vertical.slider-rtl .slider-track {
  left: initial;
  right: 25%;
}
.slider.slider-vertical.slider-rtl .slider-selection {
  left: initial;
  right: 0;
}
.slider.slider-vertical.slider-rtl .slider-tick.triangle,
.slider.slider-vertical.slider-rtl .slider-handle.triangle {
  border-width: 10px 10px 10px 0;
}
.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
  padding-left: initial;
  padding-right: 4px;
}
.slider.slider-disabled .slider-handle {
  background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: -o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
  background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
  background-repeat: repeat-x;
}
.slider.slider-disabled .slider-track {
  background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: -o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
  background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
  background-repeat: repeat-x;
  cursor: not-allowed;
}
.slider input {
  display: none;
}
.slider .tooltip {
  pointer-events: none;
}
.slider .tooltip.top {
  margin-top: -36px;
}
.slider .tooltip-inner {
  white-space: nowrap;
  max-width: none;
}
.slider .hide {
  display: none;
}
.slider-track {
  position: absolute;
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: -o-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.slider-selection {
  position: absolute;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-selection.tick-slider-selection {
  background-image: -webkit-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: -o-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: linear-gradient(to bottom, #8ac1ef 0%, #82b3de 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8ac1ef', endColorstr='#ff82b3de', GradientType=0);
  background-repeat: repeat-x;
}
.slider-track-low,
.slider-track-high {
  position: absolute;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
}
.slider-handle {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #337ab7;
  background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
  background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
  background-repeat: repeat-x;
  filter: none;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
  border: 0px solid transparent;
}
.slider-handle:hover {
  cursor: pointer;
}
.slider-handle.round {
  border-radius: 50%;
}
.slider-handle.triangle {
  background: transparent none;
}
.slider-handle.custom {
  background: transparent none;
}
.slider-handle.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick {
  position: absolute;
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  filter: none;
  opacity: 0.8;
  border: 0px solid transparent;
}
.slider-tick.round {
  border-radius: 50%;
}
.slider-tick.triangle {
  background: transparent none;
}
.slider-tick.custom {
  background: transparent none;
}
.slider-tick.custom::before {
  line-height: 20px;
  font-size: 20px;
  content: '\2605';
  color: #726204;
}
.slider-tick.in-selection {
  background-image: -webkit-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: -o-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
  background-image: linear-gradient(to bottom, #8ac1ef 0%, #82b3de 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8ac1ef', endColorstr='#ff82b3de', GradientType=0);
  background-repeat: repeat-x;
  opacity: 1;
}

/*-- Chart --*/
.c3 svg {
  font: 10px sans-serif;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.c3 path, .c3 line {
  fill: none;
  stroke: #000;
}

.c3 text {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.c3-legend-item-tile,
.c3-xgrid-focus,
.c3-ygrid,
.c3-event-rect,
.c3-bars path {
  shape-rendering: crispEdges;
}

.c3-chart-arc path {
  stroke: #fff;
}

.c3-chart-arc rect {
  stroke: white;
  stroke-width: 1;
}

.c3-chart-arc text {
  fill: #fff;
  font-size: 13px;
}

/*-- Axis --*/
/*-- Grid --*/
.c3-grid line {
  stroke: #aaa;
}

.c3-grid text {
  fill: #aaa;
}

.c3-xgrid, .c3-ygrid {
  stroke-dasharray: 3 3;
}

/*-- Text on Chart --*/
.c3-text.c3-empty {
  fill: #808080;
  font-size: 2em;
}

/*-- Line --*/
.c3-line {
  stroke-width: 1px;
}

/*-- Point --*/
.c3-circle {
  fill: currentColor;
}

.c3-circle._expanded_ {
  stroke-width: 1px;
  stroke: white;
}

.c3-selected-circle {
  fill: white;
  stroke-width: 2px;
}

/*-- Bar --*/
.c3-bar {
  stroke-width: 0;
}

.c3-bar._expanded_ {
  fill-opacity: 1;
  fill-opacity: 0.75;
}

/*-- Focus --*/
.c3-target.c3-focused {
  opacity: 1;
}

.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {
  stroke-width: 2px;
}

.c3-target.c3-defocused {
  opacity: 0.3 !important;
}

/*-- Region --*/
.c3-region {
  fill: steelblue;
  fill-opacity: 0.1;
}
.c3-region text {
  fill-opacity: 1;
}

/*-- Brush --*/
.c3-brush .extent {
  fill-opacity: 0.1;
}

/*-- Select - Drag --*/
/*-- Legend --*/
.c3-legend-item {
  font-size: 12px;
}

.c3-legend-item-hidden {
  opacity: 0.15;
}

.c3-legend-background {
  opacity: 0.75;
  fill: white;
  stroke: lightgray;
  stroke-width: 1;
}

/*-- Title --*/
.c3-title {
  font: 14px sans-serif;
}

/*-- Tooltip --*/
.c3-tooltip-container {
  z-index: 10;
}

.c3-tooltip {
  border-collapse: collapse;
  border-spacing: 0;
  background-color: #fff;
  empty-cells: show;
  -webkit-box-shadow: 7px 7px 12px -9px #777777;
  -moz-box-shadow: 7px 7px 12px -9px #777777;
  box-shadow: 7px 7px 12px -9px #777777;
  opacity: 0.9;
}

.c3-tooltip tr {
  border: 1px solid #CCC;
}

.c3-tooltip th {
  background-color: #aaa;
  font-size: 14px;
  padding: 2px 5px;
  text-align: left;
  color: #FFF;
}

.c3-tooltip td {
  font-size: 13px;
  padding: 3px 6px;
  background-color: #fff;
  border-left: 1px dotted #999;
}

.c3-tooltip td > span {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
}

.c3-tooltip .value {
  text-align: right;
}

/*-- Area --*/
.c3-area {
  stroke-width: 0;
  opacity: 0.2;
}

/*-- Arc --*/
.c3-chart-arcs-title {
  dominant-baseline: middle;
  font-size: 1.3em;
}

.c3-chart-arcs .c3-chart-arcs-background {
  fill: #e0e0e0;
  stroke: #FFF;
}

.c3-chart-arcs .c3-chart-arcs-gauge-unit {
  fill: #000;
  font-size: 16px;
}

.c3-chart-arcs .c3-chart-arcs-gauge-max {
  fill: #777;
}

.c3-chart-arcs .c3-chart-arcs-gauge-min {
  fill: #777;
}

.c3-chart-arc .c3-gauge-value {
  fill: #000;
  /*  font-size: 28px !important;*/
}

.c3-chart-arc.c3-target g path {
  opacity: 1;
}

.c3-chart-arc.c3-target.c3-focused g path {
  opacity: 1;
}

/*-- Zoom --*/
.c3-drag-zoom.enabled {
  pointer-events: all !important;
  visibility: visible;
}

.c3-drag-zoom.disabled {
  pointer-events: none !important;
  visibility: hidden;
}

.c3-drag-zoom .extent {
  fill-opacity: 0.1;
}

table.dataTable {
  clear: both;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
  max-width: none !important;
  border-collapse: separate !important;
}
table.dataTable td,
table.dataTable th {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
table.dataTable td.dataTables_empty,
table.dataTable th.dataTables_empty {
  text-align: center;
}
table.dataTable.nowrap th,
table.dataTable.nowrap td {
  white-space: nowrap;
}

div.dataTables_wrapper div.dataTables_length label {
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}
div.dataTables_wrapper div.dataTables_length select {
  width: 75px;
  display: inline-block;
}
div.dataTables_wrapper div.dataTables_filter {
  text-align: right;
}
div.dataTables_wrapper div.dataTables_filter label {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
}
div.dataTables_wrapper div.dataTables_filter input {
  margin-left: 0.5em;
  display: inline-block;
  width: auto;
}
div.dataTables_wrapper div.dataTables_info {
  padding-top: 0.85em;
  white-space: nowrap;
}
div.dataTables_wrapper div.dataTables_paginate {
  margin: 0;
  white-space: nowrap;
  text-align: right;
}
div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin: 2px 0;
  white-space: nowrap;
  justify-content: flex-end;
}
div.dataTables_wrapper div.dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  margin-top: -26px;
  text-align: center;
  padding: 1em 0;
}

table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting {
  padding-right: 30px;
}
table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
  outline: none;
}
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  position: relative;
}
table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
  position: absolute;
  bottom: 0.9em;
  display: block;
  opacity: 0.3;
}
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
  right: 1em;
  content: "\2191";
}
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  right: 0.5em;
  content: "\2193";
}
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:after {
  opacity: 1;
}
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
  opacity: 0;
}

div.dataTables_scrollHead table.dataTable {
  margin-bottom: 0 !important;
}

div.dataTables_scrollBody table {
  border-top: none;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
div.dataTables_scrollBody table thead .sorting:after,
div.dataTables_scrollBody table thead .sorting_asc:after,
div.dataTables_scrollBody table thead .sorting_desc:after {
  display: none;
}
div.dataTables_scrollBody table tbody tr:first-child th,
div.dataTables_scrollBody table tbody tr:first-child td {
  border-top: none;
}

div.dataTables_scrollFoot table {
  margin-top: 0 !important;
  border-top: none;
}

@media screen and (max-width: 767px) {
  div.dataTables_wrapper div.dataTables_length,
  div.dataTables_wrapper div.dataTables_filter,
  div.dataTables_wrapper div.dataTables_info,
  div.dataTables_wrapper div.dataTables_paginate {
    text-align: center;
  }
}
table.dataTable.table-condensed > thead > tr > th {
  padding-right: 20px;
}
table.dataTable.table-condensed .sorting:after,
table.dataTable.table-condensed .sorting_asc:after,
table.dataTable.table-condensed .sorting_desc:after {
  top: 6px;
  right: 6px;
}

table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
  border-left-width: 0;
}
table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child,
table.table-bordered.dataTable td:last-child,
table.table-bordered.dataTable td:last-child {
  border-right-width: 0;
}
table.table-bordered.dataTable tbody th,
table.table-bordered.dataTable tbody td {
  border-bottom-width: 0;
}

div.dataTables_scrollHead table.table-bordered {
  border-bottom-width: 0;
}

div.table-responsive > div.dataTables_wrapper > div.row {
  margin: 0;
}
div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:first-child {
  padding-left: 0;
}
div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
  padding-right: 0;
}

@keyframes dtb-spinner {
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes dtb-spinner {
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes dtb-spinner {
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dtb-spinner {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes dtb-spinner {
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
div.dataTables_wrapper {
  position: relative;
}

div.dt-buttons {
  position: initial;
}
div.dt-buttons .dt-button {
  overflow: hidden;
  text-overflow: ellipsis;
}

div.dt-button-info {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  margin-top: -100px;
  margin-left: -200px;
  background-color: white;
  border-radius: 0.75em;
  box-shadow: 3px 4px 10px 1px rgba(0, 0, 0, 0.8);
  text-align: center;
  z-index: 2003;
  overflow: hidden;
}
div.dt-button-info h2 {
  padding: 2rem 2rem 1rem 2rem;
  margin: 0;
  font-weight: normal;
}
div.dt-button-info > div {
  padding: 1em 2em 2em 2em;
}

div.dtb-popover-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  z-index: 2003;
}

button.dtb-hide-drop {
  display: none !important;
}

div.dt-button-collection-title {
  text-align: center;
  padding: 0.3em 0 0.5em;
  margin-left: 0.5em;
  margin-right: 0.5em;
  font-size: 0.9em;
}

div.dt-button-collection-title:empty {
  display: none;
}

span.dt-button-spacer {
  display: inline-block;
  margin: 0.5em;
  white-space: nowrap;
}
span.dt-button-spacer.bar {
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  vertical-align: middle;
  padding-left: 0.5em;
}
span.dt-button-spacer.bar:empty {
  height: 1em;
  width: 1px;
  padding-left: 0;
}

div.dt-button-collection .dt-button-active {
  padding-right: 3em;
}
div.dt-button-collection .dt-button-active:after {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 1em;
  display: inline-block;
  content: "✓";
  color: inherit;
}
div.dt-button-collection .dt-button-active.dt-button-split {
  padding-right: 0;
}
div.dt-button-collection .dt-button-active.dt-button-split:after {
  display: none;
}
div.dt-button-collection .dt-button-active.dt-button-split > *:first-child {
  padding-right: 3em;
}
div.dt-button-collection .dt-button-active.dt-button-split > *:first-child:after {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  right: 1em;
  display: inline-block;
  content: "✓";
  color: inherit;
}
div.dt-button-collection .dt-button-active-a a {
  padding-right: 3em;
}
div.dt-button-collection .dt-button-active-a a:after {
  position: absolute;
  right: 1em;
  display: inline-block;
  content: "✓";
  color: inherit;
}
div.dt-button-collection span.dt-button-spacer {
  width: 100%;
  font-size: 0.9em;
  text-align: center;
  margin: 0.5em 0;
}
div.dt-button-collection span.dt-button-spacer:empty {
  height: 0;
  width: 100%;
}
div.dt-button-collection span.dt-button-spacer.bar {
  border-left: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 0;
}

html.dark div.dt-button-info {
  background-color: var(--dt-html-background);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

div.dt-buttons div.btn-group {
  position: initial;
}
div.dt-buttons div.dropdown-menu {
  margin-top: 4px;
}
div.dt-buttons div.dropdown-menu .dt-button {
  position: relative;
}
div.dt-buttons div.dropdown-menu div.dt-button-split {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
}
div.dt-buttons div.dropdown-menu div.dt-button-split a:first-child {
  min-width: auto;
  flex: 1 0 50px;
  padding-right: 0;
}
div.dt-buttons div.dropdown-menu div.dt-button-split button:last-child {
  min-width: 33px;
  flex: 0;
  background: transparent;
  border: none;
  line-height: 1rem;
  color: #212529;
  padding: 0 16px;
}
div.dt-buttons div.dropdown-menu div.dt-button-split button:last-child:hover {
  color: #16181b;
  background-color: #f8f9fa;
}
div.dt-buttons div.dropdown-menu div.dt-button-split button:last-child:after {
  position: relative;
  left: -3px;
}
div.dt-buttons div.dropdown-menu.fixed {
  position: fixed;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -75px;
  border-radius: 5px;
  background-color: white;
  padding: 0.5em;
}
div.dt-buttons div.dropdown-menu.fixed.two-column {
  margin-left: -200px;
}
div.dt-buttons div.dropdown-menu.fixed.three-column {
  margin-left: -225px;
}
div.dt-buttons div.dropdown-menu.fixed.four-column {
  margin-left: -300px;
}
div.dt-buttons div.dropdown-menu.fixed.columns {
  margin-left: -409px;
}
@media screen and (max-width: 1024px) {
  div.dt-buttons div.dropdown-menu.fixed.columns {
    margin-left: -308px;
  }
}
@media screen and (max-width: 640px) {
  div.dt-buttons div.dropdown-menu.fixed.columns {
    margin-left: -203px;
  }
}
@media screen and (max-width: 460px) {
  div.dt-buttons div.dropdown-menu.fixed.columns {
    margin-left: -100px;
  }
}
div.dt-buttons div.dropdown-menu.fixed > :last-child {
  max-height: 100vh;
  overflow: auto;
}
div.dt-buttons div.dropdown-menu.two-column > :last-child, div.dt-buttons div.dropdown-menu.three-column > :last-child, div.dt-buttons div.dropdown-menu.four-column > :last-child {
  display: block !important;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  -ms-column-gap: 8px;
  -o-column-gap: 8px;
  column-gap: 8px;
}
div.dt-buttons div.dropdown-menu.two-column > :last-child > *, div.dt-buttons div.dropdown-menu.three-column > :last-child > *, div.dt-buttons div.dropdown-menu.four-column > :last-child > * {
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
}
div.dt-buttons div.dropdown-menu.two-column {
  width: 400px;
}
div.dt-buttons div.dropdown-menu.two-column > :last-child {
  padding-bottom: 1px;
  column-count: 2;
}
div.dt-buttons div.dropdown-menu.three-column {
  width: 450px;
}
div.dt-buttons div.dropdown-menu.three-column > :last-child {
  padding-bottom: 1px;
  column-count: 3;
}
div.dt-buttons div.dropdown-menu.four-column {
  width: 600px;
}
div.dt-buttons div.dropdown-menu.four-column > :last-child {
  padding-bottom: 1px;
  column-count: 4;
}
div.dt-buttons div.dropdown-menu .dt-button {
  border-radius: 0;
}
div.dt-buttons div.dropdown-menu.columns {
  width: auto;
}
div.dt-buttons div.dropdown-menu.columns > :last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  width: 818px;
  padding-bottom: 1px;
}
div.dt-buttons div.dropdown-menu.columns > :last-child .dt-button {
  min-width: 200px;
  flex: 0 1;
  margin: 0;
}
div.dt-buttons div.dropdown-menu.columns.dtb-b3 > :last-child, div.dt-buttons div.dropdown-menu.columns.dtb-b2 > :last-child, div.dt-buttons div.dropdown-menu.columns.dtb-b1 > :last-child {
  justify-content: space-between;
}
div.dt-buttons div.dropdown-menu.columns.dtb-b3 .dt-button {
  flex: 1 1 32%;
}
div.dt-buttons div.dropdown-menu.columns.dtb-b2 .dt-button {
  flex: 1 1 48%;
}
div.dt-buttons div.dropdown-menu.columns.dtb-b1 .dt-button {
  flex: 1 1 100%;
}
@media screen and (max-width: 1024px) {
  div.dt-buttons div.dropdown-menu.columns > :last-child {
    width: 612px;
  }
}
@media screen and (max-width: 640px) {
  div.dt-buttons div.dropdown-menu.columns > :last-child {
    width: 406px;
  }
  div.dt-buttons div.dropdown-menu.columns.dtb-b3 .dt-button {
    flex: 0 1 32%;
  }
}
@media screen and (max-width: 460px) {
  div.dt-buttons div.dropdown-menu.columns > :last-child {
    width: 200px;
  }
}
div.dt-buttons span.dt-button-spacer.empty {
  margin: 1px;
}
div.dt-buttons span.dt-button-spacer.bar:empty {
  height: inherit;
}
div.dt-buttons .btn.processing {
  color: rgba(0, 0, 0, 0.2);
}
div.dt-buttons .btn.processing:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  box-sizing: border-box;
  display: block;
  content: " ";
  border: 2px solid #282828;
  border-radius: 50%;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: dtb-spinner 1500ms infinite linear;
  -o-animation: dtb-spinner 1500ms infinite linear;
  -ms-animation: dtb-spinner 1500ms infinite linear;
  -webkit-animation: dtb-spinner 1500ms infinite linear;
  -moz-animation: dtb-spinner 1500ms infinite linear;
}

div.dt-button-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

@media screen and (max-width: 767px) {
  div.dt-buttons {
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 0.5em;
  }
  div.dt-buttons a.btn {
    float: none;
  }
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
  cursor: default !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
  display: none !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control {
  cursor: pointer;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
  margin-right: 0.5em;
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
  content: "►";
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control.arrow-right::before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control.arrow-right::before {
  content: "◄";
}
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th.dtr-control:before {
  content: "▼";
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td.dtr-control,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th.dtr-control {
  padding-left: 0.333em;
}
table.dataTable.dtr-column > tbody > tr > td.dtr-control,
table.dataTable.dtr-column > tbody > tr > th.dtr-control,
table.dataTable.dtr-column > tbody > tr > td.control,
table.dataTable.dtr-column > tbody > tr > th.control {
  cursor: pointer;
}
table.dataTable.dtr-column > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-column > tbody > tr > th.dtr-control:before,
table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
  display: inline-block;
  color: rgba(0, 0, 0, 0.5);
  content: "►";
}
table.dataTable.dtr-column > tbody > tr > td.dtr-control.arrow-right::before,
table.dataTable.dtr-column > tbody > tr > th.dtr-control.arrow-right::before,
table.dataTable.dtr-column > tbody > tr > td.control.arrow-right::before,
table.dataTable.dtr-column > tbody > tr > th.control.arrow-right::before {
  content: "◄";
}
table.dataTable.dtr-column > tbody > tr.parent td.dtr-control:before,
table.dataTable.dtr-column > tbody > tr.parent th.dtr-control:before,
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
  content: "▼";
}
table.dataTable > tbody > tr.child {
  padding: 0.5em 1em;
}
table.dataTable > tbody > tr.child:hover {
  background: transparent !important;
}
table.dataTable > tbody > tr.child ul.dtr-details {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li {
  border-bottom: 1px solid #efefef;
  padding: 0.5em 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li:first-child {
  padding-top: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
table.dataTable > tbody > tr.child span.dtr-title {
  display: inline-block;
  min-width: 75px;
  font-weight: bold;
}

div.dtr-modal {
  position: fixed;
  box-sizing: border-box;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  padding: 10em 1em;
}
div.dtr-modal div.dtr-modal-display {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  height: fit-content;
  max-height: 75%;
  overflow: auto;
  margin: auto;
  z-index: 102;
  overflow: auto;
  background-color: #f5f5f7;
  border: 1px solid black;
  border-radius: 0.5em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}
div.dtr-modal div.dtr-modal-content {
  position: relative;
  padding: 2.5em;
}
div.dtr-modal div.dtr-modal-content h2 {
  margin-top: 0;
}
div.dtr-modal div.dtr-modal-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  z-index: 12;
}
div.dtr-modal div.dtr-modal-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 767px) {
  div.dtr-modal div.dtr-modal-display {
    width: 95%;
  }
}
html.dark table.dataTable > tbody > tr > td.dtr-control:before {
  color: rgba(255, 255, 255, 0.5) !important;
}
html.dark table.dataTable > tbody > tr.child ul.dtr-details > li {
  border-bottom-color: #404346;
}
html.dark div.dtr-modal div.dtr-modal-display {
  background-color: #212529;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

div.dtr-bs-modal table.table tr:first-child td {
  border-top: none;
}

.minicolors {
  position: relative;
}

.minicolors-sprite {
  background-image: url(data:image/png;base64,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);
}

.minicolors-swatch {
  position: absolute;
  vertical-align: middle;
  background-position: -80px 0;
  cursor: text;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.minicolors-swatch::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15);
  border-radius: 2px;
}

.minicolors-swatch-color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.minicolors input[type=hidden] + .minicolors-swatch {
  width: 28px;
  position: static;
  cursor: pointer;
}

.minicolors input[type=hidden][disabled] + .minicolors-swatch {
  cursor: default;
}

/* Panel */
.minicolors-panel {
  position: absolute;
  width: 173px;
  background: white;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .2);
  z-index: 99999;
  box-sizing: content-box;
  display: none;
  touch-action: none;
}

.minicolors-panel.minicolors-visible {
  display: block;
}

/* Panel positioning */
.minicolors-position-top .minicolors-panel {
  top: -154px;
}

.minicolors-position-right .minicolors-panel {
  right: 0;
}

.minicolors-position-bottom .minicolors-panel {
  top: auto;
}

.minicolors-position-left .minicolors-panel {
  left: 0;
}

.minicolors-with-opacity .minicolors-panel {
  width: 194px;
}

.minicolors .minicolors-grid {
  position: relative;
  top: 1px;
  left: 1px; /* LTR */
  width: 150px;
  height: 150px;
  margin-bottom: 2px;
  background-position: -120px 0;
  cursor: crosshair;
}
[dir=rtl] .minicolors .minicolors-grid {
  right: 1px;
}

.minicolors .minicolors-grid-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
}

.minicolors-slider-saturation .minicolors-grid {
  background-position: -420px 0;
}

.minicolors-slider-saturation .minicolors-grid-inner {
  background-position: -270px 0;
  background-image: inherit;
}

.minicolors-slider-brightness .minicolors-grid {
  background-position: -570px 0;
}

.minicolors-slider-brightness .minicolors-grid-inner {
  background-color: black;
}

.minicolors-slider-wheel .minicolors-grid {
  background-position: -720px 0;
}

.minicolors-slider,
.minicolors-opacity-slider {
  position: absolute;
  top: 1px;
  left: 152px; /* LTR */
  width: 20px;
  height: 150px;
  background-color: white;
  background-position: 0 0;
  cursor: row-resize;
}
[dir=rtl] .minicolors-slider,
[dir=rtl] .minicolors-opacity-slider {
  right: 152px;
}

.minicolors-slider-saturation .minicolors-slider {
  background-position: -60px 0;
}

.minicolors-slider-brightness .minicolors-slider {
  background-position: -20px 0;
}

.minicolors-slider-wheel .minicolors-slider {
  background-position: -20px 0;
}

.minicolors-opacity-slider {
  left: 173px; /* LTR */
  background-position: -40px 0;
  display: none;
}
[dir=rtl] .minicolors-opacity-slider {
  right: 173px;
}

.minicolors-with-opacity .minicolors-opacity-slider {
  display: block;
}

/* Pickers */
.minicolors-grid .minicolors-picker {
  position: absolute;
  top: 70px;
  left: 70px;
  width: 12px;
  height: 12px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .25);
  border-radius: 10px;
  margin-top: -6px;
  margin-left: -6px;
  background: none;
}

.minicolors-grid .minicolors-picker > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  border: solid 2px white;
  box-sizing: content-box;
}

.minicolors-picker {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 3px;
  background: white;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .25);
  border-radius: 2px;
  margin-top: -2px;
  margin-left: 1px;
  box-sizing: content-box;
}

/* Swatches */
.minicolors-swatches,
.minicolors-swatches li {
  margin: 5px 0 3px 5px; /* LTR */
  padding: 0;
  list-style: none;
  overflow: hidden;
}
[dir=rtl] .minicolors-swatches,
[dir=rtl] .minicolors-swatches li {
  margin: 5px 5px 3px 0;
}

.minicolors-swatches .minicolors-swatch {
  position: relative;
  float: left; /* LTR */
  cursor: pointer;
  margin: 0 4px 0 0; /* LTR */
}
[dir=rtl] .minicolors-swatches .minicolors-swatch {
  float: right;
  margin: 0 0 0 4px;
}

.minicolors-with-opacity .minicolors-swatches .minicolors-swatch {
  margin-right: 7px; /* LTR */
}
[dir=rtl] .minicolors-with-opacity .minicolors-swatches .minicolors-swatch {
  margin-right: 0;
  margin-left: 7px;
}

.minicolors-swatch.selected {
  border-color: #000;
}

/* Inline controls */
.minicolors-inline {
  display: inline-block;
}

.minicolors-inline .minicolors-input {
  display: none !important;
}

.minicolors-inline .minicolors-panel {
  position: relative;
  top: auto;
  left: auto; /* LTR */
  box-shadow: none;
  z-index: auto;
  display: inline-block;
}
[dir=rtl] .minicolors-inline .minicolors-panel {
  right: auto;
}

/* Default theme */
.minicolors-theme-default .minicolors-swatch {
  top: 5px;
  left: 5px; /* LTR */
  width: 18px;
  height: 18px;
}
[dir=rtl] .minicolors-theme-default .minicolors-swatch {
  right: 5px;
}
.minicolors-theme-default .minicolors-swatches .minicolors-swatch {
  margin-bottom: 2px;
  top: 0;
  left: 0; /* LTR */
  width: 18px;
  height: 18px;
}
[dir=rtl] .minicolors-theme-default .minicolors-swatches .minicolors-swatch {
  right: 0;
}
.minicolors-theme-default.minicolors-position-right .minicolors-swatch {
  left: auto; /* LTR */
  right: 5px; /* LTR */
}
[dir=rtl] .minicolors-theme-default.minicolors-position-left .minicolors-swatch {
  right: auto;
  left: 5px;
}
.minicolors-theme-default.minicolors {
  width: auto;
  display: inline-block;
}
.minicolors-theme-default .minicolors-input {
  height: 20px;
  width: auto;
  display: inline-block;
  padding-left: 26px; /* LTR */
}
[dir=rtl] .minicolors-theme-default .minicolors-input {
  text-align: right;
  unicode-bidi: plaintext;
  padding-left: 1px;
  padding-right: 26px;
}
.minicolors-theme-default.minicolors-position-right .minicolors-input {
  padding-right: 26px; /* LTR */
  padding-left: inherit; /* LTR */
}
[dir=rtl] .minicolors-theme-default.minicolors-position-left .minicolors-input {
  padding-right: inherit;
  padding-left: 26px;
}

/* Bootstrap theme */
.minicolors-theme-bootstrap .minicolors-swatch {
  z-index: 2;
  top: 3px;
  left: 3px; /* LTR */
  width: 28px;
  height: 28px;
  border-radius: 2px;
}
[dir=rtl] .minicolors-theme-bootstrap .minicolors-swatch {
  right: 3px;
}
.minicolors-theme-bootstrap .minicolors-swatches .minicolors-swatch {
  margin-bottom: 2px;
  top: 0;
  left: 0; /* LTR */
  width: 20px;
  height: 20px;
}
[dir=rtl] .minicolors-theme-bootstrap .minicolors-swatches .minicolors-swatch {
  right: 0;
}
.minicolors-theme-bootstrap .minicolors-swatch-color {
  border-radius: inherit;
}
.minicolors-theme-bootstrap.minicolors-position-right > .minicolors-swatch {
  left: auto; /* LTR */
  right: 3px; /* LTR */
}
[dir=rtl] .minicolors-theme-bootstrap.minicolors-position-left > .minicolors-swatch {
  right: auto;
  left: 3px;
}
.minicolors-theme-bootstrap .minicolors-input {
  float: none;
  padding-left: 44px; /* LTR */
}
[dir=rtl] .minicolors-theme-bootstrap .minicolors-input {
  text-align: right;
  unicode-bidi: plaintext;
  padding-left: 12px;
  padding-right: 44px;
}
.minicolors-theme-bootstrap.minicolors-position-right .minicolors-input {
  padding-right: 44px; /* LTR */
  padding-left: 12px; /* LTR */
}
[dir=rtl] .minicolors-theme-bootstrap.minicolors-position-left .minicolors-input {
  padding-right: 12px;
  padding-left: 44px;
}
.minicolors-theme-bootstrap .minicolors-input.input-lg + .minicolors-swatch {
  top: 4px;
  left: 4px; /* LTR */
  width: 37px;
  height: 37px;
  border-radius: 5px;
}
[dir=rtl] .minicolors-theme-bootstrap .minicolors-input.input-lg + .minicolors-swatch {
  right: 4px;
}
.minicolors-theme-bootstrap .minicolors-input.input-sm + .minicolors-swatch {
  width: 24px;
  height: 24px;
}
.minicolors-theme-bootstrap .minicolors-input.input-xs + .minicolors-swatch {
  width: 18px;
  height: 18px;
}
.input-group .minicolors-theme-bootstrap:not(:first-child) .minicolors-input {
  border-top-left-radius: 0; /* LTR */
  border-bottom-left-radius: 0; /* LTR */
}
[dir=rtl] .input-group .minicolors-theme-bootstrap .minicolors-input {
  border-radius: 4px;
}
[dir=rtl] .input-group .minicolors-theme-bootstrap:not(:first-child) .minicolors-input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
[dir=rtl] .input-group .minicolors-theme-bootstrap:not(:last-child) .minicolors-input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* bootstrap input-group rtl override */
[dir=rtl] .input-group .form-control,
[dir=rtl] .input-group-addon,
[dir=rtl] .input-group-btn > .btn,
[dir=rtl] .input-group-btn > .btn-group > .btn,
[dir=rtl] .input-group-btn > .dropdown-toggle {
  border: 1px solid #ccc;
  border-radius: 4px;
}
[dir=rtl] .input-group .form-control:first-child,
[dir=rtl] .input-group-addon:first-child,
[dir=rtl] .input-group-btn:first-child > .btn,
[dir=rtl] .input-group-btn:first-child > .btn-group > .btn,
[dir=rtl] .input-group-btn:first-child > .dropdown-toggle,
[dir=rtl] .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
[dir=rtl] .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}
[dir=rtl] .input-group .form-control:last-child,
[dir=rtl] .input-group-addon:last-child,
[dir=rtl] .input-group-btn:last-child > .btn,
[dir=rtl] .input-group-btn:last-child > .btn-group > .btn,
[dir=rtl] .input-group-btn:last-child > .dropdown-toggle,
[dir=rtl] .input-group-btn:first-child > .btn:not(:first-child),
[dir=rtl] .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Semantic Ui theme */
.minicolors-theme-semanticui .minicolors-swatch {
  top: 0;
  left: 0; /* LTR */
  padding: 18px;
}
[dir=rtl] .minicolors-theme-semanticui .minicolors-swatch {
  right: 0;
}
.minicolors-theme-semanticui input {
  text-indent: 30px;
}

@font-face{font-family:'Glyphicons Regular';src:url('fonts/glyphicons-regular.eot');src:url('fonts/glyphicons-regular.eot?#iefix') format('embedded-opentype'),url('fonts/glyphicons-regular.woff2') format('woff2'),url('fonts/glyphicons-regular.woff') format('woff'),url('fonts/glyphicons-regular.ttf') format('truetype'),url('fonts/glyphicons-regular.svg#glyphiconsregular') format('svg')}.glyphicons{display:inline-block;font-family:'Glyphicons Regular';font-style:normal;font-weight:normal;line-height:1;vertical-align:top;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicons.x05{font-size:12px}.glyphicons.x2{font-size:48px}.glyphicons.x2:before{padding:8px 12px}.glyphicons.x3{font-size:72px}.glyphicons.x3:before{padding:16px 20px}.glyphicons.x4{font-size:96px}.glyphicons.x4:before{padding:20px 28px}.glyphicons.x5{font-size:120px}.glyphicons.x5:before{padding:28px 36px}.glyphicons.light:before{color:#f2f2f2}.glyphicons.drop:before{text-shadow:-1px 1px 3px rgba(0,0,0,0.3)}.glyphicons.flip{-moz-transform:scaleX(-1);-o-transform:scaleX(-1);-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH;-ms-filter:"FlipH"}.glyphicons.flipv{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleY(-1);filter:FlipV;-ms-filter:"FlipV"}.glyphicons.rotate90{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.glyphicons.rotate180{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.glyphicons.rotate270{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.glyphicons-glass:before{content:"\E001"}.glyphicons-leaf:before{content:"\E002"}.glyphicons-dog:before{content:"\E003"}.glyphicons-user:before{content:"\E004"}.glyphicons-girl:before{content:"\E005"}.glyphicons-car:before{content:"\E006"}.glyphicons-user-add:before{content:"\E007"}.glyphicons-user-remove:before{content:"\E008"}.glyphicons-film:before{content:"\E009"}.glyphicons-magic:before{content:"\E010"}.glyphicons-envelope:before{content:"\E011"}.glyphicons-camera:before{content:"\E012"}.glyphicons-heart:before{content:"\E013"}.glyphicons-beach-umbrella:before{content:"\E014"}.glyphicons-train:before{content:"\E015"}.glyphicons-print:before{content:"\E016"}.glyphicons-bin:before{content:"\E017"}.glyphicons-music:before{content:"\E018"}.glyphicons-music-alt:before{content:"\E019"}.glyphicons-heart-empty:before{content:"\E020"}.glyphicons-home:before{content:"\E021"}.glyphicons-snowflake:before{content:"\E022"}.glyphicons-fire:before{content:"\E023"}.glyphicons-magnet:before{content:"\E024"}.glyphicons-parents:before{content:"\E025"}.glyphicons-binoculars:before{content:"\E026"}.glyphicons-road:before{content:"\E027"}.glyphicons-search:before{content:"\E028"}.glyphicons-cars:before{content:"\E029"}.glyphicons-notes-2:before{content:"\E030"}.glyphicons-pencil:before{content:"\E031"}.glyphicons-bus:before{content:"\E032"}.glyphicons-wifi-alt:before{content:"\E033"}.glyphicons-luggage:before{content:"\E034"}.glyphicons-old-man:before{content:"\E035"}.glyphicons-woman:before{content:"\E036"}.glyphicons-file:before{content:"\E037"}.glyphicons-coins:before{content:"\E038"}.glyphicons-plane:before{content:"\E039"}.glyphicons-notes:before{content:"\E040"}.glyphicons-stats:before{content:"\E041"}.glyphicons-charts:before{content:"\E042"}.glyphicons-pie-chart:before{content:"\E043"}.glyphicons-group:before{content:"\E044"}.glyphicons-keys:before{content:"\E045"}.glyphicons-calendar:before{content:"\E046"}.glyphicons-router:before{content:"\E047"}.glyphicons-camera-small:before{content:"\E048"}.glyphicons-star-empty:before{content:"\E049"}.glyphicons-star:before{content:"\E050"}.glyphicons-link:before{content:"\E051"}.glyphicons-eye-open:before{content:"\E052"}.glyphicons-eye-close:before{content:"\E053"}.glyphicons-alarm:before{content:"\E054"}.glyphicons-clock:before{content:"\E055"}.glyphicons-stopwatch:before{content:"\E056"}.glyphicons-projector:before{content:"\E057"}.glyphicons-history:before{content:"\E058"}.glyphicons-truck:before{content:"\E059"}.glyphicons-cargo:before{content:"\E060"}.glyphicons-compass:before{content:"\E061"}.glyphicons-keynote:before{content:"\E062"}.glyphicons-paperclip:before{content:"\E063"}.glyphicons-power:before{content:"\E064"}.glyphicons-lightbulb:before{content:"\E065"}.glyphicons-tag:before{content:"\E066"}.glyphicons-tags:before{content:"\E067"}.glyphicons-cleaning:before{content:"\E068"}.glyphicons-ruler:before{content:"\E069"}.glyphicons-gift:before{content:"\E070"}.glyphicons-umbrella:before{content:"\E071"}.glyphicons-book:before{content:"\E072"}.glyphicons-bookmark:before{content:"\E073"}.glyphicons-wifi:before{content:"\E074"}.glyphicons-cup:before{content:"\E075"}.glyphicons-stroller:before{content:"\E076"}.glyphicons-headphones:before{content:"\E077"}.glyphicons-headset:before{content:"\E078"}.glyphicons-warning-sign:before{content:"\E079"}.glyphicons-signal:before{content:"\E080"}.glyphicons-retweet:before{content:"\E081"}.glyphicons-refresh:before{content:"\E082"}.glyphicons-roundabout:before{content:"\E083"}.glyphicons-random:before{content:"\E084"}.glyphicons-heat:before{content:"\E085"}.glyphicons-repeat:before{content:"\E086"}.glyphicons-display:before{content:"\E087"}.glyphicons-log-book:before{content:"\E088"}.glyphicons-address-book:before{content:"\E089"}.glyphicons-building:before{content:"\E090"}.glyphicons-eyedropper:before{content:"\E091"}.glyphicons-adjust:before{content:"\E092"}.glyphicons-tint:before{content:"\E093"}.glyphicons-crop:before{content:"\E094"}.glyphicons-vector-path-square:before{content:"\E095"}.glyphicons-vector-path-circle:before{content:"\E096"}.glyphicons-vector-path-polygon:before{content:"\E097"}.glyphicons-vector-path-line:before{content:"\E098"}.glyphicons-vector-path-curve:before{content:"\E099"}.glyphicons-vector-path-all:before{content:"\E100"}.glyphicons-font:before{content:"\E101"}.glyphicons-italic:before{content:"\E102"}.glyphicons-bold:before{content:"\E103"}.glyphicons-text-underline:before{content:"\E104"}.glyphicons-text-strike:before{content:"\E105"}.glyphicons-text-height:before{content:"\E106"}.glyphicons-text-width:before{content:"\E107"}.glyphicons-text-resize:before{content:"\E108"}.glyphicons-left-indent:before{content:"\E109"}.glyphicons-right-indent:before{content:"\E110"}.glyphicons-align-left:before{content:"\E111"}.glyphicons-align-center:before{content:"\E112"}.glyphicons-align-right:before{content:"\E113"}.glyphicons-justify:before{content:"\E114"}.glyphicons-list:before{content:"\E115"}.glyphicons-text-smaller:before{content:"\E116"}.glyphicons-text-bigger:before{content:"\E117"}.glyphicons-embed:before{content:"\E118"}.glyphicons-embed-close:before{content:"\E119"}.glyphicons-table:before{content:"\E120"}.glyphicons-message-full:before{content:"\E121"}.glyphicons-message-empty:before{content:"\E122"}.glyphicons-message-in:before{content:"\E123"}.glyphicons-message-out:before{content:"\E124"}.glyphicons-message-plus:before{content:"\E125"}.glyphicons-message-minus:before{content:"\E126"}.glyphicons-message-ban:before{content:"\E127"}.glyphicons-message-flag:before{content:"\E128"}.glyphicons-message-lock:before{content:"\E129"}.glyphicons-message-new:before{content:"\E130"}.glyphicons-inbox:before{content:"\E131"}.glyphicons-inbox-plus:before{content:"\E132"}.glyphicons-inbox-minus:before{content:"\E133"}.glyphicons-inbox-lock:before{content:"\E134"}.glyphicons-inbox-in:before{content:"\E135"}.glyphicons-inbox-out:before{content:"\E136"}.glyphicons-cogwheel:before{content:"\E137"}.glyphicons-cogwheels:before{content:"\E138"}.glyphicons-picture:before{content:"\E139"}.glyphicons-adjust-alt:before{content:"\E140"}.glyphicons-database-lock:before{content:"\E141"}.glyphicons-database-plus:before{content:"\E142"}.glyphicons-database-minus:before{content:"\E143"}.glyphicons-database-ban:before{content:"\E144"}.glyphicons-folder-open:before{content:"\E145"}.glyphicons-folder-plus:before{content:"\E146"}.glyphicons-folder-minus:before{content:"\E147"}.glyphicons-folder-lock:before{content:"\E148"}.glyphicons-folder-flag:before{content:"\E149"}.glyphicons-folder-new:before{content:"\E150"}.glyphicons-edit:before{content:"\E151"}.glyphicons-new-window:before{content:"\E152"}.glyphicons-check:before{content:"\E153"}.glyphicons-unchecked:before{content:"\E154"}.glyphicons-more-windows:before{content:"\E155"}.glyphicons-show-big-thumbnails:before{content:"\E156"}.glyphicons-show-thumbnails:before{content:"\E157"}.glyphicons-show-thumbnails-with-lines:before{content:"\E158"}.glyphicons-show-lines:before{content:"\E159"}.glyphicons-playlist:before{content:"\E160"}.glyphicons-imac:before{content:"\E161"}.glyphicons-macbook:before{content:"\E162"}.glyphicons-ipad:before{content:"\E163"}.glyphicons-iphone:before{content:"\E164"}.glyphicons-iphone-transfer:before{content:"\E165"}.glyphicons-iphone-exchange:before{content:"\E166"}.glyphicons-ipod:before{content:"\E167"}.glyphicons-ipod-shuffle:before{content:"\E168"}.glyphicons-ear-plugs:before{content:"\E169"}.glyphicons-record:before{content:"\E170"}.glyphicons-step-backward:before{content:"\E171"}.glyphicons-fast-backward:before{content:"\E172"}.glyphicons-rewind:before{content:"\E173"}.glyphicons-play:before{content:"\E174"}.glyphicons-pause:before{content:"\E175"}.glyphicons-stop:before{content:"\E176"}.glyphicons-forward:before{content:"\E177"}.glyphicons-fast-forward:before{content:"\E178"}.glyphicons-step-forward:before{content:"\E179"}.glyphicons-eject:before{content:"\E180"}.glyphicons-facetime-video:before{content:"\E181"}.glyphicons-download-alt:before{content:"\E182"}.glyphicons-mute:before{content:"\E183"}.glyphicons-volume-down:before{content:"\E184"}.glyphicons-volume-up:before{content:"\E185"}.glyphicons-screenshot:before{content:"\E186"}.glyphicons-move:before{content:"\E187"}.glyphicons-more:before{content:"\E188"}.glyphicons-brightness-reduce:before{content:"\E189"}.glyphicons-brightness-increase:before{content:"\E190"}.glyphicons-plus-sign:before{content:"\E191"}.glyphicons-minus-sign:before{content:"\E192"}.glyphicons-remove-sign:before{content:"\E193"}.glyphicons-ok-sign:before{content:"\E194"}.glyphicons-question-sign:before{content:"\E195"}.glyphicons-info-sign:before{content:"\E196"}.glyphicons-exclamation-sign:before{content:"\E197"}.glyphicons-remove-circle:before{content:"\E198"}.glyphicons-ok-circle:before{content:"\E199"}.glyphicons-ban-circle:before{content:"\E200"}.glyphicons-download:before{content:"\E201"}.glyphicons-upload:before{content:"\E202"}.glyphicons-shopping-cart:before{content:"\E203"}.glyphicons-lock:before{content:"\E204"}.glyphicons-unlock:before{content:"\E205"}.glyphicons-electricity:before{content:"\E206"}.glyphicons-ok:before{content:"\E207"}.glyphicons-remove:before{content:"\E208"}.glyphicons-cart-in:before{content:"\E209"}.glyphicons-cart-out:before{content:"\E210"}.glyphicons-arrow-left:before{content:"\E211"}.glyphicons-arrow-right:before{content:"\E212"}.glyphicons-arrow-down:before{content:"\E213"}.glyphicons-arrow-up:before{content:"\E214"}.glyphicons-resize-small:before{content:"\E215"}.glyphicons-resize-full:before{content:"\E216"}.glyphicons-circle-arrow-left:before{content:"\E217"}.glyphicons-circle-arrow-right:before{content:"\E218"}.glyphicons-circle-arrow-top:before{content:"\E219"}.glyphicons-circle-arrow-down:before{content:"\E220"}.glyphicons-play-button:before{content:"\E221"}.glyphicons-unshare:before{content:"\E222"}.glyphicons-share:before{content:"\E223"}.glyphicons-chevron-right:before{content:"\E224"}.glyphicons-chevron-left:before{content:"\E225"}.glyphicons-bluetooth:before{content:"\E226"}.glyphicons-euro:before{content:"\E227"}.glyphicons-usd:before{content:"\E228"}.glyphicons-gbp:before{content:"\E229"}.glyphicons-retweet-2:before{content:"\E230"}.glyphicons-moon:before{content:"\E231"}.glyphicons-sun:before{content:"\E232"}.glyphicons-cloud:before{content:"\E233"}.glyphicons-direction:before{content:"\E234"}.glyphicons-brush:before{content:"\E235"}.glyphicons-pen:before{content:"\E236"}.glyphicons-zoom-in:before{content:"\E237"}.glyphicons-zoom-out:before{content:"\E238"}.glyphicons-pin:before{content:"\E239"}.glyphicons-albums:before{content:"\E240"}.glyphicons-rotation-lock:before{content:"\E241"}.glyphicons-flash:before{content:"\E242"}.glyphicons-map-marker:before{content:"\E243"}.glyphicons-anchor:before{content:"\E244"}.glyphicons-conversation:before{content:"\E245"}.glyphicons-chat:before{content:"\E246"}.glyphicons-note-empty:before{content:"\E247"}.glyphicons-note:before{content:"\E248"}.glyphicons-asterisk:before{content:"\E249"}.glyphicons-divide:before{content:"\E250"}.glyphicons-snorkel-diving:before{content:"\E251"}.glyphicons-scuba-diving:before{content:"\E252"}.glyphicons-oxygen-bottle:before{content:"\E253"}.glyphicons-fins:before{content:"\E254"}.glyphicons-fishes:before{content:"\E255"}.glyphicons-boat:before{content:"\E256"}.glyphicons-delete:before{content:"\E257"}.glyphicons-sheriffs-star:before{content:"\E258"}.glyphicons-qrcode:before{content:"\E259"}.glyphicons-barcode:before{content:"\E260"}.glyphicons-pool:before{content:"\E261"}.glyphicons-buoy:before{content:"\E262"}.glyphicons-spade:before{content:"\E263"}.glyphicons-bank:before{content:"\E264"}.glyphicons-vcard:before{content:"\E265"}.glyphicons-electrical-plug:before{content:"\E266"}.glyphicons-flag:before{content:"\E267"}.glyphicons-credit-card:before{content:"\E268"}.glyphicons-keyboard-wireless:before{content:"\E269"}.glyphicons-keyboard-wired:before{content:"\E270"}.glyphicons-shield:before{content:"\E271"}.glyphicons-ring:before{content:"\E272"}.glyphicons-cake:before{content:"\E273"}.glyphicons-drink:before{content:"\E274"}.glyphicons-beer:before{content:"\E275"}.glyphicons-fast-food:before{content:"\E276"}.glyphicons-cutlery:before{content:"\E277"}.glyphicons-pizza:before{content:"\E278"}.glyphicons-birthday-cake:before{content:"\E279"}.glyphicons-tablet:before{content:"\E280"}.glyphicons-settings:before{content:"\E281"}.glyphicons-bullets:before{content:"\E282"}.glyphicons-cardio:before{content:"\E283"}.glyphicons-t-shirt:before{content:"\E284"}.glyphicons-pants:before{content:"\E285"}.glyphicons-sweater:before{content:"\E286"}.glyphicons-fabric:before{content:"\E287"}.glyphicons-leather:before{content:"\E288"}.glyphicons-scissors:before{content:"\E289"}.glyphicons-bomb:before{content:"\E290"}.glyphicons-skull:before{content:"\E291"}.glyphicons-celebration:before{content:"\E292"}.glyphicons-tea-kettle:before{content:"\E293"}.glyphicons-french-press:before{content:"\E294"}.glyphicons-coffee-cup:before{content:"\E295"}.glyphicons-pot:before{content:"\E296"}.glyphicons-grater:before{content:"\E297"}.glyphicons-kettle:before{content:"\E298"}.glyphicons-hospital:before{content:"\E299"}.glyphicons-hospital-h:before{content:"\E300"}.glyphicons-microphone:before{content:"\E301"}.glyphicons-webcam:before{content:"\E302"}.glyphicons-temple-christianity-church:before{content:"\E303"}.glyphicons-temple-islam:before{content:"\E304"}.glyphicons-temple-hindu:before{content:"\E305"}.glyphicons-temple-buddhist:before{content:"\E306"}.glyphicons-bicycle:before{content:"\E307"}.glyphicons-life-preserver:before{content:"\E308"}.glyphicons-share-alt:before{content:"\E309"}.glyphicons-comments:before{content:"\E310"}.glyphicons-flower:before{content:"\E311"}.glyphicons-baseball:before{content:"\E312"}.glyphicons-rugby:before{content:"\E313"}.glyphicons-ax:before{content:"\E314"}.glyphicons-table-tennis:before{content:"\E315"}.glyphicons-bowling:before{content:"\E316"}.glyphicons-tree-conifer:before{content:"\E317"}.glyphicons-tree-deciduous:before{content:"\E318"}.glyphicons-more-items:before{content:"\E319"}.glyphicons-sort:before{content:"\E320"}.glyphicons-filter:before{content:"\E321"}.glyphicons-gamepad:before{content:"\E322"}.glyphicons-playing-dices:before{content:"\E323"}.glyphicons-calculator:before{content:"\E324"}.glyphicons-tie:before{content:"\E325"}.glyphicons-wallet:before{content:"\E326"}.glyphicons-piano:before{content:"\E327"}.glyphicons-sampler:before{content:"\E328"}.glyphicons-podium:before{content:"\E329"}.glyphicons-soccer-ball:before{content:"\E330"}.glyphicons-blog:before{content:"\E331"}.glyphicons-dashboard:before{content:"\E332"}.glyphicons-certificate:before{content:"\E333"}.glyphicons-bell:before{content:"\E334"}.glyphicons-candle:before{content:"\E335"}.glyphicons-pushpin:before{content:"\E336"}.glyphicons-iphone-shake:before{content:"\E337"}.glyphicons-pin-flag:before{content:"\E338"}.glyphicons-turtle:before{content:"\E339"}.glyphicons-rabbit:before{content:"\E340"}.glyphicons-globe:before{content:"\E341"}.glyphicons-briefcase:before{content:"\E342"}.glyphicons-hdd:before{content:"\E343"}.glyphicons-thumbs-up:before{content:"\E344"}.glyphicons-thumbs-down:before{content:"\E345"}.glyphicons-hand-right:before{content:"\E346"}.glyphicons-hand-left:before{content:"\E347"}.glyphicons-hand-up:before{content:"\E348"}.glyphicons-hand-down:before{content:"\E349"}.glyphicons-fullscreen:before{content:"\E350"}.glyphicons-shopping-bag:before{content:"\E351"}.glyphicons-book-open:before{content:"\E352"}.glyphicons-nameplate:before{content:"\E353"}.glyphicons-nameplate-alt:before{content:"\E354"}.glyphicons-vases:before{content:"\E355"}.glyphicons-bullhorn:before{content:"\E356"}.glyphicons-dumbbell:before{content:"\E357"}.glyphicons-suitcase:before{content:"\E358"}.glyphicons-file-import:before{content:"\E359"}.glyphicons-file-export:before{content:"\E360"}.glyphicons-bug:before{content:"\E361"}.glyphicons-crown:before{content:"\E362"}.glyphicons-smoking:before{content:"\E363"}.glyphicons-cloud-upload:before{content:"\E364"}.glyphicons-cloud-download:before{content:"\E365"}.glyphicons-restart:before{content:"\E366"}.glyphicons-security-camera:before{content:"\E367"}.glyphicons-expand:before{content:"\E368"}.glyphicons-collapse:before{content:"\E369"}.glyphicons-collapse-top:before{content:"\E370"}.glyphicons-globe-af:before{content:"\E371"}.glyphicons-global:before{content:"\E372"}.glyphicons-spray:before{content:"\E373"}.glyphicons-nails:before{content:"\E374"}.glyphicons-claw-hammer:before{content:"\E375"}.glyphicons-classic-hammer:before{content:"\E376"}.glyphicons-hand-saw:before{content:"\E377"}.glyphicons-riflescope:before{content:"\E378"}.glyphicons-electrical-socket-eu:before{content:"\E379"}.glyphicons-electrical-socket-us:before{content:"\E380"}.glyphicons-message-forward:before{content:"\E381"}.glyphicons-coat-hanger:before{content:"\E382"}.glyphicons-dress:before{content:"\E383"}.glyphicons-bathrobe:before{content:"\E384"}.glyphicons-shirt:before{content:"\E385"}.glyphicons-underwear:before{content:"\E386"}.glyphicons-log-in:before{content:"\E387"}.glyphicons-log-out:before{content:"\E388"}.glyphicons-exit:before{content:"\E389"}.glyphicons-new-window-alt:before{content:"\E390"}.glyphicons-video-sd:before{content:"\E391"}.glyphicons-video-hd:before{content:"\E392"}.glyphicons-subtitles:before{content:"\E393"}.glyphicons-sound-stereo:before{content:"\E394"}.glyphicons-sound-dolby:before{content:"\E395"}.glyphicons-sound-5-1:before{content:"\E396"}.glyphicons-sound-6-1:before{content:"\E397"}.glyphicons-sound-7-1:before{content:"\E398"}.glyphicons-copyright-mark:before{content:"\E399"}.glyphicons-registration-mark:before{content:"\E400"}.glyphicons-radar:before{content:"\E401"}.glyphicons-skateboard:before{content:"\E402"}.glyphicons-golf-course:before{content:"\E403"}.glyphicons-sorting:before{content:"\E404"}.glyphicons-sort-by-alphabet:before{content:"\E405"}.glyphicons-sort-by-alphabet-alt:before{content:"\E406"}.glyphicons-sort-by-order:before{content:"\E407"}.glyphicons-sort-by-order-alt:before{content:"\E408"}.glyphicons-sort-by-attributes:before{content:"\E409"}.glyphicons-sort-by-attributes-alt:before{content:"\E410"}.glyphicons-compressed:before{content:"\E411"}.glyphicons-package:before{content:"\E412"}.glyphicons-cloud-plus:before{content:"\E413"}.glyphicons-cloud-minus:before{content:"\E414"}.glyphicons-disk-save:before{content:"\E415"}.glyphicons-disk-open:before{content:"\E416"}.glyphicons-disk-saved:before{content:"\E417"}.glyphicons-disk-remove:before{content:"\E418"}.glyphicons-disk-import:before{content:"\E419"}.glyphicons-disk-export:before{content:"\E420"}.glyphicons-tower:before{content:"\E421"}.glyphicons-send:before{content:"\E422"}.glyphicons-git-branch:before{content:"\E423"}.glyphicons-git-create:before{content:"\E424"}.glyphicons-git-private:before{content:"\E425"}.glyphicons-git-delete:before{content:"\E426"}.glyphicons-git-merge:before{content:"\E427"}.glyphicons-git-pull-request:before{content:"\E428"}.glyphicons-git-compare:before{content:"\E429"}.glyphicons-git-commit:before{content:"\E430"}.glyphicons-construction-cone:before{content:"\E431"}.glyphicons-shoe-steps:before{content:"\E432"}.glyphicons-plus:before{content:"\E433"}.glyphicons-minus:before{content:"\E434"}.glyphicons-redo:before{content:"\E435"}.glyphicons-undo:before{content:"\E436"}.glyphicons-golf:before{content:"\E437"}.glyphicons-hockey:before{content:"\E438"}.glyphicons-pipe:before{content:"\E439"}.glyphicons-wrench:before{content:"\E440"}.glyphicons-folder-closed:before{content:"\E441"}.glyphicons-phone-alt:before{content:"\E442"}.glyphicons-earphone:before{content:"\E443"}.glyphicons-floppy-disk:before{content:"\E444"}.glyphicons-floppy-saved:before{content:"\E445"}.glyphicons-floppy-remove:before{content:"\E446"}.glyphicons-floppy-save:before{content:"\E447"}.glyphicons-floppy-open:before{content:"\E448"}.glyphicons-translate:before{content:"\E449"}.glyphicons-fax:before{content:"\E450"}.glyphicons-factory:before{content:"\E451"}.glyphicons-shop-window:before{content:"\E452"}.glyphicons-shop:before{content:"\E453"}.glyphicons-kiosk:before{content:"\E454"}.glyphicons-kiosk-wheels:before{content:"\E455"}.glyphicons-kiosk-light:before{content:"\E456"}.glyphicons-kiosk-food:before{content:"\E457"}.glyphicons-transfer:before{content:"\E458"}.glyphicons-money:before{content:"\E459"}.glyphicons-header:before{content:"\E460"}.glyphicons-blacksmith:before{content:"\E461"}.glyphicons-saw-blade:before{content:"\E462"}.glyphicons-basketball:before{content:"\E463"}.glyphicons-server:before{content:"\E464"}.glyphicons-server-plus:before{content:"\E465"}.glyphicons-server-minus:before{content:"\E466"}.glyphicons-server-ban:before{content:"\E467"}.glyphicons-server-flag:before{content:"\E468"}.glyphicons-server-lock:before{content:"\E469"}.glyphicons-server-new:before{content:"\E470"}.glyphicons-charging-station:before{content:"\E471"}.glyphicons-gas-station:before{content:"\E472"}.glyphicons-target:before{content:"\E473"}.glyphicons-bed:before{content:"\E474"}.glyphicons-mosquito:before{content:"\E475"}.glyphicons-dining-set:before{content:"\E476"}.glyphicons-plate-of-food:before{content:"\E477"}.glyphicons-hygiene-kit:before{content:"\E478"}.glyphicons-blackboard:before{content:"\E479"}.glyphicons-marriage:before{content:"\E480"}.glyphicons-bucket:before{content:"\E481"}.glyphicons-none-color-swatch:before{content:"\E482"}.glyphicons-bring-forward:before{content:"\E483"}.glyphicons-bring-to-front:before{content:"\E484"}.glyphicons-send-backward:before{content:"\E485"}.glyphicons-send-to-back:before{content:"\E486"}.glyphicons-fit-frame-to-image:before{content:"\E487"}.glyphicons-fit-image-to-frame:before{content:"\E488"}.glyphicons-multiple-displays:before{content:"\E489"}.glyphicons-handshake:before{content:"\E490"}.glyphicons-child:before{content:"\E491"}.glyphicons-baby-formula:before{content:"\E492"}.glyphicons-medicine:before{content:"\E493"}.glyphicons-atv-vehicle:before{content:"\E494"}.glyphicons-motorcycle:before{content:"\E495"}.glyphicons-bed-alt:before{content:"\E496"}.glyphicons-tent:before{content:"\E497"}.glyphicons-glasses:before{content:"\E498"}.glyphicons-sunglasses:before{content:"\E499"}.glyphicons-family:before{content:"\E500"}.glyphicons-education:before{content:"\E501"}.glyphicons-shoes:before{content:"\E502"}.glyphicons-map:before{content:"\E503"}.glyphicons-cd:before{content:"\E504"}.glyphicons-alert:before{content:"\E505"}.glyphicons-piggy-bank:before{content:"\E506"}.glyphicons-star-half:before{content:"\E507"}.glyphicons-cluster:before{content:"\E508"}.glyphicons-flowchart:before{content:"\E509"}.glyphicons-commodities:before{content:"\E510"}.glyphicons-duplicate:before{content:"\E511"}.glyphicons-copy:before{content:"\E512"}.glyphicons-paste:before{content:"\E513"}.glyphicons-bath-bathtub:before{content:"\E514"}.glyphicons-bath-shower:before{content:"\E515"}.glyphicons-shower:before{content:"\E516"}.glyphicons-menu-hamburger:before{content:"\E517"}.glyphicons-option-vertical:before{content:"\E518"}.glyphicons-option-horizontal:before{content:"\E519"}.glyphicons-currency-conversion:before{content:"\E520"}.glyphicons-user-ban:before{content:"\E521"}.glyphicons-user-lock:before{content:"\E522"}.glyphicons-user-flag:before{content:"\E523"}.glyphicons-user-asterisk:before{content:"\E524"}.glyphicons-user-alert:before{content:"\E525"}.glyphicons-user-key:before{content:"\E526"}.glyphicons-user-conversation:before{content:"\E527"}.glyphicons-database:before{content:"\E528"}.glyphicons-database-search:before{content:"\E529"}.glyphicons-list-alt:before{content:"\E530"}.glyphicons-hazard-sign:before{content:"\E531"}.glyphicons-hazard:before{content:"\E532"}.glyphicons-stop-sign:before{content:"\E533"}.glyphicons-lab:before{content:"\E534"}.glyphicons-lab-alt:before{content:"\E535"}.glyphicons-ice-cream:before{content:"\E536"}.glyphicons-ice-lolly:before{content:"\E537"}.glyphicons-ice-lolly-tasted:before{content:"\E538"}.glyphicons-invoice:before{content:"\E539"}.glyphicons-cart-tick:before{content:"\E540"}.glyphicons-hourglass:before{content:"\E541"}.glyphicons-cat:before{content:"\E542"}.glyphicons-lamp:before{content:"\E543"}.glyphicons-scale-classic:before{content:"\E544"}.glyphicons-eye-plus:before{content:"\E545"}.glyphicons-eye-minus:before{content:"\E546"}.glyphicons-quote:before{content:"\E547"}.glyphicons-bitcoin:before{content:"\E548"}.glyphicons-yen:before{content:"\E549"}.glyphicons-ruble:before{content:"\E550"}.glyphicons-erase:before{content:"\E551"}.glyphicons-podcast:before{content:"\E552"}.glyphicons-firework:before{content:"\E553"}.glyphicons-scale:before{content:"\E554"}.glyphicons-king:before{content:"\E555"}.glyphicons-queen:before{content:"\E556"}.glyphicons-pawn:before{content:"\E557"}.glyphicons-bishop:before{content:"\E558"}.glyphicons-knight:before{content:"\E559"}.glyphicons-mic-mute:before{content:"\E560"}.glyphicons-voicemail:before{content:"\E561"}.glyphicons-paragraph-alt:before{content:"\E562"}.glyphicons-person-walking:before{content:"\E563"}.glyphicons-person-wheelchair:before{content:"\E564"}.glyphicons-underground:before{content:"\E565"}.glyphicons-car-hov:before{content:"\E566"}.glyphicons-car-rental:before{content:"\E567"}.glyphicons-transport:before{content:"\E568"}.glyphicons-taxi:before{content:"\E569"}.glyphicons-ice-cream-no:before{content:"\E570"}.glyphicons-uk-rat-u:before{content:"\E571"}.glyphicons-uk-rat-pg:before{content:"\E572"}.glyphicons-uk-rat-12a:before{content:"\E573"}.glyphicons-uk-rat-12:before{content:"\E574"}.glyphicons-uk-rat-15:before{content:"\E575"}.glyphicons-uk-rat-18:before{content:"\E576"}.glyphicons-uk-rat-r18:before{content:"\E577"}.glyphicons-tv:before{content:"\E578"}.glyphicons-sms:before{content:"\E579"}.glyphicons-mms:before{content:"\E580"}.glyphicons-us-rat-g:before{content:"\E581"}.glyphicons-us-rat-pg:before{content:"\E582"}.glyphicons-us-rat-pg-13:before{content:"\E583"}.glyphicons-us-rat-restricted:before{content:"\E584"}.glyphicons-us-rat-no-one-17:before{content:"\E585"}.glyphicons-equalizer:before{content:"\E586"}.glyphicons-speakers:before{content:"\E587"}.glyphicons-remote-control:before{content:"\E588"}.glyphicons-remote-control-tv:before{content:"\E589"}.glyphicons-shredder:before{content:"\E590"}.glyphicons-folder-heart:before{content:"\E591"}.glyphicons-person-running:before{content:"\E592"}.glyphicons-person:before{content:"\E593"}.glyphicons-voice:before{content:"\E594"}.glyphicons-stethoscope:before{content:"\E595"}.glyphicons-paired:before{content:"\E596"}.glyphicons-activity:before{content:"\E597"}.glyphicons-watch:before{content:"\E598"}.glyphicons-scissors-alt:before{content:"\E599"}.glyphicons-car-wheel:before{content:"\E600"}.glyphicons-chevron-up:before{content:"\E601"}.glyphicons-chevron-down:before{content:"\E602"}.glyphicons-superscript:before{content:"\E603"}.glyphicons-subscript:before{content:"\E604"}.glyphicons-text-size:before{content:"\E605"}.glyphicons-text-color:before{content:"\E606"}.glyphicons-text-background:before{content:"\E607"}.glyphicons-modal-window:before{content:"\E608"}.glyphicons-newspaper:before{content:"\E609"}.glyphicons-tractor:before{content:"\E610"}.glyphicons-camping:before{content:"\E611"}.glyphicons-camping-benches:before{content:"\E612"}.glyphicons-forest:before{content:"\E613"}.glyphicons-park:before{content:"\E614"}.glyphicons-field:before{content:"\E615"}.glyphicons-mountains:before{content:"\E616"}.glyphicons-fees-payments:before{content:"\E617"}.glyphicons-small-payments:before{content:"\E618"}.glyphicons-mixed-buildings:before{content:"\E619"}.glyphicons-industrial-zone:before{content:"\E620"}.glyphicons-visitor-tag:before{content:"\E621"}.glyphicons-businessman:before{content:"\E622"}.glyphicons-meditation:before{content:"\E623"}.glyphicons-bath:before{content:"\E624"}.glyphicons-donate:before{content:"\E625"}.glyphicons-sauna:before{content:"\E626"}.glyphicons-bedroom-nightstand:before{content:"\E627"}.glyphicons-bedroom-lamp:before{content:"\E628"}.glyphicons-doctor:before{content:"\E629"}.glyphicons-engineering-networks:before{content:"\E630"}.glyphicons-washing-machine:before{content:"\E631"}.glyphicons-dryer:before{content:"\E632"}.glyphicons-dishwasher:before{content:"\E633"}.glyphicons-luggage-group:before{content:"\E634"}.glyphicons-teenager:before{content:"\E635"}.glyphicons-person-stick:before{content:"\E636"}.glyphicons-person-stick-old:before{content:"\E637"}.glyphicons-traveler:before{content:"\E638"}.glyphicons-veteran:before{content:"\E639"}.glyphicons-group-chat:before{content:"\E640"}.glyphicons-elections:before{content:"\E641"}.glyphicons-law-justice:before{content:"\E642"}.glyphicons-judiciary:before{content:"\E643"}.glyphicons-house-fire:before{content:"\E644"}.glyphicons-firefighters:before{content:"\E645"}.glyphicons-police:before{content:"\E646"}.glyphicons-ambulance:before{content:"\E647"}.glyphicons-light-beacon:before{content:"\E648"}.glyphicons-important-day:before{content:"\E649"}.glyphicons-bike-park:before{content:"\E650"}.glyphicons-object-align-top:before{content:"\E651"}.glyphicons-object-align-bottom:before{content:"\E652"}.glyphicons-object-align-horizontal:before{content:"\E653"}.glyphicons-object-align-left:before{content:"\E654"}.glyphicons-object-align-vertical:before{content:"\E655"}.glyphicons-object-align-right:before{content:"\E656"}.glyphicons-reflect-y:before{content:"\E657"}.glyphicons-reflect-x:before{content:"\E658"}.glyphicons-tick:before{content:"\E659"}.glyphicons-lawnmower:before{content:"\E660"}.glyphicons-call-redirect:before{content:"\E661"}.glyphicons-call-ip:before{content:"\E662"}.glyphicons-call-record:before{content:"\E663"}.glyphicons-call-ringtone:before{content:"\E664"}.glyphicons-call-traffic:before{content:"\E665"}.glyphicons-call-hold:before{content:"\E666"}.glyphicons-call-incoming:before{content:"\E667"}.glyphicons-call-outgoing:before{content:"\E668"}.glyphicons-call-video:before{content:"\E669"}.glyphicons-call-missed:before{content:"\E670"}.glyphicons-theater:before{content:"\E671"}.glyphicons-heartbeat:before{content:"\E672"}.glyphicons-kettlebell:before{content:"\E673"}.glyphicons-fireplace:before{content:"\E674"}.glyphicons-street-lights:before{content:"\E675"}.glyphicons-pedestrian:before{content:"\E676"}.glyphicons-flood:before{content:"\E677"}.glyphicons-open-water:before{content:"\E678"}.glyphicons-for-sale:before{content:"\E679"}.glyphicons-dustbin:before{content:"\E680"}.glyphicons-door:before{content:"\E681"}.glyphicons-camp-fire:before{content:"\E682"}.glyphicons-fleur-de-lis:before{content:"\E683"}.glyphicons-temperature-settings:before{content:"\E684"}.glyphicons-article:before{content:"\E685"}.glyphicons-sunbath:before{content:"\E686"}.glyphicons-balanced-diet:before{content:"\E687"}.glyphicons-ticket:before{content:"\E688"}.glyphicons-parking-ticket:before{content:"\E689"}.glyphicons-parking-meter:before{content:"\E690"}.glyphicons-laptop:before{content:"\E691"}.glyphicons-tree-structure:before{content:"\E692"}.glyphicons-weather-warning:before{content:"\E693"}.glyphicons-temperature-low:before{content:"\E694"}.glyphicons-temperature-high:before{content:"\E695"}.glyphicons-temperature-low-warning:before{content:"\E696"}.glyphicons-temperature-high-warning:before{content:"\E697"}.glyphicons-hurricane:before{content:"\E698"}.glyphicons-storm:before{content:"\E699"}.glyphicons-sorted-waste:before{content:"\E700"}.glyphicons-ear:before{content:"\E701"}.glyphicons-ear-deaf:before{content:"\E702"}.glyphicons-file-plus:before{content:"\E703"}.glyphicons-file-minus:before{content:"\E704"}.glyphicons-file-lock:before{content:"\E705"}.glyphicons-file-cloud:before{content:"\E706"}.glyphicons-file-cloud-download:before{content:"\E707"}.glyphicons-file-cloud-upload:before{content:"\E708"}.glyphicons-paragraph:before{content:"\E709"}.glyphicons-list-numbered:before{content:"\E710"}.glyphicons-donate-heart:before{content:"\E711"}.glyphicons-government:before{content:"\E712"}.glyphicons-maze:before{content:"\E713"}.glyphicons-chronicle:before{content:"\E714"}.glyphicons-user-structure:before{content:"\E715"}.glyphicons-recycle:before{content:"\E716"}.glyphicons-gas:before{content:"\E717"}.glyphicons-waste-pipe:before{content:"\E718"}.glyphicons-water-pipe:before{content:"\E719"}.glyphicons-parking:before{content:"\E720"}.glyphicons-closed:before{content:"\E721"}.glyphicons-mouse:before{content:"\E722"}.glyphicons-mouse-double-click:before{content:"\E723"}.glyphicons-mouse-left-click:before{content:"\E724"}.glyphicons-mouse-right-click:before{content:"\E725"}.glyphicons-mouse-middle-click:before{content:"\E726"}.glyphicons-mouse-scroll:before{content:"\E727"}.glyphicons-resize-vertical:before{content:"\E728"}.glyphicons-resize-horizontal:before{content:"\E729"}.glyphicons-temperature:before{content:"\E730"}.glyphicons-puzzle:before{content:"\E731"}.glyphicons-puzzle-2:before{content:"\E732"}.glyphicons-puzzle-3:before{content:"\E733"}.glyphicons-nearby-square:before{content:"\E734"}.glyphicons-nearby-circle:before{content:"\E735"}.glyphicons-rotate-right:before{content:"\E736"}.glyphicons-rotate-left:before{content:"\E737"}.glyphicons-pictures:before{content:"\E738"}.glyphicons-photo-album:before{content:"\E739"}.glyphicons-cadastral-map:before{content:"\E740"}.glyphicons-fingerprint-scan:before{content:"\E741"}.glyphicons-fingerprint:before{content:"\E742"}.glyphicons-fingerprint-lock:before{content:"\E743"}.glyphicons-fingerprint-ok:before{content:"\E744"}.glyphicons-fingerprint-remove:before{content:"\E745"}.glyphicons-fingerprint-reload:before{content:"\E746"}.glyphicons-pending-notifications:before{content:"\E747"}.glyphicons-synchronization:before{content:"\E748"}.glyphicons-synchronization-ban:before{content:"\E749"}.glyphicons-hash:before{content:"\E750"}.glyphicons-gender-male:before{content:"\E751"}.glyphicons-gender-female:before{content:"\E752"}.glyphicons-gender-virgin-female:before{content:"\E753"}.glyphicons-gender-intersex:before{content:"\E754"}.glyphicons-gender-transgender:before{content:"\E755"}.glyphicons-gender-ori-lesbian:before{content:"\E756"}.glyphicons-gender-ori-gay:before{content:"\E757"}.glyphicons-gender-ori-hetero:before{content:"\E758"}.glyphicons-gender-other:before{content:"\E759"}.glyphicons-gender-unknown:before{content:"\E760"}.glyphicons-scanner:before{content:"\E761"}.glyphicons-multifunction-printer:before{content:"\E762"}.glyphicons-lasso:before{content:"\E763"}.glyphicons-view-360:before{content:"\E764"}.glyphicons-battery-charging:before{content:"\E765"}.glyphicons-battery-full:before{content:"\E766"}.glyphicons-battery-75:before{content:"\E767"}.glyphicons-battery-50:before{content:"\E768"}.glyphicons-battery-25:before{content:"\E769"}.glyphicons-battery-10:before{content:"\E770"}.glyphicons-satellite:before{content:"\E771"}.glyphicons-satellite-dish:before{content:"\E772"}.glyphicons-satellite-dish-alt:before{content:"\E773"}.glyphicons-auction:before{content:"\E774"}.glyphicons-directions:before{content:"\E775"}.glyphicons-race:before{content:"\E776"}.glyphicons-robot:before{content:"\E777"}.glyphicons-ruler-alt:before{content:"\E778"}.glyphicons-cube-empty:before{content:"\E779"}.glyphicons-cube-black:before{content:"\E780"}.glyphicons-move-square:before{content:"\E781"}.glyphicons-drop:before{content:"\E782"}.glyphicons-vr-headset:before{content:"\E783"}.glyphicons-vr-charging:before{content:"\E784"}.glyphicons-vr-low-battery:before{content:"\E785"}.glyphicons-vr-paired:before{content:"\E786"}.glyphicons-vr-settings:before{content:"\E787"}.glyphicons-vr-maintenance:before{content:"\E788"}.glyphicons-filter-remove:before{content:"\E789"}.glyphicons-filter-applied:before{content:"\E790"}.glyphicons-one-day:before{content:"\E791"}.glyphicons-user-vr:before{content:"\E792"}.glyphicons-user-vr-add:before{content:"\E793"}.glyphicons-user-vr-remove:before{content:"\E794"}.glyphicons-dice-1:before{content:"\E795"}.glyphicons-dice-2:before{content:"\E796"}.glyphicons-dice-3:before{content:"\E797"}.glyphicons-dice-4:before{content:"\E798"}.glyphicons-dice-5:before{content:"\E799"}.glyphicons-dice-6:before{content:"\E800"}
/**
 * selectize.bootstrap3.css (v0.12.4) - Bootstrap 3 Theme
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  -webkit-box-shadow: inset 0 0 12px 4px #fff;
  box-shadow: inset 0 0 12px 4px #fff;
}
.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
  content: '!';
  visibility: hidden;
}
.selectize-control.plugin-drag_drop .ui-sortable-helper {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.selectize-dropdown-header {
  position: relative;
  padding: 3px 12px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.selectize-dropdown-header-close {
  position: absolute;
  right: 12px;
  top: 50%;
  color: #333333;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}
.selectize-dropdown-header-close:hover {
  color: #000000;
}
.selectize-control.plugin-loading_spinner .selectize-input .spinner-container {
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -6px;
}
.selectize-control.plugin-loading_spinner .selectize-input .spinner-container .sk-fading-circle {
  width: 12px;
  height: 12px;
}
.selectize-control.plugin-loading_spinner.loading .selectize-input:after {
  border: none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}
.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}
.selectize-control.plugin-remove_button [data-value] {
  position: relative;
  padding-right: 24px !important;
}
.selectize-control.plugin-remove_button [data-value] .remove {
  z-index: 1;
  /* fixes ie bug (see #392) */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 1px 0 0 0;
  border-left: 1px solid rgba(0, 0, 0, 0);
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.selectize-control.plugin-remove_button [data-value] .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}
.selectize-control.plugin-remove_button [data-value].active .remove {
  border-left-color: rgba(0, 0, 0, 0);
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
  background: none;
}
.selectize-control.plugin-remove_button .disabled [data-value] .remove {
  border-left-color: rgba(77, 77, 77, 0);
}
.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 28px;
  top: 6px;
  font-size: 23px;
}
.selectize-control {
  position: relative;
}
.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #333333;
  font-family: inherit;
  font-size: inherit;
  line-height: 20px;
  -webkit-font-smoothing: inherit;
}
.selectize-input,
.selectize-control.single .selectize-input.input-active {
  background: #fff;
  cursor: text;
  display: inline-block;
}
.selectize-input {
  border: 1px solid #e1e2f0;
  padding: 6px 12px;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.selectize-control.multi .selectize-input.has-items {
  padding: 5px 12px 2px;
}
.selectize-input.full {
  background-color: #fff;
}
.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important;
}
.selectize-input.focus {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}
.selectize-input.dropdown-active {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}
.selectize-input > * {
  vertical-align: baseline;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.selectize-control.multi .selectize-input > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 1px 3px;
  background: #efefef;
  color: #333333;
  border: 0 solid rgba(0, 0, 0, 0);
}
.selectize-control.multi .selectize-input > div.active {
  background: #428bca;
  color: #fff;
  border: 0 solid rgba(0, 0, 0, 0);
}
.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
  color: #808080;
  background: #ffffff;
  border: 0 solid rgba(77, 77, 77, 0);
}
.selectize-input > input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.selectize-input > input::-ms-clear {
  display: none;
}
.selectize-input > input:focus {
  outline: none !important;
}
.selectize-input::after {
  content: ' ';
  display: block;
  clear: left;
}
.selectize-input.dropdown-active::before {
  content: ' ';
  display: block;
  position: absolute;
  background: #ffffff;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
}
.selectize-dropdown {
  position: absolute;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: -1px 0 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}
.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}
.selectize-dropdown [data-selectable] .highlight {
  background: rgba(255, 237, 40, 0.4);
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.selectize-dropdown [data-selectable],
.selectize-dropdown .optgroup-header {
  padding: 3px 12px;
}
.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}
.selectize-dropdown .optgroup-header {
  color: #777777;
  background: #fff;
  cursor: default;
}
.selectize-dropdown .active {
  background-color: #f5f5f5;
  color: #262626;
}
.selectize-dropdown .active.create {
  color: #262626;
}
.selectize-dropdown .create {
  color: rgba(51, 51, 51, 0.5);
}
.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  -webkit-overflow-scrolling: touch;
}
.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer;
}
.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text;
}
.selectize-control.single .selectize-input:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 50%;
  right: 17px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #333333 transparent transparent transparent;
}
.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #333333 transparent;
}
.selectize-control.rtl.single .selectize-input:after {
  left: 17px;
  right: auto;
}
.selectize-control.rtl .selectize-input > input {
  margin: 0 4px 0 -2px !important;
}
.selectize-control .selectize-input.disabled {
  opacity: 0.5;
  background-color: #fff;
}
.selectize-dropdown,
.selectize-dropdown.form-control {
  height: auto;
  padding: 0;
  margin: 2px 0 0 0;
  z-index: 1000;
  background: #fff;
  border: 1px solid #e1e2f0;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.selectize-dropdown .optgroup-header {
  font-size: 12px;
  line-height: 1.42857143;
}
.selectize-dropdown .optgroup:first-child:before {
  display: none;
}
.selectize-dropdown .optgroup:before {
  content: ' ';
  display: block;
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
  margin-left: -12px;
  margin-right: -12px;
}
.selectize-dropdown-content {
  padding: 5px 0;
}
.selectize-dropdown-header {
  padding: 6px 12px;
}
.selectize-input {
  min-height: 34px;
}
.selectize-input.dropdown-active {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.selectize-input.dropdown-active::before {
  display: none;
}
.selectize-input.focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.has-error .selectize-input {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .selectize-input:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.selectize-control.multi .selectize-input.has-items {
  padding-left: 9px;
  padding-right: 9px;
}
.selectize-control.multi .selectize-input > div {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.form-control.selectize-control {
  padding: 0;
  height: auto;
  border: none;
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

@charset "UTF-8";
/*
 * Colors
 */
/*
 * Breakpoints
 */
/*
 * Bootstrap
 */
/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #00054d;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #ffffff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #00054d;
  --secondary: #F2F7FA;
  --success: #33CC66;
  --info: #17a2b8;
  --warning: #00054d;
  --danger: #CC3333;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 3, 51, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #00080F;
  text-align: left;
  background-color: #f9f9fc;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #00054d;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #00A2EA;
  text-decoration: none;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 1rem;
  font-family: sofia-pro, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.25rem;
}

h2, .h2 {
  font-size: 1.5rem;
}

h3, .h3 {
  font-size: 1.25rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 3, 51, 0.1);
}

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #f9f9fc;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #ffffff;
  background-color: #212529;
  border-radius: 0.5rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #00080F;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #bcbed4;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #bcbed4;
}

.table tbody + tbody {
  border-top: 2px solid #bcbed4;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #bcbed4;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #bcbed4;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 3, 51, 0.05);
}

.table-hover tbody tr:hover {
  color: #00080F;
  background-color: rgba(0, 3, 51, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8b9cd;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7a7da2;
}

.table-hover .table-primary:hover {
  background-color: #a9aac2;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #a9aac2;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #fbfdfe;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #f8fbfc;
}

.table-hover .table-secondary:hover {
  background-color: #e7f3f9;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #e7f3f9;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c6f1d4;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #95e4af;
}

.table-hover .table-success:hover {
  background-color: #b2ecc5;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b2ecc5;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #b8b9cd;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #7a7da2;
}

.table-hover .table-warning:hover {
  background-color: #a9aac2;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #a9aac2;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f1c6c6;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #e49595;
}

.table-hover .table-danger:hover {
  background-color: #ecb2b2;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #ecb2b2;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 3, 51, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 2, 26, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 2, 26, 0.075);
}

.table .thead-dark th {
  color: #ffffff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #bcbed4;
}

.table-dark {
  color: #ffffff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #bcbed4;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #000dcd;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 5, 77, 0.25);
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #00080F;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.5rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.5rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #33CC66;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: rgba(51, 204, 102, 0.9);
  border-radius: 0.5rem;
}

.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #33CC66;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2333CC66' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #33CC66;
  box-shadow: 0 0 0 0.2rem rgba(51, 204, 102, 0.25);
}

.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #33CC66;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2333CC66' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #33CC66;
  box-shadow: 0 0 0 0.2rem rgba(51, 204, 102, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #33CC66;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #33CC66;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #33CC66;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #5cd685;
  background-color: #5cd685;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(51, 204, 102, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #33CC66;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #33CC66;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #33CC66;
  box-shadow: 0 0 0 0.2rem rgba(51, 204, 102, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #CC3333;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: rgba(204, 51, 51, 0.9);
  border-radius: 0.5rem;
}

.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #CC3333;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23CC3333' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23CC3333' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #CC3333;
  box-shadow: 0 0 0 0.2rem rgba(204, 51, 51, 0.25);
}

.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #CC3333;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23CC3333' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23CC3333' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #CC3333;
  box-shadow: 0 0 0 0.2rem rgba(204, 51, 51, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #CC3333;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #CC3333;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #CC3333;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #d65c5c;
  background-color: #d65c5c;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(204, 51, 51, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #CC3333;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #CC3333;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #CC3333;
  box-shadow: 0 0 0 0.2rem rgba(204, 51, 51, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}
.btn {
  display: inline-block;
  font-weight: 400;
  color: #00080F;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.5rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #00080F;
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 5, 77, 0.25);
}

.btn.disabled, .btn:disabled {
  opacity: 0.3;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #ffffff;
  background-color: #00054d;
  border-color: #00054d;
}

.btn-primary:hover {
  color: #ffffff;
  background-color: #000327;
  border-color: #00021a;
}

.btn-primary:focus, .btn-primary.focus {
  color: #ffffff;
  background-color: #000327;
  border-color: #00021a;
  box-shadow: 0 0 0 0.2rem rgba(38, 43, 104, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #ffffff;
  background-color: #00054d;
  border-color: #00054d;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #00021a;
  border-color: #00010d;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 43, 104, 0.5);
}

.btn-secondary {
  color: #212529;
  background-color: #F2F7FA;
  border-color: #F2F7FA;
}

.btn-secondary:hover {
  color: #212529;
  background-color: #d6e6ef;
  border-color: #cde0ec;
}

.btn-secondary:focus, .btn-secondary.focus {
  color: #212529;
  background-color: #d6e6ef;
  border-color: #cde0ec;
  box-shadow: 0 0 0 0.2rem rgba(211, 216, 219, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #212529;
  background-color: #F2F7FA;
  border-color: #F2F7FA;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #212529;
  background-color: #cde0ec;
  border-color: #c4dbe8;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(211, 216, 219, 0.5);
}

.btn-success {
  color: #ffffff;
  background-color: #33CC66;
  border-color: #33CC66;
}

.btn-success:hover {
  color: #ffffff;
  background-color: #2bad57;
  border-color: #29a352;
}

.btn-success:focus, .btn-success.focus {
  color: #ffffff;
  background-color: #2bad57;
  border-color: #29a352;
  box-shadow: 0 0 0 0.2rem rgba(82, 212, 125, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
  color: #ffffff;
  background-color: #33CC66;
  border-color: #33CC66;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #ffffff;
  background-color: #29a352;
  border-color: #26994d;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 212, 125, 0.5);
}

.btn-info {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #ffffff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
  color: #ffffff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #ffffff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #ffffff;
  background-color: #00054d;
  border-color: #00054d;
}

.btn-warning:hover {
  color: #ffffff;
  background-color: #000327;
  border-color: #00021a;
}

.btn-warning:focus, .btn-warning.focus {
  color: #ffffff;
  background-color: #000327;
  border-color: #00021a;
  box-shadow: 0 0 0 0.2rem rgba(38, 43, 104, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #ffffff;
  background-color: #00054d;
  border-color: #00054d;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #ffffff;
  background-color: #00021a;
  border-color: #00010d;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 43, 104, 0.5);
}

.btn-danger {
  color: #ffffff;
  background-color: #CC3333;
  border-color: #CC3333;
}

.btn-danger:hover {
  color: #ffffff;
  background-color: #ad2b2b;
  border-color: #a32929;
}

.btn-danger:focus, .btn-danger.focus {
  color: #ffffff;
  background-color: #ad2b2b;
  border-color: #a32929;
  box-shadow: 0 0 0 0.2rem rgba(212, 82, 82, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #ffffff;
  background-color: #CC3333;
  border-color: #CC3333;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #a32929;
  border-color: #992626;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(212, 82, 82, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #ffffff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
  color: #ffffff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #00054d;
  border-color: #00054d;
}

.btn-outline-primary:hover {
  color: #ffffff;
  background-color: #00054d;
  border-color: #00054d;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 5, 77, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #00054d;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #ffffff;
  background-color: #00054d;
  border-color: #00054d;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 5, 77, 0.5);
}

.btn-outline-secondary {
  color: #F2F7FA;
  border-color: #F2F7FA;
}

.btn-outline-secondary:hover {
  color: #212529;
  background-color: #F2F7FA;
  border-color: #F2F7FA;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(242, 247, 250, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #F2F7FA;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #212529;
  background-color: #F2F7FA;
  border-color: #F2F7FA;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(242, 247, 250, 0.5);
}

.btn-outline-success {
  color: #33CC66;
  border-color: #33CC66;
}

.btn-outline-success:hover {
  color: #ffffff;
  background-color: #33CC66;
  border-color: #33CC66;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 204, 102, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #33CC66;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #ffffff;
  background-color: #33CC66;
  border-color: #33CC66;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 204, 102, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #00054d;
  border-color: #00054d;
}

.btn-outline-warning:hover {
  color: #ffffff;
  background-color: #00054d;
  border-color: #00054d;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 5, 77, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #00054d;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #ffffff;
  background-color: #00054d;
  border-color: #00054d;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 5, 77, 0.5);
}

.btn-outline-danger {
  color: #CC3333;
  border-color: #CC3333;
}

.btn-outline-danger:hover {
  color: #ffffff;
  background-color: #CC3333;
  border-color: #CC3333;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 51, 51, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #CC3333;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #ffffff;
  background-color: #CC3333;
  border-color: #CC3333;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(204, 51, 51, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #00054d;
  text-decoration: none;
}

.btn-link:hover {
  color: #00A2EA;
  text-decoration: none;
}

.btn-link:focus, .btn-link.focus {
  text-decoration: none;
}

.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.5rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.5rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.width {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    transition: none;
  }
}
.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #00080F;
  text-align: left;
  list-style: none;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 3, 51, 0.15);
  border-radius: 0.5rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #00054d;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #00054d;
  text-decoration: none;
  background-color: rgba(0, 5, 77, 0.1);
}

.dropdown-item.active, .dropdown-item:active {
  color: #ffffff;
  text-decoration: none;
  background-color: #00054d;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #00054d;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}

.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}

.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: flex;
  align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group.has-validation > .form-control:nth-last-child(n+3),
.input-group.has-validation > .custom-select:nth-last-child(n+3),
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #bcbed4;
  border-radius: 0.5rem;
}

.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.5rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.5rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  print-color-adjust: exact;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #ffffff;
  border-color: #00054d;
  background-color: #00054d;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 5, 77, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #000dcd;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #ffffff;
  background-color: #0111ff;
  border-color: #0111ff;
}

.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #adb5bd;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.5rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23ffffff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #00054d;
  background-color: #00054d;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23ffffff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 5, 77, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 5, 77, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 5, 77, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 5, 77, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #bcbed4;
  border-radius: 0.5rem;
  appearance: none;
}

.custom-select:focus {
  border-color: #000dcd;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 5, 77, 0.25);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #000dcd;
  box-shadow: 0 0 0 0.2rem rgba(0, 5, 77, 0.25);
}

.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #bcbed4;
  border-radius: 0.5rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.5rem 0.5rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}

.custom-range:focus {
  outline: 0;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #f9f9fc, 0 0 0 0.2rem rgba(0, 5, 77, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #f9f9fc, 0 0 0 0.2rem rgba(0, 5, 77, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #f9f9fc, 0 0 0 0.2rem rgba(0, 5, 77, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #00054d;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #0111ff;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #00054d;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #0111ff;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #00054d;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #0111ff;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #f9f9fc;
  border-color: #dee2e6 #dee2e6 #f9f9fc;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.5rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #00054d;
  background-color: rgba(0, 5, 77, 0.05);
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.5rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  flex-wrap: nowrap;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 3, 51, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 3, 51, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 3, 51, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 3, 51, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 3, 51, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 3, 51, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 3, 51, 0.5);
  border-color: rgba(0, 3, 51, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 3, 51, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 3, 51, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 3, 51, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 3, 51, 0.9);
}

.navbar-dark .navbar-brand {
  color: #ffffff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #ffffff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #ffffff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 1px solid rgba(0, 5, 77, 0.1);
  border-radius: 0.5rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.5rem - 1px);
  border-bottom-left-radius: calc(0.5rem - 1px);
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.75rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 3, 51, 0.03);
  border-bottom: 1px solid rgba(0, 5, 77, 0.1);
}

.card-header:first-child {
  border-radius: calc(0.5rem - 1px) calc(0.5rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1rem;
  background-color: rgba(0, 3, 51, 0.03);
  border-top: 1px solid rgba(0, 5, 77, 0.1);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.5rem - 1px) calc(0.5rem - 1px);
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.75rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.5rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.5rem - 1px);
  border-bottom-left-radius: calc(0.5rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}
.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
.accordion {
  overflow-anchor: none;
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.5rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #00054d;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #00A2EA;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 5, 77, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.page-item.active .page-link {
  z-index: 3;
  color: #ffffff;
  background-color: #00054d;
  border-color: #00054d;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #ffffff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.5rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #ffffff;
  background-color: #00054d;
}

a.badge-primary:hover, a.badge-primary:focus {
  color: #ffffff;
  background-color: #00021a;
}

a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 5, 77, 0.5);
}

.badge-secondary {
  color: #212529;
  background-color: #F2F7FA;
}

a.badge-secondary:hover, a.badge-secondary:focus {
  color: #212529;
  background-color: #cde0ec;
}

a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(242, 247, 250, 0.5);
}

.badge-success {
  color: #ffffff;
  background-color: #33CC66;
}

a.badge-success:hover, a.badge-success:focus {
  color: #ffffff;
  background-color: #29a352;
}

a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(51, 204, 102, 0.5);
}

.badge-info {
  color: #ffffff;
  background-color: #17a2b8;
}

a.badge-info:hover, a.badge-info:focus {
  color: #ffffff;
  background-color: #117a8b;
}

a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #ffffff;
  background-color: #00054d;
}

a.badge-warning:hover, a.badge-warning:focus {
  color: #ffffff;
  background-color: #00021a;
}

a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 5, 77, 0.5);
}

.badge-danger {
  color: #ffffff;
  background-color: #CC3333;
}

a.badge-danger:hover, a.badge-danger:focus {
  color: #ffffff;
  background-color: #a32929;
}

a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(204, 51, 51, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}

a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #ffffff;
  background-color: #343a40;
}

a.badge-dark:hover, a.badge-dark:focus {
  color: #ffffff;
  background-color: #1d2124;
}

a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.5rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #000441;
  background-color: #cccddb;
  border-color: #b8b9cd;
}

.alert-primary hr {
  border-top-color: #a9aac2;
}

.alert-primary .alert-link {
  color: #00010e;
}

.alert-secondary {
  color: #7e829a;
  background-color: #fcfdfe;
  border-color: #fbfdfe;
}

.alert-secondary hr {
  border-top-color: #e7f3f9;
}

.alert-secondary .alert-link {
  color: #656980;
}

.alert-success {
  color: #1b6c4e;
  background-color: #d6f5e0;
  border-color: #c6f1d4;
}

.alert-success hr {
  border-top-color: #b2ecc5;
}

.alert-success .alert-link {
  color: #114331;
}

.alert-info {
  color: #0c5678;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #07354a;
}

.alert-warning {
  color: #000441;
  background-color: #cccddb;
  border-color: #b8b9cd;
}

.alert-warning hr {
  border-top-color: #a9aac2;
}

.alert-warning .alert-link {
  color: #00010e;
}

.alert-danger {
  color: #6a1c33;
  background-color: #f5d6d6;
  border-color: #f1c6c6;
}

.alert-danger hr {
  border-top-color: #ecb2b2;
}

.alert-danger .alert-link {
  color: #421120;
}

.alert-light {
  color: #81839a;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #676981;
}

.alert-dark {
  color: #1b203a;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #0b0d17;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.5rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  background-color: #00054d;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}
.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.5rem;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #00080F;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #ffffff;
  border: 1px solid rgba(0, 3, 51, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #ffffff;
}

.list-group-item.active {
  z-index: 2;
  color: #ffffff;
  background-color: #00054d;
  border-color: #00054d;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #000441;
  background-color: #b8b9cd;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #000441;
  background-color: #a9aac2;
}

.list-group-item-primary.list-group-item-action.active {
  color: #ffffff;
  background-color: #000441;
  border-color: #000441;
}

.list-group-item-secondary {
  color: #7e829a;
  background-color: #fbfdfe;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #7e829a;
  background-color: #e7f3f9;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #ffffff;
  background-color: #7e829a;
  border-color: #7e829a;
}

.list-group-item-success {
  color: #1b6c4e;
  background-color: #c6f1d4;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #1b6c4e;
  background-color: #b2ecc5;
}

.list-group-item-success.list-group-item-action.active {
  color: #ffffff;
  background-color: #1b6c4e;
  border-color: #1b6c4e;
}

.list-group-item-info {
  color: #0c5678;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5678;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #ffffff;
  background-color: #0c5678;
  border-color: #0c5678;
}

.list-group-item-warning {
  color: #000441;
  background-color: #b8b9cd;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #000441;
  background-color: #a9aac2;
}

.list-group-item-warning.list-group-item-action.active {
  color: #ffffff;
  background-color: #000441;
  border-color: #000441;
}

.list-group-item-danger {
  color: #6a1c33;
  background-color: #f1c6c6;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #6a1c33;
  background-color: #ecb2b2;
}

.list-group-item-danger.list-group-item-action.active {
  color: #ffffff;
  background-color: #6a1c33;
  border-color: #6a1c33;
}

.list-group-item-light {
  color: #81839a;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #81839a;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #ffffff;
  background-color: #81839a;
  border-color: #81839a;
}

.list-group-item-dark {
  color: #1b203a;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b203a;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #ffffff;
  background-color: #1b203a;
  border-color: #1b203a;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000333;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.5;
}

.close:hover {
  color: #000333;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 3, 51, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}

.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast.showing {
  opacity: 1;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 3, 51, 0.2);
  border-radius: 0.5rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000333;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #bcbed4;
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #bcbed4;
  border-bottom-right-radius: calc(0.5rem - 1px);
  border-bottom-left-radius: calc(0.5rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000333;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000333;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000333;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000333;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #ffffff;
  text-align: center;
  background-color: #000333;
  border-radius: 0.5rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 3, 51, 0.2);
  border-radius: 0.5rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.5rem;
}

.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}

.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 3, 51, 0.25);
}

.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #ffffff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}

.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.5rem 0;
}

.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 3, 51, 0.25);
}

.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #ffffff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}

.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}

.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 3, 51, 0.25);
}

.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #ffffff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}

.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.5rem 0;
}

.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 3, 51, 0.25);
}

.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #ffffff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #00080F;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #ffffff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50%/100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #ffffff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentcolor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #00054d !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #00021a !important;
}

.bg-secondary {
  background-color: #F2F7FA !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #cde0ec !important;
}

.bg-success {
  background-color: #33CC66 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #29a352 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #00054d !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #00021a !important;
}

.bg-danger {
  background-color: #CC3333 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #a32929 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #bcbed4 !important;
}

.border-top {
  border-top: 1px solid #bcbed4 !important;
}

.border-right {
  border-right: 1px solid #bcbed4 !important;
}

.border-bottom {
  border-bottom: 1px solid #bcbed4 !important;
}

.border-left {
  border-left: 1px solid #bcbed4 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #00054d !important;
}

.border-secondary {
  border-color: #F2F7FA !important;
}

.border-success {
  border-color: #33CC66 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #00054d !important;
}

.border-danger {
  border-color: #CC3333 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #ffffff !important;
}

.rounded-sm {
  border-radius: 0.5rem !important;
}

.rounded {
  border-radius: 0.5rem !important;
}

.rounded-top {
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
}

.rounded-right {
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}

.rounded-left {
  border-top-left-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}

.rounded-lg {
  border-radius: 0.5rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

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

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

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

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

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

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

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

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

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

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 3, 51, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 3, 51, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 3, 51, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #ffffff !important;
}

.text-primary {
  color: #00054d !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #000001 !important;
}

.text-secondary {
  color: #F2F7FA !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #bbd5e5 !important;
}

.text-success {
  color: #33CC66 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #248f47 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #00054d !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #000001 !important;
}

.text-danger {
  color: #CC3333 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #8f2424 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #00080F !important;
}

.text-muted, .invisible-link {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 3, 51, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000333;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #ffffff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #bcbed4;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #bcbed4;
  }
}
.daterange {
  position: relative;
}

.daterange * {
  box-sizing: border-box;
}

.daterange div, .daterange span, .daterange ul, .daterange li {
  margin: 0;
  padding: 0;
  border: 0;
}

.daterange ul {
  list-style: none;
}

.daterange.dr-active {
  z-index: 10;
}

.daterange .dr-input {
  display: flex;
  border: 1px solid #C3CACD;
  border-radius: 5px;
  background-color: #FFFFFF;
  position: relative;
  z-index: 5;
  overflow: hidden;
  height: 40px;
}

.daterange .dr-input:hover {
  border-color: #2693D5;
}

.daterange .dr-input.dr-active {
  box-shadow: 0 0 0 3px rgba(38, 147, 213, 0.3);
  border-color: #2693D5;
}

.daterange .dr-input .dr-dates {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 1.5rem 0 0.75rem;
  min-width: calc(100% - 35px);
}

.daterange .dr-input .dr-dates .dr-date {
  font-size: 0.9375rem;
  padding: 0.65625rem 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  outline: none;
}

.daterange .dr-input .dr-dates .dr-date:hover, .daterange .dr-input .dr-dates .dr-date:focus, .daterange .dr-input .dr-dates .dr-date.dr-active {
  color: #2693D5;
}

.daterange .dr-input .dr-dates .dr-date:empty:after {
  content: attr(placeholder);
  color: #9BA3A7;
}

.daterange .dr-input .dr-dates .dr-dates-dash {
  color: #9BA3A7;
  padding: 0 10px;
  flex-grow: 0;
  font-weight: 600;
}

.daterange .dr-input .dr-presets {
  width: 2.1875rem;
  border-left: 1px solid #C3CACD;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

.daterange .dr-input .dr-presets:hover, .daterange .dr-input .dr-presets.dr-active {
  border-color: #2693D5;
  box-shadow: inset 0 2px 3px #EBF1F4;
}

.daterange .dr-input .dr-presets:hover .dr-preset-bar, .daterange .dr-input .dr-presets.dr-active .dr-preset-bar {
  background-color: #2693D5;
}

.daterange .dr-input .dr-presets .dr-preset-bar {
  height: 2px;
  background-color: #C3CACD;
  margin: 1px 0 1px 25%;
}

.daterange .dr-input .dr-presets .dr-preset-bar:nth-child(1) {
  width: 50%;
}

.daterange .dr-input .dr-presets .dr-preset-bar:nth-child(2) {
  width: 40%;
}

.daterange .dr-input .dr-presets .dr-preset-bar:nth-child(3) {
  width: 30%;
}

.daterange .dr-selections {
  position: absolute;
}

.daterange .dr-selections .dr-calendar {
  background-color: #FFFFFF;
  font-size: 0.9375rem;
  box-shadow: 0 0 5px #C3CACD;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 4;
  padding-top: 5px;
  top: -5px;
  left: 4px;
  transition: width 0.2s;
  min-width: 210px;
}

.daterange .dr-selections .dr-calendar .dr-range-switcher {
  display: flex;
  justify-content: space-between;
  padding: 0.375rem 0.5rem;
  font-size: 0.875rem;
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(195, 202, 205, 0.5);
  border-radius: 5px;
  height: 1.5625rem;
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i {
  color: #C3CACD;
  position: relative;
  top: -1px;
  cursor: pointer;
  font-size: 0.75rem;
  height: 100%;
  width: 20px;
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i:hover:before, .daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i:hover:after {
  background-color: #2693D5;
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i.dr-disabled {
  pointer-events: none;
  opacity: 0;
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i:before, .daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background-color: #C3CACD;
  border-radius: 1px;
  left: 50%;
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i.dr-left:before {
  top: calc(50% - 2px);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i.dr-left:after {
  top: calc(50% + 2px);
  transform: translate(-50%, -50%) rotate(45deg);
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i.dr-right:before {
  top: calc(50% - 2px);
  transform: translate(-50%, -50%) rotate(45deg);
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-switcher i.dr-right:after {
  top: calc(50% + 2px);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-month-switcher {
  width: 100%;
  margin-right: 0.375rem;
}

.daterange .dr-selections .dr-calendar .dr-range-switcher .dr-year-switcher {
  min-width: 80px;
}

.daterange .dr-selections .dr-calendar .dr-days-of-week-list {
  display: flex;
  background-color: #EBF1F4;
  font-size: 0.625rem;
  color: #9BA3A7;
  padding: 0.3125rem 0;
  border: 1px solid rgba(195, 202, 205, 0.5);
  border-left: none;
  border-right: none;
}

.daterange .dr-selections .dr-calendar .dr-days-of-week-list .dr-day-of-week {
  width: 14.28%;
  text-align: center;
}

.daterange .dr-selections .dr-calendar .dr-day-list {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9375rem;
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-day {
  padding: 0.3125rem;
  text-align: center;
  width: 14.28%;
  cursor: pointer;
  color: #4f565c;
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-day.dr-hover:not(.dr-current) {
  background-color: #EBF1F4 !important;
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-day.dr-hover-before {
  border-left: 2px solid #2693D5 !important;
  border-radius: 2px 0 0 2px;
  padding-left: 0.1875rem !important;
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-day.dr-hover-after {
  border-right: 2px solid #2693D5 !important;
  border-radius: 0 2px 2px 0;
  padding-right: 0.1875rem !important;
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-selected, .daterange .dr-selections .dr-calendar .dr-day-list .dr-start, .daterange .dr-selections .dr-calendar .dr-day-list .dr-end {
  background-color: #EBF1F4;
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-maybe {
  background-color: #EBF1F4 !important;
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-fade {
  color: #C3CACD;
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-start {
  border-left: 2px solid #2693D5;
  border-radius: 2px 0 0 2px;
  padding-left: 0.1875rem;
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-end {
  border-right: 2px solid #2693D5;
  border-radius: 0 2px 2px 0;
  padding-right: 0.1875rem;
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-current {
  color: #2693D5 !important;
  background-color: rgba(38, 147, 213, 0.2) !important;
}

.daterange .dr-selections .dr-calendar .dr-day-list .dr-outside {
  pointer-events: none;
  cursor: default;
  color: rgba(195, 202, 205, 0.5);
}

.daterange .dr-selections .dr-preset-list {
  background-color: #FFFFFF;
  color: #2693D5;
  font-size: 0.9375rem;
  box-shadow: 0 0 5px #C3CACD;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 4;
  padding-top: 5px;
  top: -5px;
  left: 4px;
  width: 100%;
}

.daterange .dr-selections .dr-list-item {
  display: flex;
  align-items: flex-end;
  padding: 0.75rem 0.625rem;
  border-bottom: 1px solid #EBF1F4;
  cursor: pointer;
  white-space: nowrap;
}

.daterange .dr-selections .dr-list-item:hover {
  background-color: #EBF1F4;
}

.daterange .dr-selections .dr-list-item .dr-item-aside {
  color: #9BA3A7;
  font-size: 0.75rem;
  margin-left: 0.3125rem;
  position: relative;
  top: -1px;
}

.daterange--single .dr-input {
  cursor: text;
}

.daterange--single .dr-input .dr-dates {
  padding: 0;
  min-width: 160px;
  width: 100%;
}

.daterange--single .dr-input .dr-dates .dr-date {
  width: 100%;
  padding: 0.65625rem 0.75rem;
  text-align: left;
  color: #4f565c;
}

.wf-loading h1,
.wf-loading h2,
.wf-loading h3,
.wf-loading h4,
.wf-loading h5,
.wf-loading h6,
.wf-loading p,
.wf-loading a,
.wf-loading span,
.wf-loading b,
.wf-loading i,
.wf-loading label,
.wf-loading input,
.wf-loading select,
.wf-loading textarea,
.wf-loading button,
.wf-loading .sb-mainnav-navgroup-headline,
.wf-loading body.fullscreen .section,
.wf-loading .section.main-content {
  visibility: hidden;
}

.wf-active h1,
.wf-active h2,
.wf-active h3,
.wf-active h4,
.wf-active h5,
.wf-active h6,
.wf-active p,
.wf-active a,
.wf-active span,
.wf-active b,
.wf-active i,
.wf-active label,
.wf-active input,
.wf-active select,
.wf-active textarea,
.wf-active button,
.wf-active .sb-mainnav-navgroup-headline,
.wf-active body.fullscreen .section,
.wf-active .section.main-content,
.wf-inactive h1,
.wf-inactive h2,
.wf-inactive h3,
.wf-inactive h4,
.wf-inactive h5,
.wf-inactive h6,
.wf-inactive p,
.wf-inactive a,
.wf-inactive span,
.wf-inactive b,
.wf-inactive i,
.wf-inactive label,
.wf-inactive input,
.wf-inactive select,
.wf-inactive textarea,
.wf-inactive button,
.wf-inactive .sb-mainnav-navgroup-headline,
.wf-inactive body.fullscreen .section,
.wf-inactive .section.main-content {
  visibility: visible;
}

body.app {
  background: #FFFFFF;
}

.canvas {
  margin: 0px 30px 80px 60px;
  padding: 30px 20px;
  min-height: calc(100vh - 180px);
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  box-shadow: 0 6px 24px 2px #e1e2f0;
  position: relative;
}

.canvas.welcome {
  margin: 0px 30px 80px 30px;
}

@media (max-width: 1024px) {
  .canvas.welcome {
    margin-left: 5px;
  }
}
.canvas.fullscreen {
  margin: 20px;
}

@media (max-width: 1024px) {
  .canvas {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .canvas {
    padding: 20px 10px;
  }
}
.canvas.auth-container {
  margin-left: auto;
  margin-right: auto;
  min-height: auto;
}

.canvas.auth-container .help-block {
  text-align: center;
}

@media (max-width: 1024px) {
  .canvas {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    float: left;
    width: calc(100% - 15px);
  }
}
.canvas .form-group .form-control {
  background-color: #fff;
  border-radius: 0;
}

.canvas .form-group .form-control:disabled {
  background-color: #f0f1fa;
  color: #bcbed4;
}

.canvas .sb-page {
  padding: 0 15px;
  font-family: sofia-pro, Arial, sans-serif;
}

.canvas .sb-page h1,
.canvas .sb-sidebar h1 {
  margin-bottom: 40px;
}

.canvas .sb-page h2,
.canvas .sb-sidebar h2 {
  color: #000333;
  width: 100%;
  border-bottom: solid 1px #bcbed4;
  text-align: left;
  padding-bottom: 20px;
}

.canvas .sb-page .page-header,
.canvas .sb-sidebar .page-header {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #bcbed4;
  padding-bottom: 20px;
  margin-bottom: 20px;
  width: 100%;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .canvas .sb-page .page-header,
  .canvas .sb-sidebar .page-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.canvas .sb-page .page-header:hover h2,
.canvas .sb-sidebar .page-header:hover h2 {
  text-decoration: underline;
}

.canvas .sb-page .page-header h2,
.canvas .sb-sidebar .page-header h2 {
  border-bottom: none;
  width: auto;
  padding: 0;
  margin: 0 0 4px 0;
}

.connect-api-banner {
  padding: 20px;
  margin: 0px -10px 30px -10px;
  border-radius: 10px;
  background: #007b80;
  color: white;
  justify-content: space-between;
  align-items: center;
  display: flex;
  font-family: sofia-pro, Arial, sans-serif;
}

.connect-api-banner .headline {
  display: block;
  font-size: 20px;
  font-weight: bold;
}

.connect-api-banner .content a {
  display: inline;
  margin: 0 20px;
}

.main-content .modal {
  z-index: 3000;
}

.modal-open .popover {
  z-index: 3050;
  box-shadow: 0px 2px 6px 1px #aaa;
  border: 0;
}

.modal-open .popover .popover-header {
  background-color: #fff;
  text-align: center;
  font-weight: normal;
}

.modal-open .popover .confirmation-buttons .btn-group .btn-primary, .modal-open .popover .confirmation-buttons .btn-group .btn-secondary {
  border-radius: 0;
  margin: 0 5px;
  border: 1px solid #00054d;
  min-width: 80px;
  text-align: center;
  display: inline-block !important;
}

.modal-open .popover .confirmation-buttons .btn-group .btn-primary {
  background: #00054d;
}

.modal-open .popover .confirmation-buttons .btn-group .btn-secondary {
  color: #00054d;
  background-color: #fff;
}

.auth-area {
  min-height: 100vh;
  -webkit-flex-flow: column wrap;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.auth-area .container {
  max-width: 650px;
}

.auth-area .channel-sync-icon {
  font-size: 40px;
}

.auth-area .channel-service-icon {
  width: 57px;
  height: 57px;
}

.auth-area.channel {
  min-height: 50vh;
}

.auth-area.done {
  min-height: 50vh;
}

.auth-area.channel .container {
  margin-top: 50px;
}

.auth.page-login .auth-area .container {
  max-width: 22rem;
  margin: 0 auto;
}

.sb-logo-auth {
  margin: 20px 0;
  text-align: center;
}

/* mark containers with limit-width to give them a maximum width and not grow to 100% page width */
.container-fluid.limit-width, .limit-width.container-sm, .limit-width.container-md, .limit-width.container-lg, .limit-width.container-xl {
  max-width: 700px;
  margin-left: 0;
}

.limit-width-1000 {
  max-width: 1000px;
  margin-left: 0;
}

.welcome-modal.sb-modal {
  margin-top: 20px;
}

.welcome-modal.sb-modal .sb-modal__wrap {
  max-width: 1100px;
  width: calc(100vw - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px 40px 40px;
}

.welcome-modal.sb-modal .sb-modal__wrap .sb-modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  max-height: calc(100vh - 180px);
  overflow: auto;
}

.welcome-modal.sb-modal .sb-modal__wrap .sb-modal__content p {
  margin: 20px 0 0 0;
  font-weight: normal;
  font-size: 16px;
  color: #3a3c66;
  text-align: left;
  width: 100%;
}

.welcome-modal.sb-modal .sb-modal__wrap .sb-modal__content ul {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 0;
  width: 100%;
}

.welcome-modal.sb-modal .sb-modal__wrap .sb-modal__content ul li {
  font-size: 16px;
  font-family: sofia-pro, Arial, sans-serif;
  color: #3a3c66;
  font-weight: normal;
  margin-bottom: 5px;
}

.welcome-modal.sb-modal .sb-modal__wrap .sb-modal__content ul li::marker {
  color: #7308dd;
  font-size: 12px;
}

.welcome-modal.sb-modal .sb-modal__wrap .sb-modal__content .button-primary {
  margin: 20px auto 0px auto;
  width: 240px;
}

.welcome-modal.sb-modal .sb-modal__wrap .sb-modal__content .supress-dialog {
  font-size: 15px;
  font-weight: normal;
  position: relative;
  margin-left: 20px;
  margin-top: 10px;
  cursor: pointer;
  color: #3a3c66;
}

.welcome-modal.sb-modal .sb-modal__wrap .sb-modal__content .supress-dialog input {
  position: absolute;
  left: 0;
  opacity: 0.01;
}

.welcome-modal.sb-modal .sb-modal__wrap .sb-modal__content .supress-dialog input:checked + label::before {
  background-color: #00054d;
}

.welcome-modal.sb-modal .sb-modal__wrap .sb-modal__content .supress-dialog input:checked + label::after {
  content: " ";
  position: absolute;
  border: 2px solid #FFFFFF;
  border-top: none;
  border-left: none;
  top: 5px;
  left: -18px;
  width: 6px;
  height: 11px;
  transform: rotate(45deg);
}

.welcome-modal.sb-modal .sb-modal__wrap .sb-modal__content .supress-dialog label {
  position: relative;
}

.welcome-modal.sb-modal .sb-modal__wrap .sb-modal__content .supress-dialog label::before {
  content: " ";
  width: 18px;
  height: 18px;
  background-color: #FFFFFF;
  border: 1px solid #3a3c66;
  border-radius: 4px;
  position: absolute;
  left: -24px;
  top: 3px;
}

.welcome-modal.sb-modal .sb-modal__wrap .modal-title_js {
  color: #3a3c66;
}

.text-center {
  text-align: center !important;
}

.btn-secondary, .btn-outline-secondary {
  border-color: #00054d !important;
  color: #00054d !important;
  background-color: #f0f1fa;
}

.btn-secondary:hover, .btn-outline-secondary:hover {
  background-color: #bcbed4 !important;
  color: #000333 !important;
}

.btn-secondary.active, .btn-outline-secondary.active {
  background-color: #00054d !important;
  color: #FFFFFF !important;
}

.toggle.btn-success.toggle,
.toggle .btn-success.toggle {
  background: #000333 !important;
  border-color: #000333 !important;
}

.toggle.btn-success.toggle-on,
.toggle .btn-success.toggle-on {
  background: linear-gradient(282deg, #000fe3, #9d3aff) !important;
  color: #FFFFFF !important;
  border-color: #000333 !important;
  border-radius: 5px;
}

.toggle.btn-success.toggle-on, .toggle.btn-success.toggle-off,
.toggle .btn-success.toggle-on,
.toggle .btn-success.toggle-off {
  text-transform: capitalize;
}

.toggle .toggle-handle {
  border: none;
  box-shadow: 0px 2px 6px 1px #1f214d;
}

.glyphicons {
  line-height: inherit !important;
}

.transparent-background {
  background: none transparent;
}

/* Workaround to force-apply the autocomplete="off" attribute to LastPass, which normally ignores this.
 *
 * Hides LastPass icons (both password entry icons as well as general form fill icons) that set
 * autocomplete="off" on the form tag. This is particularly relevant for us for the CWM setup form
 * (which otherwise tries to insert the user's SmileBack password as the CWM API key) and various
 * filter and automation rule forms, so they don't autofill filters, which just doesn't make sense.
 *
 * LastPass also has a native method to do this: https://lastpass.com/support.php?cmd=showfaq&id=10512
 * However, we cannot really use this because selectize dynamically creates new form elements from the
 * <select> elements and it's really hard to set the data-lpignore="true" on those. Also, this cannot
 * be set on the form itself, but rather has to be set on every single field (and must never be
 * forgotten when editing the form...) So we're still using this workaround for now.
 *
 * More discussion on how to prevent the LastPass autofill icons:
 * - https://stackoverflow.com/q/20954944/6278
 * - https://trello.com/c/yRm8riin/51-avoid-browsers-and-plugins-to-autofill-smileback-forms-outside-of-the-auth-area
 *
 * Only LastPass has been tested, and other password managers with an overlay experience (like 1Password,
 * Dashlane) might very well need similar adjustments.
 */
div[id*=__lpform_] {
  display: none !important;
}

form[autocomplete=off] input,
form[autocomplete=off] textarea {
  background-image: none !important;
}

h1, h2, h3 {
  font-family: sofia-pro, sans-serif;
  color: #000333;
}

a {
  color: #000a9f;
}

a:hover {
  color: #000a9f;
  text-decoration: underline;
}

.alert.alert-primary {
  background-color: #FFFFFF;
  color: #00054d;
  border: 1px solid #00054d;
}

.alert.alert-primary a {
  color: #00054d;
  text-decoration: underline;
}

.alert.alert-success {
  background-color: #f5fcfc;
  color: #007b80;
  border: 1px solid #007b80;
}

.alert.alert-success a {
  color: #007b80;
  text-decoration: underline;
}

.alert.alert-info {
  background-color: #fffdf7;
  color: #b07d00;
  border: 1px solid #b07d00;
}

.alert.alert-info a {
  color: #b07d00;
  text-decoration: underline;
}

.alert.alert-danger {
  background-color: #fef9fa;
  color: #c70a2a;
  border: 1px solid #c70a2a;
}

.alert.alert-danger a {
  color: #c70a2a;
  text-decoration: underline;
}

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

.text-success {
  color: #00CBA6 !important;
}

.text-danger {
  color: #EB3853 !important;
}

.modal-backdrop {
  z-index: 2000;
}

.font-weight-bold {
  font-weight: bold;
}

.font-italic {
  font-style: italic;
}

.font-color-dark-blue {
  color: #00054d;
}

.font-color-blue-gray {
  color: rgb(114, 142, 150);
}

.text-blue {
  color: #00054d;
}

.text-blue-bright {
  color: #00054d;
}

.text-blue-pitch {
  color: #00A2EA;
}

.text-yellow {
  color: #F4D94A;
}

.line-height-inherit {
  line-height: inherit;
}

.opacity-50 {
  opacity: 0.5;
}

.pointer-events-none {
  pointer-events: none;
}

.position-relative {
  position: relative;
}

.position-absolute-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.transition-fade {
  transition: opacity 0.15s linear;
}

button:disabled {
  opacity: 0.4;
  cursor: default;
}

button:disabled:hover {
  box-shadow: none;
}

.button-primary {
  text-align: center;
  transition: all 0.2s;
  display: block;
  padding: 10px 14px;
  font-family: sofia-pro, sans-serif;
  font-size: 16px;
  background: linear-gradient(282deg, #000fe3, #9d3aff);
  color: white !important;
  box-sizing: border-box;
  font-weight: 600;
  cursor: pointer;
  line-height: 24px;
  min-width: 180px;
  width: fit-content;
  border: none;
  border-radius: 8px;
}

.button-primary:hover {
  box-shadow: 0 6px 16px 0 rgba(109, 111, 148, 0.5);
  text-decoration: none !important;
}

.button-primary:active {
  outline: 1px dashed #00054d;
}

.button-primary.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.button-primary.loading {
  position: relative;
  pointer-events: none;
  border-color: #00054d !important;
  padding: 10px 20px 10px 8px;
}

.button-primary.loading:after {
  content: "";
  background: url(/static/icons/progress-white.svg);
  position: absolute;
  width: 30px;
  height: 30px;
  right: 10px;
  top: 8px;
  animation: rotate 1s linear infinite;
  background-repeat: no-repeat;
  background-position: 3px 3px;
}

.button-primary.success {
  position: relative;
  border-color: #00054d !important;
  padding: 10px 20px 10px 8px;
}

.button-primary.success:after {
  content: "";
  background: url(/static/icons/checkmark-white.svg);
  position: absolute;
  width: 20px;
  height: 20px;
  right: 17px;
  top: 11px;
}

.button-primary.warning {
  background: #c70a2a;
  border: none;
}

.button-primary.inline {
  display: inline;
  min-width: unset;
  padding: 4px 10px;
}

.button-primary.white {
  background: #fff !important;
  color: #000 !important;
}

.button-primary.white:hover {
  box-shadow: 0px 2px 6px 1px #555;
}

.button-secondary {
  display: block;
  font-size: 16px;
  font-weight: 600;
  border: solid 2px #000a9f;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.6px;
  text-align: center;
  color: #000a9f !important;
  text-align: center;
  padding: 8px 14px;
  cursor: pointer;
  background-color: white;
  transition: all 0.3s;
  line-height: 24px;
  min-width: 180px;
  width: fit-content;
  border-radius: 8px;
}

.button-secondary:hover {
  border: solid 2px #000a9f;
  color: #000a9f !important;
  text-decoration: none !important;
  box-shadow: 0 6px 16px 0 rgba(109, 111, 148, 0.5);
}

.button-tertiary {
  color: #000fe3;
  font-weight: bold;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.button-tertiary:hover {
  text-decoration: underline;
  color: #000fe3;
}

.button-tertiary:hover:before, .button-tertiary:hover:after {
  display: inline-block;
}

.button-tertiary.previous:before {
  content: "‹";
  margin-right: 5px;
  font-size: 20px;
  line-height: 16px;
}

.button-tertiary.next:after {
  content: "›";
  margin-left: 5px;
  font-size: 20px;
  line-height: 16px;
}

.btn-primary {
  background: linear-gradient(282deg, #000fe3, #9d3aff);
  border: none;
}

.btn-primary:hover {
  box-shadow: 0 6px 16px 0 rgba(109, 111, 148, 0.5);
  text-decoration: none !important;
}

.btn-primary.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

a.dotted {
  border-bottom: 1px dashed;
  text-decoration: none !important;
}

a.green {
  color: #007b80 !important;
  text-decoration: underline !important;
}

.right {
  float: right;
}

.left {
  float: left;
}

.blur {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -ms-filter: blur(4px);
  -o-filter: blur(4px);
  /* FF doesn't support blur filter, but SVG */
  filter: url("data:image/svg+xml;utf8,<svg height='0' xmlns='http://www.w3.org/2000/svg'><filter id='svgBlur' x='-5%' y='-5%' width='110%' height='110%'><feGaussianBlur in='SourceGraphic' stdDeviation='5'/></filter></svg>#svgBlur");
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius = "4");
  filter: blur(4px);
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
supported by Chrome and Opera */
}

.zindex-3 {
  z-index: 3;
}

.toggle-link::after {
  content: "+";
  margin-left: 10px;
}

.toggle-link.active::after {
  content: "–";
}

@-webkit-keyframes highlight-fade {
  0% {
    background: #f5fcfc;
  }
  100% {
    background: transparent;
  }
}
@keyframes highlight-fade {
  0% {
    background: #f5fcfc;
  }
  100% {
    background: transparent;
  }
}
.highlight-animated {
  -webkit-animation: highlight-fade 2s ease-in 1;
  animation: highlight-fade 2s ease-in 1;
}

@-webkit-keyframes highlight-fade-blue {
  0% {
    background: #b3e3f9;
  }
  100% {
    background: #FFFFFF;
  }
}
@keyframes highlight-fade-blue {
  0% {
    background: #b3e3f9;
  }
  100% {
    background: #FFFFFF;
  }
}
.highlight-animated-blue {
  -webkit-animation: highlight-fade-blue 2s ease-in 1;
  animation: highlight-fade-blue 2s ease-in 1;
}

.invisible-link:hover {
  text-decoration: underline;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sb-radio-option {
  font-size: 16px;
  color: #646464;
  margin-right: 10px;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  /* Show the dot when checked */
}

.sb-radio-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.sb-radio-option .selected {
  position: absolute;
  top: 4px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #00054d;
  border-radius: 20px;
}

.sb-radio-option .selected:after {
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #00054d;
  border-radius: 20px;
  content: "";
  position: absolute;
  display: none;
}

.sb-radio-option input:checked ~ .selected:after {
  display: block;
}

.note-highlight {
  background-color: #007b80;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
  margin: 10px 0;
}

/*
    requires a css hover selector on a parent element
    to set display: block

    eg: 
    .parent-element:hover {
        .sb-tooltip {
            display:block;
        }
    }

    positioning of tooltip and arrow should be done case by case
*/
.tooltip-wrap:hover .sb-tooltip {
  display: block;
}

.tooltip-wrap .icon {
  width: 18px;
}

.tooltip-wrap .confirmation {
  display: none !important;
  right: 50px !important;
  top: -31px !important;
  font-size: 16px;
  white-space: initial;
  width: 310px;
  color: #CC3333;
  text-align: center;
}

.tooltip-wrap .confirmation::before {
  top: 24px !important;
  right: -19px !important;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid #cbccd5;
  border-right: none;
}

.tooltip-wrap .confirmation::after {
  top: 24px !important;
  right: -17px !important;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid white;
  border-right: none;
}

.tooltip-wrap .confirmation span {
  cursor: pointer;
  padding: 5px;
  color: rgba(0, 0, 0, 0.6);
}

.tooltip-wrap .confirmation span:hover {
  text-decoration: underline;
}

.tooltip-wrap.confirming .sb-tooltip.action {
  display: none !important;
}

.tooltip-wrap.confirming .sb-tooltip.confirmation {
  display: inline !important;
}

.sb-tooltip {
  border: solid 1px #cbccd5;
  background-color: #FFFFFF;
  width: 240px;
  right: 10px;
  border-radius: 5px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: normal;
  color: #6d6f94;
  top: 40px;
  position: absolute;
  z-index: 1000;
  display: none;
  padding: 12px 16px;
  filter: drop-shadow(0px 5px 6px #6d6f94);
  border-radius: 21px;
  transition: bottom 0.8s, opacity 0.2s;
  text-align: left;
}

.sb-tooltip:before {
  content: " ";
  position: absolute;
  top: -14px;
  right: 29px;
  border-top: 14px solid transparent;
  border-bottom: 0px solid transparent;
  border-right: 18px solid #cbccd5;
}

.sb-tooltip:after {
  content: " ";
  position: absolute;
  top: -12px;
  right: 30px;
  border-top: 14px solid transparent;
  border-bottom: 0px solid transparent;
  border-right: 18px solid white;
}

.slide-toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px 0 24px 0;
}

.slide-toggle-wrapper .slide-toggle {
  display: flex;
  cursor: pointer;
}

.slide-toggle-wrapper .slide-toggle input[type=checkbox] {
  height: 0;
  width: 0;
  opacity: 0;
}

.slide-toggle-wrapper .slide-toggle input[type=checkbox]:not(:checked) + label:before, .slide-toggle-wrapper .slide-toggle input[type=checkbox]:checked + label:before {
  position: static;
}

.slide-toggle-wrapper .slide-toggle input[type=checkbox]:not(:checked) + label:after, .slide-toggle-wrapper .slide-toggle input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  transition: 0.3s;
  transform: none;
  opacity: 1;
  width: 22px;
  height: 22px;
  border-radius: 16.5px;
  border: solid 2px #FFFFFF;
  background-image: linear-gradient(134deg, #e1e2f0 13%, #FFFFFF 64%);
  box-shadow: 2px 0px 5px 0px #00054d;
}

.slide-toggle-wrapper .slide-toggle input[type=checkbox]:checked + label:after {
  left: calc(100% - 3px);
  transform: translateX(-100%);
  box-shadow: -2px 0px 5px 0px #00054d;
}

.slide-toggle-wrapper .slide-toggle input[type=checkbox].reverse:not(:checked) + label:after, .slide-toggle-wrapper .slide-toggle input[type=checkbox].reverse:checked + label:after {
  left: calc(100% - 3px);
  transform: translateX(-100%);
  box-shadow: -2px 0px 5px 0px #00054d;
}

.slide-toggle-wrapper .slide-toggle input[type=checkbox].reverse:checked + label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  transition: 0.3s;
  transform: none;
  opacity: 1;
  width: 22px;
  height: 22px;
  border-radius: 16.5px;
  border: solid 2px #FFFFFF;
  background-image: linear-gradient(134deg, #e1e2f0 13%, #FFFFFF 64%);
  box-shadow: 2px 0px 5px 0px #00054d;
}

.slide-toggle-wrapper .slide-toggle label {
  cursor: pointer;
  text-indent: -9999px;
  display: block;
  position: relative;
  width: 64px;
  height: 32px;
  border-radius: 20px;
  border: solid 2px #e1e2f0;
  margin: 0;
  background-image: linear-gradient(297deg, #000fe3, #9d3aff);
}

.slide-toggle-wrapper .slide-toggle label:active:after {
  width: 130px;
}

.slide-toggle-wrapper .toggle-label {
  padding: 0 24px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.33px;
  color: #6d6f94;
}

.slide-toggle-wrapper .toggle-label.active {
  color: #000fe3;
}

.slide-toggle-wrapper .toggle-label.left {
  text-align: right;
}

.slide-toggle-wrapper .toggle-label.right {
  text-align: left;
}

.mini-toggle {
  /*  <div class="mini-toggle>
          <input type="checkbox" id="x" ... />
          <label for="x">...</label>
      </div>
  */
  position: relative;
  display: inline-block;
}

.mini-toggle input[type=checkbox] {
  display: none;
}

.mini-toggle label {
  display: block;
  width: 27px;
  min-width: 27px;
  height: 16px;
  text-indent: -150%;
  clip: rect(0 0 0 0);
  color: transparent;
  user-select: none;
  position: relative;
  float: left;
  margin: 5px 10px 5px 0;
  overflow: hidden;
}

.mini-toggle label::before, .mini-toggle label::after {
  content: "";
  display: block;
  position: absolute;
  cursor: pointer;
}

.mini-toggle label::before {
  width: 100%;
  height: 100%;
  background-color: #6d6f94;
  border-radius: 9999em;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
}

.mini-toggle label::after {
  top: 1px;
  left: 1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: left 0.05s ease-in;
  transition: left 0.05s ease-in;
}

.mini-toggle input:checked + label::before {
  background: linear-gradient(297deg, #000fe3, #9d3aff);
}

.mini-toggle input.disabled + label {
  opacity: 0.4;
  pointer-events: none;
}

.mini-toggle input:checked + label::after {
  left: 12px;
}

.checkmark-svg {
  background: url("/static/img/ic_checkmark.svg");
  display: inline-block;
  width: 15px;
  height: 15px;
  background-size: contain;
}

.cross-svg {
  background: url("/static/img/ic_cross.svg");
  display: inline-block;
  width: 15px;
  height: 15px;
  background-size: contain;
}

.filters-icon-wrap .filters-icon {
  width: 24px;
  height: 24px;
  display: block;
  margin-left: 6px;
  position: relative;
}

.filters-icon-wrap .filters-icon .line {
  height: 2px;
  width: 100%;
  background: #00054d;
  display: inline-block;
  position: absolute;
}

.filters-icon-wrap .filters-icon .line.first {
  top: 3px;
}

.filters-icon-wrap .filters-icon .line.first .dot {
  left: 4px;
}

.filters-icon-wrap .filters-icon .line.second {
  top: 11px;
}

.filters-icon-wrap .filters-icon .line.second .dot {
  left: 17px;
}

.filters-icon-wrap .filters-icon .line.third {
  top: 19px;
}

.filters-icon-wrap .filters-icon .line.third .dot {
  left: 9px;
}

.filters-icon-wrap .filters-icon .line .dot {
  border: 2px solid #00054d;
  background: #fff;
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 10px;
  position: absolute;
  top: -3px;
  transition: 0.3s all;
}

.filters-icon-wrap:hover .line.first .dot, .filters-icon-wrap .active .line.first .dot {
  left: 18px;
}

.filters-icon-wrap:hover .line.second .dot, .filters-icon-wrap .active .line.second .dot {
  left: 4px;
}

.filters-icon-wrap:hover .line.third .dot, .filters-icon-wrap .active .line.third .dot {
  left: 13px;
}

.smile-box {
  /* checkbox aspect */
  /* checked mark aspect */
  /* checked mark aspect changes */
  /* disabled checkbox */
}

.smile-box [type=checkbox]:not(:checked),
.smile-box [type=checkbox]:checked {
  position: absolute;
  left: -9999px;
}

.smile-box [type=checkbox]:not(:checked) + label,
.smile-box [type=checkbox]:checked + label {
  position: relative;
  cursor: pointer;
  margin-left: 20px;
}

.smile-box [type=checkbox]:not(:checked) + label:before,
.smile-box [type=checkbox]:checked + label:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 2px;
  width: 13px;
  height: 13px;
  border: 1px solid #00054d;
  background: #fff;
}

.smile-box [type=checkbox]:checked + label:before {
  background: #00054d;
}

.smile-box [type=checkbox]:not(:checked) + label:after,
.smile-box [type=checkbox]:checked + label:after {
  content: " ";
  display: block;
  position: absolute;
  left: -16px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.smile-box [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
}

.smile-box [type=checkbox]:checked + label:after {
  opacity: 1;
}

.smile-box [type=checkbox]:disabled:not(:checked) + label:before,
.smile-box [type=checkbox]:disabled:checked + label:before {
  border-color: #00054d;
  background-color: #fff;
}

.smile-box [type=checkbox]:disabled:checked + label:after {
  color: #999;
}

.smile-box [type=checkbox]:disabled + label {
  color: #aaa;
}

.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.nav-wrapper {
  position: relative;
  background: unset;
  z-index: 1500;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: -0.31px;
  font-weight: bold;
  transition: all 0.3s;
}

.nav-wrapper.scrolled .navigation-top {
  justify-content: flex-end;
}

.nav-wrapper.scrolled .navigation-top .navigation-logo {
  margin-top: -200px;
}

@media (max-width: 991.98px) {
  .nav-wrapper.scrolled .navigation-top .navigation-logo {
    margin-top: 0;
  }
}
.nav-wrapper.scrolled .navigation-top .navigation-logo-scrolled {
  left: 11px;
}

.nav-wrapper.scrolled .navigation-top .navigation-logo-scrolled:hover {
  filter: drop-shadow(0 3px 6px #bcbed4);
}

.nav-wrapper .navigation-top {
  height: 100px;
  position: relative;
  transition: all 0.3s;
  display: flex;
  justify-content: space-between;
  padding: 0px 65px 0 90px;
}

@media (max-width: 991.98px) {
  .nav-wrapper .navigation-top {
    padding: 0px 40px;
  }
}
@media (max-width: 767.98px) {
  .nav-wrapper .navigation-top {
    padding: 0px 20px;
  }
}
.nav-wrapper .navigation-top .navigation-logo {
  height: 65px;
}

.nav-wrapper .navigation-top .navigation-logo img {
  width: auto;
  height: 100%;
  transition: all 0.3s ease-out;
}

.nav-wrapper .navigation-top .navigation-logo img:hover {
  transform: scale(1.03);
}

.nav-wrapper .navigation-top .navigation-logo-scrolled {
  width: 38px;
  overflow: hidden;
  position: fixed;
  left: -100px;
  top: 4px;
  transition: all 0.2s ease-out;
}

@media (max-width: 991.98px) {
  .nav-wrapper .navigation-top .navigation-logo-scrolled {
    display: none;
  }
}
.nav-wrapper .navigation-top .navigation-logo-scrolled img {
  height: 50px;
}

.nav-wrapper .navigation-top .icons {
  display: flex;
  flex: 1;
  justify-content: flex-start;
  padding-left: 40px;
}

.nav-wrapper .navigation-top .icons img {
  padding: 0 10px;
}

.nav-wrapper .navigation-top .nav-header-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  font-size: 18px;
}

.nav-wrapper .navigation-top .nav-header-items .subscribe {
  margin-right: 40px;
}

@media (max-width: 991.98px) {
  .nav-wrapper .navigation-top .nav-header-items .subscribe {
    display: none;
  }
}
.nav-wrapper .navigation-top .nav-header-items .open-nav {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.nav-wrapper .navigation-top .nav-header-items .open-nav:hover {
  text-decoration: underline;
}

.nav-wrapper .navigation-top .nav-header-items .open-nav .hamburger {
  height: 24px;
  width: 24px;
  display: inline-block;
  transform: rotateY(180deg);
}

.nav-wrapper .navigation-top .nav-header-items .open-nav .user {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #00054d;
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  .nav-wrapper .navigation-top .nav-header-items .open-nav .user {
    display: none;
  }
}
.nav-wrapper .navigation-top .nav-header-items .open-nav .user img {
  border-radius: 50px;
  margin-left: 10px;
}

.nav-wrapper .navigation-top nav {
  background: linear-gradient(to bottom, #000333, #00054d), linear-gradient(to bottom, #000333, #000333);
  color: #FFFFFF;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100px;
  display: flex;
  flex-direction: column;
  padding: 0 70px;
  box-shadow: 0px 5px 22px 1px rgba(0, 5, 77, 0.54);
  backdrop-filter: blur(8px);
}

@media (max-width: 991.98px) {
  .nav-wrapper .navigation-top nav {
    padding: 0 30px;
  }
}
.nav-wrapper .navigation-top nav:after {
  content: " ";
  top: -14px;
  right: 66px;
  border-bottom: 14px solid #000033;
  border-top: none;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  width: 20px;
  position: absolute;
}

@media (max-width: 991.98px) {
  .nav-wrapper .navigation-top nav:after {
    right: 42px;
  }
}
@media (max-width: 767.98px) {
  .nav-wrapper .navigation-top nav:after {
    right: 15px;
  }
}
.nav-wrapper .navigation-top nav section {
  margin: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 180px;
}

@media (max-width: 991.98px) {
  .nav-wrapper .navigation-top nav section {
    margin: 0 0 20px 10px;
    width: calc(50% - 10px);
  }
}
@media (max-width: 767.98px) {
  .nav-wrapper .navigation-top nav section .profile {
    display: none;
  }
}
.nav-wrapper .navigation-top nav section .fullname {
  display: none;
}

@media (max-width: 767.98px) {
  .nav-wrapper .navigation-top nav section .fullname {
    display: block;
  }
}
.nav-wrapper .navigation-top nav section h2 {
  margin-bottom: 6px;
  color: #FFFFFF;
}

.nav-wrapper .navigation-top nav section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
  font-weight: normal;
}

.nav-wrapper .navigation-top nav section ul + .projects-header {
  margin-top: 20px;
}

.nav-wrapper .navigation-top nav section ul li {
  margin: 6px 0px;
  cursor: pointer;
}

.nav-wrapper .navigation-top nav section ul li a {
  color: #FFFFFF;
}

.nav-wrapper .navigation-top nav section ul li a:hover {
  color: #9d3aff;
  text-decoration: none;
}

.nav-wrapper .navigation-top nav .main {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-top: 20px;
  margin: 20px 0 20px 0;
}

@media (max-width: 767.98px) {
  .nav-wrapper .navigation-top nav .main {
    flex-wrap: wrap;
  }
}
.nav-wrapper .navigation-top nav .bottom {
  border-top: 1px solid #e1e2f0;
  margin: 20px 0 0 0;
  display: flex;
  justify-content: flex-end;
  padding: 20px 0 20px 0;
}

.nav-wrapper .navigation-top nav .bottom section {
  width: 100%;
}

.nav-wrapper .navigation-top nav .bottom section ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: end;
}

.nav-wrapper .navigation-top nav .bottom section ul li {
  padding-left: 20px;
}

.sidebar-nav {
  display: flex;
  position: fixed;
  height: 100vh;
  top: 0;
  align-items: center;
  width: 60px;
  z-index: 1200;
}

@media (max-width: 1024px) {
  .sidebar-nav {
    display: none;
  }
}
.sidebar-nav .icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0px;
}

.sidebar-nav .icons .roadmap-wrapper {
  position: absolute;
  bottom: 10px;
  left: 15px;
}

.sidebar-nav .icons .roadmap-wrapper .sb-tooltip {
  width: 280px !important;
}

.sidebar-nav .icons .link-group {
  border-bottom: 1px solid #e1e2f0;
  padding: 2px;
}

.sidebar-nav .icons .link-group.csat .reviews:hover .sb-tooltip {
  display: flex;
  flex-direction: column;
}

.sidebar-nav .icons .link-group.csat .reviews:hover .sb-tooltip a {
  color: #FFFFFF;
}

.sidebar-nav .icons .link-group.csat .reviews:hover .sb-tooltip:before {
  content: " ";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  border: 0;
  left: -19px;
  top: 0px;
}

.sidebar-nav .icons .link-group.csat .reviews ul {
  list-style: none;
  padding: 8px 15px 5px 0;
  margin: 10px 0 0 0;
  border-top: 1px solid #3a3c66;
  width: 180px;
}

.sidebar-nav .icons .link-group.csat .reviews ul li {
  font-weight: normal;
  padding-bottom: 4px;
  font-size: 15px;
}

.sidebar-nav .icons .link-group.csat .reviews ul li a {
  color: #FFFFFF;
}

.sidebar-nav .icons .link-group:last-of-type {
  border: none;
}

.sidebar-nav .icons .tooltip-wrap {
  position: relative;
  margin: 8px 0;
  display: flex;
  padding: 4px;
  border-radius: 5px;
  width: 22px;
  height: 22px;
  box-sizing: content-box;
  transition: all 0.2s;
}

.sidebar-nav .icons .tooltip-wrap.active {
  background-color: #FFFFFF;
  box-shadow: 0 2px 6px 3px #bcbed4;
}

.sidebar-nav .icons .tooltip-wrap:hover .sb-tooltip {
  left: 43px;
}

.sidebar-nav .icons .tooltip-wrap.active .icon, .sidebar-nav .icons .tooltip-wrap:hover .icon {
  background-image: linear-gradient(282deg, #000fe3, #9d3aff) !important;
}

.sidebar-nav .icons .tooltip-wrap.active .icon.dashboard, .sidebar-nav .icons .tooltip-wrap:hover .icon.dashboard {
  -webkit-mask-image: url("/static/img/nav/sb-nav-dashboard.svg");
  mask-image: url("/static/img/nav/sb-nav-dashboard.svg");
}

.sidebar-nav .icons .tooltip-wrap.active .icon.reviews, .sidebar-nav .icons .tooltip-wrap:hover .icon.reviews {
  -webkit-mask-image: url("/static/img/nav/sb-nav-reviews.svg");
  mask-image: url("/static/img/nav/sb-nav-reviews.svg");
}

.sidebar-nav .icons .tooltip-wrap.active .icon.analytics, .sidebar-nav .icons .tooltip-wrap:hover .icon.analytics {
  -webkit-mask-image: url("/static/img/nav/sb-nav-analytics.svg");
  mask-image: url("/static/img/nav/sb-nav-analytics.svg");
}

.sidebar-nav .icons .tooltip-wrap.active .icon.campaigns, .sidebar-nav .icons .tooltip-wrap:hover .icon.campaigns {
  -webkit-mask-image: url("/static/img/nav/sb-nav-campaigns.svg");
  mask-image: url("/static/img/nav/sb-nav-campaigns.svg");
}

.sidebar-nav .icons .tooltip-wrap.active .icon.responses, .sidebar-nav .icons .tooltip-wrap:hover .icon.responses {
  -webkit-mask-image: url("/static/img/nav/sb-nav-nps.svg");
  mask-image: url("/static/img/nav/sb-nav-nps.svg");
}

.sidebar-nav .icons .tooltip-wrap.active .icon.survey-manager, .sidebar-nav .icons .tooltip-wrap:hover .icon.survey-manager {
  -webkit-mask-image: url("/static/img/nav/sb-nav-survey-manager.svg");
  mask-image: url("/static/img/nav/sb-nav-survey-manager.svg");
}

.sidebar-nav .icons .tooltip-wrap.active .icon.survey-responses, .sidebar-nav .icons .tooltip-wrap:hover .icon.survey-responses {
  -webkit-mask-image: url("/static/img/nav/sb-nav-survey-responses.svg");
  mask-image: url("/static/img/nav/sb-nav-survey-responses.svg");
}

.sidebar-nav .icons .tooltip-wrap.active .icon.reporting, .sidebar-nav .icons .tooltip-wrap:hover .icon.reporting {
  -webkit-mask-image: url("/static/img/nav/sb-nav-reporting.svg");
  mask-image: url("/static/img/nav/sb-nav-reporting.svg");
}

.sidebar-nav .icons .tooltip-wrap.active .icon.roadmap, .sidebar-nav .icons .tooltip-wrap:hover .icon.roadmap {
  -webkit-mask-image: url("/static/img/nav/sb-nav-roadmap.svg");
  mask-image: url("/static/img/nav/sb-nav-roadmap.svg");
  -webkit-mask-size: 18px;
  mask-size: 18px;
  -webkit-mask-position: 2px 0;
  mask-position: 2px 0;
}

.sidebar-nav .icons .tooltip-wrap .icon.dashboard {
  background-image: url("/static/img/nav/sb-nav-dashboard.svg");
}

.sidebar-nav .icons .tooltip-wrap .icon.reviews {
  background-image: url("/static/img/nav/sb-nav-reviews.svg");
}

.sidebar-nav .icons .tooltip-wrap .icon.analytics {
  background-image: url("/static/img/nav/sb-nav-analytics.svg");
}

.sidebar-nav .icons .tooltip-wrap .icon.campaigns {
  background-image: url("/static/img/nav/sb-nav-campaigns.svg");
  background-position: 0px 3px;
  -webkit-mask-position: 0px 3px;
  mask-position: 0px 3px;
}

.sidebar-nav .icons .tooltip-wrap .icon.responses {
  background-image: url("/static/img/nav/sb-nav-nps.svg");
  background-position: 0px 1px;
  -webkit-mask-position: 0px 1px;
  mask-position: 0px 1px;
}

.sidebar-nav .icons .tooltip-wrap .icon.survey-manager {
  background-image: url("/static/img/nav/sb-nav-survey-manager.svg");
  background-position: 0px 4px;
  -webkit-mask-position: 0px 4px;
  mask-position: 0px 4px;
}

.sidebar-nav .icons .tooltip-wrap .icon.survey-responses {
  background-image: url("/static/img/nav/sb-nav-survey-responses.svg");
  background-position: 0px 3px;
  -webkit-mask-position: 0px 3px;
  mask-position: 0px 3px;
}

.sidebar-nav .icons .tooltip-wrap .icon.reporting {
  background-image: url("/static/img/nav/sb-nav-reporting.svg");
}

.sidebar-nav .icons .tooltip-wrap .icon.roadmap {
  background-image: url("/static/img/nav/sb-nav-roadmap.svg");
  background-size: 18px;
  height: 26px;
  background-position: 2px 0;
}

.sidebar-nav .icons .tooltip-wrap .icon {
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  width: 22px;
  height: 22px;
  -webkit-mask-size: 22px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0px 0px;
  mask-size: 22px;
  mask-repeat: no-repeat;
  mask-position: 0px 0px;
}

.sidebar-nav .icons .tooltip-wrap .sb-tooltip {
  left: 48px;
  background: #000333;
  color: #fff;
  padding: 6px 20px 7px 20px;
  top: -4px;
  border-radius: 14px;
  border: none;
  text-align: left;
  width: max-content;
  font-weight: 600;
  transition: all 0.3s;
}

.sidebar-nav .icons .tooltip-wrap .sb-tooltip:after {
  content: " ";
  position: absolute;
  top: 10px;
  left: -7px;
  right: unset;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #000333 transparent transparent;
}

.sidebar-nav .icons .tooltip-wrap .sb-tooltip:before {
  content: none;
}

.nav-pills.header {
  margin-bottom: 20px;
}

.navigation-user, .navigation-tools {
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
  font-size: 18px;
}

.navigation-user .dropdown-toggle, .navigation-tools .dropdown-toggle {
  color: #00054d;
}

.navigation-main {
  text-align: center;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 75px;
  height: calc(100vh - 8rem);
  margin-top: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 991.98px) {
  .navigation-main {
    position: relative;
    top: unset;
    bottom: 0;
    width: 100%;
    height: 4rem;
    padding-left: 5px;
    padding-right: 5px;
    flex-direction: row;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.navigation-main header {
  font-family: sofia-pro, Arial, sans-serif;
  margin: 10px 0;
  color: #00054d;
  font-weight: bold;
}

@media (min-width: 992px) {
  .navigation-main header:after {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navigation-main header {
    background-color: #00054d;
    width: 100%;
    border: 1px solid #e1e2f0;
    padding: 10px 20px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
  }
}
.navigation-main hr {
  border-top: 1px solid #00054d;
  width: 40px;
  margin: 10px;
}

@media (max-width: 991.98px) {
  .navigation-main hr {
    display: none;
  }
}
.navigation-main .flex-wrapper {
  display: flex;
  flex-direction: column;
}

@media (max-width: 991.98px) {
  .navigation-main .flex-wrapper {
    flex-grow: 1;
    padding: 0 5px;
    position: relative;
    width: 100%;
  }
}
.navigation-main .flex-wrapper .items {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .navigation-main .flex-wrapper .items {
    display: flex;
    flex-direction: column;
    position: static !important;
    transform: none !important;
    display: flex;
    background: none;
    border: none;
    min-width: 0;
    padding: 0;
    margin: 0;
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .navigation-main .flex-wrapper .items {
    display: none;
  }
  .navigation-main .flex-wrapper .items.show {
    flex-direction: column;
    width: calc(100% - 20px);
    position: absolute;
    background: white;
    top: 62px;
    left: 5px !important;
    box-shadow: 0 3px 6px 2px #666;
    padding: 20px 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    z-index: 9999;
  }
}
@media (max-width: 991.98px) and (max-width: 767.98px) {
  .navigation-main .flex-wrapper .items.show {
    width: calc(100vw - 30px);
  }
}
@media (max-width: 991.98px) {
  .navigation-main .flex-wrapper .items.show.dropdown-menu-right {
    left: -5px !important;
  }
  .navigation-main .flex-wrapper .items.show .navigation-main-item {
    margin: 0 15px 5px 15px;
    width: 100%;
    height: 45px;
    padding: 0;
    display: flex;
  }
  .navigation-main .flex-wrapper .items.show .navigation-main-item.active {
    border: 0;
    background: #3a3c66;
    margin: 0 15px 5px 15px;
    padding: 0;
    color: #FFFFFF;
  }
  .navigation-main .flex-wrapper .items.show .navigation-main-item.active img {
    filter: brightness(0) invert(1);
  }
  .navigation-main .flex-wrapper .items.show .navigation-main-item:hover {
    border: 0;
    margin: 0 15px 5px 15px;
    background: rgba(0, 109, 157, 0.1);
  }
  .navigation-main .flex-wrapper .items.show .navigation-main-item a {
    font-size: 18px;
    font-weight: normal;
    color: #00054d;
    display: flex !important;
    flex-direction: row;
    width: 100%;
    align-items: center;
  }
  .navigation-main .flex-wrapper .items.show .navigation-main-item a img {
    width: 30px;
    height: 30px;
    box-sizing: initial;
    margin: 0 10px 0 30px;
  }
}
.navigation-main .flex-wrapper .items .navigation-main-item {
  width: 3.5rem;
  height: 3.5rem;
  padding-top: 8px;
  margin-bottom: 8px;
}

.navigation-main .flex-wrapper .items .navigation-main-item img {
  width: 28px;
  height: 28px;
}

.navigation-main .flex-wrapper .items .navigation-main-item.campaigns img {
  width: 35px;
}

@media (max-width: 991.98px) {
  .navigation-main .flex-wrapper .items .navigation-main-item {
    margin: 0 15px 5px 15px;
  }
}
@media (max-width: 991.98px) and (max-width: 520px) {
  .navigation-main .flex-wrapper .items .navigation-main-item {
    margin: 0 2px 5px 2px;
  }
}
@media (max-width: 991.98px) {
  .navigation-main .flex-wrapper .items .navigation-main-item img {
    width: 24px;
    height: 24px;
  }
}
.navigation-main .flex-wrapper .items .navigation-main-item a {
  font-size: 0.5625rem;
  font-weight: bold;
  color: #00054d;
}

.navigation-main .flex-wrapper .items .navigation-main-item.active, .navigation-main .flex-wrapper .items .navigation-main-item:hover {
  border: 1px solid #bcbed4;
  margin-top: -1px;
  margin-bottom: 9px;
}

.navigation-sub {
  margin: 10px 0 0 0;
}

.navigation-sub .nav-link {
  font-family: sofia-pro, Arial, sans-serif;
  padding: 8px 20px;
}

@media (min-width: 768px) {
  .navigation-sub .nav-link.active {
    border-top: 0 !important;
    font-weight: bold;
  }
}
.navigation-sub .nav-link.active {
  background: #3a3c66;
  color: white;
}

.navigation-sub .nav-item:first-child .nav-link:not(.active) {
  padding-left: 0;
}

.navigation-sub a {
  color: #646464;
}

.navigation-sub a:hover {
  color: #000fe3;
}

/* Bootstrap Toggle v2.2.0 corrections for Bootsrtap 4 */
.toggle > .toggle-group {
  background: white;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  color: #666;
}

.toggle-off {
  padding-left: 0;
  padding-right: 7px;
}

.toggle-on {
  padding-right: 0;
  padding-left: 7px;
}

.toggle-off, .toggle-on {
  line-height: 22px;
}

.toggle-off .btn, .toggle-on .btn {
  text-align: center;
}

.toggle.off {
  border-color: rgba(0, 0, 0, 0.25);
}

.toggle-handle {
  background-color: white;
  border: thin rgba(0, 0, 0, 0.25) solid;
}

label.btn {
  border: none;
}

.toggle-subscription-label {
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  cursor: pointer;
  opacity: 0.5;
}

.toggle-subscription-label.active {
  color: #00054d;
  transform: scale(1.3);
  opacity: 1;
}

.toggle-subscription-period-container {
  margin-top: 50px;
  margin-bottom: 50px;
}

.opacity-50 {
  opacity: 0.5;
}

.custom-checkbox .custom-control-label::before {
  display: none;
}

.slider {
  transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
}

.slider.slider-disabled {
  opacity: 0.5;
}

.slider.slider-horizontal {
  width: 97%;
}

@media (max-width: 576px) {
  .slider.slider-horizontal {
    width: 91%;
  }
}
.slider-handle {
  width: 22px;
  height: 22px;
  top: -7px;
  margin-left: -7px !important;
  background: #00054d;
  transition: background 0.3s;
  -webkit-transition: background 0.3s;
}

.slider.slider-disabled .slider-handle {
  background: #00054d;
}

.slider-selection.tick-slider-selection {
  background: rgb(114, 142, 150);
}

.slider-tick.in-selection,
.slider-track-low,
.slider-track-high {
  background: rgb(114, 142, 150);
}

.slider.slider-horizontal .slider-track {
  height: 1px;
  margin-top: 0px;
  top: 12.5%;
}

.slider-tick {
  width: 6px;
  height: 6px;
  background: rgb(114, 142, 150);
  opacity: 1;
}

.slider-tick-label {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.slider-tick-label.active {
  color: #00054d;
  transform: scale(1.6);
}

@media (max-width: 768px) {
  .slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
    width: 12% !important;
    font-size: 12px;
  }
  .slider.slider-horizontal .slider-tick-label-container .slider-tick-label.active {
    transform: scale(1);
  }
}
.slider.slider-horizontal .slider-tick, .slider.slider-horizontal .slider-handle {
  margin-left: 0px;
}

.slider-subscription-tier-label {
  font-size: 1.16em;
}

.slider {
  width: 90% !important;
}

.asteriskField {
  display: none;
}

.toggle-on {
  text-align: left;
}

.toggle-off {
  text-align: right;
}

form legend {
  font-size: 1rem;
}

/*
 * CSAT Reactions  Details Modal Dialog
 */
.modal-reaction-details .reactions-modal-detailsTable-errorMessage {
  display: none;
  font-size: 1.3em;
  margin: 1em;
  text-align: center;
}

.modal-reaction-details.error .reactions-modal-detailsTable-errorMessage {
  display: block;
}

.modal-reaction-details.error .reactions-modal-activity,
.modal-reaction-details.error .reactions-modal-detailsTable {
  display: none;
}

.modal-reaction-details .reactions-modal-detailsTable-errorMessage p {
  max-width: 500px;
  margin: 0 auto;
}

.modal-reaction-details .reactions-modal-detailsTable-errorMessage .error-icon {
  text-align: center;
  font-size: 4em;
  color: #999;
  opacity: 0.2;
  margin-top: 1rem;
}

.modal-reaction-details .reactions-modal-header {
  margin: -15px -15px 15px;
  padding: 15px;
  background-color: #f9f9fc;
  border-bottom: 1px solid #e5e5e5;
  overflow: visible;
  min-height: 80px;
}

@media (max-width: 991.98px) {
  .modal-reaction-details .reactions-modal-header .reaction-details-comment.rounded {
    max-width: 100%;
  }
  .modal-reaction-details .reactions-modal-header .reaction-details-comment.rounded::before, .modal-reaction-details .reactions-modal-header .reaction-details-comment.rounded::after {
    display: none;
  }
  .modal-reaction-details .reactions-modal-header .reaction-details-type {
    width: 100%;
    margin-bottom: 10px;
  }
  .modal-reaction-details .reactions-modal-header .reaction-details-type .reaction-type-change-button {
    right: 50%;
    margin-right: -30px;
  }
}
.modal-reaction-details .reaction-details-type {
  width: 18%;
  float: left;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.modal-reaction-details .reaction-details-type .change-type-dropdown {
  min-width: 0 !important;
  left: 1em;
}

.modal-reaction-details .reaction-details-type .change-type-dropdown img {
  margin-right: 0;
}

.modal-reaction-details .csat-reaction-type-positive .change-type-dropdown .sentiment-positive {
  display: none;
}

.modal-reaction-details .csat-reaction-type-neutral .change-type-dropdown .sentiment-neutral {
  display: none;
}

.modal-reaction-details .csat-reaction-type-negative .change-type-dropdown .sentiment-negative {
  display: none;
}

.reactions-modal-detailsTable .reactions-modal-detailsTable-row.editing .reactions-modal-detailsTable-form {
  display: block !important;
}

.reactions-modal-detailsTable .reactions-modal-detailsTable-row.editing .reactions-modal-detailsTable-form .agent-controls {
  min-width: unset;
}

.reactions-modal-detailsTable .reactions-modal-detailsTable-row.editing .reactions-modal-detailsTable-value span.value, .reactions-modal-detailsTable .reactions-modal-detailsTable-row.editing .reactions-modal-detailsTable-value span.value + a {
  display: none;
}

.reactions-modal-detailsTable .reactions-modal-detailsTable-row.editing .reactions-modal-detailsTable-value .edit-button {
  opacity: 0.3;
  color: #333;
}

.reactions-modal-detailsTable .reactions-modal-detailsTable-row .reactions-modal-detailsTable-form {
  display: none;
}

.reactions-modal-detailsTable .reactions-modal-detailsTable-row .reactions-modal-detailsTable-value.additional-details .detail-row {
  display: flex;
}

.reactions-modal-detailsTable .reactions-modal-detailsTable-row .reactions-modal-detailsTable-value.additional-details .detail-row .label {
  margin-right: 7px;
  font-weight: bold;
}

.error-message {
  color: #c70a2a;
  font-size: 16px;
}

.error-message span {
  display: block;
}

.modal-reaction-details .reaction-details-type img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.reaction-type-change-button {
  position: absolute;
  right: 25px;
  top: calc(100% - 16px);
  opacity: 0.3;
}

.modal-reaction-details .reaction-details-comment {
  border: 1px solid #e5e5e5;
  display: inline-block;
  padding: 5px;
  position: relative;
  border-radius: 2px;
  max-width: 82%;
}

.modal-reaction-details .reaction-details-comment:empty {
  display: none;
}

.modal-reaction-details .reaction-details-comment-empty {
  display: none;
}

.modal-reaction-details .reaction-details-comment-empty span {
  color: #aaa;
}

.modal-reaction-details .reaction-details-comment:empty + .reaction-details-comment-empty {
  display: block;
}

.modal-reaction-details .reaction-details-comment:after,
.modal-reaction-details .reaction-details-comment:before {
  right: 100%;
  top: 15px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.modal-reaction-details .reaction-details-comment:after {
  border-color: transparent;
  border-right-color: #f8f8f8;
  border-width: 5px;
  margin-top: -5px;
}

.modal-reaction-details .reaction-details-comment:before {
  border-color: transparent;
  border-right-color: #e5e5e5;
  border-width: 6px;
  margin-top: -6px;
}

.modal-reaction-details .csat-reaction-type-positive .reaction-details-comment {
  background: rgb(239, 247, 239);
  border: 1px solid rgb(42, 148, 96);
}

.modal-reaction-details .csat-reaction-type-positive .reaction-details-comment:after {
  border-right-color: rgb(239, 247, 239);
}

.modal-reaction-details .csat-reaction-type-positive .reaction-details-comment:before {
  border-right-color: rgb(42, 148, 96);
}

.modal-reaction-details .csat-reaction-type-positive .reaction-details-comment p:after,
.modal-reaction-details .csat-reaction-type-positive .reaction-details-comment p:before {
  color: rgba(42, 148, 96, 0.3);
}

.modal-reaction-details .csat-reaction-type-neutral .reaction-details-comment {
  background-color: rgba(244, 217, 74, 0.15);
  border: 1px solid rgb(244, 217, 74);
}

.modal-reaction-details .csat-reaction-type-neutral .reaction-details-comment:after {
  border-right-color: rgb(240, 240, 240);
}

.modal-reaction-details .csat-reaction-type-neutral .reaction-details-comment:before {
  border-right-color: rgb(244, 217, 74);
}

.modal-reaction-details .csat-reaction-type-neutral .reaction-details-comment p:after,
.modal-reaction-details .csat-reaction-type-neutral .reaction-details-comment p:before {
  color: rgba(244, 217, 74, 0.5);
}

.modal-reaction-details .csat-reaction-type-negative .reaction-details-comment {
  background: rgb(255, 238, 238);
  border: 1px solid rgb(214, 71, 78);
}

.modal-reaction-details .csat-reaction-type-negative .reaction-details-comment:after {
  border-right-color: rgb(255, 238, 238);
}

.modal-reaction-details .csat-reaction-type-negative .reaction-details-comment:before {
  border-right-color: rgb(214, 71, 78);
}

.modal-reaction-details .csat-reaction-type-negative .reaction-details-comment p:after,
.modal-reaction-details .csat-reaction-type-negative .reaction-details-comment p:before {
  color: rgba(214, 71, 78, 0.3);
}

.reactions-modal-detailsTable {
  overflow: visible;
}

.reactions-modal-activities .reactions-modal-activity-details {
  display: none;
}

.reactions-modal-activities .reactions-modal-activity-details:nth-child(-n+10),
.reactions-modal-activities.expanded .reactions-modal-activity-details {
  display: flex;
}

.reactions-modal-activities.expanded .show-less-button {
  display: block;
}

.reactions-modal-activities.expanded .show-more-button {
  display: none;
}

.reactions-modal-activities .show-less-button,
.reactions-modal-activities .show-more-button,
.reactions-modal-activities.has-more-options.expanded .show-more-button {
  display: none;
}

.reactions-modal-activities.has-more-options .show-more-button {
  display: block;
}

.reactions-modal-activity-details .reactions-modal-activity-content em {
  white-space: pre-wrap;
}

@keyframes colorChange {
  0% {
    background-color: #f0f1fa;
  }
  40% {
    background-color: #e1e2f0;
  }
  100% {
    background-color: #f0f1fa;
  }
}
.datepicker-wrap {
  position: relative;
  display: flex;
  align-items: end;
}

.datepicker-wrap.active #datepicker {
  color: #000a9f;
  text-decoration: underline;
}

.datepicker-wrap.active #datepicker::after {
  background-image: linear-gradient(282deg, #000fe3, #9d3aff) !important;
}

.datepicker-wrap.active .calendar-presets-wrap {
  opacity: 1;
  top: 50px;
  pointer-events: all;
}

.datepicker-wrap.show-presets-mobile .preset-options-wrap {
  display: flex !important;
}

@media (max-width: 768px) {
  .datepicker-wrap.show-presets-mobile .air-datepicker {
    display: none !important;
  }
}
.datepicker-wrap #datepicker {
  width: auto;
  min-width: 100px;
  height: 36px;
  font-family: "Sofia Pro", sans-serif;
  font-size: 21px;
  font-weight: normal;
  line-height: 25px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.datepicker-wrap #datepicker::after {
  content: "";
  background: #00054d;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  width: 22px;
  height: 22px;
  -webkit-mask-size: 22px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0px 0px;
  mask-size: 20px;
  mask-repeat: no-repeat;
  mask-position: 0px 0px;
  margin: 0 0px 4px 8px;
  -webkit-mask-image: url("/static/img/calendar.svg");
  mask-image: url("/static/img/calendar.svg");
}

.datepicker-wrap #datepicker:hover {
  color: #000a9f;
  text-decoration: underline;
}

.datepicker-wrap #datepicker:hover::after {
  background-image: linear-gradient(282deg, #000fe3, #9d3aff) !important;
}

.datepicker-wrap .calendar-presets-wrap {
  position: absolute;
  display: flex;
  flex-direction: row;
  border-radius: 20px;
  background: linear-gradient(180deg, #FFF 0%, #F9F9FC 100%);
  box-shadow: 0 12px 17px 0px #6d6f94;
  z-index: 999;
  padding: 20px;
  top: 50px;
  width: 800px;
  left: 0;
  margin-bottom: 20px;
  transition: left 0.3s ease;
  opacity: 0;
  top: 60px;
  transition: top 0.2s ease-out, bottom 0.2s ease-out, opacity 0.1s ease;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .datepicker-wrap .calendar-presets-wrap {
    width: calc(100vw - 40px);
    max-width: 750px;
  }
}
@media (max-width: 768px) {
  .datepicker-wrap .calendar-presets-wrap {
    width: calc(100vw - 40px);
    max-width: 480px;
    flex-direction: column;
  }
}
.datepicker-wrap .calendar-presets-wrap .preset-options-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  min-width: 200px;
  min-height: 352px;
  flex: 1;
  margin-left: 20px;
  padding-left: 17px;
  padding-top: 5px;
  border-left: 1px solid #bcbed4;
}

@media (max-width: 768px) {
  .datepicker-wrap .calendar-presets-wrap .preset-options-wrap {
    display: none;
    margin-left: 0px;
    padding-left: 0px;
    border-left: none;
  }
}
.datepicker-wrap .calendar-presets-wrap .preset-options-wrap .preset-option {
  width: calc(50% - 5px);
  height: 49px;
  padding: 7px 10px 8px 15px;
  border-radius: 15px;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 5px 5px 5px;
  overflow: hidden;
  transition: all 0.2s;
}

.datepicker-wrap .calendar-presets-wrap .preset-options-wrap .preset-option:nth-child(odd) {
  margin-left: 0px;
}

.datepicker-wrap .calendar-presets-wrap .preset-options-wrap .preset-option:nth-child(even) {
  margin-right: 0px;
}

.datepicker-wrap .calendar-presets-wrap .preset-options-wrap .preset-option:last-child {
  margin-bottom: 0;
}

.datepicker-wrap .calendar-presets-wrap .preset-options-wrap .preset-option:hover {
  background-color: #f0f1fa;
  z-index: 1;
}

.datepicker-wrap .calendar-presets-wrap .preset-options-wrap .preset-option.active {
  background: linear-gradient(147deg, #00054d 70%, #000a9f 100%);
  box-shadow: 0px 4px 6px 2px #bcbed4;
  z-index: 2;
}

.datepicker-wrap .calendar-presets-wrap .preset-options-wrap .preset-option.active h3, .datepicker-wrap .calendar-presets-wrap .preset-options-wrap .preset-option.active .date-range {
  color: #FFFFFF;
}

.datepicker-wrap .calendar-presets-wrap .preset-options-wrap .preset-option:hover .date-range, .datepicker-wrap .calendar-presets-wrap .preset-options-wrap .preset-option.active .date-range {
  opacity: 1;
  height: 20px;
}

.datepicker-wrap .calendar-presets-wrap .preset-options-wrap .preset-option h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #00054d;
}

.datepicker-wrap .calendar-presets-wrap .preset-options-wrap .preset-option .date-range {
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.5, 1, 0.2, 1);
  opacity: 0;
  height: 0px;
}

.datepicker-wrap .calendar-presets-wrap .preset-mobile-toggle {
  display: none;
  background-color: #00054d;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
  text-align: center;
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .datepicker-wrap .calendar-presets-wrap .preset-mobile-toggle {
    display: block;
  }
}
.datepicker-wrap .calendar-presets-wrap .air-datepicker {
  display: grid;
  box-shadow: none;
  flex: 1;
  background: none;
  max-width: 480px;
  width: 100%;
}

.datepicker-wrap .calendar-presets-wrap .air-datepicker .air-datepicker-cell.-in-range- {
  background-color: #f0f1fa;
}

.datepicker-wrap .calendar-presets-wrap .air-datepicker .air-datepicker-cell.-selected- {
  background-color: #00054d;
  color: #FFFFFF !important;
}

.datepicker-wrap .calendar-presets-wrap .air-datepicker .air-datepicker-cell.-current- {
  color: #9d3aff;
  font-weight: bold;
}

.datepicker-wrap .calendar-presets-wrap .air-datepicker .air-datepicker-cell.-focus- {
  background-color: #6d6f94;
  color: #FFFFFF !important;
}

.datepicker-wrap .calendar-presets-wrap .air-datepicker .air-datepicker-cell.-range-to-, .datepicker-wrap .calendar-presets-wrap .air-datepicker .air-datepicker-cell.-range-from- {
  background-color: #f0f1fa;
  color: #000333 !important;
}

.datepicker-wrap .calendar-presets-wrap .air-datepicker .air-datepicker-cell.-range-to-.-selected-, .datepicker-wrap .calendar-presets-wrap .air-datepicker .air-datepicker-cell.-range-from-.-selected- {
  background-color: #00054d;
  color: #FFFFFF !important;
}

.datepicker-wrap .calendar-presets-wrap .air-datepicker .air-datepicker-cell.-range-to-:not(.-selected-).-focus-, .datepicker-wrap .calendar-presets-wrap .air-datepicker .air-datepicker-cell.-range-from-:not(.-selected-).-focus- {
  border: 1px solid #f0f1fa;
  color: #00054d !important;
  animation: colorChange 1.5s infinite linear !important;
}

.datepicker-wrap .calendar-presets-wrap .air-datepicker .air-datepicker-cell.-range-to-:not(.-selected-) {
  border-right: 2px solid #00054d !important;
}

.datepicker-wrap .calendar-presets-wrap .air-datepicker .air-datepicker-cell.-range-from-:not(.-selected-) {
  border-left: 2px solid #00054d !important;
}

.datepicker-wrap .calendar-presets-wrap .air-datepicker .air-datepicker-body .-months-, .datepicker-wrap .calendar-presets-wrap .air-datepicker .air-datepicker-body .-years- {
  grid-auto-rows: 70px;
}

.filter-settings {
  width: 100%;
  background: #f9f9fc;
  flex-direction: column;
  overflow: visible;
  transition: height 0.3s ease-in 0s, padding 0.1s linear 0.2s, border 0.1s linear 0s, margin 0.1s ease-out 0s, box-shadow 0.1s linear 0s;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid #cbccd5;
  box-shadow: 0 0px 9px 1px #cbccd5;
}

.filter-settings.hide {
  margin: 0;
  padding: 0;
  height: 0 !important;
  border: 0px solid #cbccd5;
  box-shadow: none;
  transition: height 0.2s linear 0.4s, padding 0.1s linear 0.4s, border 0.2s linear 0.4s, margin 0.6s ease-out 0.4s, box-shadow 0.2s linear 0.4s;
  display: block !important;
  overflow: hidden;
}

.filter-settings.hide .transition-wrap {
  opacity: 0;
  transition: opacity 0.2s ease-in 0s;
}

.filter-settings.no-transition {
  transition: none !important;
}

.filter-settings.no-transition .transition-wrap {
  transition: none !important;
}

.filter-settings .transition-wrap {
  opacity: 1;
  transition: opacity 0.2s ease-in 0.4s;
}

.filter-settings .loader-bar {
  transition: all 0.01s !important;
  width: 0%;
  position: relative;
  top: -21px;
  height: 1px;
  border-radius: 2px;
  background-color: #007b80;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.filter-settings .loader-bar.disabled {
  opacity: 0;
  width: 100% !important;
  transition: all 1s !important;
}

.filter-settings .csat-filters {
  display: flex;
  flex-direction: column;
}

.filter-settings .filter-box {
  display: flex;
  flex-wrap: wrap;
}

.filter-settings .filter-box .filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.filter-settings .filter-box .filter-wrapper .filter {
  width: calc(25% - 20px);
  margin: 0px 20px 20px 0;
}

.filter-settings .filter-box .filter-wrapper .filter:nth-child(4) {
  margin-right: 20px;
}

.filter-settings .filter-box .filter-wrapper .filter.filter-groups label {
  display: flex;
  position: relative;
}

.filter-settings .filter-box .filter-wrapper .filter.filter-groups label .tooltip-wrap {
  margin-left: 8px;
  margin-top: -1px;
}

.filter-settings .filter-box .filter-wrapper .filter.filter-groups label .tooltip-wrap .sb-tooltip {
  left: 0px;
  z-index: 9999;
}

.filter-settings .filter-box .filter-wrapper .filter.filter-groups label .tooltip-wrap .sb-tooltip::before {
  top: -14px;
  left: 55px;
  border-bottom: 14px solid #cbccd5;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: unset;
  right: unset;
}

.filter-settings .filter-box .filter-wrapper .filter.filter-groups label .tooltip-wrap .sb-tooltip::after {
  top: -12px;
  left: 55px;
  border-bottom: 14px solid #fff;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: unset;
  right: unset;
}

@media (max-width: 1024px) {
  .filter-settings .filter-box .filter-wrapper .filter {
    width: calc(33.3333333333% - 15px);
    margin: 0px 20px 20px 0;
  }
  .filter-settings .filter-box .filter-wrapper .filter:nth-child(3n) {
    margin-right: 0;
  }
  .filter-settings .filter-box .filter-wrapper .filter:nth-child(4) {
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .filter-settings .filter-box .filter-wrapper .filter {
    width: 100%;
    margin: 0px 0px 20px 0;
  }
  .filter-settings .filter-box .filter-wrapper .filter:nth-child(3) {
    margin-right: unset;
  }
  .filter-settings .filter-box .filter-wrapper .filter:nth-child(4) {
    margin-right: unset;
  }
}
.filter-settings .filter-box #sentiment-filters {
  display: flex;
  justify-content: space-between;
}

.filter-settings .filter-box #sentiment-filters img {
  cursor: pointer;
  padding: 5px;
  background: white;
  box-shadow: 0 2px 3px 1px #cbccd5;
  border-radius: 5px;
  width: calc(33.3333333333% - 10px);
  height: 36px;
  margin-right: 10px;
}

.filter-settings .filter-box #sentiment-filters img:hover {
  box-shadow: 0 3px 3px 2px #cbccd5;
}

.filter-settings .filter-box #sentiment-filters img:nth-child(5), .filter-settings .filter-box #sentiment-filters img:nth-child(6) {
  margin-right: 0;
}

.filter-settings input, .filter-settings select, .filter-settings .selectize-input {
  border: solid 1px #cbccd5;
  background-color: white;
  border-radius: 0 !important;
  min-height: 40px;
  padding: 7px;
}

.filter-settings input:focus, .filter-settings input.focus, .filter-settings select:focus, .filter-settings select.focus, .filter-settings .selectize-input:focus, .filter-settings .selectize-input.focus {
  border: solid 1px #000333;
  box-shadow: none;
  outline: none;
  background: #fff;
}

.filter-settings input#comments-filter-selectized, .filter-settings select#comments-filter-selectized, .filter-settings .selectize-input#comments-filter-selectized {
  width: 0px !important;
}

.filter-settings .selectize-control .selectize-input {
  background: white;
  padding: 7px 6px 3px 6px;
  border: 1px solid #e1e2f0;
  margin-bottom: -5px;
  cursor: pointer;
}

.filter-settings .selectize-control .selectize-input.has-items {
  padding-left: 6px;
}

.filter-settings .selectize-control .selectize-input.has-items input {
  width: 0% !important;
}

.filter-settings .selectize-control .selectize-input.full {
  background: white !important;
}

.filter-settings .selectize-control .selectize-input.full:first-child {
  color: #1f214d;
}

.filter-settings .selectize-control .selectize-input input {
  width: 100% !important;
}

.filter-settings .selectize-dropdown {
  padding: 5px;
}

.filter-settings .selectize-dropdown .selectize-dropdown-content {
  overflow-y: auto;
  max-height: 260px;
}

.filter-settings .selectize-dropdown .selectize-dropdown-content::-webkit-scrollbar {
  width: 5px;
}

.filter-settings .selectize-dropdown .selectize-dropdown-content::-webkit-scrollbar-track {
  background: #e1e2f0;
}

.filter-settings .selectize-dropdown .selectize-dropdown-content::-webkit-scrollbar-thumb {
  background-color: #bcbcc1;
  border-radius: 5px;
}

.filter-settings .selectize-dropdown .option {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px 5px 5px 5px;
  border-bottom: 1px solid #e1e2f0;
}

.filter-settings .selectize-dropdown .option:last-of-type {
  border: none;
}

.filter-settings .datepicker-wrap {
  display: flex;
  font-size: 18px;
  padding-bottom: 20px;
  align-items: center;
  color: #1f214d;
  border-bottom: 1px solid #cbccd5;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 768px) {
  .filter-settings .datepicker-wrap {
    align-items: baseline;
    flex-direction: column;
  }
}
.filter-settings .datepicker-wrap .title {
  font-weight: bold;
  white-space: nowrap;
}

.filter-settings .datepicker-wrap #datepicker {
  margin-left: 10px;
  font-size: 18px !important;
  height: 24px;
  margin-bottom: -4px;
}

@media (max-width: 768px) {
  .filter-settings .datepicker-wrap #datepicker {
    margin-left: 0px;
  }
}
.filter-settings .filters-title {
  font-size: 17px;
  margin-bottom: 20px;
  font-weight: bold;
}

.filter-settings .selectize-control.multi .selectize-input > div {
  color: white;
  background: #007b80;
  margin-left: 5px;
  border-radius: 4px;
}

.filter-settings .filter label {
  margin-bottom: 10px;
}

.filter-settings .bottom-controls {
  padding: 20px 0px 0 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #cbccd5;
}

@media (max-width: 768px) {
  .filter-settings .bottom-controls {
    flex-direction: column;
    align-items: center;
  }
}
.filter-settings .bottom-controls .mini-toggle {
  display: flex;
}

@media (max-width: 768px) {
  .filter-settings .bottom-controls .mini-toggle {
    margin-bottom: 20px;
  }
}
.status-wrap {
  display: flex;
  width: 100%;
  align-items: center;
}

@media (max-width: 1024px) {
  .status-wrap {
    margin-top: 10px;
  }
}
.status-wrap .filter-status {
  margin-left: 20px;
  font-size: 19px;
  color: #c70a2a;
  line-height: normal;
}

@media (max-width: 1024px) {
  .status-wrap .filter-status {
    margin: 0 10px;
  }
}
.status-wrap .filter-status.active {
  color: #007b80;
}

.status-wrap .filter-status .category-name {
  text-transform: capitalize;
}

.status-wrap .date-range {
  font-size: 19px;
  border-right: 1px solid #cbccd5;
  padding-right: 20px;
  line-height: initial;
  margin-left: 20px;
}

@media (max-width: 1024px) {
  .status-wrap .date-range {
    margin: 0;
    padding-right: 10px;
  }
}
@media (max-width: 1024px) {
  .status-wrap .settings-toggle .label {
    display: none;
  }
}
.status-wrap .settings-toggle-wrap .filters-icon .line {
  background-color: #007b80;
}

.status-wrap .settings-toggle-wrap .filters-icon .line .dot {
  border-color: #007b80;
  background-color: #FFFFFF;
}

.dataTables_filter {
  border: solid 1px #cbccd5;
  position: relative;
  padding-left: 30px;
  margin-left: 10px;
}

.dataTables_filter input {
  border: none;
  margin: 0;
  padding: 0;
  min-height: 38px;
}

.dataTables_filter img {
  position: absolute;
  left: 10px;
  top: 12px;
}

table.dataTable {
  table-layout: fixed;
  max-width: none;
  /* to override a property from DataTables that prevents our width rule from taking effect */
  width: 100%;
  border-collapse: collapse !important; /* to override a 'separate !important' rule from base datatables */
  border-color: transparent;
}

table.dataTable th.sorting,
table.dataTable th.sorting_asc,
table.dataTable th.sorting_desc {
  border: none !important;
}

table.dataTable th.sorting:after,
table.dataTable th.sorting_asc:after,
table.dataTable th.sorting_desc:after {
  background: url("/static/icons/down.svg");
  transition: all 0.2s;
  width: 12px;
  height: 5px;
  content: "";
  background-repeat: no-repeat;
  display: inline-block;
  position: initial;
  margin-left: 8px;
  margin-right: -40px;
  margin-bottom: 1px;
}

table.dataTable th.sorting_asc,
table.dataTable th.sorting_desc {
  color: #1d1d1b;
  font-weight: bold !important;
}

table.dataTable th.sorting_desc:after {
  transform: rotate(180deg);
}

.table th {
  border-top: none;
}

table.dataTable th {
  border-bottom: 4px solid #fff !important;
  height: 32px;
}

table td {
  border-bottom: 1px solid rgba(0, 5, 77, 0.1);
  padding: 8px;
}

table td:not(.wrapping) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* give a little extra left padding to the first column of data */
table.dataTable:not(.mktg) > tbody > tr > td:first-child {
  padding-left: 9px;
}

/* this is used for CSAT exclude/include buttons */
table:not(.mktg) td .btn {
  padding: 4px 8px;
}

tr.excluded,
tr.odd.excluded {
  background-color: rgba(242, 222, 222, 0.5) !important;
}

tr.even td.sorting_1,
tr.even td.sorting_2,
tr.even td.sorting_3,
tr.odd,
tr.odd td.sorting_1,
tr.odd td.sorting_2,
tr.odd td.sorting_3,
tr.odd + tr:not([role=row]) {
  background-color: #f9f9fc !important;
}

tr.even td.sorting_1,
tr.even td.sorting_2,
tr.even td.sorting_3,
tr.odd td.sorting_1,
tr.odd td.sorting_2,
tr.odd td.sorting_3 {
  background-color: transparent !important;
}

tr.even > td:not(:first-of-type),
tr.odd > td:not(:first-of-type) {
  margin-left: 10px;
}

table.dataTable thead th.sorting_asc,
table.dataTable thead th.sorting_desc {
  border-bottom-color: #00054d !important;
}

/* drop the default sort markers */
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
  content: "" !important;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  opacity: 0.3 !important;
}

table.dataTable thead .sorting_asc:after {
  opacity: 1 !important;
  /* overridden from sort-by-attributes in halflings to glyphicon-chevron-up in glyphicons pro */
}

table.dataTable thead .sorting_desc:after {
  opacity: 1 !important;
  /* overridden from sort-by-attributes-alt in halflings to glyphicon-chevron-down in glyphicons pro */
}

table.dataTable td.highlight {
  font-weight: bold;
}

/* CSS tabs */
.dataTables_info {
  padding-top: 12px !important;
  float: left;
}

.dataTables_length select {
  margin-left: 4px;
  margin-right: 4px;
  display: inherit;
}

.dataTables_filter {
  border: solid 1px #cbccd5;
  border-radius: 0px !important;
  position: relative;
  padding-left: 30px;
  margin-left: 10px;
  float: right;
}

.dataTables_filter img {
  position: absolute;
  left: 10px;
  top: 12px;
}

.dataTables_filter input {
  margin-bottom: 3px;
  width: 200px !important;
  display: inline;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 38px !important;
  border-radius: 5px !important;
}

table.dataTable thead > tr > th {
  padding-right: 7px !important;
  /* default datatable styling adds 30px of right paddding */
  padding-left: 7px !important;
}

th div.dataTables_thInnerDiv {
  float: left;
}

div.dataTables_wrapper div.dataTables_length label {
  float: left;
}

div.dt-buttons a {
  line-height: 21px;
}

/** USE GLYPHICONS PRO INSTEAD OF HALFLINGS IN DATATABLES */
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
  font-family: "Glyphicons Regular" !important;
  /* Note that the character positions in Glyphicons Pro are *not*
     the same, but all the characters are overridden above anyway! */
  right: 0;
  opacity: 1 !important;
  background-color: #FFFFFF;
  font-size: 10px !important;
  top: unset !important;
  bottom: 0.9em;
  line-height: unset !important;
}

/* Use this span to include text in datatable header cells, which only appear in the DataTable Buttons export files. */
table span.export-header {
  display: none;
}

@media (max-width: 767px) {
  div.dataTables_wrapper div.dataTables_filter,
  div.dataTables_wrapper div.dataTables_info,
  div.dataTables_wrapper div.dataTables_length,
  div.dataTables_wrapper div.dataTables_paginate {
    text-align: right !important;
  }
}
@media (max-width: 767px) {
  table.dataTable {
    font-size: 12px;
  }
  table td {
    padding: 5px !important;
  }
}
@media (min-width: 990px) {
  div.dataTables_paginate.paging_simple_numbers {
    float: right;
  }
  div.dataTables_wrapper div.dataTables_length label {
    float: left;
  }
  div.dt-buttons {
    float: right;
    margin: 2px 40px 0 0;
  }
}
@media (max-width: 480px) {
  .dataTables_filter,
  .dataTables_length {
    float: left;
  }
  .dataTables_filter input {
    margin-left: 0;
  }
  .dataTables_paginate,
  div.dt-buttons {
    display: block;
    clear: both;
    float: none !important;
  }
  .dataTables_paginate ul li a {
    padding-left: 7px;
    padding-right: 7px;
  }
  div.dt-buttons {
    float: left;
    padding-top: 0;
  }
  .btn-group {
    white-space: inherit;
  }
}
@media (max-width: 767px) {
  .dataTables_info {
    width: 100%;
    float: none;
    margin-bottom: 5px;
  }
  .dt-buttons.btn-group {
    text-align: right;
  }
}
/**
 * DataTables - Bootstrap Responsive
 */
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
  background-color: #00054d;
}

table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
  background-color: #00054d;
}

table .dataTables_empty {
  background-color: white;
  padding: 3em 0;
  font-size: 1.7142857143em;
}

@media (max-width: 768px) {
  table .dataTables_empty {
    padding: 2em 1em !important;
  }
}
table .not-configured-data-table-message {
  padding-bottom: 1em;
  color: #aaa;
  max-width: 600px;
  font-weight: 300;
  margin: 0 auto;
  line-height: 1.7142857143em;
}

table .btn.btn-warning {
  padding: 0.5em 1em;
}

/**
 * Selectize
 */
.selectize-control.has-error.has-feedback .selectize-input:after,
.selectize-control.has-warning.has-feedback .selectize-input:after {
  border: none;
}

.selectize-control.has-error {
  border-color: #c70a2a;
}

.selectize-control.multi .selectize-input > div {
  padding: 2px 10px;
  margin-left: 5px;
  border-radius: 5px;
  line-height: 22px;
  padding-right: 29px !important;
  background-color: #007b80;
  color: #FFFFFF;
}

.selectize-control.multi .selectize-input > div.active {
  background-color: #007b80;
  color: #FFFFFF;
  border: none;
}

.selectize-control.plugin-remove_button [data-value] .remove {
  font-size: 16px;
  right: 0;
  width: 24px;
  line-height: 23px;
}

.has-warning .selectize-input {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .selectize-input:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

@media screen and (min-width: 768px) {
  .form-group.with-alert-box label {
    vertical-align: top;
  }
}
@media screen and (min-width: 1025px) {
  .form-group.with-alert-box label {
    margin-top: 10px;
  }
}
.selectize-input.full {
  background-color: #fff !important;
}

.selectize-control.single .selectize-input {
  padding: 5px 6px !important;
}

.selectize-control.single .selectize-input.has-items {
  padding: 5px 30px 3px 8px !important;
}

.selectize-input {
  padding: 5px 6px;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #bcbed4;
  border-radius: 0 !important;
}

.selectize-input.has-items {
  padding: 5px 0 3px 0 !important;
}

.snippet-content.form-control {
  font-size: 12px;
  font-family: monospace, sans-serif;
  min-height: 12em;
  resize: vertical;
  margin-bottom: 15px;
}

.top-banner .top-banner-container {
  background-color: rgba(0, 5, 77, 0.05);
  border-radius: 0.5rem;
  padding: 1em;
  vertical-align: sub;
  position: relative;
}

.top-banner .top-banner-container-orange {
  background-color: rgba(0, 5, 77, 0.05);
}

.top-banner .top-banner-step {
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
  border-radius: 100%;
  text-align: center;
  border: 2px solid;
  color: #00054d;
  float: left;
}

@media (min-width: 768px) {
  .top-banner .top-banner-step {
    width: 32px;
    height: 32px;
    font-size: 32px;
    line-height: 32px;
    margin-left: 10px;
  }
}
.top-banner .top-banner-logo {
  margin-left: 0.5em;
  margin-right: 1em;
  height: 2.7em;
  float: left;
}

.top-banner .top-banner-close-button {
  padding: 0 0 1em 1em;
  cursor: pointer;
}

.top-banner .top-banner-text-container {
  margin-left: 5em;
  line-height: 1.5em;
}

.top-banner .top-banner-headline {
  font-size: 1.2857142857em;
  font-weight: 400;
  vertical-align: inherit;
}

.top-banner .top-banner-content {
  font-size: 1em;
  font-weight: 400;
  vertical-align: inherit;
}

.top-banner .btn.top-banner-button {
  margin-top: 0.5em;
}

@media (max-width: 479px) {
  .top-banner .btn.top-banner-button {
    display: block;
  }
}
@media (min-width: 480px) {
  .top-banner .btn.top-banner-button {
    display: inline-block;
  }
}
.c3 path.domain {
  stroke: none;
}

.c3-line {
  stroke-width: 5px;
}

.c3-grid line {
  opacity: 0.2 !important;
  stroke: #00054d !important;
}

.tick .c3 line {
  stroke: none;
}

.c3-axis-y text {
  font-size: 0.8rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.c3-axis-x text {
  font-size: 0.8rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.c3-ygrid {
  stroke-dasharray: 0;
}

.stepper {
  margin-top: 70px;
  margin-bottom: 20px;
  color: #aaa;
}

.stepper .step {
  position: relative;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 18px;
  width: 200px;
  color: #00054d;
}

.stepper .step:nth-child(1)::before {
  content: "1";
}

.stepper .step:nth-child(2)::before {
  content: "2";
}

.stepper .step:nth-child(2)::after {
  content: "";
  display: inline-block;
  width: 176px;
  height: 1px;
  background-color: #6d6f94;
  top: -41px;
  left: -87px;
  position: absolute;
}

.stepper .step:nth-child(3)::before {
  content: "3";
}

.stepper .step:nth-child(3)::after {
  content: "";
  display: inline-block;
  width: 176px;
  height: 1px;
  background-color: #6d6f94;
  top: -41px;
  left: -87px;
  position: absolute;
}

.stepper .step::before {
  content: "1";
  display: inline-block;
  border-radius: 50%;
  margin-left: -20px;
  top: -54px;
  left: calc(50% + 8.5px);
  position: absolute;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  line-height: 21px;
  text-align: center;
  color: #00054d;
  border: 1px solid #00054d;
  padding-top: 1px;
  height: 25px;
  min-width: 25px;
  width: 25px;
  line-height: 19px;
}

.stepper .step.active::before {
  background-color: #00054d;
  color: #FFFFFF;
}

.stepper .step.done::before {
  background-color: #00054d;
  border-color: #00054d;
  color: #fff;
  opacity: 0.5;
}

.stepper .glyphicons-ok {
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: 10px;
  background-color: #139A20;
  color: #fff;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 14px;
}

.nps-stepper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 10px;
  margin-top: 20px;
}

.nps-stepper__step {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  line-height: 18px;
  text-align: center;
  color: #00054d;
  border: 1px solid #00054d;
  padding-top: 1px;
  height: 25px;
  min-width: 25px;
  width: 25px;
  border-radius: 50%;
  position: relative;
}

.nps-stepper__step_previous {
  opacity: 0.5;
  background-color: #00054d;
  color: white;
  border: 1px solid #00054d;
}

.nps-stepper__step_active {
  background-color: #00054d;
  color: white;
}

.nps-stepper__step_update:not(.nps-stepper__step_active):hover {
  background-color: black !important;
  border: 1px solid black !important;
  color: white;
  opacity: 1;
}

.nps-stepper__line {
  width: 40px;
  height: 1px;
  margin-top: 12px;
  background-color: #cbccd5;
}

.nps-stepper__line:last-child {
  display: none;
}

/*
 * Colors
 */
/*
 * Breakpoints
 */
/*
 * Bootstrap
 */
.preview-modal {
  width: 100%;
  z-index: 100;
  top: 0px;
  border-radius: 15px 15px 0 0;
  background: #fff;
}

.preview-modal.active {
  display: block !important;
}

.preview-modal .steps {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-modal .steps .title {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.23px;
  text-align: center;
  color: #cbccd5;
  cursor: pointer;
  margin: 0 20px;
}

.preview-modal .steps .title.active {
  color: #00054d;
  border-bottom: 2px solid #00054d;
}

.preview-modal .content-wrapper {
  background-color: #f9f9fc;
  padding: 36px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  width: calc(100% - 40px);
  margin: 0 auto;
  pointer-events: none;
  margin-bottom: 20px;
  min-height: calc(100vh - 250px);
}

@media (max-width: 768px) {
  .preview-modal .content-wrapper {
    width: 100%;
    padding: 0;
    box-shadow: none;
    margin-bottom: 0;
  }
}
.preview-modal .content-wrapper .content {
  width: 612px;
  border-radius: 6px;
  box-shadow: 0 2px 12px 2px rgba(50, 50, 50, 0.2);
  background-color: #ffffff;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
}

@media (max-width: 768px) {
  .preview-modal .content-wrapper .content {
    width: calc(100% - 20px);
  }
}
.preview-modal .content-wrapper .content iframe {
  width: 100%;
  min-height: 610px;
  border: 0;
  border-radius: 6px;
}

.preview-modal .content-wrapper .content input[type=submit] {
  background-color: #00054d;
  color: #fff;
}

.preview-modal .content-wrapper .content .message-logo {
  max-height: 174px;
  max-width: 174px;
  margin-top: 20px;
}

.preview-modal .content-wrapper .content .message-base {
  margin: 0 auto !important;
  padding-top: 40px;
  background: none;
  box-shadow: none;
}

.preview-modal .content-wrapper .content textarea {
  resize: none;
}

.preview-modal .navigation {
  width: 100%;
  position: sticky;
  bottom: 0;
  right: 0px;
  height: 90px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 24px 24px;
}

@media (max-width: 768px) {
  .preview-modal .navigation {
    position: static;
    width: 100%;
    margin-bottom: 60px;
    flex-direction: column-reverse;
    padding: 10px;
    height: unset;
  }
}
.preview-modal .navigation button, .preview-modal .navigation a {
  margin: 0 10px;
}

@media (max-width: 768px) {
  .preview-modal .navigation button, .preview-modal .navigation a {
    margin: 5px;
    width: 100%;
  }
}
.custom-select {
  z-index: 2;
  position: relative;
  padding: 0 !important;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.63;
  letter-spacing: 0.26px;
  color: rgb(100, 100, 100);
  border: none;
  height: 40px;
  /* style the items (options), including the selected item: */
}

.custom-select img, .custom-select svg {
  transition: all 0.3s;
}

.custom-select img.active, .custom-select svg.active {
  transform: rotate(180deg);
}

.custom-select select {
  pointer-events: none;
}

.custom-select input.search-bar {
  width: 100%;
  padding: 10px;
  border-radius: 0;
  border: solid 1px #cbccd5;
}

.custom-select input.search-bar::placeholder {
  color: #bcbed4;
}

.custom-select.domain-select {
  width: 400px;
}

.custom-select.domain-select .mock-options {
  border-left: solid 1px #cbccd5;
  border-right: solid 1px #cbccd5;
  border-bottom: solid 1px #cbccd5;
  box-shadow: none;
}

.custom-select.feedback-select {
  height: 28px;
  display: inline-block;
  margin-top: -2px;
  margin-left: 3px;
  padding: 0px;
}

.custom-select.feedback-select img, .custom-select.feedback-select svg {
  top: 14px;
  right: 7px;
}

.custom-select.feedback-select .mock-options {
  top: 28px;
  text-align: left;
}

.custom-select.feedback-select .mock-options div {
  line-height: 28px;
  height: 28px;
  padding-left: 10px;
}

.custom-select.feedback-select .mock-select {
  line-height: 28px;
  text-align: left;
}

.custom-select.many-text .mock-select {
  height: 40px;
  padding: 0px 25px 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-select.many-text .mock-options div {
  height: auto;
  padding: 7px 10px;
  line-height: 24px;
}

.custom-select.thin {
  height: 28px;
}

.custom-select.thin .mock-select {
  line-height: 25px;
}

.custom-select.thin .mock-options {
  top: 27px;
}

.custom-select.thin img, .custom-select.thin svg {
  right: 9px !important;
  top: 12px;
}

.custom-select img, .custom-select svg {
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 18px;
  z-index: 4;
}

.custom-select select {
  /*hide original SELECT element: */
  display: none;
}

.custom-select .mock-select {
  border: solid 1px #cbccd5;
  background-color: white;
  padding-left: 8px;
  line-height: 38px;
}

.custom-select .mock-select:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
}

.custom-select .mock-select.active {
  border-bottom: none;
}

.custom-select .mock-select.active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

.custom-select .mock-options {
  transform: scaleY(0);
  transform-origin: top center;
  transition: all 0.25s;
  background-color: white;
  border-radius: 0;
  box-shadow: 0 5px 12px 4px rgba(0, 0, 0, 0.3);
  position: absolute;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  overflow: hidden;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.88;
  letter-spacing: 0.26px;
  color: #6d6f94;
  top: 39px;
  left: 0;
  right: 0;
  z-index: 1001;
}

.custom-select .mock-options.active {
  transform: scaleY(1);
}

.custom-select .mock-options.scroll {
  max-height: 260px;
  overflow: auto;
}

.custom-select .mock-options.scroll::-webkit-scrollbar {
  width: 10px;
}

.custom-select .mock-options.scroll::-webkit-scrollbar-track {
  background: #bcbed4;
}

.custom-select .mock-options.scroll::-webkit-scrollbar-thumb {
  background-color: #6d6f94;
  margin-top: 2px;
  position: relative;
}

.custom-select .mock-options.scroll::-webkit-scrollbar-thumb:after {
  content: " ";
  width: 8px;
  height: 3px;
  background-color: white;
  position: absolute;
  top: 50%;
}

.custom-select .mock-options div {
  padding-left: 8px;
  height: 32px;
}

.custom-select .mock-select {
  color: rgb(100, 100, 100);
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 28px;
}

.custom-select .mock-options div {
  color: rgb(100, 100, 100);
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 8px;
}

.custom-select .mock-options .active {
  color: #ffffff;
  background-color: #007b80;
}

.custom-select .mock-options .active:hover {
  background-color: #007b80;
  color: #ffffff;
}

.custom-select .mock-options div:hover {
  color: rgb(29, 29, 27);
  background-color: #e1e2f0;
}

.canvas .settings-toggle-wrap {
  cursor: pointer;
  margin-left: auto;
  font-size: 18px;
  font-weight: normal;
  color: #000333;
  display: flex;
  align-items: center;
}

.canvas .settings-toggle-wrap .label {
  margin-right: 5px;
  color: #007b80;
  border-radius: 5px;
  padding: 0px 0px 0 0;
  font-size: 17px;
  font-weight: bold;
  margin-top: -5px;
}

@media (max-width: 1024px) {
  .canvas .settings-toggle-wrap .label {
    display: none;
  }
}
.canvas .settings-toggle-wrap.active .label, .canvas .settings-toggle-wrap:hover .label {
  text-decoration: underline;
}

.canvas .settings-toggle-wrap .filters-icon .line {
  background-color: #007b80;
}

.canvas .settings-toggle-wrap .filters-icon .line .dot {
  border-color: #007b80;
  background-color: #ffffff;
}

.canvas .settings-toggle-wrap .icon {
  transition: all 0.5s;
  margin-left: 5px;
}

.canvas .settings-toggle-wrap.active .icon, .canvas .settings-toggle-wrap:hover .icon {
  transform: rotate(90deg);
  opacity: 1;
}

.canvas .settings-panel {
  width: 100%;
  background: #f9f9fc;
  flex-direction: column;
  overflow: hidden;
  transition: height 0.3s ease-in 0s, padding 0.1s linear 0.2s, border 0.1s linear 0s, margin 0.1s ease-out 0s, box-shadow 0.1s linear 0s;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid #bcbed4;
  box-shadow: 0 0px 9px 1px #bcbed4;
}

.canvas .settings-panel .transition-wrap {
  opacity: 1;
  transition: opacity 0.2s ease-in 0.4s;
}

.canvas .settings-panel.hide {
  margin: 0;
  padding: 0;
  height: 0 !important;
  border: 0px solid #bcbed4;
  box-shadow: none;
  transition: height 0.2s linear 0.4s, padding 0.1s linear 0.4s, border 0.2s linear 0.4s, margin 0.6s ease-out 0.4s, box-shadow 0.2s linear 0.4s;
  display: block !important;
  overflow: hidden;
}

.canvas .settings-panel.hide .transition-wrap {
  opacity: 0;
  transition: opacity 0.2s ease-in 0s;
}

.canvas .settings-panel.no-transition {
  transition: none !important;
}

.canvas .settings-panel.no-transition .transition-wrap {
  transition: none !important;
}

.canvas .settings-panel hr {
  margin: 20px 0;
  border-color: #bcbed4;
  width: 100%;
}

.canvas .table-controls-top {
  align-items: baseline;
  color: #6d6f94;
  font-size: 18px;
  padding: 10px 0 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-family: sofia-pro, Arial, sans-serif;
}

@media (max-width: 768px) {
  .canvas .table-controls-top {
    text-align: center;
    flex-direction: column;
  }
}
.canvas .table-controls-top .custom-select {
  margin: 0 6px;
}

@media (max-width: 768px) {
  .canvas .table-controls-top .custom-select {
    text-align: left;
  }
}
.canvas .table-controls-top .results-search {
  margin: 0;
}

.canvas .table-controls-top .selector-wrap {
  margin: 0 10px 0 0;
}

@media (max-width: 768px) {
  .canvas .table-controls-top .selector-wrap {
    margin: 0 0 20px 0;
  }
}
.canvas .table-controls-top select {
  width: 56px;
  height: 26px;
  margin: 0 8px;
  border: solid 1px rgb(203, 204, 213);
  border-radius: 0;
  text-align: center;
}

.canvas .table-controls-top select option {
  text-align: center;
}

.canvas .table-controls-top select option select {
  border-radius: 0;
  outline: none;
}

.canvas .table-controls-top .button-secondary {
  transition: all 0s;
  padding: 1px;
  font-family: sofia-pro, Arial, sans-serif;
  margin-right: -1px;
  font-size: 16px;
  font-weight: bold;
  line-height: 35px !important;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.6px;
  text-align: center;
  color: #000fe3;
}

@media (max-width: 768px) {
  .canvas .table-controls-top .button-secondary {
    margin: 0 auto;
  }
}
.canvas .table-controls-top .button-secondary:hover {
  transition: all 0s;
  color: #000333;
}

.canvas .table-controls-top .button-secondary:hover img {
  transition: all 0s;
  filter: grayscale(100%) brightness(0);
}

.canvas .table-controls-top .button-secondary img {
  margin-top: -5px;
  margin-left: 2px;
}

.canvas .table-controls-bottom {
  padding: 0;
  margin-top: 26px;
  justify-content: space-between;
  display: flex;
  flex-direction: row;
}

@media (max-width: 768px) {
  .canvas .table-controls-bottom {
    flex-direction: column;
    margin-top: 35px;
  }
}
@media (max-width: 768px) {
  .canvas .table-controls-bottom .table-pagination {
    margin: 0 auto 55px auto;
  }
}
@media (max-width: 768px) {
  .canvas .table-controls-bottom .button-secondary {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .canvas .table-controls-bottom .button-primary {
    margin: 0 auto 10px auto;
  }
}
.canvas .table-controls-bottom .button-secondary {
  transition: all 0s;
  padding: 1px;
  font-family: sofia-pro, Arial, sans-serif;
  margin-right: -1px;
  font-size: 16px;
  font-weight: bold;
  line-height: 35px !important;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.6px;
  text-align: center;
  color: #000fe3;
}

@media (max-width: 768px) {
  .canvas .table-controls-bottom .button-secondary {
    margin: 0 auto;
  }
}
.canvas .table-controls-bottom .button-secondary:hover {
  transition: all 0s;
  color: #000333;
}

.canvas .table-controls-bottom .button-secondary:hover img {
  transition: all 0s;
  filter: grayscale(100%) brightness(0);
}

.canvas .table-controls-bottom .button-secondary img {
  margin-top: -5px;
  margin-left: 2px;
}

.canvas .table-pagination {
  align-items: center;
  display: flex;
  height: 40px;
  border: solid 1px #bcbed4;
  background-color: #ffffff;
}

.canvas .table-pagination.disabled {
  display: none;
}

.canvas .table-pagination__dir {
  width: inherit !important;
}

.canvas .table-pagination__dir span {
  padding: 0 10px;
  width: inherit !important;
}

.canvas .table-pagination > a {
  display: block;
  width: 38px;
  height: 38px;
  font-size: 12px;
  cursor: pointer;
}

.canvas .table-pagination > a.table-pagination__dots {
  cursor: not-allowed;
}

.canvas .table-pagination > a span {
  text-align: center;
  display: block;
  margin-top: 7px;
  width: 38px;
  height: 23px;
  line-height: 23px;
  border-left: 1px solid #bcbed4;
  color: black;
  font-weight: 400;
}

.canvas .table-pagination > a:first-child span {
  border-left: none;
}

.canvas .table-pagination > a:hover:not(.table-pagination__dots) {
  color: white;
  font-weight: 400;
  background-color: #00054d;
}

.canvas .table-pagination > a:hover:not(.table-pagination__dots) span {
  color: white;
}

.canvas .table-pagination > a.gray {
  pointer-events: none;
}

.canvas .table-pagination > a.gray span {
  color: rgb(203, 204, 213);
}

.canvas .table-pagination > a.disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-color: #00054d;
}

.canvas .table-pagination > a.disabled span {
  color: white !important;
  font-weight: 400 !important;
  border-left: none !important;
}

.canvas .table-pagination > a.disabled + a span {
  border-left: none !important;
}

.canvas .table-pagination__prev, .canvas .table-pagination__next, .canvas .table-pagination__hole {
  width: 57px !important;
}

.canvas .table-pagination__prev span, .canvas .table-pagination__next span, .canvas .table-pagination__hole span {
  width: 57px !important;
  font-weight: normal !important;
}

.canvas .table-results-wrap {
  position: relative;
}

.canvas .table-results-wrap .hide-horizontal-scroll {
  position: relative;
  overflow-y: hidden;
  margin: 0 0 10px 0;
}

.canvas .table-results-wrap .hide-horizontal-scroll .result {
  padding-bottom: 20px;
  margin-bottom: -20px;
  overflow-x: scroll;
}

.canvas .table-results-wrap.loading tbody {
  display: none;
}

.canvas .table-results-wrap.loading label.checkbox-wrap {
  visibility: hidden !important;
}

.canvas .table-results-wrap.loading .loader-bar-wrap {
  position: absolute;
  top: 89px;
  left: -4px;
}

.canvas .table-results-wrap .contacts-table {
  margin-top: 30px;
  margin-left: 2px;
  margin-right: 2px;
  width: calc(100% - 4px);
}

.canvas .table-results-wrap .contacts-table td {
  padding: 0 !important;
  padding-right: 35px !important;
  border-bottom: none;
  color: #1f214d;
  overflow: visible;
}

.canvas .table-results-wrap .contacts-table td.center {
  text-align: center;
}

.canvas .table-results-wrap .contacts-table td.publish-review {
  position: relative;
  overflow: visible;
  width: 150px;
  white-space: normal;
  font-size: 16px;
  padding: 10px 0 !important;
  height: 80px;
  color: #aaa;
}

.canvas .table-results-wrap .contacts-table td.publish-review .mini-toggle {
  margin: 0;
  color: black;
}

.canvas .table-results-wrap .contacts-table td.publish-review .sb-tooltip {
  width: 230px;
  left: -260px;
  top: 5px;
}

.canvas .table-results-wrap .contacts-table td.publish-review .sb-tooltip.no-comment {
  width: 140px;
  left: -172px;
}

.canvas .table-results-wrap .contacts-table td.publish-review .sb-tooltip:after {
  content: " ";
  position: absolute;
  top: 22px;
  right: -16px;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid white;
  border-right: none;
}

.canvas .table-results-wrap .contacts-table td.publish-review .sb-tooltip:before {
  content: " ";
  position: absolute;
  top: 22px;
  right: -18px;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid #bcbed4;
  border-right: none;
}

.canvas .table-results-wrap .contacts-table td.publish-review:hover .tooltip {
  opacity: 1;
  display: block;
}

.canvas .table-results-wrap .contacts-table td:first-child {
  padding-left: 15px !important;
}

.canvas .table-results-wrap .contacts-table td:last-child {
  padding-right: 0 !important;
}

.canvas .table-results-wrap .contacts-table td.score-td {
  width: 120px;
  max-width: 120px;
}

.canvas .table-results-wrap .contacts-table td.full-name-td, .canvas .table-results-wrap .contacts-table td.company-td {
  width: 200px;
  max-width: 200px;
  text-overflow: unset;
  padding-bottom: 10px;
  white-space: break-spaces;
}

.canvas .table-results-wrap .contacts-table td.date-td {
  width: 150px;
  max-width: 150px;
}

.canvas .table-results-wrap .contacts-table td.sortable {
  cursor: pointer;
  transition: all 0.2s;
}

.canvas .table-results-wrap .contacts-table td.sortable img {
  opacity: 0.3;
}

.canvas .table-results-wrap .contacts-table td.sortable.desc img {
  transform: rotate(180deg);
}

.canvas .table-results-wrap .contacts-table td.sortable.reverse-logic.asc img {
  transform: rotate(180deg);
}

.canvas .table-results-wrap .contacts-table td.sortable.reverse-logic.desc img {
  transform: rotate(0deg);
}

.canvas .table-results-wrap .contacts-table td.sortable.active {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.26px;
  color: rgb(29, 29, 27);
}

.canvas .table-results-wrap .contacts-table td.sortable.active img {
  pointer-events: none;
  display: inline-block;
  filter: grayscale(0);
  opacity: 1;
}

.canvas .table-results-wrap .contacts-table td.sortable img {
  filter: grayscale(1);
  transition: all 0.2s;
}

.canvas .table-results-wrap .contacts-table thead tr {
  height: 55px;
  color: rgb(29, 29, 27);
  vertical-align: top;
}

.canvas .table-results-wrap .contacts-table thead td {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  white-space: nowrap;
}

.canvas .table-results-wrap .contacts-table thead td img {
  display: inline-block;
  margin-left: 5px;
}

.canvas .table-results-wrap .contacts-table tbody {
  border: 1px solid rgb(203, 204, 213);
}

.canvas .table-results-wrap .contacts-table tbody tr {
  height: 80px;
  border-bottom: 1px solid rgb(203, 204, 213);
  transition: opacity 0.3s, filter 0.2s, height 0.2s linear 0.3s;
}

.canvas .table-results-wrap .contacts-table tbody tr:hover {
  background: #f0f1fa;
}

.canvas .table-results-wrap .contacts-table tbody tr:last-child {
  border-bottom: none;
}

.canvas .table-results-wrap .contacts-table tbody tr:nth-child(odd) {
  background-color: #f9f9fc;
}

.canvas .table-results-wrap .contacts-table tbody tr:nth-child(odd):hover {
  background: #f0f1fa;
}

.canvas .table-results-wrap .contacts-table tbody tr.deleted {
  height: 0;
  opacity: 0;
  filter: blur(3px);
}

.canvas .table-results-wrap .contacts-table tbody td {
  letter-spacing: 0.23px;
  color: #1f214d;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
}

.canvas .table-results-wrap .contacts-table tbody td:last-child {
  padding-right: 10px !important;
}

.canvas .table-results-wrap .contacts-table .invalid {
  color: #bcbed4;
  cursor: default;
}

.canvas .table-results-wrap .contacts-table .tooltip {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  border: solid 1px #bcbed4;
  background-color: #ffffff;
  padding: 10px;
  width: 240px;
  right: 20px;
  border-radius: 5px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 12px;
  color: #92939b;
  top: 94px;
  display: none;
}

.canvas .table-results-wrap .contacts-table .tooltip:after {
  content: " ";
  position: absolute;
  top: -12px;
  right: 30px;
  border-top: 14px solid transparent;
  border-bottom: 0px solid transparent;
  border-right: 18px solid white;
}

.canvas .table-results-wrap .contacts-table .tooltip:before {
  content: " ";
  position: absolute;
  top: -14px;
  right: 29px;
  border-top: 14px solid transparent;
  border-bottom: 0px solid transparent;
  border-right: 18px solid #bcbed4;
}

.canvas .table-results-wrap .contacts-table .no-permissions {
  color: #d6464d;
  font-size: 19px;
  font-weight: bold;
}

.canvas .table-results-wrap .contacts-table .td-with-image {
  display: flex;
  align-items: center;
}

.canvas .table-results-wrap .contacts-table .td-with-image div {
  margin-left: 5px;
}

.canvas .table-results-wrap .contacts-table .td-with-image img {
  width: 15px;
  height: 15px;
}

.canvas .table-results-wrap .no-admin .publish-review .mini-toggle {
  opacity: 0.4;
  pointer-events: none;
}

.canvas .table-results-wrap .no-results, .canvas .table-results-wrap .wait-message {
  width: 100%;
  border: 1px solid #e1e2f0;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 30px;
  flex-direction: column;
  transition: all 0.3s;
}

.canvas .table-results-wrap .no-results .tip, .canvas .table-results-wrap .wait-message .tip {
  font-size: 17px;
}

.canvas .table-results-wrap .no-results .glyphicons, .canvas .table-results-wrap .wait-message .glyphicons {
  color: #CC3333;
}

.canvas .table-results-wrap .no-results.disabled, .canvas .table-results-wrap .wait-message.disabled {
  display: none;
}

.card {
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 6px 2px #bcbed4;
  background: linear-gradient(to bottom, #ffffff, #f9f9fc);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .card {
    margin: 0 auto 10px auto;
    width: 100%;
    height: auto;
    padding: 10px 0;
    max-height: none;
  }
}
.card.main-score {
  justify-content: center;
}

@media (max-width: 768px) {
  .card.main-score {
    margin: 0 auto 10px auto;
    width: 100%;
    margin-bottom: 29px;
    margin-right: 0;
  }
}
.card.main-score .card__title {
  font-size: 24px;
}

@media (max-width: 1024px) {
  .card.main-score .card__title {
    margin: 0;
    display: flex;
    align-items: center;
  }
}
.card.main-score .card__main-score {
  font-size: 72px;
}

.card__title {
  font-family: sofia-pro, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 20px 0 0 0;
}

.card__main-score {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 50px;
  font-weight: bold;
  color: #00054d;
}

.card__main-score.small {
  font-size: 32px;
  padding: 13px;
}

.card__content {
  align-items: center;
  justify-content: center;
  height: 70px;
  color: #6d6f94;
  margin-top: 6px;
  display: flex;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 12px;
  border-top: 1px solid #e1e2f0;
  padding: 15px 0 10px 0;
  justify-content: space-evenly;
}

@media (max-width: 768px) {
  .card__content {
    padding: 20px 0 10px 0;
  }
}
.card__content.card__sentiment .gray {
  opacity: 0.4;
}

.card__content-item {
  font-weight: normal;
}

.card__content-item.highlight {
  font-weight: bold;
  color: black;
}

.card__content-item img {
  width: 18px;
  height: 18px;
}

.card__item-score {
  font-weight: bold;
  font-size: 16px;
  margin-top: 6px;
}

.card__tooltip {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 19px;
  letter-spacing: 0.16px;
  color: #1f214d;
  text-align: center;
  padding: 10px;
}

@media (max-width: 768px) {
  .card__tooltip {
    margin: 40px 10px 0 10px;
  }
}
.marketing-loader {
  flex-direction: column;
  display: flex;
  height: 100vh;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.marketing-loader.disabled {
  display: none;
}

.marketing-loader .bounce-bounce-bounce {
  margin: 0 auto;
  position: relative;
  width: 260px;
  height: 150px;
}

.marketing-loader .bounce-bounce-bounce img.sentiment {
  width: 55px;
  height: 55px;
  border-radius: 20px;
  margin: 10px;
  position: absolute;
  top: 0px;
  animation: bounce 0.8s infinite;
  z-index: 99;
}

.marketing-loader .bounce-bounce-bounce img.sentiment.happy {
  left: 0;
}

.marketing-loader .bounce-bounce-bounce img.sentiment.neutral {
  left: 90px;
  animation-delay: 0.1s;
}

.marketing-loader .bounce-bounce-bounce img.sentiment.sad {
  left: 180px;
  animation-delay: 0.15s;
}

@keyframes bounce {
  from {
    top: 0px;
  }
  25% {
    transform: scale(1, 1);
  }
  40% {
    transform: scale(1.3, 0.7);
  }
  41% {
    top: 100px;
  }
  80% {
    transform: scale(0.8, 1.25);
  }
  85% {
    top: 0;
  }
  90% {
    transform: scale(0.9, 1.15);
  }
  100% {
    transform: scale(1, 1);
  }
}
.marketing-loader .bounce-bounce-bounce .bounce-shadow {
  width: 25px;
  height: 18px;
  -webkit-filter: blur(3px);
  filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.15);
  display: block;
  opacity: 0.2;
  position: absolute;
  top: 150px;
  transform: scale(2, 1.5);
  animation: shadow 0.8s infinite;
  border-radius: 100px;
}

.marketing-loader .bounce-bounce-bounce .bounce-shadow.happy {
  left: 25px;
}

.marketing-loader .bounce-bounce-bounce .bounce-shadow.neutral {
  left: 115px;
  animation-delay: 0.1s;
}

.marketing-loader .bounce-bounce-bounce .bounce-shadow.sad {
  left: 205px;
  animation-delay: 0.15s;
}

@keyframes shadow {
  from {
    top: 150px;
  }
  40% {
    top: 140px;
    opacity: 0.7;
    transform: scale(1.4, 0.9);
  }
}
.marketing-loader .loader-bar-wrap {
  margin-right: -5px;
  margin-left: -5px;
  margin-top: 45px;
  max-width: 410px;
  position: relative;
  overflow: visible;
  height: 3px;
}

.marketing-loader .loader-bar-wrap-bar {
  transition: all 0.6s;
  width: 0%;
  position: relative;
  top: -1px;
  height: 5px;
  border-radius: 2px;
  background: linear-gradient(270deg, #000fe3, #9d3aff);
}

.marketing-loader img {
  margin-top: -30px;
  display: block;
  animation: dance 1.5s ease infinite;
  max-width: 360px;
  height: auto;
}

@media (max-width: 576px) {
  .marketing-loader img {
    max-width: calc(100% - 40px);
  }
}
.loader-bar-wrap:not(.loader-bar-wrap_marketing) {
  width: 100%;
  overflow: hidden;
  margin: -10px 0 10px 0;
}

.loader-bar-wrap:not(.loader-bar-wrap_marketing).disabled {
  display: none;
}

.loader-bar-wrap:not(.loader-bar-wrap_marketing) .loader-bar-wrap-bar {
  transition: all 0.6s;
  width: 0%;
  position: relative;
  top: -1px;
  height: 5px;
  border-radius: 2px;
  background-color: #000fe3;
}

.sb-modal {
  position: fixed;
  left: 0;
  top: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.2s;
  color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 576px) {
  .sb-modal {
    top: 0;
  }
}
@media (max-width: 576px) {
  .sb-modal__content {
    width: calc(100vw - 60px);
    padding: 13px 0 !important;
    margin: 0 auto;
  }
}
.sb-modal__bg {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: auto;
  opacity: 1;
  transition: all 0.3s;
}

.sb-modal__wrap {
  position: relative;
  text-align: center;
  box-shadow: 0 7px 30px -10px #000333;
  border-radius: 20px;
  background-color: white;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
}

@media (max-width: 576px) {
  .sb-modal__wrap {
    width: calc(100vw - 20px) !important;
    margin: 0 auto;
  }
}
.sb-modal__wrap .glyphicons {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #aaa;
  font-size: 20px;
  font-weight: normal;
  cursor: pointer;
}

.sb-modal__wrap .glyphicons:hover {
  color: #00054d;
}

.sb-modal__header {
  padding: 15px 10px 10px 10px;
  border-bottom: 1px solid #cbccd5;
}

.sb-modal.disabled {
  opacity: 0 !important;
  pointer-events: none;
  top: -100%;
}

.error-modal {
  width: 580px;
  margin-left: calc(50% - 290px);
  margin-top: 100px;
}

@media (max-width: 768px) {
  .error-modal {
    width: 320px;
    margin-left: calc(50% - 160px);
  }
}
.error-modal .oh-no-message {
  padding: 27px 54px;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.23px;
  text-align: center;
  color: #646464;
}

.error-modal .sb-modal__header {
  display: none;
}

.error-modal .button-primary {
  width: 180px;
  margin: 20px auto 20px auto;
  cursor: pointer;
}

.canvas .metrics-header-wrap {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  border-bottom: 1px solid #bcbed4;
  padding-bottom: 20px;
  flex-wrap: wrap;
  margin: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .canvas .metrics-header-wrap {
    padding: 29px 0;
    margin-bottom: 20px;
    width: calc(100% - 60px);
    flex-direction: column;
    justify-content: center;
  }
}
.canvas .metrics-header-wrap.global {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0;
  position: relative;
}

.canvas .metrics-header-wrap.global h2 {
  cursor: pointer;
  margin-right: 20px;
}

.canvas .metrics-header-wrap.global h2::after {
  content: "–";
  font-size: 46px;
  position: absolute;
  right: 0px;
  top: -10px;
  color: #00054d;
  line-height: 43px;
}

.canvas .metrics-header-wrap.global h2::after:hover {
  color: #000333;
}

@media (max-width: 768px) {
  .canvas .metrics-header-wrap.global h2::after {
    top: 10px;
  }
}
@media (max-width: 1024px) {
  .canvas .metrics-header-wrap.global.collapse {
    padding-bottom: 0;
  }
}
.canvas .metrics-header-wrap.global.collapse h2:after {
  content: "+";
}

.canvas .metrics-header-wrap.global.collapse .metrics-wrap {
  height: 0 !important;
}

.canvas .metrics-header-wrap.global.collapse .metrics-wrap .metrics {
  left: -2000px;
}

.canvas .metrics-header-wrap.global.collapse .mini-metrics-wrap .mini-metrics {
  left: 0;
}

.canvas .metrics-header-wrap.global.collapse .mini-metrics-wrap .mini-toggle {
  left: 300px;
  opacity: 0;
}

.canvas .metrics-header-wrap.global.show-benchmarks .metrics-wrap .metrics .benchmarking {
  display: block;
  padding-top: 10px;
  margin-top: 10px;
  height: unset;
}

.canvas .metrics-header-wrap.global.show-benchmarks .metrics-wrap .metrics .benchmarks-note {
  display: flex !important;
}

.canvas .metrics-header-wrap.global .metrics-wrap {
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  margin-left: -20px;
  width: calc(100% + 30px);
}

.canvas .metrics-header-wrap.global .metrics-wrap.transitioning {
  opacity: 0;
  transition: all 0.3s;
}

.canvas .metrics-header-wrap.global .metrics-wrap .flex-wrap-outer {
  width: 100%;
  display: flex;
  flex-direction: row;
}

@media (max-width: 1024px) {
  .canvas .metrics-header-wrap.global .metrics-wrap .flex-wrap-outer {
    flex-direction: column;
  }
}
.canvas .metrics-header-wrap.global .metrics-wrap .flex-wrap-outer .flex-wrap {
  display: flex;
  flex: 1;
}

@media (max-width: 768px) {
  .canvas .metrics-header-wrap.global .metrics-wrap .flex-wrap-outer .flex-wrap {
    flex-direction: column;
  }
}
.canvas .metrics-header-wrap.global .metrics-wrap .flex-wrap-outer .flex-wrap.long {
  flex: 2;
}

.canvas .metrics-header-wrap.global .metrics-wrap .benchmark-note-wrapper {
  flex: 1;
  margin: 0 10px 0 15px;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.canvas .metrics-header-wrap.global .metrics-wrap .benchmark-note-wrapper .benchmarks-note {
  color: #6d6f94;
  font-size: 14px;
  margin-bottom: 10px;
  display: none;
  flex: 2;
  align-items: end;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics {
  position: absolute;
  left: 0px;
  top: 0;
  transition: all 0.5s;
  width: 100%;
  display: flex;
  margin-top: 5px;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .canvas .metrics-header-wrap.global .metrics-wrap .metrics {
    flex-direction: column;
  }
}
.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking {
  width: 100%;
  display: none;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .title {
  text-transform: none;
  font-weight: 600;
  font-size: 17px;
  padding-bottom: 4px;
  display: flex;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .title .text {
  display: flex;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .title .text-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .title .text-wrap .hamburger {
  transform: scaleY(0.5) scaleX(0.75) rotate(90deg);
  margin-right: 3px;
  margin-bottom: -1px;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .title .tooltip-wrap {
  width: 16px;
  display: flex;
  margin-left: 7px;
  position: relative;
  display: none;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .title .tooltip-wrap:hover .sb-tooltip {
  left: -238px;
  top: 46px;
  font-size: 14px;
  white-space: initial;
  width: 280px;
  display: block;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .title .tooltip-wrap:hover .sb-tooltip::before {
  top: -15px;
  right: 20px;
  border-bottom: 14px solid #bcbed4;
  border-top: none;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .title .tooltip-wrap:hover .sb-tooltip::after {
  top: -13px;
  right: 20px;
  border-bottom: 14px solid white;
  border-top: none;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .border-bottom {
  height: 2px;
  margin-top: 0px;
  margin-bottom: 10px;
  background: linear-gradient(270deg, rgb(0, 10, 159), rgb(115, 8, 221));
  border-width: 0px !important;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .scores {
  display: flex;
  flex-direction: column;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .scores .score-wrap {
  display: flex;
  align-items: center;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .scores .score-wrap:first-child {
  margin-bottom: 5px;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .scores .score-wrap .score-type {
  flex: 4;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .scores .score-wrap .bm-score {
  font-weight: bold;
  background: #00054d;
  color: #fff;
  padding: 2px 10px 3px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin-left: 10px;
  height: 26px;
  min-width: 65px;
  justify-content: center;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .diff {
  font-weight: bold;
  color: #6d6f94;
  margin: -3px 0 0 6px;
  font-size: 22px;
  display: flex;
  min-width: 50px;
  justify-content: flex-end;
  line-height: 0;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .diff .symbol {
  font-size: 16px;
  margin-right: 1px;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .diff.positive {
  color: #00CBA6;
}

.canvas .metrics-header-wrap.global .metrics-wrap .metrics .benchmarking .diff.negative {
  color: #EB3853;
}

.canvas .metrics-header-wrap.global .mini-metrics-wrap {
  position: relative;
  overflow: hidden;
  width: 740px;
  height: 40px;
  margin-left: -5px;
}

@media (max-width: 1024px) {
  .canvas .metrics-header-wrap.global .mini-metrics-wrap {
    display: none;
  }
}
.canvas .metrics-header-wrap.global .mini-metrics-wrap .mini-metrics {
  display: flex;
  font-size: 17px;
  position: absolute;
  top: 0;
  left: -2000px;
  transition: all 0.5s;
  margin-left: 5px;
}

.canvas .metrics-header-wrap.global .mini-metrics-wrap .mini-metrics .mini-card {
  padding: 5px 10px;
  background: #fff;
  box-shadow: 0 2px 3px 1px #bcbed4;
  margin-right: 20px;
  border-radius: 5px;
}

.canvas .metrics-header-wrap.global .mini-metrics-wrap .mini-metrics .mini-card .value {
  font-weight: bold;
  transition: all 0.5s;
}

.canvas .metrics-header-wrap.global .mini-metrics-wrap .mini-metrics .mini-card .value.toggling {
  opacity: 0;
  transition: none;
}

.canvas .metrics-header-wrap.global .mini-metrics-wrap .mini-metrics .mini-card .promoters {
  color: #2a9460;
  font-weight: bold;
}

.canvas .metrics-header-wrap.global .mini-metrics-wrap .mini-metrics .mini-card .passives {
  color: #c5a708;
  font-weight: bold;
}

.canvas .metrics-header-wrap.global .mini-metrics-wrap .mini-metrics .mini-card .detractors {
  color: #d6464d;
  font-weight: bold;
}

.canvas .metrics-header-wrap.global .mini-metrics-wrap .mini-toggle {
  position: absolute;
  left: 0;
  transition: all 0.3s;
  opacity: 1;
  width: 200px;
  bottom: 6px;
  border-left: 1px solid #bcbed4;
  padding-left: 15px;
}

.canvas .metrics-header-wrap.global.no-transition .metrics-wrap, .canvas .metrics-header-wrap.global.no-transition .metrics, .canvas .metrics-header-wrap.global.no-transition .mini-metrics {
  transition: none !important;
}

.canvas .metrics-header-wrap.basic .metrics-wrap {
  height: 110px;
}

.canvas .metrics-header-wrap.basic .metrics-wrap .metrics {
  padding: 0 15px;
}

.canvas .metrics-header-wrap.basic .metrics-wrap .card {
  flex-direction: row;
  margin: 0 30px 0 0;
  padding: 20px;
}

.canvas .metrics-header-wrap.basic .metrics-wrap .card:last-of-type {
  margin-right: 0;
}

.canvas .metrics-header-wrap.basic .metrics-wrap .card__main-score {
  font-size: 35px;
  margin: -6px 0 0 0;
  line-height: 1;
}

.canvas .metrics-header-wrap.basic .metrics-wrap .card__title {
  font-family: sofia-pro, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}

.canvas .metrics-header-wrap.vertical .card {
  width: calc(20% - 24px);
  padding: 16px 10px;
  justify-content: space-between;
  align-items: center;
  max-width: none;
  flex-direction: column;
  margin: 0 30px 0 0;
}

.canvas .metrics-header-wrap.vertical .card__title {
  font-family: sofia-pro, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  text-align: center;
}

@media (max-width: 1024px) {
  .canvas .metrics-header-wrap.vertical .card {
    padding: 10px;
    min-height: auto;
    width: calc(33.3333333333% - 20px);
  }
}
@media (max-width: 768px) {
  .canvas .metrics-header-wrap.vertical .card {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .canvas .metrics-header-wrap.vertical .card.score {
    font-size: 14px;
    flex-direction: row;
    display: flex;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 1024px) {
  .canvas .metrics-header-wrap.vertical .card.score.response-rate {
    margin-right: 0px;
  }
}
@media (max-width: 576px) {
  .canvas .metrics-header-wrap.vertical .card.score.response-rate {
    margin-right: 5px;
  }
}
@media (max-width: 1024px) {
  .canvas .metrics-header-wrap.vertical .card .card__main-score {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .canvas .metrics-header-wrap.vertical .card .card__title {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .canvas .metrics-header-wrap.vertical .card.schedule {
    width: calc(50% - 15px);
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .canvas .metrics-header-wrap.vertical .card.schedule {
    font-size: 14px;
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.canvas .metrics-header-wrap.vertical .card.schedule .time-stamp {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: center;
}

@media (max-width: 1024px) {
  .canvas .metrics-header-wrap.vertical .card.schedule .time-stamp {
    margin-bottom: 5px;
  }
}
.canvas .metrics-header-wrap.vertical .card.schedule .time-stamp .date {
  line-height: 20px;
  font-size: 25px;
}

@media (max-width: 1024px) {
  .canvas .metrics-header-wrap.vertical .card.schedule .time-stamp .date {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .canvas .metrics-header-wrap.vertical .card.schedule .time-stamp .date {
    font-size: 25px;
  }
}
.canvas .metrics-header-wrap.vertical .card.schedule .time-stamp .time {
  font-size: 16px;
  height: 20px;
}

.canvas .metrics-header-wrap.vertical .card:last-of-type {
  margin-right: 0;
}

@media (max-width: 576px) {
  .canvas .metrics-header-wrap.vertical .card:last-of-type {
    margin-right: 5px;
  }
}
.canvas .metrics-header-wrap.responses .card.response-rate {
  margin-right: 0;
}

.canvas .metrics-header-wrap .card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 12px 17px 0px #bcbed4;
  max-width: none;
  margin-left: 15px;
  margin-right: 15px;
  align-items: center;
  background: linear-gradient(to bottom, #ffffff, #f9f9fc);
  padding: 12px 20px 18px 20px;
  display: flex;
  flex: 1;
  flex-direction: row;
  transition: all 0.3s;
  justify-content: space-between;
  opacity: 1;
}

@media (max-width: 1024px) {
  .canvas .metrics-header-wrap .card {
    min-height: auto;
    margin-left: 15px;
    font-size: 14px;
    display: flex;
    margin-bottom: 20px !important;
  }
}
@media (max-width: 768px) {
  .canvas .metrics-header-wrap .card {
    width: calc(100% - 30px);
  }
}
.canvas .metrics-header-wrap .card .title-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 15px 0;
}

.canvas .metrics-header-wrap .card .title-wrapper p {
  font-family: sofia-pro, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}

.canvas .metrics-header-wrap .card .title-wrapper .key-figure-number-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.canvas .metrics-header-wrap .card.main-score {
  justify-content: center;
  flex: 1;
  margin-right: 15px;
  flex-direction: column;
}

.canvas .metrics-header-wrap .card.main-score .title-wrapper {
  flex: 1;
}

.canvas .metrics-header-wrap .card.main-score p {
  font-size: 25px;
}

.canvas .metrics-header-wrap .card.main-score .score {
  font-size: 72px;
  background: linear-gradient(315deg, #000fe3, #9d3aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  margin-left: 10px;
  line-height: 1;
}

.canvas .metrics-header-wrap .card.has-details {
  flex-direction: column;
}

.canvas .metrics-header-wrap .card.reviews, .canvas .metrics-header-wrap .card.responses {
  display: flex;
  width: calc(100% + 30px);
  align-items: center;
  margin: 0 0 0 -20px;
}

.canvas .metrics-header-wrap .card.response-rate {
  position: relative;
}

.canvas .metrics-header-wrap .card.response-rate .title-wrapper .symbol {
  display: inline-block;
  font-size: 21px;
}

.canvas .metrics-header-wrap .card.response-rate .title-wrapper .tooltip-wrap {
  width: 15px;
  position: absolute;
  left: 151px;
  top: 23px;
}

.canvas .metrics-header-wrap .card.response-rate .title-wrapper .tooltip-wrap:hover .sb-tooltip {
  left: -238px;
  top: 46px;
  font-size: 14px;
  white-space: initial;
  width: 280px;
  display: block;
}

.canvas .metrics-header-wrap .card.response-rate .title-wrapper .tooltip-wrap:hover .sb-tooltip::before {
  top: -15px;
  right: 20px;
  border-bottom: 14px solid #bcbed4;
  border-top: none;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}

.canvas .metrics-header-wrap .card.response-rate .title-wrapper .tooltip-wrap:hover .sb-tooltip::after {
  top: -13px;
  right: 20px;
  border-bottom: 14px solid white;
  border-top: none;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}

.canvas .metrics-header-wrap .card.response-rate .details {
  justify-content: flex-start;
}

.canvas .metrics-header-wrap .card.response-rate .details .detail-wrap {
  margin-right: 20px;
}

.canvas .metrics-header-wrap .card .card-body {
  padding: 0;
}

.canvas .metrics-header-wrap .card p {
  font-family: sofia-pro, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}

@media (max-width: 768px) {
  .canvas .metrics-header-wrap .card p {
    margin: 0;
    font-size: 18px;
  }
}
.canvas .metrics-header-wrap .card .score {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 35px;
  font-weight: bold;
  color: #00054d;
  margin: -6px 0 0 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .canvas .metrics-header-wrap .card .score {
    font-size: 35px;
  }
}
.canvas .metrics-header-wrap .card .details {
  align-items: center;
  color: #6d6f94;
  margin-top: -4px;
  display: flex;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  border-top: 1px solid #bcbed4;
  padding: 8px 0 0 0;
  justify-content: space-evenly;
  width: 100%;
  text-align: center;
  flex: 1;
}

@media (max-width: 1024px) {
  .canvas .metrics-header-wrap .card .details {
    justify-content: flex-start;
  }
}
.canvas .metrics-header-wrap .card .details .detail-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .canvas .metrics-header-wrap .card .details .detail-wrap {
    margin-right: 20px;
  }
}
.canvas .metrics-header-wrap .card .details img {
  width: 18px;
  height: 18px;
}

.canvas .metrics-header-wrap .card .details .score {
  font-weight: 600;
  font-size: 16px;
  color: #3a3c66;
  margin: 0 0 0 10px;
}

.canvas .metrics-header-wrap .flex-wrapper {
  display: flex;
  flex: 2;
}

@media (max-width: 1024px) {
  .canvas .metrics-header-wrap .flex-wrapper {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .canvas .metrics-header-wrap .flex-wrapper {
    flex-direction: column;
  }
}
.automation-banner {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  color: #007b80;
  align-items: center;
  margin: -10px 0px 20px 0px;
  border: 1px solid #007b80;
  border-radius: 14px;
  box-shadow: 0 8px 24px 0 #e1e2f0;
  background: #f5fcfc;
  overflow: hidden;
}

.automation-banner .flex-wrap {
  display: flex;
}

.automation-banner .flex-wrap .description {
  margin-right: 10px;
}

.automation-banner .flex-wrap .button-tertiary span {
  margin-bottom: 4px;
}

.automation-banner .dismiss {
  font-size: 28px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  transition: all 0.3s;
  overflow: hidden;
  padding: 0 5px;
}

@media (max-width: 1024px) {
  .automation-banner .dismiss:hover {
    width: 25px !important;
  }
  .automation-banner .dismiss:hover .char::before {
    display: none;
    width: 0px;
  }
}
.automation-banner .dismiss .char {
  margin-top: -7px;
  transition: all 0.1s;
  display: flex;
  align-items: center;
}

.automation-banner .dismiss .char::before {
  content: "Dismiss";
  width: 0px;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: opacity 0.4s;
  font-size: 15px;
  margin: 5px 0 0 0;
  color: #c70a2a;
  overflow: hidden;
}

.automation-banner .dismiss:hover {
  cursor: pointer;
  box-shadow: 0 1px 3px 2px #e1e2f0;
  color: #c70a2a;
  width: 80px;
  background-color: #ffffff;
}

.automation-banner .dismiss:hover .char {
  background-color: #ffffff;
}

.automation-banner .dismiss:hover .char::before {
  width: 55px;
  opacity: 1;
}

.air-datepicker-cell.-year-.-other-decade-,
.air-datepicker-cell.-day-.-other-month- {
  color: var(--adp-color-other-month);
}

.air-datepicker-cell.-year-.-other-decade-.-disabled-,
.air-datepicker-cell.-day-.-other-month-.-disabled- {
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-year-.-other-decade-:hover,
.air-datepicker-cell.-day-.-other-month-:hover {
  color: var(--adp-color-other-month-hover);
}

.-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-disabled-.-focus-.air-datepicker-cell.-day-.-other-month- {
  color: var(--adp-color-other-month);
}

.-selected-.air-datepicker-cell.-year-.-other-decade-,
.-selected-.air-datepicker-cell.-day-.-other-month- {
  color: #fff;
  background: var(--adp-background-color-selected-other-month);
}

.-selected-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-selected-.-focus-.air-datepicker-cell.-day-.-other-month- {
  background: var(--adp-background-color-selected-other-month-focused);
}

.-in-range-.air-datepicker-cell.-year-.-other-decade-,
.-in-range-.air-datepicker-cell.-day-.-other-month- {
  background-color: var(--adp-background-color-in-range);
  color: var(--adp-color);
}

.-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-in-range-.-focus-.air-datepicker-cell.-day-.-other-month- {
  background-color: var(--adp-background-color-in-range-focused);
}

.air-datepicker-cell.-year-.-other-decade-:empty,
.air-datepicker-cell.-day-.-other-month-:empty {
  background: none;
  border: none;
}

.air-datepicker-cell {
  border-radius: var(--adp-cell-border-radius);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.air-datepicker-cell.current-schedule {
  border: 1px solid #b07d00;
  color: #b07d00 !important;
}

.air-datepicker-cell.-focus- {
  background: var(--adp-cell-background-color-hover);
}

.air-datepicker-cell.-current- {
  color: var(--adp-color-current-date);
}

.air-datepicker-cell.-current-.-focus- {
  color: var(--adp-color);
}

.air-datepicker-cell.-current-.-in-range- {
  color: var(--adp-color-current-date);
}

.air-datepicker-cell.-disabled- {
  cursor: default;
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-disabled-.skipped {
  cursor: default;
  color: rgba(74, 74, 74, 0.45);
}

.air-datepicker-cell.-disabled-.skipped.-focus- {
  cursor: default;
  color: rgba(74, 74, 74, 0.45);
}

.air-datepicker-cell.-disabled-.-focus- {
  color: var(--adp-color-disabled);
  background: none;
}

.air-datepicker-cell.-disabled-.-in-range- {
  color: var(--adp-color-disabled-in-range);
}

.air-datepicker-cell.-disabled-.-current-.-focus- {
  color: var(--adp-color-disabled);
}

.air-datepicker-cell.-in-range- {
  background: var(--adp-cell-background-color-in-range);
  border-radius: 0;
}

.air-datepicker-cell.-in-range-:hover,
.air-datepicker-cell.-in-range-.-focus- {
  background: var(--adp-cell-background-color-in-range-hover);
}

.air-datepicker-cell.-range-from- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius);
}

.air-datepicker-cell.-range-to- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: 0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0;
}

.air-datepicker-cell.-range-to-.-range-from- {
  border-radius: var(--adp-cell-border-radius);
}

.air-datepicker-cell.-selected- {
  color: #00054d;
  border: none;
  background: var(--adp-cell-background-color-selected);
}

.air-datepicker-cell.-selected-.-current- {
  color: #fff;
  background: var(--adp-cell-background-color-selected);
}

.air-datepicker-cell.-selected-.-focus- {
  background: var(--adp-cell-background-color-selected-hover);
}

.air-datepicker-body {
  transition: all var(--adp-transition-duration) var(--adp-transition-ease);
}

.air-datepicker-body.-hidden- {
  display: none;
}

.air-datepicker-body--day-names {
  display: grid;
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  margin: 4px 0 8px -6px;
  border-bottom: 1px solid #e1e2f0;
  padding-bottom: 10px;
  width: calc(100% + 12px);
}

.air-datepicker-body--day-name {
  color: var(--adp-day-name-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
}

.air-datepicker-body--day-name.-clickable- {
  cursor: pointer;
}

.air-datepicker-body--day-name.-clickable-:hover {
  color: var(--adp-day-name-color-hover);
}

.air-datepicker-body--cells {
  display: grid;
}

.air-datepicker-body--cells.-days- {
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  grid-auto-rows: var(--adp-day-cell-height);
}

.air-datepicker-body--cells.-months- {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: var(--adp-month-cell-height);
}

.air-datepicker-body--cells.-years- {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: var(--adp-year-cell-height);
}

.air-datepicker-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--adp-border-color-inner);
  min-height: var(--adp-nav-height);
  padding: var(--adp-padding);
  box-sizing: content-box;
}

.-only-timepicker- .air-datepicker-nav {
  display: none;
}

.air-datepicker-nav--title,
.air-datepicker-nav--action {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.air-datepicker-nav--action {
  width: var(--adp-nav-action-size);
  border-radius: var(--adp-border-radius);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.air-datepicker-nav--action:hover {
  background: none;
}

.air-datepicker-nav--action:active {
  background: var(--adp-background-color-active);
}

.air-datepicker-nav--action.-disabled- {
  visibility: hidden;
}

.air-datepicker-nav--action svg {
  width: 32px;
  height: 32px;
}

.air-datepicker-nav--action path {
  fill: none;
  stroke: var(--adp-nav-arrow-color);
  stroke-width: 2px;
}

.air-datepicker-nav--title {
  border-radius: var(--adp-border-radius);
  padding: 0 8px;
  color: #6d6f94;
  font-size: 16px;
}

.air-datepicker-nav--title i {
  font-style: normal;
  margin-left: 0.3em;
}

.air-datepicker-nav--title:hover {
  background: none;
}

.air-datepicker-nav--title:active {
  background: var(--adp-background-color-active);
}

.air-datepicker-nav--title.-disabled- {
  cursor: default;
  background: none;
}

.air-datepicker-buttons {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}

.air-datepicker-button {
  display: inline-flex;
  color: var(--adp-btn-color);
  border-radius: var(--adp-btn-border-radius);
  cursor: pointer;
  height: var(--adp-btn-height);
  border: none;
  background: rgba(255, 255, 255, 0);
}

.air-datepicker-button:hover {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
}

.air-datepicker-button:focus {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
  outline: none;
}

.air-datepicker-button:active {
  background: var(--adp-btn-background-color-active);
}

.air-datepicker-button span {
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.air-datepicker-time {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-column-gap: 12px;
  align-items: center;
  position: relative;
  padding: 0 var(--adp-time-padding-inner);
}

.-only-timepicker- .air-datepicker-time {
  border-top: none;
}

.air-datepicker-time--current {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 14px;
  text-align: center;
}

.air-datepicker-time--current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}

.air-datepicker-time--current-hours,
.air-datepicker-time--current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}

.air-datepicker-time--current-hours:after,
.air-datepicker-time--current-minutes:after {
  content: "";
  background: var(--adp-background-color-hover);
  border-radius: var(--adp-border-radius);
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}

.air-datepicker-time--current-hours.-focus-:after,
.air-datepicker-time--current-minutes.-focus-:after {
  opacity: 1;
}

.air-datepicker-time--current-ampm {
  text-transform: uppercase;
  align-self: flex-end;
  color: var(--adp-time-day-period-color);
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}

.air-datepicker-time--row {
  display: flex;
  align-items: center;
  font-size: 11px;
  height: 17px;
  background: linear-gradient(to right, var(--adp-time-track-color), var(--adp-time-track-color)) left 50%/100% var(--adp-time-track-height) no-repeat;
}

.air-datepicker-time--row:first-child {
  margin-bottom: 4px;
}

.air-datepicker-time--row input[type=range] {
  background: none;
  cursor: pointer;
  flex: 1;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

.air-datepicker-time--row input[type=range]::-ms-tooltip {
  display: none;
}

.air-datepicker-time--row input[type=range]:hover::-webkit-slider-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:hover::-moz-range-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:hover::-ms-thumb {
  border-color: var(--adp-time-track-color-hover);
}

.air-datepicker-time--row input[type=range]:focus {
  outline: none;
}

.air-datepicker-time--row input[type=range]:focus::-webkit-slider-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]:focus::-moz-range-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]:focus::-ms-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -webkit-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -moz-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -ms-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-thumb {
  margin-top: calc(var(--adp-time-thumb-size) / 2 * -1);
}

.air-datepicker-time--row input[type=range]::-webkit-slider-runnable-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}

.air-datepicker-time--row input[type=range]::-moz-range-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}

.air-datepicker-time--row input[type=range]::-ms-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}

.air-datepicker-time--row input[type=range]::-ms-fill-lower {
  background: rgba(0, 0, 0, 0);
}

.air-datepicker-time--row input[type=range]::-ms-fill-upper {
  background: rgba(0, 0, 0, 0);
}

.air-datepicker {
  --adp-font-family: sofia-pro, Arial, sans-serif;
  --adp-font-size: 14px;
  --adp-width: 360px;
  --adp-z-index: 100;
  --adp-padding: 6px;
  --adp-grid-areas: "nav""body""timepicker""buttons";
  --adp-transition-duration: .3s;
  --adp-transition-ease: ease-out;
  --adp-transition-offset: 8px;
  --adp-background-color: #fff;
  --adp-background-color-hover: #f0f1fa;
  --adp-background-color-active: #eaeaea;
  --adp-background-color-in-range: rgba(92, 196, 239, .1);
  --adp-background-color-in-range-focused: rgba(92, 196, 239, .2);
  --adp-background-color-selected-other-month-focused: #e1e2f0;
  --adp-background-color-selected-other-month: #e1e2f0;
  --adp-color: #4a4a4a;
  --adp-color-secondary: #9c9c9c;
  --adp-accent-color: #bcbed4;
  --adp-color-current-date: var(--adp-accent-color);
  --adp-color-other-month: #C3CACD;
  --adp-color-disabled: rgba(195, 202, 205, 0.5);
  --adp-color-disabled-in-range: #939393;
  --adp-color-other-month-hover: #c5c5c5;
  --adp-border-color: #dbdbdb;
  --adp-border-color-inner: #f0f1fa;
  --adp-border-radius: 16px;
  --adp-border-color-inline: #d7d7d7;
  --adp-nav-height: 40px;
  --adp-nav-arrow-color: var(--adp-color-secondary);
  --adp-nav-action-size: 40px;
  --adp-nav-color-secondary: var(--adp-color-secondary);
  --adp-day-name-color: #000333;
  --adp-day-name-color-hover: #8ad5f4;
  --adp-day-cell-width: 1fr;
  --adp-day-cell-height: 40px;
  --adp-month-cell-height: 42px;
  --adp-year-cell-height: 56px;
  --adp-pointer-size: 10px;
  --adp-poiner-border-radius: 2px;
  --adp-pointer-offset: 14px;
  --adp-cell-border-radius: 0px;
  --adp-cell-background-color-hover: var(--adp-background-color-hover);
  --adp-cell-background-color-selected: #e1e2f0;
  --adp-cell-background-color-selected-hover: #e1e2f0;
  --adp-cell-background-color-in-range: rgba(92, 196, 239, 0.1);
  --adp-cell-background-color-in-range-hover: rgba(92, 196, 239, 0.2);
  --adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);
  --adp-btn-height: 40px;
  --adp-btn-color: var(--adp-accent-color);
  --adp-btn-color-hover: var(--adp-color);
  --adp-btn-border-radius: var(--adp-border-radius);
  --adp-btn-background-color-hover: var(--adp-background-color-hover);
  --adp-btn-background-color-active: var(--adp-background-color-active);
  --adp-time-track-height: 1px;
  --adp-time-track-color: #dedede;
  --adp-time-track-color-hover: #b1b1b1;
  --adp-time-thumb-size: 12px;
  --adp-time-padding-inner: 10px;
  --adp-time-day-period-color: var(--adp-color-secondary);
  --adp-mobile-font-size: 16px;
  --adp-mobile-nav-height: 40px;
  --adp-mobile-width: 320px;
  --adp-mobile-day-cell-height: 38px;
  --adp-mobile-month-cell-height: 48px;
  --adp-mobile-year-cell-height: 64px ;
}

.air-datepicker-overlay {
  --adp-overlay-background-color: rgba(0, 0, 0, .3);
  --adp-overlay-transition-duration: .3s;
  --adp-overlay-transition-ease: ease-out;
  --adp-overlay-z-index: 99 ;
}

.air-datepicker {
  background: var(--adp-background-color);
  border: 1px solid var(--adp-border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: var(--adp-border-radius);
  box-sizing: content-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, max-content);
  grid-template-areas: var(--adp-grid-areas);
  font-family: var(--adp-font-family), sans-serif;
  font-size: var(--adp-font-size);
  color: var(--adp-color);
  width: var(--adp-width);
  position: absolute;
  transition: opacity var(--adp-transition-duration) var(--adp-transition-ease), transform var(--adp-transition-duration) var(--adp-transition-ease);
  z-index: var(--adp-z-index);
  position: relative;
}

.air-datepicker .weekend-tooltip {
  opacity: 0;
  height: 0;
  visibility: hidden;
  display: block;
  position: absolute;
  top: 160px;
  width: 300px;
  padding: 10px;
  border: 1px solid #c70a2a;
  background: #fef9fa;
  color: #c70a2a;
  border-radius: 20px;
  box-shadow: 0 6px 17px 0px #bcbed4;
  z-index: 99;
  left: 30px;
  transition: all 0.2s;
}

.air-datepicker .weekend-tooltip.active {
  opacity: 1;
  height: 65px;
  visibility: visible;
}

.air-datepicker:not(.-custom-position-) {
  opacity: 0;
}

.air-datepicker.-from-top- {
  transform: translateY(calc(var(--adp-transition-offset) * -1));
}

.air-datepicker.-from-right- {
  transform: translateX(var(--adp-transition-offset));
}

.air-datepicker.-from-bottom- {
  transform: translateY(var(--adp-transition-offset));
}

.air-datepicker.-from-left- {
  transform: translateX(calc(var(--adp-transition-offset) * -1));
}

.air-datepicker.-active-:not(.-custom-position-) {
  transform: translate(0, 0);
  opacity: 1;
}

.air-datepicker.-active-.-custom-position- {
  transition: none;
}

.air-datepicker.-inline- {
  border: none;
  box-shadow: 0 6px 17px 0px #bcbed4;
  position: relative;
  left: auto;
  right: auto;
  opacity: 1;
  transform: none;
}

.air-datepicker.-inline- .air-datepicker--pointer {
  display: none;
}

.air-datepicker.-is-mobile- {
  --adp-font-size: var(--adp-mobile-font-size);
  --adp-day-cell-height: var(--adp-mobile-day-cell-height);
  --adp-month-cell-height: var(--adp-mobile-month-cell-height);
  --adp-year-cell-height: var(--adp-mobile-year-cell-height);
  --adp-nav-height: var(--adp-mobile-nav-height);
  --adp-nav-action-size: var(--adp-mobile-nav-height);
  position: fixed;
  width: var(--adp-mobile-width);
  border: none;
}

.air-datepicker.-is-mobile- * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.air-datepicker.-is-mobile- .air-datepicker--pointer {
  display: none;
}

.air-datepicker.-is-mobile-:not(.-custom-position-) {
  transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
}

.air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
  transform: translate(-50%, -50%);
}

.air-datepicker.-custom-position- {
  transition: none;
}

.air-datepicker-global-container {
  position: absolute;
  left: 0;
  top: 0;
}

.air-datepicker--pointer {
  --pointer-half-size: calc(var(--adp-pointer-size) / 2);
  position: absolute;
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  z-index: -1;
}

.air-datepicker--pointer:after {
  content: "";
  position: absolute;
  background: #fff;
  border-top: 1px solid var(--adp-border-color-inline);
  border-right: 1px solid var(--adp-border-color-inline);
  border-top-right-radius: var(--adp-poiner-border-radius);
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  box-sizing: border-box;
}

.-top-left- .air-datepicker--pointer,
.-top-center- .air-datepicker--pointer,
.-top-right- .air-datepicker--pointer,
[data-popper-placement^=top] .air-datepicker--pointer {
  top: calc(100% - var(--pointer-half-size) + 1px);
}

.-top-left- .air-datepicker--pointer:after,
.-top-center- .air-datepicker--pointer:after,
.-top-right- .air-datepicker--pointer:after,
[data-popper-placement^=top] .air-datepicker--pointer:after {
  transform: rotate(135deg);
}

.-right-top- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer,
[data-popper-placement^=right] .air-datepicker--pointer {
  right: calc(100% - var(--pointer-half-size) + 1px);
}

.-right-top- .air-datepicker--pointer:after,
.-right-center- .air-datepicker--pointer:after,
.-right-bottom- .air-datepicker--pointer:after,
[data-popper-placement^=right] .air-datepicker--pointer:after {
  transform: rotate(225deg);
}

.-bottom-left- .air-datepicker--pointer,
.-bottom-center- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer,
[data-popper-placement^=bottom] .air-datepicker--pointer {
  bottom: calc(100% - var(--pointer-half-size) + 1px);
}

.-bottom-left- .air-datepicker--pointer:after,
.-bottom-center- .air-datepicker--pointer:after,
.-bottom-right- .air-datepicker--pointer:after,
[data-popper-placement^=bottom] .air-datepicker--pointer:after {
  transform: rotate(315deg);
}

.-left-top- .air-datepicker--pointer,
.-left-center- .air-datepicker--pointer,
.-left-bottom- .air-datepicker--pointer,
[data-popper-placement^=left] .air-datepicker--pointer {
  left: calc(100% - var(--pointer-half-size) + 1px);
}

.-left-top- .air-datepicker--pointer:after,
.-left-center- .air-datepicker--pointer:after,
.-left-bottom- .air-datepicker--pointer:after,
[data-popper-placement^=left] .air-datepicker--pointer:after {
  transform: rotate(45deg);
}

.-top-left- .air-datepicker--pointer,
.-bottom-left- .air-datepicker--pointer {
  left: var(--adp-pointer-offset);
}

.-top-right- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer {
  right: var(--adp-pointer-offset);
}

.-top-center- .air-datepicker--pointer,
.-bottom-center- .air-datepicker--pointer {
  left: calc(50% - var(--adp-pointer-size) / 2);
}

.-left-top- .air-datepicker--pointer,
.-right-top- .air-datepicker--pointer {
  top: var(--adp-pointer-offset);
}

.-left-bottom- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer {
  bottom: var(--adp-pointer-offset);
}

.-left-center- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer {
  top: calc(50% - var(--adp-pointer-size) / 2);
}

.air-datepicker--navigation {
  grid-area: nav;
}

.air-datepicker--content {
  box-sizing: content-box;
  padding: var(--adp-padding);
  grid-area: body;
}

.-only-timepicker- .air-datepicker--content {
  display: none;
}

.air-datepicker--time {
  grid-area: timepicker;
}

.air-datepicker--buttons {
  grid-area: buttons;
}

.air-datepicker--buttons,
.air-datepicker--time {
  padding: var(--adp-padding);
  border-top: 1px solid var(--adp-border-color-inner);
}

.air-datepicker-overlay {
  position: fixed;
  background: var(--adp-overlay-background-color);
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), left 0s, height 0s, width 0s;
  transition-delay: 0s, var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration), var(--adp-overlay-transition-duration);
  z-index: var(--adp-overlay-z-index);
}

.air-datepicker-overlay.-active- {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: opacity var(--adp-overlay-transition-duration) var(--adp-overlay-transition-ease), height 0s, width 0s;
}

.custom-domains .fieldset-wrap {
  display: flex;
  width: 100%;
}

@media (max-width: 768px) {
  .custom-domains .fieldset-wrap {
    flex-direction: column;
  }
}
.custom-domains .fieldset-wrap fieldset {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.custom-domains .fieldset-wrap fieldset.spf {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .custom-domains .fieldset-wrap fieldset.spf {
    margin: 0 0 30px 0;
  }
}
.custom-domains .fieldset-wrap fieldset.dkim {
  margin-left: 10px;
  border-left: 1px solid #e1e2f0;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .custom-domains .fieldset-wrap fieldset.dkim {
    margin: 10px 0 0 0;
    padding: 20px 0 0 0;
    border-left: 0;
    border-top: 1px solid #bcbed4;
  }
}
.custom-domains .fieldset-wrap fieldset .input-wrap, .custom-domains .fieldset-wrap fieldset .sb-input-group {
  position: relative;
  margin-bottom: 0;
  display: flex;
}

.custom-domains .fieldset-wrap fieldset .input-wrap:hover .copy-wrap, .custom-domains .fieldset-wrap fieldset .sb-input-group:hover .copy-wrap {
  opacity: 1;
}

.custom-domains .fieldset-wrap fieldset .input-wrap input, .custom-domains .fieldset-wrap fieldset .sb-input-group input {
  width: 100%;
  margin-bottom: 0;
  padding-right: 60px;
}

.custom-domains .fieldset-wrap fieldset .input-wrap .copy-wrap, .custom-domains .fieldset-wrap fieldset .sb-input-group .copy-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00054d;
  cursor: pointer;
  color: #ffffff;
  width: 55px;
  text-align: center;
  font-size: 15px;
  position: absolute;
  right: 3px;
  top: 3px;
  height: 34px;
  border-radius: 0px;
  padding: 0 10px;
  transition: all 0.2s;
}

.custom-domains .fieldset-wrap fieldset .input-wrap .copy-wrap::before, .custom-domains .fieldset-wrap fieldset .sb-input-group .copy-wrap::before {
  content: "";
  width: 20px;
  height: 34px;
  position: absolute;
  left: -20px;
  top: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 70%);
}

.custom-domains .fieldset-wrap fieldset .input-wrap .copy-wrap.copied, .custom-domains .fieldset-wrap fieldset .sb-input-group .copy-wrap.copied {
  width: 75px;
}

.custom-domains .fieldset-wrap fieldset .input-wrap .copy-wrap:hover, .custom-domains .fieldset-wrap fieldset .sb-input-group .copy-wrap:hover {
  width: 75px;
}

.custom-domains .fieldset-wrap fieldset .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.custom-domains .fieldset-wrap fieldset label {
  margin: 8px 0 4px 0;
  font-weight: bold;
}

.custom-domains .verification-error {
  background: #fef9fa;
  color: #c70a2a;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #c70a2a;
  width: 100%;
  margin: 20px 0 0 0;
}

.custom-domains .domain-name-context {
  border-bottom: 1px solid #e1e2f0;
  padding: 10px 0;
  margin-bottom: 20px;
  font-size: 18px;
}

.custom-domains .domain-name-context span {
  font-weight: 600;
}

.custom-domains .dns-alert {
  font-family: sofia-pro, Arial, sans-serif;
  text-align: center;
  color: #b07d00;
  background-color: #fffdf7;
  border: 1px solid #b07d00;
  border-radius: 14px;
  padding: 10px 20px;
  width: 100%;
  margin: 0 0 10px 0;
}

.custom-domains .dns-alert span {
  font-size: 18px;
  margin-right: 5px;
  margin-top: -1px;
}

#div_id_from_address.custom-domain .input-wrapper {
  display: flex;
  flex-direction: column;
}

#div_id_from_address.custom-domain .input-wrapper input {
  width: 190px !important;
}

.sb-input-group {
  position: relative;
  margin-bottom: 14px;
}

.sb-input-group_right-label input {
  width: 175px !important;
}

.sb-input-group__right-label {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 205px;
  height: 40px;
  font-family: sofia-pro, Arial, sans-serif;
  white-space: nowrap;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.63;
  letter-spacing: 0.26px;
  color: rgba(0, 0, 0, 0.5);
  border: solid 1px #e1e2e6;
  padding: 5px 10px;
  background: #f9f9fc;
  overflow: auto;
}

.sb-input-group__right-label::-webkit-scrollbar {
  height: 5px;
}

.sb-input-group__right-label::-webkit-scrollbar-track {
  background: #bcbcc1;
}

.sb-input-group__right-label::-webkit-scrollbar-thumb {
  background-color: #e1e2e6;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .sb-input-group__right-label {
    top: 45px;
    right: -19px;
    left: inherit;
  }
}
.sb-input-group--inline {
  display: flex;
  flex-direction: row;
}

@media (max-width: 768px) {
  .sb-input-group--inline {
    flex-direction: column;
  }
}
.sb-input {
  padding-left: 13px;
  border-radius: 0;
  width: 313px;
  height: 40px;
  border: solid 1px #bcbed4;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.63;
  letter-spacing: 0.26px;
  color: #000333;
}

.sb-input::placeholder {
  color: #bcbed4;
}

.sb-input::-webkit-input-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.sb-input::-moz-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.sb-input::-ms-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.sb-input::placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.sb-input:focus, .sb-input:focus-visible {
  border-color: #000a9f !important;
  outline: 0px solid #000a9f !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

input:not([type=submit]),
textarea {
  color: #000333 !important;
}

input:not([type=submit])::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

input:not([type=submit])::-moz-placeholder,
textarea::-moz-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

input:not([type=submit])::-ms-placeholder,
textarea::-ms-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

input:not([type=submit])::placeholder,
textarea::placeholder {
  color: rgba(0, 0, 51, 0.4);
}

input:not([type=submit]):focus, input:not([type=submit]):focus-visible,
textarea:focus,
textarea:focus-visible {
  border-color: #000a9f !important;
  outline: 0px solid #000a9f !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.selectize-input {
  border-radius: 0 !important;
}

.selectize-input::-webkit-input-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.selectize-input::-moz-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.selectize-input::-ms-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.selectize-input::placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.selectize-input.focus {
  border-color: #000a9f !important;
  outline: 0px solid #000a9f !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.selectize-input.focus.input-active input:focus, .selectize-input.focus.input-active input:focus-visible {
  border-color: unset !important;
  outline: 0 !important;
}

.form-control,
.form-group input:not([type=submit]) {
  border-radius: 0 !important;
  color: #000333 !important;
}

.form-control::-webkit-input-placeholder,
.form-group input:not([type=submit])::-webkit-input-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.form-control::-moz-placeholder,
.form-group input:not([type=submit])::-moz-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.form-control::-ms-placeholder,
.form-group input:not([type=submit])::-ms-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.form-control::placeholder,
.form-group input:not([type=submit])::placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.form-control:focus, .form-control:focus-visible,
.form-group input:not([type=submit]):focus,
.form-group input:not([type=submit]):focus-visible {
  border-color: #000a9f !important;
  outline: 0px solid #000a9f !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.form-wrapper .input-group input:not([type=submit])::-webkit-input-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.form-wrapper .input-group input:not([type=submit])::-moz-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.form-wrapper .input-group input:not([type=submit])::-ms-placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.form-wrapper .input-group input:not([type=submit])::placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.form-wrapper .input-group input:not([type=submit]):focus, .form-wrapper .input-group input:not([type=submit]):focus-visible {
  border-color: #000a9f !important;
  outline: 0px solid #000a9f !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.dataTables_wrapper .search-focused {
  border-color: #000a9f !important;
  outline: 0px solid #000a9f !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.dataTables_wrapper .dataTables_filter input {
  border: 0 !important;
  outline: 0 !important;
}

#quillEditor .ql-editor:focus, #quillEditor .ql-editor:focus-visible {
  border-color: #000a9f !important;
  outline: 0px solid #000a9f !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.autocomplete {
  position: relative;
  /*when hovering an item:*/
  /*when navigating through the items using the arrow keys:*/
}

.autocomplete.disabled {
  display: none;
}

.autocomplete input[type=text] {
  width: 100%;
}

.autocomplete input[type=text]:focus, .autocomplete input[type=text]:active {
  border-bottom: none !important;
  outline: none;
  box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.autocomplete .autocomplete-items {
  position: absolute;
  width: 445px;
  max-height: 324px;
  border-radius: 0 0 5px 5px;
  border: solid 1px #cbccd5;
  box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.15);
  background-color: rgb(255, 255, 255);
  border-top: none;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

@media (max-width: 768px) {
  .autocomplete .autocomplete-items {
    width: calc(100vw - 20px);
  }
}
.autocomplete .autocomplete-items div {
  padding: 3px 8px;
  background-color: #fff;
  cursor: pointer;
  width: 445px;
  height: 28px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.23px;
  color: rgb(146, 147, 155);
}

.autocomplete .autocomplete-items div:hover {
  background-color: #f9f9fc;
}

.autocomplete .autocomplete-active {
  background-color: #f9f9fc !important;
  color: rgba(0, 0, 0, 0.6);
}

label {
  margin: 0;
}

.loader-bar-wrap_hint {
  max-width: 600px;
  margin: 12px auto;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.23px;
  text-align: center;
  color: #3a3c66;
}

.loader-bar-wrap {
  overflow: hidden;
  width: 100%;
  height: 5px;
  border-radius: 2.5px;
  background-color: rgb(216, 216, 216);
}

.no-contacts-message {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.86;
  letter-spacing: 0.23px;
  color: rgba(0, 0, 0, 0.6);
  padding: 50px 0;
  text-align: center;
}

.nps-plus-link {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  color: #000a9f;
  position: relative;
  padding-left: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.nps-plus-link:hover {
  color: black;
}

.nps-plus-link:after {
  position: absolute;
  content: "+";
  left: 3px;
  top: 0px;
}

.sidebar-back-link {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.9) !important;
  position: relative;
  padding-left: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.sidebar-back-link:hover {
  color: black;
}

.sidebar-back-link:after {
  position: absolute;
  content: "<";
  left: 3px;
  top: -2px;
  color: #ffffff;
  transform: scale(0.6, 1.4);
}

.sb-copy-link {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 2.17;
  letter-spacing: 0.2px;
  color: #00054d !important;
  transition: all 0.3s;
}

.sb-copy-link:hover {
  color: rgba(29, 29, 27, 0.87) !important;
}

.sb-mail-link {
  color: #00054d !important;
  cursor: pointer;
  transition: all 0.3s;
}

.sb-mail-link:hover {
  color: black !important;
}

.nps-header {
  color: #333;
  font-family: sofia-pro, sans-serif;
  font-size: 20px;
}

.nps-line {
  height: 1px;
  width: 100%;
  border-bottom: solid 1px #cbccd5;
}

.nps-line-vertical {
  width: 1px;
  border-left: 1px solid #4E7484;
  height: 32px;
}

.sb-input-filter {
  width: 260px;
  height: 30px;
  border: none;
  outline: none;
  font-size: 14px;
  line-height: 38px;
  padding-left: 10px;
  border-radius: 5px;
}

.nps-reset-filters {
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
  width: 35px;
  height: 32px;
  border-radius: 7px 0 0 7px;
  background-color: #ffffff;
}

@media (max-width: 659px) {
  .nps-reset-filters {
    border-radius: 0 0 7px 7px;
    position: absolute;
    right: calc(50% - 17px);
    bottom: -34px;
    box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.15);
  }
}
.nps-reset-filters span {
  width: 100%;
  text-align: center;
  display: block;
  font-size: 22px;
  color: #00054d;
}

.nps-reset-filters:hover {
  background-color: #00054d;
}

.nps-reset-filters:hover span {
  color: white;
}

.nps-new-select {
  position: relative;
}

.nps-new-select select {
  border-radius: 0;
  outline: none;
  border: 1px solid #CBCCD5;
  background-color: white;
  width: 90px;
  position: relative;
  height: 27px;
  padding-left: 6px;
  -webkit-appearance: none;
}

.nps-new-select select + img {
  pointer-events: none;
  color: #00054d;
  position: absolute;
  right: 6px;
  top: 7px;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.filter-preview {
  display: none;
  padding: 16px 14px;
  width: 100%;
  border: solid 1px rgb(203, 204, 213);
  background-color: #f9f9fc;
}

.filter-preview.active {
  display: block;
}

.filter-preview__row {
  display: flex;
  flex-wrap: wrap;
}

.filter-preview__row:not(:first-child) {
  margin-top: 8px;
}

.filter-preview__row-header {
  width: 135px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.86;
  letter-spacing: 0.23px;
  color: rgb(29, 29, 27);
}

.filter-preview__chips .nps-chip {
  margin-right: 10px;
  padding-right: 8px;
  cursor: not-allowed;
}

.filter-preview__chips .nps-chip:after {
  display: none;
}

.nps-btn-filter {
  color: #deffff !important;
  cursor: pointer;
  transition: all 0.3s;
}

.nps-btn-filter:hover {
  text-decoration: underline !important;
}

.nps-btn-link {
  color: #00054d;
  text-decoration: underline;
  font-size: 12px;
  padding: 0 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.nps-btn-link.disabled {
  display: none;
}

.nps-btn-link:hover {
  background-color: #00054d;
  color: white;
  padding: 0 5px;
  border-radius: 2px;
}

.nps-chip {
  height: 20px;
  background-color: #007b80;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  padding: 2px 24px 2px 6px;
  position: relative;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.nps-chip.disabled {
  display: none;
}

.nps-chip:hover:after {
  filter: drop-shadow(0px 0px 2px red);
  transform: scale(1.2);
}

.nps-chip:after {
  background-image: url("/static/icons/ic-chip_x.svg");
  background-repeat: no-repeat;
  content: " ";
  position: absolute;
  font-size: 10px;
  top: 9px;
  right: 5px;
  height: 10px;
  width: 10px;
}

.smile {
  cursor: pointer;
  width: 14px;
}

.smile img {
  width: 100%;
}

.checkbox-wrap {
  position: relative;
}

.checkbox-wrap__checker {
  height: 16px;
  width: 16px;
  border: 1px solid #00054d;
}

.checkbox-wrap__checker:after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-wrap__checkbox,
.checkbox-wrap input[type=checkbox] {
  display: none;
}

.checkbox-wrap__checkbox:not(:checked) ~ .checkbox-wrap__checker,
.checkbox-wrap input[type=checkbox]:not(:checked) ~ .checkbox-wrap__checker {
  background-color: white;
}

.checkbox-wrap__checkbox:checked ~ .checkbox-wrap__checker,
.checkbox-wrap input[type=checkbox]:checked ~ .checkbox-wrap__checker {
  background-color: #00054d;
}

.results-search {
  position: relative;
}

.results-search__input {
  border: none;
  height: 40px;
  background-color: #ffffff;
  width: 0;
  padding: 0;
  transition: all 0.2s;
}

.results-search__input:disabled {
  background: #e1e2f0;
}

.results-search__input ~ .glyphicons-search {
  position: absolute;
  right: 0;
  top: 13px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.results-search__input ~ .glyphicons-remove-sign {
  transition: all 0.2s;
  position: absolute;
  right: 11px;
  top: 7px;
  font-size: 18px;
  cursor: pointer;
  display: none;
}

.results-search__input.active {
  padding-left: 36px;
  padding-right: 34px;
  width: 285px;
  outline: none;
  pointer-events: all;
  border: solid 1px #cbccd5;
}

.results-search__input.active ~ .glyphicons-remove-sign {
  display: block;
}

.results-search__input.active ~ .glyphicons-search {
  right: 255px;
}

.nps-title {
  font-family: sofia-pro, sans-serif;
  font-size: 30px;
  font-weight: bold;
  text-align: left;
  color: #1d1d1b;
}

.hide {
  display: none !important;
}

.note {
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
  margin: 10px 0;
}

@keyframes dance {
  0%, 100% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.modal_js.discard .sb-modal__header {
  border: none;
}

.modal_js.discard .primary-text {
  font-size: 21px;
  color: #000033;
  margin: 10px 20px;
}

.modal_js.discard .secondary-text {
  font-size: 21px;
  color: #000033;
  font-weight: normal;
  margin: 10px 20px;
}

.data-manager header {
  display: flex;
}

@media (max-width: 768px) {
  .data-manager header {
    flex-direction: column;
  }
  .data-manager header h1 {
    margin-bottom: 20px;
  }
  .data-manager header .button-primary {
    margin: 0 0 20px 0;
    width: 100%;
  }
}
.data-manager header .button-primary {
  align-self: flex-start;
  margin-left: auto;
}

.data-manager .intro {
  margin-bottom: 20px;
  margin-top: -10px;
}

.data-manager .list-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.data-manager .list-wrapper .type-selections {
  display: flex;
  margin: 40px 0 20px 0;
}

.data-manager .list-wrapper .type-selections .type {
  font-size: 22px;
  font-weight: bold;
  margin: 0 20px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .data-manager .list-wrapper .type-selections .type {
    margin: 0 10px;
  }
}
.data-manager .list-wrapper .type-selections .type:hover {
  color: #000a9f;
}

.data-manager .list-wrapper .type-slider {
  position: absolute;
  left: 20px;
  top: 36px;
  height: 3px;
  width: 115px;
  display: block;
  background: var(--SB-Gradient, linear-gradient(315deg, #000FE3 0.34%, #9D3AFF 99.57%));
  transition: left 0.5s, width 0.3s, transform 0.3s;
  transition-timing-function: cubic-bezier(0.5, 1, 0.2, 1);
  border-radius: 20px;
}

@media (max-width: 768px) {
  .data-manager .list-wrapper .type-slider {
    left: 10px;
  }
}
.data-manager .list-wrapper .type-slider.quick {
  transition: all 0.2s;
  transition-timing-function: linear;
}

.data-manager .list-wrapper .type-slider.bump {
  transform: scaleX(0.7);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.data-manager .list-wrapper .data-wrapper {
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9fc 100%);
  box-shadow: 0 12px 17px 0px #bcbed4;
  padding: 20px;
}

.data-manager .list-wrapper .data-wrapper .controls {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .data-manager .list-wrapper .data-wrapper .controls {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.data-manager .list-wrapper .data-wrapper .controls .show-hide-wrapper {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .data-manager .list-wrapper .data-wrapper .controls .show-hide-wrapper {
    margin-top: 10px;
  }
}
.data-manager .list-wrapper .data-wrapper .controls .show-hide-wrapper .mini-toggle .description {
  width: 280px;
}

.data-manager .list-wrapper .data-wrapper .controls .search {
  position: relative;
}

@media (max-width: 768px) {
  .data-manager .list-wrapper .data-wrapper .controls .search {
    width: 100%;
  }
}
.data-manager .list-wrapper .data-wrapper .controls .search input {
  padding-left: 34px;
}

@media (max-width: 768px) {
  .data-manager .list-wrapper .data-wrapper .controls .search input {
    width: 100%;
  }
}
.data-manager .list-wrapper .data-wrapper .controls .search img {
  position: absolute;
  left: 10px;
  top: 12px;
}

.data-manager .list-wrapper .data-wrapper .table {
  margin-top: 20px;
  overflow: auto;
}

.data-manager .list-wrapper .data-wrapper .table.single-checkbox-column .header, .data-manager .list-wrapper .data-wrapper .table.single-checkbox-column .list .data-row {
  grid-template-columns: [name] 1fr [checkbox] 120px;
}

.data-manager .list-wrapper .data-wrapper .table.single-checkbox-column .header, .data-manager .list-wrapper .data-wrapper .table.single-checkbox-column .list {
  min-width: 300px;
}

.data-manager .list-wrapper .data-wrapper .table.triple-checkbox-column .header, .data-manager .list-wrapper .data-wrapper .table.triple-checkbox-column .list .data-row {
  grid-template-columns: [name] 1fr repeat(3, 120px [checkbox]);
}

.data-manager .list-wrapper .data-wrapper .table.triple-checkbox-column .header, .data-manager .list-wrapper .data-wrapper .table.triple-checkbox-column .list {
  min-width: 550px;
}

.data-manager .list-wrapper .data-wrapper .table .header {
  display: grid;
  grid-template-columns: [name] minmax(140px, 1fr) repeat(4, 120px [checkbox]);
  grid-column-gap: 20px;
  padding: 10px;
  align-items: end;
  font-weight: 600;
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid #e1e2f0;
  min-width: 720px;
}

.data-manager .list-wrapper .data-wrapper .table .header .checkbox-title {
  text-align: center;
}

.data-manager .list-wrapper .data-wrapper .table .list {
  border: 1px solid #e1e2f0;
  border-top: none;
  max-height: calc(100vh - 350px);
  min-width: 720px;
}

.data-manager .list-wrapper .data-wrapper .table .list .data-row {
  display: grid;
  grid-template-columns: [name] minmax(140px, 1fr) repeat(4, 120px [checkbox]);
  grid-column-gap: 20px;
  padding: 10px;
  grid-auto-rows: minmax(30px, auto);
  background-color: #f9f9fc;
  align-items: center;
}

.data-manager .list-wrapper .data-wrapper .table .list .data-row:nth-of-type(even) {
  background-color: #ffffff;
}

.data-manager .list-wrapper .data-wrapper .table .list .data-row input {
  width: 15px;
  height: 15px;
  align-self: center;
  justify-self: center;
}

.data-manager .list-wrapper .data-wrapper .table .list .data-row .no-record {
  color: #bcbed4;
  height: 3px;
  line-height: 0;
  align-self: center;
  justify-self: center;
}

.data-manager .list-wrapper .data-wrapper .table .list .empty-dataset {
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-manager .list-wrapper .data-wrapper .table .list .empty-dataset .message {
  background: #fffdf7;
  color: #b07d00;
  border: 1px solid #b07d00;
  padding: 10px 50px;
  border-radius: 20px;
  width: fit-content;
  margin: 60px auto;
}

.data-manager .list-wrapper .data-wrapper .controls-bottom {
  display: flex;
  justify-content: end;
  align-items: center;
}

.data-manager .list-wrapper .data-wrapper .controls-bottom .save-changes {
  margin: 0 0 0 20px;
}

.data-manager .list-wrapper .data-wrapper .controls-bottom .save-changes.loading, .data-manager .list-wrapper .data-wrapper .controls-bottom .save-changes.success {
  padding-right: 30px;
}

.domain-manager.sb-page {
  color: #000333;
}

.domain-manager.sb-page header {
  position: relative;
}

.domain-manager.sb-page header h1 {
  margin-bottom: 20px;
}

.domain-manager.sb-page header .button-primary {
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 768px) {
  .domain-manager.sb-page header .button-primary {
    position: static;
    width: 100%;
    margin-bottom: 20px;
  }
}
.domain-manager.sb-page section {
  margin-top: 40px;
}

.domain-manager.sb-page .domain.card {
  padding: 20px;
  display: flex;
  margin-bottom: 20px;
  margin-top: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9fc 100%);
  box-shadow: 0 7px 13px 0px #bcbed4;
  border: none;
}

.domain-manager.sb-page .domain.card .flex-wrapper {
  display: flex;
  align-items: center;
}

.domain-manager.sb-page .domain.card .flex-wrapper:hover {
  cursor: pointer;
}

.domain-manager.sb-page .domain.card .flex-wrapper:hover .title {
  text-decoration: underline;
}

.domain-manager.sb-page .domain.card .flex-wrapper:hover .icon {
  transform: rotate(90deg);
}

.domain-manager.sb-page .domain.card .flex-wrapper .title {
  font-size: 24px;
  margin-top: -6px;
  flex: 1;
}

.domain-manager.sb-page .domain.card .flex-wrapper .status {
  background: #c70a2a;
  color: #ffffff;
  padding: 3px 12px 4px 12px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px 0 10px;
}

.domain-manager.sb-page .domain.card .flex-wrapper .status.valid {
  background: #007b80;
}

.domain-manager.sb-page .domain.card .flex-wrapper .settings-toggle-wrap {
  cursor: pointer;
  margin-left: auto;
  display: flex;
  align-items: center;
  border-left: 1px solid #e1e2f0;
  padding-left: 20px;
}

.domain-manager.sb-page .domain.card .flex-wrapper .settings-toggle-wrap .label {
  margin-right: 5px;
  color: #007b80;
  font-size: 16px;
  padding: 20px 0;
  margin-top: -21px;
  margin-bottom: -20px;
}

@media (max-width: 1024px) {
  .domain-manager.sb-page .domain.card .flex-wrapper .settings-toggle-wrap .label {
    display: none;
  }
}
.domain-manager.sb-page .domain.card .flex-wrapper .settings-toggle-wrap .icon {
  transition: all 0.5s;
  margin-left: 5px;
}

.domain-manager.sb-page .domain.card .flex-wrapper .settings-toggle-wrap.active .icon, .domain-manager.sb-page .domain.card .flex-wrapper .settings-toggle-wrap:hover .icon {
  transform: rotate(90deg);
}

.domain-manager.sb-page .domain.card .settings {
  display: flex;
  flex-direction: column;
  margin: 20px 0 10px 0;
  border-top: 1px solid #e1e2f0;
  padding-top: 20px;
  display: none;
}

.domain-manager.sb-page .domain.card .settings.active {
  display: flex;
}

.domain-manager.sb-page .domain.card .settings .fieldset-wrap {
  margin-bottom: 20px;
}

.domain-manager.sb-page .domain.card .settings .messaging {
  background: #fef9fa;
  color: #c70a2a;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #c70a2a;
  width: 100%;
  margin: 10px 0;
}

.domain-manager.sb-page .domain.card .settings .validate {
  margin-top: 20px;
  align-self: flex-end;
  width: 200px;
}

@media (max-width: 768px) {
  .domain-manager.sb-page .domain.card .settings .validate {
    width: 100%;
  }
}
.domain-manager.sb-page .alert.no-domains {
  color: #b07d00;
  background-color: #fffdf7;
  border: 1px solid #b07d00;
  border-radius: 20px;
  padding: 12px 40px;
  width: fit-content;
  margin: 50px auto;
}

.domain-manager.sb-page .alert.no-domains .add-domain:hover {
  cursor: pointer;
  text-decoration: underline;
}

.logo-manager header {
  display: flex;
}

@media (max-width: 768px) {
  .logo-manager header {
    flex-direction: column;
  }
  .logo-manager header h1 {
    margin-bottom: 20px;
  }
  .logo-manager header .button-primary {
    margin: 0 0 20px 0;
    width: 100%;
  }
}
.logo-manager header .button-primary {
  align-self: flex-start;
  margin-left: auto;
}

.logo-manager .intro {
  margin-bottom: 40px;
  margin-top: -10px;
}

.logo-manager .messages {
  margin-top: -20px;
  margin-bottom: 10px;
  overflow: hidden;
}

.logo-manager .messages .success {
  color: #007b80;
  background-color: #f5fcfc;
  border: 1px solid #007b80;
  max-height: 300px;
  transition: all 0.2s;
  opacity: 1;
}

.logo-manager .messages .error {
  color: #c70a2a;
  background-color: #fef9fa;
  border: 1px solid #c70a2a;
  margin-top: 0;
  transition: all 0.2s;
  opacity: 1;
}

.logo-manager .messages .hidden {
  max-height: 0px;
  padding: 0;
  border: 0;
  overflow: hidden;
  margin: 0;
  opacity: 0;
}

.logo-manager .logo-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: -16px 0 0 -16px;
  width: calc(100% + 32px);
  border: 1px dashed #ffffff;
  border-radius: 28px;
  min-height: calc(100vh - 350px);
}

.logo-manager .logo-wrapper.dragover {
  border-color: #000fe3;
}

.logo-manager .logo-wrapper .logo {
  width: calc(33.3333333333% - 30px);
  min-width: 200px;
  max-width: 300px;
  max-height: 250px;
  min-height: 250px;
  object-position: 50% 50%;
  margin: 15px;
  padding: 20px;
  box-shadow: 0 12px 17px 0px #bcbed4;
  border-radius: 20px;
  background: linear-gradient(180deg, #FFF 0%, #F9F9FC 100%);
  position: relative;
}

@media (max-width: 768px) {
  .logo-manager .logo-wrapper .logo {
    width: 100%;
    min-width: calc(100% - 40px);
    max-width: unset;
  }
}
.logo-manager .logo-wrapper .logo:hover .tooltip-wrap.delete .delete-logo {
  display: block;
}

.logo-manager .logo-wrapper .logo:hover .date-banner {
  display: block;
}

.logo-manager .logo-wrapper .logo.confirm .tooltip-wrap.delete .sb-tooltip {
  display: none !important;
}

.logo-manager .logo-wrapper .logo.confirm .confirm-delete {
  display: block !important;
}

.logo-manager .logo-wrapper .logo.confirm .delete-logo {
  display: block !important;
}

.logo-manager .logo-wrapper .logo.deleted {
  transition: all 0.3s;
  opacity: 0;
  width: 0;
  min-width: unset;
  margin: 0;
  padding: 0;
}

.logo-manager .logo-wrapper .logo.deleted .confirm-delete {
  display: none !important;
}

.logo-manager .logo-wrapper .logo img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.logo-manager .logo-wrapper .logo .date-banner {
  background: #3a3c66;
  color: #ffffff;
  width: 100%;
  padding: 10px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 15px;
  border-radius: 0 0 20px 20px;
  display: none;
}

.logo-manager .logo-wrapper .logo .delete-logo {
  position: absolute;
  top: 15px;
  right: 15px;
  display: none;
  color: #000333;
}

.logo-manager .logo-wrapper .logo .delete-logo:hover {
  color: #c70a2a;
  cursor: pointer;
}

.logo-manager .logo-wrapper .logo .sb-tooltip {
  right: -10px;
  top: -45px;
  font-size: 16px;
  white-space: initial;
  width: 120px;
  text-align: center;
}

.logo-manager .logo-wrapper .logo .sb-tooltip::before {
  top: 48px;
  right: 24px;
  border-bottom: none;
  border-top: 8px solid #cbccd5;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.logo-manager .logo-wrapper .logo .sb-tooltip::after {
  top: 46px;
  right: 24px;
  border-bottom: none;
  border-top: 8px solid white;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.logo-manager .logo-wrapper .logo .sb-tooltip.confirm-delete {
  width: 270px;
  top: -69px;
  color: #c70a2a;
  display: none;
}

.logo-manager .logo-wrapper .logo .sb-tooltip.confirm-delete::before {
  top: 72px;
}

.logo-manager .logo-wrapper .logo .sb-tooltip.confirm-delete::after {
  top: 70px;
}

.logo-manager .logo-wrapper .logo .sb-tooltip.confirm-delete .options span {
  color: #000333;
  cursor: pointer;
  padding: 0 15px;
}

.logo-manager .logo-wrapper .logo .sb-tooltip.confirm-delete .options span:hover {
  text-decoration: underline;
}

.logo-manager .logo-wrapper .no-logos {
  margin: 50px auto;
  height: fit-content;
}

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

.survey-types .mini-toggle .desc {
  width: 160px;
}

.integrations.eu, .integrations.au {
  display: none;
}

.integrations.eu.show, .integrations.au.show {
  display: block;
}

.integrations.eu .category.active-integrations .title, .integrations.au .category.active-integrations .title {
  display: block;
}

.integrations.eu .category .title, .integrations.au .category .title {
  display: none;
}

.integrations.eu .category .card-holder, .integrations.au .category .card-holder {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.integrations .container-fluid, .integrations .container-sm, .integrations .container-md, .integrations .container-lg, .integrations .container-xl {
  padding: 0 15px;
}

@media (max-width: 768px) {
  .integrations .container-fluid, .integrations .container-sm, .integrations .container-md, .integrations .container-lg, .integrations .container-xl {
    padding: 0 20px;
  }
}
.integrations .category .title {
  padding: 10px 0;
  border-bottom: solid 1px #cbccd5;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
  cursor: pointer;
  padding-right: 60px;
}

.integrations .category .title::after {
  content: "–";
  font-size: 46px;
  position: absolute;
  right: 75px;
  color: #000333;
  line-height: 43px;
  margin-top: -5px;
  font-weight: normal;
}

.integrations .category .title.active::after {
  content: "+";
}

.integrations .category .cards {
  display: flex;
  flex-wrap: wrap;
  transition: all 0.5s;
  padding: 10px;
  margin: -10px 0 0 -10px;
}

.integrations .category .cards.authorizations {
  flex-direction: column;
  flex-wrap: nowrap;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 20px;
}

.integrations .category .cards.authorizations .header {
  font-weight: bold;
}

.integrations .category .cards.authorizations .header .sub-title {
  width: 200px;
}

@media (max-width: 768px) {
  .integrations .category .cards.authorizations .header .sub-title {
    width: 110px;
  }
}
.integrations .category .cards.authorizations .header .sub-title, .integrations .category .cards.authorizations .header .users {
  padding: 10px;
  display: inline-block;
}

.integrations .category .cards.authorizations .body {
  background: #f9f9fc;
  border: 1px solid #cbccd5;
}

.integrations .category .cards.authorizations .body .auth-wrapper {
  display: flex;
  border-bottom: 1px solid #e1e2f0;
  padding: 10px;
}

.integrations .category .cards.authorizations .body .auth-wrapper:nth-child(even) {
  background-color: #fff;
}

.integrations .category .cards.authorizations .body .auth-wrapper:last-child {
  border: none;
}

.integrations .category .cards.authorizations .body .auth-wrapper .sub-title {
  width: 200px;
  line-height: 32px;
  min-width: 200px;
}

@media (max-width: 768px) {
  .integrations .category .cards.authorizations .body .auth-wrapper .sub-title {
    width: 110px;
    min-width: 110px;
  }
}
.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list {
  display: flex;
  flex-wrap: wrap;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user {
  background: #007b80;
  padding: 2px 10px;
  color: white;
  border-radius: 3px;
  margin: 2px 4px 2px 0;
  position: relative;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user.no-revoke-hover .tooltip-wrap:hover .sb-tooltip {
  display: none;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .tooltip-wrap {
  position: absolute;
  text-align: center;
  display: inline;
  right: 8px;
  top: 3px;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .tooltip-wrap .icon {
  color: #fff;
  cursor: pointer;
  margin-left: 5px;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .tooltip-wrap:hover .sb-tooltip {
  display: block;
  right: -30px;
  top: -62px;
  font-size: 16px;
  white-space: initial;
  width: 180px;
  text-align: center;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .tooltip-wrap:hover .sb-tooltip::before {
  display: none;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .tooltip-wrap:hover .sb-tooltip::after {
  top: 47px;
  right: 30px;
  border-bottom: none;
  border-top: 8px solid white;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .user-name {
  margin-right: 40px;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .connected-date {
  font-size: 12px;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .actions {
  float: right;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .actions .tooltip-wrap {
  position: relative;
  top: 0;
  right: 0;
}

@media (max-width: 768px) {
  .integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .actions {
    width: 100%;
    text-align: right;
  }
}
.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .channel {
  margin-right: 60px;
}

@media (max-width: 768px) {
  .integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .channel {
    margin-right: 0;
  }
}
.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .confirm-revoke {
  right: -23px;
  top: -83px;
  font-size: 16px;
  white-space: initial;
  width: 210px;
  color: #CC3333;
  text-align: center;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .confirm-revoke span {
  cursor: pointer;
  padding: 5px;
  color: rgba(0, 0, 0, 0.6);
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .confirm-revoke span:hover {
  text-decoration: underline;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .confirm-revoke::before {
  display: none;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .auth-user .confirm-revoke::after {
  top: 71px;
  right: 31px;
  border-bottom: none;
  border-top: 8px solid white;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.integrations .category .cards.authorizations .body .auth-wrapper .authorizations-list .note {
  color: #444;
  padding: 10px 0 0 0;
  margin: 0;
  font-size: 16px;
  width: 100%;
}

.integrations .category .cards.active {
  height: 0 !important;
  padding: 0 10px 0 10px;
  overflow: hidden;
}

.integrations .category .cards.no-transition {
  transition: none !important;
}

.integrations .category .cards .card {
  max-width: 400px;
  width: 100%;
  margin-right: 20px;
  background: linear-gradient(to bottom, #fff, #f9f9fc);
  margin-bottom: 30px;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 8px 24px 0 #e1e2f0;
  background-color: #ffffff;
  margin-right: 30px;
  min-height: 280px;
  border: none;
}

@media (max-width: 1024px) {
  .integrations .category .cards .card {
    max-width: none;
    margin-right: 0;
  }
}
.integrations .category .cards .card.lifecycle .card-body img {
  max-height: 50px;
  margin-bottom: 0;
}

.integrations .category .cards .card.power-automate .card-body img {
  max-height: 60px;
  margin-bottom: 0;
}

.integrations .category .cards .card.power-automate .card-body .details {
  margin-top: 10px;
}

.integrations .category .cards .card .card-body {
  display: flex;
  flex-direction: column;
}

.integrations .category .cards .card .card-body .details {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}

.integrations .category .cards .card .card-body .details ul {
  margin-top: 10px;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #e1e2f0;
}

.integrations .category .cards .card .card-body .details ul li {
  border-top: 1px solid #e1e2f0;
  padding: 10px 70px 10px 0;
  position: relative;
}

.integrations .category .cards .card .card-body .details ul li .button-primary {
  padding: 1px 7px;
  margin-top: -4px;
  position: absolute;
  right: 0px;
  top: 14px;
}

.integrations .category .cards .card .card-body .badge {
  margin: -10px 0 20px 0;
  border-radius: 1px;
  padding: 14px;
  font-size: 14px;
  font-weight: normal;
}

.integrations .category .cards .card .card-body img {
  max-width: 280px;
  margin: 0 0 10px 0px;
  max-height: 40px;
  align-self: baseline;
}

@media (max-width: 768px) {
  .integrations .category .cards .card .card-body img {
    max-width: 100%;
  }
}
.integrations .category .cards .card .card-body img.power-bi-logo {
  filter: brightness(0);
}

.integrations .category .cards .card .card-body img.slack-logo {
  max-height: 65px;
  margin-left: -14px;
  margin-bottom: -10px;
  max-width: 161px;
}

.integrations .category .cards .card .card-body img.teams-logo {
  max-height: 50px;
  margin-bottom: 0px;
}

.integrations .category .cards .card .card-body .arrow {
  align-self: end;
  font-weight: bold;
  border-bottom: 1px solid #f9f9fc;
}

.integrations .group-wrapper {
  background: #f9f9fc;
  padding: 20px;
  border: 1px solid #e1e2f0;
  border-radius: 10px;
  margin-bottom: 20px;
}

.integrations .group-wrapper h2 {
  text-align: center;
  font-size: 26px;
  font-weight: normal;
  border-bottom: 1px solid #e1e2f0;
  padding-bottom: 20px;
}

.integrations .group-wrapper .description {
  margin: 20px 0 40px 0;
}

.integrations .group-wrapper .mini-toggle.disabled {
  pointer-events: none;
  opacity: 0.4;
}

.integrations .mini-toggle {
  width: auto;
  line-height: 27px;
  margin-bottom: 10px;
}

.integrations .mini-toggle .desc {
  width: 250px;
}

.integrations .main-description {
  text-align: center;
}

.automation-rules {
  font-family: sofia-pro, Arial, sans-serif;
}

.automation-rules input.error, .automation-rules textarea.error {
  border: 1px solid #c70a2a;
}

.automation-rules input.danger, .automation-rules textarea.danger {
  border-color: #c70a2a;
}

.automation-rules input:active.danger, .automation-rules input:focus-visible.danger, .automation-rules textarea:active.danger, .automation-rules textarea:focus-visible.danger {
  border-color: #c70a2a;
  border-width: 2px;
}

.automation-rules .page-header {
  margin-top: 40px;
}

.automation-rules .page-header:hover {
  cursor: default !important;
}

.automation-rules .page-header:hover h2 {
  text-decoration: none !important;
}

.automation-rules .page-header.top {
  margin-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  border: none;
}

.automation-rules .page-header.top h1 {
  margin: 0 20px 10px 0;
}

.automation-rules .page-header.top .new-rule-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .automation-rules .page-header.top .new-rule-buttons {
    width: 100%;
  }
}
.automation-rules .page-header.top .new-rule-buttons .button-primary {
  margin-right: 10px;
  margin-bottom: 10px;
}

.automation-rules .page-header.top .new-rule-buttons .button-primary:last-child {
  margin-right: 0;
}

@media (max-width: 768px) {
  .automation-rules .page-header.top .new-rule-buttons .button-primary {
    width: 100%;
    margin-right: 0;
  }
}
.automation-rules .page-header .filters-icon-wrap {
  margin-left: auto;
}

.automation-rules .filter-settings {
  height: 270px;
}

.automation-rules .filter-settings.hide {
  height: 0px;
}

.automation-rules .filter-settings.hide .transition-wrap {
  opacity: 0;
  transition-delay: 0s;
}

.automation-rules .filter-settings .transition-wrap {
  opacity: 1;
  transition: all 0.3s;
  transition-delay: 0.3s;
}

.automation-rules .filter-settings .toggles {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.automation-rules .filter-settings .toggles .mini-toggle {
  margin-bottom: 5px;
}

.automation-rules .filter-settings .toggles .mini-toggle .description {
  display: inline-block;
}

.automation-rules .filter-settings .save-changes {
  margin-top: 20px;
}

.automation-rules div.error {
  color: #c70a2a;
  font-size: 15px;
  margin-top: 5px;
}

.automation-rules .variable-wrap {
  display: flex;
  flex-wrap: wrap;
}

.automation-rules .variable-wrap .add-variable {
  font-size: 14px;
  display: block;
  margin: 5px 5px 0 0;
  background: #e1e2f0;
  border-radius: 5px;
  padding: 1px 5px 2px 16px;
  color: #3a3c66;
  position: relative;
}

.automation-rules .variable-wrap .add-variable:after {
  position: absolute;
  content: "+";
  left: 5px;
  top: 0px;
}

.automation-rules .variable-wrap .add-variable:hover {
  text-decoration: none;
  box-shadow: 0 2px 3px 0px #bcbed4;
}

.automation-rules .char-count {
  float: right;
  font-size: 15px;
  color: #6d6f94;
}

.automation-rules .char-count.error {
  font-size: 15px;
  color: #c70a2a;
}

.automation-rules .controls {
  display: flex;
}

@media (max-width: 768px) {
  .automation-rules .controls {
    flex-direction: column;
    width: 100%;
  }
}
.automation-rules .controls button {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .automation-rules .controls button {
    margin-left: 0px;
  }
}
@media (max-width: 768px) {
  .automation-rules .controls .btn {
    width: 100%;
  }
}
.automation-rules .ticket-title-wrap {
  position: relative;
}

.automation-rules .ticket-title-wrap textarea {
  padding: 8px 25px 8px 8px;
}

.automation-rules .ticket-title-wrap textarea#subject {
  min-height: 64px;
}

.automation-rules .ticket-title-wrap .reset-input {
  position: absolute;
  top: 10px;
  right: 18px;
  cursor: pointer;
}

.automation-rules .ticket-title-wrap .reset-input.roll {
  transition: all 0.3s;
  transform: rotate(360deg);
}

.automation-rules .ticket-title-wrap .reset-input:hover {
  filter: grayscale(1) brightness(0);
}

.automation-rules .ticket-title-wrap .reset-input.quill-email-body {
  top: 5px;
}

.automation-rules #automation-rules-list {
  font-family: sofia-pro, Arial, sans-serif;
}

.automation-rules #automation-rules-list .new-rule-buttons {
  position: relative;
  z-index: 1;
}

.automation-rules #automation-rules-list #automationRules_wrapper {
  position: relative;
}

@media (max-width: 1024px) {
  .automation-rules #automation-rules-list #automationRules_wrapper {
    overflow-x: scroll;
  }
}
.automation-rules #automation-rules-list #automationRules_wrapper #automationRules_filter {
  margin-bottom: 20px;
  float: right;
  padding: 0;
}

.automation-rules #automation-rules-list #automationRules_wrapper #automationRules_filter input {
  border-radius: 5px;
  position: relative;
  height: 40px;
  width: 285px !important;
  padding-left: 40px !important;
  margin-left: 0;
  font-size: 16px;
}

.automation-rules #automation-rules-list #automationRules_wrapper #automationRules_filter label {
  position: relative;
}

.automation-rules #automation-rules-list #automationRules_wrapper #automationRules_filter label::before {
  content: " ";
  width: 17px;
  height: 17px;
  position: absolute;
  left: 14px;
  top: 12px;
  z-index: 20;
  background: url("/static/icons/ic-search.svg");
}

@media (max-width: 768px) {
  .automation-rules #automation-rules-list #automationRules_wrapper #automationRules_filter {
    left: 0;
    right: auto;
  }
}
.automation-rules #automation-rules-list .automation-rule-empty-message {
  font-size: 24px;
  width: 100%;
  text-align: center;
}

.automation-rules #automation-rules-list .automation-rule-empty-message .add-csat-rule, .automation-rules #automation-rules-list .automation-rule-empty-message .add-nps-rule, .automation-rules #automation-rules-list .automation-rule-empty-message .add-project-rule {
  padding-bottom: 20px;
}

.automation-rules #automation-rules-list table {
  min-width: 900px;
}

.automation-rules #automation-rules-list table thead th {
  font-weight: normal;
  font-size: 16px;
}

.automation-rules #automation-rules-list table thead .sorting,
.automation-rules #automation-rules-list table thead .sorting_asc,
.automation-rules #automation-rules-list table thead .sorting_desc {
  border: none !important;
  font-weight: 600;
}

.automation-rules #automation-rules-list table thead .sorting::before,
.automation-rules #automation-rules-list table thead .sorting_asc::before,
.automation-rules #automation-rules-list table thead .sorting_desc::before {
  content: "";
}

.automation-rules #automation-rules-list table thead .sorting::after,
.automation-rules #automation-rules-list table thead .sorting_asc::after,
.automation-rules #automation-rules-list table thead .sorting_desc::after {
  position: static;
  display: inline-block;
  margin: 0 0 2px 6px;
  content: " " !important;
  background: url("/static/icons/down.svg");
  width: 11px;
  height: 5px;
  opacity: 1 !important;
  transition: all 0.2s;
}

.automation-rules #automation-rules-list table thead .sorting {
  font-weight: normal;
}

.automation-rules #automation-rules-list table thead .sorting_desc::after {
  transform: rotate(180deg);
}

.automation-rules #automation-rules-list table thead .sorting:after {
  content: "";
}

.automation-rules #automation-rules-list table tbody tr {
  height: 90px;
  overflow: visible;
  transition: all 2s;
}

.automation-rules #automation-rules-list table tbody tr.delete {
  filter: blur(3px);
  opacity: 0.1;
}

.automation-rules #automation-rules-list table tbody tr.highlight {
  background: #d3eede;
}

.automation-rules #automation-rules-list table tbody td {
  overflow: visible;
}

.automation-rules #automation-rules-list table tbody td.column-type strong {
  white-space: break-spaces;
}

.automation-rules #automation-rules-list table tbody td .tooltip-wrap.delete-rule {
  position: relative;
}

.automation-rules #automation-rules-list table tbody td .tooltip-wrap.delete-rule .icon {
  color: #ffffff;
}

.automation-rules #automation-rules-list table tbody td .tooltip-wrap.delete-rule .icon:hover {
  text-decoration: none;
}

.automation-rules #automation-rules-list table tbody td .tooltip-wrap.delete-rule .sb-tooltip {
  right: 55px;
  left: auto;
  top: -10px;
  width: 150px;
  text-align: center;
}

.automation-rules #automation-rules-list table tbody td .tooltip-wrap.delete-rule .sb-tooltip::before {
  top: 13px !important;
  right: -14px !important;
  border-bottom: 11px solid transparent;
  border-top: 11px solid transparent;
  border-left: 15px solid #cbccd5;
  border-right: none;
}

.automation-rules #automation-rules-list table tbody td .tooltip-wrap.delete-rule .sb-tooltip:after {
  top: 13px !important;
  right: -12px !important;
  border-bottom: 11px solid transparent;
  border-top: 11px solid transparent;
  border-left: 15px solid white;
  border-right: none;
}

.automation-rules #automation-rules-list table tbody td .tooltip-wrap.delete-rule .sb-tooltip.confirmation {
  width: 200px;
  top: -25px !important;
  right: 57px !important;
}

.automation-rules #automation-rules-list table tbody td .tooltip-wrap.delete-rule .sb-tooltip.confirmation::before {
  top: 28px !important;
  right: -16px !important;
}

.automation-rules #automation-rules-list table tbody td .tooltip-wrap.delete-rule .sb-tooltip.confirmation::after {
  top: 28px !important;
  right: -14px !important;
}

.automation-rules #automation-rules-list table tbody .rule-title {
  font-size: 18px;
  font-weight: bold;
  white-space: normal;
}

.automation-rules #automation-rules-list table tbody .rule-desc {
  white-space: pre-wrap;
  line-height: 34px;
}

.automation-rules #automation-rules-list table tbody .rule-desc span {
  background-color: #f5fcfc;
  color: #007b80;
  border: 1px solid #007b80;
  white-space: nowrap;
  padding: 3px 4px;
  border-radius: 3px;
  font-style: italic;
}

.automation-rules #automation-rules-list table tbody .column-trigger .glyphicons,
.automation-rules #automation-rules-list table tbody .column-action .glyphicons {
  font-size: 22px;
  padding-left: 13px;
}

.automation-rules #automation-rules-list table .toggle-wrap.disabled {
  cursor: default;
  pointer-events: none;
}

.automation-rules #automation-rules-list table .toggle-group label {
  line-height: 27px;
}

.automation-rules #automation-rules-list table .tooltip-wrap:not(.delete-rule) {
  cursor: pointer;
  position: relative;
}

.automation-rules #automation-rules-list table .tooltip-wrap:not(.delete-rule):hover .sb-tooltip {
  display: block;
  left: 0px;
  right: auto;
  font-size: 16px;
  white-space: initial;
  color: #1f214d;
  text-transform: capitalize;
}

.automation-rules #automation-rules-list table .tooltip-wrap:not(.delete-rule):hover .sb-tooltip:before {
  content: " ";
  position: absolute;
  top: -14px;
  left: 29px;
  right: auto;
  border-top: 14px solid transparent;
  border-bottom: 0px solid transparent;
  border-left: 18px solid #cbccd5;
  border-right: none;
}

.automation-rules #automation-rules-list table .tooltip-wrap:not(.delete-rule):hover .sb-tooltip:after {
  content: " ";
  position: absolute;
  top: -12px;
  left: 30px;
  right: auto;
  border-top: 14px solid transparent;
  border-bottom: 0px solid transparent;
  border-left: 18px solid white;
  border-right: none;
}

.automation-rules .edit-rule .error {
  color: #CC3333;
}

.automation-rules .automation-container {
  font-family: sofia-pro, Arial, sans-serif !important;
}

.automation-rules .automation-container .group-filter {
  position: relative;
}

.automation-rules .automation-container .group-filter .tooltip-wrap {
  position: absolute;
  top: 3px;
  right: -10px;
  z-index: 9;
}

@media (max-width: 768px) {
  .automation-rules .automation-container .group-filter .tooltip-wrap {
    top: 0px;
    right: 15px;
  }
}
.automation-rules .automation-container .group-filter .tooltip-wrap .sb-tooltip {
  right: -20px;
}

.automation-rules .automation-container .help-block {
  color: #c70a2a;
  font-weight: 100;
}

.automation-rules .automation-container .has-error .selectize-input {
  border-color: #c70a2a;
}

.automation-rules .automation-container .disabled {
  pointer-events: none;
  opacity: 0.4;
}

.automation-rules .label-note {
  font-size: 14px;
}

.automation-rules label.control-label {
  padding-top: 0;
}

.automation-rules .score-selections {
  align-items: center;
  margin-bottom: 20px;
}

.automation-rules .score-selections .styled-project-survey-scores {
  display: flex;
  margin-top: 5px;
  margin-bottom: 10px;
}

.automation-rules .score-selections .styled-project-survey-scores .option {
  font-size: 22px;
  font-weight: 600;
  width: 35px;
  min-width: 35px;
  border-radius: 20px;
  height: 35px;
  display: inline-block;
  line-height: 29px;
  text-align: center;
  margin-right: 14px;
  cursor: pointer;
  position: relative;
}

.automation-rules .score-selections .styled-project-survey-scores .option:hover {
  box-shadow: 0 2px 5px 1px #bcbed4;
}

.automation-rules .score-selections .styled-project-survey-scores .option.selected .outline {
  width: 43px;
  height: 43px;
  top: -5px;
  left: -5px;
  box-shadow: 0 2px 5px 1px #bcbed4;
}

.automation-rules .score-selections .styled-project-survey-scores .option.positive {
  border: 1px solid #007b80;
  color: #007b80;
  background: #f5fcfc;
}

.automation-rules .score-selections .styled-project-survey-scores .option.positive.selected {
  background: #007b80;
  color: #f5fcfc;
}

.automation-rules .score-selections .styled-project-survey-scores .option.positive.selected .outline {
  border-color: #007b80;
}

.automation-rules .score-selections .styled-project-survey-scores .option.neutral {
  border: 1px solid #b07d00;
  color: #b07d00;
  background: #fffdf7;
}

.automation-rules .score-selections .styled-project-survey-scores .option.neutral.selected {
  background: #b07d00;
  color: #fffdf7;
}

.automation-rules .score-selections .styled-project-survey-scores .option.neutral.selected .outline {
  border-color: #b07d00;
}

.automation-rules .score-selections .styled-project-survey-scores .option.negative {
  border: 1px solid #c70a2a;
  color: #c70a2a;
  background: #fef9fa;
}

.automation-rules .score-selections .styled-project-survey-scores .option.negative.selected {
  background: #c70a2a;
  color: #fef9fa;
}

.automation-rules .score-selections .styled-project-survey-scores .option.negative.selected .outline {
  border-color: #c70a2a;
}

.automation-rules .score-selections .styled-project-survey-scores .option .outline {
  width: 37px;
  height: 37px;
  position: absolute;
  top: -2px;
  left: -2px;
  border-style: solid;
  border-width: 2px;
  border-radius: 50px;
  transition: all 0.2s;
}

.automation-rules .ql-clipboard {
  display: none;
}

.automation-rules .ql-toolbar .ql-formats {
  display: flex;
}

.automation-rules .ql-toolbar .ql-formats button, .automation-rules .ql-toolbar .ql-formats select {
  border: 1px solid #bcbed4;
  background-color: #ffffff;
  margin-right: 4px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.automation-rules .ql-toolbar .ql-formats button:after, .automation-rules .ql-toolbar .ql-formats select:after {
  top: 0;
  left: 0;
}

.automation-rules .ql-toolbar .ql-formats button.ql-active, .automation-rules .ql-toolbar .ql-formats select.ql-active {
  background-color: #e1e2f0;
}

.automation-rules .ql-toolbar .ql-formats .ql-header {
  width: 100px;
}

.automation-rules .ql-toolbar .ql-formats .ql-bold {
  font-weight: bold;
}

.automation-rules .ql-toolbar .ql-formats .ql-italic {
  font-style: italic;
}

.automation-rules .ql-toolbar .ql-formats .ql-underline {
  text-decoration: underline;
}

.automation-rules .ql-editor {
  border: 1px solid #bcbed4;
  background-color: #ffffff;
  margin-top: 4px;
  padding: 8px;
  min-height: 120px;
  resize: vertical;
  overflow: auto;
  font-size: 15px;
}

.automation-rules .ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.4);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  padding: 0 10px;
  font-size: 14px;
}

.automation-rules .ql-editor.danger {
  border-color: #c70a2a;
}

.automation-rules .ql-editor:active.danger, .automation-rules .ql-editor:focus-visible.danger {
  border-color: #c70a2a;
  border-width: 2px;
}

.automation-rules .logo-upload .uploader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 119px;
  border-radius: 5px;
  border: 1px dashed #bcbed4;
  padding: 20px;
  width: 100%;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.63;
  letter-spacing: 0.26px;
  text-align: center;
  color: #92939b;
}

@media (max-width: 768px) {
  .automation-rules .logo-upload .uploader {
    width: 100%;
  }
}
.automation-rules .logo-upload .uploader.dragover {
  border: 2px dashed #00054d;
}

.automation-rules .logo-upload .uploader__nologo.disabled {
  display: none;
}

.automation-rules .logo-upload .uploader__withlogo {
  margin: 10px 0;
  height: 100px;
  width: 250px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.automation-rules .logo-upload .uploader__withlogo.disabled {
  display: none;
}

.automation-rules .logo-upload .uploader.dragover .uploader__ctrl {
  top: -1px;
  right: -1px;
}

.automation-rules .logo-upload .uploader__ctrl {
  position: absolute;
  top: 0;
  right: 0;
}

.automation-rules .logo-upload .uploader__ctrl.disabled {
  display: none;
}

.automation-rules .logo-upload .uploader__ctrl .remove-logo {
  margin-top: 10px;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  background: url("/static/icons/ic_delete.svg");
  display: block;
}

.automation-rules .logo-upload .uploader__ctrl .remove-logo:hover {
  background: url("/static/icons/ic_delete_hover.svg");
}

.automation-rules .logo-upload .uploader .new-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  animation-name: moveIndeterminate;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 150% 150%;
  animation-timing-function: linear;
  background-color: #dbdbdb;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
  background-image: linear-gradient(to right, #00054d 30%, #dbdbdb 30%);
}

.automation-rules .logo-upload .uploader .new-progress.disabled {
  display: none;
}

.automation-rules .sb-modal-upload {
  font-family: sofia-pro, Arial, sans-serif;
}

.automation-rules .sb-modal-upload .modal-close-text {
  display: none;
}

.automation-rules .sb-modal-upload__select {
  flex-wrap: wrap;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 250px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-top: 10px;
  padding: 20px 0px;
  margin-bottom: 50px;
  margin-left: 10px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .automation-rules .sb-modal-upload__select {
    margin: 0;
    background: #ffffff;
  }
}
.automation-rules .sb-modal-upload__select-item {
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-origin: content-box;
  width: 110px;
  height: 110px;
  border: 1px solid #bcbed4;
  margin: 3px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .automation-rules .sb-modal-upload__select-item {
    width: calc(33.3333333333vw - 10px);
    height: calc(33.3333333333vw - 10px);
  }
  .automation-rules .sb-modal-upload__select-item.hide-mobile {
    display: none;
  }
}
.automation-rules .sb-modal-upload__select-item:hover {
  border: 1px solid #00054d;
}

.automation-rules .sb-modal-upload__show-more {
  color: #00054d;
  font-size: 14px;
  font-family: sofia-pro, Arial, sans-serif;
  float: right;
  margin-right: 10px;
  margin-bottom: 20px;
  font-weight: normal;
  display: none;
}

@media (max-width: 768px) {
  .automation-rules .sb-modal-upload__show-more {
    display: block;
  }
}
.automation-rules .sb-modal-upload .sb-modal {
  top: 40px;
}

.automation-rules .sb-modal-upload .sb-modal__wrap {
  width: 775px;
}

.automation-rules .sb-modal-upload .sb-modal__header {
  font-size: 30px;
  color: rgba(29, 29, 27, 0.87);
}

@media (max-width: 768px) {
  .automation-rules .sb-modal-upload .sb-modal__header {
    border-bottom: none;
  }
  .automation-rules .sb-modal-upload .sb-modal__header .modal-title_js {
    display: none;
  }
}
.automation-rules .sb-modal-upload__upload {
  font-weight: 600;
  border-bottom: 1px solid #bcbed4;
  cursor: pointer;
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(29, 29, 27, 0.87);
  transition: all 0.3s;
}

.automation-rules .sb-modal-upload__upload:hover {
  background-color: #f9f9fc;
}

@media (max-width: 768px) {
  .automation-rules .sb-modal-upload__upload {
    height: auto;
  }
  .automation-rules .sb-modal-upload__upload a {
    padding: 40px;
    margin: 20px 10px;
    background: #f9f9fc;
    width: 100%;
  }
}
.automation-rules button.preview-email {
  margin: 20px 0 40px 0;
  width: 100%;
}

.automation-rules .sb-modal-email-preview .sb-modal__header {
  padding: 0 0 10px 0;
  margin-top: -20px;
  border: none;
}

.automation-rules .sb-modal-email-preview .sb-modal__header .modal-title_js {
  font-size: 18px;
  color: #3a3c66;
}

.automation-rules .sb-modal-email-preview .modal-content_js {
  color: #000333;
  font-family: Arial, Helvetica, sans-serif;
  background: #F0F0F0;
  font-size: 16px;
  padding: 20px 30px;
  width: calc(100vw - 100px);
  max-width: 600px;
  font-weight: normal;
  overflow: auto;
  max-height: calc(100vh - 160px);
}

.automation-rules .sb-modal-email-preview .modal-content_js .wrapper {
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #E3E3E3;
}

.automation-rules .sb-modal-email-preview .modal-content_js .wrapper .logo {
  margin-bottom: 10px;
  display: none;
}

.automation-rules .sb-modal-email-preview .modal-content_js .wrapper .logo.visible {
  display: block;
  height: 100px;
  width: 250px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.automation-rules .sb-modal-email-preview .modal-content_js .wrapper .body {
  text-align: left;
  width: 100%;
}

.automation-rules .sb-modal-email-preview .modal-content_js .powered-by {
  font-size: 14px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.automation-rules .sb-modal-email-preview .modal-content_js .powered-by img {
  width: 100px;
  margin-left: 5px;
}

/**
 * Common helpers
 */
.custom-reports {
  padding: 0 15px;
  font-family: sofia-pro, Arial, sans-serif;
}

@media (max-width: 576px) {
  .custom-reports {
    padding: 20px 10px;
  }
}
.custom-reports .edit-banner {
  position: fixed;
  bottom: 0;
  width: 100vw;
  max-width: 100%;
  background: #f5fcfc;
  left: 0;
  display: flex;
  border-top: 1px solid #007b80;
  padding: 10px;
  z-index: 9999;
  justify-content: space-between;
  align-items: center;
  color: #007b80;
  font-size: 18px;
  font-weight: normal;
  box-shadow: 0 0px 10px 1px #bcbed4;
}

.custom-reports .edit-banner .controls {
  display: flex;
}

.custom-reports .edit-banner .controls .button-primary {
  margin-left: 10px;
}

.custom-reports .edit-banner .controls .cancel-edit-confirm {
  text-align: center;
  color: #CC3333;
  font-size: 16px;
  width: 150px;
  float: right;
  line-height: 22px;
}

.custom-reports .edit-banner .controls .cancel-edit-confirm span {
  cursor: pointer;
  padding: 5px;
  color: rgba(0, 0, 0, 0.6);
}

.custom-reports .edit-banner .controls .cancel-edit-confirm span:hover {
  text-decoration: underline;
}

.custom-reports .error {
  color: #C70A2A;
  margin: 5px 0 10px 0;
  font-size: 16px;
  float: left;
  clear: both;
  width: 100%;
}

.custom-reports .success {
  color: #007b80;
  transition: all 0.3s;
}

.custom-reports h2 {
  margin-bottom: 20px;
  position: relative;
  color: #000333;
}

.custom-reports h2.clickable {
  cursor: pointer;
}

.custom-reports h2.clickable:hover {
  text-decoration: underline;
}

.custom-reports h2.clickable:after {
  content: "+";
  font-size: 46px;
  position: absolute;
  color: #000333;
  line-height: 43px;
  font-weight: normal;
  bottom: 15px;
  right: 0;
}

.custom-reports h2.clickable.active:after {
  content: "–";
}

@media (max-width: 768px) {
  .custom-reports h2 .status-title {
    display: flex;
    flex-direction: column;
  }
}
.custom-reports h2 .overall-status {
  display: inline-block;
  font-weight: normal;
  margin-left: 10px;
  font-size: 22px;
}

@media (max-width: 768px) {
  .custom-reports h2 .overall-status {
    margin-left: 0px;
  }
}
.custom-reports h2 .overall-status.fail {
  color: #c70a2a;
}

.custom-reports h2 .overall-status.success {
  color: #007b80;
}

.custom-reports h2 .refresh-wrap {
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.custom-reports h2 .refresh-wrap:hover label {
  text-decoration: underline;
}

.custom-reports h2 .refresh-wrap:hover img {
  transform: rotate(90deg);
}

.custom-reports h2 .refresh-wrap .label {
  color: #007b80;
  border-radius: 5px;
  padding: 0px 0px 0 0;
  font-size: 17px;
  font-weight: bold;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .custom-reports h2 .refresh-wrap .label {
    display: none;
  }
}
.custom-reports h2 .refresh-wrap img {
  width: 32px;
  transform: rotate(0deg);
  transition: all 0.2s;
}

.custom-reports h2 .refresh-wrap img.roll {
  transform: rotate(450deg);
}

.custom-reports h2 .refresh-wrap img.unroll {
  transform: rotate(90deg);
  transition: all 0s;
}

.custom-reports h3 {
  font-size: 21px;
  margin-bottom: 10px !important;
}

.custom-reports h3.section-header {
  display: flex;
  align-items: center;
}

.custom-reports h3.section-header .step {
  background-color: #007b80;
  color: #ffffff;
  font-size: 25px;
  width: 30px;
  height: 31px;
  line-height: 27px;
  border-radius: 100px;
  margin-right: 10px;
  text-align: center;
}

.custom-reports h3.section-header .selection-type {
  margin-left: 6px;
}

.custom-reports a {
  color: #00054d;
}

.custom-reports a:hover {
  color: #000;
  text-decoration: underline;
}

.custom-reports .atr, .custom-reports .str, .custom-reports .stl, .custom-reports .atl {
  width: 60px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media (max-width: 769px) {
  .custom-reports .atr, .custom-reports .str, .custom-reports .stl, .custom-reports .atl {
    display: inline !important;
  }
}
.custom-reports .atr {
  margin-top: 78px;
}

@media (max-width: 769px) {
  .custom-reports .atr {
    margin-top: 0px;
  }
}
.custom-reports__options {
  max-width: 900px;
}

.custom-reports p {
  margin-top: 0px;
  margin-bottom: 20px;
}

.custom-reports p.description {
  margin-top: 20px;
  margin-bottom: 0;
  font-weight: bold;
}

.custom-reports p.description:first-child {
  margin-top: 10px;
}

.custom-reports .report-type-selections {
  padding: 0px 0 30px 0;
  color: #000333;
  font-family: sofia-pro, Arial, sans-serif;
}

.custom-reports .report-type-selections .report-type-wrapper {
  display: flex;
  margin-top: 10px;
  box-shadow: 0 0px 9px 1px #bcbed4;
  background: #f9f9fc;
  padding: 10px 20px 20px 20px;
  width: 100%;
  border-radius: 11px;
}

@media (max-width: 1024px) {
  .custom-reports .report-type-selections .report-type-wrapper {
    flex-direction: column;
  }
}
.custom-reports .report-type-selections .report-type-wrapper .report-type-and-surveys {
  display: flex;
  flex: 1;
  align-items: baseline;
  border-right: 1px solid #e1e2f0;
}

@media (max-width: 1024px) {
  .custom-reports .report-type-selections .report-type-wrapper .report-type-and-surveys {
    border: none;
    border-bottom: 1px solid #e1e2f0;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .custom-reports .report-type-selections .report-type-wrapper .report-type-and-surveys {
    flex-direction: column;
  }
}
.custom-reports .report-type-selections .report-type-wrapper .report-type-and-surveys .wrapper {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}

.custom-reports .report-type-selections .report-type-wrapper .report-type-and-surveys .report-type {
  width: 180px;
  margin: 10px 20px 0 0;
}

.custom-reports .report-type-selections .report-type-wrapper .survey-types {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
}

.custom-reports .report-type-selections .report-type-wrapper .survey-types .survey-type {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-right: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.custom-reports .report-type-selections .report-type-wrapper .survey-types .survey-type:last-child {
  margin-right: 0;
}

.custom-reports .report-type-selections .report-contents {
  width: 100%;
  margin-top: 10px;
  width: 100%;
}

.custom-reports .report-type-selections .report-contents .mini-toggle {
  width: 100%;
  margin-bottom: 6px;
}

.custom-reports .report-type-selections .branding {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .custom-reports .report-type-selections .branding {
    padding: 0;
  }
}
.custom-reports .report-type-selections .branding label {
  font-weight: bold;
}

.custom-reports .report-type-selections .branding .color-wrap {
  float: left;
  width: 100%;
}

.custom-reports .report-type-selections .branding .color-wrap .form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (max-width: 992px) {
  .custom-reports .report-type-selections .branding .color-wrap .form-group {
    flex-direction: column;
    align-items: baseline;
  }
}
.custom-reports .report-type-selections .branding .color-wrap .form-group .minicolors-theme-default {
  width: 100%;
}

.custom-reports .report-type-selections .branding .color-wrap .form-group .reset-input {
  position: absolute;
  top: 32px;
  right: 8px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .custom-reports .report-type-selections .branding .color-wrap .form-group .reset-input {
    top: 33px;
  }
}
.custom-reports .report-type-selections .branding .color-wrap .form-group .reset-input:hover {
  filter: grayscale(1) brightness(0);
}

.custom-reports .report-type-selections .branding .color-wrap .form-group .minicolors label {
  display: inline-block;
}

.custom-reports .report-type-selections .branding .color-wrap .form-group .minicolors .minicolors-input {
  width: 100%;
  height: 36px;
  padding: 10px 10px 10px 40px;
  text-transform: uppercase;
}

.custom-reports .report-type-selections .branding .color-wrap .form-group .minicolors .minicolors-swatch {
  top: 8px;
  left: 8px;
  width: 24px;
  height: 24px;
  border-radius: 0;
}

.custom-reports .report-type-selections .branding .color-wrap .form-group .minicolors .minicolors-swatch .minicolors-swatch-color {
  top: -1px;
  right: -1px;
}

.custom-reports .report-type-selections .branding .logo-wrap {
  display: flex;
  flex-direction: column;
  float: left;
  width: 100%;
}

@media (max-width: 992px) {
  .custom-reports .report-type-selections .branding .logo-wrap {
    flex-direction: column;
    align-items: baseline;
  }
}
.custom-reports .report-type-selections .branding .logo-wrap label {
  margin-right: 10px;
  width: 160px;
}

.custom-reports .report-type-selections .branding .logo-wrap .logo-manager {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.custom-reports .report-type-selections .branding .logo-wrap .logo-manager .logo-manager-link {
  display: inline-block;
  width: 100%;
}

.custom-reports .report-type-selections .branding .logo-wrap .logo-manager .uploader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 119px;
  border-radius: 5px;
  border: 1px dashed #bcbed4;
  padding: 20px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.63;
  letter-spacing: 0.26px;
  text-align: center;
  color: #92939b;
  max-width: 350px;
}

@media (max-width: 1024px) {
  .custom-reports .report-type-selections .branding .logo-wrap .logo-manager .uploader {
    width: 100%;
    max-width: unset;
  }
}
.custom-reports .report-type-selections .branding .logo-wrap .logo-manager .uploader.dragover {
  border: 2px dashed #00054d;
}

.custom-reports .report-type-selections .branding .logo-wrap .logo-manager .uploader__nologo.disabled {
  display: none;
}

.custom-reports .report-type-selections .branding .logo-wrap .logo-manager .uploader__withlogo {
  margin: 10px 0;
  height: 100px;
  width: 250px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.custom-reports .report-type-selections .branding .logo-wrap .logo-manager .uploader__withlogo.disabled {
  display: none;
}

.custom-reports .report-type-selections .branding .logo-wrap .logo-manager .uploader.dragover .uploader__ctrl {
  top: -1px;
  right: -1px;
}

.custom-reports .report-type-selections .branding .logo-wrap .logo-manager .uploader__ctrl {
  position: absolute;
  top: 0;
  right: 0;
}

.custom-reports .report-type-selections .branding .logo-wrap .logo-manager .uploader__ctrl.disabled {
  display: none;
}

.custom-reports .report-type-selections .branding .logo-wrap .logo-manager .uploader__ctrl .remove-logo {
  margin-top: 10px;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  background: url("/static/icons/ic_delete.svg");
  display: block;
}

.custom-reports .report-type-selections .branding .logo-wrap .logo-manager .uploader__ctrl .remove-logo:hover {
  background: url("/static/icons/ic_delete_hover.svg");
}

.custom-reports .report-type-selections .branding .logo-wrap .logo-manager .uploader .new-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  animation-name: moveIndeterminate;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 150% 150%;
  animation-timing-function: linear;
  background-color: #dbdbdb;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
  background-image: linear-gradient(to right, #00054d 30%, #dbdbdb 30%);
}

.custom-reports .report-type-selections .branding .logo-wrap .logo-manager .uploader .new-progress.disabled {
  display: none;
}

.custom-reports .report-type-selections .branding .logo-wrap .form-group {
  margin: 0;
  width: 100%;
}

.custom-reports .report-type-selections .branding .logo-wrap .form-group #logo-selection-container {
  border-radius: 0;
  background: #fff;
  padding: 20px;
  border: solid 1px #e1e2f0;
  width: 100%;
}

.custom-reports .report-type-selections .branding .logo-wrap .form-group #logo-selection-container .logo-title {
  width: auto;
}

.custom-reports .report-type-selections .branding .logo-wrap .form-group #logo-selection-container .icons {
  width: 45px;
}

.custom-reports .report-type-selections .branding .logo-wrap .form-group #logo-selection-container .with-logo-container .logo-container {
  width: 100%;
  max-width: 200px;
  height: 120px;
}

.custom-reports .report-type-selections .branding .logo-wrap .form-group #logo-selection-container .with-logo-container .logo-title, .custom-reports .report-type-selections .branding .logo-wrap .form-group #logo-selection-container .with-logo-container .button-logo-select {
  display: none;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .custom-reports input.filter {
      display: none;
    }
  }
}
.custom-reports input, .custom-reports select, .custom-reports .selectize-input {
  border: solid 1px #e1e2f0;
  background-color: white;
  border-radius: 0;
  min-height: 40px;
  width: 100%;
  padding: 7px;
}

.custom-reports input:focus, .custom-reports input.focus, .custom-reports select:focus, .custom-reports select.focus, .custom-reports .selectize-input:focus, .custom-reports .selectize-input.focus {
  background: #fff;
}

.custom-reports .selectize-input > div {
  margin: 1px 3px 1px 0;
  padding: 1px 10px;
}

.custom-reports .selectize-control {
  min-height: 42px;
}

.custom-reports .report-forms-wrap .report-options {
  width: 100%;
  flex-direction: column;
  flex: 2;
  box-shadow: 0 0px 9px 1px #bcbed4;
  background: #f9f9fc;
  padding: 20px 20px 20px 20px;
  width: 100%;
  border-radius: 11px;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container .selected-title, .custom-reports .report-forms-wrap .report-options .dual-list-box-container .unselected-title {
  font-size: 16px;
  color: #000333;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container h4 small {
  font-size: 16px;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container .btn-outline-secondary {
  color: #00054d;
  border: solid 1px #e1e2f0;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container .btn-outline-secondary:disabled {
  filter: none;
  opacity: 1;
  pointer-events: none;
  cursor: pointer;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container select {
  max-height: 260px;
  overflow-y: auto;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container select::-webkit-scrollbar {
  width: 5px;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container select::-webkit-scrollbar-track {
  background: #e1e2f0;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container select::-webkit-scrollbar-thumb {
  background-color: #bcbcc1;
  border-radius: 5px;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container select option {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px 5px 5px 5px;
  border-bottom: 1px solid #e1e2f0;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container select option.selected {
  background: #007b80;
  color: white;
  position: relative;
  padding-right: 20px;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container select option.selected::after {
  content: "✕";
  position: absolute;
  right: 3px;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container select option.selected:hover {
  background: #007b80;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container select option.selected:hover::after {
  text-decoration: underline;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container select option:last-of-type {
  border: none;
}

.custom-reports .report-forms-wrap .report-options .dual-list-box-container select option:hover {
  background: #e1e2f0;
}

.custom-reports .build-reports-wrap {
  margin-top: 40px;
  width: 100%;
  margin-bottom: 60px;
}

@media (max-width: 576px) {
  .custom-reports .build-reports-wrap {
    padding: 10px;
  }
}
.custom-reports .build-reports-wrap .automate-note {
  float: left;
  margin: 0px 0 20px 0px;
}

.custom-reports .build-reports-wrap .flex-wrapper {
  display: flex;
}

@media (max-width: 992px) {
  .custom-reports .build-reports-wrap .flex-wrapper {
    flex-direction: column;
  }
}
.custom-reports .build-reports-wrap .flex-wrapper.card-background {
  box-shadow: 0 0px 9px 1px #bcbed4;
  background: #f9f9fc;
  padding: 10px 20px 20px 20px;
  width: 100%;
  border-radius: 11px;
}

@media (max-width: 1200px) {
  .custom-reports .build-reports-wrap .generate-report-wrap, .custom-reports .build-reports-wrap .automate-report-wrap {
    margin-left: 0;
    width: 100%;
    max-width: none;
  }
}
.custom-reports .build-reports-wrap .generate-report-wrap label, .custom-reports .build-reports-wrap .automate-report-wrap label {
  margin-bottom: 8px;
}

.custom-reports .build-reports-wrap .generate-report-wrap .tooltip-wrap, .custom-reports .build-reports-wrap .automate-report-wrap .tooltip-wrap {
  width: 18px;
  margin-left: 10px;
  position: relative;
}

.custom-reports .build-reports-wrap .generate-report-wrap .tooltip-wrap .icon, .custom-reports .build-reports-wrap .automate-report-wrap .tooltip-wrap .icon {
  display: inline-block;
  width: 16px;
  position: absolute;
  top: -4px;
}

.custom-reports .build-reports-wrap .generate-report-wrap .tooltip-wrap:hover .sb-tooltip, .custom-reports .build-reports-wrap .automate-report-wrap .tooltip-wrap:hover .sb-tooltip {
  display: block;
}

.custom-reports .build-reports-wrap .generate-report-wrap .tooltip-wrap .sb-tooltip, .custom-reports .build-reports-wrap .automate-report-wrap .tooltip-wrap .sb-tooltip {
  right: -76px;
  font-size: 16px;
  width: 300px;
}

.custom-reports .build-reports-wrap .generate-report-wrap .tooltip-wrap .sb-tooltip::before, .custom-reports .build-reports-wrap .automate-report-wrap .tooltip-wrap .sb-tooltip::before {
  right: 69px;
}

.custom-reports .build-reports-wrap .generate-report-wrap .tooltip-wrap .sb-tooltip::after, .custom-reports .build-reports-wrap .automate-report-wrap .tooltip-wrap .sb-tooltip::after {
  right: 70px;
}

.custom-reports .build-reports-wrap .generate-report-wrap .success-automate, .custom-reports .build-reports-wrap .generate-report-wrap .success-generate, .custom-reports .build-reports-wrap .generate-report-wrap .please-wait, .custom-reports .build-reports-wrap .automate-report-wrap .success-automate, .custom-reports .build-reports-wrap .automate-report-wrap .success-generate, .custom-reports .build-reports-wrap .automate-report-wrap .please-wait {
  width: 100%;
  max-width: 300px;
  text-align: center;
  float: left;
  clear: left;
  padding: 20px 0 0 0;
}

.custom-reports .build-reports-wrap .generate-report-wrap .download-link, .custom-reports .build-reports-wrap .automate-report-wrap .download-link {
  margin: 10px auto 0 auto;
  background: #007b80;
}

.custom-reports .build-reports-wrap .generate-report-wrap .datepicker-wrap .calendar-presets-wrap, .custom-reports .build-reports-wrap .automate-report-wrap .datepicker-wrap .calendar-presets-wrap {
  bottom: 50px;
  top: unset;
}

.custom-reports .build-reports-wrap .generate-report-wrap button, .custom-reports .build-reports-wrap .automate-report-wrap button {
  display: block;
  float: left;
  clear: both;
  margin-bottom: 0px;
  width: 100%;
  max-width: 260px;
}

.custom-reports .build-reports-wrap .generate-report-wrap button.disabled, .custom-reports .build-reports-wrap .automate-report-wrap button.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.custom-reports .build-reports-wrap .generate-report-wrap button.loading:after, .custom-reports .build-reports-wrap .automate-report-wrap button.loading:after {
  top: 8px;
  right: 15px;
}

.custom-reports .build-reports-wrap .generate-report-wrap {
  display: flex;
  min-width: 320px;
  flex-direction: column;
  justify-content: space-between;
  flex: 0.1;
}

@media (max-width: 992px) {
  .custom-reports .build-reports-wrap .generate-report-wrap {
    border-left: none;
    border-top: 1px solid #e1e2f0;
    padding: 40px 0 0 0;
    margin: 20px 0 0 0;
  }
}
.custom-reports .build-reports-wrap .generate-report-wrap button.button-primary {
  max-width: unset;
}

.custom-reports .build-reports-wrap .generate-report-wrap .messaging {
  float: left;
  clear: both;
  width: 100%;
  max-width: 300px;
}

.custom-reports .build-reports-wrap .automate-report-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #e1e2f0;
}

.custom-reports .build-reports-wrap .automate-report-wrap .form {
  float: left;
  clear: both;
  display: flex;
  width: 100%;
}

.custom-reports .build-reports-wrap .automate-report-wrap .form .form-group {
  flex: 1;
  margin-right: 20px;
}

.custom-reports .build-reports-wrap .automate-report-wrap .form .form-group:last-child {
  margin: 0;
}

.custom-reports .build-reports-wrap .automate-report-wrap .button-wrap {
  display: flex;
  justify-content: space-between;
}

.custom-reports .manage-automations-wrap {
  position: relative;
  font-family: sofia-pro, Arial, sans-serif;
}

.custom-reports .manage-automations-wrap .dataTables_filter {
  float: right;
}

@media (max-width: 576px) {
  .custom-reports .manage-automations-wrap .dataTables_filter {
    width: 100%;
  }
}
.custom-reports .manage-automations-wrap .dataTables_filter input {
  font-size: 16px;
  border: none;
}

@media (max-width: 576px) {
  .custom-reports .manage-automations-wrap .dataTables_filter input {
    width: 100% !important;
    margin: 20px 0;
  }
}
.custom-reports .manage-automations-wrap .dataTables_wrapper {
  padding: 20px 0 0 0;
  overflow-x: auto;
}

.custom-reports .manage-automations-wrap .dataTables_wrapper .dataTables_length .custom-select {
  width: 60px;
  margin-left: 5px;
}

.custom-reports .manage-automations-wrap .dataTables_wrapper .dataTables_length select {
  display: none;
}

.custom-reports .manage-automations-wrap .dataTables_wrapper .dataTables_paginate {
  float: left !important;
  margin-top: 20px;
}

.custom-reports .manage-automations-wrap .dataTables_wrapper .dataTables_paginate ul {
  align-items: center;
  display: flex;
  height: 40px;
  border: solid 1px #e1e2f0;
  background-color: #ffffff;
  border-radius: 0;
  font-size: 12px;
}

.custom-reports .manage-automations-wrap .dataTables_wrapper .dataTables_paginate ul a {
  border: none;
  height: 40px;
  padding-top: 13px;
  border-radius: 0;
  background: none;
  color: #000;
  text-decoration: none;
}

.custom-reports .manage-automations-wrap .dataTables_wrapper .dataTables_paginate ul a:hover {
  background: #00054d;
  color: #fff;
}

.custom-reports .manage-automations-wrap .dataTables_wrapper .dataTables_paginate ul .page-item.active .page-link {
  background-color: #00054d;
  opacity: 0.4;
  pointer-events: none;
  color: #fff;
}

.custom-reports .manage-automations-wrap table#automationList {
  min-width: 800px;
  width: calc(100% - 1px);
  margin-top: 20px !important;
  float: left;
}

.custom-reports .manage-automations-wrap table#automationList td {
  color: rgba(0, 0, 0, 0.6);
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  overflow: visible;
}

.custom-reports .manage-automations-wrap table#automationList thead {
  height: 55px;
  color: rgba(0, 0, 0, 0.6);
  vertical-align: top;
}

.custom-reports .manage-automations-wrap table#automationList thead th {
  border: none !important;
  font-weight: normal;
  color: #1d1d1b;
}

.custom-reports .manage-automations-wrap table#automationList thead th.sorting:after {
  position: static;
  display: inline-block;
  margin: 0 0 2px 6px;
  content: " " !important;
  background: url(/static/icons/down.svg);
  width: 11px;
  height: 5px;
  opacity: 1 !important;
  transition: all 0.2s;
}

.custom-reports .manage-automations-wrap table#automationList thead th.sorting,
.custom-reports .manage-automations-wrap table#automationList thead th.sorting_asc,
.custom-reports .manage-automations-wrap table#automationList thead th.sorting_desc {
  border: none !important;
}

.custom-reports .manage-automations-wrap table#automationList thead th.sorting_asc,
.custom-reports .manage-automations-wrap table#automationList thead th.sorting_desc {
  color: #1d1d1b;
  font-weight: bold;
}

.custom-reports .manage-automations-wrap table#automationList thead th.sorting_asc:after,
.custom-reports .manage-automations-wrap table#automationList thead th.sorting_desc:after {
  color: #00054d;
}

.custom-reports .manage-automations-wrap table#automationList thead th.sorting:after {
  color: rgba(0, 0, 0, 0.6);
}

.custom-reports .manage-automations-wrap table#automationList tbody {
  border: 1px solid #e1e2f0;
}

.custom-reports .manage-automations-wrap table#automationList tbody tr {
  background: #fff;
  transition: opacity 0.3s, filter 0.2s, background 0.5s, height 0.2s linear 0.3s;
}

.custom-reports .manage-automations-wrap table#automationList tbody tr.deleted {
  height: 0;
  opacity: 0;
  filter: blur(3px);
}

.custom-reports .manage-automations-wrap table#automationList tbody tr.highlight {
  background: #d3eede !important;
}

.custom-reports .manage-automations-wrap table#automationList tbody tr td {
  white-space: normal;
}

.custom-reports .manage-automations-wrap table#automationList tbody tr td.dataTables_empty {
  padding: 60px !important;
}

.custom-reports .manage-automations-wrap table#automationList tbody tr td .remove-automation-confirm {
  text-align: center;
  color: #CC3333;
  font-size: 16px;
  width: 74px;
  float: right;
}

.custom-reports .manage-automations-wrap table#automationList tbody tr td .remove-automation-confirm span {
  cursor: pointer;
  padding: 5px;
  color: rgba(0, 0, 0, 0.6);
}

.custom-reports .manage-automations-wrap table#automationList tbody tr td .remove-automation-confirm span:hover {
  text-decoration: underline;
}

.custom-reports .manage-automations-wrap table#automationList tbody tr:nth-child(odd) {
  background-color: #f9f9fc;
}

.custom-reports .manage-automations-wrap table#automationList tbody .column-frequency {
  text-transform: capitalize;
}

.custom-reports .manage-automations-wrap table#automationList tbody .selections,
.custom-reports .manage-automations-wrap table#automationList tbody .recipients {
  display: flex;
  flex-wrap: wrap;
  max-height: 112px;
  margin: 20px 0;
  overflow-y: auto;
}

.custom-reports .manage-automations-wrap table#automationList tbody .selections::-webkit-scrollbar,
.custom-reports .manage-automations-wrap table#automationList tbody .recipients::-webkit-scrollbar {
  height: 5px;
}

.custom-reports .manage-automations-wrap table#automationList tbody .selections::-webkit-scrollbar-track,
.custom-reports .manage-automations-wrap table#automationList tbody .recipients::-webkit-scrollbar-track {
  background: #e1e2f0;
}

.custom-reports .manage-automations-wrap table#automationList tbody .selections::-webkit-scrollbar-thumb,
.custom-reports .manage-automations-wrap table#automationList tbody .recipients::-webkit-scrollbar-thumb {
  background-color: #bcbcc1;
  border-radius: 5px;
}

.custom-reports .manage-automations-wrap table#automationList tbody .selection,
.custom-reports .manage-automations-wrap table#automationList tbody .recipient {
  background: #007b80;
  padding: 2px 6px;
  color: white;
  border-radius: 3px;
  margin: 2px 4px 2px 0;
  white-space: nowrap;
}

.custom-reports .manage-automations-wrap table#automationList tbody .column-delete .flex-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.custom-reports .manage-automations-wrap table#automationList tbody .column-delete .flex-wrapper .tooltip-wrap {
  position: relative;
}

.custom-reports .manage-automations-wrap table#automationList tbody .column-delete .flex-wrapper .tooltip-wrap .sb-tooltip {
  top: unset;
  bottom: 60px;
  right: -40px;
  width: 300px;
}

.custom-reports .manage-automations-wrap table#automationList tbody .column-delete .flex-wrapper .tooltip-wrap .sb-tooltip:before {
  display: none;
}

.custom-reports .manage-automations-wrap table#automationList tbody .column-delete .flex-wrapper .tooltip-wrap .sb-tooltip:after {
  content: " ";
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #ffffff;
  display: block;
  position: absolute;
  right: 31px;
  top: unset;
  bottom: -22px;
}

.custom-reports .manage-automations-wrap table#automationList tbody .column-delete .flex-wrapper .remove-automation-wrap,
.custom-reports .manage-automations-wrap table#automationList tbody .column-delete .flex-wrapper .edit-automation {
  position: relative;
  text-align: center;
  margin: 0 0 0 10px;
  width: 34px;
}

.custom-reports .manage-automations-wrap table#automationList tbody .column-delete .flex-wrapper .remove-automation-wrap .icon,
.custom-reports .manage-automations-wrap table#automationList tbody .column-delete .flex-wrapper .edit-automation .icon {
  color: #ffffff;
  cursor: pointer;
}

.custom-reports .manage-automations-wrap table#automationList tbody .column-delete .flex-wrapper .remove-automation-wrap img,
.custom-reports .manage-automations-wrap table#automationList tbody .column-delete .flex-wrapper .edit-automation img {
  margin-top: -3px;
}

.custom-reports .button-container .choose-logo {
  color: #fff;
}

.custom-reports .button-container .choose-logo:hover {
  color: #fff;
}

.custom-reports .generation-page {
  position: absolute;
  width: 100%; /* requires parent element to use "position: relative" */
}

.custom-reports .dual-list-box-container .glyphicon {
  display: inline-block;
  font-family: "Glyphicons Regular";
  font-style: normal;
  font-weight: normal;
  line-height: inherit;
  vertical-align: top;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.custom-reports .dual-list-box-container .glyphicon.glyphicon-list:before {
  content: "\e115";
}

.custom-reports .dual-list-box-container .glyphicon.glyphicon-chevron-left:before {
  content: "\e225";
}

.custom-reports .dual-list-box-container .glyphicon.glyphicon-chevron-right:before {
  content: "\e224";
}

.custom-reports label {
  display: block;
}

.custom-reports #report-selections-label {
  display: none;
}

.custom-reports #client-selection.mobile {
  display: inline-block;
  width: 100%;
  margin: 0;
}

.custom-reports #build-pdf {
  display: none;
  text-overflow: ellipsis;
  overflow-x: hidden;
  white-space: nowrap;
}

.custom-reports .disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.sb-modal-upload {
  font-family: sofia-pro, Arial, sans-serif;
}

.sb-modal-upload .modal-close-text {
  display: none;
}

.sb-modal-upload__select {
  flex-wrap: wrap;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 250px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-top: 10px;
  padding: 20px 0px;
  margin-bottom: 50px;
  margin-left: 10px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .sb-modal-upload__select {
    margin: 0;
    background: #ffffff;
  }
}
.sb-modal-upload__select-item {
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-origin: content-box;
  width: 110px;
  height: 110px;
  border: 1px solid #bcbed4;
  margin: 3px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .sb-modal-upload__select-item {
    width: calc(33.3333333333vw - 10px);
    height: calc(33.3333333333vw - 10px);
  }
  .sb-modal-upload__select-item.hide-mobile {
    display: none;
  }
}
.sb-modal-upload__select-item:hover {
  border: 1px solid #00054d;
}

.sb-modal-upload__show-more {
  color: #00054d;
  font-size: 14px;
  font-family: sofia-pro, Arial, sans-serif;
  float: right;
  margin-right: 10px;
  margin-bottom: 20px;
  font-weight: normal;
  display: none;
}

@media (max-width: 768px) {
  .sb-modal-upload__show-more {
    display: block;
  }
}
.sb-modal-upload .sb-modal__wrap {
  width: 775px;
}

.sb-modal-upload .sb-modal__header {
  font-size: 30px;
  color: rgba(29, 29, 27, 0.87);
}

@media (max-width: 768px) {
  .sb-modal-upload .sb-modal__header {
    border-bottom: none;
  }
  .sb-modal-upload .sb-modal__header .modal-title_js {
    display: none;
  }
}
.sb-modal-upload__upload {
  font-weight: 600;
  border-bottom: 1px solid #bcbed4;
  cursor: pointer;
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(29, 29, 27, 0.87);
  transition: all 0.3s;
}

.sb-modal-upload__upload:hover {
  background-color: #f9f9fc;
}

@media (max-width: 768px) {
  .sb-modal-upload__upload {
    height: auto;
  }
  .sb-modal-upload__upload a {
    padding: 40px;
    margin: 20px 10px;
    background: #f9f9fc;
    width: 100%;
  }
}
.spacer-bottom {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .spacer-bottom {
    margin-bottom: 1em;
  }
}
.csat-reviews {
  font-family: sofia-pro, Arial, sans-serif;
  padding: 0 15px;
  /* -----------------------------------
  * 'highlight' putting emphasis only newly appearing entries in the activity stream, when
  * things are added while the review details modal is open
  * ----------------------------------- */
}

@media (max-width: 768px) {
  .csat-reviews {
    padding: 30px 20px;
  }
}
.csat-reviews h1 {
  margin-bottom: 0px;
}

.csat-reviews header {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #bcbed4;
  padding-bottom: 20px;
  margin-bottom: 20px;
  width: 100%;
  min-width: 100%;
  cursor: pointer;
}

.csat-reviews header.main {
  justify-content: space-between;
  cursor: default;
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 1024px) {
  .csat-reviews header.main .button-primary {
    display: none;
  }
}
.csat-reviews header:hover h2 {
  text-decoration: underline;
}

.csat-reviews header:hover .settings-toggle-wrap .icon {
  transform: rotate(90deg);
  opacity: 1;
}

.csat-reviews header:hover .filter-status, .csat-reviews header:hover .date-range {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .csat-reviews header.collapse {
    padding-bottom: 0;
  }
}
.csat-reviews header.collapse h2:after {
  content: "+";
}

.csat-reviews header.collapse .metrics-wrap {
  height: 0 !important;
}

.csat-reviews header.collapse .metrics-wrap .metrics {
  left: -2000px;
}

.csat-reviews header.collapse .mini-metrics-wrap .mini-metrics {
  left: 0;
}

.csat-reviews header.collapse .mini-metrics-wrap .mini-toggle {
  left: 300px;
  opacity: 0;
}

.csat-reviews header a {
  margin-bottom: 25px;
}

.csat-reviews input {
  border: solid 1px #bcbed4;
  background-color: white;
  border-radius: 0;
  min-height: 40px;
  width: 100%;
  padding: 7px;
}

.csat-reviews input[type=search] {
  margin-left: 10px !important;
  border-radius: 5px !important;
}

.csat-reviews .button-secondary {
  transition: all 0s;
}

.csat-reviews .button-secondary:hover {
  transition: all 0s;
  color: #000333;
}

.csat-reviews .button-secondary:hover img {
  transition: all 0s;
  filter: grayscale(100%) brightness(0);
}

.csat-reviews .button-secondary img {
  margin-top: -5px;
  margin-left: 2px;
}

.csat-reviews .reviews-section {
  border-radius: 0 !important;
}

.csat-reviews .reviews-section .dataTables_filter {
  border: solid 1px #bcbed4;
  position: relative;
  padding-left: 30px;
  margin-left: 10px;
}

.csat-reviews .reviews-section .dataTables_filter input {
  border: none;
  margin: 0;
  padding: 0;
  min-height: 38px;
}

.csat-reviews .reviews-section .dataTables_filter img {
  position: absolute;
  left: 10px;
  top: 12px;
}

.csat-reviews .reviews-section select {
  border: solid 1px #bcbed4;
  background-color: white;
  border-radius: 0 !important;
  min-height: 40px;
  padding: 7px;
}

.csat-reviews .reviews-section .table-wrapper {
  overflow-x: scroll;
  width: 100%;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable {
  font-size: 16px;
  min-width: 1000px;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable thead {
  height: 55px;
  color: #1f214d;
  vertical-align: top;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable thead th {
  border: none !important;
  font-weight: normal;
  padding: 0 15px !important;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable thead tr.hover {
  background: none !important;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable tr[role=row].hover {
  background: #f0f1fa;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable tr:not([role=row]).hover {
  background: #f0f1fa;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable tr .column-action {
  width: 80px;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable tr .column-publish {
  position: relative;
  overflow: visible;
  text-align: center;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable tr .column-publish .tooltip {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  border: solid 1px #bcbed4;
  background-color: #ffffff;
  padding: 8px 10px;
  width: 240px;
  left: -206px;
  border-radius: 5px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  color: #92939b;
  top: 2px;
  display: none;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable tr .column-publish .tooltip.no-comment {
  width: 190px;
  left: -156px;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable tr .column-publish .tooltip:after {
  content: " ";
  position: absolute;
  top: 6px;
  right: -16px;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid white;
  border-right: none;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable tr .column-publish .tooltip:before {
  content: " ";
  position: absolute;
  top: 6px;
  right: -18px;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid #bcbed4;
  border-right: none;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable tr .column-publish:hover .tooltip {
  opacity: 1;
  display: block;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable tr td {
  white-space: inherit;
  padding: 10px 8px;
  vertical-align: top;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable a {
  color: #000fe3;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable a:hover {
  text-decoration: underline;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable .image-wrapper {
  text-align: center;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable .view-details {
  float: right;
  padding: 6px 10px;
  min-width: unset;
  margin-right: 10px;
  width: 78px;
}

.csat-reviews .reviews-section .table-wrapper table#reactions.dataTable .dataTables_empty {
  padding: 80px 0;
}

.csat-reviews .reviews-section .table-controls-bottom {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .csat-reviews .reviews-section .table-controls-bottom {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .csat-reviews .reviews-section .table-controls-bottom .paging_simple_numbers {
    margin-bottom: 30px;
  }
  .csat-reviews .reviews-section .table-controls-bottom .paging_simple_numbers ul {
    justify-content: center;
  }
}
.csat-reviews table#reactions tr[role=row] td {
  border-bottom: none;
}

.csat-reviews table#reactions th:first-letter {
  text-transform: capitalize;
}

.csat-reviews table#reactions tr:not(.odd):not(.even) td:empty {
  padding: 0 !important;
}

.csat-reviews .csat-reaction-child {
  margin-left: 12px;
}

.csat-reviews .csat-reaction-child-tags {
  margin-top: 0.5em;
  width: calc(100% - 180px);
  float: left;
  clear: both;
}

.csat-reviews .csat-reaction-child-comment:empty {
  display: none;
}

.csat-reviews .csat-reaction-child-comment {
  display: inline-block;
  max-width: 720px;
  padding: 10px;
  line-height: 20px;
  position: relative;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(230, 230, 230);
  border-radius: 0.5rem;
  float: left;
  clear: both;
}

.csat-reviews tr .csat-reaction-child-comment p {
  height: 21px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.csat-reviews .csat-reaction-child-comment:after,
.csat-reviews .csat-reaction-child-comment:before {
  bottom: 100%;
  left: 14px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.csat-reviews .csat-reaction-child-comment:after {
  border-color: transparent;
  border-bottom-color: rgb(247, 247, 247);
  border-width: 5px;
  margin-left: -5px;
}

.csat-reviews .csat-reaction-child-comment:before {
  border-color: transparent;
  border-bottom-color: rgb(230, 230, 230);
  border-width: 6px;
  margin-left: -6px;
}

.csat-reviews .csat-reaction-child-comment p {
  margin: 0;
}

.csat-reviews .modal-reaction-details .modal-header .close {
  padding: 10px 20px;
  font-size: 38px;
}

.csat-reviews .modal-reaction-details a:not(.button-primary) {
  color: #00054d;
  background: none;
  border-color: #00054d;
}

.csat-reviews .modal-reaction-details a:not(.button-primary):hover {
  text-decoration: underline;
}

.csat-reviews .modal-reaction-details .reload-ticket-details {
  color: #007b80;
  font-size: 17px;
  font-weight: bold;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: fit-content;
}

.csat-reviews .modal-reaction-details .reload-ticket-details:hover .reset-input {
  transform: rotate(90deg);
}

.csat-reviews .modal-reaction-details .reload-ticket-details.no-click {
  pointer-events: none;
}

.csat-reviews .modal-reaction-details .reload-ticket-details.loading .reset-input {
  animation: rotate 1s linear infinite;
}

.csat-reviews .modal-reaction-details .reload-ticket-details .reset-input {
  width: 32px;
  transform: rotate(0deg);
  transition: all 0.2s;
}

.csat-reviews .modal-reaction-details .reload-ticket-details .resync-copy {
  margin-left: 5px;
}

.csat-reviews .modal-reaction-details .resync-messaging {
  padding: 10px;
  margin-top: 10px;
  color: #007b80;
  background-color: #f5fcfc;
  border: 1px solid #007b80;
  border-radius: 16px;
  text-align: center;
}

.csat-reviews .modal-reaction-details .resync-messaging.error {
  color: #c70a2a;
  background-color: #fef9fa;
  border: 1px solid #c70a2a;
}

.csat-reviews .modal-reaction-details .resync-messaging a {
  color: inherit;
  font-weight: bold;
  cursor: pointer;
}

.csat-reviews .modal-reaction-details .resync-messaging a:hover {
  text-decoration: underline;
}

.csat-reviews .modal-reaction-details .selectize-control {
  width: calc(100% - 140px);
  float: left;
}

.csat-reviews .modal-reaction-details #reaction-details-note {
  width: calc(100% - 140px);
  float: left;
  border-radius: 0;
  min-height: 100px;
}

.csat-reviews .modal-reaction-details .button-primary, .csat-reviews .modal-reaction-details .button-secondary {
  min-width: 130px;
  padding: 7px 10px;
}

.csat-reviews .sb-modal-download-csv.sb-modal .sb-modal__wrap {
  height: unset;
}

.csat-reviews .sb-modal-download-csv.sb-modal .sb-modal__wrap .deleted-wrap {
  font-size: 15px;
  border-top: 1px solid #e1e2f0;
  max-width: 310px;
  padding-top: 20px;
  width: 100%;
  margin: 30px auto 10px auto;
}

.csat-reviews .sb-modal-download-csv.sb-modal .sb-modal__wrap .deleted-wrap .button-tertiary {
  color: #6d6f94;
}

.csat-reviews .sb-modal-download-csv.sb-modal .sb-modal__wrap .deleted-wrap .button-tertiary:hover {
  color: #000fe3;
}

.csat-reviews .csat-reaction-child-comment p:before,
.csat-reviews .modal-reaction-details .reaction-details-comment p:before {
  color: #e1e2f0;
  content: "“";
  font-size: 23px;
  margin-right: 5px;
  vertical-align: -4px;
}

.csat-reviews .csat-reaction-child-comment p:after,
.csat-reviews .modal-reaction-details .reaction-details-comment p:after {
  color: #e1e2f0;
  content: "”";
  font-size: 23px;
  margin-left: 5px;
  vertical-align: -4px;
}

.csat-reviews .csat-reaction-child-comment-count {
  background-color: #FBFBFB;
  border: 1px solid #F1F1F1;
  border-radius: 1em;
  color: #333;
  padding: 3px 0.8em;
  margin-left: 1em;
  font-size: 0.875em;
}

.csat-reviews .csat-reaction-type-positive .csat-reaction-child-comment {
  border: 1px solid #007b80;
  background-color: #f5fcfc;
}

.csat-reviews .csat-reaction-type-positive .csat-reaction-child-comment:before {
  border-bottom-color: #007b80;
}

.csat-reviews .csat-reaction-type-positive .csat-reaction-child-comment:after {
  border-bottom-color: #f5fcfc;
}

.csat-reviews .csat-reaction-type-positive .csat-reaction-child-comment p {
  color: #007b80;
}

.csat-reviews .csat-reaction-type-positive .csat-reaction-child-comment p:after, .csat-reviews .csat-reaction-type-positive .csat-reaction-child-comment p:before {
  color: #007b80;
}

.csat-reviews .csat-reaction-type-neutral .csat-reaction-child-comment {
  border: 1px solid #b07d00;
  background-color: #fffdf7;
}

.csat-reviews .csat-reaction-type-neutral .csat-reaction-child-comment:after {
  border-bottom-color: #fffdf7;
}

.csat-reviews .csat-reaction-type-neutral .csat-reaction-child-comment:before {
  border-bottom-color: #b07d00;
}

.csat-reviews .csat-reaction-type-neutral .csat-reaction-child-comment p {
  color: #b07d00;
}

.csat-reviews .csat-reaction-type-neutral .csat-reaction-child-comment p:before, .csat-reviews .csat-reaction-type-neutral .csat-reaction-child-comment p:after {
  color: #b07d00;
}

.csat-reviews .csat-reaction-type-negative .csat-reaction-child-comment {
  border: 1px solid #c70a2a;
  background-color: #fef9fa;
}

.csat-reviews .csat-reaction-type-negative .csat-reaction-child-comment:before {
  border-bottom-color: #c70a2a;
}

.csat-reviews .csat-reaction-type-negative .csat-reaction-child-comment:after {
  border-bottom-color: #fef9fa;
}

.csat-reviews .csat-reaction-type-negative .csat-reaction-child-comment p {
  color: #c70a2a;
}

.csat-reviews .csat-reaction-type-negative .csat-reaction-child-comment p:before, .csat-reviews .csat-reaction-type-negative .csat-reaction-child-comment p:after {
  color: #c70a2a;
}

.csat-reviews .csat-reaction-child-comment-child-count-icon {
  margin-left: 0.25em;
}

@-webkit-keyframes highlight-fade {
  0% {
    background: rgb(255, 254, 191);
  }
  100% {
    background: none;
  }
}
@keyframes highlight-fade {
  0% {
    background: rgb(255, 254, 191);
  }
  100% {
    background: none;
  }
}
.csat-reviews .highlight-animated {
  -webkit-animation: highlight-fade 2s ease-in 1;
  animation: highlight-fade 2s ease-in 1;
}

.csat-reviews #reactions_wrapper {
  padding: 0;
}

.csat-reviews #reactions_wrapper .dataTables_filter {
  float: right;
}

@media (max-width: 768px) {
  .csat-reviews #reactions_wrapper .dataTables_filter {
    float: left;
    clear: both;
    margin: 20px auto;
  }
}
@media (max-width: 1024px) {
  .csat-reviews #reactions_wrapper .dataTables_filter + .dt-buttons {
    float: right !important;
  }
  .csat-reviews #reactions_wrapper .dataTables_filter + .dt-buttons button {
    min-width: unset;
  }
}
@media (max-width: 768px) {
  .csat-reviews #reactions_wrapper .dataTables_filter + .dt-buttons {
    clear: none;
    margin: 20px 0;
  }
}
.csat-reviews #reactions_wrapper .dt-buttons {
  margin: 0px;
  width: auto;
}

.csat-reviews #reactions_wrapper .dt-buttons .button-secondary {
  padding: 6px;
}

.csat-reviews #reactions_wrapper .dataTables_info {
  float: left;
}

.csat-reviews #reactions_wrapper .dataTables_length {
  color: #6d6f94;
  font-size: 18px;
}

.csat-reviews #reactions_wrapper .dataTables_length .custom-select {
  width: 60px;
  margin-left: 5px;
}

.csat-reviews #reactions_wrapper .dataTables_length select {
  display: none;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .csat-reviews #reactions_wrapper .dataTables_length select {
      background: none;
    }
  }
}
.csat-reviews #reactions_wrapper .dataTables_paginate {
  float: left !important;
}

.csat-reviews #reactions_wrapper .dataTables_paginate ul {
  align-items: center;
  display: flex;
  height: 40px;
  border: solid 1px #bcbed4;
  background-color: #ffffff;
  border-radius: 0;
  font-size: 12px;
}

.csat-reviews #reactions_wrapper .dataTables_paginate ul a {
  border: none;
  height: 40px;
  padding-top: 13px;
  border-radius: 0;
  background: none;
  color: #000333;
  text-decoration: none;
}

.csat-reviews #reactions_wrapper .dataTables_paginate ul a:hover {
  background: #00054d;
  color: #fff;
}

.csat-reviews #reactions_wrapper .dataTables_paginate ul .page-item.active .page-link {
  background-color: #00054d;
  opacity: 0.4;
  pointer-events: none;
  color: #fff;
}

.csat-reviews #reactions_wrapper table#reactions {
  margin-bottom: 20px !important;
  margin-top: 20px !important;
  float: left;
  color: #1f214d;
}

.csat-reviews #reactions_wrapper table#reactions tbody {
  border: 1px solid #bcbed4;
}

.csat-reviews .status-done .image-wrapper {
  position: relative;
  display: inline-block;
}

.csat-reviews .status-done .image-wrapper:after {
  position: absolute;
  content: "DONE";
  left: -25px;
  top: 10px;
  font-size: 11px;
  transform: rotate(270deg);
  font-family: sofia-pro, Arial, sans-serif;
  background: #007b80;
  color: #fff;
  padding: 0px 9px;
  border-radius: 2px;
  line-height: inherit;
  letter-spacing: 1.5px;
}

.performance-page #csat-report_wrapper {
  padding: 0;
}

.performance-page #csat-report_wrapper .table-wrap {
  overflow: auto;
  width: 100%;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report {
  min-width: 1000px;
  font-size: 16px !important;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report th {
  font-weight: normal;
  padding-bottom: 15px;
  text-align: left;
  white-space: break-spaces;
  vertical-align: top;
  padding: 0 0 20px 20px !important;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report th.column-negative-count, .performance-page #csat-report_wrapper .table-wrap table#csat-report th.column-negative-rate, .performance-page #csat-report_wrapper .table-wrap table#csat-report th.column-neutral-count, .performance-page #csat-report_wrapper .table-wrap table#csat-report th.column-neutral-rate, .performance-page #csat-report_wrapper .table-wrap table#csat-report th.column-positive-count, .performance-page #csat-report_wrapper .table-wrap table#csat-report th.column-positive-rate {
  text-overflow: clip;
  font-weight: normal;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report th.column-negative-count:after, .performance-page #csat-report_wrapper .table-wrap table#csat-report th.column-negative-rate:after, .performance-page #csat-report_wrapper .table-wrap table#csat-report th.column-neutral-count:after, .performance-page #csat-report_wrapper .table-wrap table#csat-report th.column-neutral-rate:after, .performance-page #csat-report_wrapper .table-wrap table#csat-report th.column-positive-count:after, .performance-page #csat-report_wrapper .table-wrap table#csat-report th.column-positive-rate:after {
  margin-left: 30px;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report th.sorting-asc, .performance-page #csat-report_wrapper .table-wrap table#csat-report th.sorting-desc {
  font-weight: bold;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report th .image-wrapper {
  position: relative;
  display: inline-block;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report th .image-wrapper:after {
  position: absolute;
  right: -20px;
  top: 3px;
  font-weight: bold;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report th .image-wrapper.rate:after {
  content: "%";
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report th .image-wrapper.count:after {
  content: "#";
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report th .image-wrapper img {
  height: 1.6em;
  width: 1.6em;
  margin-bottom: 0;
  box-sizing: border-box;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report img {
  margin-bottom: 7px;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report td:first-child,
.performance-page #csat-report_wrapper .table-wrap table#csat-report th:first-child {
  text-align: left;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report tbody {
  border: 1px solid #bcbed4;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report tbody td {
  border-color: #bcbed4;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report tr {
  background-color: #ffffff;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report tr.odd {
  background-color: #f9f9fc !important;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report tr.even {
  background-color: #ffffff !important;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report tr td {
  padding: 20px 10px !important;
  background: none;
  white-space: unset;
  word-wrap: normal;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report tr td.dataTables_empty {
  text-align: center !important;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report tr td.column-positive-rate, .performance-page #csat-report_wrapper .table-wrap table#csat-report tr td.column-positive-count {
  color: #007b80;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report tr td.column-neutral-rate, .performance-page #csat-report_wrapper .table-wrap table#csat-report tr td.column-neutral-count {
  color: #b07d00;
}

.performance-page #csat-report_wrapper .table-wrap table#csat-report tr td.column-negative-rate, .performance-page #csat-report_wrapper .table-wrap table#csat-report tr td.column-negative-count {
  color: #c70a2a;
}

.performance-page #csat-report_wrapper .dt-buttons {
  margin: -106px 0 0 0;
  float: right;
  justify-content: end;
}

@media (max-width: 768px) {
  .performance-page #csat-report_wrapper .dt-buttons {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .performance-page #csat-report_wrapper .dt-buttons button {
    width: 100%;
    margin-bottom: 20px;
  }
}
.performance-page #no-data {
  margin: 40px auto 150px auto;
}

.performance-page #csat-report-controls {
  margin: 20px 0 30px 0;
  border-bottom: 1px solid #e1e2f0;
  padding-bottom: 30px;
}

.performance-page .report-selector {
  width: 120px;
}

.performance-page #datepicker {
  margin-top: 9px;
  padding: 0 0 0 2px !important;
  font-size: 28.8px;
}

.performance-page #datepicker::after {
  margin-bottom: 0;
}

/**
 * CSAT Peer Leaderboard
 */
.peer-leaderboard {
  font-family: sofia-pro, Arial, sans-serif;
}

.peer-leaderboard header {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}

.peer-leaderboard header .group-selector-wrap {
  display: flex;
  align-items: center;
  font-size: 20px;
  margin: 20px 0 30px 0;
}

@media (max-width: 768px) {
  .peer-leaderboard header .group-selector-wrap {
    flex-direction: column;
    align-items: baseline;
  }
}
.peer-leaderboard header .group-selector-wrap .controls-wrap {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .peer-leaderboard header .group-selector-wrap .controls-wrap {
    margin-bottom: 10px;
  }
}
.peer-leaderboard header .group-selector-wrap .controls-wrap .custom-select {
  width: auto;
}

.peer-leaderboard header .group-selector-wrap .controls-wrap .mock-select {
  width: 200px;
}

.peer-leaderboard header .group-selector-wrap .controls-wrap .result-type-selector {
  margin-right: 10px;
  margin-left: 10px;
}

.peer-leaderboard header .group-selector-wrap .controls-wrap .result-type-selector .mock-select {
  width: 80px;
}

.peer-leaderboard header .group-selector-wrap .header-split {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .peer-leaderboard header .group-selector-wrap .header-split {
    flex-direction: column;
    align-items: baseline;
  }
}
.peer-leaderboard header .group-selector-wrap .header-split .connector {
  min-width: 94px;
  font-size: 20px;
  margin-bottom: 1px;
  margin-left: 5px;
}

.peer-leaderboard header .group-selector-wrap #datepicker {
  margin-top: 5px;
  padding: 0 0 0 2px !important;
  font-size: 21px;
}

.peer-leaderboard h2 {
  margin: 0 0 15px 15px;
}

.peer-leaderboard .no-data {
  margin: 150px auto;
  white-space: normal;
}

.peer-leaderboard form#csat-report-controls {
  margin: 0;
}

.peer-leaderboard .table-results-wrap {
  overflow-x: auto;
  width: 100%;
}

.peer-leaderboard .table-results-wrap #peers_wrapper {
  padding: 0 !important;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable {
  font-size: 16px;
  min-width: 1000px;
  width: calc(100% - 10px);
}

.peer-leaderboard .table-results-wrap table#peers.dataTable thead {
  height: 55px;
  color: #1f214d;
  vertical-align: top;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable thead th {
  border: none !important;
  font-weight: normal;
  padding: 0 5px !important;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable thead th.sorting,
.peer-leaderboard .table-results-wrap table#peers.dataTable thead th.sorting_asc,
.peer-leaderboard .table-results-wrap table#peers.dataTable thead th.sorting_desc {
  border: none !important;
  padding-right: 20px !important;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable thead tr.hover {
  background: none !important;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable tr:hover td {
  background: #f0f1fa !important;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable tr.current-user {
  border: 2px solid #00054d;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable tr.current-user td {
  background: #e1e2f0 !important;
  color: #00054d;
  font-weight: bold;
  font-size: 18px;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable tr.current-user td .ranking {
  background-color: #ffffff;
  border-width: 2px;
  line-height: 29px;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable tr td {
  white-space: inherit;
  padding: 10px 8px !important;
  vertical-align: middle;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable tr td.column-index {
  text-align: center;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable tr td .ranking {
  font-size: 24px;
  width: 38px;
  height: 38px;
  border-radius: 20px;
  display: inline-block;
  line-height: 31px;
  color: #6d6f94;
  font-weight: 600;
  border: 1px solid #00054d;
  color: #00054d;
  background: #e1e2f0;
  text-align: center;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable tr td .review-count {
  text-align: center;
  float: left;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable a {
  color: #000a9f;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable a:hover {
  text-decoration: underline;
}

.peer-leaderboard .table-results-wrap table#peers.dataTable .dataTables_empty {
  padding: 80px 0;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.main-content.widget-config {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.main-content.widget-config .sb-modal {
  width: 100%;
  display: flex;
  margin: 0;
}

.main-content.widget-config .sb-modal .sb-modal__wrap {
  width: 100%;
  max-width: 800px;
}

.main-content.widget-config .sb-modal .sb-modal__wrap textarea {
  height: 200px;
}

.main-content.widget-config .sb-modal .sb-modal__wrap P {
  font-size: 22px;
  color: #00054d;
}

.main-content.widget-config .sb-modal .sb-modal__wrap #js-csatwidget-copysnippet {
  margin: 0 auto;
}

.main-content.widget-config h3 {
  color: #646464;
  margin-bottom: 0;
  width: 100%;
  float: left;
}

.main-content.widget-config h5 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 0px;
}

.main-content.widget-config .widget-configuration {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.86;
  letter-spacing: 0.23px;
}

@media (max-width: 768px) {
  .main-content.widget-config .widget-configuration {
    padding: 0;
    height: auto;
  }
}
.main-content.widget-config .widget-configuration .config-options-wrap {
  margin-bottom: 40px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-wrapper[data-breakpoint=desktop-preview] .csat-widget-preview {
  width: 100%;
  min-width: 441px;
}

.main-content.widget-config .widget-configuration .config-options-wrap[data-widget-option=reviewsWidget] .preview-wrapper[data-breakpoint=desktop-preview] .csat-widget-preview {
  max-width: 1200px;
  width: 100%;
  min-width: 940px;
}

.main-content.widget-config .widget-configuration .config-options-wrap[data-widget-option=reviewsWidget] .preview-wrapper[data-breakpoint=desktop-preview][data-layout=compact] {
  overflow-x: auto;
}

.main-content.widget-config .widget-configuration .config-options-wrap[data-widget-option=reviewsWidget] .preview-wrapper[data-breakpoint=desktop-preview][data-layout=compact] .csat-widget-preview {
  width: 100%;
  min-width: unset;
}

.main-content.widget-config .widget-configuration .config-options-wrap[data-widget-option=reviewsWidget] .preview-wrapper .csat-widget-preview {
  margin: 20px auto;
}

.main-content.widget-config .widget-configuration .config-options-wrap[data-widget-option=reviewsWidget] .config-panel .reviews-to-include {
  display: block !important;
}

.main-content.widget-config .widget-configuration .config-options-wrap[data-widget-option=reviewsWidget] .config-panel .author-selections {
  display: block !important;
}

.main-content.widget-config .widget-configuration .config-options-wrap[data-widget-option=reviewsWidget] .config-panel .auto-scroll {
  display: flex !important;
}

.main-content.widget-config .widget-configuration .config-options-wrap[data-widget-option=reviewsWidget] .config-panel .dropdown-language {
  margin-bottom: 20px;
}

.main-content.widget-config .widget-configuration .config-options-wrap[data-widget-option=reviewsWidget] .config-panel .dropdowns-wrapper .form-group.display-score {
  display: flex;
}

.main-content.widget-config .widget-configuration .config-options-wrap p {
  font-size: 16px;
  margin-bottom: 40px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .flex-wrapper {
  display: flex;
  width: calc(100% + 35px);
  position: relative;
}

@media (max-width: 1024px) {
  .main-content.widget-config .widget-configuration .config-options-wrap .flex-wrapper {
    flex-direction: column;
    width: 100%;
  }
}
.main-content.widget-config .widget-configuration .config-options-wrap .config-panel {
  flex: 1;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .custom-toggles {
  display: flex;
  margin-bottom: 10px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .custom-toggles .author-selections {
  display: none;
  width: 50%;
  margin-right: 10px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .custom-toggles .author-selections .smile-box {
  float: left;
  clear: both;
  margin-right: 10px;
  margin-bottom: 10px;
  width: auto;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .custom-toggles .author-selections .smile-box label {
  max-width: unset;
  width: 100%;
}

@media (max-width: 768px) {
  .main-content.widget-config .widget-configuration .config-options-wrap .config-panel .custom-toggles .author-selections .smile-box label {
    margin: 5px 0;
  }
}
@media (max-width: 768px) {
  .main-content.widget-config .widget-configuration .config-options-wrap .config-panel .custom-toggles .author-selections .float-wrap {
    padding-left: 20px;
    margin-bottom: 20px;
  }
}
.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .dropdowns-wrapper {
  display: flex;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .dropdowns-wrapper .form-group {
  display: flex;
  flex-direction: column;
  width: calc(50% - 10px);
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .dropdowns-wrapper .form-group:first-child {
  margin-right: 20px;
  max-width: 50%;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .dropdowns-wrapper .form-group.display-score {
  z-index: 10;
  position: relative;
  display: none;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .dropdowns-wrapper .form-group.dropdown-language {
  z-index: 30;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options {
  float: left;
  max-width: 100%;
  width: 100%;
  flex-grow: 1;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options {
    width: 100%;
  }
}
.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .styles-sub-wrap {
  display: flex;
  flex-wrap: wrap;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .styles-sub-wrap .form-group {
  flex-direction: column;
  width: auto;
  align-items: flex-start;
  width: calc(50% - 10px);
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .styles-sub-wrap .form-group:nth-child(odd) {
  margin-right: 20px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .styles-sub-wrap .form-group .minicolors {
  width: 100%;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .form-group {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .mini-toggle {
  width: 100%;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .minicolors.disabled {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .minicolors div.minicolors input {
  border-radius: 0;
  background: none;
  text-transform: uppercase;
  border: 1px solid #cbccd5;
  max-width: 380px;
  height: 40px;
  width: 100%;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .custom-select {
  max-width: 380px;
  width: 100%;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .dropdown-border {
  z-index: 20;
  position: relative;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .dropdown-shadow {
  z-index: 10;
  position: relative;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .dropdown-language {
  margin-bottom: 170px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .select-layout {
  z-index: 20;
  position: relative;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .background-color {
  align-items: baseline;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .background-color > label {
  height: 30px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .background-color .background-color-options {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.main-content.widget-config .widget-configuration .config-options-wrap .config-panel .style-options .background-color .background-color-options .minicolors {
  width: 100%;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel {
  background: #f9f9fc;
  height: fit-content;
  padding: 10px 20px 20px 20px;
  text-align: center;
  position: relative;
  position: sticky;
  top: 20px;
  flex: 2;
  max-width: calc(50% + 40px);
  box-shadow: 0 12px 17px 0px #bcbed4;
  border-radius: 20px;
  margin-right: 20px;
  transition: all 0.2s;
  min-height: 585px;
}

@media (max-width: 1024px) {
  .main-content.widget-config .widget-configuration .config-options-wrap .preview-panel {
    width: 100%;
    padding: 20px;
    height: auto;
    position: sticky;
    max-width: unset;
    top: inherit;
    bottom: -515px;
    z-index: 99;
  }
}
@media (max-width: 1024px) {
  .main-content.widget-config .widget-configuration .config-options-wrap .preview-panel.loading {
    bottom: -505px;
  }
}
.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel.loading .csat-widget-preview {
  visibility: hidden;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel.loading .csat-widget-preview:after {
  content: " ";
  background: url(/static/icons/refresh.svg);
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 60px;
  visibility: visible;
  background-size: 54px;
  left: calc(50% - 25px);
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .breakpoint-options .selection {
  display: inline-block;
  padding: 4px 30px;
  font-size: 14px;
  color: #92939b;
  margin: 10px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .breakpoint-options .selection {
    padding: 4px 0px;
  }
}
.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .breakpoint-options .selection.active {
  border-bottom: 1px solid #00054d;
  color: #646464;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel.full {
  position: absolute;
  max-width: none;
  max-height: none;
  z-index: 99;
  left: -10px;
  width: calc(100% - 10px);
  height: 100%;
  padding: 10px 20px 20px 20px;
  border-radius: 20px;
  top: 0px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel.full .preview-wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: auto !important;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon {
    display: none;
  }
}
.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon .label {
  position: absolute;
  left: -71px;
  color: #007b80;
  font-size: 15px;
  top: -1px;
  font-weight: bold;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon:hover .edge {
  border-color: #007b80;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon:hover .edge.top-left {
  top: -1px;
  left: -1px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon:hover .edge.top-right {
  top: -1px;
  right: -1px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon:hover .edge.bottom-right {
  bottom: -1px;
  right: -1px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon:hover .edge.bottom-left {
  bottom: -1px;
  left: -1px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon:hover .label {
  text-decoration: underline;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon .edge {
  border: 3px solid #007b80;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  border-width: 2px 2px 0 0;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon .edge.top-left {
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon .edge.top-right {
  top: 0;
  right: 0;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon .edge.bottom-right {
  bottom: 0;
  right: 0;
  transform: rotate(90deg);
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon .edge.bottom-left {
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon.open .edge.top-left {
  transform: rotate(90deg);
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon.open .edge.top-right {
  transform: rotate(180deg);
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon.open .edge.bottom-right {
  transform: rotate(-90deg);
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon.open .edge.bottom-left {
  transform: rotate(0deg);
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .full-screen-icon.open .label {
  left: -35px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .preview-wrapper {
  position: relative;
  overflow-x: scroll;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .preview-wrapper[data-layout=compact] {
  overflow-x: auto;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .preview-wrapper .wrapper {
  display: flex;
  justify-content: center;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .preview-wrapper .csat-widget-preview {
  border: none;
  text-align: center;
  height: auto;
  width: 100%;
  margin: 20px auto 0 auto;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .preview-wrapper .csat-widget-preview iframe {
  width: 100%;
  border: 0;
  min-height: 380px;
  overflow: hidden;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .preview-wrapper::-webkit-scrollbar {
  height: 15px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .preview-wrapper::-webkit-scrollbar-track {
  background-color: #e1e2f0;
  border-radius: 10px;
  border: 5px solid #f9f9fc;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .preview-wrapper::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #00054d;
  border: 5px solid #f9f9fc;
  cursor: pointer;
  border-right: 0;
  border-left: 0;
  border-radius: 6px;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .preview-wrapper[data-breakpoint=mobile-preview] {
  overflow: auto;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .preview-wrapper[data-breakpoint=mobile-preview] .csat-widget-preview {
  max-width: 400px;
  margin: 20px auto 0 auto;
}

@media (max-width: 768px) {
  .main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .preview-wrapper[data-breakpoint=mobile-preview] .csat-widget-preview {
    max-width: 100%;
  }
}
.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .preview-wrapper[data-breakpoint=tablet-preview] {
  overflow: auto;
}

.main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .preview-wrapper[data-breakpoint=tablet-preview] .csat-widget-preview {
  max-width: 600px;
}

@media (max-width: 768px) {
  .main-content.widget-config .widget-configuration .config-options-wrap .preview-panel .preview-wrapper .csat-widget-preview {
    width: 100%;
  }
}
.main-content.widget-config .widget-configuration .config-options-wrap .note {
  font-size: 14px;
  width: 100%;
  float: left;
  clear: both;
  line-height: inherit;
  color: #6d6f94;
}

.main-content.widget-config .widget-configuration .modal-overlay {
  width: calc(100% - 16px);
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  left: 8px;
  display: none;
}

@media (max-width: 768px) {
  .main-content.widget-config .widget-configuration .modal-overlay.active {
    display: block;
  }
}
.main-content.widget-config .widget-configuration .button-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid #bcbed4;
  padding-bottom: 10px;
  margin-top: 10px;
}

.main-content.widget-config .widget-configuration .button-wrap button {
  width: 200px;
  float: right;
}

.main-content.widget-config .widget-configuration .button-wrap .button-secondary {
  margin-right: 20px;
  float: left;
}

.main-content.widget-config .widget-configuration .button-wrap .wrapper {
  display: flex;
  justify-content: space-between;
}

.main-content.widget-config .widget-configuration .button-wrap .wrapper .reset-styles {
  float: left;
  margin-top: 10px;
  color: #00054d;
  cursor: pointer;
  text-decoration: underline;
}

.main-content.widget-config .widget-configuration .button-wrap .wrapper .reset-styles:hover {
  color: #000;
}

@media (max-width: 1024px) {
  .main-content.widget-config .widget-configuration .button-wrap {
    position: static;
  }
}
@media (max-width: 768px) {
  .main-content.widget-config .widget-configuration .button-wrap {
    width: 100%;
    float: none;
    padding-right: 20px;
  }
  .main-content.widget-config .widget-configuration .button-wrap button {
    width: 100%;
    margin: 5px 0;
  }
}
.main-content.widget-config .widget-configuration .button-wrap.config {
  margin-left: 10px;
  bottom: 0px;
}

.main-content.widget-config .widget-configuration .hide {
  display: none;
}

.main-content.widget-config .widget-configuration h2 {
  font-size: 24px;
  margin-top: 10px;
}

.main-content.widget-config .widget-configuration .config-panel {
  padding: 10px 20px 20px 0px;
  position: relative;
  min-height: calc(100vh - 90px);
  height: 100%;
  width: 50%;
  background: white;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  margin-bottom: 0;
  /* The bootstrap theme makes the color swatches (previews) a bit smaller than default (5px->3px).
  It's unclear why, but for our VD the default sizes make more sense. */
}

@media (max-width: 1024px) {
  .main-content.widget-config .widget-configuration .config-panel {
    width: 100%;
    padding: 20px 10px;
  }
}
.main-content.widget-config .widget-configuration .config-panel .reviews-to-include {
  display: none;
}

.main-content.widget-config .widget-configuration .config-panel.full {
  width: 100%;
  min-height: 705px;
}

.main-content.widget-config .widget-configuration .config-panel .flex-wrapper {
  display: flex;
}

.main-content.widget-config .widget-configuration .config-panel .mini-toggle {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-right: 20px;
  margin-bottom: 6px;
  width: auto;
}

.main-content.widget-config .widget-configuration .config-panel .mini-toggle .description {
  width: max-content;
}

.main-content.widget-config .widget-configuration .config-panel .score-options {
  display: flex;
  padding-bottom: 10px;
  flex-wrap: wrap;
}

.main-content.widget-config .widget-configuration .config-panel .score-options .score-options-error {
  color: #c70a2a;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

.main-content.widget-config .widget-configuration .config-panel .score-options .score-options-error.show {
  opacity: 1;
  max-height: 100px;
}

.main-content.widget-config .widget-configuration .config-panel .widget-config-options .auto-scroll {
  display: none;
}

.main-content.widget-config .widget-configuration .config-panel .minicolors-theme-bootstrap .minicolors-swatch {
  top: 5px;
  left: 5px;
}

.main-content.widget-config .widget-configuration .widget-options {
  width: 100%;
  float: left;
  margin: 10px 0 20px 0;
}

@media (max-width: 1024px) {
  .main-content.widget-config .widget-configuration .widget-options {
    display: flex;
    flex-wrap: wrap;
  }
}
.main-content.widget-config .widget-configuration .widget-options #scoreWidget {
  margin-right: 40px;
}

.main-content.widget-config .widget-configuration .widget-options .option {
  float: left;
  cursor: pointer;
}

.main-content.widget-config .widget-configuration .widget-options .option.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.main-content.widget-config .widget-configuration .widget-options .option .card-wrap {
  box-shadow: 0 1px 4px 0 #bcbed4;
  border-radius: 8px;
  float: left;
}

.main-content.widget-config .widget-configuration .widget-options .option.active .card-wrap, .main-content.widget-config .widget-configuration .widget-options .option:hover .card-wrap {
  box-shadow: 0 1px 6px 2px #bcbed4;
}

.main-content.widget-config .widget-configuration .widget-options .option .sample-card, .main-content.widget-config .widget-configuration .widget-options .option .sample-review {
  width: 100px;
  height: 78px;
  background-color: #ffffff;
  position: relative;
  float: left;
  border-radius: 8px;
}

.main-content.widget-config .widget-configuration .widget-options .option .sample-card.border-right, .main-content.widget-config .widget-configuration .widget-options .option .sample-review.border-right {
  border-right: 1px solid #cbccd5 !important;
}

.main-content.widget-config .widget-configuration .widget-options .option .sample-card .circle, .main-content.widget-config .widget-configuration .widget-options .option .sample-review .circle {
  width: 24px;
  height: 24px;
  background-color: #00CBA6;
  border-radius: 25px;
  position: absolute;
  left: 38px;
  top: 16px;
}

.main-content.widget-config .widget-configuration .widget-options .option .sample-card .bar, .main-content.widget-config .widget-configuration .widget-options .option .sample-review .bar {
  width: 70px;
  height: 10px;
  background-color: #e1e2f0;
  position: absolute;
  left: 15px;
  bottom: 13px;
}

.main-content.widget-config .widget-configuration .widget-options .option .sample-review {
  width: 80px;
}

.main-content.widget-config .widget-configuration .widget-options .option .sample-review .circle {
  width: 15px;
  height: 15px;
  background-color: #00CBA6;
  left: 33px;
}

.main-content.widget-config .widget-configuration .widget-options .option .sample-review .bar {
  width: 57px;
  height: 6px;
  left: 12px;
}

.main-content.widget-config .widget-configuration .widget-options .option .sample-review .bar.top {
  bottom: 24px;
}

.main-content.widget-config .widget-configuration .widget-options .option .sample-review .bar.bottom {
  bottom: 12px;
}

.main-content.widget-config .widget-configuration .widget-options .option .option-title {
  font-size: 16px;
  font-style: normal;
  line-height: 1.86;
  letter-spacing: 0.23px;
  padding: 10px 0 5px 0;
  float: left;
  clear: both;
  border-bottom: 1px solid #fff;
}

@media (max-width: 1024px) {
  .main-content.widget-config .widget-configuration .widget-options .option .option-title {
    margin-bottom: 30px;
  }
}
.main-content.widget-config .widget-configuration .widget-options .option.active .option-title {
  border-bottom: 2px solid #00054d;
}

.main-content.widget-config .widget-configuration .widget-options .reviews-wrap {
  float: left;
  position: relative;
}

.main-content.widget-config .snippet-wrap {
  margin-top: 60px;
  flex-grow: 1;
}

.main-content.widget-config .snippet-wrap .snippet-label {
  float: left;
  margin: 6px 10px 0 0;
  color: #92939b;
  font-size: 16px;
}

.main-content.widget-config .snippet-wrap .snippet-content {
  background: white;
  border-radius: 0px;
  min-height: 10px;
  height: 42px;
  padding: 5px 15px;
  line-height: 32px;
  width: 470px;
  color: rgb(100, 100, 100);
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 470px;
  display: block;
  margin-top: 0px;
  margin-bottom: 15px;
  float: left;
}

@media (max-width: 768px) {
  .main-content.widget-config .snippet-wrap .snippet-content {
    width: 100%;
  }
}
.main-content.widget-config .snippet-wrap #js-csatwidget-copysnippet {
  float: left;
  background: none;
  border: none;
  color: #00054d;
  font-size: 12px;
  margin: 9px 0 0 10px;
}

@media (max-width: 768px) {
  .main-content.widget-config .snippet-wrap #js-csatwidget-copysnippet {
    margin: 0;
  }
}
.users-page {
  padding: 20px;
}

.users-page h1 {
  margin-right: 10px;
  margin-bottom: 40px;
  display: inline-block;
}

.users-page .sso-message {
  color: #b07d00;
  background-color: #fffdf7;
  border: 1px solid #b07d00;
  border-radius: 15px;
  padding: 12px 40px;
  width: 100%;
  margin: -20px auto 40px auto;
  text-align: center;
}

.users-page .sso-toggle-td {
  opacity: 0.4;
  pointer-events: none;
}

.users-page .user-count {
  font-size: 17px;
  font-weight: normal;
  background: #007b80;
  color: #fff;
  padding: 5px;
  border-radius: 10px;
  margin-top: -15px;
  display: inline-block;
  vertical-align: middle;
}

.users-page .user-count.max {
  background-color: #c70a2a;
}

.users-page .add-user {
  float: right;
}

@media (max-width: 768px) {
  .users-page .add-user {
    float: none;
    width: 100%;
    margin-bottom: 40px;
  }
}
.users-page .panels {
  display: flex;
}

@media (max-width: 1024px) {
  .users-page .panels {
    flex-direction: column;
  }
}
.users-page .panels .toggle-panel {
  width: 100%;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 40px;
  border: 1px solid #cbccd5;
  box-shadow: 0 0px 9px 1px #cbccd5;
  position: relative;
}

.users-page .panels .toggle-panel.left {
  margin-right: 20px;
}

@media (max-width: 1024px) {
  .users-page .panels .toggle-panel.left {
    margin-bottom: 20px;
  }
}
.users-page .panels .toggle-panel .flex-wrap {
  display: flex;
  justify-content: space-between;
}

.users-page .panels .toggle-panel h2 {
  display: inline-block;
  margin: 0 10px 30px 0;
  flex: 1;
}

@media (max-width: 768px) {
  .users-page .panels .toggle-panel h2 {
    margin-bottom: 10px;
  }
}
.users-page .panels .toggle-panel form .form-group {
  margin: 0;
}

.users-page .panels .toggle-panel form .form-check {
  padding: 0;
}

@media (max-width: 768px) {
  .users-page .panels .toggle-panel form .form-check {
    margin-left: -15px;
    margin-bottom: 10px;
  }
}
.users-page #user-list {
  overflow-x: auto;
}

.users-page #user-list table {
  word-wrap: break-word;
  min-width: 920px;
}

.users-page #user-list table thead th {
  border: none;
}

.users-page #user-list table tbody {
  border: 1px solid #cbccd5;
}

.users-page #user-list table td {
  white-space: normal;
  overflow: visible;
  border-top: none;
}

.users-page #user-list table td .tooltip-wrap {
  display: inline;
  position: relative;
}

.users-page #user-list table td .tooltip-wrap.reset-2fa:hover .sb-tooltip.action {
  width: 300px;
}

.users-page #user-list table td .tooltip-wrap.reset-2fa .username {
  white-space: nowrap;
  max-width: 165px;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
  margin-bottom: -6px;
}

.users-page #user-list table td .tooltip-wrap .confirmation {
  display: none !important;
  right: 50px !important;
  top: -31px !important;
  font-size: 16px;
  white-space: initial;
  width: 310px;
  color: #CC3333;
  text-align: center;
}

.users-page #user-list table td .tooltip-wrap .confirmation::before {
  top: 24px !important;
  right: -19px !important;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid #cbccd5;
  border-right: none;
}

.users-page #user-list table td .tooltip-wrap .confirmation::after {
  top: 24px !important;
  right: -17px !important;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid white;
  border-right: none;
}

.users-page #user-list table td .tooltip-wrap .confirmation span {
  cursor: pointer;
  padding: 5px;
  color: rgba(0, 0, 0, 0.6);
}

.users-page #user-list table td .tooltip-wrap .confirmation span:hover {
  text-decoration: underline;
}

.users-page #user-list table td .tooltip-wrap.confirming .sb-tooltip.action {
  display: none !important;
}

.users-page #user-list table td .tooltip-wrap.confirming .sb-tooltip.confirmation {
  display: inline !important;
}

.users-page #user-list table td .tooltip-wrap:hover .sb-tooltip {
  display: block;
  right: 36px;
  top: -17px;
}

.users-page #user-list table td .tooltip-wrap:hover .sb-tooltip.action {
  width: 140px;
  text-align: center;
  right: 50px;
  padding: 13px 0;
}

.users-page #user-list table td .tooltip-wrap:hover .sb-tooltip::before {
  top: 11px;
  right: -17px;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid #cbccd5;
  border-right: none;
}

.users-page #user-list table td .tooltip-wrap:hover .sb-tooltip::after {
  top: 11px;
  right: -15px;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid white;
  border-right: none;
}

.users-page #user-list table td .tooltip-wrap .reset {
  margin: 5px 0 0 10px;
  cursor: pointer;
}

.users-page #user-list table td .tooltip-wrap .reset.disabled {
  pointer-events: none;
  color: rgba(0, 0, 0, 0.3);
}

.users-page #user-list table td .icon {
  margin-right: 10px;
  cursor: pointer;
  color: #000;
}

.users-page #user-list table td .icon.glyphicons-refresh {
  margin: 5px 0 0 8px;
}

.users-page #user-list table td .icon.remove {
  color: #c70a2a;
}

.modal_js.sso-warning {
  top: calc(50vh - 165px);
}

.modal_js.sso-warning .sb-modal__wrap {
  max-width: 700px;
}

.modal_js.sso-warning .sb-modal__header {
  border: none;
}

.modal_js.sso-warning .primary-text {
  font-size: 21px;
  color: #000033;
  margin: 10px 20px;
  font-weight: normal;
}

.edit-user {
  padding: 20px;
}

.edit-user header {
  display: flex;
}

@media (max-width: 768px) {
  .edit-user header {
    flex-direction: column;
  }
}
.edit-user header h1 {
  margin-right: 10px;
  margin-bottom: 40px;
  display: inline-block;
}

@media (max-width: 768px) {
  .edit-user header h1 {
    margin-bottom: 20px !important;
  }
}
.edit-user header .submit {
  align-self: flex-start;
  margin-left: auto;
}

@media (max-width: 768px) {
  .edit-user header .submit {
    width: 100%;
    margin: 0 0 40px 0;
  }
}
.edit-user .intro {
  margin: -20px 0 40px 0;
}

.edit-user .alert {
  margin-top: -20px;
  margin-bottom: 30px;
}

.edit-user .alert.error {
  color: #c70a2a;
  background-color: #fef9fa;
  border: 1px solid #c70a2a;
  transition: all 0.2s;
  opacity: 1;
}

.edit-user .flex-wrapper {
  display: flex;
}

@media (max-width: 768px) {
  .edit-user .flex-wrapper {
    flex-direction: column;
  }
}
.edit-user .flex-wrapper .text-fields {
  flex: 2;
  padding-right: 40px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .edit-user .flex-wrapper .text-fields {
    padding: 0 0 10px 0;
    margin-top: 0;
  }
}
.edit-user .flex-wrapper .text-fields input {
  display: block;
  width: 100%;
  height: 40px;
  padding: 10px;
  color: #000333;
  background-color: #ffffff;
  border: 1px solid #bcbed4;
}

.edit-user .flex-wrapper .text-fields label {
  font-weight: bold;
  margin-bottom: 5px;
}

.edit-user .flex-wrapper .text-fields .error {
  color: #c70a2a;
}

.edit-user .flex-wrapper .permissions {
  display: flex;
  flex-direction: column;
  flex: 1.5;
  border-radius: 20px;
  background: linear-gradient(180deg, #FFF 0%, #F9F9FC 100%);
  box-shadow: 0 12px 17px 0px #bcbed4;
  padding: 30px 40px;
}

@media (max-width: 1024px) {
  .edit-user .flex-wrapper .permissions {
    flex: 2;
    max-width: unset;
    margin-bottom: 20px;
  }
}
.edit-user .flex-wrapper .permissions p {
  margin-bottom: 25px;
}

.edit-user .flex-wrapper .permissions .access-wrapper {
  display: flex;
  margin-bottom: 15px;
  justify-content: space-between;
  border-bottom: 1px solid #e1e2f0;
  padding-bottom: 15px;
}

.edit-user .flex-wrapper .permissions .access-wrapper[data-type=csat] {
  z-index: 88;
}

.edit-user .flex-wrapper .permissions .access-wrapper[data-type=nps] {
  z-index: 77;
}

.edit-user .flex-wrapper .permissions .access-wrapper[data-type=projects] {
  z-index: 66;
}

.edit-user .flex-wrapper .permissions .access-wrapper:last-child {
  border: none;
}

.edit-user .flex-wrapper .permissions .access-wrapper .mini-toggle {
  display: flex;
  margin: 0;
  align-items: center;
  flex: 1;
}

.edit-user .flex-wrapper .permissions .access-wrapper .access-level {
  padding-left: 10px;
  margin-left: 10px;
  flex: 1;
}

.edit-user .flex-wrapper .permissions .access-wrapper .access-level.disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.4;
}

.initial-setup {
  padding: 20px;
}

.initial-setup h1 {
  text-align: center;
  font-size: 32px;
}

.initial-setup .welcome-step span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  text-align: center;
  border: 2px solid;
  color: #cfd9dd;
}

@media (min-width: 768px) {
  .initial-setup .welcome-step span {
    width: 1.16em;
    height: 1.16em;
  }
}
.initial-setup .welcome-nav {
  margin-bottom: 30px;
  justify-content: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.initial-setup .welcome-nav li {
  width: calc(25% - 30px);
  margin: 10px;
  max-width: 250px;
  min-width: 210px;
}

@media (max-width: 1024px) {
  .initial-setup .welcome-nav li {
    width: calc(33.3333333333% - 30px);
    min-width: none;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .initial-setup .welcome-nav li {
    width: 100%;
    margin-bottom: 0;
  }
}
.initial-setup .welcome-explain {
  max-width: 600px;
}

@media (min-width: 768px) {
  .initial-setup .welcome-explain {
    margin-left: 2rem;
  }
}
.initial-setup .welcome-nav > li > a .card {
  background-color: linear-gradient(to bottom, #fff, #f9f9fc);
  background: linear-gradient(to bottom, #fff, #f5f5f8);
  box-shadow: 0 8px 24px 0 #e1e2f0;
  border: 0;
  transition: all 0.2s;
}

.initial-setup .welcome-nav > li > a.active .card {
  box-shadow: 0 4px 9px 7px #bcbed4;
  transform: scale(1.05);
  z-index: 10;
}

.initial-setup .welcome-nav > li > a:hover .card {
  transform: scale(1.05);
}

.initial-setup .welcome-nav > li > a.active .card,
.initial-setup .welcome-nav > li > a:hover .card,
.initial-setup .welcome-nav > li > a:focus .card {
  background-color: rgba(0, 5, 77, 0.05);
}

.initial-setup .welcome-nav .platform-logo {
  max-width: 100%;
  height: 150px;
  max-height: 50px;
}

.initial-setup .modal-dialog .modal-content {
  border-radius: 24px;
  box-shadow: 0 12px 24px 0 #666;
  background-color: #fff;
  padding: 40px;
}

.initial-setup .modal-dialog .modal-content .modal-header {
  display: inline;
  text-align: center;
}

.initial-setup .modal-dialog .modal-content .modal-header .close {
  padding: 0;
  margin: -80px -30px 0 0;
  font-family: "sofia-pro";
  font-size: 41px;
  font-weight: normal;
}

.initial-setup .modal-dialog .modal-content .modal-body .welcome-begin {
  margin: 40px auto 0 auto;
}

.initial-setup .card {
  padding: 30px 10px;
  background: linear-gradient(to bottom, #fff, #f9f9fc);
  height: 134px;
}

.initial-setup .card img {
  object-fit: contain;
}

.initial-setup [data-tss="Kaseya BMS"] .card-body {
  padding: 10px;
}

.initial-setup [data-tss="Kaseya BMS"] .card-body img {
  max-height: 60px;
}

.initial-setup [data-tss="ConnectWise Manage"] .card-body,
.initial-setup [data-tss="ConnectWise PSA"] .card-body {
  padding: 10px 0;
}

.initial-setup [data-tss="ConnectWise Manage"] .card-body img,
.initial-setup [data-tss="ConnectWise PSA"] .card-body img {
  max-height: 55px;
}

.initial-setup .button-primary.continue {
  margin: 0 auto;
}

.initial-setup #setTssButton {
  transition: color 0.6s;
  min-width: 350px;
  height: 60px;
  color: rgb(255, 255, 255) !important;
  font-size: 18px;
}

.initial-setup #setTssButton.blink {
  color: rgba(255, 255, 255, 0) !important;
}

@media (max-width: 768px) {
  .initial-setup #setTssButton {
    width: 100%;
    min-width: unset;
    height: unset;
  }
}
.configuration-survey {
  margin: 0 20px;
  font-family: sofia-pro, Arial, sans-serif;
}

.configuration-survey .steps .step {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 2px 6px 1px #aaa;
  border-radius: 10px;
  background: linear-gradient(to bottom, #fff, #f9f9fc);
  padding: 20px;
  margin: 20px 0;
}

.configuration-survey .steps .step h3 {
  border-bottom: 1px solid #e1e2f0;
  padding-bottom: 15px;
}

.configuration-survey .steps .step .button-primary {
  margin: 40px auto 20px auto;
}

.configuration-survey .steps .step #snippet-language-selector {
  margin-left: 12px;
}

.configuration-survey .steps .step .logo-error {
  color: #c70a2a;
  background-color: #fef9fa;
  border: 1px solid #c70a2a;
}

.configuration-survey .steps .step .uploader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 119px;
  border-radius: 5px;
  border: 1px dashed #bcbed4;
  padding: 20px;
  width: 100%;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.63;
  letter-spacing: 0.26px;
  text-align: center;
  color: #92939b;
  margin-bottom: 20px;
}

.configuration-survey .steps .step .uploader.dragover {
  border: 2px dashed #00054d;
}

.configuration-survey .steps .step .uploader__nologo.disabled {
  display: none;
}

.configuration-survey .steps .step .uploader__withlogo {
  margin: 10px 0;
  height: 100px;
  width: 250px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.configuration-survey .steps .step .uploader__withlogo.disabled {
  display: none;
}

.configuration-survey .steps .step .uploader.dragover .uploader__ctrl {
  top: -1px;
  right: -1px;
}

.configuration-survey .steps .step .uploader__ctrl {
  position: absolute;
  top: 0;
  right: 0;
}

.configuration-survey .steps .step .uploader__ctrl.disabled {
  display: none;
}

.configuration-survey .steps .step .uploader__ctrl .remove-logo {
  margin-top: 10px;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  background: url("/static/icons/ic_delete.svg");
  display: block;
}

.configuration-survey .steps .step .uploader__ctrl .remove-logo:hover {
  background: url("/static/icons/ic_delete_hover.svg");
}

.configuration-survey .steps .step .google-review-options {
  display: flex;
  flex-direction: column;
  padding-left: 35px;
  margin-bottom: 20px;
}

.configuration-survey .steps .step .google-review-options .mini-toggle {
  margin-bottom: 5px;
}

.configuration-survey .steps .step .google-review-options .google-url-wrapper {
  margin-top: 20px;
}

.configuration-survey .steps .step .google-review-options .google-url-wrapper .google-how {
  margin-left: 5px;
}

.configuration-survey .steps .step .steps-continue {
  display: block;
  text-align: center;
}

.configuration-survey .steps .step a {
  color: #000a9f;
}

.configuration-survey .steps .step a:hover {
  text-decoration: underline;
}

.configuration-survey .steps .step.inactive .overlay {
  display: block;
}

.configuration-survey .steps .step.inactive button, .configuration-survey .steps .step.inactive .btn {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.configuration-survey .steps .step.success .overlay {
  display: block;
}

.configuration-survey .steps .step.success h3 {
  padding-left: 30px; /* Avoid text flow into :after content */
}

.configuration-survey .steps .step.success h3:not(.modal-title) {
  text-transform: none;
}

.configuration-survey .steps .step.success h3:not(.modal-title) .step {
  color: #c0c0c0;
  margin-right: 8px;
}

.configuration-survey .steps .step.success h3:before {
  position: absolute;
  top: 22px;
  left: 20px;
  content: "\e207";
  font-family: "Glyphicons Regular";
  background-color: #00CBA6;
  color: #fff;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  z-index: 10;
}

.configuration-survey .steps .step .overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.6;
  z-index: 2; /* needs to be above Selectized components */
}

.configuration-survey .steps .step #logo-selection-container.large {
  height: 210px;
  padding: 0;
}

.configuration-survey .steps .step #logo-selection-container.large .logo-container {
  background-position: center;
  max-width: 300px;
}

.configuration-survey .steps .step #logo-preview {
  max-width: 300px;
}

.configuration-survey .mini-toggle {
  display: inline;
}

.configuration-survey .mini-toggle .description {
  display: inline;
}

.configuration-survey .mini-toggle .tooltip-wrap {
  display: inline;
  position: relative;
}

.configuration-survey .mini-toggle .tooltip-wrap .icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  margin-bottom: -2px;
}

.configuration-survey .mini-toggle .tooltip-wrap .icon img {
  float: left;
}

.configuration-survey .mini-toggle .tooltip-wrap .sb-tooltip {
  right: -20px;
}

.configuration-survey .btn-block {
  overflow: hidden;
  text-overflow: ellipsis;
}

.configuration-survey .controls .checkbox {
  margin: 0;
}

.configuration-survey .form-group select.form-control, .configuration-survey .form-group input.form-control {
  max-width: 320px;
  display: inline;
}

.configuration-survey #preview button.close {
  outline: none;
}

.configuration-survey #preview .modal-body {
  padding: 0;
}

.configuration-survey #preview .tab-content {
  margin: 15px;
}

.configuration-survey #preview .tab-content .tab-pane h2 {
  margin-top: 15px;
}

.configuration-survey #preview .tab-content .tab-pane textarea.form-control {
  height: 128px;
}

.configuration-survey #preview .tab-content .tab-pane .code-snippet-explain {
  text-align: center;
}

.configuration-survey #preview .tab-content .tab-pane .copy-snippet {
  width: 50%;
  max-width: 200px;
  margin: 0 auto;
}

.configuration-survey #preview .tab-content .final-step {
  margin: 20px 0;
  background-color: #f5fcfc;
  border: 1px solid #007b80;
  color: #007b80;
  padding: 20px;
  text-align: center;
}

.configuration-survey #preview .tab-content .final-step .success-link {
  color: #007b80;
  text-decoration: underline;
  font-weight: bold;
}

.configuration-survey #preview .tab-content .final-step .success-link:hover {
  color: #000;
}

.configuration-survey #preview .tab-content .copy-pasta {
  margin: 0 auto;
}

.sb-modal-upload {
  font-family: sofia-pro, Arial, sans-serif;
}

.sb-modal-upload .modal-close-text {
  display: none;
}

.sb-modal-upload__select {
  flex-wrap: wrap;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 250px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-top: 10px;
  padding: 20px 0px;
  margin-bottom: 50px;
  margin-left: 10px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .sb-modal-upload__select {
    margin: 0;
    background: #ffffff;
  }
}
.sb-modal-upload__select-item {
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-origin: content-box;
  width: 110px;
  height: 110px;
  border: 1px solid #bcbed4;
  margin: 3px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .sb-modal-upload__select-item {
    width: calc(33.3333333333vw - 10px);
    height: calc(33.3333333333vw - 10px);
  }
  .sb-modal-upload__select-item.hide-mobile {
    display: none;
  }
}
.sb-modal-upload__select-item:hover {
  border: 1px solid #00054d;
}

.sb-modal-upload__show-more {
  color: #00054d;
  font-size: 14px;
  font-family: sofia-pro, Arial, sans-serif;
  float: right;
  margin-right: 10px;
  margin-bottom: 20px;
  font-weight: normal;
  display: none;
}

@media (max-width: 768px) {
  .sb-modal-upload__show-more {
    display: block;
  }
}
.sb-modal-upload .sb-modal__wrap {
  width: 775px;
}

.sb-modal-upload .sb-modal__header {
  font-size: 30px;
  color: rgba(29, 29, 27, 0.87);
}

@media (max-width: 768px) {
  .sb-modal-upload .sb-modal__header {
    border-bottom: none;
  }
  .sb-modal-upload .sb-modal__header .modal-title_js {
    display: none;
  }
}
.sb-modal-upload__upload {
  font-weight: 600;
  border-bottom: 1px solid #bcbed4;
  cursor: pointer;
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(29, 29, 27, 0.87);
  transition: all 0.3s;
}

.sb-modal-upload__upload:hover {
  background-color: #f9f9fc;
}

@media (max-width: 768px) {
  .sb-modal-upload__upload {
    height: auto;
  }
  .sb-modal-upload__upload a {
    padding: 40px;
    margin: 20px 10px;
    background: #f9f9fc;
    width: 100%;
  }
}
.application-frame {
  border: 1px solid #CFE2EB;
  border-radius: 5px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  width: 100%;
}

.application-frame .application-title,
.application-frame .application-header,
.application-frame .application-body {
  margin: 0;
  padding: 0 20px;
}

.application-frame .application-title {
  overflow: hidden;
  display: table;
  width: 100%;
  padding: 0 10px;
  background-color: #3b3b3b;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.application-frame .application-title h4 {
  min-width: 90px;
  padding-bottom: 3px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  align-self: baseline;
  color: #d6d6d6;
  line-height: 32px;
  font-size: 16px;
  font-weight: 300;
}

.application-frame .application-title .url {
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  width: 100%;
  overflow: hidden;
  align-self: baseline;
  color: white;
}

.application-frame .application-title .controls {
  margin-left: auto;
  text-align: right;
  min-width: 60px;
  align-self: center;
}

.application-frame .application-title .controls span {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-left: 5px;
}

.application-frame .application-title .controls span.action-minimize {
  border-bottom: 1px solid white;
}

.application-frame .application-title .controls span.action-maximize {
  border: 1px solid white;
  border-radius: 2px;
}

.application-frame .application-title .controls span.action-close {
  position: relative;
}

.application-frame .application-title .controls span.action-close:before, .application-frame .application-title .controls span.action-close:after {
  position: absolute;
  left: 4px;
  top: -1px;
  content: " ";
  height: 12px;
  width: 1px;
  background-color: white;
}

.application-frame .application-title .controls span.action-close:before {
  transform: rotate(45deg);
}

.application-frame .application-title .controls span.action-close:after {
  transform: rotate(-45deg);
}

.application-frame .application-header {
  background-color: #ebebeb; /* TODO Color */
  padding: 10px;
}

.application-frame .application-header ul {
  list-style-type: none;
  list-style-position: inside;
  padding: 0;
  margin: 0;
}

.application-frame .application-header ul li {
  margin: 0;
  padding: 0;
  display: table;
}

.application-frame .application-header ul li .key,
.application-frame .application-header ul li .value {
  display: table-cell;
  min-width: 80px;
}

.application-frame .application-header ul li .key {
  font-weight: 700;
  width: 5em;
}

.application-frame .application-body #email-snippet {
  padding: 1em 0 1.5em 0;
}

.application-frame .application-body .temporary-message-wrap, .application-frame .application-body .temporary-message {
  display: none !important;
}

.application-frame .application-body .dummy-content {
  margin-top: 10px;
}

.application-frame .application-body .dummy-content .line {
  background-color: #ebebeb;
  height: 1em;
}

.application-frame .application-body .dummy-content .line.headline {
  width: 20%;
}

.application-frame .application-body .dummy-content .line.short {
  width: 20%;
}

.application-frame .application-body .dummy-content .line.medium {
  width: 40%;
}

.application-frame .application-body .dummy-content .line.long {
  width: 60%;
}

.application-frame .application-body.browser {
  padding: 0;
  min-height: 400px;
  pointer-events: none;
}

.application-frame .application-body.browser iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.application-frame.screen-connect {
  height: 233px;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #ccc;
  padding: 0;
}

.application-frame.screen-connect .application-body {
  padding: 0;
}

.application-frame.screen-connect .application-body .application-title p {
  color: #ffffff;
  margin-top: 16px;
  font-weight: 300;
}

.application-frame.screen-connect #email-snippet {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
}

.uploadcare--widget__button_type_open {
  position: relative;
  margin-top: 75px;
  max-width: 220px;
  width: 100%;
}

.uploadcare--widget__button_type_open::before {
  content: "Drag and drop your logo here";
  position: absolute;
  color: #969696;
  top: -34px;
  left: 0;
}

.uploadcare--link.uploadcare--widget__file-name, .uploadcare--widget__file-size {
  display: none;
}

.uploadcare--widget__button.uploadcare--widget__button_type_remove {
  background: none;
  color: #00054d;
  position: absolute;
  right: 12px;
}

.signup-page {
  padding: 20px;
  font-family: sofia-pro, Arial, sans-serif;
}

.signup-page .message {
  margin-bottom: 30px;
}

.signup-page .message.error {
  color: #c70a2a;
  background-color: #fef9fa;
  border: 1px solid #c70a2a;
  transition: all 0.2s;
  opacity: 1;
}

.signup-page .message.alert {
  color: #b07d00;
  background-color: #fffdf7;
  border: 1px solid #b07d00;
  transition: all 0.2s;
  opacity: 1;
}

.signup-page .signup-form .flex-wrapper {
  display: flex;
  flex-direction: column;
}

.signup-page .signup-form .flex-wrapper .email-password-wrap {
  width: calc(50% - 10px);
}

.signup-page .signup-form .flex-wrapper .email-password-wrap .form-group {
  width: 100%;
}

.signup-page .signup-form .flex-wrapper .save-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  flex-direction: column;
}

.signup-page .signup-form .flex-wrapper .save-button .button {
  width: 220px;
}

.signup-page .signup-form .flex-wrapper .form-group {
  display: flex;
  width: 100%;
  align-items: baseline;
  flex-direction: column;
}

@media (max-width: 768px) {
  .signup-page .signup-form .flex-wrapper .form-group {
    flex-direction: column;
  }
}
.signup-page .signup-form .flex-wrapper .form-group#div_id_recaptcha {
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 0;
}

.signup-page .signup-form .flex-wrapper .form-group:nth-child(even) {
  margin-right: 0;
}

.signup-page .signup-form .flex-wrapper .form-group .flex-wrap {
  width: 100%;
}

.signup-page .signup-form .flex-wrapper .form-group input {
  display: block;
  width: 100%;
  max-width: 600px;
  height: 40px;
  padding: 10px;
  color: #000333;
  background-color: #ffffff;
  border: 1px solid #bcbed4;
}

.signup-page .signup-form .flex-wrapper .form-group label {
  font-weight: bold;
  flex: 1;
  min-width: 30%;
  width: 100%;
}

@media (max-width: 768px) {
  .signup-page .signup-form .flex-wrapper .form-group label {
    width: 100%;
  }
}
.signup-page .signup-form .flex-wrapper .error {
  color: #c70a2a;
}

.signup-page .signup-form .flex-wrapper .error ul {
  padding-left: 15px;
}

.api-connectivity-report .permission-list .result-pass {
  color: #007b80;
}

.api-connectivity-report .permission-list .result-skip {
  color: #b07d00;
}

.api-connectivity-report .permission-list .result-fail {
  color: #c70a2a;
}

.canvas.full-screen {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999999;
  margin: 0;
  background: white;
  display: flex;
  justify-content: center;
  border-radius: 0;
  display: flex;
  justify-content: flex-start;
}

.canvas.full-screen .connect-api-banner {
  display: none;
}

.canvas.full-screen .alert.alert-danger {
  display: none;
}

.canvas.full-screen .sb-page.dashboard {
  height: calc(100vh - 60px);
}

.canvas.full-screen .sb-page.dashboard .flex-wrapper {
  height: calc(100vh - 400px);
  min-height: 440px;
  padding-bottom: 30px;
}

.canvas.full-screen .sb-page.dashboard .flex-wrapper .recent-activity .items {
  max-height: unset !important;
  height: 100%;
  /* always show scrollbars */
}

.canvas.full-screen .sb-page.dashboard .flex-wrapper .recent-activity .items::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 0px;
  display: none;
}

.canvas.full-screen .sb-page.dashboard .flex-wrapper .recent-activity .items::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  display: none;
}

.canvas.full-screen .sb-page.dashboard .flex-wrapper .recent-activity .items::-webkit-scrollbar-track {
  background-color: #ffffff;
  display: none;
}

.canvas .sb-page.dashboard {
  font-family: sofia-pro, Arial, sans-serif;
}

.canvas .sb-page.dashboard a {
  color: #000a9f;
}

.canvas .sb-page.dashboard a:hover {
  text-decoration: underline;
}

.canvas .sb-page.dashboard h2 {
  margin-top: 40px;
  border-bottom: solid 1px #cbccd5;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.canvas .sb-page.dashboard header.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.canvas .sb-page.dashboard header.top .title-wrap {
  display: flex;
  max-width: calc(100% - 250px);
}

@media (max-width: 1024px) {
  .canvas .sb-page.dashboard header.top .title-wrap {
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .canvas .sb-page.dashboard header.top .title-wrap {
    flex-direction: column;
  }
}
.canvas .sb-page.dashboard header.top .title-wrap h1 {
  margin-bottom: 0;
  max-width: 500px;
}

.canvas .sb-page.dashboard header.top .title-wrap .datepicker-wrap {
  display: flex;
  align-items: flex-end;
  margin-left: 20px;
  border-left: 1px solid #bcbed4;
  padding-left: 20px;
  font-size: 22px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .canvas .sb-page.dashboard header.top .title-wrap .datepicker-wrap {
    margin: 10px 0 0 0;
    border: 0;
    padding-left: 0;
  }
}
.canvas .sb-page.dashboard header.top .controls {
  width: 155px;
  align-self: flex-start;
  justify-content: flex-end;
  display: flex;
  height: 50px;
  align-items: center;
}

@media (max-width: 1024px) {
  .canvas .sb-page.dashboard header.top .controls {
    display: none;
  }
}
.canvas .sb-page.dashboard header.top .live {
  transition: all 0.2s;
  display: flex;
  align-items: center;
  margin-left: 20px;
  padding-top: 11px;
  font-weight: 500;
  padding-left: 20px;
  font-size: 15px;
  position: absolute;
  right: 44px;
  top: 35px;
}

.canvas .sb-page.dashboard header.top .live.invisible {
  opacity: 0;
}

.canvas .sb-page.dashboard header.top .live .live-dot {
  display: block;
  background: #ff6e84;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  margin-left: 7px;
  margin-top: 2px;
  box-shadow: 0 0 5px 1px #EB3853;
  border: 3px solid #EB3853;
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle {
  color: #007b80;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  font-size: 17px;
  font-weight: bold;
  transition: all 0.2s;
  align-items: center;
  opacity: 1;
  transition: all 0.3s;
  margin-top: 11px;
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle.invisible {
  opacity: 0;
}

@media (max-width: 1024px) {
  .canvas .sb-page.dashboard header.top .controls .full-screen-toggle {
    display: none;
  }
}
.canvas .sb-page.dashboard header.top .controls .full-screen-toggle .label {
  margin-top: -5px;
  margin-right: 12px;
  transition: all 0.2s;
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle:hover .icon {
  width: 28px;
  height: 28px;
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle:hover .icon .edge {
  width: 10px;
  height: 10px;
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle:hover .label {
  text-decoration: underline;
  margin-right: 10px;
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle .icon {
  width: 26px;
  height: 26px;
  position: relative;
  margin-bottom: 4px;
  transition: all 0.2s;
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle .icon .edge {
  border: 4px solid #007b80;
  width: 11px;
  height: 11px;
  display: block;
  position: absolute;
  border-width: 4px 4px 0 0;
  transition: all 0.2s;
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle .icon .edge.top-left {
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle .icon .edge.top-right {
  top: 0;
  right: 0;
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle .icon .edge.bottom-right {
  bottom: 0;
  right: 0;
  transform: rotate(90deg);
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle .icon .edge.bottom-left {
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle.active .icon .edge.top-left {
  transform: rotate(90deg);
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle.active .icon .edge.top-right {
  transform: rotate(180deg);
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle.active .icon .edge.bottom-right {
  transform: rotate(-90deg);
}

.canvas .sb-page.dashboard header.top .controls .full-screen-toggle.active .icon .edge.bottom-left {
  transform: rotate(0deg);
}

.canvas .sb-page.dashboard .card {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  color: #000333;
  border-radius: 20px;
  background: linear-gradient(180deg, #FFF 0%, #F9F9FC 100%);
  box-shadow: 0 12px 17px 0px #bcbed4;
  margin: 0 15px 0 15px;
  height: unset;
}

.canvas .sb-page.dashboard .card:first-child {
  margin-left: 0;
}

.canvas .sb-page.dashboard .card:last-child {
  margin-right: 0;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard {
  width: 100%;
  display: flex;
  border: 0;
  position: relative;
}

@media (max-width: 768px) {
  .canvas .sb-page.dashboard .metrics-header-wrap.dashboard {
    margin-bottom: 0;
    padding-top: 0;
  }
}
.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card {
  max-width: calc(66.6666666667% - 10px);
  position: relative;
  min-height: 210px;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card {
    max-width: unset;
    margin: 0;
    width: 100%;
  }
}
.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card.has-overlay {
  min-height: 240px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card.has-overlay .overlay {
  display: flex;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .title {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .title {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .title {
    font-size: 24px;
  }
}
.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper {
  width: 100%;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-wrapper {
  display: flex;
  align-items: baseline;
  height: 80px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-wrapper .main-score {
  font-size: 72px;
  font-weight: bold;
  line-height: 66px;
  background: linear-gradient(315deg, #000fe3, #9d3aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 1024px) {
  .canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-wrapper .main-score {
    font-size: 52px;
  }
}
@media (max-width: 768px) {
  .canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-wrapper .main-score {
    font-size: 72px;
  }
}
.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-wrapper .delta {
  font-size: 22px;
  color: #6d6f94;
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-left: 6px;
  position: relative;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-wrapper .delta.positive {
  color: #00CBA6;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-wrapper .delta.negative {
  color: #EB3853;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-wrapper .delta .symbol {
  font-size: 18px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-wrapper .delta .sb-tooltip {
  top: unset;
  left: -70px;
  bottom: 55px;
  width: 190px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-wrapper .delta .sb-tooltip::after {
  content: " ";
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #ffffff;
  display: block;
  position: absolute;
  left: 70px;
  top: unset;
  bottom: -22px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-wrapper .delta .sb-tooltip::before {
  content: none;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .sub-metrics {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .sub-metrics .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
  width: 100%;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .sub-metrics .wrap .title {
  font-size: 16px;
  font-weight: 500;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .sub-metrics .wrap .value {
  border-radius: 4px;
  background: #00054d;
  padding: 0px 6px 1px 6px;
  min-width: 50px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots {
  display: flex;
  margin-top: 20px;
  justify-content: flex-start;
  width: 100%;
  flex-wrap: wrap;
  height: 23px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots.left .dot .tooltip {
  left: -40px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots.left .dot .tooltip:before {
  left: 5px !important;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots.left .dot .tooltip:after {
  left: 21px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots.right .dot .tooltip {
  left: -160px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots.right .dot .tooltip:before {
  left: 125px !important;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots.right .dot .tooltip:after {
  left: 141px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  width: 13px;
  height: 13px;
  margin-right: 10px;
  margin-top: 10px;
  position: relative;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot.positive {
  background-color: #00CBA6;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot.neutral {
  background-color: #FFBB00;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot.negative {
  background-color: #EB3853;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot:after {
  content: " ";
  width: 13px;
  height: 13px;
  border-radius: 50px;
  position: absolute;
  border: 0px solid;
  left: 0px;
  top: 0px;
  transition: all 0.2s;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot:hover {
  cursor: pointer;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot:hover:after {
  width: 15px;
  height: 15px;
  border: 4px solid;
  left: -1px;
  top: -1px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot:hover .tooltip {
  visibility: visible;
  opacity: 1;
  bottom: 40px;
  pointer-events: all;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot:hover .tooltip::before {
  content: " ";
  display: block;
  width: 80px;
  height: 40px;
  position: absolute;
  left: 25px;
  bottom: -27px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot.positive::after {
  border-color: #00CBA6;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot.neutral::after {
  border-color: #FFBB00;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot.negative::after {
  border-color: #EB3853;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot .tooltip {
  opacity: 0;
  pointer-events: none;
  background: #ffffff;
  padding: 12px 18px;
  filter: drop-shadow(0px 5px 6px #6d6f94);
  width: 250px;
  bottom: 32px;
  left: -60px;
  border-radius: 21px;
  transition: bottom 0.8s, opacity 0.2s;
  display: flex;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot .tooltip::after {
  content: " ";
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #ffffff;
  display: block;
  position: absolute;
  left: 41px;
  bottom: -18px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot .tooltip .score {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  display: block;
  margin-top: 4px;
  margin-right: 10px;
  position: absolute;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot .tooltip .score.positive {
  background-color: #00CBA6;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot .tooltip .score.neutral {
  background-color: #FFBB00;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot .tooltip .score.negative {
  background-color: #EB3853;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot .tooltip .text-wrap {
  margin-left: 20px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .body-wrapper .score-dots .dot .tooltip a {
  display: block;
  margin-top: 5px;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .overlay {
  display: none;
  position: absolute;
  background: #f5fcfc;
  height: calc(100% - 84px);
  width: calc(100% - 40px);
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  left: 20px;
  bottom: 22px;
  padding: 20px;
  border-radius: 10px;
  color: #007b80;
  border: 1px solid #007b80;
}

@media (max-width: 1024px) {
  .canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .overlay {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .overlay {
    font-size: 16px;
  }
}
.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .overlay a {
  text-decoration: underline;
  color: #000fe3;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .overlay .dismiss {
  font-size: 28px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  transition: all 0.3s;
  overflow: hidden;
  padding: 0 5px;
  position: absolute;
  top: 5px;
  right: 5px;
}

@media (max-width: 1024px) {
  .canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .overlay .dismiss:hover {
    width: 25px !important;
  }
  .canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .overlay .dismiss:hover .char::before {
    display: none;
    width: 0px;
  }
}
.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .overlay .dismiss .char {
  margin-top: -7px;
  transition: all 0.1s;
  display: flex;
  align-items: center;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .overlay .dismiss .char::before {
  content: "Dismiss";
  width: 0px;
  opacity: 0;
  transition: all 0.3s;
  transition-delay: opacity 0.4s;
  font-size: 15px;
  margin: 5px 0 0 0;
  color: #c70a2a;
  overflow: hidden;
  word-wrap: normal;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .overlay .dismiss:hover {
  cursor: pointer;
  box-shadow: 0 1px 3px 2px #e1e2f0;
  color: #c70a2a;
  width: 80px;
  background-color: #ffffff;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .overlay .dismiss:hover .char {
  background-color: #ffffff;
}

.canvas .sb-page.dashboard .metrics-header-wrap.dashboard .card .overlay .dismiss:hover .char::before {
  width: 55px;
  opacity: 1;
}

.canvas .sb-page.dashboard .flex-wrapper {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .canvas .sb-page.dashboard .flex-wrapper {
    flex-direction: column;
  }
}
.canvas .sb-page.dashboard .recent-activity {
  flex: 2;
  margin-top: 10px;
  display: flex;
  max-width: calc(66.6666666667% - 10px);
}

@media (max-width: 1024px) {
  .canvas .sb-page.dashboard .recent-activity {
    max-width: 100%;
  }
}
.canvas .sb-page.dashboard .recent-activity .card {
  padding: 12px 20px 18px 20px;
  border: 0;
  width: 100%;
}

.canvas .sb-page.dashboard .recent-activity .card header {
  display: flex;
  width: 100%;
  align-items: center;
  margin: 10px 0 0 0;
  border-bottom: 1px solid #bcbed4;
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .canvas .sb-page.dashboard .recent-activity .card header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.canvas .sb-page.dashboard .recent-activity .card header h2 {
  font-size: 24px;
  font-weight: 700;
  border: 0;
  padding: 0;
  margin: 0;
}

.canvas .sb-page.dashboard .recent-activity .card header .sentiment-selectors {
  display: flex;
  margin-top: 5px;
  height: 20px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .canvas .sb-page.dashboard .recent-activity .card header .sentiment-selectors {
    margin: 10px 0;
  }
}
.canvas .sb-page.dashboard .recent-activity .card header .sentiment-selectors .dot {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  margin-left: 15px;
  position: relative;
  cursor: pointer;
}

.canvas .sb-page.dashboard .recent-activity .card header .sentiment-selectors .dot.positive {
  background-color: #00CBA6;
}

.canvas .sb-page.dashboard .recent-activity .card header .sentiment-selectors .dot.neutral {
  background-color: #FFBB00;
}

.canvas .sb-page.dashboard .recent-activity .card header .sentiment-selectors .dot.negative {
  background-color: #EB3853;
}

.canvas .sb-page.dashboard .recent-activity .card header .sentiment-selectors .dot.active::after {
  content: " ";
  width: 18px;
  height: 18px;
  border-radius: 50px;
  position: absolute;
  border: 1px solid;
  left: -3px;
  top: -3px;
}

.canvas .sb-page.dashboard .recent-activity .card header .sentiment-selectors .dot.active.positive::after {
  border-color: #00CBA6;
}

@media (max-width: 768px) {
  .canvas .sb-page.dashboard .recent-activity .card header .sentiment-selectors .dot.active.positive {
    margin-left: 4px;
  }
}
.canvas .sb-page.dashboard .recent-activity .card header .sentiment-selectors .dot.active.neutral::after {
  border-color: #FFBB00;
}

.canvas .sb-page.dashboard .recent-activity .card header .sentiment-selectors .dot.active.negative::after {
  border-color: #EB3853;
}

.canvas .sb-page.dashboard .recent-activity .card header .chip-slider-wrap {
  position: relative;
  margin-top: 6px;
  margin-right: 5px;
  border-left: 1px solid #bcbed4;
  margin-left: 20px;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .canvas .sb-page.dashboard .recent-activity .card header .chip-slider-wrap {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }
}
.canvas .sb-page.dashboard .recent-activity .card header .chip-slider-wrap .chips {
  display: flex;
  align-items: center;
}

.canvas .sb-page.dashboard .recent-activity .card header .chip-slider-wrap .chips .chip {
  border-radius: 14px;
  background-color: #6d6f94;
  padding: 0px 6px 1px 6px;
  min-width: 50px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-right: 10px;
  background: none;
  color: #3a3c66;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s;
  min-width: unset;
}

.canvas .sb-page.dashboard .recent-activity .card header .chip-slider-wrap .chips .chip:last-child {
  margin: 0;
}

.canvas .sb-page.dashboard .recent-activity .card header .chip-slider-wrap .chips .chip.active {
  color: #ffffff;
  transition-delay: 0.3s;
}

.canvas .sb-page.dashboard .recent-activity .card header .chip-slider-wrap .chips .chip.active:hover {
  color: #ffffff;
}

.canvas .sb-page.dashboard .recent-activity .card header .chip-slider-wrap .chips .chip:hover {
  color: #7308dd;
}

.canvas .sb-page.dashboard .recent-activity .card header .chip-slider-wrap .slide-bar {
  background: var(--SB-Gradient, linear-gradient(315deg, #000FE3 0.34%, #9D3AFF 99.57%));
  height: 20px;
  position: absolute;
  display: block;
  transition: left 0.5s, width 0.3s, transform 0.3s;
  transition-timing-function: cubic-bezier(0.5, 1, 0.2, 1);
  z-index: 0;
  height: 29px;
  border-radius: 40px;
  top: -2px;
  width: 43px;
  left: 15px;
}

@media (max-width: 768px) {
  .canvas .sb-page.dashboard .recent-activity .card header .chip-slider-wrap .slide-bar {
    left: -5px;
  }
}
.canvas .sb-page.dashboard .recent-activity .card header .chip-slider-wrap .slide-bar.bump {
  transform: scaleX(0.85);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.canvas .sb-page.dashboard .recent-activity .card .items {
  width: 100%;
  max-height: 300px;
  overflow: auto;
  margin-top: 20px;
  /* always show scrollbars */
}

.canvas .sb-page.dashboard .recent-activity .card .items::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 6px;
}

.canvas .sb-page.dashboard .recent-activity .card .items::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #000fe3;
}

.canvas .sb-page.dashboard .recent-activity .card .items::-webkit-scrollbar-track {
  background-color: #f0f1fa;
}

.canvas .sb-page.dashboard .recent-activity .card .items .no-data {
  font-size: 20px;
  text-align: center;
  margin-top: 40px;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item {
  display: flex;
  padding-top: 15px;
  border-bottom: 1px solid #e1e2f0;
  padding-bottom: 0px;
  margin-right: 20px;
  position: relative;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item:first-child {
  margin-top: -15px;
  border-top: 5px solid #ffffff;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item.highlight {
  border-bottom: 3px solid #00CBA6;
  margin-top: 0;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item.highlight:first-child {
  border-top: 3px solid #00CBA6;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item.highlight:after {
  content: "New!";
  background: #00CBA6;
  width: 50px;
  height: 24px;
  padding: 0px 9px;
  box-shadow: 0 4px 7px 0px #e1e2f0;
  position: absolute;
  top: 0px;
  right: 0;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  opacity: 1;
  transition: all 0.2s;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item.scroll-repeat.first {
  border-top: 5px solid #000a9f;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item a {
  color: #000333;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .sentiment {
  margin-top: 6px;
  margin-right: 10px;
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50px;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .sentiment.positive {
  background-color: #00CBA6;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .sentiment.neutral {
  background-color: #FFBB00;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .sentiment.negative {
  background-color: #EB3853;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content {
  min-height: 35px;
  max-width: calc(100% - 25px);
  width: 100%;
  padding-bottom: 10px;
  flex-direction: column;
  display: flex;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .title {
  margin-bottom: 10px;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .title .name {
  font-weight: bold;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .title .chip {
  margin-left: 5px;
  font-size: 14px;
  background: #e1e2f0;
  color: #6d6f94;
  border-radius: 14px;
  padding: 1px 8px 3px 8px;
  font-weight: 600;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .categories-wrap {
  display: flex;
  margin-bottom: 10px;
  width: 100%;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .categories-wrap .category {
  flex-direction: column;
  display: flex;
  max-width: calc(20% - 10px);
  font-size: 14px;
  padding: 4px 6px;
  border-radius: 10px;
  margin-right: 10px;
  flex: 1;
  height: unset;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9fc 100%);
  box-shadow: 0 3px 6px 0px #bcbed4;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  color: #3a3c66;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .categories-wrap .category .name {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  word-wrap: normal;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .categories-wrap .category .score {
  font-weight: bold;
  font-size: 18px;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .comment {
  border-radius: 0 10px 10px 10px;
  background: linear-gradient(180deg, #FFF 0%, #F9F9FC 100%);
  box-shadow: 0 3px 6px 0px #bcbed4;
  margin-bottom: 10px;
  display: flex;
  color: #3a3c66;
  align-self: flex-start;
  max-width: 100%;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .comment.checking .text-wrapper {
  overflow: unset;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .comment.open .text-wrapper {
  white-space: normal;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .comment .text-wrapper {
  padding: 6px 25px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .comment .text-wrapper:before {
  content: "“";
  font-size: 20px;
  position: absolute;
  top: 2px;
  left: 10px;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .comment .text-wrapper:after {
  content: "”";
  font-size: 20px;
  position: absolute;
  top: 2px;
  right: 10px;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .comment .more-link {
  color: #000fe3;
  font-size: 15px;
  align-self: flex-end;
  margin-right: 16px;
  margin-bottom: 5px;
  cursor: pointer;
}

.canvas .sb-page.dashboard .recent-activity .card .items .item .content .comment .more-link:hover {
  text-decoration: underline;
}

.canvas .sb-page.dashboard .top-performers {
  flex: 1;
  margin-left: 15px;
}

@media (max-width: 1024px) {
  .canvas .sb-page.dashboard .top-performers {
    margin-left: 0;
  }
}
.canvas .sb-page.dashboard .top-performers .size-wrapper {
  margin: 0 0 0 15px;
  position: relative;
}

@media (max-width: 1024px) {
  .canvas .sb-page.dashboard .top-performers .size-wrapper {
    margin-left: 0;
  }
}
.canvas .sb-page.dashboard .top-performers header h2 {
  border: none;
  padding: 0;
  margin-bottom: 15px;
  font-size: 24px;
  position: relative;
}

.canvas .sb-page.dashboard .top-performers header h2 .tooltip-wrap {
  display: inline-block;
}

.canvas .sb-page.dashboard .top-performers header h2 .tooltip-wrap img {
  margin-top: -4px;
}

.canvas .sb-page.dashboard .top-performers header h2 .tooltip-wrap .sb-tooltip {
  top: unset;
  left: 60px;
  bottom: 50px;
}

.canvas .sb-page.dashboard .top-performers header h2 .tooltip-wrap .sb-tooltip::after {
  content: " ";
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #ffffff;
  display: block;
  position: absolute;
  left: 99px;
  top: unset;
  bottom: -22px;
}

.canvas .sb-page.dashboard .top-performers header h2 .tooltip-wrap .sb-tooltip::before {
  content: none;
}

.canvas .sb-page.dashboard .top-performers header .categories {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.canvas .sb-page.dashboard .top-performers header .categories .category {
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.canvas .sb-page.dashboard .top-performers header .categories .category:hover {
  color: #7308dd;
}

.canvas .sb-page.dashboard .top-performers header .slide-bar {
  position: absolute;
  left: 0;
  top: 72px;
  height: 3px;
  width: 58px;
  display: block;
  background: var(--SB-Gradient, linear-gradient(315deg, #000FE3 0.34%, #9D3AFF 99.57%));
  transition: left 0.5s, width 0.3s, transform 0.3s;
  transition-timing-function: cubic-bezier(0.5, 1, 0.2, 1);
  border-radius: 20px;
}

.canvas .sb-page.dashboard .top-performers header .slide-bar.quick {
  transition: all 0.2s;
  transition-timing-function: linear;
}

.canvas .sb-page.dashboard .top-performers header .slide-bar.bump {
  transform: scaleX(0.7);
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.canvas .sb-page.dashboard .top-performers .list {
  margin-top: 20px;
}

.canvas .sb-page.dashboard .top-performers .list .item {
  background: linear-gradient(147deg, #00054d 70%, #000a9f 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 13px 11px 15px;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px 2px #bcbed4;
  transition: all 0.3s;
}

.canvas .sb-page.dashboard .top-performers .list .item.hide-panel {
  opacity: 0;
}

.canvas .sb-page.dashboard .top-performers .list .item.flip {
  transform: translateY(25px) rotateX(80deg);
}

.canvas .sb-page.dashboard .top-performers .list .item .title {
  padding-right: 10px;
}

.canvas .sb-page.dashboard .top-performers .list .item .score-wrap {
  display: flex;
  font-weight: 700;
  font-size: 16px;
}

.canvas .sb-page.dashboard .top-performers .list .item .score-wrap .score {
  border-radius: 4px;
  background: var(--SB-Gradient, linear-gradient(315deg, #000FE3 0.34%, #9D3AFF 99.57%));
  padding: 1px 8px;
  color: #ffffff;
  min-width: 54px;
  text-align: center;
}

.canvas .sb-page.dashboard .top-performers .list .item .score-wrap .count {
  border-radius: 4px;
  background-color: #ffffff;
  color: #000333;
  padding: 1px 8px;
  margin-left: 8px;
  min-width: 54px;
  text-align: center;
}

.canvas .sb-page.dashboard.single-survey .title .chip.type {
  display: none;
}

.canvas .sb-page.dashboard.compact-view .full-flex-wrapper {
  display: flex;
}

@media (max-width: 768px) {
  .canvas .sb-page.dashboard.compact-view .full-flex-wrapper {
    flex-direction: column;
  }
}
.canvas .sb-page.dashboard.compact-view .full-flex-wrapper .metrics-header-wrap {
  flex-direction: column;
  flex: 1;
  margin-right: 30px;
  align-self: flex-start;
}

.canvas .sb-page.dashboard.compact-view .full-flex-wrapper .metrics-header-wrap .card {
  max-width: unset;
  width: 100%;
  margin-bottom: 20px;
  margin-left: 0;
}

.canvas .sb-page.dashboard.compact-view .full-flex-wrapper .metrics-header-wrap .card:last-child {
  margin-bottom: 0 !important;
}

.canvas .sb-page.dashboard.compact-view .full-flex-wrapper .metrics-header-wrap .top-performers {
  margin: 0;
  width: 100%;
}

.canvas .sb-page.dashboard.compact-view .full-flex-wrapper .metrics-header-wrap .top-performers header h2 {
  margin-top: 20px;
}

.canvas .sb-page.dashboard.compact-view .full-flex-wrapper .metrics-header-wrap .top-performers .size-wrapper {
  margin: 0;
}

.canvas .sb-page.dashboard.compact-view .full-flex-wrapper .flex-wrapper {
  flex: 2;
  max-width: calc(66.6666666667% - 10px);
}

@media (max-width: 768px) {
  .canvas .sb-page.dashboard.compact-view .full-flex-wrapper .flex-wrapper {
    max-width: 100%;
  }
}
.canvas .sb-page.dashboard.compact-view .full-flex-wrapper .flex-wrapper .recent-activity {
  margin-top: 0;
  max-width: 100%;
}

.canvas .sb-page.dashboard.compact-view .full-flex-wrapper .flex-wrapper .recent-activity .card .items {
  max-height: 540px;
}

.canvas .getting-started {
  margin-top: 40px;
}

.canvas .getting-started h2 {
  font-size: 28px;
  width: 100%;
  border-bottom: solid 1px #cbccd5;
  text-align: left;
  padding-bottom: 20px;
  margin-top: 0;
}

.canvas .getting-started .no-reviews {
  margin: 60px 0;
}

.canvas .getting-started .resources {
  margin-top: 40px;
}

.canvas .getting-started .resources .card-wrapper {
  display: flex;
  margin: 20px -10px 20px -10px;
}

@media (max-width: 768px) {
  .canvas .getting-started .resources .card-wrapper {
    flex-direction: column;
  }
}
.canvas .getting-started .resources .card-wrapper .youtube-video {
  flex: 4;
  margin: 0 10px 20px 10px;
}

.canvas .getting-started .resources .card-wrapper .youtube-video iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .canvas .getting-started .resources .card-wrapper .youtube-video iframe {
    height: 360px;
  }
}
.canvas .getting-started .resources .card-wrapper .flex-wrapper {
  flex: 3;
}

.canvas .getting-started .resources .card-wrapper .card {
  flex: 1;
  padding: 20px;
  margin: 0 0 20px 20px;
  box-shadow: 0px 2px 6px 1px #aaa;
  border-radius: 20px;
  background: linear-gradient(180deg, #FFF 0%, #F9F9FC 100%);
  box-shadow: 0 12px 17px 0px #bcbed4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: none;
}

@media (max-width: 768px) {
  .canvas .getting-started .resources .card-wrapper .card {
    margin-left: 0;
  }
}
.canvas .getting-started .resources .card-wrapper .card .flex-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.canvas .getting-started .resources .card-wrapper .card .button-primary {
  margin-top: 10px;
}

.canvas .getting-started .resources .card-wrapper .card .title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
}

.analytics-page {
  font-family: sofia-pro, Arial, sans-serif;
}

.analytics-page .header-wrap {
  margin-bottom: -10px;
}

.analytics-page header {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #cbccd5;
  padding-bottom: 24px;
  margin-bottom: 26px;
  width: 100%;
  min-width: 100%;
  cursor: pointer;
}

.analytics-page header.main {
  justify-content: space-between;
  cursor: default;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 10px;
  min-width: unset;
  width: calc(100% - 30px);
  border: 0;
}

@media (max-width: 1024px) {
  .analytics-page header.main .button-primary {
    display: none;
  }
}
@media (max-width: 1024px) {
  .analytics-page header {
    flex-direction: column;
    align-items: baseline;
  }
}
.analytics-page header:hover h2 {
  text-decoration: underline;
}

.analytics-page header:hover .settings-toggle-wrap .icon {
  transform: rotate(90deg);
  opacity: 1;
}

.analytics-page header:hover .filter-status, .analytics-page header:hover .date-range {
  text-decoration: underline;
}

.analytics-page header h2 {
  cursor: pointer;
  margin-right: 20px;
  margin-bottom: 4px;
}

@media (max-width: 1024px) {
  .analytics-page header.collapse {
    padding-bottom: 0;
  }
}
.analytics-page header.collapse h2:after {
  content: "+";
}

.analytics-page #data-area {
  margin-top: 20px;
}

.analytics-page #data-area .flex-wrapper {
  display: flex;
}

@media (max-width: 1024px) {
  .analytics-page #data-area .flex-wrapper {
    flex-direction: column;
  }
}
.analytics-page #data-area .flex-wrapper.chart {
  flex-direction: column;
  box-shadow: 0 8px 24px 0 #bcbed4;
  width: calc(100% - 300px);
  margin-left: 20px;
  padding: 20px;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .analytics-page #data-area .flex-wrapper.chart {
    width: 100%;
    margin: 20px 0 0 0;
  }
}
.analytics-page #data-area .flex-wrapper.chart .interval-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.analytics-page #data-area #key-metrics {
  background: linear-gradient(to bottom, #fff, #f9f9fc);
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 24px 0 #bcbed4;
  background-color: #ffffff;
  border: none;
  width: 300px;
  min-width: 300px;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .analytics-page #data-area #key-metrics {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .analytics-page #data-area #key-metrics {
    padding: 10px 25px;
  }
}
.analytics-page #data-area #key-metrics .card-flex-wrapper {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .analytics-page #data-area #key-metrics .card-flex-wrapper {
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .analytics-page #data-area #key-metrics .card-flex-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .analytics-page #data-area #key-metrics .card-flex-wrapper .card {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .analytics-page #data-area #key-metrics .card-flex-wrapper .card.reviews {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .analytics-page #data-area #key-metrics .card-flex-wrapper .card.reviews .card-body {
    border-bottom: none;
    border-right: 1px solid #bcbed4;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .analytics-page #data-area #key-metrics .card-flex-wrapper .card.reviews .card-body {
    border-right: none;
    border-bottom: 1px solid #bcbed4;
    padding-right: 0px;
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .analytics-page #data-area #key-metrics .card-flex-wrapper .card.response-rate {
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .analytics-page #data-area #key-metrics .card-flex-wrapper .card.response-rate .card-body {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .analytics-page #data-area #key-metrics .card-flex-wrapper .card.response-rate .card-body {
    padding: 0;
  }
}
.analytics-page #data-area #key-metrics .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  box-shadow: none;
  border: none;
  background: none;
}

@media (max-width: 1024px) {
  .analytics-page #data-area #key-metrics .card.score {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .analytics-page #data-area #key-metrics .card.score {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.analytics-page #data-area #key-metrics .card.score .card-body {
  padding-top: 15px;
}

@media (max-width: 1024px) {
  .analytics-page #data-area #key-metrics .card.score .card-body {
    padding: 0 0 15px 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .analytics-page #data-area #key-metrics .card.score .card-body {
    margin-bottom: 0px;
  }
}
.analytics-page #data-area #key-metrics .card.score .card-body .score-wrap {
  margin-bottom: 0;
}

.analytics-page #data-area #key-metrics .card.score .card-body .score-wrap .card-title {
  font-size: 25px;
}

.analytics-page #data-area #key-metrics .card.score .card-body .score-wrap .headline-score {
  font-size: 50px;
  margin-left: 20px;
  background: linear-gradient(315deg, #000fe3, #9d3aff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.analytics-page #data-area #key-metrics .card.reviews .card-body {
  display: flex;
  flex-direction: column;
}

.analytics-page #data-area #key-metrics .card.response-rate .card-body {
  border-bottom: none;
}

.analytics-page #data-area #key-metrics .card.response-rate .details {
  align-items: center;
  color: #6d6f94;
  margin-top: -4px;
  display: flex;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  padding: 8px 0 0 0;
  justify-content: space-evenly;
  width: 100%;
  text-align: center;
  flex: 1;
}

.analytics-page #data-area #key-metrics .card.response-rate .details .detail-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .analytics-page #data-area #key-metrics .card.response-rate .details .detail-wrap {
    flex-direction: row;
  }
}
.analytics-page #data-area #key-metrics .card.response-rate .details .detail-wrap .score {
  font-weight: 600;
  font-size: 16px;
  color: #3a3c66;
  margin: 0 0 0 10px;
}

.analytics-page #data-area #key-metrics .card .card-body {
  padding: 16px 0 20px 0;
  border-bottom: 1px solid #bcbed4;
}

@media (max-width: 1024px) {
  .analytics-page #data-area #key-metrics .card .card-body {
    padding: 0px 0 5px 0;
  }
}
@media (max-width: 768px) {
  .analytics-page #data-area #key-metrics .card .card-body {
    padding: 16px 0 20px 0;
  }
}
.analytics-page #data-area #key-metrics .card .score-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.analytics-page #data-area #key-metrics .card .score-wrap .card-title {
  font-family: sofia-pro, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}

.analytics-page #data-area #key-metrics .card .score-wrap .headline-score {
  line-height: 1;
  font-size: 35px;
  font-weight: bold;
  color: #00054d;
}

.analytics-page #data-area #key-metrics .card .score-wrap .headline-score .symbol {
  display: inline-block;
  font-size: 21px;
}

.analytics-page #data-area #key-metrics .card .sentiments {
  display: flex;
  justify-content: space-between;
  max-width: 250px;
  align-self: center;
  width: 100%;
}

.analytics-page #data-area #key-metrics .card .sentiments .sentiment-wrap {
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #3a3c66;
  display: flex;
}

.analytics-page #data-area #key-metrics .card .sentiments .sentiment-wrap img {
  width: 18px;
  height: 18px;
}

.analytics-page #data-area #key-metrics .card .sentiments .sentiment-wrap .score {
  margin-left: 10px;
}

.analytics-page .results-wrapper {
  margin-top: 20px;
}

.analytics-page .results-wrapper table tr:nth-child(even) {
  background-color: #f9f9fc;
}

.analytics-page .results-wrapper table tr td {
  padding: 16px 12px !important;
}

.analytics-page .results-wrapper .table-analytics-lead {
  position: absolute;
  width: 10rem;
  background: #ffffff;
  margin-top: 20px;
}

.analytics-page .results-wrapper .table-analytics-padding {
  padding-left: 10rem;
  margin-top: 20px;
}

.sb-page.nps-responses {
  padding: 0 15px;
  font-family: sofia-pro, Arial, sans-serif;
}

@media (max-width: 768px) {
  .sb-page.nps-responses {
    padding: 30px 20px;
  }
}
.sb-page.nps-responses input::-ms-clear {
  display: none;
}

.sb-page.nps-responses .nps-filter-dropdown:not(.custom) {
  width: calc(100% - 20px);
  overflow: hidden;
}

.sb-page.nps-responses .nps-filter-dropdown:not(.custom) .nps-filter-dropdown__list:not(.disabled) {
  overflow-y: scroll;
}

.sb-page.nps-responses .comment-filter-dropdown label {
  line-height: 30px !important;
}

.sb-page.nps-responses .comment-filter-dropdown label .checkbox-wrap__checker {
  top: 7px !important;
  left: 14px;
}

.sb-page.nps-responses .nps-responses-body:not(.filter-opened) .nps-comp-filter__wrap {
  height: 65px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .nps-responses-body:not(.filter-opened) .nps-comp-filter__wrap {
    height: 60px;
    overflow-x: scroll;
  }
}
@media (max-width: 768px) {
  .sb-page.nps-responses .nps-responses-body:not(.filter-opened) .filters-controls {
    width: auto;
    border: 0;
  }
}
@media (max-width: 768px) {
  .sb-page.nps-responses .canvas.rounded {
    margin: 0;
    border-radius: 0 !important;
  }
}
@media (max-width: 768px) {
  .sb-page.nps-responses .nps-daterange.responses-daterange .dr-input {
    display: flex;
    justify-content: flex-end;
    right: 14px;
    padding-right: 0px !important;
  }
  .sb-page.nps-responses .nps-daterange.responses-daterange .dr-input.dr-active {
    background: none;
  }
  .sb-page.nps-responses .nps-daterange.responses-daterange .dr-input .dr-presets {
    color: #92939b;
  }
  .sb-page.nps-responses .nps-daterange.responses-daterange .dr-dates {
    margin: 0 0 0 15px;
  }
}
.sb-page.nps-responses .table-controls-top-right {
  display: flex;
  justify-content: end;
}

.sb-page.nps-responses .table-controls-top-right .csv-download {
  margin-right: 10px;
  line-height: 20px;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .table-controls-top-right .csv-download {
    display: none;
  }
}
.sb-page.nps-responses .sb-modal__content .mock-select {
  border-bottom: solid 1px #bcbed4;
}

.sb-page.nps-responses .sb-modal__content .mock-options {
  border-radius: 0 0 2.5px 2.5px;
  top: 45px;
}

.sb-page.nps-responses .sb-modal__content .custom-select {
  margin-bottom: 4px;
}

@media (max-width: 500px) {
  .sb-page.nps-responses .dr-dates {
    margin-left: -157px;
  }
}
.sb-page.nps-responses .settings-panel.filter-settings {
  overflow: visible;
  padding: 30px 30px 20px 30px;
}

@media (max-width: 768px) {
  .sb-page.nps-responses .settings-panel.filter-settings {
    padding: 15px;
  }
}
.sb-page.nps-responses .settings-panel.filter-settings.hide {
  padding: 0;
  overflow: hidden;
}

.sb-page.nps-responses .settings-panel.filter-settings .date-wrap {
  display: flex;
  font-size: 18px;
  padding-bottom: 20px;
  align-items: center;
  color: #1f214d;
  border-bottom: 1px solid #bcbed4;
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 768px) {
  .sb-page.nps-responses .settings-panel.filter-settings .date-wrap {
    align-items: baseline;
    flex-direction: column;
  }
}
.sb-page.nps-responses .settings-panel.filter-settings .date-wrap .title {
  white-space: nowrap;
  font-weight: bold;
}

.sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange {
  margin: 0;
  padding: 0 !important;
}

@media (max-width: 768px) {
  .sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange {
    margin-left: 10px;
  }
}
.sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange .dr-selections {
  left: 10px;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange .dr-selections .dr-preset-list, .sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange .dr-selections .dr-calendar {
    margin: 0 !important;
  }
}
@media (max-width: 768px) {
  .sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange .dr-selections .dr-preset-list, .sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange .dr-selections .dr-calendar {
    margin: 14px 0 0 -48px !important;
    width: 100vw !important;
    max-width: 370px;
  }
}
@media (max-width: 768px) {
  .sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange .dr-input {
    justify-content: flex-start;
  }
}
.sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange .dr-input:hover {
  background: none;
}

.sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange .dr-input:hover .dr-date {
  background: none;
}

.sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange .dr-input.dr-active {
  background: none;
}

.sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange .dr-input .dr-dates:hover {
  background: none;
}

@media (max-width: 768px) {
  .sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange .dr-input .dr-dates {
    margin-left: 0;
  }
}
.sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange .dr-input .dr-date, .sb-page.nps-responses .settings-panel.filter-settings .date-wrap .nps-daterange .dr-input .dr-dates {
  font-size: 18px;
}

.sb-page.nps-responses .settings-panel.filter-settings .loader-bar {
  transition: all 0.01s !important;
  width: 0%;
  position: relative;
  top: -21px;
  height: 1px;
  border-radius: 2px;
  background-color: #007b80;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

.sb-page.nps-responses .settings-panel.filter-settings .loader-bar.disabled {
  opacity: 0;
  width: 100% !important;
  transition: all 1s !important;
}

.sb-page.nps-responses .settings-panel.filter-settings .filters-title {
  font-size: 17px;
  font-weight: bold;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters {
  padding: 10px 0 20px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  overflow: unset;
  margin: 0;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .settings-panel.filter-settings .all-filters {
    flex-direction: column;
  }
}
.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap {
  width: 50%;
  display: flex;
  margin: 10px 0;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap {
    flex-direction: column;
  }
}
.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap:nth-child(even) {
  padding-left: 10px;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap:nth-child(even) {
    padding: 0;
  }
}
.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap:nth-child(odd) {
  padding-right: 10px;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap:nth-child(odd) {
    padding: 0;
  }
}
.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector {
  width: 220px;
  position: relative;
  color: #6d6f94;
}

@media (max-width: 768px) {
  .sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector {
    width: 100%;
  }
}
.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector.active .filter-options {
  display: block;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector.active::after {
  transform: rotate(180deg);
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector::after {
  position: absolute;
  content: "";
  top: 16px;
  right: 10px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #00054d;
  transition: all 0.25s;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-name {
  background: white;
  padding: 5px 10px;
  border: 1px solid #e1e2f0;
  cursor: pointer;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options {
  display: none;
  position: absolute;
  background: white;
  width: 220px;
  padding: 5px;
  box-shadow: 0 2px 5px 1px #e1e2f0;
  border-radius: 0 0 5px 5px;
  z-index: 10;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .search-wrap input {
  border: none;
  padding: 4px 6px;
  width: 100%;
  margin: 2px 0 10px 0px;
  border: 1px solid #bcbed4;
  color: #000333;
  min-height: unset !important;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .search-wrap input::placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .search-wrap input:focus, .sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .search-wrap input:focus-visible {
  border-radius: 0;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap {
  max-height: 260px;
  overflow-y: auto;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap::-webkit-scrollbar {
  width: 5px;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap::-webkit-scrollbar-track {
  background: #e1e2f0;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap::-webkit-scrollbar-thumb {
  background-color: #bcbcc1;
  border-radius: 5px;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap .option {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px 5px 5px 5px;
  border-bottom: 1px solid #e1e2f0;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap .option.selected {
  background: #007b80;
  color: white;
  position: relative;
  padding-right: 20px;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap .option.selected::after {
  content: "✕";
  position: absolute;
  right: 3px;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap .option.selected:hover {
  background: #007b80;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap .option.selected:hover::after {
  text-decoration: underline;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap .option:last-of-type {
  border: none;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap .option:hover {
  background: #e1e2f0;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selector .filter-options .no-results {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
  margin: 0;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selections {
  flex: 1;
  margin-left: 20px;
  display: flex;
  align-items: baseline;
  overflow-x: auto;
}

@media (max-width: 768px) {
  .sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selections {
    margin: 0;
  }
}
.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selections::-webkit-scrollbar {
  height: 5px;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selections::-webkit-scrollbar-track {
  background: #bcbcc1;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selections::-webkit-scrollbar-thumb {
  background-color: #007b80;
  border-radius: 5px;
  cursor: pointer;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selections .selection {
  background: #007b80;
  padding: 3px 6px 5px 6px;
  color: white;
  font-size: 13px;
  border-radius: 3px;
  cursor: pointer;
  margin: 5px 5px 5px 0;
  white-space: nowrap;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selections .selection:hover {
  box-shadow: 0 2px 5px 1px #e1e2f0;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selections .selection:hover .remove {
  text-decoration: underline;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selections .selection .remove {
  margin-left: 5px;
  font-size: 10px;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selections .selection.all {
  background: #e1e2f0;
  color: #3a3c66;
  cursor: default;
}

.sb-page.nps-responses .settings-panel.filter-settings .all-filters .filter-wrap .selections .selection.all:hover {
  box-shadow: none;
}

.sb-page.nps-responses .settings-panel.filter-settings .bottom-controls {
  padding: 20px 0px 0 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #bcbed4;
}

@media (max-width: 768px) {
  .sb-page.nps-responses .settings-panel.filter-settings .bottom-controls {
    flex-direction: column;
  }
}
.sb-page.nps-responses .settings-panel.filter-settings .bottom-controls .mini-toggle {
  display: flex;
}

@media (max-width: 768px) {
  .sb-page.nps-responses .settings-panel.filter-settings .bottom-controls .mini-toggle {
    margin-bottom: 20px;
  }
}
.sb-page.nps-responses .settings-panel.filter-settings .bottom-controls .mini-toggle .description {
  display: flex;
}

.sb-page.nps-responses .settings-panel.filter-settings .bottom-controls .mini-toggle .description .tooltip-wrap {
  width: 18px;
  margin-left: 10px;
}

.sb-page.nps-responses .settings-panel.filter-settings .bottom-controls .mini-toggle .description .tooltip-wrap:hover .sb-tooltip {
  display: block;
}

.sb-page.nps-responses .settings-panel.filter-settings .bottom-controls .mini-toggle .description .tooltip-wrap .sb-tooltip {
  right: -60px;
  font-size: 17px;
}

.sb-page.nps-responses .settings-panel.filter-settings .bottom-controls .mini-toggle .description .tooltip-wrap .sb-tooltip::before {
  right: 69px;
}

.sb-page.nps-responses .settings-panel.filter-settings .bottom-controls .mini-toggle .description .tooltip-wrap .sb-tooltip::after {
  right: 70px;
}

.sb-page.nps-responses .settings-panel.filter-settings .bottom-controls .reset-settings {
  justify-self: end;
  color: #00054d;
  cursor: pointer;
}

.sb-page.nps-responses .settings-panel.filter-settings .bottom-controls .reset-settings:hover {
  text-decoration: underline;
}

.sb-page.nps-responses .nps-basic-filter {
  position: relative;
  width: 183px;
  text-align: center;
}

.sb-page.nps-responses .nps-basic-filter .list-item-filter {
  cursor: pointer;
}

.sb-page.nps-responses .nps-basic-filter.disabled {
  display: none !important;
}

.sb-page.nps-responses .nps-basic-filter.disabled + .nps-line-vertical {
  display: none;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown {
  z-index: 100;
  display: none;
  border-radius: 0 0 10px 10px;
  top: 44px;
  left: -37px;
  position: absolute;
  width: 255px;
  background-color: white;
  box-shadow: 0 2px 3px 2px rgba(0, 0, 0, 0.15);
  left: -37px;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown.active {
  display: block;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown .checkbox-wrap__checker {
  display: inline-block;
  position: absolute;
  border: 1px solid #00054d;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown .nps-smile-checker__title {
  width: 100%;
  text-align: left;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list {
  display: flex;
  flex-direction: column;
  max-height: 310px;
  padding: 10px 0;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list > label:first-child {
  padding-top: 2px;
  height: 32px;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list > label:last-child {
  padding-bottom: 2px;
  height: 32px;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list > label:last-child span {
  height: 32px;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list > label:last-child .checkbox-wrap__checker {
  bottom: 10px;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list.disabled {
  pointer-events: none;
  color: #bcbed4;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list.disabled .checkbox-wrap__checker {
  filter: grayscale(100%);
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list.disabled .checkbox-wrap__checker {
  border-color: #e1e2f0;
  background-color: #e1e2f0;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list.disabled .nps-smile-checker__title {
  color: #bcbed4 !important;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list .nps-smile-checker__title {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.23px;
  color: rgb(146, 147, 155);
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list > label {
  min-height: 30px;
  height: 30px;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  flex-direction: row;
  position: relative;
  cursor: pointer;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list > label:hover {
  background-color: #f9f9fc;
  color: #6d6f94;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list > label.disabled {
  display: none;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list > label span {
  display: block;
  height: 30px;
  line-height: 30px;
  padding-left: 15px;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__list > label div {
  bottom: 7px;
  margin-left: 15px;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown .nps-comp-filter-list__triangle {
  position: relative;
  border-width: 0 17px 5px 17px;
  left: 112px;
  top: -5px;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__header {
  height: 73px;
  border-bottom: solid 1px rgb(203, 204, 213);
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__header .checkbox-wrap__checker {
  top: 3px;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__header > label {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  display: flex;
  margin-left: 15px;
  align-items: center;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__header > label.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__header > label > * {
  display: block;
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__header input[type=text] {
  display: block;
  width: 234px;
  height: 30px;
  padding: 5px;
  margin: 10px auto 8px auto;
  border-radius: 5px;
  border: solid 1px rgb(203, 204, 213);
}

.sb-page.nps-responses .nps-basic-filter .nps-filter-dropdown__header input[type=text][disabled] {
  border: none;
  color: rgb(203, 204, 213);
  background-color: #f9f9fc;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .metrics-header-wrap.global .metrics-wrap.show-tooltip {
    height: 370px;
  }
}
@media (max-width: 768px) {
  .sb-page.nps-responses .metrics-header-wrap.global .metrics-wrap.show-tooltip {
    height: 618px;
  }
}
.sb-page.nps-responses .metrics-header-wrap.global .metrics-wrap.show-tooltip .metrics-tooltip {
  display: block;
}

.sb-page.nps-responses .metrics-header-wrap.global .metrics-wrap .metrics {
  flex-direction: column;
}

.sb-page.nps-responses .metrics-header-wrap.global .metrics-wrap .metrics-tooltip {
  width: calc(100% - 30px);
  align-self: flex-start;
  box-shadow: 0 2px 4px 0 #e1e2f0;
  border: solid 1px #bcbed4;
  background-color: #ffffff;
  padding: 15px;
  color: #92939b;
  border-radius: 10px;
  position: relative;
  margin-top: 30px;
  margin-left: 10px;
  display: none;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .metrics-header-wrap.global .metrics-wrap .metrics-tooltip {
    margin-top: 10px;
  }
}
.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr {
  border-bottom: none;
  border-top: 1px solid #bcbed4;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr:first-child {
  border-top: none;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr.even {
  background-color: #f9f9fc !important;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr.even + .comment-row {
  background-color: #f9f9fc !important;
  border-top: none;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr.odd {
  background-color: #ffffff !important;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr.odd + .comment-row {
  background-color: #ffffff !important;
  border-top: none;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr.comment-row {
  height: inherit;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td {
  white-space: normal !important;
  overflow: visible !important;
  position: relative;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper {
  overflow-wrap: break-word;
  font-size: 16px;
  display: inline-block;
  padding: 10px;
  line-height: 24px;
  position: relative;
  background: white;
  border-radius: 10px;
  margin: 0 60px 10px 0;
  min-width: 40px;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper .comment-block {
  overflow: hidden;
  max-width: 800px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper .comment-block.open {
  white-space: normal;
  width: 800px;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper::before {
  top: -13px;
  left: 14px;
  border: 6px solid transparent;
  content: " ";
  height: 12px;
  width: 12px;
  position: absolute;
  pointer-events: none;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper::after {
  top: -12px;
  left: 14px;
  border: 6px solid transparent;
  content: " ";
  height: 12px;
  width: 12px;
  position: absolute;
  pointer-events: none;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper.warning {
  border: solid 1px #b07d00;
  background-color: #fffdf7;
  color: #b07d00;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper.warning::before {
  border-bottom-color: #b07d00;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper.warning::after {
  border-bottom-color: #fffdf7;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper.primary {
  border: solid 1px #007b80;
  background-color: #f5fcfc;
  color: #007b80;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper.primary::before {
  border-bottom-color: #007b80;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper.primary::after {
  border-bottom-color: #f5fcfc;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper.danger {
  border: solid 1px #c70a2a;
  background-color: #fef9fa;
  color: #c70a2a;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper.danger::before {
  border-bottom-color: #c70a2a;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper.danger::after {
  border-bottom-color: #fef9fa;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.comment-td .comment-wrapper .more {
  cursor: pointer;
  margin-left: 5px;
  font-weight: normal;
  position: absolute;
  bottom: 0;
  right: -50px;
  width: 40px;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.company-td, .sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.date, .sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.full-name-td {
  width: 30%;
  word-wrap: break-word;
}

.sb-page.nps-responses .table-results-wrap .contacts-table tbody tr td.score-td {
  width: 10%;
}

.sb-page.nps-responses .remove-response.tooltip-wrap {
  position: relative;
  text-align: center;
  width: 74px;
  margin: 0 auto;
}

.sb-page.nps-responses .remove-response.tooltip-wrap .icon {
  color: #CC3333;
  cursor: pointer;
}

.sb-page.nps-responses .remove-response.tooltip-wrap:hover .sb-tooltip {
  display: block;
  right: 80px;
  top: -22px;
  font-size: 16px;
  white-space: initial;
  width: 300px;
}

.sb-page.nps-responses .remove-response.tooltip-wrap:hover .sb-tooltip::before {
  top: 20px;
  right: -18px;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid #bcbed4;
  border-right: none;
}

.sb-page.nps-responses .remove-response.tooltip-wrap:hover .sb-tooltip::after {
  top: 20px;
  right: -16px;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid white;
  border-right: none;
}

.sb-page.nps-responses .remove-response.tooltip-wrap img {
  margin-top: -3px;
}

.sb-page.nps-responses .remove-response-confirm {
  text-align: center;
  color: #CC3333;
  font-size: 16px;
}

.sb-page.nps-responses .remove-response-confirm span {
  cursor: pointer;
  padding: 5px;
  color: #6d6f94;
}

.sb-page.nps-responses .remove-response-confirm span:hover {
  text-decoration: underline;
}

.sb-page.nps-responses .nps-comp-filter {
  height: 45px;
  width: 100%;
  text-align: left;
  background-color: #00054d;
  font-size: 14px;
  border-bottom: 2px solid #e1e2f0;
  margin-left: 0;
  min-width: 1770px;
  justify-content: center;
  position: absolute;
  left: 0;
  transition: all 1s;
}

.sb-page.nps-responses .nps-comp-filter.zd-platform, .sb-page.nps-responses .nps-comp-filter.fd-platform {
  min-width: 1000px;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .nps-comp-filter.zd-platform, .sb-page.nps-responses .nps-comp-filter.fd-platform {
    min-width: 680px;
  }
}
@media (max-width: 1024px) {
  .sb-page.nps-responses .nps-comp-filter {
    min-width: 1300px;
    width: 100%;
    position: static;
  }
}
.sb-page.nps-responses .nps-comp-filter__wrap {
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  background-color: transparent;
  height: 487px;
}

.sb-page.nps-responses .nps-comp-filter__no-events {
  height: 425px;
}

.sb-page.nps-responses .nps-comp-filter__hide-scroll {
  height: 460px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .sb-page.nps-responses .nps-comp-filter__hide-scroll {
    height: 45px;
    overflow: visible;
  }
}
.sb-page.nps-responses .nps-comp-filter__hide-scroll .nav-arrow {
  position: absolute;
  height: 43px;
  width: 20px;
  background: #00054d;
  top: 0;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.sb-page.nps-responses .nps-comp-filter__hide-scroll .nav-arrow:hover {
  background: #4E7484;
}

.sb-page.nps-responses .nps-comp-filter__hide-scroll .nav-arrow.left img, .sb-page.nps-responses .nps-comp-filter__hide-scroll .nav-arrow.right img {
  top: 19px;
  position: absolute;
  left: 5px;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .nps-comp-filter__hide-scroll .nav-arrow.left, .sb-page.nps-responses .nps-comp-filter__hide-scroll .nav-arrow.right {
    display: none !important;
  }
}
.sb-page.nps-responses .nps-comp-filter__hide-scroll .nav-arrow.left {
  left: 0;
  border-right: 1px solid #fff;
  box-shadow: 1px -5px 5px #000;
}

.sb-page.nps-responses .nps-comp-filter__hide-scroll .nav-arrow.left:after {
  border-right: 7px solid white;
  left: 3px;
}

.sb-page.nps-responses .nps-comp-filter__hide-scroll .nav-arrow.left img {
  transform: rotate(90deg);
}

.sb-page.nps-responses .nps-comp-filter__hide-scroll .nav-arrow.right {
  right: 0;
  border-left: 1px solid #fff;
  box-shadow: -1px -5px 5px #000;
}

.sb-page.nps-responses .nps-comp-filter__hide-scroll .nav-arrow.right:after {
  border-left: 7px solid white;
}

.sb-page.nps-responses .nps-comp-filter__hide-scroll .nav-arrow.right img {
  transform: rotate(-90deg);
}

.sb-page.nps-responses .nps-comp-filter.zd-platform {
  min-width: 1000px;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .nps-comp-filter.zd-platform {
    min-width: 680px;
  }
}
.sb-page.nps-responses .nps-comp-filter .nps-line-vertical {
  display: inline-block;
  margin-top: 6px;
}

.sb-page.nps-responses .nps-comp-filter .nps-btn-filter {
  line-height: 45px;
}

.sb-page.nps-responses .nps-comp-filter .nps-comp-filter-scores,
.sb-page.nps-responses .nps-comp-filter .nps-comp-filter-comments,
.sb-page.nps-responses .nps-comp-filter .nps-basic-filter {
  position: relative;
  top: -11px;
  display: inline-block;
  width: 160px;
  text-align: center;
  min-width: 160px;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .nps-comp-filter .nps-comp-filter-scores,
  .sb-page.nps-responses .nps-comp-filter .nps-comp-filter-comments,
  .sb-page.nps-responses .nps-comp-filter .nps-basic-filter {
    width: auto;
    min-width: 0;
    padding: 0 17px;
  }
}
.sb-page.nps-responses .nps-comp-filter-campaigns-chips {
  margin-top: -389px;
  padding-top: 5px;
  padding-left: 27px;
  padding-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 659px) {
  .sb-page.nps-responses .nps-comp-filter-campaigns-chips {
    padding-top: 50px;
  }
}
.sb-page.nps-responses .nps-comp-filter-campaigns-chips + .nps-title {
  margin-left: 27px;
}

.sb-page.nps-responses .nps-comp-filter-list {
  top: 22px;
  position: absolute;
  z-index: 3000;
  color: #92939B;
  font-weight: lighter;
}

.sb-page.nps-responses .nps-comp-filter-list__triangle {
  background-color: transparent;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 17px 5px 17px;
  border-color: transparent transparent #ffffff transparent;
  top: 17px;
  position: relative;
  left: 9px;
}

.sb-page.nps-responses .nps-comp-filter-list__overflow {
  width: 183px;
  position: absolute;
  left: -34px;
  top: 22px;
  transition: all 1s;
  box-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 5px 5px;
  overflow: auto;
  max-height: 320px;
  background-color: white;
  padding: 5px;
}

.sb-page.nps-responses .nps-comp-filter-list.disabled {
  display: none;
}

.sb-page.nps-responses .nps-comp-filter-list_align_left .nps-smile-checker {
  justify-content: start !important;
  width: 100%;
}

.sb-page.nps-responses .nps-comp-filter-list_align_left .nps-smile-checker:hover {
  background-color: #f9f9fc;
}

.sb-page.nps-responses .nps-comp-filter-scores {
  width: 183px;
  text-align: center;
  position: relative;
}

.sb-page.nps-responses .nps-comp-filter-scores .nps-comp-filter-list {
  left: 34px;
  top: 22px;
  height: 0;
}

.sb-page.nps-responses .nps-comp-filter-scores .nps-comp-filter-list__triangle {
  margin-left: 30px;
}

.sb-page.nps-responses .nps-comp-filter-scores .filter-toggle {
  display: none;
}

.sb-page.nps-responses .nps-comp-filter-scores .filter-toggle:checked ~ .nps-comp-filter-list {
  display: none;
}

.sb-page.nps-responses .nps-comp-filter-scores .nps-btn-filter {
  transition: all 0.2s;
}

.sb-page.nps-responses .nps-comp-filter-comments {
  position: relative;
}

.sb-page.nps-responses .nps-comp-filter-comments .nps-comp-filter-list {
  width: 176px;
  right: 9px;
}

.sb-page.nps-responses .nps-comp-filter-comments .nps-comp-filter-list__overflow {
  display: flex;
  flex-direction: column;
  top: 22px;
  left: 0;
  position: absolute;
  padding: 5px 0;
}

.sb-page.nps-responses .nps-comp-filter-comments .nps-comp-filter-list__overflow > label {
  cursor: pointer;
}

.sb-page.nps-responses .nps-comp-filter-comments .nps-comp-filter-list__triangle {
  position: relative;
  border-width: 0 17px 5px 17px;
  left: 71px;
  top: 17px;
}

.sb-page.nps-responses .nps-comp-filter-comments .nps-comp-filter-list .checkbox-wrap__checkbox:checked ~ .comments-filter__title {
  color: #333 !important;
  font-weight: normal;
}

.sb-page.nps-responses .nps-comp-filter-comments .nps-btn-filter {
  transition: all 0.2s;
  position: relative;
}

.sb-page.nps-responses .nps-comp-filter-comments .filter-toggle {
  display: none;
}

.sb-page.nps-responses .nps-comp-filter-comments .filter-toggle:checked ~ .nps-comp-filter-list {
  display: none;
}

.sb-page.nps-responses .nps-comp-filter-comments .filter-toggle:checked ~ .nps-btn-filter:after {
  transform: rotate(-180deg) scale(2.2, 1);
  top: 1px;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .page-header {
    flex-direction: column;
    align-items: baseline;
  }
}
.sb-page.nps-responses .page-header:hover .settings-toggle-wrap .icon {
  transform: rotate(90deg);
  opacity: 1;
}

.sb-page.nps-responses .page-header:hover .filter-status, .sb-page.nps-responses .page-header:hover .date-range {
  text-decoration: underline;
}

.sb-page.nps-responses .page-header .status-wrap {
  display: flex;
  width: 100%;
  align-items: center;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .page-header .status-wrap {
    margin-top: 10px;
  }
}
.sb-page.nps-responses .page-header .status-wrap .filter-status {
  margin-left: 20px;
  font-size: 19px;
  color: #c70a2a;
  line-height: normal;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .page-header .status-wrap .filter-status {
    margin: 0 10px;
  }
}
.sb-page.nps-responses .page-header .status-wrap .filter-status.active {
  color: #007b80;
}

.sb-page.nps-responses .page-header .status-wrap .date-range {
  font-size: 19px;
  margin-left: 20px;
  border-right: 1px solid #bcbed4;
  padding-right: 20px;
  line-height: initial;
}

@media (max-width: 1024px) {
  .sb-page.nps-responses .page-header .status-wrap .date-range {
    margin: 0;
    padding-right: 10px;
  }
}
@media (max-width: 1024px) {
  .sb-page.nps-responses .page-header .status-wrap .settings-toggle .label {
    display: none;
  }
}
.sb-page.nps-responses .nps-smile-checker {
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: lighter;
  align-items: center;
  min-width: 150px;
  justify-content: space-between;
  text-align: left;
}

.sb-page.nps-responses .nps-smile-checker.disabled {
  display: none;
}

.sb-page.nps-responses .nps-smile-checker .checkbox-wrap__checker {
  margin-right: 10px;
}

.sb-page.nps-responses .nps-smile-checker label {
  cursor: pointer;
}

.sb-page.nps-responses .nps-smile-checker__title {
  margin-left: 25px !important;
  width: 80px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.sb-modal-download-csv.sb-modal .sb-modal__wrap {
  width: 529px;
  height: 345px;
}

.sb-modal-download-csv.sb-modal .sb-modal__wrap button {
  display: block;
  margin: 0 auto;
  width: 240px;
  margin-bottom: 7px;
}

.sb-modal-download-csv.sb-modal .sb-modal__wrap h3 {
  font-size: 16px;
  font-weight: normal;
  color: #757575;
  width: 330px;
  line-height: 1.86;
  margin: 32px auto 24px auto;
}

.sb-modal-manage.sb-modal {
  pointer-events: all;
}

.sb-modal-manage.sb-modal .sb-modal__wrap {
  width: 529px;
}

.sb-modal-manage.sb-modal .sb-modal__or {
  width: 50px;
  margin: 12px auto;
  display: block;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  color: #92939b;
}

.sb-modal-manage.sb-modal a {
  display: block;
  margin: 0 auto;
  width: 220px;
  transition: all 0.2s;
}

.sb-modal-manage.sb-modal .button-secondary {
  cursor: pointer;
  margin-bottom: 64px;
}

.sb-modal-manage.sb-modal .button-secondary.disabled {
  pointer-events: none;
  filter: grayscale(100%);
}

.sb-modal-manage.sb-modal .button-primary {
  margin-top: 42px;
}

.nps-campaigns {
  padding: 0 15px;
  font-family: sofia-pro, Arial, sans-serif;
}

@media (max-width: 768px) {
  .nps-campaigns {
    padding: 30px 20px;
  }
}
.nps-campaigns .hide-horizontal-scroll {
  margin: 0;
}

.nps-campaigns > header {
  display: flex;
}

@media (max-width: 768px) {
  .nps-campaigns > header {
    flex-direction: column;
  }
}
.nps-campaigns > header .button-primary {
  align-self: flex-start;
  margin-left: auto;
}

@media (max-width: 768px) {
  .nps-campaigns > header .button-primary {
    margin: 0 0 20px 0;
    width: 100%;
  }
}
.nps-campaigns .disabled {
  cursor: initial;
  pointer-events: none;
  opacity: 0.4;
}

.nps-campaigns .error-red {
  color: #c70a2a;
}

.nps-campaigns .metrics-header-wrap {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 768px) {
  .nps-campaigns .metrics-header-wrap .card {
    width: 100%;
  }
}
.nps-campaigns .metrics-header-wrap.campaign {
  padding-bottom: 50px;
  width: 100%;
}

@media (max-width: 768px) {
  .nps-campaigns .metrics-header-wrap.campaign {
    padding-top: 0;
  }
}
.nps-campaigns .metrics-header-wrap.campaign .card {
  padding: 16px 10px;
  justify-content: space-between;
  align-items: center;
  max-width: none;
  flex: unset;
}

@media (max-width: 1024px) {
  .nps-campaigns .metrics-header-wrap.campaign .card {
    padding: 10px;
    min-height: auto;
    width: calc(33.3333333333% - 20px);
  }
}
@media (max-width: 768px) {
  .nps-campaigns .metrics-header-wrap.campaign .card {
    width: 100%;
    padding: 10px 20px;
  }
}
@media (max-width: 768px) {
  .nps-campaigns .metrics-header-wrap.campaign .card.score {
    font-size: 14px;
    flex-direction: row;
    display: flex;
    margin: 0 0 20px 0;
  }
}
@media (max-width: 1024px) {
  .nps-campaigns .metrics-header-wrap.campaign .card.score.response-rate {
    margin-right: 0px;
  }
}
@media (max-width: 576px) {
  .nps-campaigns .metrics-header-wrap.campaign .card.score.response-rate {
    margin-right: 5px;
  }
}
@media (max-width: 1024px) {
  .nps-campaigns .metrics-header-wrap.campaign .card .card__main-score {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .nps-campaigns .metrics-header-wrap.campaign .card .card__title {
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .nps-campaigns .metrics-header-wrap.campaign .card.schedule {
    width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .nps-campaigns .metrics-header-wrap.campaign .card.schedule {
    font-size: 14px;
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.nps-campaigns .metrics-header-wrap.campaign .card.schedule .time-stamp {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (max-width: 1024px) {
  .nps-campaigns .metrics-header-wrap.campaign .card.schedule .time-stamp {
    margin-bottom: 5px;
  }
}
.nps-campaigns .metrics-header-wrap.campaign .card.schedule .time-stamp.complete .time {
  display: none;
}

.nps-campaigns .metrics-header-wrap.campaign .card.schedule .time-stamp .date {
  line-height: 20px;
  font-size: 22px;
}

@media (max-width: 1024px) {
  .nps-campaigns .metrics-header-wrap.campaign .card.schedule .time-stamp .date {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .nps-campaigns .metrics-header-wrap.campaign .card.schedule .time-stamp .date {
    font-size: 22px;
  }
}
.nps-campaigns .metrics-header-wrap.campaign .card.schedule .time-stamp .time {
  font-size: 16px;
  height: 20px;
}

.nps-campaigns .metrics-header-wrap.campaign .card.next-scheduled {
  margin-right: 0;
}

@media (max-width: 576px) {
  .nps-campaigns .metrics-header-wrap.campaign .card.next-scheduled {
    margin-right: 5px;
  }
}
.nps-campaigns .metrics-header-wrap.campaign .card:last-child {
  margin-right: 0;
}

.nps-campaigns .metrics-header-wrap .timezone {
  width: 100%;
  text-align: right;
  margin-top: 20px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  margin-bottom: -30px;
  margin-right: 10px;
  color: #6d6f94;
}

.nps-campaigns .campaign-wrapper .active-campaign .notification {
  width: 100%;
  height: 0;
  background: #f5fcfc;
  padding: 0;
  color: #007b80;
  font-weight: bold;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 20px;
  text-align: center;
  transition: all 0.6s;
  overflow: hidden;
}

.nps-campaigns .campaign-wrapper .active-campaign .notification.active {
  height: 60px;
  padding: 16px 20px;
  margin-bottom: 20px;
  margin: -10px 0 20 0;
  border: 1px solid #007b80;
}

@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .notification.active {
    height: 80px;
    font-size: 18px;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.nps-campaigns .campaign-wrapper .active-campaign header .campaign-info {
  display: flex;
  align-items: center;
  width: 100%;
}

.nps-campaigns .campaign-wrapper .active-campaign header .campaign-info h1 {
  display: inline-block;
  margin: 0;
}

.nps-campaigns .campaign-wrapper .active-campaign header .campaign-info .divider {
  height: 40px;
  width: 2px;
  background: #00054d;
  display: inline-block;
  margin: 0 20px;
}

.nps-campaigns .campaign-wrapper .active-campaign header .campaign-info .survey-status {
  font-size: 19px;
  color: #b07d00;
}

.nps-campaigns .campaign-wrapper .active-campaign header .campaign-info .survey-status.active {
  color: #007b80;
}

@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign header .campaign-info .survey-status {
    display: none;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign header .campaign-selector {
  width: 500px;
  margin-right: 30px;
  height: 50px;
  z-index: 101;
}

@media (max-width: 1024px) {
  .nps-campaigns .campaign-wrapper .active-campaign header .campaign-selector {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign header .campaign-selector {
    width: calc(100% - 40px);
    margin-right: 10px;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign header .campaign-selector img {
  width: 15px;
  right: 20px;
  top: 22px;
}

.nps-campaigns .campaign-wrapper .active-campaign header .campaign-selector .mock-select {
  color: #00000f;
  font-size: 20px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
}

.nps-campaigns .campaign-wrapper .active-campaign header .campaign-selector .mock-select:after {
  position: absolute;
  content: "";
  top: 2px;
  right: 1px;
  width: 110px;
  height: 46px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 60%);
}

.nps-campaigns .campaign-wrapper .active-campaign header .campaign-selector .mock-select.active {
  border: solid 1px #bcbed4;
}

.nps-campaigns .campaign-wrapper .active-campaign header .campaign-selector .mock-options {
  top: 50px;
  border-radius: 0 0 8px 8px;
}

.nps-campaigns .campaign-wrapper .active-campaign header .campaign-selector .mock-options div {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  height: auto;
}

.nps-campaigns .campaign-wrapper .active-campaign .schedule-success-banner {
  padding: 0;
  border: 1px solid #007b80;
  background: #f5fcfc;
  color: #007b80;
  border-radius: 20px;
  text-align: center;
  font-size: 18px;
  height: 0;
  opacity: 0;
  transition: all 0.3s;
}

.nps-campaigns .campaign-wrapper .active-campaign .schedule-success-banner.show {
  height: 60px;
  opacity: 1;
  padding: 15px;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .tooltip-wrap {
  width: 17px;
  height: 17px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .tooltip-wrap {
    position: absolute;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .tooltip-wrap:hover .sb-tooltip {
  display: block;
  right: -20px;
  font-size: 16px;
  white-space: initial;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .tooltip-wrap img {
  margin-top: -3px;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings input[type=text] {
  border: 1px solid #bcbed4;
  padding: 5px 8px;
  width: 440px;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .complete-wrap {
  color: #007b80;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .active-status-label {
  color: #b07d00;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .active-status-label.active {
  color: #007b80;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .divider {
  margin: 0 10px;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .resend-frequency-selector {
  width: 110px;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .repeat-frequency-selector {
  max-width: 170px;
  z-index: 100;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .edit-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: 10px;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .error {
  color: #c70a2a;
  font-size: 17px;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .active-status-wrap {
  width: 100%;
  margin: 10px 0;
  font-size: 18px;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .active-status-wrap .description {
  margin-left: 40px;
  display: flex;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .frequency-wrapper {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #ccc;
  padding-left: 15px;
  margin-left: 15px;
  width: 100%;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .frequency-wrapper .repeat-frequency {
  margin-right: 10px;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .frequency-wrapper .reschedule-wrapper {
  font-size: 16px;
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  flex-basis: 100%;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .frequency-wrapper .reschedule-wrapper a {
  cursor: pointer;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .options-wrapper {
  display: flex;
  flex-direction: column;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .options-wrapper .mini-toggle {
  width: 100%;
  margin: 6px 0;
  font-size: 18px;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .options-wrapper .mini-toggle .description {
  margin-left: 40px;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .campaign-name-wrap {
  display: flex;
  font-size: 27px;
  flex-direction: column;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .campaign-name-wrap .campaign-name-static {
  display: flex;
  align-items: center;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .name-input-wrap,
.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .google-input-wrap {
  display: flex;
  align-items: center;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .name-input-wrap .close-edit,
.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .google-input-wrap .close-edit {
  font-size: 20px;
  margin-left: 10px;
  cursor: pointer;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .google-url-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .google-url-wrap .mini-toggle {
  margin: 0 0 5px 0;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .google-url-wrap .mini-toggle:nth-child(3) {
  margin-bottom: 15px;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .google-url-wrap .google-url {
  max-width: 80%;
  word-break: break-word;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .google-url-wrap .edit-icon {
  margin-top: -8px;
}

.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .buttons-bottom {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .buttons-bottom {
    flex-direction: column;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .buttons-bottom .locked-campaign-controls {
  display: flex;
}

@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .buttons-bottom .locked-campaign-controls {
    flex-direction: column;
    width: 100%;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .buttons-bottom .locked-campaign-controls .review-contacts {
  width: 240px;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .buttons-bottom .locked-campaign-controls .review-contacts {
    margin: 0;
    margin-bottom: 10px;
    width: auto;
  }
}
@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .buttons-bottom .locked-campaign-controls .view-survey {
    margin: 0;
    margin-bottom: 10px;
    width: auto;
  }
}
@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .buttons-bottom .edit-campaign {
    width: auto;
    margin-bottom: 10px;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .buttons-bottom .button-wrapper {
  display: flex;
}

@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .buttons-bottom .button-wrapper {
    flex-direction: column;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .buttons-bottom .button-wrapper .save-changes {
  margin-left: 20px;
  width: 180px;
}

@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .buttons-bottom .button-wrapper .save-changes {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .buttons-bottom .button-wrapper .delete {
  background: #c70a2a;
  margin-left: auto;
  border: none;
}

@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .campaign-settings .buttons-bottom .button-wrapper .delete {
    margin: 0;
    margin-top: 10px;
    width: auto;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign .table-controls-top {
  display: flex;
  justify-content: space-between;
  padding: 40px 0 15px 0;
  font-size: 18px;
  color: #6d6f94;
  flex-direction: row;
  align-items: center;
  font-family: sofia-pro, Arial, sans-serif;
}

@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .table-controls-top {
    flex-direction: column;
    text-align: center;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .contact-limit {
  z-index: 3;
}

.nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right {
  display: flex;
}

.nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right .search-wrap {
  display: flex;
  align-items: center;
}

.nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right .search-wrap .tooltip-wrap {
  width: 20px;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}

.nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right .search-wrap .tooltip-wrap:hover .sb-tooltip {
  display: block;
  width: 310px;
  font-size: 16px;
  top: -30px;
  right: 40px;
  padding: 20px;
}

@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right .search-wrap .tooltip-wrap:hover .sb-tooltip {
    top: 50px;
    right: -270px;
  }
  .nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right .search-wrap .tooltip-wrap:hover .sb-tooltip::before, .nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right .search-wrap .tooltip-wrap:hover .sb-tooltip::after {
    display: none;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right .search-wrap .tooltip-wrap:hover .sb-tooltip::before {
  border-left: 18px solid #bcbed4;
  border-right: 0;
  top: 31px;
  right: -19px;
  border-bottom: 14px solid transparent;
}

.nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right .search-wrap .tooltip-wrap:hover .sb-tooltip::after {
  border-left: 18px solid #fff;
  border-right: 0;
  top: 31px;
  right: -17px;
  border-bottom: 14px solid transparent;
}

.nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right .search-wrap .contact-list-selector {
  width: 240px;
  margin: 0 10px 0 0;
}

@media (max-width: 1024px) {
  .nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right .search-wrap .contact-list-selector {
    width: 257px;
    margin: 10px 0 10px 0;
  }
}
@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right .search-wrap .contact-list-selector {
    width: 252px;
    margin: 0;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right .results-search {
  margin-right: 0;
}

@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right .results-search {
    margin-top: 10px;
  }
}
@media (max-width: 1024px) {
  .nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .controls-right {
    flex-direction: column;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign .table-controls-top .custom-select {
  margin-left: 10px;
  text-align: left;
}

.nps-campaigns .campaign-wrapper .active-campaign .table-controls-bottom {
  padding: 0;
  margin-bottom: 0;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table {
  margin-top: 0;
  text-align: left;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table .controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table .controls .resend-email-wrap {
  width: 145px;
  height: auto;
  margin: 0;
  position: relative;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table .controls .resend-email-wrap:hover .sb-tooltip {
  display: none;
  white-space: normal;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table .controls .resend-email-wrap.show-tooltip:hover .sb-tooltip {
  display: block;
  right: 35px;
  top: 50px;
  font-size: 16px;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table .controls .resend-email-wrap .resend-email {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: auto;
  padding: 10px 20px;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table .controls .resend-email-wrap .resend-email.sent {
  background: none;
  color: #007b80 !important;
  border: 0;
  pointer-events: none;
  cursor: default;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table .controls .remove-contact {
  cursor: pointer;
  width: 190px;
  height: 30px;
  text-align: center;
  position: relative;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table .controls .remove-contact:hover .sb-tooltip {
  right: 66px;
  display: block;
  white-space: initial;
  font-size: 16px;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table .controls .remove-contact .icon {
  color: #cc3333;
  font-size: 21px;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table .controls .remove-contact .icon:hover {
  color: #000;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table .controls .remove-contact-confirm {
  width: 195px;
  text-align: center;
  color: #CC3333;
  font-size: 16px;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table .controls .remove-contact-confirm span {
  cursor: pointer;
  padding: 5px;
  color: #6d6f94;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table .controls .remove-contact-confirm span:hover {
  text-decoration: underline;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table tr {
  transition: opacity 0.3s, filter 0.2s, height 0.2s linear 0.3s;
  opacity: 1;
  display: flex;
  align-items: center;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table tr td {
  display: flex;
  align-items: center;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table tr td.sortable img {
  width: 11px;
  margin-left: 8px;
  margin-top: 4px;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table tr.deleted {
  height: 0;
  opacity: 0;
  filter: blur(3px);
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table tr .full-name,
.nps-campaigns .campaign-wrapper .active-campaign .contacts-table tr .company {
  width: 300px;
  white-space: normal;
  overflow: hidden;
  max-height: 80px;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table tr .survey-sent,
.nps-campaigns .campaign-wrapper .active-campaign .contacts-table tr .responded {
  width: 15%;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table tr .controls {
  width: 30%;
  min-width: 300px;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table.excluded tbody tr:nth-child(odd) {
  background: rgba(199, 10, 42, 0.05);
}

@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .contacts-table.excluded tbody td {
    width: 30%;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign .contacts-table.excluded .controls {
  width: 60%;
}

@media (max-width: 768px) {
  .nps-campaigns .campaign-wrapper .active-campaign .contacts-table.excluded .controls {
    width: 40%;
  }
}
.nps-campaigns .campaign-wrapper .active-campaign .contacts-table.excluded .controls .button-primary {
  margin-right: 8px;
}

.nps-campaigns .campaign-wrapper .active-campaign .contacts-table.unsubscribed tbody tr:nth-child(odd) {
  background: rgba(238, 198, 51, 0.1);
}

.nps-campaigns .campaign-wrapper .no-campaigns,
.nps-campaigns .campaign-wrapper .no-survey-deployed {
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 100px 0;
}

.nps-campaigns .mobile-campaign-create {
  margin: 0 auto 20px auto;
}

.nps-campaigns .overlay .backdrop {
  position: fixed;
  height: 0;
  width: 0;
  top: 0;
  left: 0;
  background: #6d6f94;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.5s, height 0s linear 1s, width 0s linear 1s;
}

.nps-campaigns .overlay .panel {
  right: -100vw;
  position: fixed;
}

.nps-campaigns .overlay.active .panel {
  height: calc(100vh - 68px);
  width: calc(100vw - 80px);
  background: white;
  top: 34px;
  right: 40px;
  z-index: 9999;
  transition: all 0.5s;
  box-shadow: 0 0px 9px 1px #333;
  border-radius: 10px;
  padding: 20px;
  overflow: auto;
}

@media (max-width: 768px) {
  .nps-campaigns .overlay.active .panel {
    height: calc(100vh - 28px);
    width: calc(100vw - 20px);
    top: 14px;
    right: 10px;
  }
}
.nps-campaigns .overlay.active .panel .close {
  cursor: pointer;
}

.nps-campaigns .overlay.active .panel .steps {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nps-campaigns .overlay.active .panel .steps .title {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.23px;
  text-align: center;
  color: #bcbed4;
  cursor: pointer;
  margin: 0 20px;
}

@media (max-width: 768px) {
  .nps-campaigns .overlay.active .panel .steps .title {
    font-size: 16px;
    margin: 0 10px;
  }
}
.nps-campaigns .overlay.active .panel .steps .title.active {
  color: #00054d;
  border-bottom: 2px solid #00054d;
}

.nps-campaigns .overlay.active .panel .content {
  width: 612px;
  max-width: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 12px 2px rgba(50, 50, 50, 0.2);
  background-color: #ffffff;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
  pointer-events: none;
}

.nps-campaigns .overlay.active .panel .content img {
  max-width: 100%;
}

.nps-campaigns .overlay.active .panel .content .message-base {
  margin: 0 auto !important;
  padding-top: 40px;
  background: none;
  box-shadow: none;
}

.nps-campaigns .overlay.active .panel .content iframe {
  width: 100%;
  min-height: 610px;
  border: 0;
  border-radius: 6px;
}

.nps-campaigns .overlay.active .panel .content .message-powered {
  max-width: 100%;
}

.nps-campaigns .overlay.active .backdrop {
  opacity: 1;
  height: 100vh;
  width: 100vw;
  transition: opacity 0.5s;
}

@media (max-width: 768px) {
  .sb-modal {
    margin-top: 10px;
  }
}
.sb-modal .sb-modal__wrap {
  padding: 20px;
}

@media (max-width: 768px) {
  .sb-modal .sb-modal__wrap .sb-modal__header {
    font-size: 20px;
  }
}
.sb-modal .sb-modal__wrap .message {
  font-size: 24px;
  font-weight: normal;
  padding: 30px;
}

@media (max-width: 768px) {
  .sb-modal .sb-modal__wrap .message {
    font-size: 16px;
    padding: 15px;
  }
}
.sb-modal .sb-modal__wrap .confirm-buttons {
  display: flex;
  padding: 30px 0 10px 0;
  justify-content: center;
}

@media (max-width: 768px) {
  .sb-modal .sb-modal__wrap .confirm-buttons {
    flex-direction: column;
    align-items: center;
  }
}
.sb-modal .sb-modal__wrap .confirm-buttons > button {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .sb-modal .sb-modal__wrap .confirm-buttons > button {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.sb-modal.reschedule-modal {
  display: flex;
  height: calc(100vh - 68px);
  width: calc(100vw - 80px);
  top: 34px;
  left: 40px;
  color: #000333;
}

@media (max-width: 768px) {
  .sb-modal.reschedule-modal {
    position: absolute;
    top: 170px;
  }
}
.sb-modal.reschedule-modal .sb-modal__content {
  display: flex;
  font-size: 16px;
  font-weight: normal;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .sb-modal.reschedule-modal .sb-modal__content {
    flex-direction: column;
  }
}
.sb-modal.reschedule-modal .sb-modal__header {
  border: none;
  text-align: left;
  font-size: 26px;
  padding: 10px 0 0 0;
}

.sb-modal.reschedule-modal .sb-modal__header .glyphicons-remove {
  right: 18px;
  top: 13px;
}

.sb-modal.reschedule-modal .sb-modal__wrap {
  padding: 15px 30px 30px 30px;
  width: 100%;
  max-width: 1000px;
}

.sb-modal.reschedule-modal .calendar-wrap {
  display: flex;
  flex-direction: column;
  flex: 2.25;
}

.sb-modal.reschedule-modal .calendar-wrap .banner {
  padding: 10px;
  color: #007b80;
  border: 1px solid #007b80;
  background: #f5fcfc;
  border-radius: 16px;
  width: 100%;
}

.sb-modal.reschedule-modal .calendar-wrap .reschedule-calendar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}

.sb-modal.reschedule-modal .calendar-wrap .update-schedule .toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.sb-modal.reschedule-modal .summary-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
  padding-left: 30px;
  border-left: 1px solid #e1e2f0;
  margin-left: 30px;
  justify-content: space-between;
  min-width: 280px;
}

@media (max-width: 768px) {
  .sb-modal.reschedule-modal .summary-wrap {
    border: none;
    border-top: 1px solid #e1e2f0;
    margin: 20px 0 0 0;
    padding: 20px 0 0 0;
  }
}
.sb-modal.reschedule-modal .summary-wrap .section {
  margin-bottom: 20px;
  position: relative;
}

.sb-modal.reschedule-modal .summary-wrap .section::before {
  content: " ";
  width: 9px;
  height: 9px;
  border-radius: 20px;
  background: #ffffff;
  position: absolute;
  left: -19px;
  top: 12px;
}

.sb-modal.reschedule-modal .summary-wrap .section.updated::before {
  background: #00CBA6;
  transition: all 0.2s;
}

.sb-modal.reschedule-modal .summary-wrap .section .title {
  font-size: 20px;
  font-weight: bold;
}

.sb-modal.reschedule-modal .summary-wrap .section .body {
  font-size: 16px;
}

.sb-modal.reschedule-modal .summary-wrap .section .body.warning {
  color: #b07d00;
  max-width: 245px;
}

.sb-modal.reschedule-modal .summary-wrap .button-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sb-modal.reschedule-modal .summary-wrap .button-wrap .button-primary {
  width: 100%;
  margin-bottom: 10px;
}

.sb-modal.reschedule-modal .summary-wrap .button-wrap .button-tertiary {
  font-weight: normal;
}

.survey-grey {
  background: #f9f9f9;
  width: calc(100% - 20px);
  margin: 0 auto;
}

.messages-feedback {
  font-family: sofia-pro, Arial, sans-serif !important;
  font-weight: 400;
  text-align: center;
  max-width: 541px;
  padding: 0;
  margin: 0 auto 60px auto;
}

.messages-feedback .preview-message__image_disabled {
  display: none;
}

.messages-feedback .preview-message__powered-logo_disabled {
  display: none;
}

.feedback-form {
  flex-direction: column;
  padding: 0 10px;
  width: 100%;
}

.feedback-form__already-collected, .feedback-form__final {
  margin: 30px auto;
  display: block;
  max-width: 440px;
  line-height: 1.63;
  letter-spacing: 0.26px;
  text-align: center;
  color: #6d6f94;
}

.feedback-form textarea {
  border: 1px solid #CBCCD5;
  padding-left: 15px;
  padding-top: 4px;
  font-size: 14px;
  color: #92939b;
  display: block;
  height: 110px;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  background-color: white;
  margin: 0 auto;
  font-family: sofia-pro, Arial, sans-serif;
}

.feedback-form textarea.red + .feedback-form__error {
  color: #ff694e;
}

.feedback-form textarea::placeholder {
  color: rgb(146, 157, 155);
  font-weight: 300 !important;
  font-family: sofia-pro, Arial, sans-serif;
}

.feedback-form input[type=submit] {
  font-weight: 300;
  letter-spacing: 0.6px;
  font-size: 17px;
  margin-top: 25px;
  max-width: 377px;
  width: 100%;
  background-color: #f7991c;
  color: white;
  font-family: sofia-pro, Arial, sans-serif;
  border: none;
  height: 40px;
}

.feedback-form input[type=submit]:disabled {
  background-color: #ccc;
}

.feedback-form__hint {
  margin-top: -5px;
  font-size: 12px;
  font-weight: 400;
  font-family: sofia-pro, Arial, sans-serif;
  text-align: center;
  letter-spacing: 0.2px;
  color: #92939b;
}

.feedback-form__error {
  min-width: 100%;
  text-align: left;
  margin: 0 auto;
  font-size: 12px;
  font-weight: normal;
  line-height: 2.17;
  letter-spacing: 0.2px;
  color: #818493;
}

.feedback-form__message {
  padding-top: 20px;
  font-weight: 300;
  font-size: 16px;
  font-family: sofia-pro, Arial, sans-serif !important;
  color: #6d6f94;
  text-align: center;
  margin: 0 auto 18px auto;
}

.feedback-form__message_font_21 {
  font-size: 21px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.57;
  letter-spacing: 0.6px;
  text-align: center;
  color: #6d6f94;
}

.feedback-form__message select:not([multiply]),
.feedback-form__message option {
  width: 70px;
  height: 30px;
  padding: 0 0 0 4px;
  border: solid 1px #cbccd5;
  border-radius: 3px;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: right 50%;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMCAYAAABSgIzaAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDZFNDEwNjlGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDZFNDEwNkFGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0NkU0MTA2N0Y3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0NkU0MTA2OEY3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuGsgwQAAAA5SURBVHjaYvz//z8DOYCJgUxAf42MQIzTk0D/M+KzkRGPoQSdykiKJrBGpOhgJFYTWNEIiEeAAAMAzNENEOH+do8AAAAASUVORK5CYII=);
}

.checkbox-wrapper {
  width: 100%;
  margin: 20px auto 0 auto;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.16px;
  color: #92939b;
  text-align: left;
}

@media (max-width: 768px) {
  .checkbox-wrapper {
    width: 100%;
  }
}
.checkbox-wrapper [type=checkbox]:not(:checked) + label:before,
.checkbox-wrapper [type=checkbox]:checked + label:before,
.checkbox-wrapper [type=checkbox]:not(:checked) + label:after,
.checkbox-wrapper [type=checkbox]:checked + label:after {
  top: 4px;
  border-color: #92939b;
}

.checkbox-wrapper [type=checkbox]:checked + label:before {
  background-color: #92939b;
}

.checkbox-wrapper [type=checkbox]:checked + label:after {
  border-color: #fff;
}

.google-disclaimer {
  width: 100%;
  opacity: 0.6;
  font-size: 13px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.16px;
  color: #333;
  text-align: left;
  padding: 2px 0px 10px 20px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .google-disclaimer {
    width: 100%;
  }
}
.temporary-message {
  width: calc(100% - 40px);
  float: left;
  border: 1px solid #007b80;
  margin: 20px;
  padding: 5px;
  font-size: 20px;
  color: #007b80;
  transition: opacity 0.3s, color 0.3s, height 0.5s linear 0.2s, margin 0.5s linear 0.2s, padding 0.5s linear 0.2s;
  min-height: 42px;
  background: #f5fcfc;
}

.temporary-message.disabled {
  opacity: 0;
  height: 0;
  min-height: 0;
  padding: 0;
  margin: 0 auto;
  color: white;
}

.temporary-message .checkmark-svg {
  width: 25px;
  height: 25px;
  margin: 0 5px -4px 0;
}

.message-base {
  max-width: 640px;
  background-color: white;
  color: #636363;
  margin: 40px auto 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  border-radius: 6px;
  box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .message-base {
    margin: 10px auto;
  }
}
.message-base .message-logo {
  max-height: 174px;
  max-width: 174px;
}

.message-base .message-powered {
  color: #818493;
  text-align: center;
  max-width: 320px;
  width: 100%;
  border-top: 1px solid #b1b3bb;
  margin-top: 30px;
  padding-top: 20px;
  padding-bottom: 30px;
  font-size: 12px;
}

.message-base .message-powered img {
  margin-left: 8px;
  width: 100px;
  height: auto;
}

.message-base .messages-feedback .message-powered {
  display: none;
}

.message-base .messages-feedback {
  margin: 0 auto !important;
}

.message-base .messages-content {
  padding: 0 20px 0 20px;
  font-size: 21px;
  font-weight: normal;
  font-style: normal;
  color: #6d6f94;
  font-family: sofia-pro, Arial, sans-serif;
  width: 100%;
  max-width: 576px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.57;
  letter-spacing: 0.6px;
}

@media (max-width: 576px) {
  .message-base .messages-content {
    padding: 0 10px 60px 10px;
  }
}
.message-base .messages-content select {
  border-radius: 0;
  outline: none;
  border: 1px solid #CBCCD5;
  background-color: white;
  width: 50px;
  height: 27px;
  padding: 0;
  text-align: center;
}

.message-base .messages-content select option {
  height: 27px;
  border-radius: 0;
}

@media (max-width: 576px) {
  .message-base .message-content-error {
    padding: 0 20px 20px 20px !important;
  }
}
.extend-ingerit-text, .new-datepicker .dr-dates-dash, .new-datepicker .dr-input .dr-dates .dr-date {
  font-weight: normal;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

@media (max-width: 500px) {
  .daterange.new-datepicker .dr-input {
    padding-right: 154px !important;
  }
}
.daterange.new-datepicker .dr-calendar {
  height: 352px !important;
  width: 364px !important;
}

@media (max-width: 500px) {
  .daterange.new-datepicker .dr-calendar {
    height: 375px !important;
  }
}
.daterange.new-datepicker .dr-day {
  border-radius: 0 !important;
  margin: 2px 0 1px 0 !important;
  width: 48px !important;
  height: 38px !important;
}

@media (max-width: 500px) {
  .daterange.new-datepicker .dr-day {
    width: 43px !important;
    height: 43px !important;
  }
}
.daterange.new-datepicker .dr-day.dr-hover-after {
  padding-left: 2px !important;
}

.daterange.new-datepicker .dr-day.dr-hover-before {
  padding-right: 2px !important;
}

.daterange.new-datepicker .dr-day:nth-child(7n+1) {
  width: 62px !important;
  padding-left: 18px !important;
}

@media (max-width: 500px) {
  .daterange.new-datepicker .dr-day:nth-child(7n+1) {
    width: 42px !important;
    padding-left: 0 !important;
  }
}
.daterange.new-datepicker .dr-day:nth-child(7n+1).dr-hover-before {
  text-align: right;
  padding-right: 17px !important;
}

.daterange.new-datepicker .dr-day:nth-child(7n) {
  width: 62px !important;
  padding-right: 18px !important;
}

@media (max-width: 500px) {
  .daterange.new-datepicker .dr-day:nth-child(7n) {
    width: 42px !important;
    padding-right: 0 !important;
  }
}
.daterange.new-datepicker .dr-day:nth-child(7n).dr-hover-after {
  text-align: left;
  padding-left: 16px !important;
}

.new-datepicker {
  z-index: 300 !important;
  border-radius: 0;
  padding: 0 0 0 10px !important;
}

.new-datepicker.daterange .dr-selections .dr-calendar .dr-day-list .dr-day.dr-hover-after {
  border-right: 2px solid #00054d !important;
}

.new-datepicker.daterange .dr-selections .dr-calendar .dr-day-list .dr-maybe {
  background-color: #f0f1fa !important;
}

.new-datepicker.daterange .dr-selections .dr-calendar .dr-day-list .dr-day.dr-hover:not(.dr-current) {
  background-color: #e1e2f0 !important;
}

.new-datepicker.daterange .dr-selections .dr-calendar .dr-day-list .dr-current {
  background-color: #e1e2f0 !important;
  color: #00054d !important;
}

.new-datepicker.daterange .dr-selections .dr-calendar .dr-day-list .dr-day.dr-hover-before {
  border-left: 2px solid #00054d !important;
}

@media (max-width: 500px) {
  .new-datepicker {
    position: static !important;
    width: 100%;
    padding-left: 0px !important;
  }
  .new-datepicker .dr-input {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding-left: 0 !important;
  }
}
@media (max-width: 500px) {
  .new-datepicker .dr-day:nth-child(7n) {
    margin-right: 0px;
  }
}
.new-datepicker .dr-day {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 38px !important;
  padding: 0px !important;
  letter-spacing: 0.23px;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  margin: 3px 5px;
  width: 38px !important;
  height: 38px !important;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  .new-datepicker .dr-day {
    padding: 0 !important;
    width: 14.2857142857% !important;
    height: 38px !important;
    margin: 0;
  }
}
.new-datepicker .dr-day:hover {
  background-color: rgb(253, 235, 210) !important;
  color: #00054d !important;
}

.new-datepicker .dr-day.dr-selected {
  background-color: #f9f9fc !important;
}

.new-datepicker .dr-day.dr-start {
  border-left: 2px solid #00054d !important;
  background-color: #e1e2f0 !important;
  color: #00054d !important;
}

.new-datepicker .dr-day.dr-end {
  border-right: 2px solid #00054d !important;
  background-color: #e1e2f0 !important;
  color: #00054d !important;
}

.new-datepicker .dr-day.dr-current {
  background-color: #e1e2f0 !important;
}

.new-datepicker .dr-day.dr-hover {
  background-color: #e1e2f0 !important;
  color: #00054d !important;
}

.new-datepicker .dr-selections {
  width: 360px;
  left: -70px;
}

@media (max-width: 576px) {
  .new-datepicker .dr-selections {
    left: inherit !important;
    position: static;
    width: 100vw;
  }
  .new-datepicker .dr-selections .dr-preset-list,
  .new-datepicker .dr-selections .dr-calendar {
    left: 0px !important;
    right: 0px;
    max-width: 300px;
    width: 100% !important;
    top: 40px !important;
    position: absolute;
    margin: 0 0 0 auto !important;
  }
}
.new-datepicker .dr-days-of-week-list {
  background-color: white !important;
  border-color: #bcbed4;
  padding: 5px 0 5px 0 !important;
  justify-content: center;
  align-items: center;
}

.new-datepicker .dr-days-of-week-list .dr-day-of-week {
  width: 46px !important;
  margin: 1px;
  font-weight: bold;
  font-size: 16px;
  height: 26px;
  line-height: 26px;
  font-family: sofia-pro, Arial, sans-serif;
  color: #3B3B3B;
}

@media (max-width: 576px) {
  .new-datepicker .dr-days-of-week-list .dr-day-of-week {
    width: 14.2857142857% !important;
  }
}
.new-datepicker .dr-range-switcher {
  font-family: sofia-pro, Arial, sans-serif;
  justify-content: space-around !important;
  padding: 13px 15px !important;
}

.new-datepicker .dr-day-list {
  justify-content: center;
  padding: 4px 0;
}

@media (max-width: 500px) {
  .new-datepicker .dr-day-list {
    padding: 0 !important;
  }
}
.new-datepicker .dr-calendar {
  top: 5px !important;
  z-index: 300 !important;
  padding-top: 0 !important;
  width: 365px !important;
  height: 369px !important;
  left: -3px !important;
  border: none;
  border-radius: 0 !important;
  box-shadow: 0 2px 3px 2px rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 500px) {
  .new-datepicker .dr-calendar {
    height: 345px !important;
  }
}
.new-datepicker .dr-preset-list {
  top: 5px !important;
  padding-top: 20px !important;
  width: 270px;
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 3px 2px rgba(0, 0, 0, 0.15) !important;
  left: 73px !important;
}

.new-datepicker .dr-preset-list .dr-list-item {
  padding: 0 8px 0 8px;
  height: 28px;
  width: 100%;
  line-height: 28px;
  border: none;
  font-size: 14px !important;
  color: #92939b;
  font-weight: 300;
  text-align: left;
  display: block;
  position: relative;
  font-family: sofia-pro, Arial, sans-serif;
}

.new-datepicker .dr-preset-list .dr-list-item:hover {
  background-color: #f9f9fc;
  font-size: 14px;
  font-weight: 600 !important;
  color: rgba(0, 0, 0, 0.6);
}

.new-datepicker .dr-preset-list .dr-list-item .dr-item-aside {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 12px;
  transition: all 0.2s;
  color: #8b8c94;
  font-weight: 400;
  padding-top: 2px;
  position: absolute;
  right: 8px;
}

.new-datepicker .dr-switcher {
  color: #777;
  background-color: #f9f9fc;
  width: 150px !important;
  border: none !important;
  height: 30px !important;
  border-radius: 0 !important;
}

.new-datepicker .dr-switcher i:before, .new-datepicker .dr-switcher i:after {
  background-color: #00054d !important;
}

.new-datepicker .dr-input {
  display: flex;
  overflow: inherit;
  z-index: 305;
  padding-left: 10px;
  width: 100%;
  height: 24px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  color: #00054d;
}

.new-datepicker .dr-input .dr-dates .dr-date:hover {
  color: #000a9f !important;
  text-decoration: underline;
}

.new-datepicker .dr-input .dr-presets {
  margin-left: 4px;
  padding-bottom: 2px;
}

.new-datepicker .dr-input .dr-presets:hover {
  color: #000a9f !important;
}

.new-datepicker .dr-input .dr-presets.dr-active {
  box-shadow: none;
  color: #3B3B3B;
}

.new-datepicker .dr-input:hover {
  cursor: pointer;
  border: none;
}

.new-datepicker .dr-input:hover .dr-date {
  background-color: white;
  border-radius: 0;
  border: none;
}

.new-datepicker .dr-input:hover .dr-date:after {
  border-bottom: none;
}

.new-datepicker .dr-input .dr-dates {
  padding: 0;
}

.new-datepicker .dr-input .dr-dates .dr-date.dr-active {
  color: #3B3B3B;
}

.new-datepicker .dr-input .dr-dates .dr-date:hover {
  color: #3B3B3B;
}

.new-datepicker .dr-input.dr-active {
  border: none;
  box-shadow: none;
}

.new-datepicker .dr-dates-dash {
  padding: 0 3px 2px 3px !important;
  font-size: 10px;
  font-weight: lighter;
  color: #e1e2f0 !important;
}

.sidebar-pagination-wrap {
  margin-top: 20px;
  margin-bottom: 16px;
}

div[data-step="3,1"] .loader-bar-wrap {
  margin-bottom: -1px;
}

div[data-step="3,1"] .mock-options {
  background-color: white;
}

.sb-sidebar {
  display: flex;
  flex-direction: row;
  font-family: sofia-pro, Arial, sans-serif;
}

.sb-sidebar h2 {
  text-align: left !important;
  margin-top: 0 !important;
  margin-bottom: 18px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
}

.sb-sidebar .input-message {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  color: #c70a2a;
  display: none;
  text-align: left;
  float: left;
  clear: both;
}

@media (max-width: 768px) {
  .sb-sidebar .input-message {
    text-align: left;
  }
}
@media (max-width: 430px) {
  .sb-sidebar .input-message {
    text-align: left;
  }
}
.sb-sidebar .input-message.active {
  display: block;
}

.sb-sidebar .sb-input-group {
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  width: 100%;
}

.sb-sidebar .sb-input-group input {
  width: 100%;
}

.sb-sidebar .divide {
  max-width: 400px;
  clear: both;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-family: sofia-pro, Arial, sans-serif;
  margin-top: -10px;
}

.sb-sidebar .divide.left {
  border-right: 1px solid #e1e2f0;
  padding-right: 20px;
}

.sb-sidebar .divide.right {
  clear: none;
  margin-left: 20px;
}

.sb-sidebar__step {
  transition: all 0.3s;
  display: none;
  z-index: 3;
}

.sb-sidebar__step.active {
  z-index: 4;
  top: 33px;
  left: 39px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 390px) {
  .sb-sidebar__step .button-primary, .sb-sidebar__step .button-secondary {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .sb-sidebar__step {
    left: -100% !important;
    top: 33px;
    z-index: 3;
  }
  .sb-sidebar__step.active {
    z-index: 4;
    top: 20px;
    left: 10px !important;
  }
}
.sb-sidebar__step-1-2 .input-message {
  text-align: left !important;
}

.sb-sidebar__step-1-2 .input-message ul {
  padding: 0;
  list-style: none;
}

.sb-sidebar__step-1-2 .input-message ul.multiple-errors {
  list-style: disc;
  padding-left: 17px;
  margin-top: 10px;
}

.sb-sidebar__step-1-2 .button-primary {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .sb-sidebar__step-1-2 .button-primary {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .sb-sidebar__step-1-1 .sb-sidebar__sub-title {
    margin-bottom: 17px;
  }
}
.sb-sidebar__step-3-1 .button-primary, .sb-sidebar__step-3-2 .button-primary {
  margin-top: 10px;
}

.sb-sidebar__step-3-2 .button-secondary {
  margin-top: 15px;
}

.sb-sidebar .nps-line {
  margin: 20px 0;
}

.sb-sidebar__input {
  width: 400px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .sb-sidebar__input {
    width: 100%;
  }
}
.sb-sidebar__Label {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.86;
  letter-spacing: 0.23px;
  color: #1d1d1b;
  margin-bottom: 10px;
}

.sb-sidebar__top {
  position: relative;
  height: 59px;
  border-bottom: solid 1px rgb(203, 204, 213);
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

@media (min-width: 992px) {
  .sb-sidebar__top a {
    right: calc(100vw - 157px) !important;
  }
}
@media (max-width: 768px) {
  .sb-sidebar__top {
    height: 0px;
  }
  .sb-sidebar__top a {
    position: absolute;
    right: 11px !important;
    top: 14px;
    color: rgba(255, 255, 255, 0.87) !important;
  }
}
.sb-sidebar__top a {
  transition: all 0.3s;
  position: absolute;
  right: calc(100vw - 96px);
  transition: all 0.3s;
  bottom: 15px;
}

.sb-sidebar__top a:hover {
  color: #00054d !important;
}

.sb-sidebar__icon {
  width: 42px;
  height: 42px;
  border: solid 1px #00054d;
  border-radius: 50%;
  position: relative;
}

.sb-sidebar__icon:before {
  position: absolute;
  left: 10px;
  top: 5px;
  font-size: 20px;
  color: #00054d;
}

.sb-sidebar__btn-manage {
  display: block;
  width: 205px;
  text-align: center;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 27px;
}

.sb-sidebar__hint {
  font-family: sofia-pro, Arial, sans-serif;
  font-weight: normal;
  letter-spacing: 0.2px;
  color: #6d6f94;
  margin-top: 30px;
}

.sb-sidebar__label {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.86;
  letter-spacing: 0.23px;
  color: #1d1d1b;
}

.sb-sidebar__sub-title {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  margin-top: 8px;
  padding-bottom: 5px;
  line-height: 32px;
}

.sb-sidebar__sub-title p {
  text-align: left !important;
}

@media (max-width: 768px) {
  .sb-sidebar__sub-title {
    font-size: 14px;
    font-weight: normal;
  }
}
.sb-sidebar__title {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: normal;
  color: #000333;
}

@media (max-width: 768px) {
  .sb-sidebar__title {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.04;
    letter-spacing: 0.27px;
  }
}
.sb-sidebar__bottom {
  display: flex;
  flex-direction: row;
  min-height: 100%;
  width: calc(100% + 50px);
}

@media (max-width: 768px) {
  .sb-sidebar__bottom {
    flex-direction: column;
  }
}
.sb-sidebar__content {
  height: 100%;
  padding: 22px 40px;
  overflow: auto;
  width: calc(100% - 120px);
}

@media (max-width: 768px) {
  .sb-sidebar__content {
    padding: 30px 10px;
    width: calc(100% - 10px);
  }
}
.sb-sidebar__step-con-4-1 .sb-sidebar__sub-title {
  max-width: 421px;
}

.sb-sidebar__stepper {
  width: 74px;
  min-width: 74px;
  min-height: calc(100vh - 180px);
  background-color: #00054d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.3s;
  border-radius: 24px 0 0 24px;
}

.sb-sidebar__stepper a {
  margin-top: 31px;
  margin-left: -7px;
}

@media (max-width: 768px) {
  .sb-sidebar__stepper {
    width: 100%;
    height: 53px;
    min-height: auto;
    flex-direction: row;
    border-radius: 0;
  }
  .sb-sidebar__stepper a.sidebar-back-link {
    margin-right: 0px;
    margin-top: 0;
    margin-left: 10px;
    position: absolute;
    right: 10px;
  }
  .sb-sidebar__stepper a.sidebar-back-link:after {
    color: #ffffff;
    left: 0;
  }
}
.sb-sidebar__number {
  margin-top: 33px;
  color: rgba(255, 255, 255, 0.4);
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 28px;
  font-weight: bold;
  transition: all 0.3s;
}

.sb-sidebar__number:nth-child(2) {
  margin-top: 23px;
}

@media (max-width: 768px) {
  .sb-sidebar__number {
    margin: 2px 20px 0 20px;
    font-size: 24px;
  }
  .sb-sidebar__number:nth-child(2) {
    margin-left: 10px;
    margin-top: 2px;
  }
}
.sb-sidebar__number:hover {
  color: rgba(255, 255, 255, 0.4);
}

.sb-sidebar__number.active {
  color: rgba(255, 255, 255, 0.87);
}

@keyframes moveIndeterminate {
  0% {
    background-position: 200% 0;
    top: 0;
  }
  100% {
    background-position: -200% 0;
  }
}
body {
  width: 100vw;
  overflow-x: hidden;
}

/* The container must be positioned relative: */
@-webkit-keyframes rotating

/* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

.oh-no-message {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.86;
  letter-spacing: 0.23px;
  text-align: center;
  color: #6d6f94;
  padding: 0 10px;
}

.oh-no-message .glyphicons-remove {
  display: none;
}

.oh-no-message img {
  width: 55px;
  margin: 20px auto 15px auto;
  display: block;
}

.form-line {
  margin: 20px 0;
  height: 1px;
  width: 100%;
  background-color: rgb(203, 204, 213);
}

.form-line.disabled {
  display: none;
}

.sb-sidebar {
  position: absolute;
  left: 200vw;
  width: 100%;
  background-color: white;
  transition: all 0.5s;
  margin-top: -8px;
  border-radius: 24px;
  z-index: 1;
  margin-bottom: 20px;
  top: 9px !important;
}

.sb-sidebar.active {
  z-index: 100;
  position: absolute;
  transition: all 0.3s;
  left: 0;
  min-height: 100%;
}

.sb-sidebar .upload-wrap {
  margin-top: 10px;
  float: left;
  clear: both;
  width: 100%;
}

.sb-sidebar .upload-wrap form {
  border-bottom: 1px solid #e1e2f0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 30px 0;
  width: 100%;
}

@media (max-width: 768px) {
  .sb-sidebar .upload-wrap form {
    flex-direction: column;
  }
}
.sb-sidebar .upload-wrap form .upload-file-input {
  display: none;
}

.sb-sidebar .upload-wrap .upload-file-button {
  float: left;
  clear: both;
}

.sb-sidebar .upload-wrap .file-messages {
  text-align: left;
  float: left;
  margin-left: 10px;
  color: #6d6f94;
  margin-top: 10px;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .sb-sidebar .upload-wrap .file-messages {
    margin-left: 0;
  }
}
.sb-sidebar .upload-wrap .file-messages .file-status {
  display: flex;
  align-items: center;
}

.sb-sidebar .upload-wrap .file-messages .spinner {
  width: 40px;
  height: 40px;
  margin-top: -10px;
  margin-bottom: -10px;
  display: none;
}

.sb-sidebar .upload-wrap .file-messages .spinner.show {
  display: inline;
}

.sb-sidebar .upload-wrap .file-messages p {
  margin-bottom: 10px;
}

.sb-sidebar .upload-wrap .file-messages p .icon {
  width: 20px;
  background-size: cover;
  height: 20px;
  margin: 0px 7px 2px 0;
}

.sb-sidebar .upload-wrap .file-messages p .icon.cross-svg {
  width: 17px;
  background-size: contain;
  height: 12px;
  margin: -10px 10px -1px 0;
}

.sb-sidebar .upload-wrap .file-messages p.error {
  color: #CC3333;
  font-weight: bold;
}

.sb-sidebar .upload-wrap #fileSubmit {
  width: 140px;
}

.sb-sidebar .upload-wrap .upload-selection {
  float: left;
  margin: 8px 15px;
}

.sb-sidebar .upload-wrap .upload-selection p {
  margin: 0;
}

.sb-sidebar .upload-file-input {
  opacity: 0;
  float: left;
  clear: both;
  height: 1px;
}

.nps-responses-body {
  width: 100% !important;
}

.nps-flow {
  font-family: sofia-pro, Arial, sans-serif;
}

@media (max-width: 768px) {
  .nps-flow .sb-modal__content {
    width: 100% !important;
  }
  .nps-flow .sb-modal__content .nps-app-preview {
    width: 300px !important;
  }
  .nps-flow .nps-content {
    width: 100% !important;
  }
  .nps-flow .nps-uploader {
    width: 296px;
  }
  .nps-flow .col-md-8,
  .nps-flow .row {
    width: 100% !important;
    padding: 0 0 0 0 !important;
    margin: 0 auto !important;
  }
  .nps-flow .canvas {
    margin: 0 auto;
    width: 100vw !important;
    border-radius: 0 !important;
  }
  .nps-flow .nps-s1-setup-campaign {
    width: 100% !important;
  }
  .nps-flow button:not(.remove-button, .modal-button) {
    max-width: none;
    width: 100%;
    margin: 0 auto;
  }
}
.nps-flow hr {
  margin-top: 20px;
  margin-bottom: 20px;
}

.nps-flow .input-label-wrap {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.26px;
  color: rgb(146, 147, 155);
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 20px;
}

.nps-flow .input-label-wrap.page-error-wrap input,
.nps-flow .input-label-wrap input.danger {
  border: 1px solid #c70a2a !important;
}

@media (max-width: 768px) {
  .nps-flow .input-label-wrap {
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    text-align: center;
  }
  .nps-flow .input-label-wrap input,
  .nps-flow .input-label-wrap select {
    width: 50%;
    margin: 10px auto !important;
  }
}
.nps-flow .input-label-wrap .input-wrapper {
  width: 100%;
  max-width: 400px;
  position: relative;
}

@media (max-width: 768px) {
  .nps-flow .input-label-wrap .input-wrapper {
    max-width: unset;
  }
}
.nps-flow .input-label-wrap .input-wrapper input, .nps-flow .input-label-wrap .input-wrapper textarea {
  width: 100%;
}

.nps-flow .canvas {
  position: relative;
}

.nps-flow .nps-header {
  font-size: 30px;
  text-align: center;
}

.nps-flow .hint {
  text-align: center;
  color: #6d6f94;
  margin: 40px 0;
  font-family: sofia-pro, Arial, sans-serif;
}

.nps-flow .nps-footer-hint {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.86;
  letter-spacing: 0.23px;
  color: #6d6f94;
  margin-top: 20px;
}

.nps-flow .nps-footer-hint__content {
  background-color: #f9f9fc;
  color: #6d6f94;
  border: 1px solid #6d6f94;
  border-radius: 16px;
  padding: 20px;
}

.nps-flow .nps-footer-hint .glyphicons {
  border: 2px solid #00054d;
  border-radius: 50%;
  width: 60px;
  text-align: center;
  height: 60px;
  font-size: 38px;
  line-height: 56px !important;
  margin-bottom: 17px;
}

.nps-flow .leave .sb-modal__header {
  display: none;
}

.nps-flow .leave .sb-modal__content {
  padding: 0 !important;
}

.nps-flow .leave .sb-modal__wrap {
  width: 540px;
}

.nps-flow .leave .sb-modal__content {
  padding: 12px 0 11px 0;
}

.nps-flow .leave .nps-line {
  margin-top: 27px !important;
}

.nps-flow .leave button,
.nps-flow .leave a {
  width: 180px !important;
}

.nps-flow .leave b {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.23px;
  text-align: center;
  color: rgba(29, 29, 27, 0.87);
}

@media (max-width: 768px) {
  .nps-flow .email-preview__btns {
    height: 120px;
  }
}
.nps-flow .confirm-buttons {
  display: flex;
  padding: 20px 10px;
}

@media (max-width: 768px) {
  .nps-flow .confirm-buttons {
    flex-direction: column;
  }
}
.nps-flow .confirm-buttons button,
.nps-flow .confirm-buttons a {
  margin: 0 10px;
  width: 100% !important;
}

@media (max-width: 768px) {
  .nps-flow .confirm-buttons button,
  .nps-flow .confirm-buttons a {
    margin: 10px 0;
  }
}
.nps-flow .sb-modal {
  -webkit-overflow-scrolling: auto;
}

@media (max-width: 768px) {
  .nps-flow .sb-modal {
    top: 0;
  }
}
.nps-flow .sb-modal.email-preview, .nps-flow .sb-modal.survey-preview {
  position: absolute;
  top: 10px;
  margin-top: 0;
}

.nps-flow .sb-modal__wrap {
  max-width: 645px;
  align-self: flex-start;
  margin-top: 10px !important;
  margin-bottom: 10px;
}

.nps-flow .sb-modal__content {
  overflow: hidden;
}

.nps-flow .sb-modal__header {
  color: rgba(29, 29, 27, 0.87);
}

@media (max-width: 768px) {
  .nps-flow .sb-modal.sb-modal-upload {
    height: 100vh;
  }
}
.nps-flow .sb-modal.sb-modal-upload .sb-modal__wrap {
  color: red;
}

@media (max-width: 768px) {
  .nps-flow .sb-modal.sb-modal-upload .sb-modal__wrap {
    height: 100vh;
  }
  .nps-flow .sb-modal.sb-modal-upload .sb-modal__wrap .sb-modal__content {
    height: auto !important;
  }
  .nps-flow .sb-modal.sb-modal-upload .sb-modal__wrap .sb-modal-upload__select {
    height: auto;
    justify-content: center !important;
  }
}
@media (max-width: 768px) {
  .nps-flow .sb-modal:not(.sb-modal-upload) .sb-mail-link {
    display: none;
  }
}
.nps-flow .mobi {
  display: none;
}

.nps-flow .form-group .col-md-8 {
  flex: none;
  max-width: inherit !important;
  width: 431px;
}

.nps-flow .form-group.row {
  display: flex;
  flex-direction: row;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 768px) {
  .nps-flow .form-group.row .col-md-8 {
    width: 100% !important;
  }
}
.nps-flow.nps-configure-feedback__label {
  position: relative;
}

.nps-flow.nps-configure-feedback .permissions-toggles {
  width: 400px;
  margin-left: 200px;
  border-bottom: 1px solid #e1e2f0;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-feedback .permissions-toggles {
    margin-left: 0px;
    width: 100%;
  }
}
.nps-flow.nps-configure-feedback .permissions-toggles .toggle-wrapper {
  display: flex;
  width: 100%;
  padding: 0px 0 15px 0;
  color: #92939b;
  font-family: sofia-pro, Arial, sans-serif;
}

.nps-flow.nps-configure-feedback .permissions-toggles .toggle-wrapper .description {
  width: 100%;
}

.nps-flow.nps-configure-feedback .permissions-toggles .toggle-wrapper .description .label {
  font-size: 16px;
  color: #92939b;
  position: relative;
  width: fit-content;
}

.nps-flow.nps-configure-feedback .permissions-toggles .toggle-wrapper .description .label .tooltip-wrap {
  top: -2px;
  right: -24px;
  position: absolute;
}

.nps-flow.nps-configure-feedback .permissions-toggles .toggle-wrapper .description .label .tooltip-wrap .sb-tooltip {
  right: -20px;
}

.nps-flow.nps-configure-feedback .permissions-toggles .toggle-wrapper .description .google-input {
  display: flex;
  flex-direction: column;
}

.nps-flow.nps-configure-feedback .permissions-toggles .toggle-wrapper .description .google-input input {
  width: 100%;
  margin: 10px 0 5px 0;
  padding: 6px 10px;
  border: 1px solid #bcbed4;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-feedback .permissions-toggles .toggle-wrapper .description .google-input input {
    width: 100%;
  }
}
.nps-flow.nps-configure-feedback .permissions-toggles .toggle-wrapper .description .google-input input:disabled {
  background: #f9f9fc;
  color: #bcbed4;
}

.nps-flow.nps-configure-feedback .permissions-toggles .toggle-wrapper .description .google-input .help-link {
  width: 100%;
  height: 26px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 15px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.17;
  letter-spacing: 0.2px;
  color: #000a9f;
  margin-top: 5px;
  float: right;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-feedback .permissions-toggles .toggle-wrapper .description .google-input .help-link {
    float: left;
  }
}
.nps-flow.nps-configure-feedback .permissions-toggles .toggle-wrapper .google-review-options {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.nps-flow.nps-configure-feedback .permissions-toggles .toggle-wrapper .google-review-options .mini-toggle {
  margin-bottom: 5px;
}

.nps-flow.nps-configure-feedback img.reset-feedback {
  position: absolute;
  right: 5px;
  top: 8px;
  cursor: pointer;
}

.nps-flow.nps-configure-feedback img.reset-feedback.roll {
  transition: all 0.3s;
  transform: rotate(360deg);
}

.nps-flow.nps-configure-feedback img.reset-feedback:hover {
  filter: grayscale(1) brightness(0);
}

.nps-flow.nps-configure-feedback .thank-you {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-feedback textarea {
    width: 100% !important;
    font-size: 14px !important;
  }
  .nps-flow.nps-configure-feedback #configure-feedback-form {
    width: 100% !important;
  }
}
.nps-flow.nps-configure-feedback .message-powered {
  width: 90%;
}

.nps-flow.nps-configure-feedback .feedback-form__error {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 2.17;
  letter-spacing: 0.2px;
  color: #6d6f94;
  width: 443px;
  text-align: left;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-feedback .feedback-form__error {
    width: 100%;
  }
}
.nps-flow.nps-confirm-contacts .table-results-wrap {
  position: relative;
}

.nps-flow.nps-confirm-contacts .table-results-wrap.loading tbody {
  visibility: hidden;
}

.nps-flow.nps-confirm-contacts .checkbox-wrap__checker {
  position: relative;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .sb-sidebar__bottom {
    width: 100%;
  }
}
.nps-flow.nps-confirm-contacts .sb-sidebar__step .wait-tr {
  position: relative;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.23px;
  color: #1f214d;
  padding: 30px 0;
  text-align: center;
}

.nps-flow.nps-confirm-contacts .sb-sidebar__step .wait-tr.disabled {
  display: none;
}

.nps-flow.nps-confirm-contacts .sb-sidebar__step .loader-bar-wrap {
  display: none;
  top: 95px;
  position: relative;
}

.nps-flow.nps-confirm-contacts .sb-sidebar__step .loader-bar-wrap-bar {
  transition: all 0.6s;
  width: 0%;
  position: relative;
  top: -1px;
  height: 5px;
  border-radius: 2px;
  background-color: #000fe3;
}

.nps-flow.nps-confirm-contacts .sb-sidebar__step .loader-bar-wrap.active {
  display: block;
}

.nps-flow.nps-confirm-contacts .sb-sidebar__step .button-primary {
  float: left;
  clear: both;
}

.nps-flow.nps-confirm-contacts .sb-sidebar__step .sb-sidebar__hint {
  float: left;
  clear: both;
}

.nps-flow.nps-confirm-contacts .new-progress {
  margin-bottom: -10px;
  margin-top: 5px;
  height: 5px;
  position: relative;
}

.nps-flow.nps-confirm-contacts .results-search {
  margin-right: 0;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .results-search {
    margin-left: 0;
    margin-top: 20px;
  }
}
.nps-flow.nps-confirm-contacts .table-controls-top .mock-options {
  background-color: white;
}

.nps-flow.nps-confirm-contacts .table-controls-top .custom-select {
  margin: 0 8px;
}

.nps-flow.nps-confirm-contacts .table-controls-top > div {
  display: flex;
  align-items: baseline;
}

.nps-flow.nps-confirm-contacts .table-controls-top select {
  width: 64px;
}

.nps-flow.nps-confirm-contacts .glyphicons-search {
  cursor: inherit !important;
  pointer-events: none;
}

.nps-flow.nps-confirm-contacts .upload-contacts-btn {
  margin: 20px auto;
}

.nps-flow.nps-confirm-contacts .import-contacts-btn {
  margin: 20px auto 40px auto;
  position: relative;
}

.nps-flow.nps-confirm-contacts .import-contacts-btn span {
  position: absolute;
  background: #00CBA6;
  color: #ffffff;
  border-radius: 15px;
  top: 9px;
  right: -138px;
  padding: 0px 10px 2px 10px;
  font-weight: normal;
  font-size: 15px;
}

.nps-flow.nps-configure-email .modal-close-text, .nps-flow.nps-configure-feedback .modal-close-text, .nps-flow.nps-confirm-contacts .modal-close-text {
  position: absolute;
  right: 11px;
  top: 11px;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  color: #00054d;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email .canvas, .nps-flow.nps-configure-feedback .canvas, .nps-flow.nps-confirm-contacts .canvas {
    border-radius: 0 !important;
  }
  .nps-flow.nps-configure-email .nps-app-preview, .nps-flow.nps-configure-feedback .nps-app-preview, .nps-flow.nps-confirm-contacts .nps-app-preview {
    width: 400px !important;
    margin: 14px auto !important;
  }
  .nps-flow.nps-configure-email .canvas, .nps-flow.nps-configure-feedback .canvas, .nps-flow.nps-confirm-contacts .canvas {
    margin: 0 !important;
  }
  .nps-flow.nps-configure-email .nps-content:not(.nps-contacts), .nps-flow.nps-configure-feedback .nps-content:not(.nps-contacts), .nps-flow.nps-confirm-contacts .nps-content:not(.nps-contacts) {
    width: calc(100vw - 20px) !important;
  }
  .nps-flow.nps-configure-email .desc:not(td), .nps-flow.nps-configure-feedback .desc:not(td), .nps-flow.nps-confirm-contacts .desc:not(td) {
    display: none;
  }
  .nps-flow.nps-configure-email .mobi, .nps-flow.nps-configure-feedback .mobi, .nps-flow.nps-confirm-contacts .mobi {
    display: block;
  }
  .nps-flow.nps-configure-email .sb-modal__header, .nps-flow.nps-configure-feedback .sb-modal__header, .nps-flow.nps-confirm-contacts .sb-modal__header {
    font-size: 24px;
    font-weight: bold;
  }
  .nps-flow.nps-configure-email .sb-modal-upload:not(.nps-welcome) .email-preview__btns > *,
  .nps-flow.nps-configure-email .email-preview:not(.nps-welcome) .email-preview__btns > *,
  .nps-flow.nps-configure-email .survey-preview:not(.nps-welcome) .email-preview__btns > *, .nps-flow.nps-configure-feedback .sb-modal-upload:not(.nps-welcome) .email-preview__btns > *,
  .nps-flow.nps-configure-feedback .email-preview:not(.nps-welcome) .email-preview__btns > *,
  .nps-flow.nps-configure-feedback .survey-preview:not(.nps-welcome) .email-preview__btns > *, .nps-flow.nps-confirm-contacts .sb-modal-upload:not(.nps-welcome) .email-preview__btns > *,
  .nps-flow.nps-confirm-contacts .email-preview:not(.nps-welcome) .email-preview__btns > *,
  .nps-flow.nps-confirm-contacts .survey-preview:not(.nps-welcome) .email-preview__btns > * {
    width: 144px !important;
  }
  .nps-flow.nps-configure-email .sb-modal-upload:not(.nps-welcome) .sb-modal__wrap,
  .nps-flow.nps-configure-email .email-preview:not(.nps-welcome) .sb-modal__wrap,
  .nps-flow.nps-configure-email .survey-preview:not(.nps-welcome) .sb-modal__wrap, .nps-flow.nps-configure-feedback .sb-modal-upload:not(.nps-welcome) .sb-modal__wrap,
  .nps-flow.nps-configure-feedback .email-preview:not(.nps-welcome) .sb-modal__wrap,
  .nps-flow.nps-configure-feedback .survey-preview:not(.nps-welcome) .sb-modal__wrap, .nps-flow.nps-confirm-contacts .sb-modal-upload:not(.nps-welcome) .sb-modal__wrap,
  .nps-flow.nps-confirm-contacts .email-preview:not(.nps-welcome) .sb-modal__wrap,
  .nps-flow.nps-confirm-contacts .survey-preview:not(.nps-welcome) .sb-modal__wrap {
    border-radius: 0;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .nps-flow.nps-configure-email .sb-modal-upload:not(.nps-welcome) .sb-modal__wrap .sb-modal__content,
  .nps-flow.nps-configure-email .email-preview:not(.nps-welcome) .sb-modal__wrap .sb-modal__content,
  .nps-flow.nps-configure-email .survey-preview:not(.nps-welcome) .sb-modal__wrap .sb-modal__content, .nps-flow.nps-configure-feedback .sb-modal-upload:not(.nps-welcome) .sb-modal__wrap .sb-modal__content,
  .nps-flow.nps-configure-feedback .email-preview:not(.nps-welcome) .sb-modal__wrap .sb-modal__content,
  .nps-flow.nps-configure-feedback .survey-preview:not(.nps-welcome) .sb-modal__wrap .sb-modal__content, .nps-flow.nps-confirm-contacts .sb-modal-upload:not(.nps-welcome) .sb-modal__wrap .sb-modal__content,
  .nps-flow.nps-confirm-contacts .email-preview:not(.nps-welcome) .sb-modal__wrap .sb-modal__content,
  .nps-flow.nps-confirm-contacts .survey-preview:not(.nps-welcome) .sb-modal__wrap .sb-modal__content {
    padding: 0 !important;
    max-height: inherit !important;
  }
  .nps-flow.nps-configure-email .uploadcare--file-sources__items button, .nps-flow.nps-configure-feedback .uploadcare--file-sources__items button, .nps-flow.nps-confirm-contacts .uploadcare--file-sources__items button {
    margin: 0 10px 20px 10px;
  }
  .nps-flow.nps-configure-email button:not(.remove-button):not(.fix-width), .nps-flow.nps-configure-feedback button:not(.remove-button):not(.fix-width), .nps-flow.nps-confirm-contacts button:not(.remove-button):not(.fix-width) {
    width: 100%;
    max-width: none;
  }
  .nps-flow.nps-configure-email button:not(.remove-button):not(.fix-width).preview-btn_js, .nps-flow.nps-configure-feedback button:not(.remove-button):not(.fix-width).preview-btn_js, .nps-flow.nps-confirm-contacts button:not(.remove-button):not(.fix-width).preview-btn_js {
    width: 100% !important;
  }
  .nps-flow.nps-configure-email .nps-content, .nps-flow.nps-configure-feedback .nps-content, .nps-flow.nps-confirm-contacts .nps-content {
    width: calc(100% - 40px);
    margin: 0 auto !important;
  }
  .nps-flow.nps-configure-email .nps-uploader, .nps-flow.nps-configure-feedback .nps-uploader, .nps-flow.nps-confirm-contacts .nps-uploader {
    width: 100%;
    padding: 0 15px;
  }
  .nps-flow.nps-configure-email .form-group input, .nps-flow.nps-configure-feedback .form-group input, .nps-flow.nps-confirm-contacts .form-group input {
    width: 100% !important;
  }
}
input:not(.nps-flow input[type=button]) {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
}

.nps-flow .nps-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

@media (max-width: 768px) {
  .nps-flow .nps-success__img {
    width: 48px !important;
    height: 48px !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
  }
  .nps-flow .nps-success__msg .nps-h2 {
    font-size: 24px !important;
    padding: 0 30px !important;
  }
  .nps-flow .nps-success__msg p {
    padding: 0 30px !important;
    margin-bottom: 4px !important;
  }
  .nps-flow .nps-success__btns {
    flex-direction: column;
  }
  .nps-flow .nps-success__btns > * {
    margin-top: 20px !important;
    width: 300px !important;
  }
}
.nps-flow .nps-success__img {
  width: 75px;
  height: 75px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.nps-flow .nps-success__msg {
  text-align: center;
}

.nps-flow .nps-success__msg h2 {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.nps-flow .nps-success__msg p {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #6d6f94;
  margin-bottom: 33px;
}

.nps-flow .nps-success__btns {
  display: flex;
  margin-bottom: 20px;
}

.nps-flow .nps-success__btns a {
  margin: 0 15px;
  width: 260px;
}

.nps-flow .nps-success__btns.create {
  flex-direction: column;
  align-items: center;
  color: #6d6f94;
}

.nps-flow .nps-success__btns.create p {
  margin-bottom: 20px;
}

.nps-flow .survey_comment .error-message.disabled {
  display: none;
}

.nps-flow .survey_comment textarea.danger {
  border-color: #c70a2a;
}

.nps-flow .feedback-tabs {
  text-align: center;
}

.nps-flow .feedback-tabs .item {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.23px;
  text-align: center;
  color: #bcbed4;
  padding-bottom: 8px;
  padding-left: 1px;
  padding-right: 1px;
  margin-left: 10px;
  margin-right: 10px;
  vertical-align: text-top;
  cursor: pointer;
}

.nps-flow .feedback-tabs .item.active {
  border-bottom: solid 2px #00054d;
  color: #00054d;
  cursor: default;
}

.nps-flow .char-count {
  font-size: 12px;
  float: right;
  clear: none;
  color: #92939b;
  font-family: sofia-pro, Arial, sans-serif;
}

.nps-flow .char-count.error {
  color: #c70a2a;
}

.nps-flow .input-message {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  color: #c70a2a;
  display: none;
  text-align: left;
}

@media (max-width: 768px) {
  .nps-flow .input-message {
    text-align: left;
  }
}
@media (max-width: 430px) {
  .nps-flow .input-message {
    text-align: left;
  }
}
.nps-flow .input-message.active {
  display: block;
  float: left;
  clear: both;
}

.nps-flow input.danger {
  border: 1px solid #c70a2a !important;
}

.nps-flow textarea.danger {
  border-color: #c70a2a !important;
}

.nps-flow .email-preview .glyphicons-remove, .nps-flow .survey-preview .glyphicons-remove {
  display: none;
}

@media (max-width: 768px) {
  .nps-flow .email-preview__btns {
    align-items: center;
  }
  .nps-flow .email-preview__btns > * {
    width: 140px;
  }
}
.nps-flow .email-preview__btns {
  display: flex;
  justify-content: center;
}

.nps-flow .email-preview__btns button,
.nps-flow .email-preview__btns a {
  display: block;
  width: 180px;
  margin: 20px 15px 20px 15px;
}

.nps-flow .email-preview .sb-modal__wrap, .nps-flow .survey-preview .sb-modal__wrap {
  width: 686px;
}

.nps-flow .email-preview .sb-modal__content, .nps-flow .survey-preview .sb-modal__content {
  padding-bottom: 0;
}

.nps-flow .email-preview .sb-modal__content .nps-line, .nps-flow .survey-preview .sb-modal__content .nps-line {
  margin-top: 34px;
  width: calc(100% + 100px);
  margin-left: -50px;
}

@media (max-width: 768px) {
  .nps-flow .email-preview .sb-modal__content .nps-line, .nps-flow .survey-preview .sb-modal__content .nps-line {
    display: none;
  }
}
.nps-flow .email-preview .sb-modal__content .nps-app-preview, .nps-flow .survey-preview .sb-modal__content .nps-app-preview {
  max-height: 700px;
  overflow: hidden;
  width: 532px;
  margin: 0 auto;
}

.nps-flow .email-preview .sb-modal__content .nps-app-preview__window, .nps-flow .survey-preview .sb-modal__content .nps-app-preview__window {
  pointer-events: none;
}

.nps-flow .email-preview .sb-modal__content .nps-app-preview iframe, .nps-flow .survey-preview .sb-modal__content .nps-app-preview iframe {
  display: block;
  /* iframes are inline by default */
  background: white;
  border: none;
  /* Reset default border */
  height: 100vh;
  /* Viewport-relative units */
  width: 100%;
}

.nps-flow .email-preview iframe, .nps-flow .survey-preview iframe {
  width: 532px;
  height: 457px;
  border: none;
}

.nps-flow.nps-confirm-contacts .description-and-filters {
  background-color: #f9f9fc;
  color: #3a3c66;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 17px 0px #bcbed4;
  width: 100%;
  margin: 0 auto 20px auto;
  text-align: left;
  font-family: sofia-pro, Arial, sans-serif;
}

.nps-flow.nps-confirm-contacts .description-and-filters p {
  margin: 20px 0 10px 0;
}

.nps-flow.nps-confirm-contacts .description-and-filters .applied-filters-wrap {
  margin-top: 20px;
}

.nps-flow.nps-confirm-contacts .description-and-filters .applied-filters-wrap .applied-filters-title {
  font-weight: bold;
  border-bottom: 1px solid #e1e2f0;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.nps-flow.nps-confirm-contacts .description-and-filters .applied-filters-wrap .filter-section {
  display: flex;
  margin-bottom: 10px;
}

.nps-flow.nps-confirm-contacts .description-and-filters .applied-filters-wrap .filter-section:last-child {
  margin-bottom: 0;
}

.nps-flow.nps-confirm-contacts .description-and-filters .applied-filters-wrap .filter-section .filter-section-title {
  min-width: 150px;
}

.nps-flow.nps-confirm-contacts .description-and-filters .applied-filters-wrap .filter-section .applied-filters {
  display: flex;
  flex-wrap: wrap;
}

.nps-flow.nps-confirm-contacts .description-and-filters .applied-filters-wrap .filter-section .applied-filters .chip {
  background-color: #6d6f94;
  color: #ffffff;
  border-radius: 3px;
  padding: 3px 6px 5px 6px;
  margin: 0px 5px 5px 0;
  font-size: 14px;
}

.nps-flow.nps-confirm-contacts .contacts-selected.bottom {
  margin: 30px 0 10px 0;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .contacts-selected.bottom {
    margin: 30px 0 30px 0;
  }
}
.nps-flow.nps-confirm-contacts .contacts-selected .count {
  display: inline;
  background-color: #f5fcfc;
  color: #007b80;
  border: 1px solid #007b80;
  padding: 6px 12px;
  border-radius: 6px;
}

.nps-flow.nps-confirm-contacts .step-horiz-buttons {
  display: flex;
  align-items: flex-end;
  clear: both;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .step-horiz-buttons {
    flex-direction: column;
  }
}
.nps-flow.nps-confirm-contacts .step-horiz-buttons button {
  margin-right: 20px;
  width: 200px;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .step-horiz-buttons button {
    margin: 20px 0 0 0;
    width: 100%;
  }
}
.nps-flow.nps-confirm-contacts .table-controls-top {
  font-size: 16px;
  font-weight: normal;
  padding-left: 0;
  padding-right: 0;
  margin: 20px auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .table-controls-top {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .sb-sidebar__step {
    width: 100%;
  }
}
.nps-flow.nps-confirm-contacts .sb-sidebar__step .toggle-filters {
  cursor: pointer;
  padding-bottom: 5px;
  border-bottom: 1px solid #bcbed4;
  text-align: left;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: 0.26px;
  color: #00054d;
}

.nps-flow.nps-confirm-contacts .sb-sidebar__step .toggle-filters.active {
  border-bottom: none;
}

.nps-flow.nps-confirm-contacts .sb-sidebar__step .toggle-filters.active .show-filters {
  display: none;
}

.nps-flow.nps-confirm-contacts .sb-sidebar__step .toggle-filters.active .hide-filters {
  display: inline-block;
}

.nps-flow.nps-confirm-contacts .sb-sidebar__step .toggle-filters .hide-filters {
  display: none;
}

.nps-flow.nps-confirm-contacts .contacts-table {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.23px;
  text-align: left;
  width: calc(100% - 4px);
  margin: 2px;
  color: #6d6f94;
}

.nps-flow.nps-confirm-contacts .contacts-table td {
  white-space: initial;
  padding: 6px 25px 8px 0 !important;
}

.nps-flow.nps-confirm-contacts .contacts-table td:nth-child(2) {
  min-width: 200px !important;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .contacts-table td:not(:first-child) {
    padding: 3px 4px;
  }
}
.nps-flow.nps-confirm-contacts .contacts-table thead {
  text-align: left;
  font-size: 16px;
}

.nps-flow.nps-confirm-contacts .contacts-table thead td:first-child {
  vertical-align: top;
}

.nps-flow.nps-confirm-contacts .contacts-table thead .checkbox-wrap__checker {
  margin-top: 11px;
}

.nps-flow.nps-confirm-contacts .contacts-table thead td {
  vertical-align: top;
}

.nps-flow.nps-confirm-contacts .contacts-table thead td.sortable {
  cursor: pointer;
  text-overflow: inherit !important;
  color: #6d6f94;
}

.nps-flow.nps-confirm-contacts .contacts-table thead td.sortable.active {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 22px;
  letter-spacing: 0.26px;
  color: rgb(29, 29, 27);
}

.nps-flow.nps-confirm-contacts .contacts-table thead td.sortable.active img {
  pointer-events: none;
  display: inline-block;
  filter: grayscale(0);
}

.nps-flow.nps-confirm-contacts .contacts-table thead img {
  margin-left: 15px;
  display: inline-block;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.nps-flow.nps-confirm-contacts .contacts-table thead td.desc img {
  transform: rotate(180deg);
}

.nps-flow.nps-confirm-contacts .contacts-table td:first-child {
  padding-left: 14px;
}

.nps-flow.nps-confirm-contacts .contacts-table .checkbox-wrap {
  display: block;
  padding-top: 2px;
}

.nps-flow.nps-confirm-contacts .contacts-table .checkbox-wrap__checker {
  width: 16px !important;
  height: 16px !important;
}

.nps-flow.nps-confirm-contacts .contacts-table .checkbox-wrap__checker:after {
  left: 4px;
  top: 1px;
  width: 6px;
  height: 11px;
}

.nps-flow.nps-confirm-contacts .contacts-table tbody {
  outline: 1px solid rgb(203, 204, 213);
}

.nps-flow.nps-confirm-contacts .contacts-table tbody.none {
  display: none;
}

.nps-flow.nps-confirm-contacts .contacts-table tbody .checkbox-wrap {
  pointer-events: none;
}

.nps-flow.nps-confirm-contacts .contacts-table tbody .tr-border-left {
  border-left: 1px solid #bcbed4;
}

.nps-flow.nps-confirm-contacts .contacts-table tbody tr {
  cursor: pointer;
}

.nps-flow.nps-confirm-contacts .contacts-table tbody tr .table-green {
  background-color: rgb(224, 239, 224);
}

.nps-flow.nps-confirm-contacts .contacts-table tbody tr:nth-child(odd) .table-green {
  background-color: rgb(214, 231, 214);
}

.nps-flow.nps-confirm-contacts .contacts-table tbody tr:not(:last-child) {
  border-bottom: 1px solid rgb(203, 204, 213);
}

.nps-flow.nps-confirm-contacts .contacts-table tbody tr:hover {
  outline: solid 2px rgb(129, 132, 147) !important;
}

.nps-flow.nps-confirm-contacts .contacts-table thead tr td {
  padding-bottom: 27px !important;
}

.nps-flow.nps-confirm-contacts .contacts-table__row:nth-child(odd) {
  background-color: #f9f9fc;
}

.nps-flow.nps-confirm-contacts .contacts-table__row.disabled {
  opacity: 0.5;
  pointer-events: all;
}

.nps-flow.nps-confirm-contacts .hide-horizontal-scroll {
  overflow-y: hidden;
  margin-bottom: 10px;
}

.nps-flow.nps-confirm-contacts .hide-horizontal-scroll .result {
  padding-bottom: 20px;
  margin-bottom: -20px;
}

.nps-flow.nps-confirm-contacts .inline-block {
  border-bottom: 1px solid #e1e2f0;
}

.nps-flow.nps-confirm-contacts .inline-block > div {
  margin-left: 10px;
  display: inline-block;
}

.nps-flow.nps-confirm-contacts .contact-filters__item {
  margin-bottom: 20px;
  position: relative;
}

.nps-flow.nps-confirm-contacts .contact-filters__item .sb-input[disabled=disabled] {
  background-color: #f9f9fc;
  color: rgba(146, 147, 155, 0.6);
  pointer-events: none;
}

.nps-flow.nps-confirm-contacts .contact-filters {
  float: left;
  clear: both;
  width: 100%;
  flex-direction: column;
}

.nps-flow.nps-confirm-contacts .contact-filters .marketing-groups-info {
  width: 15px;
  position: absolute;
  right: -30px;
  top: 8px;
  cursor: pointer;
}

.nps-flow.nps-confirm-contacts .contact-filters .marketing-groups-info:hover .sb-tooltip {
  display: block;
  right: -20px;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .contact-filters .marketing-groups-info {
    top: 17px;
    right: 0px;
  }
  .nps-flow.nps-confirm-contacts .contact-filters .marketing-groups-info:hover .sb-tooltip {
    right: 0;
  }
  .nps-flow.nps-confirm-contacts .contact-filters .marketing-groups-info:hover .sb-tooltip:before {
    right: 9px;
  }
  .nps-flow.nps-confirm-contacts .contact-filters .marketing-groups-info:hover .sb-tooltip:after {
    right: 10px;
  }
}
@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .contact-filters {
    width: calc(100vw - 20px);
  }
}
.nps-flow.nps-confirm-contacts .contact-filters .autocomplete:not(.has-chips) input:focus, .nps-flow.nps-confirm-contacts .contact-filters .autocomplete:not(.has-chips) input:focus-visible {
  border-color: #000a9f !important;
  outline: 0px solid #000a9f !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border-top: 1px solid;
}

.nps-flow.nps-confirm-contacts .contact-filters .autocomplete.has-chips input:focus, .nps-flow.nps-confirm-contacts .contact-filters .autocomplete.has-chips input:focus-visible {
  outline: 0;
  border: 1px solid #bcbed4 !important;
  border-top: 0 !important;
}

.nps-flow.nps-confirm-contacts .contact-filters .autocomplete input {
  border: 1px solid #bcbed4;
  margin-top: -9px;
  padding-left: 9px;
  border-top: 0;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .contact-filters .autocomplete input {
    width: calc(100vw - 20px);
  }
}
.nps-flow.nps-confirm-contacts .contact-filters__item {
  display: flex;
  justify-content: flex-start;
  max-width: 600px;
}

.nps-flow.nps-confirm-contacts .contact-filters__item .contact-filters__show {
  display: none;
}

.nps-flow.nps-confirm-contacts .contact-filters__item.expandfull .last {
  position: relative;
}

.nps-flow.nps-confirm-contacts .contact-filters__item.expandfull .last:before {
  pointer-events: none;
  position: absolute;
  right: -15px;
  top: 0;
  content: "...";
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.17;
  letter-spacing: 0.2px;
  text-align: right;
  color: #6d6f94;
}

.nps-flow.nps-confirm-contacts .contact-filters__item.expandfull .contact-filters__show {
  display: block;
}

.nps-flow.nps-confirm-contacts .contact-filters__item.expandfull .contact-filters__chips.collapsed {
  height: 64px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .contact-filters__item {
    flex-direction: column;
  }
  .nps-flow.nps-confirm-contacts .contact-filters__item .contact-filters__selected-all,
  .nps-flow.nps-confirm-contacts .contact-filters__item .autocomplete {
    margin-top: 5px;
    margin-left: 0px;
  }
}
.nps-flow.nps-confirm-contacts .contact-filters__item.disabled .contact-filters__left {
  opacity: 0.5;
}

.nps-flow.nps-confirm-contacts .contact-filters__item.disabled .sb-input {
  border-color: rgb(225, 226, 230) !important;
}

.nps-flow.nps-confirm-contacts .contact-filters__right {
  width: 445px;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .contact-filters__right {
    width: 100%;
  }
}
.nps-flow.nps-confirm-contacts .contact-filters__right .sb-input {
  width: 100%;
}

.nps-flow.nps-confirm-contacts .contact-filters__right .contact-filters__selected-all {
  cursor: pointer;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.26px;
  line-height: 38px;
  color: #92939b;
  border: solid 1px #bcbed4;
  background-color: #f9f9fc;
  max-width: calc(100vw - 20px);
}

.nps-flow.nps-confirm-contacts .contact-filters__right .contact-filters__selected-all.disabled {
  display: none;
}

.nps-flow.nps-confirm-contacts .contact-filters__right .contact-filters__show {
  position: absolute;
  right: -10px;
  bottom: 50px;
}

.nps-flow.nps-confirm-contacts .contact-filters__right .contact-filters__show .more.disabled,
.nps-flow.nps-confirm-contacts .contact-filters__right .contact-filters__show .less.disabled,
.nps-flow.nps-confirm-contacts .contact-filters__right .contact-filters__show .dots.disabled {
  display: none;
}

.nps-flow.nps-confirm-contacts .contact-filters__right .contact-filters__show .dots {
  font-size: 12px;
  font-weight: normal;
  margin-right: 10px;
  letter-spacing: 0.2px;
  color: #6d6f94;
}

.nps-flow.nps-confirm-contacts .contact-filters__right .contact-filters__show > span {
  width: 70px;
  position: absolute;
  left: 0;
  display: block;
  text-decoration: none;
  margin-top: -5px;
  height: 20px;
  padding: 4px;
  line-height: 12px;
}

.nps-flow.nps-confirm-contacts .contact-filters__right .contact-filters__show > span:hover {
  background-color: transparent;
  color: #00054d;
  text-decoration: underline;
}

.nps-flow.nps-confirm-contacts .contact-filters__right .contact-filters__chips {
  border: solid 1px #bcbed4;
  border-bottom: none;
  display: flex;
  flex-wrap: wrap;
  padding: 4px;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .contact-filters__right .contact-filters__chips {
    width: calc(100vw - 20px);
  }
}
.nps-flow.nps-confirm-contacts .contact-filters__right .contact-filters__chips .nps-btn-link {
  text-decoration: none;
  align-self: flex-end;
}

.nps-flow.nps-confirm-contacts .contact-filters__right .contact-filters__chips > span:not(.contact-filters__show) {
  margin: 4px;
}

.nps-flow.nps-confirm-contacts .contact-filters__left {
  margin-top: -1px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  letter-spacing: 0.23px;
  color: #1d1d1b;
  width: 155px;
}

.nps-flow.nps-confirm-contacts .contact-filters__left label {
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0.2px;
  color: #6d6f94;
  display: flex;
  align-items: center;
}

.nps-flow.nps-confirm-contacts .contact-filters__left label .checkbox-wrap__checker {
  position: relative;
  margin-right: 8px;
}

.nps-flow.nps-confirm-contacts .email-preview__btns > * {
  width: 140px;
}

.nps-flow.nps-confirm-contacts .confirmation__btns {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .confirmation__btns {
    align-items: center;
    flex-direction: column;
    margin: 10px 20px 0 20px;
  }
}
.nps-flow.nps-confirm-contacts .confirmation__btns button,
.nps-flow.nps-confirm-contacts .confirmation__btns a {
  width: 100%;
  margin: 10px;
}

.nps-flow.nps-confirm-contacts .nps-comp-contacts {
  width: 285px;
  position: relative;
}

.nps-flow.nps-confirm-contacts .nps-comp-contacts .remove-button.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.nps-flow.nps-confirm-contacts .nps-comp-contacts:not(:first-child) {
  margin-top: 15px;
}

.nps-flow.nps-confirm-contacts .nps-contacts__header {
  color: rgba(29, 29, 27, 0.87);
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  width: 457px;
  margin: 0 auto;
  margin-bottom: 36px;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .nps-contacts__header {
    width: 100%;
  }
}
.nps-flow.nps-confirm-contacts .send-survey-wrap.disabled {
  display: none;
}

.nps-flow.nps-confirm-contacts .send-survey-wrap .back-to-start {
  display: block;
  text-align: center;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap {
  text-align: center;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap.disabled {
  display: none;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .return-to-manager {
  margin: 40px auto;
  display: block;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap {
  display: flex;
  flex-direction: column;
  background-color: #f9f9fc;
  color: #3a3c66;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 17px 0px #bcbed4;
  width: 100%;
  margin: 40px auto;
  text-align: left;
  font-family: sofia-pro, Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap {
    width: 100%;
  }
}
.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap .contact-source {
  overflow-wrap: break-word;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap .contacts-warning {
  text-align: center;
  color: #b07d00;
  background-color: #fffdf7;
  border: 1px solid #b07d00;
  padding: 10px;
  margin-bottom: 30px;
  border-radius: 7px;
  font-size: 18px;
  font-family: sofia-pro, Arial, sans-serif;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap .contacts-warning.disabled {
  display: none;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap .label {
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: 0.26px;
  text-align: center;
  color: rgb(29, 29, 27);
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap.disabled {
  display: none;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap .filters-wrap {
  clear: both;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap .filters-wrap .filters-used {
  display: block;
  width: 100%;
  padding: 15px 0px 10px 0px;
  margin-top: 15px;
  font-size: 16px;
  border-top: 1px solid #e1e2f0;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap .filters-wrap .filters-used .category-wrap {
  display: flex;
  margin-bottom: 15px;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap .filters-wrap .filters-used .category-wrap:last-child {
  margin-bottom: 0;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap .filters-wrap .filters-used .category-wrap .category {
  text-transform: capitalize;
  width: 170px;
  display: inline-block;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap .filters-wrap .filters-used .category-wrap .filters {
  display: inline-block;
  width: calc(100% - 125px);
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap .filters-wrap .filters-used .category-wrap .filters div {
  background-color: #6d6f94;
  color: #ffffff;
  border-radius: 3px;
  padding: 3px 6px 5px 6px;
  margin: 0px 5px 5px 0;
  font-size: 14px;
  width: fit-content;
  display: inline-block;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap .controls {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  flex-direction: column;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap .controls form {
  margin: 20px 0 0 0;
  width: 100%;
}

.nps-flow.nps-confirm-contacts .review-contacts-wrap .contact-updates-wrap .controls form .btn-send {
  display: block;
  margin: 0 auto;
  padding: 16px 50px 17px 50px;
  width: auto;
  font-size: 20px;
}

.nps-flow.nps-confirm-contacts h2 {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 18px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .nps-flow.nps-confirm-contacts .sb-modal__wrap .nps-footer-hint {
    width: 100%;
  }
}
.nps-flow.nps-confirm-contacts .sb-modal__wrap a {
  cursor: pointer;
}

.nps-flow.nps-confirm-contacts .sb-modal .nps-line {
  margin-top: 34px;
  width: calc(100% + 100px);
  margin-left: -50px;
}

.nps-flow.nps-confirm-contacts .sb-modal .nps-footer-hint span {
  color: #00054d;
  position: relative;
  transition: all 0.3s;
}

.nps-flow.nps-confirm-contacts .sb-modal .nps-footer-hint span :hover {
  color: #00054d;
  pointer-events: none;
}

.nps-flow.nps-confirm-contacts .sb-modal__wrap {
  width: 530px;
}

.nps-flow.nps-confirm-contacts .sb-modal__content {
  padding-bottom: 0;
  padding-top: 0;
}

.nps-flow.nps-confirm-contacts .sb-modal__header {
  display: none;
}

.nps-flow.nps-configure-feedback .sb-modal__content .nps-footer-hint {
  margin-bottom: 0;
}

.nps-flow.nps-configure-feedback form#configure-feedback-form {
  width: 600px;
  margin: 0 auto;
}

.nps-flow.nps-configure-feedback form#configure-feedback-form .nps-configure-feedback__tooltip.first {
  margin-bottom: 20px;
}

.nps-flow.nps-configure-feedback form#configure-feedback-form .button-primary {
  display: block;
  margin: 32px auto 58px auto;
  width: 220px;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-feedback form#configure-feedback-form .button-primary {
    width: 100%;
  }
}
.nps-flow.nps-configure-feedback textarea {
  display: block;
  height: 100px;
  width: 587px;
  border: solid 1px #bcbed4;
  background-color: #ffffff;
  color: #92939b;
  padding: 7px 30px 7px 11px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
}

.nps-flow.nps-configure-feedback .nps-configure-feedback__tooltip {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #6d6f94;
  display: block;
  margin-top: 2px;
}

.nps-flow.nps-configure-feedback .nps-configure-feedback__label {
  position: relative;
  display: block;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.nps-flow.nps-configure-feedback .nps-configure-feedback__label p {
  color: #1d1d1b;
  margin-bottom: 10px;
}

.nps-flow .new-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  animation-name: moveIndeterminate;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 150% 150%;
  animation-timing-function: linear;
  background-color: #dbdbdb;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
  background-image: linear-gradient(to right, #00054d 30%, #dbdbdb 30%);
}

.nps-flow .new-progress.disabled {
  display: none;
}

.nps-flow.nps-configure-email .nps-plus-link {
  margin-top: 5px;
  margin-left: -3px;
  float: left;
  clear: both;
}

.nps-flow.nps-configure-email .brand-color {
  position: relative;
}

.nps-flow.nps-configure-email .brand-color .reset-input {
  z-index: 1;
}

.nps-flow.nps-configure-email .brand-color .minicolors {
  width: 100%;
}

.nps-flow.nps-configure-email .brand-color .minicolors .minicolors-input {
  height: 40px;
  width: 100% !important;
  padding-left: 40px;
  border: 1px solid #bcbed4;
}

.nps-flow.nps-configure-email .brand-color .minicolors .minicolors-swatch {
  position: absolute;
  vertical-align: middle;
  background-position: -80px 0;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  top: 5px;
  left: 5px;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email .brand-color .minicolors .minicolors-swatch {
    top: 15px;
  }
}
.nps-flow.nps-configure-email .brand-color .minicolors .minicolors-panel {
  position: absolute;
  width: 173px;
  background: white;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  box-sizing: content-box;
  display: none;
  touch-action: none;
}

.nps-flow.nps-configure-email #div_id_domain {
  position: relative;
  z-index: 1;
}

.nps-flow.nps-configure-email .nps-domain-pop-over {
  position: absolute;
  right: -2px;
  z-index: 2;
  bottom: -27px;
  width: 205px;
  line-height: 34px;
  text-align: center;
  box-shadow: 0 2px 3px 2px rgba(0, 0, 0, 0.15);
  background-color: #f9f9fc;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  border-radius: 8px;
  letter-spacing: 0.2px;
  color: #92939b;
  opacity: 1;
  pointer-events: none;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email .nps-domain-pop-over {
    right: -20px !important;
  }
}
@media (max-width: 768px) {
  .nps-flow.nps-configure-email .nps-domain-pop-over {
    line-height: 58px;
    bottom: 162px;
    right: -12px;
    width: 100vw;
    font-size: 14px;
    height: 58px;
    border-radius: 8px 8px 0 0;
  }
  .nps-flow.nps-configure-email .nps-domain-pop-over.disabled {
    bottom: 230px;
    transition: all 0.3s;
  }
  .nps-flow.nps-configure-email .nps-domain-pop-over:after {
    display: none;
  }
}
.nps-flow.nps-configure-email .nps-domain-pop-over.disabled {
  opacity: 0;
}

.nps-flow.nps-configure-email .nps-domain-pop-over:after {
  position: absolute;
  top: -7px;
  right: 15px;
  content: " ";
  background-color: transparent;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 13px 10px 13px;
  border-color: transparent transparent #f9f9fc transparent;
}

.nps-flow.nps-configure-email .nps-dns-hint.disabled {
  display: none;
}

.nps-flow.nps-configure-email .sb-modal-upload {
  font-family: sofia-pro, Arial, sans-serif;
}

.nps-flow.nps-configure-email .sb-modal-upload__select {
  flex-wrap: wrap;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 250px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-top: 10px;
  padding: 20px 0px;
  margin-bottom: 50px;
  margin-left: 10px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email .sb-modal-upload__select {
    margin: 0;
    background: #ffffff;
  }
}
.nps-flow.nps-configure-email .sb-modal-upload__select-item {
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-origin: content-box;
  width: 110px;
  height: 110px;
  border: 1px solid #bcbed4;
  margin: 3px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email .sb-modal-upload__select-item {
    width: calc(33.3333333333vw - 10px);
    height: calc(33.3333333333vw - 10px);
  }
  .nps-flow.nps-configure-email .sb-modal-upload__select-item.hide-mobile {
    display: none;
  }
}
.nps-flow.nps-configure-email .sb-modal-upload__select-item:hover {
  border: 1px solid #00054d;
}

.nps-flow.nps-configure-email .sb-modal-upload__show-more {
  color: #00054d;
  font-size: 14px;
  font-family: sofia-pro, Arial, sans-serif;
  float: right;
  margin-right: 10px;
  margin-bottom: 20px;
  font-weight: normal;
  display: none;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email .sb-modal-upload__show-more {
    display: block;
  }
}
.nps-flow.nps-configure-email .sb-modal-upload .sb-modal__wrap {
  width: 775px;
}

.nps-flow.nps-configure-email .sb-modal-upload .sb-modal__content {
  padding: 0;
  background: white;
}

.nps-flow.nps-configure-email .sb-modal-upload .sb-modal__header {
  font-size: 30px;
  color: rgba(29, 29, 27, 0.87);
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email .sb-modal-upload .sb-modal__header {
    border-bottom: none;
  }
  .nps-flow.nps-configure-email .sb-modal-upload .sb-modal__header .modal-title_js {
    display: none;
  }
}
.nps-flow.nps-configure-email .sb-modal-upload__upload {
  font-weight: 600;
  border-bottom: 1px solid #bcbed4;
  cursor: pointer;
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(29, 29, 27, 0.87);
  transition: all 0.3s;
}

.nps-flow.nps-configure-email .sb-modal-upload__upload:hover {
  background-color: #f9f9fc;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email .sb-modal-upload__upload {
    height: auto;
  }
  .nps-flow.nps-configure-email .sb-modal-upload__upload a {
    padding: 40px;
    margin: 20px 10px;
    background: #f9f9fc;
    width: 100%;
  }
}
.nps-flow.nps-configure-email #configure-email-form {
  width: 100%;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email #configure-email-form #id_from_address:not(.default) {
    width: calc(100% - 131px) !important;
  }
}
.nps-flow.nps-configure-email #configure-email-form #div_id_from_address,
.nps-flow.nps-configure-email #configure-email-form #div_id_question,
.nps-flow.nps-configure-email #configure-email-form #div_id_subject,
.nps-flow.nps-configure-email #configure-email-form #div_id_greeting {
  position: relative;
}

.nps-flow.nps-configure-email #configure-email-form #div_id_from_address .tooltip-wrap,
.nps-flow.nps-configure-email #configure-email-form #div_id_question .tooltip-wrap,
.nps-flow.nps-configure-email #configure-email-form #div_id_subject .tooltip-wrap,
.nps-flow.nps-configure-email #configure-email-form #div_id_greeting .tooltip-wrap {
  position: absolute;
  right: -44px;
  top: 7px;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email #configure-email-form #div_id_from_address .tooltip-wrap,
  .nps-flow.nps-configure-email #configure-email-form #div_id_question .tooltip-wrap,
  .nps-flow.nps-configure-email #configure-email-form #div_id_subject .tooltip-wrap,
  .nps-flow.nps-configure-email #configure-email-form #div_id_greeting .tooltip-wrap {
    right: -10px;
  }
}
@media (max-width: 768px) {
  .nps-flow.nps-configure-email #configure-email-form #div_id_from_address .tooltip-wrap .sb-tooltip,
  .nps-flow.nps-configure-email #configure-email-form #div_id_question .tooltip-wrap .sb-tooltip,
  .nps-flow.nps-configure-email #configure-email-form #div_id_subject .tooltip-wrap .sb-tooltip,
  .nps-flow.nps-configure-email #configure-email-form #div_id_greeting .tooltip-wrap .sb-tooltip {
    right: 10px;
  }
  .nps-flow.nps-configure-email #configure-email-form #div_id_from_address .tooltip-wrap .sb-tooltip:after,
  .nps-flow.nps-configure-email #configure-email-form #div_id_question .tooltip-wrap .sb-tooltip:after,
  .nps-flow.nps-configure-email #configure-email-form #div_id_subject .tooltip-wrap .sb-tooltip:after,
  .nps-flow.nps-configure-email #configure-email-form #div_id_greeting .tooltip-wrap .sb-tooltip:after {
    right: 10px;
  }
  .nps-flow.nps-configure-email #configure-email-form #div_id_from_address .tooltip-wrap .sb-tooltip:before,
  .nps-flow.nps-configure-email #configure-email-form #div_id_question .tooltip-wrap .sb-tooltip:before,
  .nps-flow.nps-configure-email #configure-email-form #div_id_subject .tooltip-wrap .sb-tooltip:before,
  .nps-flow.nps-configure-email #configure-email-form #div_id_greeting .tooltip-wrap .sb-tooltip:before {
    right: 9px;
  }
}
.nps-flow.nps-configure-email #configure-email-form #div_id_subject input,
.nps-flow.nps-configure-email #configure-email-form #div_id_greeting input {
  padding-right: 35px;
}

.nps-flow.nps-configure-email #configure-email-form #div_id_subject .nps-plus-link,
.nps-flow.nps-configure-email #configure-email-form #div_id_greeting .nps-plus-link {
  margin-top: -10px;
}

.nps-flow.nps-configure-email #configure-email-form #div_id_subject .nps-plus-link.disabled,
.nps-flow.nps-configure-email #configure-email-form #div_id_greeting .nps-plus-link.disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.4;
}

.nps-flow.nps-configure-email #configure-email-form label {
  padding-left: 0;
  padding-right: 0;
}

.nps-flow.nps-configure-email #configure-email-form .col-md-8 {
  padding-left: 0;
  padding-right: 0;
}

.nps-flow.nps-configure-email #configure-email-form #div_id_domain.disabled {
  display: none;
}

.nps-flow.nps-configure-email #configure-email-form .nps-select-arrow-wrap {
  overflow: hidden;
  border: solid 1px #bcbed4;
  height: 40px;
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email #configure-email-form .nps-select-arrow-wrap {
    width: 100% !important;
  }
}
.nps-flow.nps-configure-email #configure-email-form .nps-select-arrow {
  position: absolute;
  width: 30px;
  height: 40px;
  right: -13px;
  text-align: right;
  padding-top: 9px;
  padding-right: 15px;
  background-color: white;
  pointer-events: none;
  top: -3px;
}

.nps-flow.nps-configure-email #configure-email-form .nps-select-arrow div {
  transform: scale(2, 0.7) rotate(180deg);
  color: #00054d;
}

.nps-flow.nps-configure-email #configure-email-form select[name=domain] {
  position: relative;
  border-radius: 0 !important;
  border: none;
  background-color: #ffffff;
  padding-right: 30px;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: right 50%;
  width: 421px;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email #configure-email-form select[name=domain] {
    width: 100%;
  }
}
.nps-flow.nps-configure-email #configure-email-form select[name=domain].disabled + div {
  display: none;
  pointer-events: none;
}

.nps-flow.nps-configure-email #configure-email-form select[name=domain] option {
  border-radius: 0 !important;
}

.nps-flow.nps-configure-email #configure-email-form .tooltip-wrap {
  width: 35px;
  height: 35px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  margin-left: 5px;
  text-align: center;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email #configure-email-form .tooltip-wrap {
    position: absolute;
  }
}
.nps-flow.nps-configure-email #configure-email-form .tooltip-wrap:hover .sb-tooltip {
  display: block;
  right: -10px;
  font-size: 16px;
  white-space: initial;
}

.nps-flow.nps-configure-email #configure-email-form .tooltip-wrap img {
  margin-top: -3px;
  width: 17px;
}

.nps-flow.nps-configure-email .nps-content {
  width: 600px;
  margin: 0 auto;
}

.nps-flow.nps-configure-email .nps-content textarea {
  background: #fff;
  border-radius: 0;
  border: solid 1px #bcbed4;
  color: #6d6f94;
  padding: 7px 30px 7px 11px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  height: 100%;
}

.nps-flow.nps-configure-email .nps-content .question-note {
  margin-top: 5px;
  margin-bottom: 14px;
  margin-left: 140px;
  width: 430px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 2.17;
  letter-spacing: 0.2px;
  color: #92939b;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email .nps-content .question-note {
    margin-left: 0;
    width: 100%;
  }
}
.nps-flow.nps-configure-email .nps-content .reset-input {
  cursor: pointer;
  position: absolute;
  right: 8px;
  top: 8px;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email .nps-content .reset-input {
    top: 18px;
    right: 5px;
  }
}
.nps-flow.nps-configure-email .nps-content .reset-input:hover {
  filter: grayscale(1) brightness(0);
}

.nps-flow.nps-configure-email .nps-content .reset-input.roll {
  transition: all 0.3s;
  transform: rotate(360deg);
}

.nps-flow.nps-configure-email .nps-content .button-primary {
  width: 220px;
  margin: 40px auto;
  display: block;
}

@media (max-width: 768px) {
  .nps-flow.nps-configure-email .nps-content .button-primary {
    width: 100%;
  }
}
.nps-flow .nps-uploader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 119px;
  padding: 20px;
  border-radius: 5px;
  border: 1px dashed #bcbed4;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.63;
  letter-spacing: 0.26px;
  text-align: center;
  color: #92939b;
  cursor: pointer;
}

.nps-flow .nps-uploader.dragover {
  border: 2px dashed #00054d;
}

.nps-flow .nps-uploader__nologo.disabled {
  display: none;
}

.nps-flow .nps-uploader__withlogo {
  margin: 10px 0;
  height: 100px;
  width: 250px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.nps-flow .nps-uploader__withlogo.disabled {
  display: none;
}

.nps-flow .nps-uploader.dragover .nps-uploader__ctrl {
  top: -1px;
  right: -1px;
}

.nps-flow .nps-uploader__ctrl {
  position: absolute;
  top: 0;
  right: 0;
}

.nps-flow .nps-uploader__ctrl.disabled {
  display: none;
}

.nps-flow .nps-uploader__ctrl .remove-logo {
  margin-top: 10px;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  background: url("/static/icons/ic_delete.svg");
  display: block;
}

.nps-flow .nps-uploader__ctrl .remove-logo:hover {
  background: url("/static/icons/ic_delete_hover.svg");
}

.sb-sidebar__step-con-3-1 .sb-sidebar__title {
  margin-bottom: 20px;
}

.sb-sidebar__step-con-2-1 .all-filters {
  padding: 0 0 10px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  overflow: unset;
  margin: 0;
}

@media (max-width: 1024px) {
  .sb-sidebar__step-con-2-1 .all-filters {
    flex-direction: column;
  }
}
.sb-sidebar__step-con-2-1 .all-filters .filter-wrap {
  width: 100%;
  display: flex;
  margin: 10px 0;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .sb-sidebar__step-con-2-1 .all-filters .filter-wrap {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .sb-sidebar__step-con-2-1 .all-filters .filter-wrap {
    flex-direction: column;
  }
}
.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .inner-wrap {
  display: flex;
  flex-direction: row;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .filter-error {
  color: #C70A2A;
  font-size: 15px;
  margin-top: 5px;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector {
  width: 250px;
  position: relative;
  color: #6d6f94;
}

@media (max-width: 768px) {
  .sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector {
    width: 100%;
  }
}
.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector.active .filter-options {
  display: block;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector.active::after {
  transform: rotate(180deg);
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector::after {
  position: absolute;
  content: "";
  top: 16px;
  right: 10px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #00054d;
  transition: all 0.25s;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-name {
  background: white;
  padding: 5px 10px;
  border: 1px solid #e1e2f0;
  cursor: pointer;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options {
  display: none;
  position: absolute;
  background: white;
  width: 250px;
  padding: 5px;
  box-shadow: 0 2px 5px 1px #e1e2f0;
  border-radius: 0 0 5px 5px;
  z-index: 10;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options::after {
  content: " ";
  display: block;
  height: 1px;
  width: 1px;
  position: absolute;
  bottom: -20px;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .search-wrap input {
  border: none;
  padding: 4px 6px;
  width: 100%;
  margin: 2px 0 10px 0px;
  border: 1px solid #bcbed4;
  color: #000333;
  min-height: unset !important;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .search-wrap input::placeholder {
  color: rgba(0, 0, 51, 0.4);
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .search-wrap input:focus, .sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .search-wrap input:focus-visible {
  border-radius: 0;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .options-wrap {
  max-height: 260px;
  overflow-y: auto;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .options-wrap::-webkit-scrollbar {
  width: 5px;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .options-wrap::-webkit-scrollbar-track {
  background: #e1e2f0;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .options-wrap::-webkit-scrollbar-thumb {
  background-color: #bcbcc1;
  border-radius: 5px;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .options-wrap .option {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px 5px 5px 5px;
  border-bottom: 1px solid #e1e2f0;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .options-wrap .option.selected {
  background: #007b80;
  color: white;
  position: relative;
  padding-right: 20px;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .options-wrap .option.selected::after {
  content: "✕";
  position: absolute;
  right: 3px;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .options-wrap .option.selected:hover {
  background: #007b80;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .options-wrap .option.selected:hover::after {
  text-decoration: underline;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .options-wrap .option:last-of-type {
  border: none;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .options-wrap .option:hover {
  background: #e1e2f0;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selector .filter-options .no-results {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
  margin: 0;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selections {
  flex: 1;
  margin-left: 20px;
  display: flex;
  align-items: baseline;
  overflow-x: auto;
}

@media (max-width: 768px) {
  .sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selections {
    margin: 0;
  }
}
.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selections::-webkit-scrollbar {
  height: 5px;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selections::-webkit-scrollbar-track {
  background: #bcbcc1;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selections::-webkit-scrollbar-thumb {
  background-color: #007b80;
  border-radius: 5px;
  cursor: pointer;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selections .selection {
  background: #007b80;
  padding: 3px 6px 5px 6px;
  color: white;
  font-size: 14px;
  border-radius: 3px;
  cursor: pointer;
  margin: 5px 5px 5px 0;
  white-space: nowrap;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selections .selection:hover {
  box-shadow: 0 2px 5px 1px #e1e2f0;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selections .selection:hover .remove {
  text-decoration: underline;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selections .selection .remove {
  margin-left: 5px;
  font-size: 10px;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selections .selection.all {
  background: #e1e2f0;
  color: #3a3c66;
  cursor: default;
}

.sb-sidebar__step-con-2-1 .all-filters .filter-wrap .selections .selection.all:hover {
  box-shadow: none;
}

.sb-sidebar__step-con-2-1 .expired-filters {
  padding: 20px;
  margin: -10px 0 30px 0;
  background: #fef9fa;
  color: #C70A2A;
  border: 2px solid #C70A2A;
  border-radius: 15px;
  clear: both;
  float: left;
  width: 100%;
  max-width: 600px;
  font-weight: bold;
}

.sb-sidebar__step-con-2-1 .expired-filters .filter-names {
  margin: 10px 0;
  font-weight: normal;
}

.sb-sidebar__step-con-1-1 {
  font-family: sofia-pro, Arial, sans-serif;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.86;
  letter-spacing: 0.23px;
  color: #6d6f94;
}

.sb-sidebar__step-con-1-1 .sb-sidebar__title {
  margin-bottom: 16px;
}

.sb-sidebar__step-con-1-1 p:nth-child(2) {
  margin-bottom: 0;
  padding-bottom: 0;
}

.sb-sidebar__step-con-1-1 p:nth-child(1) {
  margin-bottom: 0;
  padding-bottom: 16px;
}

.sb-sidebar__step-con-1-1 .company-module-table {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 15px;
  color: #6d6f94;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 10px;
  border-collapse: collapse;
  border-radius: 5px;
  border-style: hidden; /* hide standard table (collapsed) border */
  box-shadow: 0 0 0 1px #bcbed4;
}

@media (max-width: 768px) {
  .sb-sidebar__step-con-1-1 .company-module-table {
    margin-left: -10px;
    width: calc(100vw - 40px);
    max-width: 100%;
  }
}
.sb-sidebar__step-con-1-1 .company-module-table tr:first-child:first-child {
  font-weight: bold;
}

.sb-sidebar__step-con-1-1 .company-module-table td {
  padding: 4px 10px;
  border: 1px solid #bcbed4;
}

.sb-sidebar__step-con-1-1 .sb-sidebar__title {
  margin-bottom: 20px;
}

.sb-sidebar__step-con-1-1 .up-ul {
  margin-left: 0;
  padding-left: 20px;
}

.sb-sidebar__step-con-1-1 ol {
  margin-left: 0;
  padding-left: 0;
  float: left;
}

.sb-sidebar__step-con-1-1 ol span {
  float: left;
  margin-left: 20px;
}

.sb-sidebar__step-con-1-1 ul {
  padding-left: 2px;
}

.sb-sidebar__step-con-1-1 .up-ul {
  list-style: lower-alpha;
  padding-left: 38px;
}

.sb-sidebar__step-con-1-1 .up-ul li {
  margin-left: 0px;
}

.sb-sidebar__step-con-1-1 .up-ul li::marker {
  font-weight: 600;
}

.sb-sidebar__step-con-1-1 .sb-sidebar__sub-title > ul {
  padding-left: 0;
}

.sb-sidebar__step-con-1-1 li {
  margin-left: 20px;
}

.sb-sidebar__step-con-1-1 .button-primary {
  margin-top: 0px;
}

.nps-content .daterange--single {
  padding: 0;
  margin: 0;
  position: relative;
}

.nps-content .daterange--single:after {
  display: none;
  width: 20px;
  position: absolute;
  right: 6px;
  top: -1px;
  z-index: 400;
  pointer-events: none;
  color: #00054d;
  font-family: "Glyphicons Regular";
  content: "\e046";
  font-size: 20px;
}

.nps-content .daterange--single:after:hover {
  color: black;
}

.nps-content .hint-resume {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.86;
  letter-spacing: 0.23px;
  text-align: center;
  color: rgb(146, 147, 155);
}

.nps-content .hint-resume .resume {
  display: inline-block;
}

.nps-content .hint-resume .pause {
  display: none;
}

.nps-content .hint-resume.resume .resume {
  display: none;
}

.nps-content .hint-resume.resume .pause {
  display: inline-block;
}

.nps-content .s1-form .dr-input:not(.dr-input:after) {
  pointer-events: none;
}

.nps-content .s1-form .starting-on {
  z-index: 8;
}

.nps-content .s1-form .toggle-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 20px 0;
  color: #92939b;
  font-family: sofia-pro, Arial, sans-serif;
}

.nps-content .s1-form .toggle-wrapper .mini-toggle {
  margin: 0;
}

.nps-content .s1-form .toggle-wrapper .description {
  display: flex;
}

.nps-content .s1-form .toggle-wrapper .description .tooltip-wrap {
  margin-left: 10px;
  position: relative;
  cursor: pointer;
}

.nps-content .s1-form .toggle-wrapper .description .tooltip-wrap:hover .sb-tooltip {
  display: block;
  right: -20px;
  font-size: 16px;
  white-space: initial;
}

.nps-content .s1-form .toggle-wrapper .description .tooltip-wrap .icon {
  width: 17px;
}

.nps-content .s1-form .resend-frequency {
  width: 100%;
}

.nps-content .s1-form .resend-frequency .label {
  display: inline;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.26px;
  color: #92939b;
  width: 100%;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 20px;
}

.nps-content .s1-form .resend-frequency .custom-select {
  width: 140px;
  margin-top: 6px;
  display: inline-block;
  z-index: 2;
}

.nps-content .s1-form .resend-frequency .custom-select.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.nps-content .s1-form .resend-frequency .custom-select .mock-select {
  line-height: 33px;
  height: 36px;
  margin-top: 2px;
}

.nps-content .s1-form .slide-toggle-wrapper {
  margin: 14px 0;
}

.nps-content .s1-form .error-required-message {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  color: #c70a2a;
}

.nps-content .s1-form .error-required-message.disabled {
  display: none;
}

.nps-content .s1-form.disabled .mock-select {
  pointer-events: none;
  background-color: #f9f9fc;
  border-color: #bcbed4;
  color: #bcbed4;
}

.nps-content .s1-form.disabled .daterange:after {
  color: #bcbed4;
}

.nps-content .s1-form.disabled .dr-date {
  color: #bcbed4;
}

.nps-content .s1-form.disabled .s1-datepicker-input,
.nps-content .s1-form.disabled select,
.nps-content .s1-form.disabled option,
.nps-content .s1-form.disabled .nps-new-select {
  pointer-events: none;
  background-color: #f9f9fc;
  border-color: #bcbed4;
  color: #bcbed4;
}

@media (max-width: 768px) {
  .nps-content .s1-form {
    width: 100%;
    padding: 10px;
  }
  .nps-content .s1-form .error-required-message {
    top: 74px;
    left: 0px;
  }
  .nps-content .s1-form .dr-date {
    padding-left: 6px !important;
  }
  .nps-content .s1-form .nps-rules-list {
    width: calc(100vw - 20px);
  }
  .nps-content .s1-form .nps-new-select {
    max-width: 313px;
    margin: 0 auto;
  }
}
.nps-content .s1-form .nps-new-select img {
  right: 11px;
  top: 19px;
}

.nps-content .s1-form .nps-new-select .nps-rules-list {
  width: 112px;
}

.nps-content .s1-form .nps-new-select.repeat {
  margin-right: auto;
  margin-left: 67px;
}

@media (max-width: 768px) {
  .nps-content .s1-form .nps-new-select.repeat {
    margin-right: auto;
    margin-left: auto;
  }
  .nps-content .s1-form .nps-new-select.repeat .nps-rules-list {
    margin: 0 0 0 0 !important;
    width: 100% !important;
  }
}
.nps-content .s1-form .nps-new-select.repeat .nps-rules-list {
  width: 148px;
}

.nps-content .s1-form .date-and-time {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .nps-content .s1-form .date-and-time {
    flex-direction: column;
  }
}
.nps-content .s1-form .date-and-time .custom-select {
  z-index: 8;
}

.nps-content .s1-form .date-and-time .datepicker-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  width: 100%;
}

@media (max-width: 768px) {
  .nps-content .s1-form .date-and-time .datepicker-wrap {
    margin: 0;
  }
}
.nps-content .s1-form .date-and-time .datepicker-wrap::after {
  content: "";
  background: #00054d;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 0px 0px;
  width: 22px;
  height: 22px;
  -webkit-mask-size: 22px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0px 0px;
  mask-size: 20px;
  mask-repeat: no-repeat;
  mask-position: 0px 0px;
  margin: 0 0px 4px 8px;
  -webkit-mask-image: url("/static/img/calendar.svg");
  mask-image: url("/static/img/calendar.svg");
  position: absolute;
  right: 7px;
  top: 9px;
  z-index: 1;
}

@media (max-width: 768px) {
  .nps-content .s1-form .date-and-time .datepicker-wrap::after {
    top: 19px;
  }
}
.nps-content .s1-form .date-and-time .datepicker-wrap:hover::after {
  background-image: linear-gradient(282deg, #000fe3, #9d3aff) !important;
}

.nps-content .s1-form .date-and-time .datepicker-wrap #datepicker {
  width: 100%;
  height: 40px;
  padding: 0 25px 0 7px;
  line-height: 39px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.26px;
  color: rgb(100, 100, 100) !important;
  border: solid 1px rgb(203, 204, 213);
  background: none;
  z-index: 2;
}

.nps-content .s1-form .timezone-title {
  z-index: 5 !important;
}

@media (max-width: 768px) {
  .nps-content .s1-form .timezone-title .custom-select {
    width: 100% !important;
  }
}
.nps-content .s1-form .timezone-title .mock-select {
  height: 40px;
  overflow: hidden;
}

.nps-content .s1-form .timezone-title .mock-select:after {
  top: 1px;
  right: 1px;
  width: 50px;
  height: 38px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 20%, rgb(255, 255, 255) 50%);
}

.nps-content .s1-form .timezone-title .mock-options {
  max-height: 300px;
  overflow-y: scroll;
  font-size: 14px;
}

.nps-content .s1-form .timezone-title .mock-options div {
  height: auto;
}

.nps-content .s1-form .repeat-title {
  z-index: 4 !important;
}

.nps-content .s1-form .language-title {
  z-index: 3 !important;
}

@media (max-width: 768px) {
  .nps-content .s1-form .repeat-title,
  .nps-content .s1-form .language-title {
    margin-top: 5px !important;
  }
  .nps-content .s1-form .repeat-title .custom-select,
  .nps-content .s1-form .language-title .custom-select {
    margin: 0 auto;
    width: 100% !important;
  }
  .nps-content .s1-form .repeat-title > span:first-child,
  .nps-content .s1-form .language-title > span:first-child {
    margin-bottom: 10px;
  }
}
.nps-content .s1-form .date-picker-select {
  z-index: 6;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.26px;
  color: rgb(146, 147, 155);
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  position: relative;
}

.nps-content .s1-form .date-picker-select .timezone {
  position: absolute;
  right: -25px;
  top: 13px;
}

@media (max-width: 768px) {
  .nps-content .s1-form .date-picker-select .timezone {
    left: 8px;
    z-index: 10;
    bottom: 6px;
    width: 25px;
  }
}
.nps-content .s1-form .date-picker-select .timezone .icon {
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.nps-content .s1-form .date-picker-select .timezone .icon img {
  top: 0;
  right: 0;
}

@media (max-width: 768px) {
  .nps-content .s1-form .date-picker-select .timezone .icon img {
    width: 15px;
    height: 15px;
    left: 0;
  }
}
.nps-content .s1-form .date-picker-select .timezone:hover .sb-tooltip {
  display: block;
  right: -20px;
}

@media (max-width: 768px) {
  .nps-content .s1-form .date-picker-select .timezone:hover .sb-tooltip {
    left: -10px;
  }
  .nps-content .s1-form .date-picker-select .timezone:hover .sb-tooltip:before {
    left: 20px;
    transform: scaleX(-1);
  }
  .nps-content .s1-form .date-picker-select .timezone:hover .sb-tooltip:after {
    left: 21px;
    transform: scaleX(-1);
  }
}
@media (max-width: 768px) {
  .nps-content .s1-form .date-picker-select {
    display: block;
    text-align: center;
    margin-top: 0;
  }
  .nps-content .s1-form .date-picker-select .dr-date {
    text-align: center;
  }
  .nps-content .s1-form .date-picker-select .custom-select {
    width: 100% !important;
  }
  .nps-content .s1-form .date-picker-select > span {
    text-align: center;
    margin-bottom: 10px;
    display: block;
    width: 100%;
  }
  .nps-content .s1-form .date-picker-select > div {
    display: inline-block;
  }
}
.nps-content .nps-rules-list {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.26px;
  color: rgb(100, 100, 100);
  height: 40px;
}

.nps-content h2 {
  margin-top: 14px;
  margin-bottom: 14px;
}

.nps-content p {
  text-align: center;
}

.nps-content p.left {
  text-align: left;
  width: 100%;
}

.nps-content form {
  margin: 0 auto;
  width: 600px;
  margin-top: 10px;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.nps-content form .button-primary {
  margin-top: 31px;
  width: 313px;
}

.custom-domain-image.disabled {
  display: none;
}

.message-powered {
  display: flex;
  justify-content: center;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #6d6f94 !important;
  align-items: center;
  margin: 32px auto;
  padding-top: 24px;
  width: 364px;
  border-top: 1px solid #e1e2f0;
}

.message-powered img {
  width: 98px;
  margin-left: 8px;
}

.message-powered img.img-error {
  margin-left: 0px !important;
}

.message-rejected {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.63;
  letter-spacing: 0.26px;
  margin-top: 20px;
  display: block;
  color: #1f214d;
}

.nps-content__hint {
  margin-top: 15px;
  padding-bottom: 50px;
  text-justify: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nps-content__hint-icon {
  display: block;
  font-size: 4rem;
  color: #00054d;
}

.nps-content__tooltip {
  margin-bottom: 20px;
  margin-top: -23px;
  font-size: 0.8rem;
  line-height: 1.1rem;
  display: block;
}

.nps-content__tooltip .glyphicons {
  color: #0E6E9B;
  margin-right: 4px;
  font-size: 1rem;
}

.nps-campaign .btn-primary {
  float: right;
}

.score {
  width: fit-content;
  display: inline;
}

.preview-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: no-drop;
}

.letter-icon {
  font-size: 5rem;
}

.contacts-form-wrap {
  margin-top: -20px;
  margin-bottom: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.sb-modal-adapt button[aria-label=Close] {
  position: absolute;
  top: 5px;
  right: 10px;
}

.sb-modal-adapt button[data-dismiss=modal]:not(button[aria-label=Close]) {
  margin-top: 10px;
}

.sb-modal-adapt .modal-header {
  padding: 10px 0px 7px 0px;
  text-align: center !important;
}

.sb-modal-adapt .modal-header small {
  font-size: 15px;
  font-weight: normal;
}

.sb-modal-adapt .modal-header .modal-title {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto;
}

.sb-modal-adapt .modal-body a {
  color: #00054d;
}

.sb-modal-adapt .modal-body a:hover {
  color: #00A2EA;
}

.sb-modal-adapt .modal-body div, .sb-modal-adapt .modal-body p {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #92939B;
  line-height: 1.67;
}

.sb-modal-adapt .modal-body .align-items-left {
  margin-right: auto;
}

.sb-modal-adapt .modal-body img {
  width: 120px;
}

.nps-success .row {
  margin: 20px 0;
}

.welcome-text__recomendation {
  font-size: 12px !important;
}

.welcome-text__features {
  list-style-type: circle;
}

.projects-flow {
  font-family: sofia-pro, Arial, sans-serif;
}

.projects-flow .canvas {
  position: relative;
}

.projects-flow h2 {
  font-size: 30px;
  text-align: center;
}

.projects-flow p {
  text-align: center;
  width: 100%;
}

.projects-flow form {
  margin-top: 10px;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.projects-flow form .input-error-wrap {
  width: 400px;
}

@media (max-width: 768px) {
  .projects-flow form .input-error-wrap {
    width: 100%;
  }
}
.projects-flow form .input-error-wrap input.error, .projects-flow form .input-error-wrap textarea.error {
  color: #000333;
}

.projects-flow form .input-error-wrap .input-error {
  margin: 0 60px 0 0;
}

.projects-flow form .danger {
  border-color: #c70a2a;
}

.projects-flow form .input-error, .projects-flow form .questions-wrap {
  transition: all 0.2s;
}

.projects-flow form .input-error.emphasis, .projects-flow form .questions-wrap.emphasis {
  color: #ffffff;
}

.projects-flow form .error {
  transition: all 0.2s;
  border-color: #c70a2a !important;
}

.projects-flow form.import-survey-form {
  border: 1px solid #e1e2f0;
  border-left: none;
  border-right: none;
  padding-bottom: 10px;
  margin-top: 10px;
  margin-bottom: 0;
}

.projects-flow form.import-survey-form h3.import-survey {
  cursor: pointer;
  position: relative;
  width: auto;
  padding-right: 30px;
}

.projects-flow form.import-survey-form h3.import-survey:hover {
  text-decoration: underline;
}

.projects-flow form.import-survey-form h3.import-survey::after {
  content: "+";
  font-size: 38px;
  position: absolute;
  right: 0px;
  top: -12px;
  color: #00054d;
  line-height: 40px;
  font-weight: normal;
}

.projects-flow form.import-survey-form .import-form-options {
  padding-bottom: 20px;
  width: 100%;
  display: none;
}

.projects-flow form.import-survey-form .import-form-options label {
  align-items: center;
}

.projects-flow form.import-survey-form .import-form-options .input-button-wrapper {
  width: 400px;
  display: flex;
  max-width: 100%;
}

@media (max-width: 768px) {
  .projects-flow form.import-survey-form .import-form-options .input-button-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.projects-flow form.import-survey-form .import-form-options .input-button-wrapper button {
  margin-left: 10px;
  min-width: unset;
  height: 40px;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .projects-flow form.import-survey-form .import-form-options .input-button-wrapper button {
    margin-top: 10px;
  }
}
.projects-flow form.import-survey-form.active h3::after {
  content: "-";
  top: -13px;
}

.projects-flow form.import-survey-form.active .import-form-options {
  display: block;
}

.projects-flow form .custom-select {
  max-width: 400px;
  width: 100%;
}

@media (max-width: 768px) {
  .projects-flow form .custom-select {
    max-width: none;
  }
}
.projects-flow form label, .projects-flow form fieldset {
  font-size: 16px;
  letter-spacing: 0.26px;
  color: #92939b;
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .projects-flow form label, .projects-flow form fieldset {
    flex-direction: column;
  }
}
.projects-flow form label.question, .projects-flow form fieldset.question {
  align-items: center;
  position: relative;
}

.projects-flow form label.question .title, .projects-flow form fieldset.question .title {
  width: 180px;
}

@media (max-width: 768px) {
  .projects-flow form label.question .custom-select, .projects-flow form fieldset.question .custom-select {
    width: calc(100% - 40px);
    margin-right: 40px;
  }
}
@media (max-width: 768px) {
  .projects-flow form label.question, .projects-flow form fieldset.question {
    align-items: baseline;
  }
}
.projects-flow form label input, .projects-flow form fieldset input {
  padding: 0 7px;
  max-width: 400px;
  width: 100%;
  min-height: 40px;
  border: 1px solid #bcbed4;
}

@media (max-width: 768px) {
  .projects-flow form label input, .projects-flow form fieldset input {
    max-width: none;
  }
}
.projects-flow form label input.error, .projects-flow form fieldset input.error {
  margin: 0;
  color: #000333;
  font-size: inherit;
}

.projects-flow form label input::placeholder, .projects-flow form fieldset input::placeholder {
  color: #8e8e8e;
}

.projects-flow form label textarea, .projects-flow form fieldset textarea {
  padding: 7px;
  max-width: 400px;
  height: 100px;
  width: 100%;
  min-height: 100px;
  font-size: 14px;
  border-radius: 0;
  border-color: #bcbed4;
}

@media (max-width: 768px) {
  .projects-flow form label textarea, .projects-flow form fieldset textarea {
    max-width: none;
  }
}
.projects-flow form label .error-required-message, .projects-flow form fieldset .error-required-message {
  position: absolute;
  top: 40px;
  left: 120px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 12px;
  color: #c70a2a;
}

.projects-flow form label .error-required-message.disabled, .projects-flow form fieldset .error-required-message.disabled {
  display: none;
}

.projects-flow form .toggle-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0px 0 15px 0;
  color: #92939b;
  font-family: sofia-pro, Arial, sans-serif;
}

@media (max-width: 768px) {
  .projects-flow form .toggle-wrapper {
    align-items: baseline;
  }
}
.projects-flow form .toggle-wrapper .mini-toggle label {
  display: block;
  width: 27px;
  color: transparent;
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .projects-flow form .toggle-wrapper .description {
    flex-direction: column;
  }
}
.projects-flow .controls {
  display: flex;
  margin-top: 40px;
  flex-direction: column;
  align-items: center;
}

.projects-flow .controls .button-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.projects-flow .controls .button-wrap button {
  margin: 5px;
  width: 240px;
}

.projects-flow .controls .button-wrap button.button-primary:after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid;
  border-left: 2px solid;
  transform: rotate(225deg);
  margin-bottom: 1px;
  margin-left: 2px;
}

.projects-flow .controls .button-wrap button.button-primary.loading {
  position: relative;
  pointer-events: none;
  border-color: #00054d !important;
  padding: 10px 20px 10px 8px;
}

.projects-flow .controls .button-wrap button.button-primary.loading::after {
  content: "";
  background: url("/static/icons/progress-white.svg");
  position: absolute;
  width: 30px;
  height: 30px;
  right: 20px;
  top: 15px;
  animation: rotate 1s linear infinite;
  background-repeat: no-repeat;
  background-position: 3px 3px;
  border: none;
}

.projects-flow .controls hr {
  width: 80px;
  border: none;
  border-top: 1px solid #e1e2f0;
}

.projects-flow .controls .back {
  margin-top: 20px;
  position: relative;
}

.projects-flow .controls .back:before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid;
  border-left: 2px solid;
  transform: rotate(45deg);
  left: -10px;
  top: 10px;
}

.projects-flow .add-item-wrap {
  display: flex;
  flex-direction: column;
  width: 400px;
  position: relative;
}

@media (max-width: 768px) {
  .projects-flow .add-item-wrap {
    width: 100%;
  }
}
.projects-flow .add-item-wrap .variable-wrap {
  display: flex;
  flex-direction: column;
}

.projects-flow .add-item-wrap .add-item {
  font-size: 14px;
  color: #000a9f;
  position: relative;
  padding-left: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.projects-flow .add-item-wrap .add-item::before {
  position: absolute;
  content: "+";
  left: 3px;
  top: 0px;
}

.projects-flow .add-item-wrap .add-item:hover {
  color: #000333;
}

.projects-flow .reset-wrap {
  position: relative;
}

.projects-flow .reset-wrap textarea, .projects-flow .reset-wrap input {
  padding-right: 30px;
}

.projects-flow .reset-wrap .reset-input {
  cursor: pointer;
  position: absolute;
  right: 8px;
  top: 8px;
}

@media (max-width: 768px) {
  .projects-flow .reset-wrap .reset-input {
    top: 32px;
  }
}
.projects-flow .reset-wrap .reset-input.roll {
  transition: all 0.3s;
  transform: rotate(360deg);
}

.projects-flow .reset-wrap .reset-input:hover {
  filter: grayscale(1) brightness(0);
}

.projects-flow .create-survey-s1,
.projects-flow .create-survey-s2,
.projects-flow .create-survey-s3,
.projects-flow .create-survey-s4 {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.projects-flow .create-survey-s1 .hint,
.projects-flow .create-survey-s2 .hint,
.projects-flow .create-survey-s3 .hint,
.projects-flow .create-survey-s4 .hint {
  text-align: center;
  color: #6d6f94;
  margin: 40px 0;
}

.projects-flow .create-survey-s1 .tooltip-wrap,
.projects-flow .create-survey-s2 .tooltip-wrap,
.projects-flow .create-survey-s3 .tooltip-wrap,
.projects-flow .create-survey-s4 .tooltip-wrap {
  position: absolute;
  right: -26px;
  top: 5px;
}

.projects-flow .create-survey-s1 .tooltip-wrap .sb-tooltip,
.projects-flow .create-survey-s2 .tooltip-wrap .sb-tooltip,
.projects-flow .create-survey-s3 .tooltip-wrap .sb-tooltip,
.projects-flow .create-survey-s4 .tooltip-wrap .sb-tooltip {
  right: -20px;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s1 .tooltip-wrap,
  .projects-flow .create-survey-s2 .tooltip-wrap,
  .projects-flow .create-survey-s3 .tooltip-wrap,
  .projects-flow .create-survey-s4 .tooltip-wrap {
    right: 0;
    top: -4px;
  }
  .projects-flow .create-survey-s1 .tooltip-wrap .icon,
  .projects-flow .create-survey-s2 .tooltip-wrap .icon,
  .projects-flow .create-survey-s3 .tooltip-wrap .icon,
  .projects-flow .create-survey-s4 .tooltip-wrap .icon {
    width: 16px;
  }
}
.projects-flow .create-survey-s1 h3,
.projects-flow .create-survey-s2 h3,
.projects-flow .create-survey-s3 h3,
.projects-flow .create-survey-s4 h3 {
  margin: 20px auto 10px auto;
  position: relative;
  width: fit-content;
}

.projects-flow .create-survey-s1 h3 .tooltip-wrap,
.projects-flow .create-survey-s2 h3 .tooltip-wrap,
.projects-flow .create-survey-s3 h3 .tooltip-wrap,
.projects-flow .create-survey-s4 h3 .tooltip-wrap {
  font-weight: normal;
  top: -2px;
  right: -25px;
}

.projects-flow .create-survey-s1 .char-count,
.projects-flow .create-survey-s2 .char-count,
.projects-flow .create-survey-s3 .char-count,
.projects-flow .create-survey-s4 .char-count {
  font-size: 14px;
  position: absolute;
  right: 0;
  bottom: 20px;
}

.projects-flow .create-survey-s1 .char-count.error,
.projects-flow .create-survey-s2 .char-count.error,
.projects-flow .create-survey-s3 .char-count.error,
.projects-flow .create-survey-s4 .char-count.error {
  margin: 0;
}

.projects-flow .create-survey-s1 .company-selector {
  z-index: 10;
}

.projects-flow .create-survey-s1 .project-selector {
  z-index: 9;
}

.projects-flow .create-survey-s1 .project-status-wrapper {
  z-index: 9;
}

.projects-flow .create-survey-s1 .language-selector {
  z-index: 8;
}

.projects-flow .create-survey-s1 .company-label-wrap {
  position: relative;
}

.projects-flow .create-survey-s1 .global-inputs .schedule-options .description {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 0 0 0;
  color: #92939b;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s1 .global-inputs .schedule-options .description {
    flex-direction: column;
    align-items: flex-start;
  }
}
.projects-flow .create-survey-s1 .global-inputs .schedule-options .description .custom-select {
  min-width: 400px;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s1 .global-inputs .schedule-options .description .custom-select {
    min-width: unset;
  }
}
.projects-flow .create-survey-s1 .global-inputs .language-label-wrap {
  padding-bottom: 20px;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options {
  width: 100%;
  border-top: 1px solid #e1e2f0;
  padding-top: 10px;
  margin-top: 30px;
  padding-bottom: 10px;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options h3 {
  text-align: center;
  margin-bottom: 30px;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .error {
  width: 100%;
  margin-left: 0;
  text-align: center;
  margin-top: -10px;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .project-status-wrapper {
  width: 230px;
  margin-left: 5px;
  z-index: 6;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .project-status-wrapper {
    margin: 0;
    width: 100%;
  }
}
.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .description.project-status-desc {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .description.project-status-desc {
    align-items: flex-start;
  }
}
.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .description.disabled {
  opacity: 1;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .description.disabled .project-phase-wrapper,
.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .description.disabled .phase-status-wrapper,
.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .description.disabled .project-status-wrapper {
  opacity: 0.4;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .description {
    width: 100%;
  }
}
.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .selectize-input {
  width: 410px;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .selectize-input input::placeholder {
  color: #8e8e8e;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .selectize-input {
    width: 100%;
  }
}
.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .mini-toggle {
  margin-top: 5px;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .status-wrap {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  max-width: 563px;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .status-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description {
    width: 100%;
  }
}
.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .label {
  white-space: nowrap;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .custom-select {
  margin: -5px 5px 0 5px;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .custom-select {
    margin: 0;
  }
}
.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper {
  height: auto;
  z-index: 5;
  margin-bottom: 8px;
  margin-left: 22px;
  margin-right: 0;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper input {
  width: 100% !important;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper input::placeholder {
  color: #8e8e8e;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper {
    margin: 0;
  }
}
.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input {
  min-height: 40px;
  overflow-y: auto;
  flex-direction: column;
  max-height: 150px;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input.has-items {
  font-size: 14px;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input::-webkit-scrollbar {
  width: 5px;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input::-webkit-scrollbar-track {
  background: #bcbcc1;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input::-webkit-scrollbar-thumb {
  background-color: #007b80;
  border-radius: 5px;
  cursor: pointer;
}

.projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .phase-status-wrapper {
  width: 410px;
  min-width: 410px;
  margin-left: 20px;
  max-width: unset;
  margin-right: 0;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .phase-status-wrapper {
    margin: 0;
    width: 100%;
    min-width: unset;
  }
}
@media (max-width: 768px) {
  .projects-flow .create-survey-s1 .single-survey-inputs .schedule-options .phase-and-status-toggle-wrap .description .phase-status-wrapper .selectize-input {
    width: 100%;
  }
}
.projects-flow .create-survey-s1 .deployment-options {
  width: 100%;
  border-top: 1px solid #e1e2f0;
  border-bottom: 1px solid #e1e2f0;
  padding-top: 20px;
}

.projects-flow .create-survey-s1 .deployment-options .mini-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.projects-flow .create-survey-s1 .deployment-options .mini-toggle .tooltip-wrap {
  display: inline-block;
  position: relative;
  top: -2px;
  right: -2px;
}

.projects-flow .create-survey-s1 .projects-survey-submit_js {
  margin-top: 40px;
}

.projects-flow .create-survey-s2 .uploader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 119px;
  border-radius: 5px;
  border: 1px dashed #bcbed4;
  padding: 20px;
  width: 400px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.63;
  letter-spacing: 0.26px;
  text-align: center;
  color: #92939b;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s2 .uploader {
    width: 100%;
  }
}
.projects-flow .create-survey-s2 .uploader.dragover {
  border: 2px dashed #00054d;
}

.projects-flow .create-survey-s2 .uploader__nologo.disabled {
  display: none;
}

.projects-flow .create-survey-s2 .uploader__withlogo {
  margin: 10px 0;
  height: 100px;
  width: 250px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.projects-flow .create-survey-s2 .uploader__withlogo.disabled {
  display: none;
}

.projects-flow .create-survey-s2 .uploader.dragover .uploader__ctrl {
  top: -1px;
  right: -1px;
}

.projects-flow .create-survey-s2 .uploader__ctrl {
  position: absolute;
  top: 0;
  right: 0;
}

.projects-flow .create-survey-s2 .uploader__ctrl.disabled {
  display: none;
}

.projects-flow .create-survey-s2 .uploader__ctrl .remove-logo {
  margin-top: 10px;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  background: url("/static/icons/ic_delete.svg");
  display: block;
}

.projects-flow .create-survey-s2 .uploader__ctrl .remove-logo:hover {
  background: url("/static/icons/ic_delete_hover.svg");
}

.projects-flow .create-survey-s2 .uploader .new-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  animation-name: moveIndeterminate;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 150% 150%;
  animation-timing-function: linear;
  background-color: #dbdbdb;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
  background-image: linear-gradient(to right, #00054d 30%, #dbdbdb 30%);
}

.projects-flow .create-survey-s2 .uploader .new-progress.disabled {
  display: none;
}

.projects-flow .create-survey-s2 .minicolors-theme-default {
  width: 100%;
  max-width: 400px;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s2 .minicolors-theme-default {
    max-width: none;
  }
}
.projects-flow .create-survey-s2 .minicolors-theme-default .minicolors-input {
  height: 40px;
  width: 100% !important;
  padding-left: 40px;
  border: 1px solid #bcbed4;
}

.projects-flow .create-survey-s2 .minicolors-theme-default .minicolors-swatch {
  width: 30px;
  height: 30px;
}

.projects-flow .create-survey-s2 .email-address .flex-wrapper {
  display: flex;
  width: 400px;
  position: relative;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s2 .email-address .flex-wrapper {
    width: 100%;
    max-width: none;
  }
}
.projects-flow .create-survey-s2 .email-address .flex-wrapper #from_address {
  max-width: 150px;
}

.projects-flow .create-survey-s2 .email-address .flex-wrapper .at-sign {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
}

.projects-flow .create-survey-s2 .email-address .add-domain {
  color: #000a9f;
  position: relative;
  padding-left: 15px;
  font-size: 15px;
}

.projects-flow .create-survey-s2 .email-address .add-domain::before {
  position: absolute;
  content: "+";
  left: 3px;
  top: 0px;
}

.projects-flow .create-survey-s2 fieldset {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.projects-flow .create-survey-s2 fieldset label {
  flex: 1;
  margin: 0;
}

.projects-flow .create-survey-s2 fieldset .flex-wrapper {
  flex: 2;
  max-width: 400px;
}

.projects-flow .create-survey-s2 fieldset.email-intro .reset-input {
  top: 11px;
}

.projects-flow .create-survey-s2 .ql-clipboard {
  display: none;
}

.projects-flow .create-survey-s2 .ql-toolbar .ql-formats {
  display: flex;
}

.projects-flow .create-survey-s2 .ql-toolbar .ql-formats button, .projects-flow .create-survey-s2 .ql-toolbar .ql-formats select {
  border: 1px solid #bcbed4;
  background-color: #ffffff;
  margin-right: 4px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects-flow .create-survey-s2 .ql-toolbar .ql-formats button:after, .projects-flow .create-survey-s2 .ql-toolbar .ql-formats select:after {
  top: 0;
  left: 0;
}

.projects-flow .create-survey-s2 .ql-toolbar .ql-formats button.ql-active, .projects-flow .create-survey-s2 .ql-toolbar .ql-formats select.ql-active {
  background-color: #e1e2f0;
}

.projects-flow .create-survey-s2 .ql-toolbar .ql-formats .ql-header {
  width: 100px;
}

.projects-flow .create-survey-s2 .ql-toolbar .ql-formats .ql-bold {
  font-weight: bold;
}

.projects-flow .create-survey-s2 .ql-toolbar .ql-formats .ql-italic {
  font-style: italic;
}

.projects-flow .create-survey-s2 .ql-toolbar .ql-formats .ql-underline {
  text-decoration: underline;
}

.projects-flow .create-survey-s2 .ql-editor {
  border: 1px solid #bcbed4;
  background-color: #ffffff;
  margin-top: 4px;
  padding: 8px 30px 8px 8px;
  min-height: 120px;
  resize: vertical;
  overflow: auto;
  font-size: 15px;
}

.projects-flow .create-survey-s2 .ql-editor p {
  text-align: left;
  color: #000333;
  font-size: 14px;
}

.projects-flow .create-survey-s2 .ql-editor .reset-input {
  top: 14px;
}

.projects-flow .create-survey-s2 .ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.4);
  content: attr(data-placeholder);
  font-style: italic;
  left: 10px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  padding: 0 10px 0 0;
  font-size: 14px;
}

.projects-flow .create-survey-s2 .ql-editor.danger {
  border-color: #c70a2a;
}

.projects-flow .create-survey-s2 .ql-editor:active.danger, .projects-flow .create-survey-s2 .ql-editor:focus-visible.danger {
  border-color: #c70a2a;
  border-width: 2px;
}

.projects-flow .create-survey-s3 .survey-thankyou {
  padding-bottom: 20px;
}

.projects-flow .create-survey-s3 .survey-thankyou .char-count {
  bottom: 0px;
}

.projects-flow .create-survey-s3 .accept-comments {
  padding-top: 20px;
  border-top: 1px solid #e1e2f0;
  border-bottom: 1px solid #e1e2f0;
  margin-left: 200px;
  max-width: 400px;
  flex-direction: column;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s3 .accept-comments {
    margin-left: 5px;
    width: calc(100% - 10px);
    max-width: none;
  }
}
.projects-flow .create-survey-s3 .accept-comments .google-review-options {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.projects-flow .create-survey-s3 .accept-comments .google-review-options .radio-wrapper {
  display: flex;
  margin-bottom: 5px;
}

.projects-flow .create-survey-s3 .accept-comments .google-review-options .radio-wrapper label {
  margin: 0 0 0 10px;
  display: inline;
}

.projects-flow .create-survey-s3 .accept-comments .google-review-options .radio-wrapper input[type=radio] {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  accent-color: #000fe3;
}

.projects-flow .create-survey-s3 .accept-comments .mini-toggle {
  margin-top: 5px;
}

.projects-flow .create-survey-s3 .accept-comments .flex-wrap {
  display: flex;
  width: 100%;
}

.projects-flow .create-survey-s3 .accept-comments .permissions-wrap {
  display: none;
  width: 100%;
}

.projects-flow .create-survey-s3 .accept-comments .permissions-wrap.active {
  display: block;
  margin-top: 15px;
}

.projects-flow .create-survey-s3 .accept-comments .permissions-wrap .toggle-wrapper {
  align-items: normal;
}

.projects-flow .create-survey-s3 .accept-comments .permissions-wrap .toggle-wrapper.no-padding {
  padding-bottom: 0;
}

.projects-flow .create-survey-s3 .accept-comments .permissions-wrap .toggle-wrapper .description {
  font-size: 15px;
  position: relative;
}

.projects-flow .create-survey-s3 .accept-comments .permissions-wrap .toggle-wrapper .description .label {
  font-size: 16px;
}

.projects-flow .create-survey-s3 .accept-comments .permissions-wrap .toggle-wrapper .description .tooltip-wrap {
  top: -2px;
  right: -24px;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s3 .accept-comments .permissions-wrap .toggle-wrapper .description .tooltip-wrap {
    right: -20px;
  }
}
.projects-flow .create-survey-s3 .accept-comments .permissions-wrap .description {
  width: 100%;
}

.projects-flow .create-survey-s3 .accept-comments .permissions-wrap .description .label {
  position: relative;
  width: fit-content;
}

.projects-flow .create-survey-s3 .accept-comments .permissions-wrap .description .google-input {
  display: flex;
  flex-direction: column;
}

.projects-flow .create-survey-s3 .accept-comments .permissions-wrap .description .google-input input {
  width: 100%;
  margin: 10px 0 5px 0;
  padding: 6px 10px;
  border: 1px solid #bcbed4;
}

.projects-flow .create-survey-s3 .accept-comments .permissions-wrap .description .google-input:disabled input {
  background: #f9f9fc;
  color: #bcbed4;
}

.projects-flow .create-survey-s3 .survey-questions {
  align-items: baseline;
  width: 100%;
}

.projects-flow .create-survey-s3 .survey-questions .add-question {
  margin: -20px 0px 20px 202px;
  border: none;
  padding: 8px 0 2px 0;
  border-radius: 0;
  transition: all 0s;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s3 .survey-questions .add-question {
    margin-left: 5px;
  }
}
.projects-flow .create-survey-s3 .survey-questions .add-question:hover {
  background: none;
  border-bottom: 1px solid #00054d;
  box-shadow: none;
}

.projects-flow .create-survey-s3 .survey-questions .add-question::after {
  content: "+";
  font-size: 22px;
  margin-left: 5px;
}

.projects-flow .create-survey-s3 .survey-questions .remove {
  margin-left: -5px;
  margin-right: -30px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s3 .survey-questions .remove {
    position: absolute;
    right: 35px;
    top: 30px;
  }
}
.projects-flow .create-survey-s3 .survey-questions .remove:hover {
  color: #c70a2a;
}

.projects-flow .create-survey-s3 .survey-questions .hide-remove-button .remove {
  display: none;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap {
  flex-direction: column;
  display: flex;
  width: 100%;
  padding-bottom: 20px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #ffffff;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap.error {
  margin-top: 20px;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap {
  width: 100%;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .custom-submit-wrap {
  padding: 3px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #bcbed4;
  position: sticky;
  height: 42px;
  background: #ffffff;
  bottom: 0;
  width: 100%;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .custom-submit-wrap .flex-wrapper {
  display: flex;
  width: 100%;
  padding: 0;
  height: 42px;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .custom-submit-wrap input {
  height: 35px;
  min-height: unset;
  font-size: 15px;
  border: 1px solid #bcbed4;
  border-right: none;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .custom-submit-wrap input::placeholder {
  color: #8e8e8e;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .custom-submit-wrap .submit-category {
  width: 45px;
  min-width: unset;
  height: 35px;
  margin-left: 0px;
  border-radius: 0 4px 4px 0;
  position: relative;
  border: 1px solid #bcbed4;
  border-left: none;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .custom-submit-wrap .submit-category.disabled {
  opacity: 1;
  background: linear-gradient(282deg, rgba(0, 15, 227, 0.4), rgba(157, 58, 255, 0.4));
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .custom-submit-wrap .submit-category:after {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border-bottom: 4px solid;
  border-left: 4px solid;
  transform: rotate(225deg);
  transition: all 0.4s;
  position: absolute;
  top: 12px;
  left: 14px;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .custom-submit-wrap .error {
  display: none;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .custom-submit-wrap.show-error {
  overflow: visible;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .custom-submit-wrap.show-error .error {
  display: block;
  position: absolute;
  background: #c70a2a;
  color: #ffffff;
  top: -46px;
  left: 4px;
  border-radius: 5px;
  line-height: 11px;
  padding: 10px;
  overflow: visible;
  margin: 0;
  box-shadow: 0 3px 10px 0px #6d6f94;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .custom-submit-wrap.show-error .error:after {
  content: " ";
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #c70a2a transparent transparent transparent;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .survey-question-selector .mock-select .delete-category {
  display: none;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .survey-question-selector .mock-option {
  position: relative;
  overflow: visible;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .survey-question-selector .mock-option .tooltip-wrap {
  position: relative;
  overflow: visible;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .survey-question-selector .mock-option .tooltip-wrap .sb-tooltip {
  display: none;
  background: white;
  padding: 10px;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .survey-question-selector .mock-option .tooltip-wrap:hover .sb-tooltip {
  display: block;
  position: absolute;
  overflow: visible;
  height: 28px;
  font-weight: 600;
  font-size: 15px;
  top: 1px;
  right: 42px;
  line-height: 5px;
  width: 140px;
  display: flex;
  justify-content: center;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .survey-question-selector .mock-option .tooltip-wrap:hover .sb-tooltip:hover {
  color: #646464;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .survey-question-selector .mock-option .tooltip-wrap:hover .sb-tooltip:before {
  content: " ";
  position: absolute;
  top: 6px;
  right: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0px 7px 7px;
  border-color: transparent transparent transparent #cbccd5;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .survey-question-selector .mock-option .tooltip-wrap:hover .sb-tooltip:after {
  content: " ";
  position: absolute;
  top: 6px;
  right: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0px 7px 7px;
  border-color: transparent transparent transparent #ffffff;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .survey-question-selector .mock-option.active:hover .glyphicons-remove-sign {
  color: #ffffff;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .survey-question-selector .mock-option.active:hover .glyphicons-remove-sign:hover {
  color: #ffffff;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .survey-question-selector .mock-option:hover .glyphicons-remove-sign {
  display: flex;
  background: none;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .survey-question-selector .mock-option .glyphicons-remove-sign {
  position: absolute;
  right: 0;
  top: 0;
  display: none;
  align-items: center;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap .survey-question-selector .mock-option .glyphicons-remove-sign:hover {
  background: none;
  color: #c70a2a;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap:nth-child(1) .custom-select {
  z-index: 10;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap:nth-child(2) .custom-select {
  z-index: 9;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap:nth-child(3) .custom-select {
  z-index: 8;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap:nth-child(4) .custom-select {
  z-index: 7;
}

.projects-flow .create-survey-s3 .survey-questions .questions-wrap .question-wrap:nth-child(5) .custom-select {
  z-index: 6;
}

.projects-flow .create-survey-s4 {
  margin: 0 auto;
  max-width: 800px;
}

.projects-flow .create-survey-s4 .table-wrap {
  overflow: auto;
  max-width: 100%;
  margin: 0 30px 0 10px;
  display: block;
  width: calc(100% - 20px);
}

.projects-flow .create-survey-s4 .table-wrap table {
  width: 100%;
}

.projects-flow .create-survey-s4 .table-wrap table label {
  margin-top: 0;
}

.projects-flow .create-survey-s4 .table-wrap table thead {
  font-weight: bold;
  border-bottom: 1px solid #bcbed4;
}

.projects-flow .create-survey-s4 .table-wrap table tbody tr {
  border-bottom: 1px solid #bcbed4;
  position: relative;
}

.projects-flow .create-survey-s4 .table-wrap table tbody tr:nth-child(odd) {
  background-color: #f9f9fc;
}

.projects-flow .create-survey-s4 .table-wrap table tbody tr .tooltip-wrap {
  right: unset;
  left: 10px;
}

.projects-flow .create-survey-s4 .table-wrap table tbody tr .tooltip-wrap .sb-tooltip {
  left: 30px;
  text-align: center;
  top: 0;
  height: 30px;
  line-height: 7px;
}

.projects-flow .create-survey-s4 .table-wrap table tbody tr .tooltip-wrap .sb-tooltip::before {
  content: " ";
  top: 7px;
  left: -9px;
  right: unset;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #cbccd5 transparent transparent;
}

.projects-flow .create-survey-s4 .table-wrap table tbody tr .tooltip-wrap .sb-tooltip::after {
  content: " ";
  top: 7px;
  left: -7px;
  right: unset;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #fff transparent transparent;
}

.projects-flow .create-survey-s4 .error-contacts-table {
  margin-top: 20px;
}

.projects-flow .create-survey-s4 .manual-contacts {
  align-self: baseline;
  margin: 20px 0;
  width: 100%;
}

.projects-flow .create-survey-s4 .manual-contacts .contacts-wrap {
  margin-top: 30px;
}

.projects-flow .create-survey-s4 .manual-contacts .contact {
  display: flex;
  margin: 10px 0;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s4 .manual-contacts .contact {
    flex-direction: column;
  }
}
.projects-flow .create-survey-s4 .manual-contacts .contact .field-wrap {
  flex: 1;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s4 .manual-contacts .contact .field-wrap {
    margin: 0 0 5px 0;
  }
}
.projects-flow .create-survey-s4 .manual-contacts .contact .field-wrap input {
  border: 1px solid #e1e2f0;
  padding: 6px 8px;
  width: 100%;
}

.projects-flow .create-survey-s4 .manual-contacts .contact .field-wrap input.error {
  color: #000333;
}

.projects-flow .create-survey-s4 .manual-contacts .contact .field-wrap .error {
  margin: 0;
}

.projects-flow .create-survey-s4 .manual-contacts .contact .field-wrap:last-child {
  margin: 0;
}

.projects-flow .create-survey-s4 .manual-contacts .contact .remove {
  color: #6d6f94;
  margin: 7px -16px 0 0px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s4 .manual-contacts .contact .remove {
    position: absolute;
    right: 35px;
    top: 30px;
  }
}
.projects-flow .create-survey-s4 .manual-contacts .contact .remove:hover {
  color: #c70a2a;
}

.projects-flow .create-survey-s4 .manual-contacts .add-contact {
  border: none;
  padding: 0;
  border-radius: 0;
  transition: all 0s;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-s4 .manual-contacts .add-contact {
    margin-left: 5px;
  }
}
.projects-flow .create-survey-s4 .manual-contacts .add-contact:hover {
  background: none;
  border-bottom: 1px solid #00054d;
}

.projects-flow .create-survey-s4 .manual-contacts .add-contact::after {
  content: "+";
  font-size: 22px;
  margin-left: 5px;
}

.projects-flow .create-survey-review {
  margin: 0 auto;
  max-width: 800px;
}

.projects-flow .create-survey-review .review-description {
  line-height: 32px;
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
}

.projects-flow .create-survey-review h3 {
  margin-bottom: 10px;
}

.projects-flow .create-survey-review h3 a {
  font-size: 16px;
  font-weight: normal;
}

.projects-flow .create-survey-review p {
  text-align: left;
}

.projects-flow .create-survey-review .triggers {
  margin: 10px 0 30px 0;
  border: 1px solid #e1e2f0;
}

.projects-flow .create-survey-review .triggers .trigger {
  padding: 15px 8px 10px 8px;
  border-bottom: 1px solid #e1e2f0;
}

.projects-flow .create-survey-review .triggers .trigger:last-child {
  border-bottom: none;
}

.projects-flow .create-survey-review .triggers .trigger:nth-child(odd) {
  background-color: #f9f9fc;
}

.projects-flow .create-survey-review .triggers .trigger .underline {
  border-bottom: 1px solid #3a3c66;
}

.projects-flow .create-survey-review .triggers .trigger .chip {
  padding: 0px 9px 3px 8px;
  background-color: #1f214d;
  color: #ffffff;
  border-radius: 9px;
  margin: 0 auto 5px auto;
  display: inline-block;
}

.projects-flow .create-survey-review .triggers .trigger strong {
  color: #007b80;
}

.projects-flow .create-survey-review .table-wrap {
  max-width: 100%;
  overflow: auto;
  padding: 0 1px;
}

.projects-flow .create-survey-review .table-wrap table {
  width: 100%;
  margin-bottom: 30px;
}

.projects-flow .create-survey-review .table-wrap table label {
  margin-top: 0;
}

.projects-flow .create-survey-review .table-wrap table thead {
  font-weight: bold;
  border-bottom: 1px solid #bcbed4;
}

.projects-flow .create-survey-review .table-wrap table tbody {
  border: 1px solid #e1e2f0;
}

.projects-flow .create-survey-review .table-wrap table tbody tr {
  border-bottom: 1px solid #bcbed4;
}

.projects-flow .create-survey-review .table-wrap table tbody tr:last-child {
  border-bottom: none;
}

.projects-flow .create-survey-review .table-wrap table tbody tr:nth-child(odd) {
  background-color: #f9f9fc;
}

.projects-flow .create-survey-review .save-alert {
  padding: 20px;
  background-color: #fffdf7;
  color: #b07d00;
  border: 1px solid #b07d00;
  font-size: 20px;
  text-align: center;
  border-radius: 15px;
  margin: 30px auto 30px auto;
  box-shadow: 0 6px 16px 0 rgba(109, 111, 148, 0.5);
}

.projects-flow .create-survey-review .save-alert img {
  filter: hue-rotate(64deg) brightness(1.6);
  width: 35px;
  margin-bottom: 10px;
}

.projects-flow .create-survey-review .save-alert .underline {
  border-bottom: 1px solid #ffffff;
}

.projects-flow .create-survey-review .preview-buttons-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-review .preview-buttons-wrap {
    flex-direction: column;
    margin: 20px 0;
  }
}
.projects-flow .create-survey-review .preview-buttons-wrap button:first-child {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-review .preview-buttons-wrap button:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .projects-flow .create-survey-review .preview-buttons-wrap button {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .projects-flow .create-survey-review .controls {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .projects-flow .create-survey-review .controls .button-wrap {
    width: 100%;
  }
}
.projects-flow .create-survey-review .controls .button-wrap button {
  height: 60px;
  font-size: 22px;
  width: 280px;
  font-weight: 400;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .projects-flow .create-survey-review .controls .button-wrap button {
    width: 100%;
    margin: 0;
  }
}
.projects-flow .create-survey-review .controls .button-wrap button:not(.loading)::after {
  display: none !important;
}

.projects-flow .disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.projects-flow .locked {
  pointer-events: none;
  cursor: cell;
}

.projects-flow .error:not(input, textarea, select) {
  color: #c70a2a;
  font-size: 15px;
  align-self: flex-start;
  margin-left: 200px;
}

@media (max-width: 768px) {
  .projects-flow .error:not(input, textarea, select) {
    margin-left: 0;
  }
}
.projects-flow .error:not(input, textarea, select).questions {
  margin: 10px 0 20px 0;
  padding: 0 5px 5px 5px;
  text-align: center;
  width: 100%;
}

.projects-flow .error:not(input, textarea, select).questions-wrap {
  margin: 0;
}

.projects-flow .sb-modal-upload {
  font-family: sofia-pro, Arial, sans-serif;
}

.projects-flow .sb-modal-upload .modal-close-text {
  display: none;
}

.projects-flow .sb-modal-upload__select {
  flex-wrap: wrap;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 250px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-top: 10px;
  padding: 20px 0px;
  margin-bottom: 50px;
  margin-left: 10px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .projects-flow .sb-modal-upload__select {
    margin: 0;
    background: #ffffff;
  }
}
.projects-flow .sb-modal-upload__select-item {
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-origin: content-box;
  width: 110px;
  height: 110px;
  border: 1px solid #bcbed4;
  margin: 3px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .projects-flow .sb-modal-upload__select-item {
    width: calc(33.3333333333vw - 10px);
    height: calc(33.3333333333vw - 10px);
  }
  .projects-flow .sb-modal-upload__select-item.hide-mobile {
    display: none;
  }
}
.projects-flow .sb-modal-upload__select-item:hover {
  border: 1px solid #00054d;
}

.projects-flow .sb-modal-upload__show-more {
  color: #00054d;
  font-size: 14px;
  font-family: sofia-pro, Arial, sans-serif;
  float: right;
  margin-right: 10px;
  margin-bottom: 20px;
  font-weight: normal;
  display: none;
}

@media (max-width: 768px) {
  .projects-flow .sb-modal-upload__show-more {
    display: block;
  }
}
.projects-flow .sb-modal-upload .sb-modal__wrap {
  width: 775px;
}

.projects-flow .sb-modal-upload .sb-modal__header {
  font-size: 30px;
  color: rgba(29, 29, 27, 0.87);
}

@media (max-width: 768px) {
  .projects-flow .sb-modal-upload .sb-modal__header {
    border-bottom: none;
  }
  .projects-flow .sb-modal-upload .sb-modal__header .modal-title_js {
    display: none;
  }
}
.projects-flow .sb-modal-upload__upload {
  font-weight: 600;
  border-bottom: 1px solid #bcbed4;
  cursor: pointer;
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(29, 29, 27, 0.87);
  transition: all 0.3s;
}

.projects-flow .sb-modal-upload__upload:hover {
  background-color: #f9f9fc;
}

@media (max-width: 768px) {
  .projects-flow .sb-modal-upload__upload {
    height: auto;
  }
  .projects-flow .sb-modal-upload__upload a {
    padding: 40px;
    margin: 20px 10px;
    background: #f9f9fc;
    width: 100%;
  }
}
.projects-flow .survey-preview-modal {
  margin-top: 0;
}

.projects-flow .survey-preview-modal .sb-modal__header {
  border: none;
  color: #ffffff;
  padding: 0 0 10px 0;
  font-size: 23px;
  font-weight: 600;
}

.projects-flow .survey-preview-modal .sb-modal__header .modal-title_js {
  border-bottom: 2px solid #ffffff;
}

.projects-flow .survey-preview-modal .sb-modal__header .edit-link {
  position: absolute;
  left: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  top: 6px;
}

.projects-flow .survey-preview-modal .sb-modal__header .edit-link:before {
  content: "‹";
  position: absolute;
  left: -10px;
  top: -2px;
}

.projects-flow .survey-preview-modal .sb-modal__header .glyphicons-remove {
  border-radius: 20px;
  color: #ffffff;
  top: 5px;
  right: -15px;
  background: none;
  border: 2px solid #fff;
  height: 26px;
  width: 26px;
  font-size: 16px;
  line-height: 22px !important;
}

@media (max-width: 768px) {
  .projects-flow .survey-preview-modal .sb-modal__header .glyphicons-remove {
    top: 6px;
    right: 6px;
  }
}
.projects-flow .survey-preview-modal .sb-modal__header .glyphicons-remove:hover {
  background: linear-gradient(282deg, #000fe3, #9d3aff);
}

.projects-flow .survey-preview-modal .sb-modal__bg {
  background-color: rgba(0, 0, 0, 0.7);
}

.projects-flow .survey-preview-modal .sb-modal__wrap {
  padding: 0px;
  width: calc(100vw - 60px);
  height: calc(100vh - 60px);
  max-width: 1000px;
  max-height: 1000px;
  margin-top: 0px;
  background: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .projects-flow .survey-preview-modal .sb-modal__wrap {
    padding: 20px 0;
  }
}
.projects-flow .survey-preview-modal .sb-modal__content {
  background: none;
}

.projects-flow .survey-preview-modal .sb-modal__content::-webkit-scrollbar {
  width: 5px;
}

.projects-flow .survey-preview-modal .sb-modal__content::-webkit-scrollbar-track {
  background: #bcbcc1;
}

.projects-flow .survey-preview-modal .sb-modal__content::-webkit-scrollbar-thumb {
  background-color: #007b80;
  border-radius: 5px;
  cursor: pointer;
}

.projects-flow .survey-preview-modal iframe {
  width: 100%;
  height: calc(100vh - 90px);
  border: 1px solid #bcbed4;
  border-radius: 25px;
  box-shadow: 0 0px 10px 0 rgba(109, 111, 148, 0.5);
  background: white;
}

.projects-flow .delete-category-modal .body, .projects-flow .generic-error-modal .body {
  font-size: 20px;
  margin: 20px 0;
  font-weight: normal;
}

.projects-flow .delete-category-modal .note, .projects-flow .generic-error-modal .note {
  color: inherit;
  font-weight: normal;
}

.projects-flow .delete-category-modal .buttons, .projects-flow .generic-error-modal .buttons {
  display: flex;
  justify-content: center;
}

.projects-flow .delete-category-modal .buttons button, .projects-flow .generic-error-modal .buttons button {
  margin: 20px 5px;
}

.projects-flow .sb-modal__content {
  padding: 0;
  background: white;
}

@media (max-width: 768px) {
  .projects-flow .sb-modal__content {
    width: 100%;
  }
}
.projects-flow .sb-modal__content .failed-endpoints {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.projects-flow .sb-modal__content .failed-endpoints .endpoint {
  font-weight: bold;
}

@media (max-width: 768px) {
  .projects-flow .sb-modal__wrap {
    margin: 4px !important;
    width: calc(100% - 8px) !important;
  }
}
.projects-flow .sb-modal__header .glyphicons-remove {
  background: linear-gradient(282deg, #000fe3, #9d3aff);
  border-radius: 20px;
  width: 30px;
  height: 30px;
  right: 10px;
  top: 8px;
}

.projects-flow .sb-modal__header .glyphicons-remove:hover {
  box-shadow: 0 6px 16px 0 rgba(109, 111, 148, 0.5);
}

.projects-flow .sb-modal__header .glyphicons-remove:before {
  color: #ffffff;
  width: 19px;
}

.projects-flow .sb-modal.leave .sb-modal__header {
  border: none;
}

.projects-flow .sb-modal.leave .sb-modal__wrap {
  width: 100%;
  max-width: 550px;
}

.projects-flow .sb-modal.leave .sb-modal__wrap .confirm-buttons {
  align-items: center;
}

.projects-flow .sb-modal.leave .sb-modal__wrap .confirm-buttons .button-secondary {
  margin: 0 10px;
}

.projects-flow .sb-modal.leave .nps-footer-hint {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.86;
  letter-spacing: 0.23px;
  color: #6d6f94;
  padding-bottom: 20px;
}

.projects-flow .sb-modal.leave .nps-footer-hint .confirm-msg_js b {
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0.23px;
  text-align: center;
  color: #3a3c66;
}

.projects-flow .no-events {
  cursor: pointer;
  pointer-events: none;
}

.projects-flow .alert-box {
  margin: 0;
  padding: 30px;
  background-color: #fffdf7;
  color: #b07d00;
  border: 1px solid #b07d00;
  font-size: 20px;
  text-align: center;
  border-radius: 15px;
  margin: 40px auto 10px auto;
  box-shadow: 0 6px 16px 0 rgba(109, 111, 148, 0.5);
  max-width: 590px;
}

.project-survey {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  font-family: sofia-pro, Arial, sans-serif;
}

.project-survey .survey-wrap .survey-name {
  font-weight: 400;
  padding: 0 20px;
  text-align: center;
}

.project-survey .header {
  height: 130px;
  display: flex;
  align-items: center;
  background: white;
  width: 100%;
  justify-content: end;
  flex-direction: column;
  font-weight: bold;
  color: #3a3c66;
}

.project-survey .header img {
  max-width: 100%;
  max-height: 90px;
}

.project-survey .frames {
  scroll-snap-type: x mandatory;
  overflow: hidden;
  display: flex;
  background: linear-gradient(to bottom, #ffffff, #f9f9fc);
  font-weight: 300;
}

@media (max-width: 768px) {
  .project-survey .frames {
    min-height: calc(100vh - 240px);
  }
}
.project-survey .frames .frame {
  min-width: 100vw;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 40px;
  scroll-snap-align: center;
  justify-content: center;
  margin-bottom: 110px;
  min-height: calc(100vh - 240px);
}

@media (max-width: 768px) {
  .project-survey .frames .frame {
    padding: 0 10px;
    margin-bottom: 150px;
  }
}
@media (max-width: 768px) {
  .project-survey .frames .frame.question {
    justify-content: flex-start;
    margin-top: 80px;
  }
}
.project-survey .frames .frame .card {
  width: 100%;
  max-width: 1100px;
  padding: 20px;
  margin: 20px auto;
  background: linear-gradient(to bottom, #ffffff, #f9f9fc);
  box-shadow: 0 3px 6px 2px #bcbed4;
  min-height: 220px;
  display: flex;
  justify-content: center;
  position: relative;
}

@media (max-width: 768px) {
  .project-survey .frames .frame .card {
    padding: 10px;
    min-height: 200px;
  }
}
.project-survey .frames .frame .card .intro {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex: 1;
  max-height: 200px;
}

@media (max-width: 768px) {
  .project-survey .frames .frame .card .intro {
    padding-bottom: 10px;
    max-height: unset;
  }
}
.project-survey .frames .frame .card .intro h2 {
  line-height: 36px;
  font-weight: normal;
  margin-bottom: 0;
  min-height: 40px;
}

.project-survey .frames .frame .card .intro img {
  margin-bottom: 20px;
  max-width: 200px;
  max-height: 90px;
}

.project-survey .frames .frame .card .intro p {
  font-size: 19px;
  margin: 0;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-survey .frames .frame .card .intro .arrow {
  width: 10px;
  height: 10px;
  display: block;
  margin: 4px auto 0px auto;
  border-right: 2px solid;
  border-bottom: 2px solid;
  animation: MoveUpDown 1.8s cubic-bezier(0.47, 0.13, 0.63, 1.05) infinite;
}

@keyframes MoveUpDown {
  0%, 100% {
    transform: rotate(45deg) translate(0px, 0px);
  }
  50% {
    transform: rotate(45deg) translate(4px, 4px);
  }
}
.project-survey .frames .frame .card .question .title {
  font-size: 22px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .project-survey .frames .frame .card .question .title {
    margin-bottom: 60px;
  }
}
.project-survey .frames .frame .card .question .title .category {
  font-weight: bold;
  text-decoration: underline;
  white-space: nowrap;
}

.project-survey .frames .frame .card .question .options {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: normal;
}

.project-survey .frames .frame .card .question .options .options-label.left {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .project-survey .frames .frame .card .question .options .options-label.left {
    position: absolute;
    left: 0px;
    top: -30px;
  }
}
.project-survey .frames .frame .card .question .options .options-label.right {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .project-survey .frames .frame .card .question .options .options-label.right {
    position: absolute;
    right: 0px;
    top: -30px;
  }
}
.project-survey .frames .frame .card .question .options .option {
  background: #00054d;
  color: #ffffff;
  margin: 0 10px;
  cursor: pointer;
  font-weight: 400;
  font-size: 20px;
  width: 40px;
  border-radius: 20px;
  height: 40px;
  line-height: 37px;
  transition: all 0.2s;
  outline-offset: 3px;
  position: relative;
}

@media (max-width: 768px) {
  .project-survey .frames .frame .card .question .options .option {
    width: 35px;
    height: 35px;
    line-height: 32px;
  }
}
.project-survey .frames .frame .card .question .options .option:hover .outline, .project-survey .frames .frame .card .question .options .option.selected .outline {
  transform: scale(1.2);
  transition: all 0.1s;
}

.project-survey .frames .frame .card .question .options .option .outline {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  border-style: solid;
  border-width: 2px;
  border-radius: 20px;
  transition: all 0.65s;
}

@media (max-width: 768px) {
  .project-survey .frames .frame .card .question .options .option .outline {
    width: 35px;
    height: 35px;
  }
}
.project-survey .frames .frame .card .sub-controls {
  bottom: -40px;
  width: calc(100% - 40px);
  position: absolute;
  text-align: right;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .project-survey .frames .frame .card .sub-controls {
    width: calc(100% - 20px);
  }
}
.project-survey .frames .frame .card .sub-controls button {
  border: none;
  background: none;
  color: #3a3c66;
  border-bottom: 1px solid #3a3c66;
  height: 26px;
  padding: 0;
  line-height: 30px;
}

.project-survey .frames .frame.comment h2 {
  font-weight: normal;
  margin-bottom: 20px;
}

.project-survey .frames .frame.comment h2 span {
  font-weight: bold;
}

.project-survey .frames .frame.comment textarea {
  height: 100px;
  padding: 10px 15px;
  resize: none;
  border-radius: 5px;
  border: 1px solid #6d6f94;
  width: 100%;
  max-width: 1000px;
}

.project-survey .frames .frame.comment .char-count {
  text-align: right;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 14px;
}

.project-survey .frames .frame.comment .marketing-permissions {
  width: 100%;
  max-width: 1000px;
  margin: -30px auto 0 auto;
}

.project-survey .frames .frame.comment .marketing-permissions .checkbox-wrapper {
  font-size: 15px;
  margin-top: 10px;
  color: #3a3c66;
}

.project-survey .frames .frame.comment .marketing-permissions .checkbox-wrapper label {
  max-width: calc(100% - 100px);
}

.project-survey .frames .frame.comment .marketing-permissions .checkbox-wrapper [type=checkbox]:checked + label:before {
  background-color: var(--color) !important;
  border-color: var(--color) !important;
  font-size: 40px;
}

.project-survey .frames .frame.comment .marketing-permissions .google-disclaimer {
  margin-top: 0;
  color: #3a3c66;
  opacity: 1;
}

.project-survey .frames .frame.comment input.hide-above {
  left: unset;
  top: -999px;
}

.project-survey .frames .frame.comment button.submit {
  margin: 10px auto 0 auto;
}

.project-survey .frames .frame.thank-you h2 {
  font-weight: normal;
}

.project-survey .frames .frame.thank-you img {
  max-width: 240px;
  margin: 0 auto 20px auto;
}

.project-survey .survey-footer {
  display: flex;
  position: fixed;
  bottom: 0;
  width: 100vw;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  box-shadow: 0 0px 6px 2px #bcbed4;
}

@media (max-width: 768px) {
  .project-survey .survey-footer {
    padding: 30px 10px;
  }
}
.project-survey .survey-footer .completion-progress {
  width: 200px;
  justify-content: left;
  align-items: center;
  font-weight: bold;
}

@media (max-width: 768px) {
  .project-survey .survey-footer .completion-progress .question {
    display: block;
  }
}
.project-survey .survey-footer .button-wrapper {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .project-survey .survey-footer .button-wrapper {
    width: auto;
  }
}
@media (max-width: 768px) {
  .project-survey .survey-footer .button-wrapper button {
    min-width: 100px;
  }
}
.project-survey .survey-footer .button-wrapper .previous {
  border: none;
  background: none;
  color: #000a9f;
  border-bottom: 1px solid #000a9f;
  margin-right: 20px;
  height: 26px;
  padding: 0;
  line-height: 30px;
}

.project-survey .survey-footer .button-wrapper .previous.disabled {
  display: none;
}

.project-survey .survey-footer .powered-by {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 11px;
  justify-content: center;
}

.project-survey .survey-footer .powered-by img {
  width: 90px;
}

.survey-preview {
  font-family: sofia-pro, Arial, sans-serif;
}

.survey-preview .title-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -10px 0 20px 0;
}

.survey-preview .title-wrapper .title {
  font-size: 20px;
  color: #00054d;
  border-bottom: 2px solid #00054d;
  font-weight: bold;
  text-align: center;
}

.survey-preview .iframe-wrapper {
  width: 100%;
  box-shadow: 0 6px 24px 2px #6d6f94;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #6d6f94;
}

.survey-preview .iframe-wrapper iframe {
  width: 100%;
  height: calc(100vh - 250px);
  border: 0;
}

.survey-preview .bottom-controls {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.survey-preview .bottom-controls a {
  margin: 0 5px;
}

.survey-manager-body .survey-manager header.top {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager header.top {
    flex-direction: column;
  }
}
.survey-manager-body .survey-manager header.top .button-primary {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager header.top .button-primary {
    margin: 0 0 20px 0;
    width: 100%;
  }
}
.survey-manager-body .survey-manager header .survey-info {
  display: flex;
  align-items: center;
  width: 100%;
}

.survey-manager-body .survey-manager header .survey-info h1 {
  display: inline-block;
  margin: 0;
}

.survey-manager-body .survey-manager header .survey-info .divider {
  height: 40px;
  width: 2px;
  background: #00054d;
  display: inline-block;
  margin: 0 20px;
}

.survey-manager-body .survey-manager header .survey-info .draft-survey-controls {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.survey-manager-body .survey-manager header .survey-info .draft-survey-controls .delete-survey {
  background: #c70a2a;
  border: none;
  margin-right: 10px;
  min-width: unset;
  padding: 10px 16px;
}

.survey-manager-body .survey-manager header .survey-selector {
  width: 500px;
  margin-right: 30px;
  height: 50px;
  z-index: 20;
}

@media (max-width: 1024px) {
  .survey-manager-body .survey-manager header .survey-selector {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .survey-manager-body .survey-manager header .survey-selector {
    width: calc(100% - 40px);
    margin-right: 10px;
  }
}
.survey-manager-body .survey-manager header .survey-selector img {
  width: 15px;
  right: 20px;
  top: 22px;
}

.survey-manager-body .survey-manager header .survey-selector .mock-select {
  color: #00000f;
  font-size: 20px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
}

.survey-manager-body .survey-manager header .survey-selector .mock-select:after {
  position: absolute;
  content: "";
  top: 2px;
  right: 1px;
  width: 110px;
  height: 46px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 60%);
}

.survey-manager-body .survey-manager header .survey-selector .mock-select.active {
  border: solid 1px #bcbed4;
}

.survey-manager-body .survey-manager header .survey-selector .mock-options {
  top: 50px;
  border-radius: 0 0 8px 8px;
}

.survey-manager-body .survey-manager header .survey-selector .mock-options div {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  height: auto;
}

.survey-manager-body .survey-manager header .survey-selector .mock-options div[data-draft=True]::after {
  content: "(Draft)";
  color: #c70a2a;
  margin-left: 5px;
  font-weight: bold;
}

.survey-manager-body .survey-manager header .survey-selector .mock-options div.active[data-draft=True]::after {
  color: #ffffff;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .metrics-header-wrap.global .metrics-wrap {
    height: 294px;
  }
}
.survey-manager-body .survey-manager .metrics-header-wrap.global .metrics-wrap .metrics .card {
  width: calc(20% - 24px);
  max-width: none;
}

.survey-manager-body .survey-manager .metrics-header-wrap.global .metrics-wrap .metrics .card.response-rate {
  margin-right: 0;
}

@media (max-width: 1024px) {
  .survey-manager-body .survey-manager .metrics-header-wrap.global .metrics-wrap .metrics .card {
    width: 100%;
    max-width: none;
    min-height: auto;
    margin-left: 5px;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .survey-manager-body .survey-manager .metrics-header-wrap.global .metrics-wrap .metrics .card {
    flex-direction: row;
    margin-left: 0;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .survey-manager-body .survey-manager .metrics-header-wrap.global .metrics-wrap .metrics .card .card__main-score {
    font-size: 35px;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey h2 {
  margin-bottom: 30px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey header {
  margin-bottom: 30px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey header .survey-status {
  font-size: 19px;
  color: #007b80;
  margin-top: -3px;
  margin-right: 30px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey header .survey-status.paused {
  color: #b07d00;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey header .survey-status.draft {
  color: #c70a2a;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey header .survey-status {
    display: none;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey header .survey-status .deployments, .survey-manager-body .survey-manager .survey-wrapper .active-survey header .survey-status .type {
  display: block;
  font-size: 16px;
  margin-top: -3px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey header .survey-status .status {
  text-transform: capitalize;
  font-weight: bold;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey header .settings-toggle-wrap {
  margin-top: 7px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey header .settings-toggle-wrap .label {
  text-align: right;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings {
  overflow: visible;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings.disabled {
  display: none;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings input[type=text] {
  border: 1px solid #bcbed4;
  padding: 5px 8px;
  width: 440px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings.no-transition {
  overflow: visible;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings.hide {
  overflow: hidden;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .divider {
  margin: 0 10px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .edit-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: 10px;
  margin-top: 5px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .mini-toggle {
  margin: 5px 0;
  font-size: 18px;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .mini-toggle {
    margin: 0;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .mini-toggle .description {
  margin-left: 40px;
  font-size: 16px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings h3 {
  margin: 10px 0;
  font-size: 17px;
  font-weight: bold;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .survey-status-toggle-wrap {
  display: flex;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .survey-status-toggle-wrap .toggle-wrapper {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .survey-status-toggle-wrap .toggle-wrapper .description {
  font-weight: bold;
  color: #007b80;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .survey-status-toggle-wrap .toggle-wrapper .description.paused {
  color: #b07d00;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options {
  width: 100%;
  border-top: 1px solid #e1e2f0;
  padding-top: 10px;
  margin-top: 10px;
  border-bottom: 1px solid #e1e2f0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .custom-select, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .custom-select {
  max-width: 400px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .error, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .error {
  width: 100%;
  margin-left: 0;
  text-align: left;
  margin-top: 10px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .description.project-status-desc, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .description.project-status-desc {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .description.project-status-desc, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .description.project-status-desc {
    align-items: flex-start;
    flex-direction: column;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .description.disabled, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .description.disabled {
  opacity: 1;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .description.disabled .project-phase-wrapper,
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .description.disabled .phase-status-wrapper,
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .description.disabled .project-status-wrapper, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .description.disabled .project-phase-wrapper,
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .description.disabled .phase-status-wrapper,
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .description.disabled .project-status-wrapper {
  opacity: 0.4;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .description, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .description {
    width: 100%;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .project-status-toggle-wrap, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .project-status-toggle-wrap {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .project-status-toggle-wrap, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .project-status-toggle-wrap {
    width: 100%;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .project-status-toggle-wrap.triggered, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .project-status-toggle-wrap.triggered {
  pointer-events: none;
  cursor: default;
  position: relative;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .project-status-toggle-wrap.triggered > div, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .project-status-toggle-wrap.triggered > div {
  opacity: 0.4;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .project-status-toggle-wrap.triggered::after, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .project-status-toggle-wrap.triggered::after {
  content: " ";
  background-image: url("/static/icons/checkmark-white.svg");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 2px 2px;
  position: absolute;
  right: 4px;
  top: 5px;
  background-color: #007b80;
  width: 17px;
  height: 17px;
  border-radius: 20px;
  padding: 4px;
  left: 0px;
  top: 7px;
  width: 28px;
  height: 28px;
  background-position: 6px 6px;
  background-size: 17px;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .project-status-toggle-wrap.triggered::after, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .project-status-toggle-wrap.triggered::after {
    top: 0;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .project-status-toggle-wrap .project-status-wrapper, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .project-status-toggle-wrap .project-status-wrapper {
  width: 305px;
  margin-left: 10px;
  z-index: 8;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .project-status-toggle-wrap .project-status-wrapper, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .project-status-toggle-wrap .project-status-wrapper {
    margin: 0;
    width: 100%;
    max-width: none;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap {
    width: 100%;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap.all-triggered, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap.all-triggered {
  pointer-events: none;
  position: relative;
  max-width: 600px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap.all-triggered .mini-toggle, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap.all-triggered .label, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap.all-triggered .status-wrap, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap.all-triggered .custom-select, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap.all-triggered .mini-toggle, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap.all-triggered .label, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap.all-triggered .status-wrap, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap.all-triggered .custom-select {
  opacity: 0.4;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap.all-triggered .selectize-input, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap.all-triggered .selectize-input {
  pointer-events: none;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap.all-triggered .selectize-input input, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap.all-triggered .selectize-input input {
  display: none !important;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap.all-triggered::after, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap.all-triggered::after {
  content: " ";
  background-image: url("/static/icons/checkmark-white.svg");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 2px 2px;
  position: absolute;
  right: 4px;
  top: 5px;
  background-color: #007b80;
  width: 17px;
  height: 17px;
  border-radius: 20px;
  padding: 4px;
  left: 0px;
  top: -1px;
  width: 28px;
  height: 28px;
  background-position: 6px 6px;
  background-size: 17px;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap.all-triggered::after, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap.all-triggered::after {
    top: 0;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .selectize-input, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .selectize-input {
  width: 410px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .selectize-input input::placeholder, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .selectize-input input::placeholder {
  color: #8e8e8e;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .selectize-input.has-items .triggered-chips, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .selectize-input.has-items .triggered-chips {
  padding: 7px 0 0 0 !important;
  border-top: 1px solid #e1e2f0;
  border-radius: 0;
  margin: 5px 0px 0 0;
  width: 100%;
  border-top: 1px solid #e1e2f0;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .selectize-input.has-options:not(.has-items) .triggered-chips, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .selectize-input.has-options:not(.has-items) .triggered-chips {
  padding: 7px 0 0 0 !important;
  border-top: 1px solid #e1e2f0;
  margin: 5px 0px 0 -5px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .selectize-input:not(.has-items):not(.has-options) .triggered-chips, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .selectize-input:not(.has-items):not(.has-options) .triggered-chips {
  margin-top: 0;
  padding-top: 0 !important;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .selectize-input:not(.has-items):not(.has-options) input[type=text], .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .selectize-input:not(.has-items):not(.has-options) input[type=text] {
  width: 100% !important;
  padding: 2px 3px !important;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .selectize-input .triggered-chips, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .selectize-input .triggered-chips {
  background: white;
  padding: 0 !important;
  float: left;
  clear: none;
  margin: 5px 0 -3px -5px;
  pointer-events: none;
  border-radius: 0;
  width: calc(100% + 10px);
  padding-top: 7px !important;
  font-size: 14px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .selectize-input .triggered-chips .chip, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .selectize-input .triggered-chips .chip {
  background-color: #bcbed4;
  padding: 2px 10px;
  margin-left: 5px;
  border-radius: 5px;
  line-height: 22px;
  padding-right: 29px !important;
  color: #FFFFFF;
  position: relative;
  cursor: default;
  pointer-events: none;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .selectize-input .triggered-chips .chip::after, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .selectize-input .triggered-chips .chip::after {
  content: " ";
  background-image: url("/static/icons/checkmark-white.svg");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 2px 2px;
  position: absolute;
  right: 4px;
  top: 5px;
  background-color: #007b80;
  width: 17px;
  height: 17px;
  border-radius: 20px;
  padding: 4px;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .selectize-input, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .selectize-input {
    width: 100%;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .mini-toggle, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .mini-toggle {
  margin-top: 0px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .status-wrap, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .status-wrap {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  max-width: 563px;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .status-wrap, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .status-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description {
    width: 100%;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description .label, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description .label {
  white-space: nowrap;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description .custom-select, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description .custom-select {
  margin: -5px 5px 0 5px;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description .custom-select, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description .custom-select {
    margin: 0;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description .project-phase-wrapper {
  height: auto;
  z-index: 7;
  margin-bottom: 8px;
  margin-left: 22px;
  margin-right: 0;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper input::placeholder, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description .project-phase-wrapper input::placeholder {
  color: #8e8e8e;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description .project-phase-wrapper {
    margin: 0;
    max-width: none;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input {
  min-height: 40px;
  overflow-y: auto;
  flex-direction: column;
  max-height: 150px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input.has-items, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input.has-items {
  font-size: 14px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input::-webkit-scrollbar, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input::-webkit-scrollbar {
  width: 5px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input::-webkit-scrollbar-track, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input::-webkit-scrollbar-track {
  background: #bcbcc1;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input::-webkit-scrollbar-thumb, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description .project-phase-wrapper .selectize-input::-webkit-scrollbar-thumb {
  background-color: #007b80;
  border-radius: 5px;
  cursor: pointer;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description .phase-status-wrapper, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description .phase-status-wrapper {
  width: 410px;
  min-width: 410px;
  margin-left: 20px;
  max-width: unset;
  margin-right: 0;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description .phase-status-wrapper, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description .phase-status-wrapper {
    margin: 0;
    width: 100%;
    min-width: unset;
  }
}
@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .phase-and-status-toggle-wrap .description .phase-status-wrapper .selectize-input, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .phase-and-status-toggle-wrap .description .phase-status-wrapper .selectize-input {
    width: 100%;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .triggered-phases, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .triggered-project, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .triggered-phases, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .triggered-project {
  margin: 10px 0px 0 0px;
  width: calc(100% - 0px);
  border: 1px solid #e1e2f0;
  padding: 10px;
  background: white;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .triggered-phases .description, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .triggered-phases .description {
  margin-bottom: 10px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .schedule-options .triggered-project .chip, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .triggered-project .chip {
  margin-bottom: 0;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options {
  border-top: none;
  padding-top: 0;
  margin-top: -10px;
  padding-bottom: 10px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .notification-toggle-wrap {
  display: flex;
  flex-direction: column;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .notification-toggle-wrap .tooltip-wrap {
  display: inline-block;
  position: relative;
  top: -2px;
  right: -2px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .notification-toggle-wrap .tooltip-wrap .sb-tooltip {
  right: -20px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .notification-toggle-wrap .google-url-wrap {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .notification-toggle-wrap .google-url-wrap .radio-wrapper {
  display: flex;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .notification-toggle-wrap .google-url-wrap .radio-wrapper input[type=radio] {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  accent-color: #000fe3;
  cursor: pointer;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .notification-toggle-wrap .google-url-wrap .radio-wrapper label {
  width: unset;
  text-indent: unset;
  min-width: unset;
  clip: unset;
  height: unset;
  float: unset;
  margin: 0 0 5px 10px;
  overflow: visible;
  color: unset;
  cursor: pointer;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .notification-toggle-wrap .google-url-wrap .radio-wrapper label:before, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .notification-toggle-wrap .google-url-wrap .radio-wrapper label:after {
  content: none;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .notification-toggle-wrap .google-url-wrap .google-url-static {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .notification-toggle-wrap .google-url-wrap .google-url-static .edit-icon {
  margin-top: 0;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .notification-toggle-wrap .google-url-wrap .google-input-wrap {
  display: flex;
  align-items: center;
  margin-top: 6px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .notification-toggle-wrap .google-url-wrap .google-input-wrap .close-edit {
  margin-left: 10px;
  cursor: pointer;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .marketing-permissions-wrap {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  flex-direction: column;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .deployment-options .marketing-permissions-wrap .mini-toggle {
  margin-right: 20px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .save-changes {
  margin-left: auto;
  width: 180px;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .save-changes {
    width: 100%;
    margin-top: 20px;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .survey-name-wrap {
  display: flex;
  font-size: 23px;
  flex-direction: column;
  margin-bottom: 20px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .survey-name-wrap .survey-name-static {
  display: flex;
  align-items: center;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .name-input-wrap {
  display: flex;
  align-items: center;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .name-input-wrap .close-edit {
  font-size: 20px;
  margin-left: 10px;
  cursor: pointer;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom {
  display: flex;
}

@media (max-width: 1024px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom {
    flex-direction: column;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .preview-controls {
  display: flex;
  width: 100%;
  margin: 0;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .preview-controls {
    flex-direction: column;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .preview-controls .view-email {
  margin: 0 10px 0 0;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .preview-controls .view-email {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .preview-controls .view-survey {
    width: 100%;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .survey-setting-controls {
  display: flex;
  width: 100%;
  justify-content: end;
}

@media (max-width: 1024px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .survey-setting-controls {
    justify-content: start;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .survey-setting-controls {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .edit-survey {
    width: auto;
    margin-bottom: 10px;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .button-primary {
  height: 44px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .delete {
  background: #c70a2a;
  border: none;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .delete {
    margin: 0;
    margin-bottom: 10px;
    width: auto;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .controls-right {
  display: flex;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .controls-right {
    flex-direction: column;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .controls-right .save-changes {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .controls-right .save-changes {
    margin: 0;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-settings .buttons-bottom .controls-right .view-survey {
  margin-left: 10px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .error.bubble {
  background-color: #fef9fa;
  color: #c70a2a;
  border: 1px solid #c70a2a;
  padding: 20px;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  margin: 20px 0;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #bcbed4;
  border-bottom: 1px solid #bcbed4;
  padding: 40px 0;
  margin: 0 0 20px 0;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details {
    flex-direction: column;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .project-categories-wrap {
  flex: 1;
  padding-right: 20px;
  border-right: 1px solid #bcbed4;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .project-categories-wrap {
    border: none;
    padding: 0;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .project-categories-wrap .project-wrap {
  margin-bottom: 20px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap {
  flex: 1.5;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap {
    padding: 20px 0 0 0;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .triggered {
  position: relative;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .triggered::after {
  content: " ";
  background-image: url("/static/icons/checkmark-white.svg");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 2px 2px;
  position: absolute;
  right: 4px;
  top: 5px;
  background-color: #007b80;
  width: 17px;
  height: 17px;
  border-radius: 20px;
  padding: 4px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .triggered.project-schedule::after {
  right: 9px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .triggered .chip, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .triggered.chip {
  background-color: #bcbed4;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .triggered .chip.status, .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .triggered.chip.status {
  background-color: #3a3c66;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .triggered.chip {
  padding-right: 30px;
  position: relative;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .project-schedule {
  margin-bottom: 15px;
  display: flex;
  border-bottom: 1px solid #e1e2f0;
  padding-bottom: 10px;
  flex-wrap: wrap;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .project-schedule .connector {
  margin: 0 5px 0 0;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .phases-wrap {
  display: flex;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .phases-wrap {
    flex-wrap: wrap;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .status-wrap {
  display: flex;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .status-wrap .status-copy {
  min-width: 132px;
  text-align: right;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .status-wrap .status-copy {
    text-align: left;
    min-width: unset;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-details .schedule-wrap .phase-copy {
  min-width: 132px;
  margin-right: 10px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey[data-type=global] .survey-settings .project-status-toggle-wrap label {
  display: none;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey[data-type=global] .survey-details .schedule-wrap .project-schedule {
  border: none;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients h3, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments h3 {
  display: flex;
  align-items: center;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients h3 .edit-text, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments h3 .edit-text {
  display: none;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .manual-contacts, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .manual-contacts {
  display: none;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .edit-contacts, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .edit-contacts {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: 10px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap {
  overflow: auto;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table {
  width: calc(100% - 4px);
  margin-top: 0px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table thead tr:nth-child(odd), .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table thead tr:nth-child(odd) {
  background-color: unset;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table thead tr:nth-child(odd):hover, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table thead tr:nth-child(odd):hover {
  background-color: unset;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table thead tr td.sortable.active, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table thead tr td.sortable.active {
  font-weight: bold;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tbody, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tbody {
  border: 1px solid #bcbed4;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr {
  vertical-align: middle;
  height: 50px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr:nth-child(odd), .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr:nth-child(odd) {
  background-color: #f9f9fc;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr:nth-child(odd):hover, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr:nth-child(odd):hover {
  background-color: #f9f9fc;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr:nth-child(even), .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr:nth-child(even) {
  background-color: #ffffff;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr:nth-child(even):hover, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr:nth-child(even):hover {
  background-color: #ffffff;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr.hide-contact, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr.hide-contact {
  display: none;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr td, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr td {
  padding: 10px !important;
  position: relative;
  border-bottom: 1px solid #bcbed4;
  white-space: normal;
  min-width: 180px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr td[data-id=company], .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr td[data-id=project], .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr td[data-id=company], .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr td[data-id=project] {
  width: 300px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr td .tooltip-wrap, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr td .tooltip-wrap {
  right: unset;
  left: 10px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr td .tooltip-wrap .sb-tooltip, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr td .tooltip-wrap .sb-tooltip {
  left: 40px;
  text-align: center;
  top: 10px;
  height: 30px;
  line-height: 7px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr td .tooltip-wrap .sb-tooltip::before, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr td .tooltip-wrap .sb-tooltip::before {
  content: " ";
  top: 7px;
  left: -9px;
  right: unset;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #cbccd5 transparent transparent;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr td .tooltip-wrap .sb-tooltip::after, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr td .tooltip-wrap .sb-tooltip::after {
  content: " ";
  top: 7px;
  left: -7px;
  right: unset;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  border-color: transparent #fff transparent transparent;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr td.checkbox, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr td.checkbox {
  display: none;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap table tr td.name, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap table tr td.name {
  padding-left: 0;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .table-wrap .no-results, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .table-wrap .no-results {
  height: 100px;
  margin-top: 20px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .controls, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .controls {
  display: none;
  justify-content: end;
  margin-top: 10px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .controls button, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .controls button {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .controls button, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .controls button {
    min-width: unset;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients .controls button.button-primary, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .controls button.button-primary {
    margin-right: 0;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing {
  padding: 30px;
  margin-bottom: 10px;
  background-color: #f9f9fc;
  border-radius: 10px;
  border: 1px solid #bcbed4;
  box-shadow: 0 0px 9px 1px #bcbed4;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing {
    padding: 15px;
    margin-left: -20px;
    width: calc(100vw - 25px);
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing h3 .edit-text, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing h3 .edit-text {
  display: contents;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .table-wrap, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .table-wrap {
    overflow: auto;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .table-wrap table.contacts-table tr.hide-contact, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .table-wrap table.contacts-table tr.hide-contact {
  display: table-row;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .table-wrap table.contacts-table tr td.checkbox, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .table-wrap table.contacts-table tr td.checkbox {
  padding-left: 0;
  height: 49px;
  width: 40px;
  border: none;
  display: table-cell;
  align-items: center;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .table-wrap table.contacts-table tr td.name, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .table-wrap table.contacts-table tr td.name {
  padding-left: 8;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts {
  display: block;
  margin-top: 20px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts h3, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts h3 {
  font-size: 18px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .contacts-wrap .contact, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .contacts-wrap .contact {
  display: flex;
  margin: 10px 0;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .contacts-wrap .contact, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .contacts-wrap .contact {
    flex-direction: column;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .contacts-wrap .contact .field-wrap, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .contacts-wrap .contact .field-wrap {
  flex: 1;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .contacts-wrap .contact .field-wrap, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .contacts-wrap .contact .field-wrap {
    margin: 0 0 5px 0;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .contacts-wrap .contact .field-wrap input, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .contacts-wrap .contact .field-wrap input {
  border: 1px solid #e1e2f0;
  padding: 6px 8px;
  width: 100%;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .contacts-wrap .contact .field-wrap input.error, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .contacts-wrap .contact .field-wrap input.error {
  color: #000333;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .contacts-wrap .contact .field-wrap .error, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .contacts-wrap .contact .field-wrap .error {
  margin: 0;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .contacts-wrap .contact .field-wrap:last-child, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .contacts-wrap .contact .field-wrap:last-child {
  margin: 0;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .contacts-wrap .contact .remove, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .contacts-wrap .contact .remove {
  color: #6d6f94;
  margin: 7px 0 0 0;
  cursor: pointer;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .contacts-wrap .contact .remove, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .contacts-wrap .contact .remove {
    position: absolute;
    right: 35px;
    top: 30px;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .contacts-wrap .contact .remove:hover, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .contacts-wrap .contact .remove:hover {
  color: #c70a2a;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .add-contact, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .add-contact {
  border: none;
  padding: 0;
  border-radius: 0;
  transition: all 0s;
  background: none;
}

@media (max-width: 768px) {
  .survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .add-contact, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .add-contact {
    margin-left: 5px;
  }
}
.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .add-contact:hover, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .add-contact:hover {
  background: none;
  border-bottom: 1px solid #00054d;
  box-shadow: none;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .manual-contacts .add-contact::after, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .manual-contacts .add-contact::after {
  content: "+";
  font-size: 22px;
  margin-left: 5px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .controls, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .controls {
  display: flex;
  justify-content: start;
  margin-top: 20px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .survey-recipients.editing .edit-contacts, .survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments.editing .edit-contacts {
  display: none;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments .selectize-control.single .selectize-input:after {
  display: none;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr {
  overflow: visible;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.closed + .recipients {
  display: none;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.open {
  border-bottom: 0;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.open + .recipients td {
  padding: 10px !important;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.open td {
  border-bottom: 0;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.even {
  background-color: #f9f9fc !important;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.even:hover {
  background-color: #f9f9fc;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.even + .recipients {
  background-color: #f9f9fc !important;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.even + .recipients .recipients-wrap {
  background-color: #ffffff;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.even + .recipients:hover {
  background-color: #f9f9fc;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.odd {
  background-color: #ffffff !important;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.odd:hover {
  background-color: #ffffff;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.odd + .recipients {
  background-color: #ffffff !important;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.odd + .recipients .recipients-wrap {
  background-color: #f9f9fc;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.odd + .recipients .recipients-wrap::before {
  border-bottom-color: #bcbed4;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.odd + .recipients .recipients-wrap::after {
  border-bottom-color: #f9f9fc;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr.odd + .recipients:hover {
  background-color: #ffffff;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr td {
  overflow: visible;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr td.recipients-column {
  max-width: 200px;
  width: 200px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr .show-recipients {
  min-width: unset;
  padding: 5px 9px;
  width: 100%;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr .recipients-wrap {
  padding: 15px;
  box-shadow: inset 0 1px 3px 1px #bcbed4;
  border-radius: 2px;
  border-bottom: 1px solid #bcbed4;
  position: relative;
  margin-bottom: 10px;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr .recipients-wrap::before {
  content: " ";
  position: absolute;
  top: -10px;
  right: 78px;
  border-bottom: 11px solid #bcbed4;
  border-top: none;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr .recipients-wrap::after {
  content: " ";
  position: absolute;
  top: -8px;
  right: 75px;
  border-bottom: 14px solid white;
  border-top: none;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr .recipients-wrap .recipient {
  font-size: 15px;
  border-top: 1px solid #e1e2f0;
  padding: 8px 0;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr .recipients-wrap .recipient:first-child {
  border: none;
  padding-top: 0;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .deployments table tbody tr .recipients-wrap .recipient:last-child {
  padding-bottom: 0;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .danger {
  border-color: #c70a2a;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .input-error {
  transition: all 0.2s;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .input-error.emphasis {
  color: #ffffff;
}

.survey-manager-body .survey-manager .survey-wrapper .active-survey .error {
  transition: all 0.2s;
  border-color: #c70a2a !important;
  color: #c70a2a;
  font-size: 16px;
  margin-top: 4px;
}

.survey-manager-body .survey-manager .survey-wrapper .no-surveys {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
}

.survey-manager-body .survey-manager .chip {
  padding: 0px 9px 3px 8px;
  background-color: #3a3c66;
  color: #ffffff;
  border-radius: 5px;
  margin: 0 5px 5px 0;
  display: inline-block;
}

.survey-manager-body .survey-manager .chip.green {
  background-color: #3a3c66;
  color: #ffffff;
}

.survey-manager-body .survey-manager .chip.alert {
  background-color: #fffdf7;
  color: #b07d00;
  border: 1px solid #b07d00;
  font-weight: 500px;
}

.survey-manager-body .error-modal .button-primary {
  width: 230px;
}

.survey-manager-body .email-preview-modal .sb-modal__content {
  cursor: default;
  pointer-events: none;
}

.survey-manager-body .delete-modal .sb-modal__wrap {
  min-width: 440px;
}

.survey-manager-body .delete-modal .modal-title_js {
  font-size: 22px;
}

.survey-manager-body .delete-modal p {
  font-size: 16px;
  font-weight: normal;
  padding: 20px 0 10px 0;
}

.survey-manager-body .delete-modal .controls {
  display: flex;
  width: 100%;
  justify-content: space-around;
  max-width: 400px;
  margin: 0 auto;
}

.survey-manager-body .email-preview-modal,
.survey-manager-body .survey-preview-modal {
  margin-top: 0;
}

.survey-manager-body .email-preview-modal .sb-modal__header,
.survey-manager-body .survey-preview-modal .sb-modal__header {
  border: none;
  color: #ffffff;
  padding: 0 0 10px 0;
  font-size: 23px;
  font-weight: 600;
}

.survey-manager-body .email-preview-modal .sb-modal__header .modal-title_js,
.survey-manager-body .survey-preview-modal .sb-modal__header .modal-title_js {
  border-bottom: 2px solid #ffffff;
}

.survey-manager-body .email-preview-modal .sb-modal__header .edit-link,
.survey-manager-body .survey-preview-modal .sb-modal__header .edit-link {
  position: absolute;
  left: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  top: 6px;
}

.survey-manager-body .email-preview-modal .sb-modal__header .edit-link:before,
.survey-manager-body .survey-preview-modal .sb-modal__header .edit-link:before {
  content: "‹";
  position: absolute;
  left: -10px;
  top: -2px;
}

.survey-manager-body .email-preview-modal .sb-modal__header .glyphicons-remove,
.survey-manager-body .survey-preview-modal .sb-modal__header .glyphicons-remove {
  border-radius: 20px;
  color: #ffffff;
  top: 5px;
  right: -15px;
  background: none;
  border: 2px solid #fff;
  height: 26px;
  width: 26px;
  font-size: 16px;
  line-height: 22px !important;
}

@media (max-width: 768px) {
  .survey-manager-body .email-preview-modal .sb-modal__header .glyphicons-remove,
  .survey-manager-body .survey-preview-modal .sb-modal__header .glyphicons-remove {
    top: 6px;
    right: 6px;
  }
}
.survey-manager-body .email-preview-modal .sb-modal__header .glyphicons-remove:hover,
.survey-manager-body .survey-preview-modal .sb-modal__header .glyphicons-remove:hover {
  background: linear-gradient(282deg, #000fe3, #9d3aff);
}

.survey-manager-body .email-preview-modal .sb-modal__bg,
.survey-manager-body .survey-preview-modal .sb-modal__bg {
  background-color: rgba(0, 0, 0, 0.7);
}

.survey-manager-body .email-preview-modal .sb-modal__wrap,
.survey-manager-body .survey-preview-modal .sb-modal__wrap {
  padding: 0px;
  width: calc(100vw - 60px);
  height: calc(100vh - 60px);
  max-width: 1000px;
  max-height: 1000px;
  margin-top: 0px;
  background: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .survey-manager-body .email-preview-modal .sb-modal__wrap,
  .survey-manager-body .survey-preview-modal .sb-modal__wrap {
    padding: 20px 0;
  }
}
.survey-manager-body .email-preview-modal .sb-modal__content,
.survey-manager-body .survey-preview-modal .sb-modal__content {
  background: none;
}

.survey-manager-body .email-preview-modal .sb-modal__content::-webkit-scrollbar,
.survey-manager-body .survey-preview-modal .sb-modal__content::-webkit-scrollbar {
  width: 5px;
}

.survey-manager-body .email-preview-modal .sb-modal__content::-webkit-scrollbar-track,
.survey-manager-body .survey-preview-modal .sb-modal__content::-webkit-scrollbar-track {
  background: #bcbcc1;
}

.survey-manager-body .email-preview-modal .sb-modal__content::-webkit-scrollbar-thumb,
.survey-manager-body .survey-preview-modal .sb-modal__content::-webkit-scrollbar-thumb {
  background-color: #007b80;
  border-radius: 5px;
  cursor: pointer;
}

.survey-manager-body .email-preview-modal iframe,
.survey-manager-body .survey-preview-modal iframe {
  width: 100%;
  height: calc(100vh - 90px);
  border: 1px solid #bcbed4;
  border-radius: 25px;
  box-shadow: 0 0px 10px 0 rgba(109, 111, 148, 0.5);
  background: white;
}

.welcome-modal {
  margin-top: 20px;
}

.welcome-modal .sb-modal__wrap {
  max-width: 1100px;
  width: calc(100vw - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px 40px 40px;
}

.welcome-modal .sb-modal__wrap .sb-modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  max-height: calc(100vh - 180px);
  overflow: auto;
}

.welcome-modal .sb-modal__wrap .sb-modal__content p {
  margin: 20px 0 0 0;
  font-weight: normal;
  font-size: 16px;
  color: #3a3c66;
  text-align: left;
  width: 100%;
}

.welcome-modal .sb-modal__wrap .sb-modal__content ul {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 0;
  width: 100%;
}

.welcome-modal .sb-modal__wrap .sb-modal__content ul li {
  font-size: 16px;
  font-family: sofia-pro, Arial, sans-serif;
  color: #3a3c66;
  font-weight: normal;
  margin-bottom: 5px;
}

.welcome-modal .sb-modal__wrap .sb-modal__content ul li::marker {
  color: #7308dd;
  font-size: 12px;
}

.welcome-modal .sb-modal__wrap .sb-modal__content .button-primary {
  margin: 10px auto;
  width: 240px;
}

.welcome-modal .sb-modal__wrap .sb-modal__content .supress-dialog {
  font-size: 15px;
  font-weight: normal;
  position: relative;
  margin-left: 20px;
  margin-top: 10px;
  cursor: pointer;
  color: #3a3c66;
}

.welcome-modal .sb-modal__wrap .sb-modal__content .supress-dialog input {
  position: absolute;
  left: 0;
  opacity: 0.01;
}

.welcome-modal .sb-modal__wrap .sb-modal__content .supress-dialog input:checked + label::before {
  background-color: #00054d;
}

.welcome-modal .sb-modal__wrap .sb-modal__content .supress-dialog input:checked + label::after {
  content: " ";
  position: absolute;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  top: 5px;
  left: -18px;
  width: 6px;
  height: 11px;
  transform: rotate(45deg);
}

.welcome-modal .sb-modal__wrap .sb-modal__content .supress-dialog label {
  position: relative;
}

.welcome-modal .sb-modal__wrap .sb-modal__content .supress-dialog label::before {
  content: " ";
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border: 1px solid #3a3c66;
  border-radius: 4px;
  position: absolute;
  left: -24px;
  top: 3px;
}

.welcome-modal .sb-modal__wrap .modal-title_js {
  color: #3a3c66;
}

.survey-results-body .survey-results {
  padding: 0 15px;
  font-family: sofia-pro, Arial, sans-serif;
}

.survey-results-body .survey-results header.top {
  display: flex;
  justify-content: space-between;
}

.survey-results-body .survey-results header.top .button-primary {
  align-self: flex-start;
}

.survey-results-body .survey-results header .filters-icon-wrap {
  margin-left: auto;
}

.survey-results-body .survey-results header .survey-info {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}

.survey-results-body .survey-results header .survey-info h1 {
  display: inline-block;
  margin: 0;
}

.survey-results-body .survey-results header .survey-info .divider {
  height: 40px;
  width: 2px;
  background: #00054d;
  display: inline-block;
  margin: 0 20px;
}

.survey-results-body .survey-results header .survey-selector {
  width: 500px;
  margin-right: 30px;
  height: 50px;
  z-index: 4;
}

@media (max-width: 1024px) {
  .survey-results-body .survey-results header .survey-selector {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .survey-results-body .survey-results header .survey-selector {
    width: calc(100% - 40px);
    margin-right: 10px;
  }
}
.survey-results-body .survey-results header .survey-selector img {
  width: 15px;
  right: 20px;
  top: 22px;
}

.survey-results-body .survey-results header .survey-selector .mock-select {
  color: #00000f;
  font-size: 20px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
}

.survey-results-body .survey-results header .survey-selector .mock-select:after {
  position: absolute;
  content: "";
  top: 2px;
  right: 1px;
  width: 110px;
  height: 46px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 60%);
}

.survey-results-body .survey-results header .survey-selector .mock-select.active {
  border: solid 1px #bcbed4;
}

.survey-results-body .survey-results header .survey-selector .mock-options {
  top: 50px;
  border-radius: 0 0 8px 8px;
}

.survey-results-body .survey-results header .survey-selector .mock-options div {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  height: auto;
}

.survey-results-body .survey-results .filter-settings {
  overflow: visible;
}

.survey-results-body .survey-results .filter-settings.hide {
  overflow: hidden;
}

.survey-results-body .survey-results .filter-settings .all-filters {
  padding: 10px 0 20px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  overflow: unset;
  margin: 0;
}

@media (max-width: 1024px) {
  .survey-results-body .survey-results .filter-settings .all-filters {
    flex-direction: column;
  }
}
.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap {
  width: 100%;
  display: flex;
  margin: 10px 0;
}

@media (max-width: 1024px) {
  .survey-results-body .survey-results .filter-settings .all-filters .filter-wrap {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .survey-results-body .survey-results .filter-settings .all-filters .filter-wrap {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .survey-results-body .survey-results .filter-settings .all-filters .filter-wrap:nth-child(even) {
    padding: 0;
  }
}
@media (max-width: 1024px) {
  .survey-results-body .survey-results .filter-settings .all-filters .filter-wrap:nth-child(odd) {
    padding: 0;
  }
}
.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector {
  width: 220px;
  position: relative;
  color: #6d6f94;
}

@media (max-width: 768px) {
  .survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector {
    width: 100%;
  }
}
.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector.active .filter-options {
  display: block;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector.active::after {
  transform: rotate(180deg);
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector.active .filter-name {
  border-color: #000a9f;
  border-bottom-color: #e1e2f0;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector::after {
  position: absolute;
  content: "";
  top: 16px;
  right: 10px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #00054d;
  transition: all 0.25s;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-name {
  background: white;
  padding: 5px 10px;
  border: 1px solid #e1e2f0;
  cursor: pointer;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options {
  display: none;
  position: absolute;
  background: white;
  width: 220px;
  padding: 5px;
  box-shadow: 0 2px 5px 1px #e1e2f0;
  border-radius: 0 0 5px 5px;
  z-index: 10;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .search-wrap input {
  border: none;
  padding: 6px;
  width: 100%;
  margin: 2px 0 10px 0px;
  border: 1px solid #007b80;
  color: #007b80;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .search-wrap input::placeholder {
  color: #54888a;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .search-wrap input:focus, .survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .search-wrap input:focus-visible {
  border-radius: 0;
  outline: 1px solid #007b80;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap {
  max-height: 260px;
  overflow-y: auto;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap::-webkit-scrollbar {
  width: 5px;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap::-webkit-scrollbar-track {
  background: #e1e2f0;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap::-webkit-scrollbar-thumb {
  background-color: #bcbcc1;
  border-radius: 5px;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap .option {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 5px 5px 5px 5px;
  border-bottom: 1px solid #e1e2f0;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap .option.selected {
  background: #007b80;
  color: white;
  position: relative;
  padding-right: 20px;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap .option.selected::after {
  content: "✕";
  position: absolute;
  right: 3px;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap .option.selected:hover {
  background: #007b80;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap .option.selected:hover::after {
  text-decoration: underline;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap .option:last-of-type {
  border: none;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .options-wrap .option:hover {
  background: #e1e2f0;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selector .filter-options .no-results {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  font-weight: bold;
  margin: 0;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selections {
  flex: 1;
  margin-left: 20px;
  display: flex;
  align-items: baseline;
  overflow-x: auto;
}

@media (max-width: 768px) {
  .survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selections {
    margin: 0;
  }
}
.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selections::-webkit-scrollbar {
  height: 5px;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selections::-webkit-scrollbar-track {
  background: #bcbcc1;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selections::-webkit-scrollbar-thumb {
  background-color: #007b80;
  border-radius: 5px;
  cursor: pointer;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selections .selection {
  background: #007b80;
  padding: 3px 6px 5px 6px;
  color: white;
  font-size: 13px;
  border-radius: 3px;
  cursor: pointer;
  margin: 5px 5px 5px 0;
  white-space: nowrap;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selections .selection:hover {
  box-shadow: 0 2px 5px 1px #e1e2f0;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selections .selection:hover .remove {
  text-decoration: underline;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selections .selection .remove {
  margin-left: 5px;
  font-size: 10px;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selections .selection.all {
  background: #e1e2f0;
  color: #3a3c66;
  cursor: default;
}

.survey-results-body .survey-results .filter-settings .all-filters .filter-wrap .selections .selection.all:hover {
  box-shadow: none;
}

.survey-results-body .survey-results .results-wrapper {
  margin-top: 30px;
}

.survey-results-body .survey-results .results-wrapper .table-controls-top-right {
  display: flex;
  justify-content: end;
}

.survey-results-body .survey-results .results-wrapper .table-controls-top-right .csv-download {
  margin-right: 10px;
  line-height: 20px;
}

@media (max-width: 1024px) {
  .survey-results-body .survey-results .results-wrapper .table-controls-top-right .csv-download {
    min-width: unset;
    padding: 0 6px;
  }
}
.survey-results-body .survey-results .results-wrapper .metrics-header-wrap {
  border-bottom: 0;
  width: 100%;
  padding: 0;
}

.survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories {
  padding-bottom: 0;
}

.survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap {
  width: 100%;
}

@media (max-width: 768px) {
  .survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap {
    height: unset;
  }
}
@media (max-width: 1024px) {
  .survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap {
    height: unset;
  }
}
@media (max-width: 1024px) {
  .survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap .metrics {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap .metrics .card {
  padding: 25px 10px;
}

@media (max-width: 1024px) {
  .survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap .metrics .card {
    flex-direction: column;
    justify-content: flex-start;
    max-width: unset;
    width: calc(33.3333333333% - 30px);
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap .metrics .card {
    width: 100%;
    margin: 0 0 20px 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: unset;
    min-height: 70px;
    padding: 15px 10px;
  }
}
.survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap .metrics .card:last-child {
  margin-right: 0;
}

.survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap .metrics .card .card__title {
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 2;
  margin: 0 0 15px 0;
  text-transform: capitalize;
  word-break: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  /* Non standard for WebKit */
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

@media (max-width: 768px) {
  .survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap .metrics .card .card__title {
    flex: 1;
    justify-content: flex-start;
    text-align: left;
    margin: 0;
  }
}
.survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap .metrics .card .value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  height: 39px;
  line-height: 30px;
  flex: 1;
  font-size: 36px;
}

@media (max-width: 768px) {
  .survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap .metrics .card .value {
    flex: unset;
    padding: 0 10px;
  }
}
.survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap .metrics .card.project-score .value.positive {
  color: #007b80;
}

.survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap .metrics .card.project-score .value.neutral {
  color: #b07d00;
}

.survey-results-body .survey-results .results-wrapper .metrics-header-wrap.categories .metrics-wrap .metrics .card.project-score .value.negative {
  color: #c70a2a;
}

@media (max-width: 1024px) {
  .survey-results-body .survey-results .results-wrapper .metrics-header-wrap .status-wrap {
    margin-top: 0px;
  }
}
.survey-results-body .survey-results .results-wrapper .metrics-header-wrap .metrics-wrap {
  margin-bottom: 30px;
}

.survey-results-body .survey-results .results-wrapper .metrics-header-wrap .metrics-wrap .metrics {
  display: flex;
  width: 100%;
}

@media (max-width: 768px) {
  .survey-results-body .survey-results .results-wrapper .metrics-header-wrap .metrics-wrap .metrics {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .survey-results-body .survey-results .results-wrapper .metrics-header-wrap .metrics-wrap .metrics .card {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .survey-results-body .survey-results .results-wrapper .metrics-header-wrap .metrics-wrap .metrics .card .card__title {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .survey-results-body .survey-results .results-wrapper .metrics-header-wrap .metrics-wrap .metrics .card .card__title {
    font-size: 18px;
  }
}
.survey-results-body .survey-results .results-wrapper .metrics-header-wrap .metrics-wrap .metrics .card .value {
  padding: 0 4px;
}

.survey-results-body .survey-results .results-wrapper .metrics-header-wrap .metrics-wrap .metrics .card.responses {
  width: 100%;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table {
  margin: 40px 0 0 0;
  width: 100%;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table td {
  white-space: inherit;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table td.date {
  width: 150px;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table td.score-column {
  width: 160px;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table td:last-child {
  padding-right: 10px !important;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table thead .sortable {
  padding-bottom: 10px !important;
  vertical-align: top;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table thead .sortable .wrap-text {
  position: relative;
  word-wrap: normal;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table thead .sortable .wrap-text img {
  position: absolute;
  bottom: 6px;
  right: -20px;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr {
  height: unset;
  border-bottom: none;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr:nth-child(odd) {
  background-color: inherit;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr:nth-child(odd):hover {
  background-color: inherit;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr:hover {
  background-color: inherit;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr[role=row] {
  border-top: 1px solid #cbccd5;
  height: 80px;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr[role=row] td {
  border-bottom: none;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td.comment-row {
  white-space: inherit;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td.survey-period {
  padding: 10px 0 !important;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td.marketing-permission {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-right: 20px !important;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td.marketing-permission .checkmark:before {
  content: " ";
  background-image: url("/static/icons/checkmark-white.svg");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 2px 2px;
  position: absolute;
  right: 4px;
  top: 5px;
  background-color: #007b80;
  width: 17px;
  height: 17px;
  border-radius: 20px;
  padding: 4px;
  width: 20px;
  height: 20px;
  background-size: 18px;
  background-position: 1px 2px;
  display: block;
  position: relative;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .chip {
  padding: 0px 7px 1px 6px;
  background-color: #3a3c66;
  color: #ffffff;
  border-radius: 5px;
  margin: 0 0px 2px 0;
  display: inline-block;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .score {
  font-size: 22px;
  width: 35px;
  border-radius: 20px;
  height: 35px;
  display: inline-block;
  line-height: 29px;
  color: #6d6f94;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .score.positive, .survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .score.neutral, .survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .score.negative {
  font-weight: 600;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .score.positive {
  border: 1px solid #007b80;
  color: #007b80;
  background: #f5fcfc;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .score.neutral {
  border: 1px solid #b07d00;
  color: #b07d00;
  background: #fffdf7;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .score.negative {
  border: 1px solid #c70a2a;
  color: #c70a2a;
  background: #fef9fa;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .comment-wrap {
  display: flex;
  margin-bottom: 20px;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .comment-wrap .comment {
  padding: 10px;
  border-radius: 5px;
  width: fit-content;
  float: left;
  margin: 0;
  background-color: #ffffff;
  border: 1px solid #bcbed4;
  color: #3a3c66;
  white-space: nowrap;
  line-height: 20px;
  position: relative;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .comment-wrap .comment.truncate {
  max-width: 600px;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 42px;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .comment-wrap .comment.open {
  white-space: normal;
  max-width: 600px;
  line-height: 24px;
  transition: all 0.2s;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .comment-wrap .comment.positive {
  background-color: #f5fcfc;
  color: #007b80;
  border: 1px solid #007b80;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .comment-wrap .comment.neutral {
  background-color: #fffdf7;
  color: #b07d00;
  border: 1px solid #b07d00;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .comment-wrap .comment.negative {
  background-color: #fef9fa;
  color: #c70a2a;
  border: 1px solid #c70a2a;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .comment-wrap .show-comment {
  align-self: flex-end;
  margin-left: 10px;
  margin-right: 20px;
  font-size: 14px;
  color: #000fe3;
  cursor: pointer;
  text-decoration: underline;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .remove-response {
  position: relative;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .remove-response.tooltip-wrap {
  position: relative;
  text-align: center;
  width: 74px;
  margin: 0 auto;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .remove-response.tooltip-wrap .icon {
  color: #CC3333;
  cursor: pointer;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .remove-response.tooltip-wrap:hover .sb-tooltip {
  display: block;
  right: 80px;
  top: -28px;
  font-size: 16px;
  white-space: initial;
  width: 300px;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .remove-response.tooltip-wrap:hover .sb-tooltip::before {
  top: 22px;
  right: -18px;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid #bcbed4;
  border-right: none;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .remove-response.tooltip-wrap:hover .sb-tooltip::after {
  top: 22px;
  right: -16px;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid white;
  border-right: none;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .remove-response.tooltip-wrap img {
  margin-top: -3px;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .remove-response-confirm {
  text-align: center;
  color: #CC3333;
  font-size: 16px;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .remove-response-confirm span {
  cursor: pointer;
  padding: 5px;
  color: #6d6f94;
}

.survey-results-body .survey-results .results-wrapper .table-results-wrap .result table.contacts-table tbody tr td .remove-response-confirm span:hover {
  text-decoration: underline;
}

.survey-results-body .survey-results .results-wrapper .positive {
  color: #007b80;
}

.survey-results-body .survey-results .results-wrapper .neutral {
  color: #b07d00;
}

.survey-results-body .survey-results .results-wrapper .negative {
  color: #c70a2a;
}

.survey-results-body .survey-results .results-wrapper .no-responses {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 22px;
  color: #c70a2a;
  padding: 80px 0 60px;
  text-align: center;
}

.twofa-setup-container {
  max-width: 600px !important;
  margin-left: auto;
  margin-right: auto;
  min-height: auto;
}

.twofa-setup-container .description {
  margin-bottom: 50px;
  text-align: center;
}

.twofa-setup-container .left-icon {
  font-size: 80pt;
}

.twofa-setup-container .astersik-icon {
  font-size: 25pt;
}

.twofa-setup-container .vertical-align {
  display: flex;
  align-items: center;
}

.twofa-setup-container .codes {
  white-space: pre;
  word-break: normal;
  text-align: center;
}

.twofa-setup-container .backup-buttons {
  justify-content: center;
  max-width: 400px;
  clear: both;
}

.twofa-setup-container .help-block {
  margin-top: 20px;
  font-size: 10pt;
}

.twofa-setup-container .smile-img {
  width: 200px;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

@media print {
  .codes {
    font-size: 60px;
    white-space: pre;
    word-break: normal;
    text-align: center;
    line-height: 80px;
  }
}
.tooltip-background {
  background-color: white !important;
  width: 250px;
}

.tooltip-inner {
  max-width: 300px !important;
}

#subscriptions {
  display: flex;
}

@media (max-width: 1024px) {
  #subscriptions {
    flex-direction: column-reverse;
  }
}
#subscriptions #purchase-form-area {
  display: flex;
  flex-direction: column;
  flex: 2;
  margin-right: 30px;
}

@media (max-width: 1024px) {
  #subscriptions #purchase-form-area {
    margin-bottom: 150px;
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  #subscriptions #purchase-form-area #purchase-form {
    margin: 0;
  }
}
#subscriptions #purchase-form-area #purchase-form .description {
  margin: 40px 0 0 0;
  padding: 20px;
  border-radius: 10px;
  background: #007b80;
  color: white;
  justify-content: space-between;
  align-items: center;
  font-family: sofia-pro, Arial, sans-serif;
}

#subscriptions #purchase-form-area #purchase-form .description a {
  color: #ffffff;
  text-decoration: underline;
}

#subscriptions #purchase-form-area #purchase-form .slider-horizontal {
  cursor: pointer;
  margin: 20px 0 20px 0px;
}

@media (max-width: 1024px) {
  #subscriptions #purchase-form-area #purchase-form .slider-horizontal {
    width: 100% !important;
  }
}
#subscriptions #purchase-form-area #purchase-form .slider-horizontal .slider-tick-label {
  transition: all 0.2s;
}

#subscriptions #purchase-form-area #purchase-form .slider-horizontal .slider-tick-label:hover {
  transform: scale(1.2);
}

#subscriptions #purchase-form-area #purchase-form .slider-horizontal .slider-tick-label.active {
  transform: scale(1.4);
}

@media (max-width: 1024px) {
  #subscriptions #purchase-form-area #purchase-form .slider-horizontal .slider-tick-label.active {
    transform: scale(1.2);
    font-weight: 500;
  }
}
#subscriptions #purchase-form-area #purchase-form .slider-horizontal .slider-tick-label.active:hover {
  transform: scale(1.4);
}

#subscriptions #purchase-form-area #purchase-form .slider-horizontal .slider-handle {
  background: linear-gradient(282deg, #000fe3, #9d3aff);
}

#subscriptions #purchase-form-area .features-table {
  flex: 1;
  min-width: 300px;
}

#subscriptions #purchase-form-area .features-table table thead tr td {
  padding-left: 0 !important;
  font-weight: bold;
  font-size: 18px;
  border: none;
}

#subscriptions #purchase-form-area .features-table table tbody {
  border: 1px solid #bcbed4;
}

#subscriptions #purchase-form-area .features-table table tbody tr td {
  border: none;
  white-space: normal;
  padding: 10px 10px 10px 40px !important;
}

#subscriptions #purchase-form-area .features-table table tbody tr td.checkmark {
  position: relative;
  width: 40px;
}

#subscriptions #purchase-form-area .features-table table tbody tr td.checkmark::after {
  content: " ";
  background-image: url("/static/icons/checkmark-white.svg");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 2px 2px;
  position: absolute;
  right: 4px;
  top: 5px;
  background-color: #007b80;
  width: 17px;
  height: 17px;
  border-radius: 20px;
  padding: 4px;
  top: 14px;
  left: 10px;
}

#subscriptions .calculator-wrap {
  flex: 1;
}

#subscriptions .calculator-wrap #price-calculator, #subscriptions .calculator-wrap #price-contact-us {
  position: sticky;
  top: 20px;
}

@media (max-width: 1024px) {
  #subscriptions .calculator-wrap #price-calculator, #subscriptions .calculator-wrap #price-contact-us {
    position: fixed;
    bottom: -15px;
    top: unset;
    width: 100%;
    margin-left: -40px;
  }
}
@media (max-width: 768px) {
  #subscriptions .calculator-wrap #price-calculator, #subscriptions .calculator-wrap #price-contact-us {
    margin-left: -30px;
  }
}
#subscriptions .calculator-wrap #price-calculator #pricing-box-professional, #subscriptions .calculator-wrap #price-contact-us #pricing-box-professional {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  #subscriptions .calculator-wrap #price-calculator #pricing-box-professional, #subscriptions .calculator-wrap #price-contact-us #pricing-box-professional {
    border-radius: 0;
  }
}
#subscriptions .calculator-wrap #price-calculator #pricing-box-professional .card-body, #subscriptions .calculator-wrap #price-contact-us #pricing-box-professional .card-body {
  padding: 0;
}

#subscriptions .calculator-wrap #price-calculator .pricing-box-price, #subscriptions .calculator-wrap #price-contact-us .pricing-box-price {
  font-size: 2.5em;
  letter-spacing: 0.5px;
  font-weight: bold;
  color: #00054d;
  margin-top: 10px;
  margin-bottom: 10px;
}

#subscriptions .calculator-wrap #price-calculator .toggle-subscription-period-container .toggle, #subscriptions .calculator-wrap #price-contact-us .toggle-subscription-period-container .toggle {
  box-shadow: 0 0px 6px 3px #bcbed4;
}

#subscriptions .calculator-wrap #price-calculator .toggle-subscription-period-container, #subscriptions .calculator-wrap #price-contact-us .toggle-subscription-period-container {
  margin: 30px 0;
}

@media (max-width: 1024px) {
  #subscriptions .calculator-wrap #price-calculator .toggle-subscription-period-container, #subscriptions .calculator-wrap #price-contact-us .toggle-subscription-period-container {
    margin: 10px;
  }
}
@media (max-width: 1024px) {
  #subscriptions .calculator-wrap #price-calculator .pricing-box-price, #subscriptions .calculator-wrap #price-contact-us .pricing-box-price {
    margin: 0px;
    font-size: 26px;
  }
}
#subscriptions .calculator-wrap #price-calculator #price-professional-annual, #subscriptions .calculator-wrap #price-contact-us #price-professional-annual {
  margin-bottom: 0;
}

#subscriptions .calculator-wrap #price-calculator #button-subscribe-professional, #subscriptions .calculator-wrap #price-contact-us #button-subscribe-professional {
  width: 100%;
  max-width: 240px;
  height: 50px;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  #subscriptions .calculator-wrap #price-calculator #button-subscribe-professional, #subscriptions .calculator-wrap #price-contact-us #button-subscribe-professional {
    margin-bottom: 10px;
  }
}
.connectwise-setup {
  padding: 0 15px;
  font-family: sofia-pro, Arial, sans-serif;
  color: #000333;
}

.connectwise-setup header {
  color: #000333;
  position: relative;
}

.connectwise-setup header h1 {
  text-align: left;
  font-size: 36px;
  margin-right: 170px;
}

@media (max-width: 768px) {
  .connectwise-setup header h1 {
    margin-right: 0;
    margin-bottom: 70px !important;
  }
}
.connectwise-setup header .help-center {
  position: absolute;
  right: 5px;
  bottom: 0;
}

@media (max-width: 768px) {
  .connectwise-setup header .help-center {
    bottom: -40px;
    left: 0;
  }
}
.connectwise-setup header .help-center:after {
  content: "›";
  right: -5px;
  bottom: 0px;
  position: relative;
  font-size: 20px;
}

.connectwise-setup a.underline {
  text-decoration: underline;
}

.connectwise-setup h2 {
  margin-bottom: 20px;
  position: relative;
  color: #000333;
}

.connectwise-setup h2.clickable {
  cursor: pointer;
}

.connectwise-setup h2.clickable:hover {
  text-decoration: underline;
}

.connectwise-setup h2.clickable:after {
  content: "+";
  font-size: 46px;
  position: absolute;
  color: #000333;
  line-height: 43px;
  font-weight: normal;
  bottom: 15px;
  right: 0;
}

.connectwise-setup h2.clickable.active:after {
  content: "–";
}

@media (max-width: 768px) {
  .connectwise-setup h2 .status-title {
    display: flex;
    flex-direction: column;
  }
}
.connectwise-setup h2 .overall-status {
  display: inline-block;
  font-weight: normal;
  margin-left: 10px;
  font-size: 22px;
}

@media (max-width: 768px) {
  .connectwise-setup h2 .overall-status {
    margin-left: 0px;
  }
}
.connectwise-setup h2 .overall-status.fail {
  color: #c70a2a;
}

.connectwise-setup h2 .overall-status.success {
  color: #007b80;
}

.connectwise-setup h2 .refresh-wrap {
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.connectwise-setup h2 .refresh-wrap:hover label {
  text-decoration: underline;
}

.connectwise-setup h2 .refresh-wrap:hover img {
  transform: rotate(90deg);
}

.connectwise-setup h2 .refresh-wrap .label {
  color: #007b80;
  border-radius: 5px;
  padding: 0px 0px 0 0;
  font-size: 17px;
  font-weight: bold;
  margin-right: 5px;
}

@media (max-width: 768px) {
  .connectwise-setup h2 .refresh-wrap .label {
    display: none;
  }
}
.connectwise-setup h2 .refresh-wrap img {
  width: 32px;
  transform: rotate(0deg);
  transition: all 0.2s;
}

.connectwise-setup h2 .refresh-wrap img.roll {
  transform: rotate(450deg);
}

.connectwise-setup h2 .refresh-wrap img.unroll {
  transform: rotate(90deg);
  transition: all 0s;
}

.connectwise-setup p.intro {
  padding-bottom: 30px;
}

.connectwise-setup .credentials-wrapper {
  display: flex;
  flex-direction: column;
}

.connectwise-setup .credentials-wrapper .form-wrapper {
  flex: 1;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .input-row {
  display: flex;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .connectwise-setup .credentials-wrapper .form-wrapper form .input-row {
    flex-direction: column;
  }
}
.connectwise-setup .credentials-wrapper .form-wrapper form .input-row.borders {
  border-top: 1px solid #bcbed4;
  border-bottom: 1px solid #bcbed4;
  padding: 20px 0 5px 0;
  margin: 30px 0 10px 0;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .input-row label {
  flex: 1;
  padding-right: 30px;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .input-row .input-group {
  flex: 2.5;
  flex-wrap: nowrap;
  flex-direction: column;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .input-row .input-group button {
  max-height: 38px;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .input-row .input-group .error {
  color: #c70a2a;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .input-row .input-group-prepend span, .connectwise-setup .credentials-wrapper .form-wrapper form .input-row .input-group-prepend button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .input-row .input-group-append span, .connectwise-setup .credentials-wrapper .form-wrapper form .input-row .input-group-append button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .input-row input {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #bcbed4;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .input-row input[readonly=readonly] {
  pointer-events: none;
  opacity: 0.6;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .input-row input#id_site_url {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .input-row input#id_cloud_radial_webhook {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .input-row div label {
  display: flex;
  align-items: flex-start;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .input-row div label input {
  width: 16px;
  min-width: 16px;
  height: 26px;
  margin-right: 10px;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .input-row .url-wrapper {
  display: flex;
  width: 100%;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px 0 100px 0;
  padding-top: 40px;
  border-top: 1px solid #bcbed4;
}

.connectwise-setup .credentials-wrapper .form-wrapper form .button-wrapper button {
  width: 100%;
  max-width: 250px;
  padding: 16px;
  margin-bottom: 20px;
}

.connectwise-setup .credentials-wrapper .form-wrapper .toggle-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 0 10px 0;
  font-family: sofia-pro, Arial, sans-serif;
}

.connectwise-setup .credentials-wrapper .form-wrapper .cloud-radial-wrapper {
  padding: 10px 0;
}

.connectwise-setup .credentials-wrapper .status-wrapper {
  flex: 1;
}

.connectwise-setup .credentials-wrapper .status-wrapper h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .connectwise-setup .credentials-wrapper .status-wrapper h2 {
    align-items: flex-start;
  }
}
.connectwise-setup .credentials-wrapper .status-wrapper .results {
  display: flex;
  flex-direction: column;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .error-state {
  color: #c70a2a;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .error-state h3 {
  color: #c70a2a;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .loading, .connectwise-setup .credentials-wrapper .status-wrapper .results .error-state {
  padding: 50px 0 40px 0;
  font-size: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .loading .progress-wrapper, .connectwise-setup .credentials-wrapper .status-wrapper .results .error-state .progress-wrapper {
  box-shadow: 0 6px 16px 0 rgba(109, 111, 148, 0.5);
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  margin-top: 20px;
  border-radius: 5px;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .loading .progress-wrapper .progress-bar, .connectwise-setup .credentials-wrapper .status-wrapper .results .error-state .progress-wrapper .progress-bar {
  height: 10px;
  width: 40px;
  background: linear-gradient(282deg, #000fe3, #9d3aff);
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .success {
  display: flex;
  flex-wrap: wrap;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .success .button-primary {
  margin: 0 auto;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group {
  width: calc(33.3333333333% - 20px);
  margin-right: 30px;
  background: linear-gradient(to bottom, #fff, #f9f9fc);
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 24px 0 #e1e2f0;
  background-color: #ffffff;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 1024px) {
  .connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group {
    width: calc(50% - 20px);
    margin-right: 20px;
  }
  .connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group:nth-child(3n) {
    margin-right: 20px;
  }
  .connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group:nth-child(even) {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group {
    width: 100%;
    margin-right: 0;
  }
  .connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group:nth-child(3n) {
    margin-right: 0px;
  }
}
.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .header {
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #bcbed4;
  display: flex;
  justify-content: space-between;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .header .status {
  display: inline-block;
  color: #ffffff;
  line-height: 21px;
  padding: 2px 8px;
  margin-left: 5px;
  border-radius: 5px;
  white-space: nowrap;
  max-height: 30px;
  font-weight: normal;
  font-size: 16px;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .header.passed .status {
  background: #007b80;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .header.failed .status {
  background: #c70a2a;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .permissions .permission {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #bcbed4;
  background: linear-gradient(to bottom, #ffffff, #f9f9fc);
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .permissions .permission .title {
  padding-right: 30px;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .permissions .permission.passed::after {
  content: " ";
  background-image: url("/static/icons/checkmark-white.svg");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 2px 2px;
  position: absolute;
  right: 4px;
  top: 5px;
  background-color: #007b80;
  width: 17px;
  height: 17px;
  border-radius: 20px;
  padding: 4px;
  top: 15px;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .permissions .permission.failed::after {
  content: "✕";
  color: #ffffff;
  position: absolute;
  right: 4px;
  top: 5px;
  background-color: #c70a2a;
  width: 17px;
  height: 17px;
  border-radius: 20px;
  line-height: 16px;
  font-size: 12px;
  padding-left: 4px;
  font-family: sofia-pro, Arial, sans-serif;
  top: 15px;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .permissions .permission .status {
  font-size: 15px;
  margin-top: 20px;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .permissions .permission .status .fail {
  margin-bottom: 5px;
  background-color: #fef9fa;
  color: #c70a2a;
  padding: 4px 10px;
  border: 1px solid #c70a2a;
  border-radius: 5px;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .permissions .child-permissions {
  padding: 0px 20px 0px 0px;
  border-radius: 0px 0 0 5px;
  margin: 10px -20px -6px 20px;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .permissions .child-permissions .permission {
  padding: 5px 0px;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .permissions .child-permissions .permission:after {
  top: 10px;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .permissions .child-permissions .permission:first-child {
  border-top: 1px solid #bcbed4;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .permissions .child-permissions .permission:last-child {
  border-bottom: none;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .error-msg {
  margin: 18px 0 0 0;
  font-size: 15px;
  background-color: #fffdf7;
  color: #b07d00;
  padding: 4px 10px;
  border: 1px solid #b07d00;
  border-radius: 5px;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .permissions-group .error-msg a {
  color: #b07d00;
  font-weight: bold;
  text-decoration: underline;
}

.connectwise-setup .credentials-wrapper .status-wrapper .results .button-controls {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.connectwise-setup #resource-formula {
  margin-left: 0px;
}

@media (max-width: 768px) {
  .connectwise-setup #id_csat_resource_formula {
    margin-top: 20px;
  }
}
.connectwise-setup #div_id_enable_cloud_radial {
  padding-left: 0;
  display: flex;
  align-items: center;
}

.connectwise-setup #div_id_enable_cloud_radial .custom-control-label {
  margin-left: 10px;
}

.csat-reviews-dashboard {
  font-family: sofia-pro, Arial, sans-serif;
  padding: 20px;
}

@media (max-width: 768px) {
  .csat-reviews-dashboard {
    padding: 30px 0px;
  }
}
.csat-reviews-dashboard .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 20px;
}

@media (max-width: 1024px) {
  .csat-reviews-dashboard .header {
    margin-right: 30px;
  }
}
@media (max-width: 768px) {
  .csat-reviews-dashboard .header .button-primary {
    display: none;
  }
}
.csat-reviews-dashboard .canvas {
  margin: 10px 0 0 0;
  padding: 30px;
}

.csat-reviews-dashboard h1 {
  margin: 0 0 30px 0;
}

.csat-reviews-dashboard header {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #cbccd5;
  padding-bottom: 10px;
  margin-bottom: 26px;
  width: 100%;
}

.csat-reviews-dashboard header .date-range {
  font-size: 19px;
  padding-left: 5px;
  line-height: initial;
  font-weight: normal;
}

.csat-reviews-dashboard .logo {
  padding: 0 0 10px 30px;
}

.csat-reviews-dashboard .metrics-wrap {
  height: 240px;
  min-width: calc(100% + 45px);
  position: relative;
  transition: all 0.5s;
  margin-left: -20px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .csat-reviews-dashboard .metrics-wrap {
    height: 350px;
    width: calc(100% + 10px);
  }
}
@media (max-width: 768px) {
  .csat-reviews-dashboard .metrics-wrap {
    height: 515px;
  }
}
.csat-reviews-dashboard .metrics-wrap .flex-wrapper {
  display: flex;
  width: 100%;
  max-width: 500px;
}

@media (max-width: 1024px) {
  .csat-reviews-dashboard .metrics-wrap .flex-wrapper {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .csat-reviews-dashboard .metrics-wrap .flex-wrapper {
    flex-direction: column;
  }
}
.csat-reviews-dashboard .metrics-wrap .metrics {
  position: absolute;
  left: 0px;
  top: 0;
  transition: all 0.5s;
  width: 100%;
  display: flex;
  margin-top: 5px;
  margin-left: 5px;
}

@media (max-width: 1024px) {
  .csat-reviews-dashboard .metrics-wrap .metrics {
    margin-bottom: 20px;
    width: calc(100% - 20px);
    flex-direction: column;
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .csat-reviews-dashboard .metrics-wrap .metrics {
    margin-left: 0px;
    width: calc(100% - 5px);
  }
}
.csat-reviews-dashboard .metrics-wrap .metrics .card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 3px 6px 2px #cbccd5;
  max-width: 240px;
  width: 100%;
  margin-left: 20px;
  margin-right: 10px;
  align-items: center;
  background: linear-gradient(to bottom, #ffffff, #f9f9fc);
}

@media (max-width: 1024px) {
  .csat-reviews-dashboard .metrics-wrap .metrics .card {
    max-width: none;
    padding: 10px;
    min-height: auto;
    width: calc(100% - 24px);
    margin-left: 15px;
    font-size: 14px;
    display: flex;
    margin-bottom: 20px;
  }
}
.csat-reviews-dashboard .metrics-wrap .metrics .card.csat-score {
  margin-left: 15px;
}

@media (max-width: 1024px) {
  .csat-reviews-dashboard .metrics-wrap .metrics .card.csat-score {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
  }
}
.csat-reviews-dashboard .metrics-wrap .metrics .card.csat-score p {
  font-size: 24px;
  margin-top: 35px;
}

@media (max-width: 1024px) {
  .csat-reviews-dashboard .metrics-wrap .metrics .card.csat-score p {
    margin: 0;
  }
}
.csat-reviews-dashboard .metrics-wrap .metrics .card.csat-score .card-title {
  font-size: 72px;
}

@media (max-width: 1024px) {
  .csat-reviews-dashboard .metrics-wrap .metrics .card.csat-score .card-title {
    font-size: 35px;
  }
}
.csat-reviews-dashboard .metrics-wrap .metrics .card.response-rate {
  position: relative;
}

.csat-reviews-dashboard .metrics-wrap .metrics .card.response-rate .tooltip-wrap {
  width: 17px;
  position: absolute;
  right: 20px;
  top: 20px;
}

@media (max-width: 1024px) {
  .csat-reviews-dashboard .metrics-wrap .metrics .card.response-rate .tooltip-wrap {
    right: 17px;
    top: 94px;
  }
}
@media (max-width: 768px) {
  .csat-reviews-dashboard .metrics-wrap .metrics .card.response-rate .tooltip-wrap {
    top: 12px;
  }
}
.csat-reviews-dashboard .metrics-wrap .metrics .card.response-rate .tooltip-wrap:hover .sb-tooltip {
  left: -238px;
  top: 46px;
  font-size: 14px;
  white-space: initial;
  width: 280px;
  display: block;
}

.csat-reviews-dashboard .metrics-wrap .metrics .card.response-rate .tooltip-wrap:hover .sb-tooltip::before {
  top: -15px;
  right: 20px;
  border-bottom: 14px solid #cbccd5;
  border-top: none;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}

.csat-reviews-dashboard .metrics-wrap .metrics .card.response-rate .tooltip-wrap:hover .sb-tooltip::after {
  top: -13px;
  right: 20px;
  border-bottom: 14px solid white;
  border-top: none;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}

.csat-reviews-dashboard .metrics-wrap .metrics .card .card-body {
  padding: 0;
}

.csat-reviews-dashboard .metrics-wrap .metrics .card p {
  font-family: sofia-pro, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin: 20px 0 0 0;
}

@media (max-width: 768px) {
  .csat-reviews-dashboard .metrics-wrap .metrics .card p {
    margin: 0;
    font-size: 18px;
  }
}
.csat-reviews-dashboard .metrics-wrap .metrics .card .card-title {
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 50px;
  font-weight: bold;
  color: #00054d;
  margin: 5px 0 0 0;
}

@media (max-width: 768px) {
  .csat-reviews-dashboard .metrics-wrap .metrics .card .card-title {
    font-size: 35px;
  }
}
.csat-reviews-dashboard .metrics-wrap .metrics .card .details {
  align-items: center;
  height: 70px;
  color: #6d6f94;
  margin-top: 6px;
  display: flex;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 12px;
  border-top: 1px solid #e1e2f0;
  padding: 15px 0 10px 0;
  justify-content: space-evenly;
  width: 100%;
  text-align: center;
}

.csat-reviews-dashboard .metrics-wrap .metrics .card .details img {
  width: 18px;
  height: 18px;
  margin-bottom: 6px;
}

.csat-reviews-dashboard .metrics-wrap .metrics .card .details .wrapper .score {
  display: block;
  margin: 6px auto 0 auto;
}

.csat-reviews-dashboard .metrics-wrap .metrics .card .details .score {
  font-weight: bold;
  font-size: 16px;
}

.csat-reviews-dashboard .table-wrapper {
  overflow-x: scroll;
  width: 100%;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable {
  font-size: 16px;
  min-width: 1000px;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead {
  height: 55px;
  color: #1f214d;
  vertical-align: top;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead th {
  border: none !important;
  font-weight: normal;
  padding: 0 15px !important;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead th.sorting:after {
  content: "\e601";
  margin-right: -20px;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead th.sorting,
.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead th.sorting_asc,
.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead th.sorting_desc {
  border: none !important;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead th.sorting:after,
.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead th.sorting_asc:after,
.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead th.sorting_desc:after {
  font-family: "Glyphicons Regular" !important;
  position: initial;
  background: none;
  height: 15px;
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead th.sorting_asc,
.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead th.sorting_desc {
  color: #1d1d1b;
  font-weight: bold;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead th.sorting_asc:after,
.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead th.sorting_desc:after {
  color: #00054d;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead th.sorting:after {
  color: #1f214d;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable thead tr.hover {
  background: none !important;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable tr[role=row].hover {
  background: #f0f1fa;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable tr:not([role=row]).hover {
  background: #f0f1fa;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable tr .column-action {
  width: 80px;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable tr .column-publish {
  position: relative;
  overflow: visible;
  text-align: center;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable tr .column-publish .tooltip {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  border: solid 1px #cbccd5;
  background-color: #ffffff;
  padding: 8px 10px;
  width: 240px;
  left: -206px;
  border-radius: 5px;
  font-family: sofia-pro, Arial, sans-serif;
  font-size: 16px;
  color: #92939b;
  top: 2px;
  display: none;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable tr .column-publish .tooltip.no-comment {
  width: 190px;
  left: -156px;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable tr .column-publish .tooltip:after {
  content: " ";
  position: absolute;
  top: 6px;
  right: -16px;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid white;
  border-right: none;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable tr .column-publish .tooltip:before {
  content: " ";
  position: absolute;
  top: 6px;
  right: -18px;
  border-bottom: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 18px solid #cbccd5;
  border-right: none;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable tr .column-publish:hover .tooltip {
  opacity: 1;
  display: block;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable tr td {
  white-space: inherit;
  padding: 10px 8px;
  vertical-align: top;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable a {
  color: #000a9f;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable a:hover {
  text-decoration: underline;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable .image-wrapper {
  text-align: center;
  display: flex;
  justify-content: left;
  padding-top: 5px;
  padding-left: 16px;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable .view-details {
  float: right;
  padding: 6px 10px;
  min-width: unset;
  margin-right: 10px;
  width: 78px;
}

.csat-reviews-dashboard .table-wrapper table#reactions.dataTable .dataTables_empty {
  padding: 80px 0;
}

.csat-reviews-dashboard .table-controls-bottom {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .csat-reviews-dashboard .table-controls-bottom {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .csat-reviews-dashboard .table-controls-bottom .paging_simple_numbers {
    margin-bottom: 30px;
  }
  .csat-reviews-dashboard .table-controls-bottom .paging_simple_numbers ul {
    justify-content: center;
  }
}
.csat-reviews-dashboard #reactions_wrapper .buttons-csv {
  display: none;
}

.csat-reviews-dashboard #reactions_wrapper .dataTables_filter {
  float: right;
  border: solid 1px #cbccd5;
  position: relative;
  padding-left: 30px;
  margin-left: 10px;
  background: #ffffff;
}

.csat-reviews-dashboard #reactions_wrapper .dataTables_filter input {
  border: none;
  margin: 0;
  padding: 0;
  min-height: 38px;
}

.csat-reviews-dashboard #reactions_wrapper .dataTables_filter img {
  position: absolute;
  left: 10px;
  top: 12px;
}

@media (max-width: 768px) {
  .csat-reviews-dashboard #reactions_wrapper .dataTables_filter {
    float: left;
    clear: both;
    margin: 20px auto;
  }
}
@media (max-width: 1024px) {
  .csat-reviews-dashboard #reactions_wrapper .dataTables_filter + .dt-buttons {
    float: right !important;
  }
  .csat-reviews-dashboard #reactions_wrapper .dataTables_filter + .dt-buttons button {
    min-width: unset;
  }
}
@media (max-width: 768px) {
  .csat-reviews-dashboard #reactions_wrapper .dataTables_filter + .dt-buttons {
    clear: none;
    margin: 20px 0;
  }
}
.csat-reviews-dashboard #reactions_wrapper .dt-buttons {
  margin: 0px;
  width: auto;
}

.csat-reviews-dashboard #reactions_wrapper .dt-buttons .button-secondary {
  padding: 6px;
}

.csat-reviews-dashboard #reactions_wrapper .dataTables_info {
  float: left;
}

.csat-reviews-dashboard #reactions_wrapper .dataTables_length {
  color: #6d6f94;
  font-size: 18px;
}

.csat-reviews-dashboard #reactions_wrapper .dataTables_length select {
  width: 50px;
  display: inline-block;
  padding-left: 5px !important;
  background: url("/static/icons/select-arrow.svg") no-repeat;
  background-position-x: 30px;
  background-position-y: center;
  border: 1px solid #6d6f94;
  border-radius: 0;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .csat-reviews-dashboard #reactions_wrapper .dataTables_length select {
      background: none;
    }
  }
}
.csat-reviews-dashboard #reactions_wrapper .dataTables_paginate {
  float: left !important;
}

.csat-reviews-dashboard #reactions_wrapper .dataTables_paginate ul {
  align-items: center;
  display: flex;
  height: 40px;
  border: solid 1px #cbccd5;
  background-color: #ffffff;
  border-radius: 0;
  font-size: 12px;
}

.csat-reviews-dashboard #reactions_wrapper .dataTables_paginate ul a {
  border: none;
  height: 40px;
  padding-top: 13px;
  border-radius: 0;
  background: none;
  color: #000333;
  text-decoration: none;
}

.csat-reviews-dashboard #reactions_wrapper .dataTables_paginate ul a:hover {
  background: #00054d;
  color: #fff;
}

.csat-reviews-dashboard #reactions_wrapper .dataTables_paginate ul .page-item.active .page-link {
  background-color: #00054d;
  opacity: 0.4;
  pointer-events: none;
  color: #fff;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions {
  margin-bottom: 20px !important;
  margin-top: 20px !important;
  float: left;
  color: #1f214d;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions tbody {
  border: 1px solid #cbccd5;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions tbody tr.odd,
.csat-reviews-dashboard #reactions_wrapper table#reactions tbody tr.odd + tr.comment-row {
  background-color: #f0f1fa !important;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions tbody td {
  border: none;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-child-tags {
  margin-top: 0.5em;
  width: calc(100% - 180px);
  float: left;
  clear: both;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-child-comment:empty {
  display: none;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-child-comment {
  display: inline-block;
  max-width: 720px;
  padding: 10px;
  line-height: 20px;
  position: relative;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(230, 230, 230);
  border-radius: 0.5rem;
  float: left;
  clear: both;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions tr .csat-reaction-child-comment p {
  height: 21px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-child-comment:after,
.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-child-comment:before {
  bottom: 100%;
  left: 14px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-child-comment:after {
  border-color: transparent;
  border-bottom-color: rgb(247, 247, 247);
  border-width: 5px;
  margin-left: 11px;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-child-comment:before {
  border-color: transparent;
  border-bottom-color: rgb(230, 230, 230);
  border-width: 6px;
  margin-left: 10px;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-child-comment p {
  margin: 0;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-child-comment p:before,
.csat-reviews-dashboard #reactions_wrapper table#reactions .modal-reaction-details .reaction-details-comment p:before {
  color: #e1e2f0;
  content: "“";
  font-size: 23px;
  margin-right: 5px;
  vertical-align: -4px;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-child-comment p:after,
.csat-reviews-dashboard #reactions_wrapper table#reactions .modal-reaction-details .reaction-details-comment p:after {
  color: #e1e2f0;
  content: "”";
  font-size: 23px;
  margin-left: 5px;
  vertical-align: -4px;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-child-comment-count {
  background-color: #FBFBFB;
  border: 1px solid #F1F1F1;
  border-radius: 1em;
  color: #333;
  padding: 3px 0.8em;
  margin-left: 1em;
  font-size: 0.875em;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-positive .csat-reaction-child-comment {
  border: 1px solid #007b80;
  background-color: #f5fcfc;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-positive .csat-reaction-child-comment:before {
  border-bottom-color: #007b80;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-positive .csat-reaction-child-comment:after {
  border-bottom-color: #f5fcfc;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-positive .csat-reaction-child-comment p {
  color: #007b80;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-positive .csat-reaction-child-comment p:after, .csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-positive .csat-reaction-child-comment p:before {
  color: #007b80;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-neutral .csat-reaction-child-comment {
  border: 1px solid #b07d00;
  background-color: #fffdf7;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-neutral .csat-reaction-child-comment:after {
  border-bottom-color: #fffdf7;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-neutral .csat-reaction-child-comment:before {
  border-bottom-color: #b07d00;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-neutral .csat-reaction-child-comment p {
  color: #b07d00;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-neutral .csat-reaction-child-comment p:before, .csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-neutral .csat-reaction-child-comment p:after {
  color: #b07d00;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-negative .csat-reaction-child-comment {
  border: 1px solid #c70a2a;
  background-color: #fef9fa;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-negative .csat-reaction-child-comment:before {
  border-bottom-color: #c70a2a;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-negative .csat-reaction-child-comment:after {
  border-bottom-color: #fef9fa;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-negative .csat-reaction-child-comment p {
  color: #c70a2a;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-negative .csat-reaction-child-comment p:before, .csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-type-negative .csat-reaction-child-comment p:after {
  color: #c70a2a;
}

.csat-reviews-dashboard #reactions_wrapper table#reactions .csat-reaction-child-comment-child-count-icon {
  margin-left: 0.25em;
}

.csat-live-dashboard {
  font-family: sofia-pro, Arial, sans-serif;
  background-color: #ffffff;
}

.csat-live-dashboard.full-screen {
  height: calc(100vh - 40px);
  overflow: auto;
}

.csat-live-dashboard.full-screen header {
  position: fixed;
  background-color: #ffffff;
  width: calc(100% - 70px);
}

.csat-live-dashboard.full-screen .section {
  overflow: auto;
  box-shadow: 0 -13px 8px -14px inset #cbccd5;
  border-radius: 0 0 16px 16px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.csat-live-dashboard.full-screen .section::-webkit-scrollbar {
  display: none;
}

.csat-live-dashboard.full-screen #reactions_wrapper {
  margin-top: 74px;
}

.csat-live-dashboard.full-screen table {
  position: relative;
}

.csat-live-dashboard.full-screen table th {
  position: sticky;
  top: 72px;
  z-index: 98;
}

.csat-live-dashboard.full-screen table .scroll-repeat {
  display: table-row !important;
}

.csat-live-dashboard.full-screen table .scroll-repeat.first {
  border-top: 4px solid #00054d;
}

.csat-live-dashboard header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #bcbed4;
  z-index: 99;
}

.csat-live-dashboard header h1 {
  display: flex;
  align-items: center;
  line-height: 50px;
}

.csat-live-dashboard header h1 .mini-logo {
  width: 38px;
  overflow: hidden;
  margin-right: 10px;
  transition: all 0.3s;
}

.csat-live-dashboard header h1 .mini-logo:hover {
  width: 148px;
}

.csat-live-dashboard header h1 .mini-logo img {
  height: 50px;
}

.csat-live-dashboard header .controls {
  display: flex;
  align-items: center;
}

.csat-live-dashboard header .controls .full-screen-toggle {
  color: #007b80;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  font-size: 17px;
  font-weight: bold;
  transition: all 0.2s;
  align-items: center;
  opacity: 1;
  transition: all 0.3s;
}

.csat-live-dashboard header .controls .full-screen-toggle.invisible {
  opacity: 0;
}

@media (max-width: 768px) {
  .csat-live-dashboard header .controls .full-screen-toggle {
    display: none;
  }
}
.csat-live-dashboard header .controls .full-screen-toggle .label {
  margin-top: -5px;
  margin-right: 12px;
  transition: all 0.2s;
}

.csat-live-dashboard header .controls .full-screen-toggle:hover .icon {
  width: 28px;
  height: 28px;
}

.csat-live-dashboard header .controls .full-screen-toggle:hover .icon .edge {
  width: 10px;
  height: 10px;
}

.csat-live-dashboard header .controls .full-screen-toggle:hover .label {
  text-decoration: underline;
  margin-right: 10px;
}

.csat-live-dashboard header .controls .full-screen-toggle .icon {
  width: 26px;
  height: 26px;
  position: relative;
  margin-bottom: 4px;
  transition: all 0.2s;
}

.csat-live-dashboard header .controls .full-screen-toggle .icon .edge {
  border: 4px solid #007b80;
  width: 11px;
  height: 11px;
  display: block;
  position: absolute;
  border-width: 4px 4px 0 0;
  transition: all 0.2s;
}

.csat-live-dashboard header .controls .full-screen-toggle .icon .edge.top-left {
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.csat-live-dashboard header .controls .full-screen-toggle .icon .edge.top-right {
  top: 0;
  right: 0;
}

.csat-live-dashboard header .controls .full-screen-toggle .icon .edge.bottom-right {
  bottom: 0;
  right: 0;
  transform: rotate(90deg);
}

.csat-live-dashboard header .controls .full-screen-toggle .icon .edge.bottom-left {
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}

.csat-live-dashboard header .controls .full-screen-toggle.active .icon .edge.top-left {
  transform: rotate(90deg);
}

.csat-live-dashboard header .controls .full-screen-toggle.active .icon .edge.top-right {
  transform: rotate(180deg);
}

.csat-live-dashboard header .controls .full-screen-toggle.active .icon .edge.bottom-right {
  transform: rotate(-90deg);
}

.csat-live-dashboard header .controls .full-screen-toggle.active .icon .edge.bottom-left {
  transform: rotate(0deg);
}

.csat-live-dashboard header .controls .settings-toggle-wrap {
  border-left: 1px solid #bcbed4;
  padding-left: 20px;
  margin-left: 20px;
}

.csat-live-dashboard .settings-panel {
  margin: 20px 0 10px 0;
}

.csat-live-dashboard .settings-panel .save-changes.loaded {
  position: relative;
  padding: 10px 20px 10px 8px;
}

.csat-live-dashboard .settings-panel .save-changes.loaded::after {
  content: " ";
  background-image: url("/static/icons/checkmark-white.svg");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 2px 2px;
  position: absolute;
  right: 4px;
  top: 5px;
  background-color: #007b80;
  width: 17px;
  height: 17px;
  border-radius: 20px;
  padding: 4px;
  top: 10px;
  right: 14px;
  background-color: unset;
  width: 22px;
  height: 22px;
  background-size: 22px;
}

.csat-live-dashboard .settings-panel .settings-error {
  color: #c70a2a;
  margin-top: 20px;
  width: 100%;
}

.csat-live-dashboard .settings-panel .flex-wrapper {
  display: flex;
  margin-bottom: 60px;
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper {
  display: flex;
  flex-direction: column;
  margin-right: 60px;
  min-width: 180px;
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper h3 {
  margin-bottom: 30px;
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .rating-sentiment {
  margin-bottom: 40px;
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .rating-sentiment .sentiment-options .sentiment {
  background-size: 28px;
  background-repeat: no-repeat;
  background-position: 4px 4px;
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .rating-sentiment .sentiment-options .sentiment.positive {
  background-image: url("/static/img/sentiment_positive_grey.svg");
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .rating-sentiment .sentiment-options .sentiment.positive.selected {
  background-image: url("/static/img/sentiment_positive.svg");
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .rating-sentiment .sentiment-options .sentiment.neutral {
  background-image: url("/static/img/sentiment_neutral_grey.svg");
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .rating-sentiment .sentiment-options .sentiment.neutral.selected {
  background-image: url("/static/img/sentiment_neutral.svg");
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .rating-sentiment .sentiment-options .sentiment.negative {
  background-image: url("/static/img/sentiment_negative_grey.svg");
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .rating-sentiment .sentiment-options .sentiment.negative.selected {
  background-image: url("/static/img/sentiment_negative.svg");
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .rating-sentiment .sentiment-options .sentiment img {
  width: 24px;
  height: 24px;
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .font-options, .csat-live-dashboard .settings-panel .sub-flex-wrapper .sentiment-options {
  display: flex;
  align-items: center;
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .font-options div, .csat-live-dashboard .settings-panel .sub-flex-wrapper .sentiment-options div {
  cursor: pointer;
  padding: 5px;
  background: white;
  box-shadow: 0 2px 3px 1px #cbccd5;
  border-radius: 5px;
  width: 36px;
  height: 36px;
  margin-right: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 25px;
  font-weight: bold;
  color: #bcbed4;
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .font-options div:hover, .csat-live-dashboard .settings-panel .sub-flex-wrapper .sentiment-options div:hover {
  box-shadow: 0 3px 3px 3px #cbccd5;
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .font-options div.selected, .csat-live-dashboard .settings-panel .sub-flex-wrapper .sentiment-options div.selected {
  color: #000fe3;
  box-shadow: 0 3px 3px 3px #cbccd5;
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .font-options div.small, .csat-live-dashboard .settings-panel .sub-flex-wrapper .sentiment-options div.small {
  font-size: 16px;
  line-height: 27px;
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .font-options div.medium, .csat-live-dashboard .settings-panel .sub-flex-wrapper .sentiment-options div.medium {
  font-size: 23px;
  line-height: 24px;
}

.csat-live-dashboard .settings-panel .sub-flex-wrapper .font-options div.large, .csat-live-dashboard .settings-panel .sub-flex-wrapper .sentiment-options div.large {
  font-size: 28px;
  line-height: 23px;
}

.csat-live-dashboard .settings-panel .fields {
  display: flex;
  flex-direction: column;
  margin-right: 40px;
}

.csat-live-dashboard .settings-panel .fields .toggles {
  display: flex;
  flex-wrap: wrap;
  max-width: 550px;
}

.csat-live-dashboard .settings-panel .fields .toggles .mini-toggle {
  width: 50%;
  min-width: 140px;
}

.csat-live-dashboard .settings-panel .auto-scroll .mini-toggle:first-child, .csat-live-dashboard .settings-panel .additional-settings .mini-toggle:first-child, .csat-live-dashboard .settings-panel .font-size .mini-toggle:first-child {
  margin-top: 0;
}

.csat-live-dashboard .settings-panel .comment-selector {
  display: flex;
  flex-direction: column;
}

.csat-live-dashboard .settings-panel .mini-toggle {
  width: 100%;
  margin: 10px 0 0 0;
}

.csat-live-dashboard .settings-panel .mini-toggle .description {
  margin-left: 40px;
}

.csat-live-dashboard .dataTables_wrapper {
  padding: 0;
}

.csat-live-dashboard #reactions {
  font-size: 16px;
  table-layout: unset;
}

.csat-live-dashboard #reactions[data-font=medium] {
  font-size: 19px;
}

.csat-live-dashboard #reactions[data-font=medium] tbody tr td {
  padding: 14px 8px;
}

.csat-live-dashboard #reactions[data-font=large] {
  font-size: 22px;
}

.csat-live-dashboard #reactions[data-font=large] tbody tr td {
  padding: 20px 8px;
}

.csat-live-dashboard #reactions thead {
  height: 55px;
  color: #1f214d;
  vertical-align: top;
}

.csat-live-dashboard #reactions thead th {
  border: none !important;
  font-weight: bold;
  padding: 20px 15px 15px 8px !important;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background-color: #ffffff;
}

.csat-live-dashboard #reactions thead th.column-sentiment {
  padding-left: 15px !important;
}

.csat-live-dashboard #reactions tbody {
  border: 1px solid #e1e2f0;
}

.csat-live-dashboard #reactions tbody .scroll-repeat {
  display: none;
}

.csat-live-dashboard #reactions tbody tr.has-comment.hide + tr {
  display: none;
}

.csat-live-dashboard #reactions tbody tr.has-comment td {
  border-bottom: 0;
}

.csat-live-dashboard #reactions tbody tr.highlight {
  border: 3px solid #00CBA6;
  border-left: none;
  border-right: none;
  position: relative;
  transition: all 0.2s;
}

.csat-live-dashboard #reactions tbody tr.highlight:hover td:last-child::before {
  opacity: 0;
}

.csat-live-dashboard #reactions tbody tr.highlight td:last-child {
  position: relative;
}

.csat-live-dashboard #reactions tbody tr.highlight td:last-child::before {
  content: "New!";
  background: #00CBA6;
  width: 50px;
  height: 24px;
  padding: 0px 9px;
  box-shadow: 0 4px 7px 0px #e1e2f0;
  position: absolute;
  top: 0px;
  right: 0;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  opacity: 1;
  transition: all 0.2s;
}

.csat-live-dashboard #reactions tbody tr.highlight.has-comment {
  border-bottom: none;
}

.csat-live-dashboard #reactions tbody tr.highlight + tr:not([role=row]) {
  border-bottom: 3px solid #00CBA6;
}

.csat-live-dashboard #reactions tbody tr.status-done .image-wrapper {
  position: relative;
  display: inline-block;
}

.csat-live-dashboard #reactions tbody tr.status-done .image-wrapper:after {
  position: absolute;
  content: "DONE";
  left: -30px;
  top: 9px;
  font-size: 11px;
  transform: rotate(270deg);
  font-family: sofia-pro, Arial, sans-serif;
  background: #007b80;
  color: #fff;
  padding: 0px 13px;
  border-radius: 2px;
  line-height: 16px;
  letter-spacing: 1.5px;
}

.csat-live-dashboard #reactions tbody tr[role=row].hover {
  background: #f0f1fa;
}

.csat-live-dashboard #reactions tbody tr:not([role=row]).hover {
  background: #f0f1fa;
}

.csat-live-dashboard #reactions tbody tr .image-wrapper {
  padding-top: 5px;
}

.csat-live-dashboard #reactions tbody tr td {
  white-space: inherit;
  padding: 10px 8px;
  vertical-align: middle;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-child-comment:empty {
  display: none;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-child .csat-reaction-child-comment {
  display: inline-block;
  padding: 10px;
  line-height: 24px;
  position: relative;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(230, 230, 230);
  border-radius: 0.5rem;
  margin-bottom: 5px;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-child .csat-reaction-child-comment p {
  margin: 0;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-child .csat-reaction-child-comment p:before {
  color: #e1e2f0;
  content: "“";
  font-size: 23px;
  margin-right: 5px;
  vertical-align: -4px;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-child .csat-reaction-child-comment p:after {
  color: #e1e2f0;
  content: "”";
  font-size: 23px;
  margin-left: 5px;
  vertical-align: -4px;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-child .csat-reaction-child-comment:after, .csat-live-dashboard #reactions tbody tr .csat-reaction-child .csat-reaction-child-comment:before {
  bottom: 100%;
  left: 14px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-child .csat-reaction-child-comment:after {
  border-color: transparent;
  border-bottom-color: rgb(247, 247, 247);
  border-width: 5px;
  margin-left: 11px;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-child .csat-reaction-child-comment:before {
  border-color: transparent;
  border-bottom-color: rgb(230, 230, 230);
  border-width: 6px;
  margin-left: 10px;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-child .published {
  display: inline-block;
  background-color: #007b80;
  color: white;
  padding: 0px 5px 1px 5px;
  margin-top: 3px;
  border-radius: 2px;
  font-size: 14px;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-positive .csat-reaction-child-comment {
  border: 1px solid #007b80;
  background-color: #f5fcfc;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-positive .csat-reaction-child-comment:before {
  border-bottom-color: #007b80;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-positive .csat-reaction-child-comment:after {
  border-bottom-color: #f5fcfc;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-positive .csat-reaction-child-comment p {
  color: #007b80;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-positive .csat-reaction-child-comment p:after, .csat-live-dashboard #reactions tbody tr .csat-reaction-type-positive .csat-reaction-child-comment p:before {
  color: #007b80;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-neutral .csat-reaction-child-comment {
  border: 1px solid #b07d00;
  background-color: #fffdf7;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-neutral .csat-reaction-child-comment:after {
  border-bottom-color: #fffdf7;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-neutral .csat-reaction-child-comment:before {
  border-bottom-color: #b07d00;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-neutral .csat-reaction-child-comment p {
  color: #b07d00;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-neutral .csat-reaction-child-comment p:before, .csat-live-dashboard #reactions tbody tr .csat-reaction-type-neutral .csat-reaction-child-comment p:after {
  color: #b07d00;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-negative .csat-reaction-child-comment {
  border: 1px solid #c70a2a;
  background-color: #fef9fa;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-negative .csat-reaction-child-comment:before {
  border-bottom-color: #c70a2a;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-negative .csat-reaction-child-comment:after {
  border-bottom-color: #fef9fa;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-negative .csat-reaction-child-comment p {
  color: #c70a2a;
}

.csat-live-dashboard #reactions tbody tr .csat-reaction-type-negative .csat-reaction-child-comment p:before, .csat-live-dashboard #reactions tbody tr .csat-reaction-type-negative .csat-reaction-child-comment p:after {
  color: #c70a2a;
}

.csat-live-dashboard #reactions a {
  color: #000a9f;
}

.csat-live-dashboard #reactions a:hover {
  text-decoration: underline;
}

.csat-live-dashboard #reactions .image-wrapper {
  text-align: center;
  display: flex;
  justify-content: left;
  padding-top: 5px;
  padding-left: 16px;
}

.csat-live-dashboard #reactions .view-details {
  float: right;
  padding: 6px 10px;
  min-width: unset;
  margin-right: 10px;
  width: 78px;
}

.csat-live-dashboard #reactions .dataTables_empty {
  padding: 80px 0;
}

.page-login {
  font-family: sofia-pro, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-login .auth-area {
  min-height: unset;
}

.page-login .auth-container {
  min-width: 300px;
}

.page-login .main-login .login-button {
  width: 100%;
}

.page-login .login-divider {
  position: relative;
  width: 300px;
  margin: 20px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-login .login-divider .hr {
  border-bottom: 1px solid #495057;
  width: 110px;
}

.page-login .login-divider .text {
  width: 50px;
  height: 24px;
  top: 23px;
  left: 40px;
  text-align: center;
  color: #495057;
}

.page-login .sso-login {
  height: 42px;
  width: 312px;
  margin: 20px auto;
  background: #22326E;
  font-weight: normal;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.page-login .sso-login img {
  display: inline-block;
  width: 32px;
  margin-right: 10px;
}

.select-region {
  font-family: sofia-pro, sans-serif;
}

.select-region .canvas {
  width: calc(100% - 50px);
}

.select-region .content-wrap {
  padding: 30px 10px;
}

.select-region .content-wrap h2 {
  width: 100%;
  text-align: center;
  max-width: 440px;
  margin: 0 auto 50px auto;
  font-size: 22px;
  line-height: 28px;
}

.select-region .content-wrap .link-wrapper {
  display: flex;
  justify-content: space-around;
}

@media (max-width: 768px) {
  .select-region .content-wrap .link-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.select-region .content-wrap .link-wrapper .region-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 198px;
}

@media (max-width: 768px) {
  .select-region .content-wrap .link-wrapper .region-link {
    margin-bottom: 40px;
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .select-region .content-wrap .link-wrapper .region-link:last-child {
    margin-bottom: 10px;
  }
}
.select-region .content-wrap .link-wrapper .region-link:hover {
  text-decoration: none;
}

.select-region .content-wrap .link-wrapper .region-link:hover .img-wrap {
  box-shadow: 0 1px 4px 1px #bcbed4;
}

.select-region .content-wrap .link-wrapper .region-link:hover .label {
  border-bottom: 2px solid #000a9f;
  margin-bottom: 0;
}

.select-region .content-wrap .link-wrapper .region-link .label {
  text-decoration: none;
  font-size: 18px;
  min-width: 144px;
  margin-bottom: 2px;
}

.select-region .content-wrap .link-wrapper .region-link .label:hover {
  text-decoration: none;
}

.select-region .content-wrap .link-wrapper .region-link .img-wrap {
  width: 45px;
  height: 25px;
  overflow: hidden;
  border-radius: 4px;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .select-region .content-wrap .link-wrapper .region-link .img-wrap {
    margin: 0 10px 0 0;
  }
}
.select-region .content-wrap .link-wrapper .region-link .img-wrap.eu {
  background-image: url("/static/img/Flag_of_Europe.svg");
  background-position: 2px -1px;
  background-size: 41px;
  background-color: #013298;
}

.select-region .content-wrap .link-wrapper .region-link .img-wrap.au {
  background-image: url("/static/img/Flag_of_Australia.svg");
}

.select-region .content-wrap .link-wrapper .region-link .img-wrap.na {
  background-image: url("/static/img/Flag_of_the_United_States.svg");
}

.hidden-while-loading {
  opacity: 0;
  transition: opacity 0.65s ease;
}

.hidden-while-loading.loading-complete {
  opacity: 1;
}

.smilebackloading {
  width: 100vw;
  height: 100vh;
  overflow: visible;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.smilebackloading svg {
  position: absolute;
  width: 200px;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
}

@media (max-width: 768px) {
  .smilebackloading svg {
    width: 100px;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
  }
}
.smilebackloading .bubbleShape {
  fill: none;
  stroke-width: 35;
  stroke-dasharray: 2000;
  -webkit-animation: bubbleanim 2s infinite ease-in-out;
  animation: bubbleanim 2s infinite ease-in-out;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  stroke: #00054d;
}

.smilebackloading .mouthShape {
  fill: none;
  stroke-width: 40;
  stroke-dasharray: 1000;
  -webkit-animation: mouthanim 2s infinite ease-in-out;
  animation: mouthanim 2s infinite ease-in-out;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  stroke: #9d3aff;
}

.smilebackloading.indetermine .bubbleShape {
  -webkit-animation: bubblefadeanim 2s infinite ease-in-out !important;
  animation: bubblefadeanim 2s infinite ease-in-out !important;
}

.smilebackloading.indetermine .mouthShape {
  stroke-dashoffset: 999;
  -webkit-animation: none;
  animation: none;
}

.smilebackloading.indetermine.value-1 .mouthShape {
  stroke-dashoffset: 996.37;
}

.smilebackloading.indetermine.value-2 .mouthShape {
  stroke-dashoffset: 992.74;
}

.smilebackloading.indetermine.value-3 .mouthShape {
  stroke-dashoffset: 989.11;
}

.smilebackloading.indetermine.value-4 .mouthShape {
  stroke-dashoffset: 985.48;
}

.smilebackloading.indetermine.value-5 .mouthShape {
  stroke-dashoffset: 981.85;
}

.smilebackloading.indetermine.value-6 .mouthShape {
  stroke-dashoffset: 978.22;
}

.smilebackloading.indetermine.value-7 .mouthShape {
  stroke-dashoffset: 974.59;
}

.smilebackloading.indetermine.value-8 .mouthShape {
  stroke-dashoffset: 970.96;
}

.smilebackloading.indetermine.value-9 .mouthShape {
  stroke-dashoffset: 967.33;
}

.smilebackloading.indetermine.value-10 .mouthShape {
  stroke-dashoffset: 963.7;
}

.smilebackloading.indetermine.value-11 .mouthShape {
  stroke-dashoffset: 960.07;
}

.smilebackloading.indetermine.value-12 .mouthShape {
  stroke-dashoffset: 956.44;
}

.smilebackloading.indetermine.value-13 .mouthShape {
  stroke-dashoffset: 952.81;
}

.smilebackloading.indetermine.value-14 .mouthShape {
  stroke-dashoffset: 949.18;
}

.smilebackloading.indetermine.value-15 .mouthShape {
  stroke-dashoffset: 945.55;
}

.smilebackloading.indetermine.value-16 .mouthShape {
  stroke-dashoffset: 941.92;
}

.smilebackloading.indetermine.value-17 .mouthShape {
  stroke-dashoffset: 938.29;
}

.smilebackloading.indetermine.value-18 .mouthShape {
  stroke-dashoffset: 934.66;
}

.smilebackloading.indetermine.value-19 .mouthShape {
  stroke-dashoffset: 931.03;
}

.smilebackloading.indetermine.value-20 .mouthShape {
  stroke-dashoffset: 927.4;
}

.smilebackloading.indetermine.value-21 .mouthShape {
  stroke-dashoffset: 923.77;
}

.smilebackloading.indetermine.value-22 .mouthShape {
  stroke-dashoffset: 920.14;
}

.smilebackloading.indetermine.value-23 .mouthShape {
  stroke-dashoffset: 916.51;
}

.smilebackloading.indetermine.value-24 .mouthShape {
  stroke-dashoffset: 912.88;
}

.smilebackloading.indetermine.value-25 .mouthShape {
  stroke-dashoffset: 909.25;
}

.smilebackloading.indetermine.value-26 .mouthShape {
  stroke-dashoffset: 905.62;
}

.smilebackloading.indetermine.value-27 .mouthShape {
  stroke-dashoffset: 901.99;
}

.smilebackloading.indetermine.value-28 .mouthShape {
  stroke-dashoffset: 898.36;
}

.smilebackloading.indetermine.value-29 .mouthShape {
  stroke-dashoffset: 894.73;
}

.smilebackloading.indetermine.value-30 .mouthShape {
  stroke-dashoffset: 891.1;
}

.smilebackloading.indetermine.value-31 .mouthShape {
  stroke-dashoffset: 887.47;
}

.smilebackloading.indetermine.value-32 .mouthShape {
  stroke-dashoffset: 883.84;
}

.smilebackloading.indetermine.value-33 .mouthShape {
  stroke-dashoffset: 880.21;
}

.smilebackloading.indetermine.value-34 .mouthShape {
  stroke-dashoffset: 876.58;
}

.smilebackloading.indetermine.value-35 .mouthShape {
  stroke-dashoffset: 872.95;
}

.smilebackloading.indetermine.value-36 .mouthShape {
  stroke-dashoffset: 869.32;
}

.smilebackloading.indetermine.value-37 .mouthShape {
  stroke-dashoffset: 865.69;
}

.smilebackloading.indetermine.value-38 .mouthShape {
  stroke-dashoffset: 862.06;
}

.smilebackloading.indetermine.value-39 .mouthShape {
  stroke-dashoffset: 858.43;
}

.smilebackloading.indetermine.value-40 .mouthShape {
  stroke-dashoffset: 854.8;
}

.smilebackloading.indetermine.value-41 .mouthShape {
  stroke-dashoffset: 851.17;
}

.smilebackloading.indetermine.value-42 .mouthShape {
  stroke-dashoffset: 847.54;
}

.smilebackloading.indetermine.value-43 .mouthShape {
  stroke-dashoffset: 843.91;
}

.smilebackloading.indetermine.value-44 .mouthShape {
  stroke-dashoffset: 840.28;
}

.smilebackloading.indetermine.value-45 .mouthShape {
  stroke-dashoffset: 836.65;
}

.smilebackloading.indetermine.value-46 .mouthShape {
  stroke-dashoffset: 833.02;
}

.smilebackloading.indetermine.value-47 .mouthShape {
  stroke-dashoffset: 829.39;
}

.smilebackloading.indetermine.value-48 .mouthShape {
  stroke-dashoffset: 825.76;
}

.smilebackloading.indetermine.value-49 .mouthShape {
  stroke-dashoffset: 822.13;
}

.smilebackloading.indetermine.value-50 .mouthShape {
  stroke-dashoffset: 818.5;
}

.smilebackloading.indetermine.value-51 .mouthShape {
  stroke-dashoffset: 814.87;
}

.smilebackloading.indetermine.value-52 .mouthShape {
  stroke-dashoffset: 811.24;
}

.smilebackloading.indetermine.value-53 .mouthShape {
  stroke-dashoffset: 807.61;
}

.smilebackloading.indetermine.value-54 .mouthShape {
  stroke-dashoffset: 803.98;
}

.smilebackloading.indetermine.value-55 .mouthShape {
  stroke-dashoffset: 800.35;
}

.smilebackloading.indetermine.value-56 .mouthShape {
  stroke-dashoffset: 796.72;
}

.smilebackloading.indetermine.value-57 .mouthShape {
  stroke-dashoffset: 793.09;
}

.smilebackloading.indetermine.value-58 .mouthShape {
  stroke-dashoffset: 789.46;
}

.smilebackloading.indetermine.value-59 .mouthShape {
  stroke-dashoffset: 785.83;
}

.smilebackloading.indetermine.value-60 .mouthShape {
  stroke-dashoffset: 782.2;
}

.smilebackloading.indetermine.value-61 .mouthShape {
  stroke-dashoffset: 778.57;
}

.smilebackloading.indetermine.value-62 .mouthShape {
  stroke-dashoffset: 774.94;
}

.smilebackloading.indetermine.value-63 .mouthShape {
  stroke-dashoffset: 771.31;
}

.smilebackloading.indetermine.value-64 .mouthShape {
  stroke-dashoffset: 767.68;
}

.smilebackloading.indetermine.value-65 .mouthShape {
  stroke-dashoffset: 764.05;
}

.smilebackloading.indetermine.value-66 .mouthShape {
  stroke-dashoffset: 760.42;
}

.smilebackloading.indetermine.value-67 .mouthShape {
  stroke-dashoffset: 756.79;
}

.smilebackloading.indetermine.value-68 .mouthShape {
  stroke-dashoffset: 753.16;
}

.smilebackloading.indetermine.value-69 .mouthShape {
  stroke-dashoffset: 749.53;
}

.smilebackloading.indetermine.value-70 .mouthShape {
  stroke-dashoffset: 745.9;
}

.smilebackloading.indetermine.value-71 .mouthShape {
  stroke-dashoffset: 742.27;
}

.smilebackloading.indetermine.value-72 .mouthShape {
  stroke-dashoffset: 738.64;
}

.smilebackloading.indetermine.value-73 .mouthShape {
  stroke-dashoffset: 735.01;
}

.smilebackloading.indetermine.value-74 .mouthShape {
  stroke-dashoffset: 731.38;
}

.smilebackloading.indetermine.value-75 .mouthShape {
  stroke-dashoffset: 727.75;
}

.smilebackloading.indetermine.value-76 .mouthShape {
  stroke-dashoffset: 724.12;
}

.smilebackloading.indetermine.value-77 .mouthShape {
  stroke-dashoffset: 720.49;
}

.smilebackloading.indetermine.value-78 .mouthShape {
  stroke-dashoffset: 716.86;
}

.smilebackloading.indetermine.value-79 .mouthShape {
  stroke-dashoffset: 713.23;
}

.smilebackloading.indetermine.value-80 .mouthShape {
  stroke-dashoffset: 709.6;
}

.smilebackloading.indetermine.value-81 .mouthShape {
  stroke-dashoffset: 705.97;
}

.smilebackloading.indetermine.value-82 .mouthShape {
  stroke-dashoffset: 702.34;
}

.smilebackloading.indetermine.value-83 .mouthShape {
  stroke-dashoffset: 698.71;
}

.smilebackloading.indetermine.value-84 .mouthShape {
  stroke-dashoffset: 695.08;
}

.smilebackloading.indetermine.value-85 .mouthShape {
  stroke-dashoffset: 691.45;
}

.smilebackloading.indetermine.value-86 .mouthShape {
  stroke-dashoffset: 687.82;
}

.smilebackloading.indetermine.value-87 .mouthShape {
  stroke-dashoffset: 684.19;
}

.smilebackloading.indetermine.value-88 .mouthShape {
  stroke-dashoffset: 680.56;
}

.smilebackloading.indetermine.value-89 .mouthShape {
  stroke-dashoffset: 676.93;
}

.smilebackloading.indetermine.value-90 .mouthShape {
  stroke-dashoffset: 673.3;
}

.smilebackloading.indetermine.value-91 .mouthShape {
  stroke-dashoffset: 669.67;
}

.smilebackloading.indetermine.value-92 .mouthShape {
  stroke-dashoffset: 666.04;
}

.smilebackloading.indetermine.value-93 .mouthShape {
  stroke-dashoffset: 662.41;
}

.smilebackloading.indetermine.value-94 .mouthShape {
  stroke-dashoffset: 658.78;
}

.smilebackloading.indetermine.value-95 .mouthShape {
  stroke-dashoffset: 655.15;
}

.smilebackloading.indetermine.value-96 .mouthShape {
  stroke-dashoffset: 651.52;
}

.smilebackloading.indetermine.value-97 .mouthShape {
  stroke-dashoffset: 647.89;
}

.smilebackloading.indetermine.value-98 .mouthShape {
  stroke-dashoffset: 644.26;
}

.smilebackloading.indetermine.value-99 .mouthShape {
  stroke-dashoffset: 640.63;
}

.smilebackloading.indetermine.value-100 .mouthShape {
  stroke-dashoffset: 637;
}

@-webkit-keyframes mouthanim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mouthanim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bubbleanim {
  0% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 2000;
    opacity: 0.3;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@keyframes bubbleanim {
  0% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 2000;
    opacity: 0.3;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@-webkit-keyframes bubblefadeanim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bubblefadeanim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.sk-fading-circle {
  margin: auto;
  position: relative;
  width: 22px;
  height: 22px;
}

.sk-fading-circle.small {
  width: 15px;
  height: 15px;
}

.sk-fading-circle.left {
  margin: 0 25px;
}

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-fading-circle .sk-circle:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  border-radius: 100%;
  background-color: #333;
  -webkit-animation: spinnerFadeDelay 1.2s infinite ease-in-out both;
  animation: spinnerFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes spinnerFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
@keyframes spinnerFadeDelay {
  0%, 39%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}
.loading-indicator {
  display: inline-block;
  margin-left: 1em;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.3em solid rgba(136, 133, 133, 0.5);
  border-right: 0.3em solid rgba(136, 133, 133, 0.5);
  border-bottom: 0.3em solid rgba(136, 133, 133, 0.5);
  border-left: 0.3em solid transparent;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 0.5s infinite linear;
  animation: load8 0.5s infinite linear;
}

.loading-indicator,
.loading-indicator:after {
  border-radius: 50%;
  width: 1.3em;
  height: 1.3em;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.glyphicons-refresh-animate {
  -animation: spin 0.7s infinite linear;
  -webkit-animation: spin2 0.7s infinite linear;
}

@-webkit-keyframes spin2 {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: scale(1) rotate(0deg);
  }
  to {
    transform: scale(1) rotate(360deg);
  }
}
@media print {
  .key-figure.background-border {
    border: none;
    padding: 0;
  }
  /* Hidden Items */
  /* Adjusted Items */
  .kf-rate:before {
    content: "/ ";
  }
  .kf-global-stats {
    margin-right: 0 !important;
  }
  .key-figure {
    font-size: 13px !important;
  }
  #reactions tr td.column-resources,
  #reactions tr th.column-resources {
    padding-right: 0 !important;
  }
  #kf-net-csat-score-current {
    color: #000;
  }
  .key-figure-container {
    width: 33%;
    float: left;
    height: 4em;
  }
  .key-figure {
    line-height: 2em;
  }
  .key-figure-container .key-figure-number, .key-figure-container .kf-rate {
    line-height: 1em;
    font-size: 13px !important;
  }
  #reactions tr td.column-ticket.sorting,
  #reactions tr th.column-ticket.sorting {
    width: 9% !important;
  }
  #csat-peer-controls {
    padding: 0;
  }
  #csat-peer-controls .daterangepicker-addon {
    display: none;
  }
  #peers thead th, thead th {
    color: black;
    font-weight: bold;
    font-size: 10px !important;
  }
  #peers thead .column-index {
    text-align: left;
  }
  html, body {
    height: 99%;
  }
  body {
    margin: 0 0 0 0 !important;
    padding: 0 !important;
    line-height: 1.4em;
    word-spacing: 1px;
    letter-spacing: 0.2px;
    font-size: 13px;
    color: #000;
  }
  body.modal-open h1 {
    display: none;
  }
  body.modal-open .container-fluid, body.modal-open .container-sm, body.modal-open .container-md, body.modal-open .container-lg, body.modal-open .container-xl {
    display: none !important;
  }
  body.modal-open button, body.modal-open .button, body.modal-open .btn, body.modal-open .edit-button, body.modal-open .reactions-modal-addActivityForm {
    display: none;
  }
  body.modal-open .modal-content {
    border: none;
    box-shadow: none;
  }
  body.modal-open .modal-header {
    margin-top: 6em;
    border: none;
  }
  body.modal-open #reaction-details-note, body.modal-open .reactions-modal-addActivityForm input, body.modal-open .reactions-modal-editTagsForm .chosen-container, body.modal-open .reactions-modal-editTagsForm .selectize-control {
    width: 100% !important;
    max-width: 100% !important;
  }
  body.modal-open .reactions-modal-editTagsForm h4, body.modal-open .reactions-modal-editTagsForm .selectize-control.plugin-remove_button [data-value] .remove {
    display: none;
  }
  body.modal-open .reactions-modal-editTagsForm .selectize-control.plugin-remove_button [data-value] {
    padding-right: 10px !important;
    border: 1px solid;
  }
  body.modal-open .reactions-modal-editTagsForm .selectize-input {
    border: none;
  }
  div.main-content {
    margin: 10px 10px 10px 10px;
    padding: 0 !important;
  }
  .print-header {
    display: inline-block !important;
    visibility: visible !important;
    padding-left: 30px;
    float: right;
    margin-top: 29px;
    margin-right: 20px;
  }
  .print-header img {
    width: 90px;
  }
  h1 {
    padding-bottom: 0;
  }
  .modal {
    position: relative !important;
    width: 100% !important;
  }
  .key-figure .key-figure-number {
    margin-bottom: 0;
  }
  .kf-global-stats, .kf-global-stats-label {
    line-height: 1;
  }
  .side-navigation-wrapper,
  .section.main-content {
    height: auto;
    min-height: auto;
  }
  a[href]:after {
    content: none !important;
  }
  .non-print, .dataTables_length,
  .dataTables_filter,
  .dataTables_paginate,
  .paging_simple_numbers,
  .dt-buttons.btn-group, .navigation-top,
  .navigation-main,
  .navigation-sub, .main-filter {
    display: none;
  }
  /* Basic Layout */
  .side-navigation-wrapper {
    padding: 0;
  }
  .section.main-content {
    max-width: 100%;
    box-sizing: border-box;
  }
  /* Basic Datatables */
  .dataTable td {
    page-break-inside: avoid;
  }
  table.dataTable thead th.sorting_asc, table.dataTable thead th.sorting_desc {
    border-bottom-color: #e1e2f0 !important;
  }
  a, a:visited, a:active, a:focus, a:hover {
    color: #333 !important;
    text-decoration: none;
    border: none;
  }
  #csat-report td, #csat-report th {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .main-content:last-child {
    page-break-after: auto;
  }
  #peers tbody .percentage-and-total .total, #peers.dataTable > tbody > tr.child ul li .total {
    font-size: 0.5em;
  }
  #csat-report-controls .form-group:first-child, #csat-report-controls .form-group:last-child, #csat-report-controls label {
    display: none;
  }
  #csat-report-controls {
    padding: 0;
  }
  #csat-report-controls .daterangepicker-addon {
    display: none;
  }
  #csat-report-controls .form-control, #csat-report-controls br {
    border: none;
  }
  table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:after {
    font-size: 8px !important;
  }
}

/*# sourceMappingURL=smileback-styles.css.map*/