.control-input {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  cursor: text;
  border-radius: 4px;
  background-color: #fff;
  transition: all 125ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  height: 56px;
  width: 100%;
  position: relative;
  border: 1px solid #E1E1E1;
  border-radius: 6px;
}
.control-input.focus {
  background-color: #fff;
}
.control-input-holder {
  flex: 1 1 auto;
}
.control-input-holder input {
  height: 100%;
  width: 100%;
  padding: 2px;
  border: none;
  font-size: 0.9rem;
  text-indent: 10px;
  box-sizing: border-box;
  border-radius: 6px;
  padding-top: 16px;
}
.control-input-holder input:focus {
  border: none;
  outline: none;
}
.control-input-holder input:focus ~ label, .control-input-holder input:valid ~ label {
  transform: translateY(-10px);
  font-size: 12px;
  line-height: 16px;
}
.control-input-holder label {
  position: absolute;
  top: 18px;
  left: 0;
  color: grey;
  pointer-events: none;
  transition: all 0.3s ease;
  text-indent: 10px;
  line-height: 22px;
  font-size: 17px;
}
.control-input-holder .reveal-password-span {
  position: absolute;
  top: 20px;
  right: 12px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
  color: grey;
}
.control-input-input {
  width: 100%;
  margin: 0;
  padding: 0 12px;
  font-size: inherit;
  background-color: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  height: 34px;
  line-height: 34px;
  text-align: inherit;
  flex: 1 1 auto;
}
.control-input-input::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.control-input-input::placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.control-input-input::-ms-clear {
  display: none;
  appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
}
.control-input-input[value=""] ~ .control-input-addon {
  color: #333;
}
.control-input.error-animated {
  transition: color 250ms;
}
.control-input.has-error {
  box-shadow: inset 0 0 0 1px rgba(204, 48, 68, 0.3);
  background-color: rgba(204, 48, 68, 0.07);
}
.control-input.has-error.focus {
  box-shadow: inset 0 0 0 1px #CC3044 !important;
  background-color: #fff;
}
.control-input.has-error:not(.has-value) ~ LABEL {
  color: #CC3044;
}
.control-input.has-error ~ .form-row-sub .form-row-addon {
  color: #CC3044;
}
.control-input.has-error.error-animated {
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
.login-main .control-input.has-error.error-animated .control-input-input {
  color: #CC3044;
}
.control-input.has-value label {
  transform: translateY(-10px);
  font-size: 12px;
  line-height: 16px;
}
.control-input.has-value .control-input-addon {
  color: #333;
}
.control-input.disabled,
.control-input [disabled] {
  color: rgba(51, 51, 51, 0.5);
  cursor: default;
  opacity: 1;
}
.control-input.readonly,
.control-input [readonly] {
  color: rgba(51, 51, 51, 0.5);
  cursor: default;
}
.control-input-addon, .control-input-addon-front {
  flex: 0 0 auto;
  pointer-events: none;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: rgba(51, 51, 51, 0.3);
  position: relative;
}
.control-input-addon .loading-content, .control-input-addon-front .loading-content {
  width: 16px;
  height: 16px;
}
.control-input-addon A,
.control-input-addon BUTTON, .control-input-addon-front A,
.control-input-addon-front BUTTON {
  flex: 0 0 auto;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  position: relative;
}
.control-input-addon A[disabled], .control-input-addon A:disabled,
.control-input-addon BUTTON[disabled],
.control-input-addon BUTTON:disabled, .control-input-addon-front A[disabled], .control-input-addon-front A:disabled,
.control-input-addon-front BUTTON[disabled],
.control-input-addon-front BUTTON:disabled {
  pointer-events: none;
}
.control-input-addon A[disabled] path, .control-input-addon A[disabled] circle, .control-input-addon A:disabled path, .control-input-addon A:disabled circle,
.control-input-addon BUTTON[disabled] path,
.control-input-addon BUTTON[disabled] circle,
.control-input-addon BUTTON:disabled path,
.control-input-addon BUTTON:disabled circle, .control-input-addon-front A[disabled] path, .control-input-addon-front A[disabled] circle, .control-input-addon-front A:disabled path, .control-input-addon-front A:disabled circle,
.control-input-addon-front BUTTON[disabled] path,
.control-input-addon-front BUTTON[disabled] circle,
.control-input-addon-front BUTTON:disabled path,
.control-input-addon-front BUTTON:disabled circle {
  fill: #d1dbec;
}
.control-input-addon A:before,
.control-input-addon BUTTON:before, .control-input-addon-front A:before,
.control-input-addon-front BUTTON:before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
}
.control-input-addon svg, .control-input-addon-front svg {
  float: left;
}
.control-input-addon path, .control-input-addon circle, .control-input-addon-front path, .control-input-addon-front circle {
  fill: currentColor;
  stroke: currentColor;
}
.control-input-addon BUTTON, .control-input-addon-front BUTTON {
  cursor: pointer;
  pointer-events: auto;
  color: rgb(51, 133.8, 204);
}
.control-input-addon A, .control-input-addon-front A {
  cursor: pointer;
  pointer-events: auto;
  color: rgb(51, 133.8, 204);
}
.control-input-addon SPAN, .control-input-addon-front SPAN {
  white-space: nowrap;
}
.control-input-addon {
  padding-right: 12px;
}
.control-input-addon-front {
  padding-left: 12px;
}
.icon-preview {
  overflow: hidden;
  margin: 10px -10px 0 0;
}
.icon-preview > DIV {
  float: left;
  width: 220px;
  margin: 10px 10px 0 0;
  font-size: 11px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 5px;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
  background-color: rgba(51, 51, 51, 0.05);
}
.icon-preview > DIV svg {
  height: 50px;
  max-width: 150px;
}
.block {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border-radius: 4px;
}
.block:last-child {
  flex: 1 0 auto;
}
.block.theme-lightest {
  background-color: #f5f5f5;
}
.block.theme-lighter {
  background-color: #ededed;
}
.block.theme-light {
  background-color: #e6e6e6;
}
.block.theme-dark {
  background-color: #8ba7c4;
  color: #fff;
}
.block.theme-darker {
  background-color: #18466d;
  color: #fff;
}
.block.theme-darkest {
  background-color: #133857;
  color: #fff;
}
.block.theme-success {
  background-color: #4FADA6;
  color: #fff;
}
.block.theme-warning {
  background-color: rgb(237.7875, 203.3625, 42.7125);
  color: #fff;
}
.block.theme-danger {
  background-color: #CC3044;
  color: #fff;
}
.block-limiter {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.block-limiter:before, .block-limiter:after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (max-width: 759px) {
  .block-limiter {
    padding: 0 20px 20px 20px;
  }
}
@media only screen and (min-width: 760px) and (max-width: 1023px) {
  .block-limiter {
    padding: 0 30px 30px 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .block-limiter {
    padding: 0 30px 30px 30px;
  }
}
.block.theme-dark .control-input,
.block.theme-dark .control-taginput, .block.theme-darker .control-input,
.block.theme-darker .control-taginput, .block.theme-darkest .control-input,
.block.theme-darkest .control-taginput, .block.theme-success .control-input,
.block.theme-success .control-taginput, .block.theme-danger .control-input,
.block.theme-danger .control-taginput, .block.theme-warning .control-input,
.block.theme-warning .control-taginput {
  box-shadow: 0 0 0 1px rgba(19, 56, 87, 0);
}
.block.theme-dark .control-input.focus, .block.theme-dark .control-input.bp3-active,
.block.theme-dark .control-taginput.focus,
.block.theme-dark .control-taginput.bp3-active, .block.theme-darker .control-input.focus, .block.theme-darker .control-input.bp3-active,
.block.theme-darker .control-taginput.focus,
.block.theme-darker .control-taginput.bp3-active, .block.theme-darkest .control-input.focus, .block.theme-darkest .control-input.bp3-active,
.block.theme-darkest .control-taginput.focus,
.block.theme-darkest .control-taginput.bp3-active, .block.theme-success .control-input.focus, .block.theme-success .control-input.bp3-active,
.block.theme-success .control-taginput.focus,
.block.theme-success .control-taginput.bp3-active, .block.theme-danger .control-input.focus, .block.theme-danger .control-input.bp3-active,
.block.theme-danger .control-taginput.focus,
.block.theme-danger .control-taginput.bp3-active, .block.theme-warning .control-input.focus, .block.theme-warning .control-input.bp3-active,
.block.theme-warning .control-taginput.focus,
.block.theme-warning .control-taginput.bp3-active {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) !important;
}
.block.theme-dark .control-select .control-select-inner, .block.theme-darker .control-select .control-select-inner, .block.theme-darkest .control-select .control-select-inner, .block.theme-success .control-select .control-select-inner, .block.theme-danger .control-select .control-select-inner, .block.theme-warning .control-select .control-select-inner {
  box-shadow: 0 0 0 1px rgba(19, 56, 87, 0);
}
.block.theme-dark .control-select .control-input, .block.theme-darker .control-select .control-input, .block.theme-darkest .control-select .control-input, .block.theme-success .control-select .control-input, .block.theme-danger .control-select .control-input, .block.theme-warning .control-select .control-input {
  box-shadow: none !important;
}
.block.theme-dark .control-select.focus .control-select-inner, .block.theme-darker .control-select.focus .control-select-inner, .block.theme-darkest .control-select.focus .control-select-inner, .block.theme-success .control-select.focus .control-select-inner, .block.theme-danger .control-select.focus .control-select-inner, .block.theme-warning .control-select.focus .control-select-inner {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) !important;
}
.block.theme-dark .control-select.has-error .control-select-inner, .block.theme-darker .control-select.has-error .control-select-inner, .block.theme-darkest .control-select.has-error .control-select-inner, .block.theme-success .control-select.has-error .control-select-inner, .block.theme-danger .control-select.has-error .control-select-inner, .block.theme-warning .control-select.has-error .control-select-inner {
  box-shadow: inset 0 0 0 1px #cc3044;
}
.block.theme-dark .control-select.has-error.focus .control-select-inner, .block.theme-darker .control-select.has-error.focus .control-select-inner, .block.theme-darkest .control-select.has-error.focus .control-select-inner, .block.theme-success .control-select.has-error.focus .control-select-inner, .block.theme-danger .control-select.has-error.focus .control-select-inner, .block.theme-warning .control-select.has-error.focus .control-select-inner {
  box-shadow: inset 0 0 0 1px #cc3044, 0 0 0 3px rgba(255, 255, 255, 0.3) !important;
}
.block.theme-dark .control-select-pillbutton, .block.theme-darker .control-select-pillbutton, .block.theme-darkest .control-select-pillbutton, .block.theme-success .control-select-pillbutton, .block.theme-danger .control-select-pillbutton, .block.theme-warning .control-select-pillbutton {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.block.theme-dark .button.layout-default.intent-discrete, .block.theme-darker .button.layout-default.intent-discrete, .block.theme-darkest .button.layout-default.intent-discrete, .block.theme-success .button.layout-default.intent-discrete, .block.theme-danger .button.layout-default.intent-discrete, .block.theme-warning .button.layout-default.intent-discrete {
  color: #fff;
}
.block.theme-dark .heading-with-buttons-heading .description, .block.theme-darker .heading-with-buttons-heading .description, .block.theme-darkest .heading-with-buttons-heading .description, .block.theme-success .heading-with-buttons-heading .description, .block.theme-danger .heading-with-buttons-heading .description, .block.theme-warning .heading-with-buttons-heading .description {
  color: rgba(255, 255, 255, 0.5);
}
.block.theme-dark .heading-with-buttons-heading .description A, .block.theme-darker .heading-with-buttons-heading .description A, .block.theme-darkest .heading-with-buttons-heading .description A, .block.theme-success .heading-with-buttons-heading .description A, .block.theme-danger .heading-with-buttons-heading .description A, .block.theme-warning .heading-with-buttons-heading .description A {
  color: #58c3bb;
}
.block.theme-dark .button.layout-default.intent-default {
  background-color: rgba(255, 255, 255, 0.1);
}
.block.theme-darker .layout-form-filter {
  margin-top: 10px;
}
.block.theme-darker .layout-form-filter .form-row-label {
  color: #8ba7c4;
}
.block.theme-darker .layout-form-filter .has-error .form-row-label {
  color: #CC3044;
}
.block.theme-darker .button.layout-default.intent-discrete {
  background-color: rgba(255, 255, 255, 0.1);
}
.block.theme-success .button.layout-default.intent-default, .block.theme-danger .button.layout-default.intent-default, .block.theme-warning .button.layout-default.intent-default {
  background-color: rgba(51, 51, 51, 0.1);
}

.alternate-blocks {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
.alternate-blocks > .block.theme-default:nth-child(even) {
  background-color: #f5f5f5;
}
.chart-trend {
  position: relative;
}
@media only screen and (max-width: 759px) {
  .chart-trend {
    margin-top: 0px;
  }
}
@media only screen and (min-width: 760px) and (max-width: 1023px) {
  .chart-trend {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .chart-trend {
    margin-top: 10px;
  }
}
.chart-trend A {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.gauge-chart {
  position: relative;
}
@media only screen and (max-width: 759px) {
  .gauge-chart {
    margin-top: 0px;
  }
}
@media only screen and (min-width: 760px) and (max-width: 1023px) {
  .gauge-chart {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .gauge-chart {
    margin-top: 10px;
  }
}
.gauge-chart A {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.shadow {
  width: 160px;
}

.header2 .block-limiter {
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.header2 .brandhotelselector {
  margin-top: 5px;
}

.floatRight {
  float: right;
}

.marginBottom20 {
  margin-bottom: 20px;
}

.calender-selection {
  margin-top: 5px;
}

.calender-selection .control-select-men {
  display: inline-block;
  float: left;
}

.calender-selection .control-select-filter-men {
  display: inline-block;
  float: left;
}

.assesmenttxt {
  color: #717171;
}

.assessmentDiv {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.assesmentUnderline {
  text-decoration: underline;
}

.piechartParent {
  width: 90%;
  margin: 0 auto;
}

.piechartContainer {
  background-color: white;
  border-radius: 4px;
}

.piechartBlock {
  background-color: rgb(8, 20, 47);
  border-radius: 0 !important;
}

.piechartBlock .block-limiter {
  padding: 0px !important;
}

.piechartTitle {
  font-size: 17px;
  color: #000;
  font-weight: 600;
  text-align: center;
  font-style: normal;
  font-family: "Source Sans Pro", sans-serif;
}

.piechartSubTitle {
  font-size: 21px;
  color: #000;
  font-weight: 600;
  text-align: center;
  margin-top: 3px;
}

.piechartSubTitle2 {
  font-size: 1.05rem;
  color: #717171;
  text-align: center;
  margin-top: 10px;
}

.piechartSubTitleGrey {
  color: #717171;
}

.piechartContainer {
  padding: 18px;
  width: 100%;
}

.donut {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  font-family: sans-serif !important;
  letter-spacing: -0.05em;
}

.donut-container {
  display: block;
  float: left;
  width: 50%;
}

.description-container {
  display: block;
  float: left;
  width: 60%;
  color: #000;
  padding-top: 15px;
}

.description-container b {
  margin-bottom: 10px;
  color: #000;
  display: block;
}

.donut-container .donut {
  width: 100px !important;
  height: 100px !important;
  margin: 10px;
  align-self: flex-start;
  color: #000;
}

.donut-container .donut-value {
  font-size: 25px !important;
}

.donut-container .donut-change.intent-success {
  font-size: 15px !important;
}

.dashboard-header-group-inner {
  min-width: 140px;
  margin: 10px;
  flex: 1 1 auto;
}

.description-container-label {
  font-size: 15px;
  font-weight: 400;
  color: #8ba7c4;
}

.description-container-description {
  font-size: 13px;
}

.description-container-description-span {
  font-size: 13px;
  display: block;
  margin-bottom: 15px;
}

.button-filters {
  margin-bottom: 15px;
}

.button-filters button {
  margin-right: 10px;
  min-width: 60px !important;
  color: #afafaf !important;
  border-color: #afafaf !important;
  border-radius: 8px !important;
}

.button-filters .button .text {
  font-size: 11px;
}

.description-container-description button {
  background-color: #EEF9F8 !important;
  min-width: 60px !important;
  border-color: #EEF9F8 !important;
  box-shadow: none !important;
}

.description-container-description .reset-button {
  padding: 5px;
  border-radius: 4px;
}

.description-container-description .reset-button .button-icon-main {
  border-radius: 0;
  background-color: inherit;
  height: 25px;
  width: 25px;
}

.description-container-description .reset-button .button-icon-main .icon {
  color: #2e968f;
}

.description-container-description .reset-button .label {
  text-transform: inherit;
  padding-right: 10px;
  color: #8a8a8a;
  font-weight: normal;
}

.description-container-description .reset-button .button-icon-main svg {
  height: 20px;
  width: 20px;
}

.piechartContainer .gauge-chart {
  height: 120px !important;
}

.carousel-dots-dashboard {
  display: block;
}

.carousel-dots-dashboard li {
  border-radius: 50%;
  padding: 2px !important;
}

.carousel-dots-dashboard li.slick-active {
  border: 1px solid #4FADA6;
}

.carousel-dots-dashboard li:not(.slick-active) {
  border: 1px solid lightgray;
}

.carousel-dots li.slick-active button {
  opacity: 0.75;
  background-color: #4FADA6 !important;
  border-radius: 50%;
}

.carousel-dots li, .carousel-dots li button {
  width: unset !important;
  height: unset !important;
}

.carousel-dots li button:before {
  color: unset !important;
}

.dashboard-legend {
  color: black;
  background-color: unset !important;
}

.dashboard-legend .legend-items {
  flex-direction: row;
}

.dashboard-legend UL > LI .swatch {
  border-radius: 50% !important;
}

.legend UL > LI {
  margin: 5px 7px 0 0;
}

.dashboard-card-bg-div-1 {
  height: 270px;
}

.dashboard-card-bg-div-2 {
  height: 80px;
}

.dashboard-card {
  position: relative;
  top: -350px;
}

.row-separater {
  display: flex;
  height: 120px;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 10px;
}

.property-display1 {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 120px !important;
}

.property-display2 {
  width: 49%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

.missed-standard.property-display2 {
  width: 68%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

.carousel-dots-benchmark-dashboard li.carousel-dots-active {
  box-sizing: border-box;
  box-sizing: border-box;
  background: #4FADA6;
  height: 4px !important;
  width: 30px !important;
}

.carousel-dots-benchmark-dashboard li:not(.carousel-dots-active) {
  box-sizing: border-box;
  box-sizing: border-box;
  background: grey;
  height: 4px !important;
  width: 30px !important;
}

.carousel-dots-benchmark-dashboard li.carousel-dots-active button:before {
  color: #4FADA6 !important;
  top: -8px !important;
  left: -15px !important;
  font-size: 40px !important;
  opacity: 1 !important;
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  border: 0.6px solid #4FADA6;
  border-radius: 50%;
}

.carousel-dots-benchmark-dashboard li button:before {
  line-height: 30px !important;
  top: -8px !important;
  left: -15px !important;
  font-size: 40px !important;
  opacity: 1 !important;
  color: grey !important;
}

.piechartTitleChange {
  display: inline-block;
  padding: auto;
  width: 50%;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  position: relative;
  bottom: 90px;
}

.piechartTitleChangeSpan {
  border-radius: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.piechartTitleChangeSpanIcon {
  font-size: 10px;
  bottom: 2px;
  position: relative;
  padding-right: 5px;
}

.legend {
  margin-left: auto !important;
}

.brand-hotel-selector .hotel-selection-dropdown-none .control-select-menu-addon {
  display: none;
}

.brand-hotel-selector .hotel-selector-primary {
  white-space: nowrap;
}

.brandhotelselector .hotel-selection-dropdown-none .control-select-menu-addon {
  display: none;
}

.hotel-selection-dropdown-none.control-select-menu:hover,
.hotel-selection-dropdown-none.control-select-menu:focus {
  text-decoration: none !important;
}

.blur {
  filter: url(#gaussian-blur);
  filter: blur(7px);
  -webkit-filter: blur(7px);
  position: fixed;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  box-shadow: 0 20px 75px rgba(0, 0, 0, 0.13);
  color: #666;
  text-align: center;
  overflow-y: hidden;
}

.z-index-100 {
  z-index: 100;
  position: fixed;
  top: 50%;
  left: 44%;
  right: 50%;
  bottom: 50%;
}

.profile-view-container {
  position: fixed;
  top: 160px;
  height: 100vh !important;
  background: #08142f;
  width: 100%;
  z-index: 1;
}

.centered-container {
  display: flex;
  padding-top: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: left; /* Center text inside each div */
}

.compset-font .bp3-popover-target .control-select-menu-inner .control-select-menu-select {
  font-size: 11px;
}

.mt-250 {
  margin-top: 250px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pending-assessment {
  top: 200px;
  position: absolute;
}

.hotel-selector-primary {
  font-size: 18px !important;
  line-height: 20px !important;
}
.loading-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #18466d;
}
.loading-content svg {
  animation: animation-spin 0.5s linear infinite;
  width: 20px;
  height: 20px;
}
.loading-content path, .loading-content circle, .loading-content line {
  fill: currentColor;
  stroke: currentColor;
}
.loading-content.inline {
  background-color: transparent;
  height: 30px;
}
.loading-content.inline.small {
  height: 30px;
}
.loading-content.inline.small svg {
  width: 20px;
  height: 20px;
}
.loading-content.inline.large {
  height: 300px;
}
.loading-content.inline.large svg {
  width: 60px;
  height: 60px;
}
.loading-content.absolute {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
}
.loading-content.flex {
  flex: 1 0 auto;
}
.loading-content.flex.small {
  height: 30px;
}
.loading-content.flex.small svg {
  width: 20px;
  height: 20px;
}
.loading-content.flex.large {
  height: 300px;
}
.loading-content.flex.large svg {
  width: 60px;
  height: 60px;
}
.loading-content.sticky {
  position: sticky;
  height: 30px;
}
@media only screen and (max-width: 759px) {
  .loading-content.sticky {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 760px) and (max-width: 1023px) {
  .loading-content.sticky {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .loading-content.sticky {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 759px) {
  .loading-content.sticky {
    top: 20px;
  }
}
@media only screen and (min-width: 760px) and (max-width: 1023px) {
  .loading-content.sticky {
    top: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .loading-content.sticky {
    top: 30px;
  }
}
.loading-content.sticky.small {
  height: 30px;
}
.loading-content.sticky.small svg {
  width: 20px;
  height: 20px;
}
.loading-content.sticky.large {
  height: 300px;
}
.loading-content.sticky.large svg {
  width: 60px;
  height: 60px;
}
.legend {
  display: inline-block;
  margin-right: auto;
  background-color: rgba(51, 51, 51, 0.05);
  padding: 0 20px 10px 20px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.2;
}
@media only screen and (max-width: 759px) {
  .legend {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 760px) and (max-width: 1023px) {
  .legend {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .legend {
    margin-top: 30px;
  }
}
.legend:before, .legend:after {
  content: "";
  display: table;
  clear: both;
}
.legend-description {
  margin-top: 10px;
}
.legend UL {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 5px;
  margin-right: -20px;
  align-items: flex-start;
  justify-content: flex-start;
}
.legend UL > LI {
  flex: 0 0 auto;
  margin: 5px 20px 0 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
.legend UL > LI .swatch {
  margin-right: 10px;
  width: 14px;
  height: 14px;
  border-radius: 3px;
}
@media only screen and (max-width: 759px) {
  .legend UL {
    flex-direction: column;
  }
}
@media only screen and (max-width: 759px) {
  .legend {
    display: block;
  }
}
.swatch {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.1);
}
.swatch.intent-primary {
  background-color: rgb(51, 133.8, 204);
}
.swatch.intent-success {
  background-color: #4FADA6;
}
.swatch.intent-warning {
  background-color: rgb(237.7875, 203.3625, 42.7125);
}
.swatch.intent-danger {
  background-color: #CC3044;
}
.swatch.intent-active {
  background-color: #58c3bb;
}
.swatch.intent-neutral {
  background-color: #aaa;
}
.swatch.intent-pending {
  background-color: cyan;
}
.swatch.intent-eq1 {
  background-color: #CC3044;
}
.swatch.intent-eq2 {
  background-color: #d5752b;
}
.swatch.intent-eq3 {
  background-color: #DEBA12;
}
.swatch.intent-eq4 {
  background-color: rgb(150.5, 179.5, 92);
}
.swatch.intent-eq5 {
  background-color: #4FADA6;
}
.swatch.intent-default {
  background-color: #8ba7c4;
}
/*************** Width Styles *****************/
.w-5 {
  width: 5%;
}

.w-7 {
  width: 7%;
}

.w-10 {
  width: 10%;
}

.w-13 {
  width: 13%;
}

.w-16 {
  width: 16%;
}

.w-19 {
  width: 19%;
}

.w-14 {
  width: 14%;
}

.w-17 {
  width: 17%;
}

.w-20 {
  width: 20%;
}

.w-21 {
  width: 21%;
}

.w-22 {
  width: 22%;
}

.w-25 {
  width: 25%;
}

.w-27 {
  width: 27%;
}

.w-28 {
  width: 28%;
}

.w-30 {
  width: 30%;
}

.w-33 {
  width: 33%;
}

.w-36 {
  width: 36%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-46 {
  width: 46%;
}

.w-49 {
  width: 49%;
}

.w-50 {
  width: 50%;
}

.w-54 {
  width: 54%;
}

.w-55 {
  width: 55%;
}

.w-60 {
  width: 60%;
}

.w-70 {
  width: 70%;
}

.w-73 {
  width: 73%;
}

.w-79 {
  width: 79%;
}

.w-80 {
  width: 80%;
}

.w-83 {
  width: 83%;
}

.w-85 {
  width: 85%;
}

.w-86 {
  width: 86%;
}

.w-87 {
  width: 87%;
}

.w-90 {
  width: 90%;
}

.w-93 {
  width: 93%;
}

.w-95 {
  width: 95%;
}

.w-96 {
  width: 96%;
}

.w-98 {
  width: 98%;
}

.w-100 {
  width: 100%;
}

.w-30px {
  width: 30px;
}

.w-40px {
  width: 30px;
}

.w-48px {
  width: 48px;
}

.w-50px {
  width: 50px;
}

.w-55px {
  width: 55px;
}

.w-60px {
  width: 60px;
}

.w-70px {
  width: 70px;
}

.w-80px {
  width: 80px !important;
}

.w-100px {
  width: 100px;
}

.w-130px {
  width: 130px;
}

.w-335px {
  width: 335px;
}

/*************** Height Styles *****************/
.h-0 {
  height: 0px;
}

.h-8px {
  height: 8px;
}

.h-13px {
  height: 13px;
}

.h-25px {
  height: 25px !important;
}

.h-30px {
  height: 30px;
}

.h-55px {
  height: 55px;
}

.h-70px {
  height: 70px;
}

.h-100px {
  height: 100px;
}

.h-100 {
  height: 100%;
}

.h-70vh {
  height: 70vh;
}

.h-120 {
  height: 120px;
}

.min-hieght-100vh {
  min-height: 100vh;
}

/*************** Display Styles *****************/
.d-none {
  display: none;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

/*************** Gap Styles *****************/
.gap-15 {
  gap: 15px;
}

/*************** Flex direction Styles *****************/
.flex-direction-column {
  flex-direction: column;
}

/*************** Flex Styles *****************/
.flex-wrap {
  flex-wrap: wrap;
}

/*************** Align content Styles *****************/
.align-content-center {
  align-content: center;
}

/*************** Align items Styles *****************/
.align-items-start {
  align-items: start;
}

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

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

.align-items-baseline {
  align-items: baseline;
}

/*************** Float Styles *****************/
.f-left {
  float: left;
}

.f-right {
  float: right;
}

/*************** Text Alignment Styles *****************/
.text-left {
  text-align: left !important;
}

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

.text-center {
  text-align: center;
}

/*************** Text Color Styles *****************/
.color-white {
  color: white;
}

.color-red {
  color: #FF3B30;
}

.color-green {
  color: #58C3BB;
}

.color-007AFF {
  color: #007AFF;
}

.color-4FADA6 {
  color: #4FADA6;
}

.color-EF374E {
  color: #EF374E;
}

.color-black {
  color: black !important;
}

.color-8298B5 {
  color: #8298B5;
}

.color-717171 {
  color: #717171;
}

.color-08142f {
  color: #08142f;
}

.color-58C3BB {
  color: #58C3BB;
}

.color-ABE1DD {
  color: #ABE1DD;
}

.color-F8E58A {
  color: #F8E58A;
}

.color-F79BA6 {
  color: #F79BA6;
}

.color-CC3044 {
  color: #CC3044;
}

.color-1F1F1F {
  color: #1F1F1F;
}

.color-919191 {
  color: #919191 !important;
}

.color-071C3E {
  color: #071C3E;
}

.color-979797 {
  color: #979797;
}

.color-757575 {
  color: #757575;
}

.color-15192080-important {
  color: rgba(21, 25, 32, 0.5019607843) !important;
}

.color-031C38 {
  color: #031C38;
}

/*************** Background Color Styles *****************/
.background-white {
  background-color: white;
}

.background-EEF9F8 {
  background-color: #EEF9F8;
}

.background-FDEBED {
  background-color: #FDEBED;
}

.background-f1f1f1 {
  background: #f1f1f1;
}

.background-f7f8f8 {
  background: #f7f8f8;
}

.background-08142f {
  background: #08142f;
}

.background-E1E1E1 {
  background: #E1E1E1;
}

.background-none {
  background: none;
}

.background-58C3BB {
  background: #58C3BB;
}

.background-ABE1DD {
  background: #ABE1DD;
}

.background-EEF9F8 {
  background: #EEF9F8;
}

.background-F8E58A {
  background: #F8E58A;
}

.background-F79BA6 {
  background: #F79BA6;
}

.background-CC3044 {
  background: #CC3044;
}

.background-EF374E {
  background: #EF374E;
}

.background-4FADA6 {
  background: #4FADA6;
}

.background-071C3E {
  background: #071C3E;
}

.background-717171 {
  background: #717171;
}

.background-DEBA12 {
  background: #DEBA12;
}

.background-1F1F1F {
  background: #1F1F1F;
}

.background-8298B5 {
  background: #8298B5;
}

.background-919191 {
  background: #919191;
}

.background-F2CB15 {
  background: #F2CB15;
}

.background-071C3E-important {
  background: #071C3E !important;
}

.background-F5F7FB-important {
  background: #F5F7FB !important;
}

/*************** Fill Color Styles *****************/
.fill-58c3bb {
  fill: #58c3bb;
}

.fill-white {
  fill: white;
}

.fill-979797 {
  fill: #979797;
}

.fill-919191 {
  fill: #919191;
}

.fill-white {
  fill: #fff;
}

/*************** Font Size Styles *****************/
.f-10 {
  font-size: 10px !important;
}

.f-12 {
  font-size: 12px !important;
}

.f-13 {
  font-size: 13px;
}

.f-14 {
  font-size: 14px !important;
}

.f-15 {
  font-size: 15px !important;
}

.f-17 {
  font-size: 17px;
}

.f-18 {
  font-size: 18px;
}

.f-20 {
  font-size: 20px;
}

.f-22 {
  font-size: 22px;
}

.f-24 {
  font-size: 24px;
}

.f-28 {
  font-size: 28px;
}

/*************** Font Weight Styles *****************/
.fw-600 {
  font-weight: 600 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: bold;
}

/*************** Font Styles *****************/
.font-normal {
  font-style: normal;
}

.font-italic {
  font-style: italic;
}

.sans-font {
  font-family: "Source Sans Pro";
}

.times-roman {
  font-family: "Times New Roman";
}

/*************** Line Height Styles *****************/
.lh-unset {
  line-height: unset !important;
}

.lh-12 {
  line-height: 12px;
}

.lh-16 {
  line-height: 16px !important;
}

.lh-18 {
  line-height: 18px !important;
}

.lh-20 {
  line-height: 20px;
}

.lh-22 {
  line-height: 22px;
}

.lh-24 {
  line-height: 24px;
}

.lh-25 {
  line-height: 25px;
}

.lh-28 {
  line-height: 28px;
}

.lh-34 {
  line-height: 34px;
}

/*************** Padding Styles *****************/
.p-0 {
  padding: 0;
}

.p-5 {
  padding: 5px;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-17 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-26 {
  padding: 26px;
}

.pl-2 {
  padding-left: 2px;
}

.pl-3 {
  padding-left: 3px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-6 {
  padding-bottom: 6px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-3 {
  padding-top: 3px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-6 {
  padding-top: 6px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-12 {
  padding-top: 12px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-280 {
  padding-bottom: 280px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-2 {
  padding-right: 2px;
}

.pr-3 {
  padding-right: 3px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-22 {
  padding-right: 22px;
}

.pr-20 {
  padding-right: 20px;
}

/*************** Margin Styles *****************/
.m-0 {
  margin: 0px;
}

.m-3 {
  margin: 3px;
}

.m-5 {
  margin: 5px;
}

.m-7 {
  margin: 7px;
}

.m-10 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-0-auto {
  margin: 0px auto;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-200 {
  margin-top: 200px;
}

.mtn-20px {
  margin-top: -20px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-1-5rem {
  margin-bottom: 1.5rem;
}

.mt-1-5rem {
  margin-top: 1.5rem;
}

.mb-5 {
  margin-bottom: 5px;
}

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

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.ml-10p {
  margin-left: 10%;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.mln-10px {
  margin-left: -10px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-12 {
  margin-right: 12px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-22 {
  margin-right: 22px;
}

.mr-30 {
  margin-right: 30px;
}

.mrn-10px {
  margin-right: -10px;
}

/*************** Border Styles *****************/
.black-border-1 {
  border: 1px solid #E1E1E1;
}

.border-grey-1 {
  border: 1px solid #E1E1E1 !important;
}

.border-bottom-grey-1 {
  border-bottom: 1px solid lightgrey;
}

.border-top-d1dbec-1 {
  border-top: 1px solid #d1dbec;
}

.border-right-1 {
  border-right: 1px solid;
}

.border-1 {
  border: 1px solid !important;
}

.border-radius-4 {
  border-radius: 4px;
}

.border-radius-5 {
  border-radius: 5px;
}

.border-radius-7 {
  border-radius: 7px;
}

.border-radius-8 {
  border-radius: 8px;
}

.border-radius-10 {
  border-radius: 10px;
}

.border-radius-60 {
  border-radius: 60px !important;
}

.box-shadow {
  box-shadow: 0px 0.3px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.13);
}

.box-none {
  box-shadow: none !important;
  margin-bottom: 10px;
}

/*************** Text Decoration Styles *****************/
.text-underline {
  text-decoration: underline;
}

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

/*************** Position Styles *****************/
.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-relative {
  position: relative;
}

.top-3 {
  top: -3px;
}

.top-10 {
  top: 10px;
}

.top-20 {
  top: 20px;
}

.top-100 {
  top: 100px;
}

.top-200 {
  top: 200px;
}

.top-350px {
  top: -350px;
}

.bottom-1 {
  bottom: 1px;
}

.right-7 {
  right: 7px;
}

.right-10 {
  right: 10px;
}

.right-19 {
  right: 19px;
}

.right-25 {
  right: 25px;
}

.left-25 {
  left: 25px;
}

.zIndex-1 {
  z-index: 1;
}

.clear-both {
  clear: both;
}

.date-picker {
  width: 90%;
  padding: 7px;
  background: #F8F8F8;
  box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.35);
  border-radius: 4px;
  border: 1px;
}

.rhap_button-clear {
  color: white !important;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  background: rgb(8, 20, 47);
  z-index: 1001;
  padding: 0;
}

.header h1 {
  color: #FFF;
}

.avatarContainer {
  display: flex;
  justify-content: end;
  padding-block: 15px;
  width: 80px;
}

.avatarContainer1 {
  float: left;
  width: 10%;
  padding-top: 15px;
}

.avatarContainer1 svg {
  fill: #FFF;
}

.avatarContainer svg {
  fill: #FFF;
}

.headerTop {
  display: flex;
}

.file-container {
  width: 100px;
  height: 100px;
  background: #F8F8F8;
  border-radius: 6px;
}

.file-name-container {
  padding: 5px;
  padding-top: 10px;
  padding-bottom: 0px;
  width: 90px;
  height: 24px;
  background: #E1E1E1;
  position: relative;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 16px;
  color: #1F1F1F;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.file-name-img-container {
  top: 73px;
  padding-top: 2px;
}

.file-name-audio-container {
  padding-top: 2px;
}

.file-remove-btn {
  bottom: 95px;
  left: 75px;
}

.file-container-img {
  width: 100px;
  height: 100px;
}

.icon-container {
  justify-content: center;
  height: 76px;
}

.calender-icon-select {
  height: 18px;
  width: 20px;
  padding-right: 10px;
}

.calender-selection .calender-icon-filter {
  display: inline-block;
  float: left;
  margin-right: 5px;
  fill: rgb(79, 173, 166);
  height: 18px;
  width: 18px;
}

.dot-red {
  height: 8px;
  width: 8px;
  background-color: #EF374E;
  border-radius: 50%;
  display: inline-block;
}

.dot-4FADA6 {
  height: 8px;
  width: 8px;
  background-color: #4FADA6;
  border-radius: 50%;
  display: inline-block;
}

.dot-yellow {
  height: 8px;
  width: 8px;
  background-color: #F2CB15;
  border-radius: 50%;
  display: inline-block;
}

.shadow .control-select-inner {
  box-shadow: 0px 0.3px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.13);
  border-radius: 6px;
  padding: 0.5rem;
}

.control-select-addon {
  color: #4FADA6;
}

.shadow .control-select-filter-inner {
  box-shadow: 0px 0.3px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.13);
  border-radius: 6px;
  padding: 0.5rem;
}

.control-select-filter-addon {
  color: #4FADA6;
}

.rss-backdrop {
  clip-path: none !important;
  transform: none !important;
  padding-top: 0px !important;
}

.control-select-select.has-placeholder {
  color: #031C38;
  font-weight: 400;
  font-size: 15px;
}

.control-select-filter-select.has-placeholder {
  color: #031C38;
  font-weight: 400;
  font-size: 15px;
}

.swatch.intent-danger {
  background-color: #EF374E;
}

.horizontal-slider {
  width: 100%;
  max-width: 500px;
  height: 50px;
}

.horizontal-slider .example-track {
  top: 20px;
  height: 10px;
}

.example-track {
  position: relative;
  background: rgb(221, 221, 221);
}

.horizontal-slider .example-thumb {
  top: 10px;
  width: 35px;
  height: 35px;
  line-height: 11px;
}

.example-thumb {
  font-size: 0.9em;
  text-align: center;
  background-color: white;
  color: white;
  cursor: pointer;
  border: 0.6px solid #4FADA6;
  box-sizing: border-box;
  border-radius: 50%;
  padding-top: 11px;
}

.horizontal-slider .example-mark {
  margin: 0px 19px;
  bottom: calc(50% - 6px);
}

.example-mark {
  width: 10px;
  height: 10px;
  background-color: rgb(221, 221, 221);
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
}

.example-mark-completed {
  background: #4FADA6;
}

.horizontal-slider .example-track {
  top: 24px;
  height: 4px;
}

.example-track.example-track-1 {
  background: #4FADA6;
}

.example-track {
  position: relative;
  background: rgb(221, 221, 221);
}

.example-thumb svg {
  fill: #4FADA6;
}

.example-mark-last {
  left: unset !important;
  right: 0px;
  margin-right: 0px !important;
}

.example-mark-first {
  margin-left: 0px !important;
}

.thin-x-line {
  border: none;
  height: 0.5px;
  color: #fff;
  background-color: #fff;
}

.focus-area-select .control-input {
  border: none;
  height: 34px !important;
}

.standard-multi-select .control-input {
  height: 34px !important;
  box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.35);
  border: none;
}

.loader-text {
  color: #A1A1A1;
  text-align: center;
  width: 100%;
  display: block;
}

.text {
  white-space: pre-wrap !important;
}

.bp3-menu-item .inner-text {
  flex: unset !important;
}

.bp3-overlay .bp3-menu {
  max-height: 300px !important;
}

.standard-tag .tags-tag {
  background-color: #ABE1DD;
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #1F1F1F;
  border-radius: 8px;
}

.text.selected {
  background-color: #ABE1DD;
  padding-left: 5px;
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #1F1F1F;
  border-radius: 8px;
}

.grey-bg {
  background: #F8F8F8;
  border-radius: 10px;
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-start;
  position: relative;
  width: 100%;
  background: #FFFFFF;
  margin: 5px;
}

.selected-image {
  width: 100%;
  margin-bottom: 20px;
}

.image-card {
  width: 77px;
  height: 76px;
  background: #F1F1F1;
  margin: 5px;
}

.red-border {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  cursor: text;
  border-radius: 4px;
  background-color: #fff;
  transition: all 125ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  width: 100%;
  position: relative;
  border: 1px solid #cb1717;
  border-radius: 6px;
}

.light-gray-border {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  cursor: text;
  border-radius: 4px;
  background-color: #fff;
  transition: all 125ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  width: 100%;
  position: relative;
  border: 1px solid #E1E1E1;
  border-radius: 6px;
}

.image-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1rem;
  background: #F9F9F9;
  border-radius: 13.61px;
}

.f-none {
  flex: none !important;
}

.pilot-header {
  position: sticky;
  top: 0px;
  z-index: 10;
}

.non-ideal-state {
  position: relative;
  display: flex;
  flex-direction: column;
  top: 300px;
  padding: 20px;
  align-items: center;
  text-align: center;
}

.row-separater-skeleton {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 10px;
}

.center-align-skeleton {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

.image-label {
  margin-top: 20px;
  line-height: 34px;
  padding: 5px 28px;
  font-size: 17px;
  font-weight: 600;
  width: 100%;
  min-width: 70px;
  background-color: white;
  color: #071C3E;
  box-shadow: inset 0 0 0 1px #071c3e;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  background-color: transparent;
  white-space: nowrap;
  position: relative;
  transition: all 250ms ease-in-out 0ms;
  box-sizing: border-box;
  border-radius: 4px;
}

.legend {
  padding: 0px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.legend UL > LI {
  margin: 5px 7px 0 0 !important;
}

.legend UL > LI .swatch {
  margin-right: 2px !important;
}

.react-datepicker__year-dropdown--scrollable, .react-datepicker__month-dropdown--scrollable, .react-datepicker__month-year-dropdown--scrollable {
  max-height: 300px;
  height: 100%;
}

.react-datepicker__current-month, .react-datepicker__current-month--hasYearDropdown, .react-datepicker__current-month--hasMonthDropdown {
  pointer-events: none;
}

.react-datepicker__header__dropdown, .react-datepicker__header__dropdown--scroll {
  margin-top: 10px;
}

.react-datepicker__month-dropdown-container.react-datepicker__month-dropdown-container--scroll {
  background-color: #fff;
  padding: 2px 4px;
  max-width: 100px;
  width: 100%;
  border: 1px solid;
}

.react-datepicker__year-read-view, .react-datepicker__month-read-view, .react-datepicker__month-year-read-view {
  text-align: left;
}

.react-datepicker__year-read-view--down-arrow, .react-datepicker__month-read-view--down-arrow, .react-datepicker__month-year-read-view--down-arrow {
  right: 4px !important;
}

.react-datepicker__month-dropdown-container .react-datepicker__month-read-view--down-arrow, .react-datepicker__year-read-view--down-arrow {
  width: 6px !important;
  height: 6px !important;
  border-width: 2px 2px 0 0 !important;
  top: 1px !important;
}

.react-datepicker__year-dropdown-container--select, .react-datepicker__month-dropdown-container--select, .react-datepicker__month-year-dropdown-container--select, .react-datepicker__year-dropdown-container--scroll, .react-datepicker__month-dropdown-container--scroll, .react-datepicker__month-year-dropdown-container--scroll {
  background-color: #fff;
  padding: 2px 4px;
  max-width: 54px;
  width: 100%;
  margin: 0 !important;
  border: 1px solid;
}

.react-datepicker__header__dropdown, .react-datepicker__header__dropdown--scroll {
  display: flex;
  justify-content: center;
  padding: 0 8px;
  gap: 8px;
}

.support-link {
  text-decoration: underline;
  color: blue;
}

.formDiv .react-datepicker__year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 26%;
  left: 61%;
  top: 60px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}

.formDiv .react-datepicker__year-option--selected {
  position: absolute;
  left: 6px;
}

.formDiv .react-datepicker__month-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 45%;
  left: 12%;
  top: 59px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}

.formDiv .react-datepicker__month-option--selected {
  position: absolute;
  left: 6px;
}

.header.myActionWrapper {
  height: 80px;
}
.header.myActionWrapper .avatarContainer div {
  display: none;
}

.button-cls {
  color: #000;
  text-align: center;
  font-family: Source Sans Pro;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  margin-top: 63px;
}

.backOverlay.setupPin {
  padding-bottom: 10px !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 30px 0 0 0 !important;
}

.button-cls.createPin {
  margin-top: 0px !important;
}

.createPinWrapper {
  text-align: center;
  margin-top: 32px;
}

.react-confirm-alert-overlay.overlayPrompt.createPin {
  top: 78px !important;
}

.file-remove-btn-upload {
  bottom: 105px;
  left: 75px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.overlay-height {
  max-height: 80vh;
  overflow: scroll;
}

.backOverlay-register {
  padding: 20px;
  margin: 5px;
  border-radius: 10px;
  background: #fff;
  padding-bottom: 60px;
}

.backOverlay-changePin {
  padding: 20px;
  margin: 5px;
  border-radius: 10px;
  background: #fff;
  padding-bottom: 60px;
}

[data-rsbs-overlay], [data-rsbs-backdrop], [data-rsbs-root]:after {
  z-index: 1000 !important;
  touch-action: auto !important;
  overscroll-behavior: auto !important;
}

.border-active-blue {
  border: 1px solid #4FADA6;
  border-radius: 6px !important;
}

.gap-7 {
  gap: 7px;
}

.accessdenied-tab {
  margin-bottom: 87px;
}
.accessdenied-tab button {
  margin-top: 30px;
  width: 90%;
}

.custom-white-control-select {
  color: white !important;
}

.commentary-content p {
  margin-bottom: 16px; /* Adjust the value as needed */
}

.hotel-selector-primary {
  color: #fff !important;
  text-transform: none !important;
  letter-spacing: 0px !important;
}

.portalOverlay {
  margin: 40px;
  border-radius: 10px;
  background: white;
  width: 320px;
  padding-top: 10px;
}

.text-left-imp {
  text-align: left !important;
}

.cancel-text {
  padding: 1rem 3rem 1rem 3rem;
}

.end-session {
  padding: 1rem 2rem 1rem 2.5rem;
  border-left: 1px solid #d1dbec;
}

.Non-ideal-state {
  margin: 100px !important;
}

.height-55 {
  height: 55px;
}

.height-55 {
  height: 55px;
}

.commentary-content p {
  margin-bottom: 16px; /* Adjust the value as needed */
}

.rpv-default-layout__toolbar {
  bottom: 0;
  top: unset !important;
  background: white !important;
  border-bottom: none !important;
  position: static !important;
  order: 2;
}

.rpv-default-layout__body {
  padding-top: 0 !important;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.rpv-default-layout__container {
  border: none !important;
}

.full-screen-container {
  position: fixed;
  height: 100%;
  top: 0;
  z-index: 9999;
  background: white;
  width: 100vw;
  overflow: scroll;
}

.full-screen-container .rpv-default-layout__toolbar {
  margin: 0px !important;
}

.full-screen-container .rpv-default-layout__body {
  padding: 0px !important;
}

.full-screen-container .rpv-default-layout__toolbar {
  height: unset !important;
}

.full-screen-container .rpv-core__inner-page {
  background-color: #071C3E;
}

.full-screen-container .pdf-viewer-container {
  height: unset !important;
}

body:has(.full-screen-container) .nav-wrapper, body:has(.full-screen-container) .frame-header {
  display: none;
}

.text-area-style {
  padding: 24px 0px 8px 0px;
  border: 1px solid #E1E1E1;
}

.text-area-validate-style {
  padding: 24px 0px 8px 0px;
  border: 1px solid #CC3044;
}

.audit-form-style .control-input {
  padding-bottom: 16px;
}
.audit-form-style svg {
  padding-top: 32px;
}
.audit-form-style input {
  padding-top: 32px;
}

.validate-error .control-input {
  border: 1px solid #CC3044;
}

.myaudit-date-picker-form {
  width: -webkit-fill-available;
  padding: 12px 16px;
  border-radius: 0.5rem;
  border: 1px solid #D9D9D9;
  height: 24px;
}

.myaudit-date-picker-validate-form {
  width: -webkit-fill-available;
  padding: 25px 15px 10px 15px;
  border-radius: 0.5rem;
  border: 1px solid #CC3044;
}

.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.toast-content {
  margin-top: 70px;
}
/*
A mixin to generate the classes for a React CSSTransition which animates any number of CSS
properties at once.

Transitioned properties are specificed as a map of property names to lists of (inital value, final
value). For enter & appear transitions, each property will transition from its initial to its final
value. For exit transitions, each property will transition in reverse, from final to initial.

**Simple example:**
`@include react-transition("popover", (opacity: 0 1), $before: "&");`
Transition named "popover" moves opacity from 0 to 1. `"&"` indicates that the
Transition classes are expected to be applied to this element, where the mixin is invoked.

**Params:**
$name: React transitionName prop
$properties: map of CSS property to (initial, final) values
$duration: transition duration
$easing: transition easing function
$delay: transition delay
$before: selector text to insert before transition name (often to select self: &)
$after: selector text to insert after transiton name (to select children)
*/
/*
A mixin to generate the classes for one phase of a React CSSTransition.
`$phase` must be `appear` or `enter` or `exit`.
If `enter` phase is given then `appear` phase will be generated at the same time.
If `exit` phase is given then property values are animated in reverse, from final to initial.

**Example:**
@include react-transition-phase(toast, enter, $enter-translate, $before: "&");
@include react-transition-phase(toast, leave, $leave-blur, $pt-transition-duration * 3, $before: "&");
*/
/*
Given map of properties to values, set each property to the value at the given index.
(remember that sass indices are 1-based).

Example: `each-prop((opacity: 0 1), 2)` will print "opacity: 1"
*/
/*
Format transition class name with all the bits.
"enter" phase will include "appear" phase in returned name.
*/
/*
A mixin to generate the classes for a React CSSTransition which animates any number of CSS
properties at once.

Transitioned properties are specificed as a map of property names to lists of (inital value, final
value). For enter & appear transitions, each property will transition from its initial to its final
value. For exit transitions, each property will transition in reverse, from final to initial.

**Simple example:**
`@include react-transition("popover", (opacity: 0 1), $before: "&");`
Transition named "popover" moves opacity from 0 to 1. `"&"` indicates that the
Transition classes are expected to be applied to this element, where the mixin is invoked.

**Params:**
$name: React transitionName prop
$properties: map of CSS property to (initial, final) values
$duration: transition duration
$easing: transition easing function
$delay: transition delay
$before: selector text to insert before transition name (often to select self: &)
$after: selector text to insert after transiton name (to select children)
*/
/*
A mixin to generate the classes for one phase of a React CSSTransition.
`$phase` must be `appear` or `enter` or `exit`.
If `enter` phase is given then `appear` phase will be generated at the same time.
If `exit` phase is given then property values are animated in reverse, from final to initial.

**Example:**
@include react-transition-phase(toast, enter, $enter-translate, $before: "&");
@include react-transition-phase(toast, leave, $leave-blur, $pt-transition-duration * 3, $before: "&");
*/
/*
Given map of properties to values, set each property to the value at the given index.
(remember that sass indices are 1-based).

Example: `each-prop((opacity: 0 1), 2)` will print "opacity: 1"
*/
/*
Format transition class name with all the bits.
"enter" phase will include "appear" phase in returned name.
*/
.control-select {
  position: relative;
}
.control-select .bp3-popover-target {
  display: block;
}
.control-select-select {
  width: 100%;
  margin: 0;
  padding: 0 12px;
  height: 34px;
  font-size: inherit;
  line-height: 34px;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.control-select-select.has-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
.control-select.disabled {
  color: rgba(51, 51, 51, 0.5);
  cursor: default;
  pointer-events: none;
}
.control-select.disabled * {
  cursor: default;
  pointer-events: none;
}
.control-select.has-error {
  color: #CC3044;
}
.control-select.has-error .control-select-inner {
  box-shadow: inset 0 0 0 1px rgba(204, 48, 68, 0.7);
}
.control-select.has-error.focus .control-select-inner {
  box-shadow: inset 0 0 0 1px #CC3044 !important;
  background-color: #fff;
}
.control-select BUTTON {
  color: inherit;
}
.control-select path, .control-select circle {
  fill: currentColor;
  stroke: currentColor;
}
.control-select-inner {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.35);
  border-radius: 4px;
  transition: all 125ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  background-color: #fff;
  color: #333;
}
.control-select.focus .control-select-inner {
  box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.8) !important;
  background-color: #fff;
}
.control-select-pillbutton {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  padding: 3px;
  background-color: rgba(51, 51, 51, 0.1);
  color: #333;
}
.control-select-pillbutton-item {
  font-size: 12px;
  flex: 1 1 auto;
  margin: 0;
  display: flex;
  flex-direction: row;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.control-select-pillbutton-item SPAN {
  border-radius: 4px;
  flex: 1 1 auto;
  text-align: center;
  padding: 4px 6px;
  line-height: 20px;
  cursor: pointer;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.control-select-pillbutton-item INPUT {
  position: absolute;
  right: 200%;
  bottom: 200%;
}
.control-select-pillbutton-item INPUT:checked + SPAN {
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(51, 51, 51, 0.5);
  color: #333;
}
.control-select-pillbutton-item INPUT:checked:focus + SPAN {
  box-shadow: 0 1px 4px 0 rgba(51, 51, 51, 0.5), 0 0 0 2px rgba(19, 56, 87, 0.5);
}
.control-select-pillbutton-item INPUT:focus + SPAN {
  box-shadow: inset 0 0 0 1px rgba(19, 56, 87, 0.7);
  z-index: 1;
}
.control-select-pillbutton-item.active SPAN {
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(51, 51, 51, 0.5);
  color: #333;
}
.control-select-pillbutton-item:not(.active) .bp3-popover-open {
  background: rgba(255, 255, 255, 0.2);
}
.control-select-pillbutton-item svg {
  margin-left: 6px;
}
.control-select-pillbutton-item path {
  fill: currentColor;
}
.control-select-pillbutton-item:first-child:nth-last-child(2), .control-select-pillbutton-item:first-child:nth-last-child(2) ~ .control-select-pillbutton-item {
  flex-basis: 50%;
}
.control-select-pillbutton-item:first-child:nth-last-child(3), .control-select-pillbutton-item:first-child:nth-last-child(3) ~ .control-select-pillbutton-item {
  flex-basis: 33.3333%;
}
.control-select-pillbutton-item:first-child:nth-last-child(4), .control-select-pillbutton-item:first-child:nth-last-child(4) ~ .control-select-pillbutton-item {
  flex-basis: 25%;
}
.control-select .control-input,
.control-select .control-input.focus {
  box-shadow: none !important;
  background-color: transparent !important;
  flex: 1 1 auto;
}
.control-select-addon {
  flex: 0 0 auto;
  padding: 0;
  margin: 0 12px 0 0;
  pointer-events: none;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 0;
  position: relative;
}
.control-select-addon:before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
}
.control-select-addon svg {
  float: left;
}
BUTTON.control-select-addon {
  cursor: pointer;
  pointer-events: auto;
}

A.control-select-addon {
  cursor: pointer;
  pointer-events: auto;
}

.control-select-addon:focus path, .control-select-addon:hover path {
  opacity: 1;
}
.control-select-addon.bp3-popover-dismiss {
  pointer-events: auto;
}
.control-select-portal {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 20;
  opacity: 1;
  transform: translateY(0);
}
.control-select-portal .bp3-popover-enter > *, .control-select-portal .bp3-popover-appear > * {
  opacity: 0;
  transform: translateY(-10px);
}
.control-select-portal .bp3-popover-enter-active > *, .control-select-portal .bp3-popover-appear-active > * {
  opacity: 1;
  transform: translateY(0);
  transition-property: opacity, transform;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0;
}
.control-select-portal .bp3-popover-exit > * {
  opacity: 1;
  transform: translateY(0);
}
.control-select-portal .bp3-popover-exit-active > * {
  opacity: 0;
  transform: translateY(-10px);
  transition-property: opacity, transform;
  transition-duration: 250ms;
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  transition-delay: 0;
}
.control-select-portal .bp3-popover-enter-active {
  pointer-events: none;
}
.control-select-popover {
  display: block;
  z-index: 20;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(51, 51, 51, 0.1);
}
.control-select-popover .bp3-popover-arrow {
  position: absolute;
  width: 20px;
  height: 20px;
}
.control-select-popover .bp3-popover-arrow::before {
  margin: 3px;
  width: 13px;
  height: 13px;
}
.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .control-select-popover {
  margin-top: -10px;
  margin-bottom: 10px;
}
.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .control-select-popover > .bp3-popover-arrow {
  bottom: -6px;
}
.bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .control-select-popover > .bp3-popover-arrow svg {
  transform: rotate(-90deg);
}
.bp3-tether-element-attached-left.bp3-tether-target-attached-right > .control-select-popover {
  margin-left: 10px;
}
.bp3-tether-element-attached-left.bp3-tether-target-attached-right > .control-select-popover > .bp3-popover-arrow {
  left: -6px;
}
.bp3-tether-element-attached-left.bp3-tether-target-attached-right > .control-select-popover > .bp3-popover-arrow svg {
  transform: rotate(0);
}
.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .control-select-popover {
  margin-top: 10px;
}
.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .control-select-popover > .bp3-popover-arrow {
  top: -6px;
}
.bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .control-select-popover > .bp3-popover-arrow svg {
  transform: rotate(90deg);
}
.bp3-tether-element-attached-right.bp3-tether-target-attached-left > .control-select-popover {
  margin-right: 10px;
  margin-left: -10px;
}
.bp3-tether-element-attached-right.bp3-tether-target-attached-left > .control-select-popover > .bp3-popover-arrow {
  right: -6px;
}
.bp3-tether-element-attached-right.bp3-tether-target-attached-left > .control-select-popover > .bp3-popover-arrow svg {
  transform: rotate(180deg);
}
.bp3-tether-element-attached-middle > .control-select-popover > .bp3-popover-arrow {
  top: 50%;
  transform: translateY(-50%);
}
.bp3-tether-element-attached-center > .control-select-popover > .bp3-popover-arrow {
  right: 50%;
  transform: translateX(50%);
}
.bp3-tether-element-attached-top.bp3-tether-target-attached-top > .control-select-popover > .bp3-popover-arrow {
  top: 1.0710678237px;
}
.bp3-tether-element-attached-right.bp3-tether-target-attached-right > .control-select-popover > .bp3-popover-arrow {
  right: 1.0710678237px;
}
.bp3-tether-element-attached-left.bp3-tether-target-attached-left > .control-select-popover > .bp3-popover-arrow {
  left: 1.0710678237px;
}
.bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .control-select-popover > .bp3-popover-arrow {
  bottom: 1.0710678237px;
}
.bp3-tether-element-attached-top.bp3-tether-element-attached-left > .control-select-popover {
  transform-origin: top left;
}
.bp3-tether-element-attached-top.bp3-tether-element-attached-center > .control-select-popover {
  transform-origin: top center;
}
.bp3-tether-element-attached-top.bp3-tether-element-attached-right > .control-select-popover {
  transform-origin: top right;
}
.bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .control-select-popover {
  transform-origin: center left;
}
.bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .control-select-popover {
  transform-origin: center center;
}
.bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .control-select-popover {
  transform-origin: center right;
}
.bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .control-select-popover {
  transform-origin: bottom left;
}
.bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .control-select-popover {
  transform-origin: bottom center;
}
.bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .control-select-popover {
  transform-origin: bottom right;
}
.control-select-popover .bp3-popover-content {
  background: #fff;
  color: inherit;
}
.control-select-popover .bp3-popover-arrow::before {
  box-shadow: 1px 1px 6px #10161a;
}
.control-select-popover .bp3-popover-arrow-border {
  fill: #10161a;
  fill-opacity: 0;
}
.control-select-popover .bp3-popover-arrow-fill {
  fill: #fff;
}
.control-select-popover .bp3-popover-content {
  background-color: #fff;
  border-radius: 4px;
  max-width: 100%;
  padding: 0 2px 2px 2px;
}
.control-select-popover .bp3-popover-content:before, .control-select-popover .bp3-popover-content:after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (max-width: 759px) {
  .control-select-popover .bp3-popover-content {
    max-width: calc(100vw - 40px);
  }
}
.control-select-popover .bp3-popover-content:focus {
  outline: none;
}
.control-select-popover .bp3-popover-content *:focus {
  outline: none;
}
.control-select-popover .bp3-transition-container {
  display: flex;
  z-index: 20;
  padding-bottom: 10px;
}
.control-select-popover .bp3-transition-container:focus {
  outline: none;
}
.control-select-popover .bp3-transition-container.bp3-popover-leave .bp3-popover-content {
  pointer-events: none;
}
.control-select-popover .bp3-transition-container[data-x-out-of-boundaries] {
  display: none;
}
.control-select-popover .bp3-menu {
  border-radius: 0;
  max-width: 100%;
  min-width: 0;
}
.control-select-popover .bp3-menu-item {
  max-width: 100%;
  margin-top: 2px;
  box-sizing: border-box;
}
.control-select-popover:focus {
  outline: none;
}
.control-select-popover .menu-search {
  margin-top: 2px;
}
.control-select-menu {
  display: block;
  position: relative;
  max-width: 100%;
  cursor: pointer;
}
.control-select-menu:hover, .control-select-menu:focus .control-select-menu-select {
  text-decoration: underline;
}
.control-select-menu:focus {
  outline: none;
}
.control-select-menu *:focus {
  outline: none;
}
.control-select-menu .bp3-popover-target {
  display: block;
}
.control-select-menu-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.control-select-menu-select {
  overflow: hidden;
  text-overflow: ellipsis;
}
.control-select-menu-addon {
  margin-left: 10px;
}
.control-select-menu-addon svg {
  width: 0.5em;
  height: 0.5em;
}
.control-select-menu-addon path {
  fill: currentColor;
}
.bp3-menu {
  margin: 0;
  min-width: 240px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
}
.bp3-overlay .bp3-menu {
  max-height: 300px;
  overflow: hidden;
  overflow-y: auto;
  -ms-overflow-style: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  position: relative;
}
.bp3-overlay .bp3-menu::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.bp3-overlay .bp3-menu::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.bp3-overlay .bp3-menu::-webkit-scrollbar-thumb {
  border-radius: 5px;
}
.bp3-overlay .bp3-menu::-webkit-scrollbar-track {
  border-radius: 5px;
}
.bp3-overlay .bp3-menu::-webkit-scrollbar-thumb {
  background: rgba(24, 70, 109, 0.1);
}
.bp3-overlay .bp3-menu::-webkit-scrollbar-thumb:hover {
  background: #18466d;
}
.bp3-overlay .bp3-menu::-webkit-scrollbar-thumb:active {
  background: #18466d;
}
.bp3-overlay .bp3-menu::-webkit-scrollbar-track {
  background: rgba(24, 70, 109, 0.05);
  border-radius: 0;
}
.bp3-overlay .bp3-menu::-webkit-scrollbar-track:hover {
  background: rgba(24, 70, 109, 0.1);
}
.bp3-overlay .bp3-menu::-webkit-scrollbar-track:active {
  background: rgba(24, 70, 109, 0.1);
}
.bp3-overlay .bp3-menu::-webkit-scrollbar-corner {
  background: transparent;
}
@media only screen and (max-width: 759px) {
  .bp3-overlay .bp3-menu {
    max-height: 150px;
  }
}
.bp3-menu > LI:first-child .bp3-menu-item.with-avatar:before {
  display: none;
}
.bp3-menu.pillbutton {
  min-width: 132px;
  font-size: 12px;
  text-align: center;
}
.bp3-menu-item {
  border-radius: 2px;
  display: flex;
  color: inherit;
  padding: 6px 12px;
  line-height: 20px;
  cursor: pointer;
  justify-content: space-between;
  position: relative;
}
.bp3-menu-item:hover {
  background-color: rgba(24, 70, 109, 0.1);
}
.bp3-menu-item.highlight {
  background-color: rgba(88, 195, 187, 0.3) !important;
}
.bp3-menu-item.active, .bp3-menu-item.bp3-active {
  background-color: rgba(209, 219, 236, 0.5);
}
.bp3-menu-item-label {
  display: flex;
  align-items: center;
  margin-left: 30px;
  font-size: 12px;
  line-height: 1;
  color: #aaa;
}
.bp3-menu-item .bp3-fill {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bp3-menu-item .inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.bp3-menu-item .inner-text {
  flex: 1 0 auto;
}
.bp3-menu-item .inner .avatar {
  flex: 0 0 auto;
}
.bp3-menu-item.with-subtext .inner .text {
  font-weight: bold;
  line-height: 24px;
}
.bp3-menu-item.with-subtext .inner .subtext {
  font-size: 13px;
  line-height: 16px;
  color: #8ba7c4;
}
.bp3-menu-item.with-avatar:before {
  content: "";
  display: block;
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 1px;
  background-color: #d1dbec;
  z-index: 1;
}
.bp3-menu-item.indent-1 {
  padding-left: 12px;
  font-weight: 700;
}
.bp3-menu-item.indent-2 {
  padding-left: 24px;
}
.bp3-menu-item.indent-3 {
  padding-left: 36px;
}
.bp3-menu-item.indent-4 {
  padding-left: 48px;
}
.brandhotelselector {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 5px;
}
.brandhotelselector-fixedvalue,
.brandhotelselector .control-select-menu {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1px;
  color: #8299B5;
  text-transform: uppercase;
}
.brandhotelselector-fixedvalue.primary,
.brandhotelselector .control-select-menu.primary {
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  text-transform: none;
  letter-spacing: 0;
}
@media only screen and (max-width: 759px) {
  .brandhotelselector {
    margin-top: 20px;
  }
}
@keyframes react-loading-skeleton {
  100% {
    transform: translateX(100%);
  }
}

.react-loading-skeleton {
  --base-color: #ebebeb;
  --highlight-color: #f5f5f5;
  --animation-duration: 1.5s;
  --animation-direction: normal;
  --pseudo-element-display: block; /* Enable animation */

  background-color: var(--base-color);

  width: 100%;
  border-radius: 0.25rem;
  display: inline-flex;
  line-height: 1;

  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  overflow: hidden;
}

.react-loading-skeleton::after {
  content: ' ';
  display: var(--pseudo-element-display);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-image: var(
    --custom-highlight-background,
    linear-gradient(
      90deg,
      var(--base-color) 0%,
      var(--highlight-color) 50%,
      var(--base-color) 100%
    )
  );
  transform: translateX(-100%);

  animation-name: react-loading-skeleton;
  animation-direction: var(--animation-direction);
  animation-duration: var(--animation-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion) {
  .react-loading-skeleton {
    --pseudo-element-display: none; /* Disable animation */
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
@charset "UTF-8";
/* Slider */
/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}
.donut {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  font-family: sans-serif !important;
  letter-spacing: -0.05em;
}
.donut-value {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.donut-value-row {
  display: block;
}
.donut-circle-bg {
  stroke: currentColor;
  opacity: 0.2;
}
.donut-circle-value {
  stroke: currentColor;
}
.donut-circle-change {
  stroke: currentColor;
  opacity: 0.5;
}
.donut.intent-danger .donut-circle-value {
  stroke: #CC3044;
}
.donut.intent-success .donut-circle-value {
  stroke: #4FADA6;
}
.donut.intent-warning .donut-circle-value {
  stroke: rgb(237.7875, 203.3625, 42.7125);
}
.donut.intent-danger .donut-circle-change {
  stroke: #CC3044;
}
.donut.intent-success .donut-circle-change {
  stroke: #4FADA6;
}
.donut.intent-warning .donut-circle-change {
  stroke: rgb(237.7875, 203.3625, 42.7125);
}
.donut-fraction {
  font-size: 50%;
  font-weight: 400;
}
.donut-change {
  font-weight: 400;
}
.donut-change.intent-danger {
  color: #CC3044;
}
.donut-change.intent-success {
  color: #4FADA6;
}
.donut-change.intent-warning {
  color: rgb(237.7875, 203.3625, 42.7125);
}
.donut-change svg {
  margin: 0 3px 0 0;
  vertical-align: -5%;
  width: 0.6em;
  height: 0.6em;
}
.donut-change path {
  fill: currentColor;
}
.showRankListDetails {
  height: 50px;
  width: 100%;
}

.list-icon-container {
  width: 20px;
}

.list-arrow-icon {
  height: 15px;
  width: 15px;
  font-weight: 600;
  cursor: pointer;
}

.rank-diff-block {
  float: left;
  width: 15%;
  height: 30px;
}

.rank-diff-text {
  height: 30px;
  width: 30px;
  border-radius: 5px;
  background-color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  margin: 20px 0 0 0;
  padding: 2px 2px 2px 2px;
}
.rank-diff-text.intent-warning {
  color: #ffb71a;
  border: 1px solid #ffb71a;
}
.rank-diff-text.intent-success {
  color: #4FADA6;
  border: 1px solid #4FADA6;
}
.rank-diff-text.intent-danger {
  color: #CC3044;
  border: 1px solid #CC3044;
}

.rank-diff-percentage {
  height: 30px;
  width: 30px;
  border-radius: 5px;
  font-size: 12px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px -38px 0 0;
  padding: 2px 2px 2px 2px;
}
.rank-diff-percentage.intent-warning {
  color: #ffb71a;
  border: 1px solid #ffb71a;
}
.rank-diff-percentage.intent-success {
  color: #4FADA6;
  border: 1px solid #4FADA6;
}
.rank-diff-percentage.intent-danger {
  color: #CC3044;
  border: 1px solid #CC3044;
}

.graph-block {
  float: right;
  width: 85%;
}

.list-ranking-item {
  width: 300px;
}
.list-ranking-item-score {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 5px;
  height: 35px;
  width: 40px;
  margin-left: -60px;
  top: -10%;
}
.list-ranking-item-rank {
  margin: 0;
}
.list-ranking-item.layout-default {
  flex: 0 0 20%;
  padding: 40px 15px 0 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.list-ranking-item.layout-default .list-ranking-item-heading {
  flex: 1 0 auto;
}
.list-ranking-item.layout-default .list-ranking-item-chart {
  flex: 0 0 auto;
}
.list-ranking-item.layout-default .list-ranking-item-numbers {
  flex: 0 0 auto;
}
.list-ranking-item.layout-default:first-child:nth-last-child(1) {
  flex: 0 0 280px;
}
.list-ranking-item.layout-default:first-child:nth-last-child(2), .list-ranking-item.layout-default:first-child:nth-last-child(2) ~ .list-ranking-item.layout-default {
  flex: 0 0 280px;
}
.list-ranking-item.layout-default:first-child:nth-last-child(3), .list-ranking-item.layout-default:first-child:nth-last-child(3) ~ .list-ranking-item.layout-default {
  flex: 0 0 280px;
}
.list-ranking-item.layout-default:first-child:nth-last-child(4), .list-ranking-item.layout-default:first-child:nth-last-child(4) ~ .list-ranking-item.layout-default {
  flex: 1 1 25%;
}
.list-ranking-item.layout-default:first-child:nth-last-child(5), .list-ranking-item.layout-default:first-child:nth-last-child(5) ~ .list-ranking-item.layout-default {
  flex: 0 0 20%;
}
.list-ranking-item.layout-default:first-child:nth-last-child(6), .list-ranking-item.layout-default:first-child:nth-last-child(6) ~ .list-ranking-item.layout-default {
  flex: 0 0 33.333%;
}
.list-ranking-item.layout-default:first-child:nth-last-child(7), .list-ranking-item.layout-default:first-child:nth-last-child(7) ~ .list-ranking-item.layout-default {
  flex: 0 0 25%;
}
.list-ranking-item.layout-default:before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  background-color: #e6e6e6;
  height: 1px;
  margin: -20px 0 0 0;
}
@media only screen and (max-width: 759px) {
  .list-ranking-item.layout-default {
    flex: 1 1 100% !important;
  }
  .list-ranking-item.layout-default:before {
    left: 20px;
    right: 20px;
  }
  .list-ranking-item.layout-default-title {
    display: inline;
    margin: 0 3px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .list-ranking-item.layout-default-ranking {
    display: inline;
    margin: 0 3px;
  }
}
@media only screen and (min-width: 760px) and (max-width: 1023px) {
  .list-ranking-item.layout-default {
    flex: 0 0 33.333% !important;
  }
}
.list-ranking-item.layout-standalone {
  min-width: 100px;
}
.list-ranking-item.layout-standalone .list-ranking-item-numbers SPAN {
  display: inline;
}
.list-ranking-item.layout-standalone .list-ranking-item-numbers B {
  font-weight: 400;
}
.list-ranking-item-title {
  font-size: 16px;
}
.list-ranking-item-ranking B {
  font-size: 16px;
}
.list-ranking-item-chart {
  padding-top: 35px;
}
.list-ranking-item-chart-bar {
  position: relative;
  background-color: rgba(51, 51, 51, 0.1);
  border-radius: 10px;
}
.list-ranking-item-chart-bar-inner {
  height: 10px;
  background-color: currentColor;
  position: relative;
  border-radius: 10px 0 0 10px;
}
.list-ranking-item-chart-bar-inner.previous {
  background-color: transparent;
  border-right: 2px dotted #333;
  margin-top: -10px;
  color: #aaa;
}
.list-ranking-item-chart-bar-inner.previous:hover {
  z-index: 2;
}
.list-ranking-item-chart-bar-inner.previous .list-ranking-item-chart-bar-number {
  font-weight: 400;
  z-index: 1;
  font-size: 13px;
  line-height: 18px;
  padding: 0 4px;
}
.list-ranking-item-chart-bar-number {
  position: absolute;
  right: 0;
  bottom: 100%;
  margin: 0 0 10px 0;
  transform: translate(50%, 0);
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  padding: 0 5px;
  z-index: 2;
  border: 1px solid currentColor;
  border-radius: 15px;
  width: 50px;
  background-color: currentColor;
}
.list-ranking-item-chart-bar-number:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 8px 0 8px;
  border-color: currentColor transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  z-index: 1;
}
.list-ranking-item-chart-bar-number:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  z-index: 2;
}
.list-ranking-item-chart-bar-number I {
  font-style: normal;
  font-weight: 400;
  font-size: 0.7em;
  margin-left: 0.1em;
  vertical-align: 2%;
}
.list-ranking-item-chart-bar-number-text {
  color: #fff;
}
.list-ranking-item-numbers {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
  margin-top: 5px;
  opacity: 0.7;
  font-size: 12px;
  line-height: 1.2;
}
.list-ranking-item-numbers > DIV {
  flex: 0 0 auto;
}
.list-ranking-item-numbers SPAN {
  display: block;
}
.list-ranking-item-min {
  align-self: flex-start;
  text-align: left;
}
.list-ranking-item-max {
  align-self: flex-end;
  text-align: right;
}
.list-ranking-item-avg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.list-ranking-item.intent-primary .list-ranking-item-chart-bar {
  color: rgb(51, 133.8, 204);
}
.list-ranking-item.intent-success .list-ranking-item-chart-bar {
  color: #4FADA6;
}
.list-ranking-item.intent-warning .list-ranking-item-chart-bar {
  color: rgb(237.7875, 203.3625, 42.7125);
}
.list-ranking-item.intent-danger .list-ranking-item-chart-bar {
  color: #CC3044;
}
.list-ranking-item.intent-active .list-ranking-item-chart-bar {
  color: #58c3bb;
}
.list-ranking-item.intent-neutral .list-ranking-item-chart-bar {
  color: #aaa;
}
.list-ranking-item.intent-pending .list-ranking-item-chart-bar {
  color: cyan;
}
.list-ranking-item.intent-default .list-ranking-item-chart-bar {
  color: #8ba7c4;
}

.low-high-text {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #717171;
}

.low-text {
  text-align: left;
}

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

.low-high-score {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #1F1F1F;
}
.showRankListDetails {
  height: 50px;
  width: 100%;
}

.list-icon-container {
  width: 20px;
}

.list-arrow-icon {
  height: 15px;
  width: 15px;
  font-weight: 600;
  cursor: pointer;
}

.rank-diff-block {
  float: left;
  width: 15%;
  height: 30px;
}

.rank-diff-text {
  height: 30px;
  width: 30px;
  border-radius: 5px;
  background-color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  margin: 20px 0 0 0;
  padding: 2px 2px 2px 2px;
}
.rank-diff-text.intent-warning {
  color: #ffb71a;
  border: 1px solid #ffb71a;
}
.rank-diff-text.intent-success {
  color: #82bd7a;
  border: 1px solid #82bd7a;
}
.rank-diff-text.intent-danger {
  color: #d68077;
  border: 1px solid #d68077;
}

.current-score-text.intent-warning {
  color: #ffb71a;
}
.current-score-text.intent-success {
  color: #82bd7a;
}
.current-score-text.intent-danger {
  color: #d68077;
}

.rank-diff-percentage {
  height: 30px;
  width: 30px;
  border-radius: 5px;
  font-size: 12px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px -38px 0 0;
  padding: 2px 2px 2px 2px;
}
.rank-diff-percentage.intent-warning {
  color: #ffb71a;
  border: 1px solid #ffb71a;
}
.rank-diff-percentage.intent-success {
  color: #82bd7a;
  border: 1px solid #82bd7a;
}
.rank-diff-percentage.intent-danger {
  color: #d68077;
  border: 1px solid #d68077;
}

.graph-block {
  float: right;
  width: 85%;
}

.list-ranking-item {
  width: 300px;
}
.list-ranking-item-score {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 5px;
  height: 35px;
  width: 40px;
  margin-left: -60px;
  top: -10%;
}
.list-ranking-item-rank {
  margin: 0;
}
.list-ranking-item.layout-default {
  flex: 0 0 20%;
  padding: 40px 15px 0 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.list-ranking-item.layout-default .list-ranking-item-heading {
  flex: 1 0 auto;
}
.list-ranking-item.layout-default .list-ranking-item-chart {
  flex: 0 0 auto;
}
.list-ranking-item.layout-default .list-ranking-item-numbers {
  flex: 0 0 auto;
}
.list-ranking-item.layout-default:first-child:nth-last-child(1) {
  flex: 0 0 280px;
}
.list-ranking-item.layout-default:first-child:nth-last-child(2), .list-ranking-item.layout-default:first-child:nth-last-child(2) ~ .list-ranking-item.layout-default {
  flex: 0 0 280px;
}
.list-ranking-item.layout-default:first-child:nth-last-child(3), .list-ranking-item.layout-default:first-child:nth-last-child(3) ~ .list-ranking-item.layout-default {
  flex: 0 0 280px;
}
.list-ranking-item.layout-default:first-child:nth-last-child(4), .list-ranking-item.layout-default:first-child:nth-last-child(4) ~ .list-ranking-item.layout-default {
  flex: 1 1 25%;
}
.list-ranking-item.layout-default:first-child:nth-last-child(5), .list-ranking-item.layout-default:first-child:nth-last-child(5) ~ .list-ranking-item.layout-default {
  flex: 0 0 20%;
}
.list-ranking-item.layout-default:first-child:nth-last-child(6), .list-ranking-item.layout-default:first-child:nth-last-child(6) ~ .list-ranking-item.layout-default {
  flex: 0 0 33.333%;
}
.list-ranking-item.layout-default:first-child:nth-last-child(7), .list-ranking-item.layout-default:first-child:nth-last-child(7) ~ .list-ranking-item.layout-default {
  flex: 0 0 25%;
}
.list-ranking-item.layout-default:before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  background-color: #e6e6e6;
  height: 1px;
  margin: -20px 0 0 0;
}
@media only screen and (max-width: 759px) {
  .list-ranking-item.layout-default {
    flex: 1 1 100% !important;
  }
  .list-ranking-item.layout-default:before {
    left: 20px;
    right: 20px;
  }
  .list-ranking-item.layout-default-title {
    display: inline;
    margin: 0 3px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .list-ranking-item.layout-default-ranking {
    display: inline;
    margin: 0 3px;
  }
}
@media only screen and (min-width: 760px) and (max-width: 1023px) {
  .list-ranking-item.layout-default {
    flex: 0 0 33.333% !important;
  }
}
.list-ranking-item.layout-standalone {
  min-width: 100px;
}
.list-ranking-item.layout-standalone .list-ranking-item-numbers SPAN {
  display: inline;
}
.list-ranking-item.layout-standalone .list-ranking-item-numbers B {
  font-weight: 400;
}
.list-ranking-item-title {
  font-size: 16px;
}
.list-ranking-item-ranking B {
  font-size: 16px;
}
.list-ranking-item-chart {
  padding-top: 35px;
}
.list-ranking-item-chart-bar {
  position: relative;
  background-color: rgba(51, 51, 51, 0.1);
  border-radius: 10px;
}
.list-ranking-item-chart-bar-inner {
  height: 10px;
  background-color: currentColor;
  position: relative;
  border-radius: 10px 0 0 10px;
}
.list-ranking-item-chart-bar-inner.previous {
  background-color: transparent;
  border-right: 2px dotted #333;
  margin-top: -10px;
  color: #aaa;
}
.list-ranking-item-chart-bar-inner.previous:hover {
  z-index: 2;
}
.list-ranking-item-chart-bar-inner.previous .list-ranking-item-chart-bar-number {
  font-weight: 400;
  z-index: 1;
  font-size: 13px;
  line-height: 18px;
  padding: 0 4px;
}
.list-ranking-item-chart-bar-number {
  position: absolute;
  right: 0;
  bottom: 100%;
  margin: 0 0 10px 0;
  transform: translate(50%, 0);
  font-weight: bold;
  font-size: 14px;
  line-height: 21px;
  padding: 0 5px;
  z-index: 2;
  border: 1px solid currentColor;
  border-radius: 15px;
  width: 50px;
  background-color: currentColor;
}
.list-ranking-item-chart-bar-number:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 8px 0 8px;
  border-color: currentColor transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  z-index: 1;
}
.list-ranking-item-chart-bar-number:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  z-index: 2;
}
.list-ranking-item-chart-bar-number I {
  font-style: normal;
  font-weight: 400;
  font-size: 0.7em;
  margin-left: 0.1em;
  vertical-align: 2%;
}
.list-ranking-item-chart-bar-number-text {
  color: #fff;
}
.list-ranking-item-numbers {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
  margin-top: 5px;
  opacity: 0.7;
  font-size: 12px;
  line-height: 1.2;
}
.list-ranking-item-numbers > DIV {
  flex: 0 0 auto;
}
.list-ranking-item-numbers SPAN {
  display: block;
}
.list-ranking-item-min {
  align-self: flex-start;
  text-align: left;
}
.list-ranking-item-max {
  align-self: flex-end;
  text-align: right;
}
.list-ranking-item-avg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}
.list-ranking-item.intent-primary .list-ranking-item-chart-bar {
  color: rgb(51, 133.8, 204);
}
.list-ranking-item.intent-success .list-ranking-item-chart-bar {
  color: #4FADA6;
}
.list-ranking-item.intent-warning .list-ranking-item-chart-bar {
  color: rgb(237.7875, 203.3625, 42.7125);
}
.list-ranking-item.intent-danger .list-ranking-item-chart-bar {
  color: #CC3044;
}
.list-ranking-item.intent-active .list-ranking-item-chart-bar {
  color: #58c3bb;
}
.list-ranking-item.intent-neutral .list-ranking-item-chart-bar {
  color: #aaa;
}
.list-ranking-item.intent-pending .list-ranking-item-chart-bar {
  color: cyan;
}
.list-ranking-item.intent-default .list-ranking-item-chart-bar {
  color: #8ba7c4;
}
h1 {
  font-size: 25px;
  margin-bottom: 5px;
  text-align: center !important;
}

.subHeading {
  text-align: center;
  color: #717171;
}

.shadow {
  width: 160px;
}

.shadowStandard {
  width: 100%;
}

.shadowStandard .control-select-inner {
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border-radius: 4px;
  padding: 0.5rem;
}

.shadowStandard .control-select-filter-inner {
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border-radius: 4px;
  padding: 0.5rem;
}

.header2 .block-limiter {
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.header2 .brandhotelselector {
  margin-top: 5px;
}

.floatRight {
  float: right;
}

.marginBottom20 {
  margin-bottom: 20px;
}

.calender-selection {
  margin-top: 5px;
}

.calender-selection .control-select-men {
  display: inline-block;
  float: left;
}

.calender-selection .control-select-filter-men {
  display: inline-block;
  float: left;
}

.assesmenttxt {
  color: #717171;
}

.assessmentDiv {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.assesmentUnderline {
  text-decoration: underline;
}

.description-container {
  display: block;
  float: left;
  width: 60%;
  color: #000;
  padding-top: 15px;
}

.description-container b {
  margin-bottom: 10px;
  color: #000;
  display: block;
}

.dashboard-header-group-inner {
  min-width: 140px;
  margin: 10px;
  flex: 1 1 auto;
}

.listRankingContainer .block-limiter {
  padding: 0 12px 12px 12px;
}

.listRankingContainer .list-ranking-item {
  width: 100%;
  margin-top: 20px;
}

.listRankingContainer .list-ranking-item.layout-default {
  padding: 15px 15px 15px 15px;
}

.graph-block {
  width: 100%;
}

.displayInline {
  display: inline !important;
}

.list-ranking-item-chart span {
  font-size: 12px;
  font-weight: bold;
}

.list-ranking-item-chart span.intent-success {
  color: #82bd7a;
}

.list-ranking-item-chart span.intent-danger {
  color: #d68077;
}

.list-ranking-item-chart span.intent-warning {
  color: #ffb71a;
}

.mainCat .list-ranking-item-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}

.listRankingContainer .list-ranking-item.layout-default:first-child {
  flex: 0 0 135px !important;
}

.list-ranking-item-title {
  text-transform: capitalize;
}

.control-select-pillbutton-item SPAN {
  font-size: 16px;
}

.control-select-filter-pillbutton-item SPAN {
  font-size: 16px;
}

.chart-trend {
  margin-top: 20px;
}

.subHeadingH3 {
  margin-bottom: 5px;
}

.deptPerformanceContainer {
  margin-top: 20px;
}

.deptPerformanceContainer .block-limiter {
  padding: 0 10px 10px 10px;
}

.deptPerformanceTableContainer .block-limiter {
  padding: 0 0px 0px 0px;
}

.deptPerformance {
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
}

.deptPerformance th {
  text-transform: uppercase;
}

.deptPerformance th:first-child {
  width: 50%;
}

.deptPerformance th, .deptPerformance td {
  text-align: left;
  padding: 15px;
}

.deptPerformance tr {
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}

.deptPerformance tr:nth-child(even) {
  background-color: #f8f8f8;
}

.deptPerformance tr:last-child {
  background-color: #fff;
}

.iconTrending {
  display: block;
  float: right;
  width: 10%;
  text-align: right;
}

.iconTrending svg {
  height: 16px;
  width: 25px;
  position: relative;
  bottom: 0px;
}

.sortLow {
  display: block;
  float: right;
  width: 22%;
  color: #717171;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: right;
}

.sortHigh {
  display: block;
  float: right;
  width: 22%;
  color: #717171;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: right;
}

.activeSort {
  color: #000;
  font-weight: 600;
}

.sortContainer {
  display: block;
  margin-top: 30px;
}

.hide {
  display: none;
}

.fullWidthSelect {
  width: 100% !important;
}

.shadow {
  width: 160px;
}

.shadowStandard {
  width: 100%;
}

.shadowStandard .control-select-inner {
  box-shadow: 0px 0.3px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.13);
  border-radius: 6px;
  padding: 0.5rem;
}

.shadowStandard .control-select-filter-inner {
  box-shadow: 0px 0.3px 0.9px rgba(0, 0, 0, 0.1), 0px 1.6px 3.6px rgba(0, 0, 0, 0.13);
  border-radius: 6px;
  padding: 0.5rem;
}

.noShadow {
  box-shadow: none;
}

.deptPerformanceContainer span {
  text-align: left;
  color: #717171;
}

.NoResults {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.noResults {
  height: 100%;
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.noResultFont {
  letter-spacing: 0.36px;
  color: #667085 !important;
  margin-top: 10px;
}
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
}

.Carousel {
  width: 100%;
}

.carousel-initialized {
  overflow: hidden;
  position: relative;
}

.carousel-arrow.carousel-hidden {
  display: none;
}

.carousel-track {
  width: 100%;
  display: flex;
  position: relative;
}

/* Arrows */
.carousel-prev.block,
.carousel-next.block {
  opacity: 1;
}

.carousel-prev,
.carousel-next {
  opacity: 0;
  font-size: 0;
  line-height: 0;
  width: 40px;
  height: 100%;
  border-radius: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;

  color: transparent;
  border: none;
  outline: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  z-index: 4;
  background: none;
}

.carousel-prev:hover,
.carousel-prev:focus,
.carousel-next:hover,
.carousel-next:focus {
  opacity: 1;
  color: transparent;
  outline: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.carousel-prev:hover:before,
.carousel-prev:focus:before,
.carousel-next:hover:before,
.carousel-next:focus:before {
  opacity: 1;
}

.carousel-prev.carousel-disabled:before,
.carousel-next.carousel-disabled:before {
  opacity: .25;
}

.carousel-prev:before,
.carousel-next:before {
  content: '';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  display: block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.carousel-prev:before {
  background-image: url("data:image/svg+xml,%3C!-- Generated by IcoMoon.io --%3E%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctitle%3Earrow-left2%3C/title%3E%3Cpath fill='%23900' d='M12.586 27.414l-10-10c-0.781-0.781-0.781-2.047 0-2.828l10-10c0.781-0.781 2.047-0.781 2.828 0s0.781 2.047 0 2.828l-6.586 6.586h19.172c1.105 0 2 0.895 2 2s-0.895 2-2 2h-19.172l6.586 6.586c0.39 0.39 0.586 0.902 0.586 1.414s-0.195 1.024-0.586 1.414c-0.781 0.781-2.047 0.781-2.828 0z'%3E%3C/path%3E%3C/svg%3E%0A");
}
.carousel-next:before {
  background-image: url("data:image/svg+xml,%3C!-- Generated by IcoMoon.io --%3E%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctitle%3Earrow-right2%3C/title%3E%3Cpath fill='%23900' d='M19.414 27.414l10-10c0.781-0.781 0.781-2.047 0-2.828l-10-10c-0.781-0.781-2.047-0.781-2.828 0s-0.781 2.047 0 2.828l6.586 6.586h-19.172c-1.105 0-2 0.895-2 2s0.895 2 2 2h19.172l-6.586 6.586c-0.39 0.39-0.586 0.902-0.586 1.414s0.195 1.024 0.586 1.414c0.781 0.781 2.047 0.781 2.828 0z'%3E%3C/path%3E%3C/svg%3E%0A");
}

.carousel-next.custom:before,
.carousel-prev.custom:before {
  content: unset;
  background-image: unset;
} 

.carousel-prev {
  left: 0px;
}

[dir='rtl'] .carousel-prev {
  right: -25px;
  left: auto;
}

[dir='rtl'] .carousel-prev:before {
  content: '';
}

.carousel-next {
  right: 0px;
}

[dir='rtl'] .carousel-next {
  right: auto;
  left: -25px;
}

[dir='rtl'] .carousel-next:before {
  content: '';
}

/* Dots */
.carousel-dots {
  display: block;
  width: 100%;
  padding: 0;
  margin-top: 1em;
  list-style: none;
  text-align: center;
}

.carousel-dots li {
  position: relative;

  display: inline-block;

  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;

  cursor: pointer;
}

.carousel-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.carousel-dots li button:hover,
.carousel-dots li button:focus {
  outline: none;
}

.carousel-dots li button:hover:before,
.carousel-dots li button:focus:before {
  opacity: 1;
}

.carousel-dots li button:before {
  font-family: 'slick';
  font-size: 40px;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: '•';
  text-align: center;

  opacity: .25;
  color: black;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.carousel-dots li.carousel-dots-active button:before {
  opacity: .75;
  color: black;
}

.Carousel .carousel-initialized.scrolling .CustomArrow {
  display: none;
}

.avatar {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgba(24, 70, 109, 0.1);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  color: #18466d;
  font-weight: 700;
}
.avatar IMG {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  flex: 1 1 auto;
}
.ril-caption-content {
  position: relative;
}

.ril-toolbar-left {
  width: 50%;
  text-align: right;
}

.ril-toolbar-right {
  width: 50%;
  text-align: left;
}

.ril__outer {
  background-color: rgba(0, 0, 0, 0.85);
  outline: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  -ms-content-zooming: none;
  -ms-user-select: none;
  -ms-touch-select: none;
  touch-action: none;
}

.ril__outerClosing {
  opacity: 0;
}

.ril__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ril__image,
.ril__imagePrev,
.ril__imageNext {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: none;
  -ms-content-zooming: none;
  -ms-user-select: none;
  -ms-touch-select: none;
  touch-action: none;
}

.ril__imageDiscourager {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.ril__navButtons {
  border: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 34px;
  padding: 40px 30px;
  margin: auto;
  cursor: pointer;
  opacity: 0.7;
}

.ril__navButtons:hover {
  opacity: 1;
}

.ril__navButtons:active {
  opacity: 0.7;
}

.ril__navButtonPrev {
  left: 0;
  background: rgba(0, 0, 0, 0.2) url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjM0Ij48cGF0aCBkPSJtIDE5LDMgLTIsLTIgLTE2LDE2IDE2LDE2IDEsLTEgLTE1LC0xNSAxNSwtMTUgeiIgZmlsbD0iI0ZGRiIvPjwvc3ZnPg==") no-repeat center;
}

.ril__navButtonNext {
  right: 0;
  background: rgba(0, 0, 0, 0.2) url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjM0Ij48cGF0aCBkPSJtIDEsMyAyLC0yIDE2LDE2IC0xNiwxNiAtMSwtMSAxNSwtMTUgLTE1LC0xNSB6IiBmaWxsPSIjRkZGIi8+PC9zdmc+") no-repeat center;
}

.ril__downloadBlocker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
  background-size: cover;
}

.ril__caption,
.ril__toolbar {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}

.ril__caption {
  bottom: 0;
  max-height: 150px;
  overflow: auto;
}

.ril__captionContent {
  padding: 10px 20px;
  color: #fff;
}

.ril__toolbar {
  top: 0;
  height: 50px;
}

.ril__toolbarSide {
  height: 50px;
  margin: 0;
}

.ril__toolbarLeftSide {
  padding-left: 20px;
  padding-right: 0;
  flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ril__toolbarRightSide {
  padding-left: 0;
  padding-right: 20px;
  flex: 0 0 auto;
}

.ril__toolbarItem {
  display: inline-block;
  line-height: 50px;
  padding: 0;
  color: #fff;
  font-size: 120%;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ril__toolbarItemChild {
  vertical-align: middle;
}

.ril__builtinButton {
  width: 40px;
  height: 35px;
  cursor: pointer;
  border: none;
  opacity: 0.7;
}

.ril__builtinButton:hover {
  opacity: 1;
}

.ril__builtinButton:active {
  outline: none;
}

.ril__builtinButtonDisabled {
  cursor: default;
  opacity: 0.5;
}

.ril__builtinButtonDisabled:hover {
  opacity: 0.5;
}

.ril__closeButton {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIj48cGF0aCBkPSJtIDEsMyAxLjI1LC0xLjI1IDcuNSw3LjUgNy41LC03LjUgMS4yNSwxLjI1IC03LjUsNy41IDcuNSw3LjUgLTEuMjUsMS4yNSAtNy41LC03LjUgLTcuNSw3LjUgLTEuMjUsLTEuMjUgNy41LC03LjUgLTcuNSwtNy41IHoiIGZpbGw9IiNGRkYiLz48L3N2Zz4=") no-repeat center;
}

.ril__zoomInButton {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGcgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PHBhdGggZD0iTTEgMTlsNi02Ii8+PHBhdGggZD0iTTkgOGg2Ii8+PHBhdGggZD0iTTEyIDV2NiIvPjwvZz48Y2lyY2xlIGN4PSIxMiIgY3k9IjgiIHI9IjciIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9zdmc+") no-repeat center;
}

.ril__zoomOutButton {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+PGcgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCI+PHBhdGggZD0iTTEgMTlsNi02Ii8+PHBhdGggZD0iTTkgOGg2Ii8+PC9nPjxjaXJjbGUgY3g9IjEyIiBjeT0iOCIgcj0iNyIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=") no-repeat center;
}

.ril__outerAnimating {
  animation-name: closeWindow;
}

.ril__loadingCircle {
  width: 60px;
  height: 60px;
  position: relative;
}

.ril__loadingCirclePoint {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.ril__loadingCirclePoint::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 11%;
  height: 30%;
  background-color: #fff;
  border-radius: 30%;
  animation: pointFade 800ms infinite ease-in-out both;
}

.ril__loadingCirclePoint:nth-of-type(1) {
  transform: rotate(0deg);
}

.ril__loadingCirclePoint:nth-of-type(7) {
  transform: rotate(180deg);
}

.ril__loadingCirclePoint:nth-of-type(1)::before,
.ril__loadingCirclePoint:nth-of-type(7)::before {
  animation-delay: -800ms;
}

.ril__loadingCirclePoint:nth-of-type(2) {
  transform: rotate(30deg);
}

.ril__loadingCirclePoint:nth-of-type(8) {
  transform: rotate(210deg);
}

.ril__loadingCirclePoint:nth-of-type(2)::before,
.ril__loadingCirclePoint:nth-of-type(8)::before {
  animation-delay: -666ms;
}

.ril__loadingCirclePoint:nth-of-type(3) {
  transform: rotate(60deg);
}

.ril__loadingCirclePoint:nth-of-type(9) {
  transform: rotate(240deg);
}

.ril__loadingCirclePoint:nth-of-type(3)::before,
.ril__loadingCirclePoint:nth-of-type(9)::before {
  animation-delay: -533ms;
}

.ril__loadingCirclePoint:nth-of-type(4) {
  transform: rotate(90deg);
}

.ril__loadingCirclePoint:nth-of-type(10) {
  transform: rotate(270deg);
}

.ril__loadingCirclePoint:nth-of-type(4)::before,
.ril__loadingCirclePoint:nth-of-type(10)::before {
  animation-delay: -400ms;
}

.ril__loadingCirclePoint:nth-of-type(5) {
  transform: rotate(120deg);
}

.ril__loadingCirclePoint:nth-of-type(11) {
  transform: rotate(300deg);
}

.ril__loadingCirclePoint:nth-of-type(5)::before,
.ril__loadingCirclePoint:nth-of-type(11)::before {
  animation-delay: -266ms;
}

.ril__loadingCirclePoint:nth-of-type(6) {
  transform: rotate(150deg);
}

.ril__loadingCirclePoint:nth-of-type(12) {
  transform: rotate(330deg);
}

.ril__loadingCirclePoint:nth-of-type(6)::before,
.ril__loadingCirclePoint:nth-of-type(12)::before {
  animation-delay: -133ms;
}

.ril__loadingCirclePoint:nth-of-type(7) {
  transform: rotate(180deg);
}

.ril__loadingCirclePoint:nth-of-type(13) {
  transform: rotate(360deg);
}

.ril__loadingCirclePoint:nth-of-type(7)::before,
.ril__loadingCirclePoint:nth-of-type(13)::before {
  animation-delay: 0ms;
}

.ril__loadingContainer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ril__imagePrev .ril__loadingContainer,
.ril__imageNext .ril__loadingContainer {
  display: none;
}

.ril__errorContainer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ril__imagePrev .ril__errorContainer,
.ril__imageNext .ril__errorContainer {
  display: none;
}

.ril__loadingContainer__icon {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.ril-caption {
  text-align: center !important;
  display: block !important;
}
.button-icon {
  display: inline-block;
  border: none;
  cursor: pointer;
  margin: auto;
  background-color: transparent;
  white-space: nowrap;
  position: relative;
  transition: all 250ms ease-in-out 0ms;
  padding: 0;
}
.button-icon:hover {
  opacity: 0.8;
}
.button-icon-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.button-icon-main {
  flex: 0 0 auto;
  transition: all 250ms ease-in-out 0ms;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  position: relative;
}
.button-icon-main svg {
  float: left;
  backface-visibility: hidden;
}
.button-icon-main path, .button-icon-main circle, .button-icon-main line {
  stroke: currentColor;
  fill: currentColor;
}
.button-icon-main .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.button-icon-main .loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.button-icon-main .loader svg {
  width: 20px;
  height: 20px;
}
.button-icon .label {
  flex: 0 0 auto;
  line-height: 20px;
  margin-left: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.button-icon:focus .label {
  text-decoration: underline;
}
.button-icon.loading .icon {
  opacity: 0;
}
.button-icon.loading .loader {
  opacity: 1;
}
.button-icon.loading .loader svg {
  animation: animation-spin 1s linear infinite;
}
.button-icon.size-large .button-icon-main {
  width: 60px;
  height: 60px;
}
.button-icon.size-large svg {
  width: 20px;
  height: 20px;
}
.button-icon.size-large .label {
  font-size: 20px;
}
.button-icon.size-large .loader svg {
  width: 30px;
  height: 30px;
}
.button-icon.size-larger .button-icon-main {
  width: 60px;
  height: 60px;
}
.button-icon.size-larger svg {
  width: 25px;
  height: 25px;
}
.button-icon.size-larger .label {
  font-size: 20px;
}
.button-icon.size-larger .loader svg {
  width: 30px;
  height: 30px;
}
.button-icon.size-small .button-icon-main {
  width: 20px;
  height: 20px;
}
.button-icon.size-small svg {
  width: 10px;
  height: 10px;
}
.button-icon.size-small .label {
  font-size: 9px;
}
.button-icon.size-small .loader svg {
  width: 14px;
  height: 14px;
}
.button-icon.intent-default {
  color: rgb(51, 133.8, 204);
}
.button-icon.intent-default .button-icon-main {
  background-color: rgba(51, 133.8, 204, 0.1);
  color: rgb(51, 133.8, 204);
}
.button-icon.intent-default:focus .button-icon-main {
  box-shadow: 0 0 0 3px rgba(139, 167, 196, 0.5);
}
.button-icon.color-white {
  color: #fff;
}
.button-icon.color-white .button-icon-main {
  background-color: rgba(51, 133.8, 204, 0.1);
  color: #fff;
}
.button-icon.color-white:focus .button-icon-main {
  box-shadow: 0 0 0 3px rgba(139, 167, 196, 0.5);
}
.button-icon.intent-primary {
  color: rgb(51, 133.8, 204);
}
.button-icon.intent-primary .button-icon-main {
  background-color: rgb(51, 133.8, 204);
  color: #fff;
}
.button-icon.intent-primary:focus .button-icon-main {
  box-shadow: 0 0 0 3px rgba(51, 133.8, 204, 0.5);
}
.button-icon.intent-success {
  color: #4FADA6;
}
.button-icon.intent-success .button-icon-main {
  background-color: #4FADA6;
  color: #fff;
}
.button-icon.intent-success:focus .button-icon-main {
  box-shadow: 0 0 0 3px rgba(79, 173, 166, 0.5);
}
.button-icon.intent-danger {
  color: #CC3044;
}
.button-icon.intent-danger .button-icon-main {
  background-color: #CC3044;
  color: #fff;
}
.button-icon.intent-danger:focus .button-icon-main {
  box-shadow: 0 0 0 3px rgba(204, 48, 68, 0.5);
}
.button-icon.intent-link {
  color: rgb(51, 133.8, 204);
}
.button-icon.intent-link:focus .button-icon-main {
  box-shadow: 0 0 0 3px rgba(51, 133.8, 204, 0.2);
}
.button-icon.disabled {
  opacity: 0.5 !important;
  pointer-events: none;
  cursor: default;
}
.button-icon.animation {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}
.button-icon.animation.bounce {
  animation: bounce-30px 4s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  animation-delay: 2s;
}
@keyframes bounce-30px {
  0%, 10%, 25%, 40%, 50% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(0, 0, 0) scaleY(0.9);
  }
  20% {
    transform: translate3d(0, -30px, 0);
  }
  30% {
    transform: translate3d(0, -15px, 0);
  }
}
.button-icon.layout-icon-only .button-icon-main {
  background-color: transparent !important;
}
.button-icon.layout-icon-only .button-icon-main .icon {
  transform: none;
  left: 10%;
  right: 10%;
  top: 10%;
  bottom: 10%;
}
.button-icon.layout-icon-only .button-icon-main svg {
  width: 100%;
  height: 100%;
}
.button-icon.layout-icon-only .button-icon-main path {
  fill: currentColor !important;
}
.button-icon.layout-icon-only.intent-primary .button-icon-main {
  color: rgb(51, 133.8, 204) !important;
}
.button-icon.layout-icon-only.intent-success .button-icon-main {
  color: #4FADA6 !important;
}
.button-icon.layout-icon-only.intent-warning .button-icon-main {
  color: rgb(237.7875, 203.3625, 42.7125) !important;
}
.button-icon.layout-icon-only.intent-danger .button-icon-main {
  color: #CC3044 !important;
}
.button-icon.layout-icon-only.intent-active .button-icon-main {
  color: #58c3bb !important;
}
.button-icon.layout-icon-only.intent-neutral .button-icon-main {
  color: #aaa !important;
}
.button-icon.layout-icon-only.intent-pending .button-icon-main {
  color: cyan !important;
}
.rhap_container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: inherit;
  width: 100%;
  padding: 10px 15px;
  background-color: #fff;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}
.rhap_container:focus:not(:focus-visible) {
  outline: 0;
}
.rhap_container svg {
  vertical-align: initial;
}

.rhap_header {
  margin-bottom: 10px;
}

.rhap_footer {
  margin-top: 5px;
}

.rhap_main {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.rhap_stacked .rhap_controls-section {
  margin-top: 8px;
}

.rhap_horizontal {
  flex-direction: row;
}
.rhap_horizontal .rhap_controls-section {
  margin-left: 8px;
}

.rhap_horizontal-reverse {
  flex-direction: row-reverse;
}
.rhap_horizontal-reverse .rhap_controls-section {
  margin-right: 8px;
}

.rhap_stacked-reverse {
  flex-direction: column-reverse;
}
.rhap_stacked-reverse .rhap_controls-section {
  margin-bottom: 8px;
}

.rhap_progress-section {
  display: flex;
  flex: 3 1 auto;
  align-items: center;
}

.rhap_progress-container {
  display: flex;
  align-items: center;
  height: 20px;
  flex: 1 0 auto;
  align-self: center;
  margin: 0 calc(10px + 1%);
  cursor: pointer;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}
.rhap_progress-container:focus:not(:focus-visible) {
  outline: 0;
}

.rhap_time {
  color: #333;
  font-size: 16px;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.rhap_progress-bar {
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 5px;
  background-color: #dddddd;
  border-radius: 2px;
}

.rhap_progress-filled {
  height: 100%;
  position: absolute;
  z-index: 2;
  background-color: #868686;
  border-radius: 2px;
}

.rhap_progress-bar-show-download {
  background-color: rgba(221, 221, 221, 0.5);
}

.rhap_download-progress {
  height: 100%;
  position: absolute;
  z-index: 1;
  background-color: #dddddd;
  border-radius: 2px;
}

.rhap_progress-indicator {
  box-sizing: border-box;
  position: absolute;
  z-index: 3;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  top: -8px;
  background: #868686;
  border-radius: 50px;
  box-shadow: rgba(134, 134, 134, 0.5) 0 0 5px;
}

.rhap_controls-section {
  display: flex;
  flex: 1 1 auto;
  justify-content: space-between;
  align-items: center;
}

.rhap_additional-controls {
  display: flex;
  flex: 1 0 auto;
  align-items: center;
}

.rhap_repeat-button {
  font-size: 26px;
  width: 26px;
  height: 26px;
  color: #868686;
  margin-right: 6px;
}

.rhap_main-controls {
  flex: 0 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rhap_main-controls-button {
  margin: 0 3px;
  color: #868686;
  font-size: 35px;
  width: 35px;
  height: 35px;
}

.rhap_play-pause-button {
  font-size: 40px;
  width: 40px;
  height: 40px;
}

.rhap_volume-controls {
  display: flex;
  flex: 1 0 auto;
  justify-content: flex-end;
  align-items: center;
}

.rhap_volume-button {
  flex: 0 0 26px;
  font-size: 26px;
  width: 26px;
  height: 26px;
  color: #868686;
  margin-right: 6px;
}

.rhap_volume-container {
  display: flex;
  align-items: center;
  flex: 0 1 100px;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.rhap_volume-bar-area {
  display: flex;
  align-items: center;
  width: 100%;
  height: 14px;
  cursor: pointer;
}
.rhap_volume-bar-area:focus:not(:focus-visible) {
  outline: 0;
}

.rhap_volume-bar {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: 4px;
  background: #dddddd;
  border-radius: 2px;
}

.rhap_volume-indicator {
  box-sizing: border-box;
  position: absolute;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  left: 0;
  top: -4px;
  background: #868686;
  opacity: 0.9;
  border-radius: 50px;
  box-shadow: rgba(134, 134, 134, 0.5) 0 0 3px;
  cursor: pointer;
}
.rhap_volume-indicator:hover {
  opacity: 0.9;
}

.rhap_volume-filled {
  height: 100%;
  position: absolute;
  z-index: 2;
  background-color: #868686;
  border-radius: 2px;
}

/* Utils */
.rhap_button-clear {
  background-color: transparent;
  border: none;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.rhap_button-clear:hover {
  opacity: 0.9;
  transition-duration: 0.2s;
}
.rhap_button-clear:active {
  opacity: 0.95;
}
.rhap_button-clear:focus:not(:focus-visible) {
  outline: 0;
}

.nonidealstate {
  flex: 1 0 auto;
  flex-direction: column;
  text-align: center;
  min-height: 300px;
  justify-content: center;
  position: relative;
  margin: 20px 0 0 0;
  border-radius: 8px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}
.nonidealstate.inline {
  height: auto;
}
.nonidealstate-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
.nonidealstate-spacer {
  flex: 1 0 auto;
}
.nonidealstate-icon {
  flex: 0 0 auto;
  line-height: 0;
  margin-right: 0;
  z-index: 1;
}
.nonidealstate-icon svg, .nonidealstate-icon img {
  float: left;
}
.nonidealstate-content {
  line-height: 20px;
  margin-top: 40px;
  flex: 0 0 auto;
  z-index: 1;
  color: #8299B5;
}
.nonidealstate-title {
  font-weight: bold;
  font-size: 22px;
  line-height: 1;
  font-family: "Open Sans", sans-serif;
  color: #133857;
}
.nonidealstate-description {
  line-height: 24px;
  margin: 14px auto 0;
  font-size: 20px;
  max-width: 570px;
}
.nonidealstate.noshadows .nonidealstate-icon svg {
  filter: none !important;
}
.nonidealstate-bg {
  position: absolute;
  z-index: 0;
  margin: auto;
  transform: translateY(-6%);
}
.nonidealstate-bg svg {
  width: 100%;
  height: auto;
  min-width: 185px;
}
.nonidealstate-bg circle {
  fill: rgba(24, 70, 109, 0.1);
}
.nonidealstate-bg.intent-danger circle {
  fill: rgba(204, 48, 68, 0.2);
}
.nonidealstate-bg.intent-warning circle {
  fill: rgb(237.7875, 203.3625, 42.7125);
}
.nonidealstate-bg.intent-success circle {
  fill: #4FADA6;
}
.nonidealstate-addon {
  width: 100%;
  flex: 0 0 auto;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  display: flex;
  box-sizing: border-box;
}
.alice-carousel .animated {
  animation-fill-mode: both;
}

.alice-carousel .animated-out {
  z-index: 1;
}

.alice-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.alice-carousel {
  position: relative;
  width: 100%;
  margin: auto;
  direction: ltr;
}

.alice-carousel__wrapper {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  box-sizing: border-box;
  width: 100%;
  height: auto;
}

.alice-carousel__stage {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  transform-style: flat;
  -webkit-transform-style: flat;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.alice-carousel__stage-item {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  vertical-align: top;
  white-space: normal;
  line-height: 0;
}
.alice-carousel__stage-item * {
  line-height: initial;
}
.alice-carousel__stage-item.__hidden {
  opacity: 0;
  overflow: hidden;
}

.alice-carousel__prev-btn,
.alice-carousel__next-btn {
  display: inline-block;
  box-sizing: border-box;
  width: 50%;
  padding: 10px 5px;
}
.alice-carousel__prev-btn [data-area]::after,
.alice-carousel__next-btn [data-area]::after {
  position: relative;
  content: attr(data-area);
  text-transform: capitalize;
}

.alice-carousel__prev-btn {
  text-align: right;
}

.alice-carousel__next-btn {
  text-align: left;
}

.alice-carousel__prev-btn-item,
.alice-carousel__next-btn-item {
  display: inline-block;
  cursor: pointer;
  padding: 5px;
  margin: 0;
  color: #465798;
}
.alice-carousel__prev-btn-item:hover,
.alice-carousel__next-btn-item:hover {
  color: darkred;
}
.alice-carousel__prev-btn-item.__inactive,
.alice-carousel__next-btn-item.__inactive {
  opacity: 0.4;
  pointer-events: none;
}

.alice-carousel__play-btn {
  position: absolute;
  top: 30px;
  left: 20px;
  display: inline-block;
}
.alice-carousel__play-btn:hover {
  cursor: pointer;
}
.alice-carousel__play-btn-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 10px;
  border-radius: 50%;
  background-color: #fff;
}

.alice-carousel__play-btn-item {
  position: absolute;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border: 0;
  outline: none;
  background: transparent;
}
.alice-carousel__play-btn-item::before, .alice-carousel__play-btn-item::after {
  position: absolute;
  pointer-events: none;
  display: block;
  width: 0;
  height: 0;
  content: "";
  transition: all 0.4s linear;
  border-width: 8px 0 8px 15px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #465798;
}
.alice-carousel__play-btn-item::before {
  left: 5px;
  height: 14px;
}
.alice-carousel__play-btn-item::after {
  top: 7px;
  left: 18px;
}
.alice-carousel__play-btn-item.__pause::before, .alice-carousel__play-btn-item.__pause::after {
  height: 30px;
  border-width: 0 0 0 10px;
}
.alice-carousel__play-btn-item.__pause::after {
  top: 0;
  left: 18px;
}

.alice-carousel__dots {
  margin: 30px 3px 5px;
  padding: 0;
  list-style: none;
  text-align: center;
}
.alice-carousel__dots > li {
  display: inline-block;
}
.alice-carousel__dots-item:not(.__custom) {
  width: 8px;
  height: 8px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #e0e4fb;
}
.alice-carousel__dots-item:not(.__custom):not(:last-child) {
  margin-right: 20px;
}
.alice-carousel__dots-item:not(.__custom):hover, .alice-carousel__dots-item:not(.__custom).__active {
  background-color: #6e7ebc;
}

.alice-carousel__slide-info {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  padding: 5px 10px;
  color: #465798;
  border-radius: 5px;
  background-color: rgba(224, 228, 251, 0.6);
}
.alice-carousel__slide-info-item {
  vertical-align: middle;
  line-height: 0;
}
.rh5v-DefaultPlayer_component {
    position: relative;
    font-family: Helvetica;
    font-size: 11px;
    background-color: #000;
}

.rh5v-DefaultPlayer_video {
    width: 100%;
    height: 100%;
}

.rh5v-DefaultPlayer_controls {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 34px;
    display: flex;
    background-color: rgba(0,0,0,0.7);
    opacity: 0;
    transition: opacity 0.2s;
}

.rh5v-DefaultPlayer_seek {
    flex-grow: 1;
}

.rh5v-DefaultPlayer_component:hover .rh5v-DefaultPlayer_controls {
    opacity: 1;
}
.rh5v-Time_component {
    padding: 0 10px 0 10px;
    line-height: 35px;
    color: #fff;
}

.rh5v-Time_current {
    margin-right: 5px;
}

.rh5v-Time_duration {
    margin-left: 5px;
    color: #919191;
}
.rh5v-Seek_component {
    position: relative;
}

.rh5v-Seek_track {
    position: absolute;
    top: 50%;
    left: 5px;
    right: 5px;
    height: 4px;
    transform: translateY(-50%);
    background-color: #3e3e3e;
}

.rh5v-Seek_buffer,
.rh5v-Seek_fill,
.rh5v-Seek_input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.rh5v-Seek_buffer {
    background-color: #5a5a5a;
}

.rh5v-Seek_fill {
    background: #fff;
}

.rh5v-Seek_input {
    width: 100%;
    opacity: 0;
    cursor: pointer;
}
.rh5v-Volume_component {
    position: relative;
}

.rh5v-Volume_component:hover {
    background-color: #000;
}

.rh5v-Volume_button {
    width: 34px;
    height: 34px;
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    cursor: pointer;
}

.rh5v-Volume_button:focus {
    outline: 0;
}

.rh5v-Volume_icon {
    padding: 7px;
}

.rh5v-Volume_slider {
    display: none;
    position: absolute;
    right: 5px;
    bottom: 100%;
    left: 5px;
    height: 56px;
    background-color: #000;
}

.rh5v-Volume_component:hover .rh5v-Volume_slider {
    display: block;
}

.rh5v-Volume_track {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    background-color: #3e3e3e;
}

.rh5v-Volume_fill,
.rh5v-Volume_input {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.rh5v-Volume_fill {
    background-color: #fff;
}

.rh5v-Volume_input {
    padding: 0;
    margin: 0;
    opacity: 0;
    -webkit-appearance: slider-vertical;
    cursor: pointer;
}.rh5v-Captions_component {
    position: relative;
}

.rh5v-Captions_component:hover {
    background-color: #000;
}

.rh5v-Captions_button {
    width: 34px;
    height: 34px;
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    cursor: pointer;
}

.rh5v-Captions_button:focus {
    outline: 0;
}

.rh5v-Captions_icon {
    padding: 5px;
}

.rh5v-Captions_trackList {
    position: absolute;
    right: 0;
    bottom: 100%;
    display: none;
    background-color: rgba(0,0,0,0.7);
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
}

.rh5v-Captions_component:hover .rh5v-Captions_trackList {
    display: block;
}

.rh5v-Captions_trackItem {
    padding: 7px;
    cursor: pointer;
}

.rh5v-Captions_activeTrackItem,
.rh5v-Captions_trackItem:hover {
    background: #000;
}

.rh5v-Captions_activeTrackItem {
    text-decoration: underline;
}
.rh5v-PlayPause_component {}

.rh5v-PlayPause_component:hover {
    background-color: #000;
}

.rh5v-PlayPause_button {
    width: 34px;
    height: 34px;
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    cursor: pointer;
}

.rh5v-PlayPause_button:focus {
    outline: 0;
}

.rh5v-PlayPause_icon {
    padding: 5px;
}
.rh5v-Fullscreen_component {}

.rh5v-Fullscreen_component:hover {
    background-color: #000;
}

.rh5v-Fullscreen_button {
    width: 34px;
    height: 34px;
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    cursor: pointer;
}

.rh5v-Fullscreen_button:focus {
    outline: 0;
}

.rh5v-Fullscreen_icon {
    padding: 5px;
}
.rh5v-Overlay_component {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: #fff;
    text-align: center;
    cursor: pointer;
    background-color: rgba(0,0,0,0);
}

.rh5v-Overlay_inner {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translateY(-50%);
    margin-left: -30px;
    background-color: rgba(0,0,0,0.7);
    border-radius: 10px;
}

.rh5v-Overlay_icon {
    position: absolute;
    top: 50%;
    right: 0;
    left: 50%;
    margin-left: -20px;
    transform: translateY(-50%);
}

:root{--rpv-core__annotation--link-hover-background-color: rgba(255, 255, 0, 0.2);--rpv-core__annotation-popup-wrapper-background-color: #faf089;--rpv-core__annotation-popup-wrapper-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);--rpv-core__annotation-popup-content-border-top-color: #1a202c;--rpv-core__arrow-border-color: rgba(0, 0, 0, 0.3);--rpv-core__asking-password-color: #000;--rpv-core__asking-password-wrapper-background-color: #fff;--rpv-core__asking-password-wrapper-border-color: rgba(0, 0, 0, 0.3);--rpv-core__button-background-color: rgba(0, 0, 0, 0.3);--rpv-core__button-color: #000;--rpv-core__doc-error-background-color: #fff;--rpv-core__doc-error-text-background-color: #c02424;--rpv-core__doc-error-text-color: #fff;--rpv-core__doc-loading-background-color: #fff;--rpv-core__full-screen-target-background-color: #fff;--rpv-core__inner-page-background-color: #fff;--rpv-core__menu-divider-border-bottom-color: rgba(0, 0, 0, 0.3);--rpv-core__menu-item-color: #000;--rpv-core__menu-item--hover-background-color: rgba(0, 0, 0, 0.1);--rpv-core__menu-item--disabled-color: rgba(0, 0, 0, 0.3);--rpv-core__minimal-button-color: #000;--rpv-core__minimal-button--hover-background-color: rgba(0, 0, 0, 0.1);--rpv-core__minimal-button--disabled-color: rgba(0, 0, 0, 0.3);--rpv-core__minimal-button--selected-background-color: rgba(0, 0, 0, 0.1);--rpv-core__modal-body-background-color: #fff;--rpv-core__modal-body-border-color: rgba(0, 0, 0, 0.3);--rpv-core__modal-overlay-background-color: rgba(0, 0, 0, 0.5);--rpv-core__page-layer-box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);--rpv-core__popover-body-background-color: #fff;--rpv-core__popover-body-border-color: rgba(0, 0, 0, 0.3);--rpv-core__popover-body-color: #000;--rpv-core__primary-button-background-color: #2566e8;--rpv-core__primary-button-color: #fff;--rpv-core__progress-bar-background-color: rgba(0, 0, 0, 0.1);--rpv-core__progress-bar-progress-background-color: #2566e8;--rpv-core__progress-bar-progress-color: #fff;--rpv-core__separator-border-bottom-color: rgba(0, 0, 0, 0.3);--rpv-core__spinner-border-color: rgba(0, 0, 0, 0.4);--rpv-core__spinner-border-transparent-color: transparent;--rpv-core__splitter-background-color: transparent;--rpv-core__splitter--hover-background-color: rgba(0, 0, 0, 0.2);--rpv-core__text-layer-text--selection-background-color: rgb(0, 0, 255, 1);--rpv-core__text-layer-text--selection-color: transparent;--rpv-core__textbox-background-color: #fff;--rpv-core__textbox-border-color: rgba(0, 0, 0, 0.2);--rpv-core__textbox-color: #000;--rpv-core__tooltip-body-background-color: #000;--rpv-core__tooltip-body-color: #fff}.rpv-core__viewer--dark{--rpv-core__asking-password-background-color: #363636;--rpv-core__asking-password-color: #fff;--rpv-core__asking-password-wrapper-border-color: #191919;--rpv-core__asking-password-wrapper-background-color: #191919;--rpv-core__button-background-color: #171717;--rpv-core__button-color: #fff;--rpv-core__doc-error-background-color: #191919;--rpv-core__doc-error-text-background-color: #c02323;--rpv-core__doc-error-text-color: #fff;--rpv-core__doc-loading-background-color: #191919;--rpv-core__full-screen-target-background-color: #1a1a1a;--rpv-core__inner-page-background-color: #1a1a1a;--rpv-core__menu-divider-border-bottom-color: #000;--rpv-core__menu-item-color: #fff;--rpv-core__menu-item--hover-background-color: #2566e8;--rpv-core__menu-item--disabled-color: #5e5e5e;--rpv-core__minimal-button-color: #fff;--rpv-core__minimal-button--disabled-color: #5e5e5e;--rpv-core__minimal-button--hover-background-color: #191919;--rpv-core__minimal-button--selected-background-color: #1657bb;--rpv-core__modal-body-background-color: #363636;--rpv-core__primary-button-background-color: #2566e8;--rpv-core__popover-body-background-color: #363636;--rpv-core__popover-body-color: #fff;--rpv-core__progress-bar-background-color: #000;--rpv-core__separator-border-bottom-color: #000;--rpv-core__spinner-border-color: #fff;--rpv-core__splitter-background-color: #1a1a1a;--rpv-core__splitter--hover-background-color: #2566e8;--rpv-core__textbox-background-color: #121212;--rpv-core__textbox-border-color: #121212;--rpv-core__textbox-color: #fff;--rpv-core__tooltip-body-background-color: #414141;--rpv-core__tooltip-body-color: #fff}.rpv-core__annotation{position:absolute}.rpv-core__annotation-layer{z-index:1}.rpv-core__arrow{border-bottom:1px solid var(--rpv-core__arrow-border-color);border-left-color:var(--rpv-core__arrow-border-color);border-right:1px solid var(--rpv-core__arrow-border-color);border-top-color:var(--rpv-core__arrow-border-color);height:10px;position:absolute;width:10px;z-index:0}.rpv-core__arrow--tl{bottom:0;left:0;transform:translate(50%, 50%) rotate(45deg)}.rpv-core__arrow--tc{bottom:0;left:50%;transform:translate(-50%, 50%) rotate(45deg)}.rpv-core__arrow--tr{bottom:0;right:0;transform:translate(-50%, 50%) rotate(45deg)}.rpv-core__arrow--rt{left:0;top:0;transform:translate(-50%, 50%) rotate(135deg)}.rpv-core__arrow--rc{left:0;top:50%;transform:translate(-50%, -50%) rotate(135deg)}.rpv-core__arrow--rb{bottom:0;left:0;transform:translate(-50%, -50%) rotate(135deg)}.rpv-core__arrow--bl{left:0;top:0;transform:translate(50%, -50%) rotate(225deg)}.rpv-core__arrow--bc{left:50%;top:0;transform:translate(-50%, -50%) rotate(225deg)}.rpv-core__arrow--br{right:0;top:0;transform:translate(-50%, -50%) rotate(225deg)}.rpv-core__arrow--lt{right:0;top:0;transform:translate(50%, 50%) rotate(315deg)}.rpv-core__arrow--lc{right:0;top:50%;transform:translate(50%, -50%) rotate(315deg)}.rpv-core__arrow--lb{bottom:0;right:0;transform:translate(50%, -50%) rotate(315deg)}.rpv-core__asking-password{background-color:var(--rpv-core__asking-password-background-color);border-radius:.25rem;color:var(--rpv-core__asking-password-color);padding:2rem}.rpv-core__asking-password--rtl{direction:rtl}.rpv-core__asking-password-wrapper{align-items:center;background-color:var(--rpv-core__asking-password-wrapper-background-color);border:1px solid var(--rpv-core__asking-password-wrapper-border-color);display:flex;height:100%;justify-content:center;width:100%}.rpv-core__asking-password-message{margin:.5rem 0}.rpv-core__asking-password-body{align-items:center;display:flex;justify-content:center}.rpv-core__asking-password-input{width:15rem}.rpv-core__asking-password-input--ltr{margin-right:.5rem}.rpv-core__asking-password-input--rtl{margin-left:.5rem}.rpv-core__button{background-color:var(--rpv-core__button-background-color);border:none;border-radius:.25rem;color:var(--rpv-core__button-color);cursor:pointer;height:2rem;padding:0 1rem}.rpv-core__button--rtl{direction:rtl}.rpv-core__canvas-layer{direction:ltr;left:0;position:absolute;overflow:hidden;top:0}.rpv-core__doc-error{align-items:center;background-color:var(--rpv-core__doc-error-background-color);display:flex;justify-content:center;height:100%}.rpv-core__doc-error--rtl{direction:rtl}.rpv-core__doc-error-text{background-color:var(--rpv-core__doc-error-text-background-color);border-radius:.25rem;color:var(--rpv-core__doc-error-text-color);line-height:1.5;max-width:50%;padding:.5rem}.rpv-core__doc-loading{background-color:var(--rpv-core__doc-loading-background-color);align-items:center;display:flex;justify-content:center;height:100%;width:100%;min-height:inherit}.rpv-core__doc-loading--rtl{direction:rtl}.rpv-core__icon{fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1;text-align:center}.rpv-core__icon--rtl{transform:scale(-1, 1)}.rpv-core__inner-container{min-height:inherit}.rpv-core__inner-pages{overflow:auto}.rpv-core__inner-pages--rtl{direction:rtl}.rpv-core__inner-pages--single{overflow:hidden}.rpv-core__inner-page-container--single{overflow:auto}.rpv-core__inner-page{background-color:var(--rpv-core__inner-page-background-color)}.rpv-core__inner-page--single{display:flex;align-items:center;justify-content:center}.rpv-core__inner-page--dual-even{display:flex;align-items:center;justify-content:flex-end}.rpv-core__inner-page--dual-odd{display:flex;align-items:center;justify-content:flex-start}.rpv-core__inner-page--dual-cover{display:flex;align-items:center;justify-content:center}.rpv-core__inner-page--dual-cover-odd{display:flex;align-items:center;justify-content:flex-end}.rpv-core__inner-page--dual-cover-even{display:flex;align-items:center;justify-content:flex-start}.rpv-core__annotation--link a{height:100%;left:0;position:absolute;top:0;width:100%}.rpv-core__annotation--link a:hover{background-color:var(--rpv-core__annotation--link-hover-background-color)}.rpv-core__menu{display:flex;flex-direction:column}.rpv-core__menu--rtl{direction:rtl;text-align:right}.rpv-core__menu-divider{border-bottom:1px solid var(--rpv-core__menu-divider-border-bottom-color);margin:.25rem 0}.rpv-core__menu-item{align-items:center;background-color:rgba(0,0,0,0);color:var(--rpv-core__menu-item-color);border:none;cursor:pointer;display:flex;justify-content:center;padding:.25rem 0;width:100%}.rpv-core__menu-item:focus{background-color:var(--rpv-core__menu-item--hover-background-color);outline:0}.rpv-core__menu-item:hover{background-color:var(--rpv-core__menu-item--hover-background-color)}.rpv-core__menu-item-icon{align-items:center;display:flex}.rpv-core__menu-item-icon--ltr{padding-left:1rem;padding-right:.5rem}.rpv-core__menu-item-icon--rtl{padding-left:.5rem;padding-right:1rem}.rpv-core__menu-item-label{flex-grow:1;flex-shrink:1;white-space:nowrap}.rpv-core__menu-item-label--ltr{padding-right:2rem}.rpv-core__menu-item-label--rtl{padding-left:2rem}.rpv-core__menu-item-check--ltr{padding-right:1rem}.rpv-core__menu-item-check--rtl{padding-left:1rem}.rpv-core__menu-item--disabled{color:var(--rpv-core__menu-item--disabled-color)}.rpv-core__menu-item--disabled:hover{background-color:rgba(0,0,0,0)}.rpv-core__menu-item--ltr{text-align:left}.rpv-core__menu-item--rtl{direction:rtl;text-align:right}.rpv-core__minimal-button{background-color:rgba(0,0,0,0);border:none;border-radius:.25rem;color:var(--rpv-core__minimal-button-color);cursor:pointer;height:2rem;padding:0 .5rem}.rpv-core__minimal-button:hover{background-color:var(--rpv-core__minimal-button--hover-background-color)}.rpv-core__minimal-button--disabled{color:var(--rpv-core__minimal-button--disabled-color)}.rpv-core__minimal-button--rtl{direction:rtl}.rpv-core__minimal-button--selected{background-color:var(--rpv-core__minimal-button--selected-background-color)}.rpv-core__modal-body{background-color:var(--rpv-core__modal-body-background-color);border:1px solid var(--rpv-core__modal-body-border-color);border-radius:.25rem;margin:1rem;max-width:32rem;overflow:auto}.rpv-core__modal-body--rtl{direction:rtl}.rpv-core__modal-overlay{background-color:var(--rpv-core__modal-overlay-background-color);bottom:0;left:0;position:fixed;right:0;top:0;z-index:9999;align-items:center;display:flex;justify-content:center}.rpv-core__page-layer{align-items:center;display:flex;justify-content:center;overflow:visible;position:relative}.rpv-core__page-layer::after{content:"";position:absolute;bottom:.25rem;left:.25rem;right:.25rem;top:.25rem;box-shadow:var(--rpv-core__page-layer-box-shadow)}.rpv-core__page-layer--single{margin:0 auto}.rpv-core__page-size-calculator{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.rpv-core__popover-body{background-color:var(--rpv-core__popover-body-background-color);border:1px solid var(--rpv-core__popover-body-border-color);border-radius:.25rem;color:var(--rpv-core__popover-body-color);left:0;padding:.5rem 0;position:absolute;top:-9999px;z-index:9999}.rpv-core__popover-body-arrow{background-color:var(--rpv-core__popover-body-background-color)}.rpv-core__popover-body--rtl{direction:rtl}.rpv-core__popover-overlay{bottom:0;left:0;position:fixed;right:0;top:0}.rpv-core__annotation-popup-wrapper{background-color:var(--rpv-core__annotation-popup-wrapper-background-color);box-shadow:var(--rpv-core__annotation-popup-wrapper-box-shadow);font-size:.75rem;padding:.25rem;word-break:break-word}.rpv-core__annotation-popup-wrapper--rtl{direction:rtl}.rpv-core__annotation-popup-title{font-weight:600;margin-bottom:.25rem}.rpv-core__annotation-popup-date{font-size:.5rem}.rpv-core__annotation-popup-content{border-top:1px solid var(--rpv-core__annotation-popup-content-border-top-color);padding:.25rem;max-height:16rem;overflow:auto}.rpv-core__primary-button{background-color:var(--rpv-core__primary-button-background-color);border:none;border-radius:.25rem;color:var(--rpv-core__primary-button-color);cursor:pointer;height:2rem;padding:0 1rem}.rpv-core__primary-button--rtl{direction:rtl}.rpv-core__progress-bar{background-color:var(--rpv-core__progress-bar-background-color);border-radius:9999px;padding:.125rem}.rpv-core__progress-bar--rtl{direction:rtl}.rpv-core__progress-bar-progress{align-items:center;background-color:var(--rpv-core__progress-bar-progress-background-color);border-radius:9999px;color:var(--rpv-core__progress-bar-progress-color);display:flex;font-size:.75rem;justify-content:center;height:.75rem}.rpv-core__separator{border-bottom:1px solid var(--rpv-core__separator-border-bottom-color)}.rpv-core__spinner{border-bottom:2px solid var(--rpv-core__spinner-border-transparent-color);border-left:2px solid var(--rpv-core__spinner-border-transparent-color);border-right:2px solid var(--rpv-core__spinner-border-color);border-top:2px solid var(--rpv-core__spinner-border-color);border-radius:9999px}.rpv-core__spinner--animating{animation-duration:.4s;animation-name:rpv-core__spinner-transform;animation-iteration-count:infinite;animation-timing-function:linear}@keyframes rpv-core__spinner-transform{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.rpv-core__splitter{background-color:var(--rpv-core__splitter-background-color);cursor:ew-resize;height:100%;width:.25rem}.rpv-core__splitter:hover,.rpv-core__splitter--resizing{cursor:col-resize;background-color:var(--rpv-core__splitter--hover-background-color)}.rpv-core__splitter-body--resizing{cursor:col-resize}.rpv-core__splitter-sibling--resizing{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.rpv-core__textbox{background-color:var(--rpv-core__textbox-background-color);border:1px solid var(--rpv-core__textbox-border-color);box-sizing:border-box;border-radius:.25rem;color:var(--rpv-core__textbox-color);padding:0 .5rem;height:2rem;width:100%}.rpv-core__textbox--rtl{direction:rtl}.rpv-core__text-layer{left:0;position:absolute;top:0;height:100%;width:100%;opacity:.2;line-height:1;z-index:1}.rpv-core__text-layer span::-moz-selection{background-color:var(--rpv-core__text-layer-text--selection-background-color);color:var(--rpv-core__text-layer-text--selection-color)}.rpv-core__text-layer span::selection{background-color:var(--rpv-core__text-layer-text--selection-background-color);color:var(--rpv-core__text-layer-text--selection-color)}.rpv-core__text-layer br::-moz-selection{color:rgba(0,0,0,0)}.rpv-core__text-layer br::selection{color:rgba(0,0,0,0)}.rpv-core__text-layer-text{color:rgba(0,0,0,0);cursor:text;position:absolute;transform-origin:0% 0%;white-space:pre}.rpv-core__tooltip-body{background-color:var(--rpv-core__tooltip-body-background-color);border-radius:.25rem;color:var(--rpv-core__tooltip-body-color);left:0;max-width:20rem;position:absolute;text-align:center;top:-9999px;z-index:9999}.rpv-core__tooltip-body--rtl{direction:rtl}.rpv-core__tooltip-body-arrow{background-color:var(--rpv-core__tooltip-body-background-color)}.rpv-core__tooltip-body-content{padding:.5rem}.rpv-core__display--block{display:block}.rpv-core__display--hidden{display:none}@media(min-width: 640px){.rpv-core__display--hidden-small{display:none}.rpv-core__display--block-small{display:block}}@media(min-width: 768px){.rpv-core__display--hidden-medium{display:none}.rpv-core__display--block-medium{display:block}}@media(min-width: 1024px){.rpv-core__display--hidden-large{display:none}.rpv-core__display--block-large{display:block}}.rpv-core__viewer{min-height:inherit}

:root{--rpv-attachment__item--hover-background-color: rgba(0, 0, 0, 0.1);--rpv-attachment__item-color: #000}.rpv-core__viewer--dark{--rpv-attachment__item--hover-background-color: #2566e8;--rpv-attachment__item-color: #fff}.rpv-attachment__empty{height:100%;overflow:auto;padding:.5rem 0;text-align:center;width:100%}.rpv-attachment__empty--rtl{direction:rtl}.rpv-attachment__list{display:flex;height:100%;flex-direction:column;overflow:auto;padding:.5rem 0;width:100%}.rpv-attachment__list--rtl{direction:rtl}.rpv-attachment__item{align-items:center;background-color:rgba(0,0,0,0);border:none;color:var(--rpv-attachment__item-color);cursor:pointer;display:flex;padding:.5rem;text-align:left;width:100%}.rpv-attachment__item:focus{background-color:var(--rpv-attachment__item--hover-background-color);outline:0}.rpv-attachment__item:hover{background-color:var(--rpv-attachment__item--hover-background-color)}.rpv-attachment__loader{align-items:center;display:flex;justify-content:center;height:100%;width:100%}:root{--rpv-bookmark__item--hover-background-color: rgba(0, 0, 0, 0.1);--rpv-bookmark__item-color: #000}.rpv-core__viewer--dark{--rpv-bookmark__item--hover-background-color: #2566e8;--rpv-bookmark__item-color: #fff}.rpv-bookmark__item{align-items:center;color:var(--rpv-bookmark__item-color);cursor:pointer;display:flex;padding-bottom:.25rem;padding-right:.25rem;padding-top:.25rem}.rpv-bookmark__item:focus{background-color:var(--rpv-bookmark__item--hover-background-color);outline:0}.rpv-bookmark__item:hover{background-color:var(--rpv-bookmark__item--hover-background-color)}.rpv-bookmark__toggle{align-items:center;display:flex;height:1rem;margin-right:.25rem;width:1rem}.rpv-bookmark__title{flex-grow:1;flex-shrink:1;text-decoration:none}.rpv-bookmark__list{list-style-type:none;overflow:auto;margin:0;padding:0}.rpv-bookmark__loader{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.rpv-bookmark__empty{height:100%;overflow:auto;padding:.5rem 0;text-align:center;width:100%}.rpv-bookmark__empty--rtl{direction:rtl}.rpv-bookmark__container{height:100%;overflow:auto;padding:.5rem 0;width:100%}.rpv-bookmark__container--rtl{direction:rtl}:root{--rpv-core__annotation--link-hover-background-color: rgba(255, 255, 0, 0.2);--rpv-core__annotation-popup-wrapper-background-color: #faf089;--rpv-core__annotation-popup-wrapper-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);--rpv-core__annotation-popup-content-border-top-color: #1a202c;--rpv-core__arrow-border-color: rgba(0, 0, 0, 0.3);--rpv-core__asking-password-color: #000;--rpv-core__asking-password-wrapper-background-color: #fff;--rpv-core__asking-password-wrapper-border-color: rgba(0, 0, 0, 0.3);--rpv-core__button-background-color: rgba(0, 0, 0, 0.3);--rpv-core__button-color: #000;--rpv-core__doc-error-background-color: #fff;--rpv-core__doc-error-text-background-color: #c02424;--rpv-core__doc-error-text-color: #fff;--rpv-core__doc-loading-background-color: #fff;--rpv-core__full-screen-target-background-color: #fff;--rpv-core__inner-page-background-color: #fff;--rpv-core__menu-divider-border-bottom-color: rgba(0, 0, 0, 0.3);--rpv-core__menu-item-color: #000;--rpv-core__menu-item--hover-background-color: rgba(0, 0, 0, 0.1);--rpv-core__menu-item--disabled-color: rgba(0, 0, 0, 0.3);--rpv-core__minimal-button-color: #000;--rpv-core__minimal-button--hover-background-color: rgba(0, 0, 0, 0.1);--rpv-core__minimal-button--disabled-color: rgba(0, 0, 0, 0.3);--rpv-core__minimal-button--selected-background-color: rgba(0, 0, 0, 0.1);--rpv-core__modal-body-background-color: #fff;--rpv-core__modal-body-border-color: rgba(0, 0, 0, 0.3);--rpv-core__modal-overlay-background-color: rgba(0, 0, 0, 0.5);--rpv-core__page-layer-box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);--rpv-core__popover-body-background-color: #fff;--rpv-core__popover-body-border-color: rgba(0, 0, 0, 0.3);--rpv-core__popover-body-color: #000;--rpv-core__primary-button-background-color: #2566e8;--rpv-core__primary-button-color: #fff;--rpv-core__progress-bar-background-color: rgba(0, 0, 0, 0.1);--rpv-core__progress-bar-progress-background-color: #2566e8;--rpv-core__progress-bar-progress-color: #fff;--rpv-core__separator-border-bottom-color: rgba(0, 0, 0, 0.3);--rpv-core__spinner-border-color: rgba(0, 0, 0, 0.4);--rpv-core__spinner-border-transparent-color: transparent;--rpv-core__splitter-background-color: transparent;--rpv-core__splitter--hover-background-color: rgba(0, 0, 0, 0.2);--rpv-core__text-layer-text--selection-background-color: rgb(0, 0, 255, 1);--rpv-core__text-layer-text--selection-color: transparent;--rpv-core__textbox-background-color: #fff;--rpv-core__textbox-border-color: rgba(0, 0, 0, 0.2);--rpv-core__textbox-color: #000;--rpv-core__tooltip-body-background-color: #000;--rpv-core__tooltip-body-color: #fff}.rpv-core__viewer--dark{--rpv-core__asking-password-background-color: #363636;--rpv-core__asking-password-color: #fff;--rpv-core__asking-password-wrapper-border-color: #191919;--rpv-core__asking-password-wrapper-background-color: #191919;--rpv-core__button-background-color: #171717;--rpv-core__button-color: #fff;--rpv-core__doc-error-background-color: #191919;--rpv-core__doc-error-text-background-color: #c02323;--rpv-core__doc-error-text-color: #fff;--rpv-core__doc-loading-background-color: #191919;--rpv-core__full-screen-target-background-color: #1a1a1a;--rpv-core__inner-page-background-color: #1a1a1a;--rpv-core__menu-divider-border-bottom-color: #000;--rpv-core__menu-item-color: #fff;--rpv-core__menu-item--hover-background-color: #2566e8;--rpv-core__menu-item--disabled-color: #5e5e5e;--rpv-core__minimal-button-color: #fff;--rpv-core__minimal-button--disabled-color: #5e5e5e;--rpv-core__minimal-button--hover-background-color: #191919;--rpv-core__minimal-button--selected-background-color: #1657bb;--rpv-core__modal-body-background-color: #363636;--rpv-core__primary-button-background-color: #2566e8;--rpv-core__popover-body-background-color: #363636;--rpv-core__popover-body-color: #fff;--rpv-core__progress-bar-background-color: #000;--rpv-core__separator-border-bottom-color: #000;--rpv-core__spinner-border-color: #fff;--rpv-core__splitter-background-color: #1a1a1a;--rpv-core__splitter--hover-background-color: #2566e8;--rpv-core__textbox-background-color: #121212;--rpv-core__textbox-border-color: #121212;--rpv-core__textbox-color: #fff;--rpv-core__tooltip-body-background-color: #414141;--rpv-core__tooltip-body-color: #fff}.rpv-core__annotation{position:absolute}.rpv-core__annotation-layer{z-index:1}.rpv-core__arrow{border-bottom:1px solid var(--rpv-core__arrow-border-color);border-left-color:var(--rpv-core__arrow-border-color);border-right:1px solid var(--rpv-core__arrow-border-color);border-top-color:var(--rpv-core__arrow-border-color);height:10px;position:absolute;width:10px;z-index:0}.rpv-core__arrow--tl{bottom:0;left:0;transform:translate(50%, 50%) rotate(45deg)}.rpv-core__arrow--tc{bottom:0;left:50%;transform:translate(-50%, 50%) rotate(45deg)}.rpv-core__arrow--tr{bottom:0;right:0;transform:translate(-50%, 50%) rotate(45deg)}.rpv-core__arrow--rt{left:0;top:0;transform:translate(-50%, 50%) rotate(135deg)}.rpv-core__arrow--rc{left:0;top:50%;transform:translate(-50%, -50%) rotate(135deg)}.rpv-core__arrow--rb{bottom:0;left:0;transform:translate(-50%, -50%) rotate(135deg)}.rpv-core__arrow--bl{left:0;top:0;transform:translate(50%, -50%) rotate(225deg)}.rpv-core__arrow--bc{left:50%;top:0;transform:translate(-50%, -50%) rotate(225deg)}.rpv-core__arrow--br{right:0;top:0;transform:translate(-50%, -50%) rotate(225deg)}.rpv-core__arrow--lt{right:0;top:0;transform:translate(50%, 50%) rotate(315deg)}.rpv-core__arrow--lc{right:0;top:50%;transform:translate(50%, -50%) rotate(315deg)}.rpv-core__arrow--lb{bottom:0;right:0;transform:translate(50%, -50%) rotate(315deg)}.rpv-core__asking-password{background-color:var(--rpv-core__asking-password-background-color);border-radius:.25rem;color:var(--rpv-core__asking-password-color);padding:2rem}.rpv-core__asking-password--rtl{direction:rtl}.rpv-core__asking-password-wrapper{align-items:center;background-color:var(--rpv-core__asking-password-wrapper-background-color);border:1px solid var(--rpv-core__asking-password-wrapper-border-color);display:flex;height:100%;justify-content:center;width:100%}.rpv-core__asking-password-message{margin:.5rem 0}.rpv-core__asking-password-body{align-items:center;display:flex;justify-content:center}.rpv-core__asking-password-input{width:15rem}.rpv-core__asking-password-input--ltr{margin-right:.5rem}.rpv-core__asking-password-input--rtl{margin-left:.5rem}.rpv-core__button{background-color:var(--rpv-core__button-background-color);border:none;border-radius:.25rem;color:var(--rpv-core__button-color);cursor:pointer;height:2rem;padding:0 1rem}.rpv-core__button--rtl{direction:rtl}.rpv-core__canvas-layer{direction:ltr;left:0;position:absolute;overflow:hidden;top:0}.rpv-core__doc-error{align-items:center;background-color:var(--rpv-core__doc-error-background-color);display:flex;justify-content:center;height:100%}.rpv-core__doc-error--rtl{direction:rtl}.rpv-core__doc-error-text{background-color:var(--rpv-core__doc-error-text-background-color);border-radius:.25rem;color:var(--rpv-core__doc-error-text-color);line-height:1.5;max-width:50%;padding:.5rem}.rpv-core__doc-loading{background-color:var(--rpv-core__doc-loading-background-color);align-items:center;display:flex;justify-content:center;height:100%;width:100%;min-height:inherit}.rpv-core__doc-loading--rtl{direction:rtl}.rpv-core__icon{fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1;text-align:center}.rpv-core__icon--rtl{transform:scale(-1, 1)}.rpv-core__inner-container{min-height:inherit}.rpv-core__inner-pages{overflow:auto}.rpv-core__inner-pages--rtl{direction:rtl}.rpv-core__inner-pages--single{overflow:hidden}.rpv-core__inner-page-container--single{overflow:auto}.rpv-core__inner-page{background-color:var(--rpv-core__inner-page-background-color)}.rpv-core__inner-page--single{display:flex;align-items:center;justify-content:center}.rpv-core__inner-page--dual-even{display:flex;align-items:center;justify-content:flex-end}.rpv-core__inner-page--dual-odd{display:flex;align-items:center;justify-content:flex-start}.rpv-core__inner-page--dual-cover{display:flex;align-items:center;justify-content:center}.rpv-core__inner-page--dual-cover-odd{display:flex;align-items:center;justify-content:flex-end}.rpv-core__inner-page--dual-cover-even{display:flex;align-items:center;justify-content:flex-start}.rpv-core__annotation--link a{height:100%;left:0;position:absolute;top:0;width:100%}.rpv-core__annotation--link a:hover{background-color:var(--rpv-core__annotation--link-hover-background-color)}.rpv-core__menu{display:flex;flex-direction:column}.rpv-core__menu--rtl{direction:rtl;text-align:right}.rpv-core__menu-divider{border-bottom:1px solid var(--rpv-core__menu-divider-border-bottom-color);margin:.25rem 0}.rpv-core__menu-item{align-items:center;background-color:rgba(0,0,0,0);color:var(--rpv-core__menu-item-color);border:none;cursor:pointer;display:flex;justify-content:center;padding:.25rem 0;width:100%}.rpv-core__menu-item:focus{background-color:var(--rpv-core__menu-item--hover-background-color);outline:0}.rpv-core__menu-item:hover{background-color:var(--rpv-core__menu-item--hover-background-color)}.rpv-core__menu-item-icon{align-items:center;display:flex}.rpv-core__menu-item-icon--ltr{padding-left:1rem;padding-right:.5rem}.rpv-core__menu-item-icon--rtl{padding-left:.5rem;padding-right:1rem}.rpv-core__menu-item-label{flex-grow:1;flex-shrink:1;white-space:nowrap}.rpv-core__menu-item-label--ltr{padding-right:2rem}.rpv-core__menu-item-label--rtl{padding-left:2rem}.rpv-core__menu-item-check--ltr{padding-right:1rem}.rpv-core__menu-item-check--rtl{padding-left:1rem}.rpv-core__menu-item--disabled{color:var(--rpv-core__menu-item--disabled-color)}.rpv-core__menu-item--disabled:hover{background-color:rgba(0,0,0,0)}.rpv-core__menu-item--ltr{text-align:left}.rpv-core__menu-item--rtl{direction:rtl;text-align:right}.rpv-core__minimal-button{background-color:rgba(0,0,0,0);border:none;border-radius:.25rem;color:var(--rpv-core__minimal-button-color);cursor:pointer;height:2rem;padding:0 .5rem}.rpv-core__minimal-button:hover{background-color:var(--rpv-core__minimal-button--hover-background-color)}.rpv-core__minimal-button--disabled{color:var(--rpv-core__minimal-button--disabled-color)}.rpv-core__minimal-button--rtl{direction:rtl}.rpv-core__minimal-button--selected{background-color:var(--rpv-core__minimal-button--selected-background-color)}.rpv-core__modal-body{background-color:var(--rpv-core__modal-body-background-color);border:1px solid var(--rpv-core__modal-body-border-color);border-radius:.25rem;margin:1rem;max-width:32rem;overflow:auto}.rpv-core__modal-body--rtl{direction:rtl}.rpv-core__modal-overlay{background-color:var(--rpv-core__modal-overlay-background-color);bottom:0;left:0;position:fixed;right:0;top:0;z-index:9999;align-items:center;display:flex;justify-content:center}.rpv-core__page-layer{align-items:center;display:flex;justify-content:center;overflow:visible;position:relative}.rpv-core__page-layer::after{content:"";position:absolute;bottom:.25rem;left:.25rem;right:.25rem;top:.25rem;box-shadow:var(--rpv-core__page-layer-box-shadow)}.rpv-core__page-layer--single{margin:0 auto}.rpv-core__page-size-calculator{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.rpv-core__popover-body{background-color:var(--rpv-core__popover-body-background-color);border:1px solid var(--rpv-core__popover-body-border-color);border-radius:.25rem;color:var(--rpv-core__popover-body-color);left:0;padding:.5rem 0;position:absolute;top:-9999px;z-index:9999}.rpv-core__popover-body-arrow{background-color:var(--rpv-core__popover-body-background-color)}.rpv-core__popover-body--rtl{direction:rtl}.rpv-core__popover-overlay{bottom:0;left:0;position:fixed;right:0;top:0}.rpv-core__annotation-popup-wrapper{background-color:var(--rpv-core__annotation-popup-wrapper-background-color);box-shadow:var(--rpv-core__annotation-popup-wrapper-box-shadow);font-size:.75rem;padding:.25rem;word-break:break-word}.rpv-core__annotation-popup-wrapper--rtl{direction:rtl}.rpv-core__annotation-popup-title{font-weight:600;margin-bottom:.25rem}.rpv-core__annotation-popup-date{font-size:.5rem}.rpv-core__annotation-popup-content{border-top:1px solid var(--rpv-core__annotation-popup-content-border-top-color);padding:.25rem;max-height:16rem;overflow:auto}.rpv-core__primary-button{background-color:var(--rpv-core__primary-button-background-color);border:none;border-radius:.25rem;color:var(--rpv-core__primary-button-color);cursor:pointer;height:2rem;padding:0 1rem}.rpv-core__primary-button--rtl{direction:rtl}.rpv-core__progress-bar{background-color:var(--rpv-core__progress-bar-background-color);border-radius:9999px;padding:.125rem}.rpv-core__progress-bar--rtl{direction:rtl}.rpv-core__progress-bar-progress{align-items:center;background-color:var(--rpv-core__progress-bar-progress-background-color);border-radius:9999px;color:var(--rpv-core__progress-bar-progress-color);display:flex;font-size:.75rem;justify-content:center;height:.75rem}.rpv-core__separator{border-bottom:1px solid var(--rpv-core__separator-border-bottom-color)}.rpv-core__spinner{border-bottom:2px solid var(--rpv-core__spinner-border-transparent-color);border-left:2px solid var(--rpv-core__spinner-border-transparent-color);border-right:2px solid var(--rpv-core__spinner-border-color);border-top:2px solid var(--rpv-core__spinner-border-color);border-radius:9999px}.rpv-core__spinner--animating{animation-duration:.4s;animation-name:rpv-core__spinner-transform;animation-iteration-count:infinite;animation-timing-function:linear}@keyframes rpv-core__spinner-transform{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.rpv-core__splitter{background-color:var(--rpv-core__splitter-background-color);cursor:ew-resize;height:100%;width:.25rem}.rpv-core__splitter:hover,.rpv-core__splitter--resizing{cursor:col-resize;background-color:var(--rpv-core__splitter--hover-background-color)}.rpv-core__splitter-body--resizing{cursor:col-resize}.rpv-core__splitter-sibling--resizing{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.rpv-core__textbox{background-color:var(--rpv-core__textbox-background-color);border:1px solid var(--rpv-core__textbox-border-color);box-sizing:border-box;border-radius:.25rem;color:var(--rpv-core__textbox-color);padding:0 .5rem;height:2rem;width:100%}.rpv-core__textbox--rtl{direction:rtl}.rpv-core__text-layer{left:0;position:absolute;top:0;height:100%;width:100%;opacity:.2;line-height:1;z-index:1}.rpv-core__text-layer span::-moz-selection{background-color:var(--rpv-core__text-layer-text--selection-background-color);color:var(--rpv-core__text-layer-text--selection-color)}.rpv-core__text-layer span::selection{background-color:var(--rpv-core__text-layer-text--selection-background-color);color:var(--rpv-core__text-layer-text--selection-color)}.rpv-core__text-layer br::-moz-selection{color:rgba(0,0,0,0)}.rpv-core__text-layer br::selection{color:rgba(0,0,0,0)}.rpv-core__text-layer-text{color:rgba(0,0,0,0);cursor:text;position:absolute;transform-origin:0% 0%;white-space:pre}.rpv-core__tooltip-body{background-color:var(--rpv-core__tooltip-body-background-color);border-radius:.25rem;color:var(--rpv-core__tooltip-body-color);left:0;max-width:20rem;position:absolute;text-align:center;top:-9999px;z-index:9999}.rpv-core__tooltip-body--rtl{direction:rtl}.rpv-core__tooltip-body-arrow{background-color:var(--rpv-core__tooltip-body-background-color)}.rpv-core__tooltip-body-content{padding:.5rem}.rpv-core__display--block{display:block}.rpv-core__display--hidden{display:none}@media(min-width: 640px){.rpv-core__display--hidden-small{display:none}.rpv-core__display--block-small{display:block}}@media(min-width: 768px){.rpv-core__display--hidden-medium{display:none}.rpv-core__display--block-medium{display:block}}@media(min-width: 1024px){.rpv-core__display--hidden-large{display:none}.rpv-core__display--block-large{display:block}}.rpv-core__viewer{min-height:inherit}:root{--rpv-thumbnail__container-background-color: #fff;--rpv-thumbnail__container-box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 8px 0px;--rpv-thumbnail__item--selected-background-color: rgba(0, 0, 0, 0.3)}.rpv-core__viewer--dark{--rpv-thumbnail__item--selected-background-color: #2566e8}.rpv-thumbnail__cover{align-items:center;display:flex;justify-content:center;height:100%;width:100%;min-height:inherit}.rpv-thumbnail__cover-inner{align-items:center;display:flex;justify-content:center;height:100%;width:100%;min-height:inherit}.rpv-thumbnail__cover-image{max-height:100%;max-width:100%}.rpv-thumbnail__cover-loader{align-items:center;display:flex;justify-content:center;height:100%;width:100%}.rpv-thumbnail__container{align-items:center;background:var(--rpv-thumbnail__container-background-color);box-shadow:var(--rpv-thumbnail__container-box-shadow);display:flex;justify-content:center;margin:0 auto;position:relative}.rpv-thumbnail__item{cursor:pointer}.rpv-thumbnail__item--single,.rpv-thumbnail__item--dual-cover{padding:.5rem}.rpv-thumbnail__item--dual-even,.rpv-thumbnail__item--dual-cover-odd{padding:.5rem 0 .5rem .5rem}.rpv-thumbnail__item--dual-odd,.rpv-thumbnail__item--dual-cover-even{padding:.5rem .5rem .5rem 0}.rpv-thumbnail__item--single:hover,.rpv-thumbnail__item--dual-cover:hover,.rpv-thumbnail__items--dual:hover .rpv-thumbnail__item,.rpv-thumbnail__items--dual-cover:hover .rpv-thumbnail__item{background-color:var(--rpv-thumbnail__item--selected-background-color)}.rpv-thumbnail__item:focus{outline:0}.rpv-thumbnail__label{font-size:.75em;text-align:center;padding:.25rem}.rpv-thumbnail__list{overflow:auto;padding:.5rem}.rpv-thumbnail__list--rtl{direction:rtl}.rpv-thumbnail__list--horizontal{align-items:center;display:flex;flex-direction:row;width:100%}.rpv-thumbnail__list--vertical{height:100%}.rpv-thumbnail__items{align-items:center;display:flex;justify-content:center}.rpv-thumbnail__items--selected .rpv-thumbnail__item{background-color:var(--rpv-thumbnail__item--selected-background-color)}.rpv-thumbnail__list-container{height:100%;width:100%}.rpv-thumbnail__loader{align-items:center;display:flex;height:100%;justify-content:center;width:100%}:root{--rpv-drop__area-background-color: #fff;--rpv-drop__area-body-border-color: rgba(0, 0, 0, 0.3);--rpv-drop__area-body-color: #000}.rpv-core__viewer--dark{--rpv-drop__area-background-color: #191919;--rpv-drop__area-body-border-color: #fff;--rpv-drop__area-body-color: #fff}.rpv-drop__area{background-color:var(--rpv-drop__area-background-color);bottom:0;left:0;position:absolute;right:0;top:0;padding:.5rem;z-index:9999}.rpv-drop__area-body{border:2px dashed var(--rpv-drop__area-body-border-color);color:var(--rpv-drop__area-body-color);font-size:1.5rem;align-items:center;display:flex;justify-content:center;height:100%}.rpv-drop__area-body--rtl{direction:rtl}:root{--rpv-full-screen__overlay-background-color: #fff}.rpv-core__viewer--dark{--rpv-full-screen__overlay-background-color: #1a1a1a}.rpv-full-screen__exit-button{bottom:0;padding:.5rem;position:fixed;z-index:2}.rpv-full-screen__exit-button--ltr{right:0}.rpv-full-screen__exit-button--rtl{left:0}.rpv-full-screen__overlay{position:fixed;top:0;left:0;height:100%;width:100%;align-items:center;display:flex;justify-content:center;background-color:var(--rpv-full-screen__overlay-background-color);z-index:1}.rpv-open__input-wrapper{position:relative}.rpv-open__input{display:none;bottom:0;cursor:pointer;height:100%;left:0;opacity:0;position:absolute;right:0;top:0;width:100%}.rpv-open__input::-webkit-file-upload-button{width:0}.rpv-page-navigation__current-page-input{margin:0 .25rem;text-align:right;width:3rem}:root{--rpv-print__progress-body-background-color: #fff;--rpv-print__progress-body-border-color: rgba(0, 0, 0, 0.3);--rpv-print__progress-body-color: #000}.rpv-core__viewer--dark{--rpv-print__progress-body-background-color: #363636;--rpv-print__progress-body-border-color: transparent;--rpv-print__progress-body-color: #fff}.rpv-print__permission-body{padding:1rem}.rpv-print__permission-footer{display:flex;justify-content:center;padding:0 1rem 1rem 0}.rpv-print__progress{align-items:center;display:flex;height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%;z-index:9999}.rpv-print__progress-body{background-color:var(--rpv-print__progress-body-background-color);border:1px solid var(--rpv-print__progress-body-border-color);border-radius:.25rem;color:var(--rpv-print__progress-body-color);padding:1.5rem;text-align:center;width:15rem}.rpv-print__progress-body--rtl{direction:rtl}.rpv-print__progress-bar{margin-bottom:1rem}.rpv-print__progress-message{margin-bottom:.5rem}.rpv-print__zone{display:none}@media print{@page{margin:0}.rpv-print__html-printing{height:100%}.rpv-print__body-printing{height:100%;margin:0}.rpv-print__body-printing *{display:none}.rpv-print__zone{display:block;height:100%}.rpv-print__page{align-items:center;display:flex;flex-direction:column;justify-content:center;height:100%;width:100%;page-break-after:always;page-break-inside:avoid}.rpv-print__page img{display:block;max-height:100%;max-width:100%}}.rpv-properties__loader{text-align:center}.rpv-properties__modal{min-height:20rem;padding:.5rem 0}.rpv-properties__modal-section{padding:0 .5rem}.rpv-properties__modal-footer{display:flex;justify-content:center;margin-top:.5rem}.rpv-properties__item{align-items:flex-start;display:flex;margin:.5rem 0}.rpv-properties__item--rtl{direction:rtl}.rpv-properties__item-label{padding-right:.5rem;width:25%}.rpv-properties__item-value{flex:1}.rpv-search__highlights{left:0;position:absolute;top:0;height:100%;width:100%}.rpv-search__highlight{background-color:var(--rpv-search__highlight-background-color);border-radius:.25rem;position:absolute;z-index:1}.rpv-search__highlight--current{background-color:var(--rpv-search__highlight--current-background-color)}.rpv-search__popover{padding:0 .5rem}.rpv-search__popover-input-counter{align-items:center;display:flex;margin-bottom:.5rem;position:relative;width:12rem}.rpv-search__popover-counter{align-items:center;bottom:0;display:flex;position:absolute;top:0}.rpv-search__popover-counter--ltr{padding-right:.25rem;right:0}.rpv-search__popover-counter--rtl{left:0;padding-left:.25rem}.rpv-search__popover-label{align-items:center;cursor:pointer;display:flex;margin-bottom:.5rem}.rpv-search__popover-label-checkbox{cursor:pointer;margin-right:.25rem}.rpv-search__popover-footer{align-items:center;display:flex}.rpv-search__popover-footer-item{padding:0 .25rem}.rpv-search__popover-footer-button--ltr{margin-left:auto}.rpv-search__popover-footer-button--rtl{margin-right:auto}:root{--rpv-search__highlight-background-color: rgba(255, 255, 0, 0.4);--rpv-search__highlight--current-background-color: rgba(0, 128, 0, 0.4)}.rpv-selection-mode__grab{cursor:grab}.rpv-selection-mode__grab :not(input),.rpv-selection-mode__grab :not(select),.rpv-selection-mode__grab :not(textarea){cursor:grab !important}.rpv-selection-mode__grabbing{cursor:grabbing}.rpv-selection-mode__grabbing :not(input),.rpv-selection-mode__grabbing :not(select),.rpv-selection-mode__grabbing :not(textarea){cursor:grabbing !important}:root{--rpv-zoom__popover-target-arrow-border-color: rgba(0, 0, 0, 0.6)}.rpv-core__viewer--dark{--rpv-zoom__popover-target-arrow-border-color: #fff}.rpv-zoom__popover-target{align-items:center;color:var(--rpv-zoom__popover-target-color);display:flex}.rpv-zoom__popover-target-scale--ltr{margin-right:.25rem}.rpv-zoom__popover-target-scale--rtl{margin-left:.25rem}.rpv-zoom__popover-target-arrow{border-color:var(--rpv-zoom__popover-target-arrow-border-color) rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:.5rem .25rem 0;height:0;width:0}:root{--rpv-toolbar__label--color: #000}.rpv-core__viewer--dark{--rpv-toolbar__label--color: #fff}.rpv-toolbar{align-items:center;display:flex;width:100%}.rpv-toolbar--rtl{direction:rtl}.rpv-toolbar__left{align-items:center;display:flex}.rpv-toolbar__center{align-items:center;display:flex;flex-grow:1;flex-shrink:1;justify-content:center}.rpv-toolbar__right{align-items:center;display:flex;margin-left:auto}.rpv-toolbar__item{align-items:center;display:flex;padding:0 .125rem}.rpv-toolbar__label{color:var(--rpv-toolbar__label--color)}:root{--rpv-default-layout__body-background-color: #fff;--rpv-default-layout__container-border-color: rgba(0, 0, 0, 0.3);--rpv-default-layout__toolbar-background-color: #eee;--rpv-default-layout__toolbar-border-bottom-color: rgba(0, 0, 0, 0.1);--rpv-default-layout__sidebar-border-color: rgba(0, 0, 0, 0.2);--rpv-default-layout__sidebar--opened-background-color: #fff;--rpv-default-layout__sidebar-headers-background-color: #eee;--rpv-default-layout__sidebar-content--opened-background-color: #fff;--rpv-default-layout__sidebar-content--opened-border-color: rgba(0, 0, 0, 0.2);--rpv-default-layout__sidebar-content--opened-color: #000}.rpv-core__viewer--dark{--rpv-default-layout__body-background-color: #1a1a1a;--rpv-default-layout__container-border-color: #454647;--rpv-default-layout__toolbar-background-color: #292929;--rpv-default-layout__toolbar-border-bottom-color: #000;--rpv-default-layout__sidebar-border-color: #000;--rpv-default-layout__sidebar--opened-background-color: #fff;--rpv-default-layout__sidebar-headers-background-color: #292929;--rpv-default-layout__sidebar-content--opened-background-color: #1a1a1a;--rpv-default-layout__sidebar-content--opened-border-color: #292929;--rpv-default-layout__sidebar-content--opened-color: #fff}.rpv-default-layout__container{border:1px solid var(--rpv-default-layout__container-border-color);box-sizing:border-box;height:100%;width:100%}.rpv-default-layout__toolbar{align-items:center;background-color:var(--rpv-default-layout__toolbar-background-color);border-bottom:1px solid var(--rpv-default-layout__toolbar-border-bottom-color);display:flex;left:0;position:absolute;top:0;height:2.5rem;width:100%;z-index:1}.rpv-default-layout__sidebar{display:flex;padding-top:2.5rem}.rpv-default-layout__sidebar--opened{bottom:0;left:0;position:absolute;top:0;width:12rem;background-color:var(--rpv-default-layout__sidebar--opened-background-color);z-index:1}.rpv-default-layout__sidebar--ltr{border-right:1px solid var(--rpv-default-layout__sidebar-border-color)}.rpv-default-layout__sidebar--rtl{border-left:1px solid var(--rpv-default-layout__sidebar-border-color)}.rpv-default-layout__main{display:flex;height:100%;position:relative}.rpv-default-layout__main--rtl{direction:rtl}.rpv-default-layout__body{background-color:var(--rpv-default-layout__body-background-color);flex:1;overflow:auto;padding-top:2.5rem}@media(min-width: 768px){.rpv-default-layout__sidebar--opened{width:16rem}}@media(min-width: 1024px){.rpv-default-layout__sidebar--opened{background:inherit;position:inherit;width:20rem;z-index:inherit}}.rpv-default-layout__sidebar-tabs{display:flex;height:100%;width:100%}.rpv-default-layout__sidebar-headers{background-color:var(--rpv-default-layout__sidebar-headers-background-color);padding:.25rem}.rpv-default-layout__sidebar-header{padding:.125rem}.rpv-default-layout__sidebar-content{display:none;flex-grow:1;flex-shrink:1}.rpv-default-layout__sidebar-content--opened{background-color:var(--rpv-default-layout__sidebar-content--opened-background-color);color:var(--rpv-default-layout__sidebar-content--opened-color);display:flex;overflow:hidden}.rpv-default-layout__sidebar-content--ltr{border-left:1px solid var(--rpv-default-layout__sidebar-content--opened-border-color)}.rpv-default-layout__sidebar-content--rtl{border-right:1px solid var(--rpv-default-layout__sidebar-content--opened-border-color)}

h1 {
  font-size: 25px;
  margin-bottom: 5px;
  text-align: center;
}

.subHeading {
  text-align: center;
  color: #8a8a8a;
}

.shadow {
  width: 160px;
}

.fontweight600 {
  font-weight: 600;
}

.header2 .block-limiter {
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.header2 .brandhotelselector {
  margin-top: 5px;
}

.bellContainer {
  position: relative;
  width: 50px;
}

.floatRight {
  float: right;
}

.marginBottom20 {
  margin-bottom: 20px;
}

.calender-selection {
  margin-top: 5px;
}

.calender-selection .control-select-men {
  display: inline-block;
  float: left;
}

.calender-selection .control-select-filter-men {
  display: inline-block;
  float: left;
}

.displayInline {
  display: inline !important;
}

.stdcontainer .block-limiter {
  padding: 0 10px 10px 10px;
}

.fullWidthSelect {
  width: 100% !important;
}

.shadow {
  width: 160px;
}

.noShadow {
  box-shadow: none;
}

.tagsContainer {
  float: left;
}

.iconsContainerStd {
  float: right;
}

.iconsContainerStd svg {
  height: 20px !important;
  width: 20px !important;
  margin-right: 10px;
}

.stdIconContainer {
  margin-top: 10px;
  width: 100%;
  display: inline-block;
}

.tagsContainer .tags-tag {
  background-color: #FFF;
  border: 1px solid #d1dbec;
}

.stdIconContainer svg {
  margin-right: 15px;
}

.tabContainer .tabContent {
  display: none;
}

.tabContainer .active {
  display: block;
}

.tabs {
  width: 100%;
}

.tabs .tabs-ul {
  list-style: none;
  padding-bottom: 12px;
  margin-bottom: 0px;
  display: inline-block;
  border-bottom: 1px solid #F1F1F1;
  overflow-x: auto;
  overflow-y: hidden;
  display: -webkit-box;
  display: -moz-box;
  white-space: nowrap;
}

.tabs .tabs-ul li {
  display: inline;
  margin-right: 10px;
  color: #919191;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 10px;
}

.tabs .tabs-ul li.activeTab {
  border-bottom: 3px solid #58c3bb;
  color: #000;
  font-weight: 600;
}

.subTabs {
  width: 100%;
  white-space: nowrap;
  overflow-x: auto;
}

.subTabs .subTabs-ul {
  list-style: none;
  padding-bottom: 20px;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: none;
  overflow-x: auto;
  overflow-y: hidden;
  display: -webkit-box;
  display: -moz-box;
  white-space: nowrap;
}

.subTabs .subTabs-ul li {
  display: inline;
  margin-right: 10px;
  color: #E1E1E1;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 10px;
  border-bottom: 1px solid #E1E1E1;
}

.subTabs .subTabs-ul li.activeSubTab {
  border-bottom: 2px solid #58c3bb;
  color: #58c3bb;
  font-weight: 600;
}

.subTabContainer {
  overflow-x: hidden;
  white-space: normal;
  min-height: 400px;
}

.subTabContainer .tabContent {
  display: none;
  padding: 10px;
}

.subTabContainer .active {
  display: block;
}

.tagsContainer .tags-tag {
  background-color: #fff;
  border: 1px solid #d1dbec;
  padding: 0px;
  font-size: 14px;
}

.bp3-menu-item .bp3-fill {
  text-align: left;
}
.tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: -5px;
}
.tags-tag {
  overflow-wrap: break-word;
  background-color: #d1dbec;
  margin: 5px 5px 0 0;
  font-size: 12px;
  line-height: 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border-radius: 3px;
  color: inherit;
}
.tags-tag-label {
  padding: 0 8px;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tags-tag-label .row1 {
  display: block;
  line-height: 14px;
  padding-top: 5px;
  font-weight: bold;
}
.tags-tag-label .row2 {
  display: block;
  font-size: 11px;
  line-height: 14px;
  padding-bottom: 5px;
}
.tags-tag-button {
  padding: 0;
  margin: 0 0 0 -6px;
  background: transparent;
  width: 24px;
  height: 24px;
  position: relative;
  border: none;
  cursor: pointer;
  color: inherit;
}
.tags-tag-button svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
}
.tags-tag-button path {
  fill: currentColor;
}
.tags-tag-button:focus path, .tags-tag-button:hover path {
  fill: rgb(51, 133.8, 204);
}
.tags-vertical {
  display: inline-flex;
  flex-direction: column;
}

.form-row-group + .tags,
.control-autocomplete + .tags,
.control-input + .tags,
.control-select + .tags {
  margin-top: 5px;
}
.control-textarea {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  line-height: 22px;
  cursor: text;
  box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.35);
  border-radius: 4px;
  background-color: #fff;
  transition: all 125ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
}
.control-textarea.focus {
  box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.8) !important;
  background-color: #fff;
}
.control-textarea.disabled {
  cursor: default;
}
.control-textarea-holder {
  flex: 1 1 auto;
}
.control-textarea-textarea {
  float: left;
  width: 100%;
  margin: 0;
  padding: 6px 16px;
  font-size: inherit;
  background-color: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  text-align: inherit;
  flex: 1 1 auto;
  min-height: 34px;
  box-sizing: border-box;
  line-height: inherit;
  overflow-y: auto;
  resize: none;
}
.control-textarea-textarea::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.control-textarea-textarea::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.control-textarea-textarea::-webkit-scrollbar-thumb {
  border-radius: 5px;
}
.control-textarea-textarea::-webkit-scrollbar-track {
  border-radius: 5px;
}
.control-textarea-textarea::-webkit-scrollbar-thumb {
  background: rgba(24, 70, 109, 0.1);
}
.control-textarea-textarea::-webkit-scrollbar-thumb:hover {
  background: #18466d;
}
.control-textarea-textarea::-webkit-scrollbar-thumb:active {
  background: #18466d;
}
.control-textarea-textarea::-webkit-scrollbar-track {
  background: rgba(24, 70, 109, 0.05);
  border-radius: 0;
}
.control-textarea-textarea::-webkit-scrollbar-track:hover {
  background: rgba(24, 70, 109, 0.1);
}
.control-textarea-textarea::-webkit-scrollbar-track:active {
  background: rgba(24, 70, 109, 0.1);
}
.control-textarea-textarea::-webkit-scrollbar-corner {
  background: transparent;
}
.control-textarea-textarea::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.control-textarea-textarea::placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.control-textarea-textarea::-ms-clear {
  display: none;
  appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
}
.control-textarea.has-error {
  box-shadow: inset 0 0 0 1px rgba(204, 48, 68, 0.3);
  background-color: rgba(204, 48, 68, 0.07);
}
.control-textarea.has-error.focus {
  box-shadow: inset 0 0 0 1px #CC3044 !important;
  background-color: #fff;
}
.control-textarea.has-error:not(.has-value) ~ LABEL {
  color: #CC3044;
}
.control-textarea.disabled,
.control-textarea [disabled] {
  color: rgba(51, 51, 51, 0.5);
  cursor: default;
}
.control-textarea.readonly,
.control-textarea [readonly] {
  color: rgba(51, 51, 51, 0.5);
  cursor: default;
}
@charset "UTF-8";
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow, .react-datepicker__navigation-icon::before {
  border-color: #ccc;
  border-style: solid;
  border-width: 3px 3px 0 0;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  top: 6px;
  width: 9px;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  margin-left: -4px;
  position: absolute;
  width: 0;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
  box-sizing: content-box;
  position: absolute;
  border: 8px solid transparent;
  height: 0;
  width: 1px;
  content: "";
  z-index: -1;
  border-width: 8px;
  left: -8px;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
  border-bottom-color: #aeaeae;
}

.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle {
  top: 0;
  margin-top: -8px;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
  border-top: none;
  border-bottom-color: #f0f0f0;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::after {
  top: 0;
}
.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle::before {
  top: -1px;
  border-bottom-color: #aeaeae;
}

.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle {
  bottom: 0;
  margin-bottom: -8px;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before, .react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after {
  border-bottom: none;
  border-top-color: #fff;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::after {
  bottom: 0;
}
.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle::before {
  bottom: -1px;
  border-top-color: #aeaeae;
}

.react-datepicker-wrapper {
  display: inline-block;
  padding: 0;
  border: 0;
}

.react-datepicker {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
  font-size: 0.8rem;
  background-color: #fff;
  color: #000;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  display: inline-block;
  position: relative;
}

.react-datepicker--time-only .react-datepicker__triangle {
  left: 35px;
}
.react-datepicker--time-only .react-datepicker__time-container {
  border-left: 0;
}
.react-datepicker--time-only .react-datepicker__time,
.react-datepicker--time-only .react-datepicker__time-box {
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.react-datepicker__triangle {
  position: absolute;
  left: 50px;
}

.react-datepicker-popper {
  z-index: 1;
}
.react-datepicker-popper[data-placement^=bottom] {
  padding-top: 10px;
}
.react-datepicker-popper[data-placement=bottom-end] .react-datepicker__triangle, .react-datepicker-popper[data-placement=top-end] .react-datepicker__triangle {
  left: auto;
  right: 50px;
}
.react-datepicker-popper[data-placement^=top] {
  padding-bottom: 10px;
}
.react-datepicker-popper[data-placement^=right] {
  padding-left: 8px;
}
.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle {
  left: auto;
  right: 42px;
}
.react-datepicker-popper[data-placement^=left] {
  padding-right: 8px;
}
.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle {
  left: 42px;
  right: auto;
}

.react-datepicker__header {
  text-align: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #aeaeae;
  border-top-left-radius: 0.3rem;
  padding: 8px 0;
  position: relative;
}
.react-datepicker__header--time {
  padding-bottom: 8px;
  padding-left: 5px;
  padding-right: 5px;
}
.react-datepicker__header--time:not(.react-datepicker__header--time--only) {
  border-top-left-radius: 0;
}
.react-datepicker__header:not(.react-datepicker__header--has-time-select) {
  border-top-right-radius: 0.3rem;
}

.react-datepicker__year-dropdown-container--select,
.react-datepicker__month-dropdown-container--select,
.react-datepicker__month-year-dropdown-container--select,
.react-datepicker__year-dropdown-container--scroll,
.react-datepicker__month-dropdown-container--scroll,
.react-datepicker__month-year-dropdown-container--scroll {
  display: inline-block;
  margin: 0 15px;
}

.react-datepicker__current-month,
.react-datepicker-time__header,
.react-datepicker-year-header {
  margin-top: 0;
  color: #000;
  font-weight: bold;
  font-size: 0.944rem;
}

.react-datepicker-time__header {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.react-datepicker__navigation {
  align-items: center;
  background: none;
  display: flex;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 2px;
  padding: 0;
  border: none;
  z-index: 1;
  height: 32px;
  width: 32px;
  text-indent: -999em;
  overflow: hidden;
}
.react-datepicker__navigation--previous {
  left: 2px;
}
.react-datepicker__navigation--next {
  right: 2px;
}
.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button) {
  right: 85px;
}
.react-datepicker__navigation--years {
  position: relative;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__navigation--years-previous {
  top: 4px;
}
.react-datepicker__navigation--years-upcoming {
  top: -4px;
}
.react-datepicker__navigation:hover *::before {
  border-color: #a6a6a6;
}

.react-datepicker__navigation-icon {
  position: relative;
  top: -1px;
  font-size: 20px;
  width: 0;
}
.react-datepicker__navigation-icon--next {
  left: -2px;
}
.react-datepicker__navigation-icon--next::before {
  transform: rotate(45deg);
  left: -7px;
}
.react-datepicker__navigation-icon--previous {
  right: -2px;
}
.react-datepicker__navigation-icon--previous::before {
  transform: rotate(225deg);
  right: -7px;
}

.react-datepicker__month-container {
  float: left;
}

.react-datepicker__year {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__year-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 180px;
}
.react-datepicker__year .react-datepicker__year-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__month {
  margin: 0.4rem;
  text-align: center;
}
.react-datepicker__month .react-datepicker__month-text,
.react-datepicker__month .react-datepicker__quarter-text {
  display: inline-block;
  width: 4rem;
  margin: 2px;
}

.react-datepicker__input-time-container {
  clear: both;
  width: 100%;
  float: left;
  margin: 5px 0 10px 15px;
  text-align: left;
}
.react-datepicker__input-time-container .react-datepicker-time__caption {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container {
  display: inline-block;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input {
  display: inline-block;
  margin-left: 10px;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input {
  width: auto;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time] {
  -moz-appearance: textfield;
}
.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter {
  margin-left: 5px;
  display: inline-block;
}

.react-datepicker__time-container {
  float: right;
  border-left: 1px solid #aeaeae;
  width: 85px;
}
.react-datepicker__time-container--with-today-button {
  display: inline;
  border: 1px solid #aeaeae;
  border-radius: 0.3rem;
  position: absolute;
  right: -87px;
  top: 0;
}
.react-datepicker__time-container .react-datepicker__time {
  position: relative;
  background: white;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box {
  width: 85px;
  overflow-x: hidden;
  margin: 0 auto;
  text-align: center;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list {
  list-style: none;
  margin: 0;
  height: calc(195px + 1.7rem / 2);
  overflow-y: scroll;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  box-sizing: content-box;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item {
  height: 30px;
  padding: 5px 10px;
  white-space: nowrap;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover {
  cursor: pointer;
  background-color: #f0f0f0;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected {
  background-color: #216ba5;
  color: white;
  font-weight: bold;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover {
  background-color: #216ba5;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled {
  color: #ccc;
}
.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover {
  cursor: default;
  background-color: transparent;
}

.react-datepicker__week-number {
  color: #ccc;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable {
  cursor: pointer;
}
.react-datepicker__week-number.react-datepicker__week-number--clickable:not(.react-datepicker__week-number--selected,
.react-datepicker__week-number--keyboard-selected):hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__week-number--selected {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__week-number--selected:hover {
  background-color: #1d5d90;
}
.react-datepicker__week-number--keyboard-selected {
  border-radius: 0.3rem;
  background-color: #2a87d0;
  color: #fff;
}
.react-datepicker__week-number--keyboard-selected:hover {
  background-color: #1d5d90;
}

.react-datepicker__day-names {
  white-space: nowrap;
  margin-bottom: -8px;
}

.react-datepicker__week {
  white-space: nowrap;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  color: #000;
  display: inline-block;
  width: 1.7rem;
  line-height: 1.7rem;
  text-align: center;
  margin: 0.166rem;
}

.react-datepicker__day,
.react-datepicker__month-text,
.react-datepicker__quarter-text,
.react-datepicker__year-text {
  cursor: pointer;
}
.react-datepicker__day:hover,
.react-datepicker__month-text:hover,
.react-datepicker__quarter-text:hover,
.react-datepicker__year-text:hover {
  border-radius: 0.3rem;
  background-color: #f0f0f0;
}
.react-datepicker__day--today,
.react-datepicker__month-text--today,
.react-datepicker__quarter-text--today,
.react-datepicker__year-text--today {
  font-weight: bold;
}
.react-datepicker__day--highlighted,
.react-datepicker__month-text--highlighted,
.react-datepicker__quarter-text--highlighted,
.react-datepicker__year-text--highlighted {
  border-radius: 0.3rem;
  background-color: #3dcc4a;
  color: #fff;
}
.react-datepicker__day--highlighted:hover,
.react-datepicker__month-text--highlighted:hover,
.react-datepicker__quarter-text--highlighted:hover,
.react-datepicker__year-text--highlighted:hover {
  background-color: #32be3f;
}
.react-datepicker__day--highlighted-custom-1,
.react-datepicker__month-text--highlighted-custom-1,
.react-datepicker__quarter-text--highlighted-custom-1,
.react-datepicker__year-text--highlighted-custom-1 {
  color: magenta;
}
.react-datepicker__day--highlighted-custom-2,
.react-datepicker__month-text--highlighted-custom-2,
.react-datepicker__quarter-text--highlighted-custom-2,
.react-datepicker__year-text--highlighted-custom-2 {
  color: green;
}
.react-datepicker__day--holidays,
.react-datepicker__month-text--holidays,
.react-datepicker__quarter-text--holidays,
.react-datepicker__year-text--holidays {
  position: relative;
  border-radius: 0.3rem;
  background-color: #ff6803;
  color: #fff;
}
.react-datepicker__day--holidays .holiday-overlay,
.react-datepicker__month-text--holidays .holiday-overlay,
.react-datepicker__quarter-text--holidays .holiday-overlay,
.react-datepicker__year-text--holidays .holiday-overlay {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 4px;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s ease-in-out;
}
.react-datepicker__day--holidays:hover,
.react-datepicker__month-text--holidays:hover,
.react-datepicker__quarter-text--holidays:hover,
.react-datepicker__year-text--holidays:hover {
  background-color: #cf5300;
}
.react-datepicker__day--holidays:hover .holiday-overlay,
.react-datepicker__month-text--holidays:hover .holiday-overlay,
.react-datepicker__quarter-text--holidays:hover .holiday-overlay,
.react-datepicker__year-text--holidays:hover .holiday-overlay {
  visibility: visible;
  opacity: 1;
}
.react-datepicker__day--selected, .react-datepicker__day--in-selecting-range, .react-datepicker__day--in-range,
.react-datepicker__month-text--selected,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--selected,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--selected,
.react-datepicker__year-text--in-selecting-range,
.react-datepicker__year-text--in-range {
  border-radius: 0.3rem;
  background-color: #216ba5;
  color: #fff;
}
.react-datepicker__day--selected:hover, .react-datepicker__day--in-selecting-range:hover, .react-datepicker__day--in-range:hover,
.react-datepicker__month-text--selected:hover,
.react-datepicker__month-text--in-selecting-range:hover,
.react-datepicker__month-text--in-range:hover,
.react-datepicker__quarter-text--selected:hover,
.react-datepicker__quarter-text--in-selecting-range:hover,
.react-datepicker__quarter-text--in-range:hover,
.react-datepicker__year-text--selected:hover,
.react-datepicker__year-text--in-selecting-range:hover,
.react-datepicker__year-text--in-range:hover {
  background-color: #1d5d90;
}
.react-datepicker__day--keyboard-selected,
.react-datepicker__month-text--keyboard-selected,
.react-datepicker__quarter-text--keyboard-selected,
.react-datepicker__year-text--keyboard-selected {
  border-radius: 0.3rem;
  background-color: #bad9f1;
  color: rgb(0, 0, 0);
}
.react-datepicker__day--keyboard-selected:hover,
.react-datepicker__month-text--keyboard-selected:hover,
.react-datepicker__quarter-text--keyboard-selected:hover,
.react-datepicker__year-text--keyboard-selected:hover {
  background-color: #1d5d90;
}
.react-datepicker__day--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__month-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__quarter-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range),
.react-datepicker__year-text--in-selecting-range:not(.react-datepicker__day--in-range,
.react-datepicker__month-text--in-range,
.react-datepicker__quarter-text--in-range,
.react-datepicker__year-text--in-range) {
  background-color: rgba(33, 107, 165, 0.5);
}
.react-datepicker__month--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range), .react-datepicker__year--selecting-range .react-datepicker__day--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__month-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__quarter-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__month--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range),
.react-datepicker__year--selecting-range .react-datepicker__year-text--in-range:not(.react-datepicker__day--in-selecting-range,
.react-datepicker__month-text--in-selecting-range,
.react-datepicker__quarter-text--in-selecting-range,
.react-datepicker__year-text--in-selecting-range) {
  background-color: #f0f0f0;
  color: #000;
}
.react-datepicker__day--disabled,
.react-datepicker__month-text--disabled,
.react-datepicker__quarter-text--disabled,
.react-datepicker__year-text--disabled {
  cursor: default;
  color: #ccc;
}
.react-datepicker__day--disabled:hover,
.react-datepicker__month-text--disabled:hover,
.react-datepicker__quarter-text--disabled:hover,
.react-datepicker__year-text--disabled:hover {
  background-color: transparent;
}

.react-datepicker__input-container {
  position: relative;
  display: inline-block;
  width: 100%;
}
.react-datepicker__input-container .react-datepicker__calendar-icon {
  position: absolute;
  padding: 0.5rem;
  box-sizing: content-box;
}

.react-datepicker__view-calendar-icon input {
  padding: 6px 10px 5px 25px;
}

.react-datepicker__year-read-view,
.react-datepicker__month-read-view,
.react-datepicker__month-year-read-view {
  border: 1px solid transparent;
  border-radius: 0.3rem;
  position: relative;
}
.react-datepicker__year-read-view:hover,
.react-datepicker__month-read-view:hover,
.react-datepicker__month-year-read-view:hover {
  cursor: pointer;
}
.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow {
  border-top-color: #b3b3b3;
}
.react-datepicker__year-read-view--down-arrow,
.react-datepicker__month-read-view--down-arrow,
.react-datepicker__month-year-read-view--down-arrow {
  transform: rotate(135deg);
  right: -16px;
  top: 0;
}

.react-datepicker__year-dropdown,
.react-datepicker__month-dropdown,
.react-datepicker__month-year-dropdown {
  background-color: #f0f0f0;
  position: absolute;
  width: 50%;
  left: 25%;
  top: 30px;
  z-index: 1;
  text-align: center;
  border-radius: 0.3rem;
  border: 1px solid #aeaeae;
}
.react-datepicker__year-dropdown:hover,
.react-datepicker__month-dropdown:hover,
.react-datepicker__month-year-dropdown:hover {
  cursor: pointer;
}
.react-datepicker__year-dropdown--scrollable,
.react-datepicker__month-dropdown--scrollable,
.react-datepicker__month-year-dropdown--scrollable {
  height: 150px;
  overflow-y: scroll;
}

.react-datepicker__year-option,
.react-datepicker__month-option,
.react-datepicker__month-year-option {
  line-height: 20px;
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.react-datepicker__year-option:first-of-type,
.react-datepicker__month-option:first-of-type,
.react-datepicker__month-year-option:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.react-datepicker__year-option:last-of-type,
.react-datepicker__month-option:last-of-type,
.react-datepicker__month-year-option:last-of-type {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-bottom-left-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.react-datepicker__year-option:hover,
.react-datepicker__month-option:hover,
.react-datepicker__month-year-option:hover {
  background-color: #ccc;
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming {
  border-bottom-color: #b3b3b3;
}
.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,
.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous {
  border-top-color: #b3b3b3;
}
.react-datepicker__year-option--selected,
.react-datepicker__month-option--selected,
.react-datepicker__month-year-option--selected {
  position: absolute;
  left: 15px;
}

.react-datepicker__close-icon {
  cursor: pointer;
  background-color: transparent;
  border: 0;
  outline: 0;
  padding: 0 6px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.react-datepicker__close-icon::after {
  cursor: pointer;
  background-color: #216ba5;
  color: #fff;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  padding: 2px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  content: "×";
}
.react-datepicker__close-icon--disabled {
  cursor: default;
}
.react-datepicker__close-icon--disabled::after {
  cursor: default;
  background-color: #ccc;
}

.react-datepicker__today-button {
  background: #f0f0f0;
  border-top: 1px solid #aeaeae;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  padding: 5px 0;
  clear: left;
}

.react-datepicker__portal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  z-index: 2147483647;
}
.react-datepicker__portal .react-datepicker__day-name,
.react-datepicker__portal .react-datepicker__day,
.react-datepicker__portal .react-datepicker__time-name {
  width: 3rem;
  line-height: 3rem;
}
@media (max-width: 400px), (max-height: 550px) {
  .react-datepicker__portal .react-datepicker__day-name,
  .react-datepicker__portal .react-datepicker__day,
  .react-datepicker__portal .react-datepicker__time-name {
    width: 2rem;
    line-height: 2rem;
  }
}
.react-datepicker__portal .react-datepicker__current-month,
.react-datepicker__portal .react-datepicker-time__header {
  font-size: 1.44rem;
}

.react-datepicker__children-container {
  width: 13.8rem;
  margin: 0.4rem;
  padding-right: 0.2rem;
  padding-left: 0.2rem;
  height: auto;
}

.react-datepicker__aria-live {
  position: absolute;
  clip-path: circle(0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  width: 1px;
  white-space: nowrap;
}

.react-datepicker__calendar-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

/*
A mixin to generate the classes for a React CSSTransition which animates any number of CSS
properties at once.

Transitioned properties are specificed as a map of property names to lists of (inital value, final
value). For enter & appear transitions, each property will transition from its initial to its final
value. For exit transitions, each property will transition in reverse, from final to initial.

**Simple example:**
`@include react-transition("popover", (opacity: 0 1), $before: "&");`
Transition named "popover" moves opacity from 0 to 1. `"&"` indicates that the
Transition classes are expected to be applied to this element, where the mixin is invoked.

**Params:**
$name: React transitionName prop
$properties: map of CSS property to (initial, final) values
$duration: transition duration
$easing: transition easing function
$delay: transition delay
$before: selector text to insert before transition name (often to select self: &)
$after: selector text to insert after transiton name (to select children)
*/
/*
A mixin to generate the classes for one phase of a React CSSTransition.
`$phase` must be `appear` or `enter` or `exit`.
If `enter` phase is given then `appear` phase will be generated at the same time.
If `exit` phase is given then property values are animated in reverse, from final to initial.

**Example:**
@include react-transition-phase(toast, enter, $enter-translate, $before: "&");
@include react-transition-phase(toast, leave, $leave-blur, $pt-transition-duration * 3, $before: "&");
*/
/*
Given map of properties to values, set each property to the value at the given index.
(remember that sass indices are 1-based).

Example: `each-prop((opacity: 0 1), 2)` will print "opacity: 1"
*/
/*
Format transition class name with all the bits.
"enter" phase will include "appear" phase in returned name.
*/
/*
A mixin to generate the classes for a React CSSTransition which animates any number of CSS
properties at once.

Transitioned properties are specificed as a map of property names to lists of (inital value, final
value). For enter & appear transitions, each property will transition from its initial to its final
value. For exit transitions, each property will transition in reverse, from final to initial.

**Simple example:**
`@include react-transition("popover", (opacity: 0 1), $before: "&");`
Transition named "popover" moves opacity from 0 to 1. `"&"` indicates that the
Transition classes are expected to be applied to this element, where the mixin is invoked.

**Params:**
$name: React transitionName prop
$properties: map of CSS property to (initial, final) values
$duration: transition duration
$easing: transition easing function
$delay: transition delay
$before: selector text to insert before transition name (often to select self: &)
$after: selector text to insert after transiton name (to select children)
*/
/*
A mixin to generate the classes for one phase of a React CSSTransition.
`$phase` must be `appear` or `enter` or `exit`.
If `enter` phase is given then `appear` phase will be generated at the same time.
If `exit` phase is given then property values are animated in reverse, from final to initial.

**Example:**
@include react-transition-phase(toast, enter, $enter-translate, $before: "&");
@include react-transition-phase(toast, leave, $leave-blur, $pt-transition-duration * 3, $before: "&");
*/
/*
Given map of properties to values, set each property to the value at the given index.
(remember that sass indices are 1-based).

Example: `each-prop((opacity: 0 1), 2)` will print "opacity: 1"
*/
/*
Format transition class name with all the bits.
"enter" phase will include "appear" phase in returned name.
*/
.control-autocomplete {
  position: relative;
  flex: 1 1 auto;
}
.control-autocomplete .bp3-popover-target {
  display: block;
}
.control-autocomplete-placeholder {
  height: 34px;
}
.control-autocomplete-portal {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
  z-index: 20;
}
.control-autocomplete-portal-open {
  z-index: 21;
  pointer-events: auto;
}
.control-autocomplete-body {
  pointer-events: none;
  background-color: #fff;
  box-shadow: 0 3px 5px 0 rgba(19, 56, 87, 0.5);
  border-radius: 4px;
}
.control-autocomplete-body.open {
  pointer-events: auto;
}
.control-autocomplete-popover {
  display: block;
  padding-bottom: 10px;
}
.control-autocomplete-popover .bp3-popover-content {
  max-width: 100%;
}
.control-autocomplete-popover .bp3-popover-content:focus {
  outline: none;
}
.control-autocomplete-popover .bp3-popover-content *:focus {
  outline: none;
}
.control-autocomplete-popover .bp3-transition-container {
  display: flex;
}
.control-autocomplete-popover .bp3-transition-container:focus {
  outline: none;
}
.control-autocomplete-popover .bp3-transition-container[data-x-out-of-boundaries] {
  display: none;
}
.control-autocomplete-popover .bp3-menu {
  border-radius: 0;
  max-width: 100%;
  margin-top: 1px;
  min-height: 15px;
}
.control-autocomplete-popover:focus {
  outline: none;
}
.control-taginput {
  font-weight: bold;
  box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.35);
  border-radius: 4px;
  background-color: #fff;
  transition: all 125ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  box-sizing: border-box;
  cursor: text;
  height: auto;
  min-height: 34px;
  line-height: 20px;
  padding: 0 0 5px 5px;
}
.control-taginput.bp3-active {
  box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.8) !important;
  background-color: #fff;
}
.control-taginput .bp3-tag-input-values {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  align-self: stretch;
  min-width: 0;
}
.control-taginput .bp3-tag-input-values:first-child .bp3-input-ghost:first-child {
  padding-left: 5px;
}
.control-taginput .bp3-tag-input-values > * {
  margin-bottom: 5px;
}
.control-taginput .bp3-tag {
  overflow-wrap: break-word;
  background-color: #d1dbec;
  margin: 5px 5px 0 0;
  font-size: 12px;
  line-height: 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  border-radius: 3px;
  color: inherit;
}
.control-taginput .bp3-tag > SPAN {
  padding: 0 8px;
}
.control-taginput .bp3-tag.bp3-active {
  box-shadow: 0 0 0 1px rgba(24, 70, 109, 0.5);
}
.control-taginput .bp3-tag-remove {
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  margin: 0 0 0 -6px;
  position: relative;
  color: inherit;
  cursor: pointer;
}
.control-taginput .bp3-tag-remove svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
}
.control-taginput .bp3-tag-remove path {
  fill: currentColor;
}
.control-taginput .bp3-tag-remove:hover path, .control-taginput .bp3-tag-remove:focus path {
  fill: rgb(51, 133.8, 204);
}
.control-taginput .bp3-input-ghost {
  flex: 1 1 auto;
  width: 200px;
  line-height: 24px;
  height: 24px;
  padding: 0;
  margin: 5px 5px 0 0;
  border: none;
  box-shadow: none;
  background: transparent;
}
.control-taginput .bp3-input-ghost::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.control-taginput .bp3-input-ghost::placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.control-taginput .bp3-input-ghost:focus {
  outline: none !important;
}
.control-taginput .bp3-input-ghost:disabled, .control-taginput .bp3-input-ghost.bp3-disabled {
  cursor: not-allowed;
}
.control-taginput-addon, .control-taginput-addon-front {
  flex: 0 0 auto;
  pointer-events: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: rgba(51, 51, 51, 0.3);
  height: 24px;
  margin: 5px 12px 0 -5px;
}
.control-taginput-addon A,
.control-taginput-addon BUTTON, .control-taginput-addon-front A,
.control-taginput-addon-front BUTTON {
  flex: 0 0 auto;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  position: relative;
}
.control-taginput-addon A[disabled], .control-taginput-addon A:disabled,
.control-taginput-addon BUTTON[disabled],
.control-taginput-addon BUTTON:disabled, .control-taginput-addon-front A[disabled], .control-taginput-addon-front A:disabled,
.control-taginput-addon-front BUTTON[disabled],
.control-taginput-addon-front BUTTON:disabled {
  pointer-events: none;
}
.control-taginput-addon A[disabled] path, .control-taginput-addon A[disabled] circle, .control-taginput-addon A:disabled path, .control-taginput-addon A:disabled circle,
.control-taginput-addon BUTTON[disabled] path,
.control-taginput-addon BUTTON[disabled] circle,
.control-taginput-addon BUTTON:disabled path,
.control-taginput-addon BUTTON:disabled circle, .control-taginput-addon-front A[disabled] path, .control-taginput-addon-front A[disabled] circle, .control-taginput-addon-front A:disabled path, .control-taginput-addon-front A:disabled circle,
.control-taginput-addon-front BUTTON[disabled] path,
.control-taginput-addon-front BUTTON[disabled] circle,
.control-taginput-addon-front BUTTON:disabled path,
.control-taginput-addon-front BUTTON:disabled circle {
  fill: #d1dbec;
}
.control-taginput-addon A:before,
.control-taginput-addon BUTTON:before, .control-taginput-addon-front A:before,
.control-taginput-addon-front BUTTON:before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
}
.control-taginput-addon svg, .control-taginput-addon-front svg {
  float: left;
}
.control-taginput-addon path, .control-taginput-addon circle, .control-taginput-addon-front path, .control-taginput-addon-front circle {
  fill: currentColor;
  stroke: currentColor;
}
.control-taginput-addon BUTTON, .control-taginput-addon-front BUTTON {
  cursor: pointer;
  pointer-events: auto;
  color: rgb(51, 133.8, 204);
}
.control-taginput-addon A, .control-taginput-addon-front A {
  cursor: pointer;
  pointer-events: auto;
  color: rgb(51, 133.8, 204);
}
.control-taginput-addon SPAN, .control-taginput-addon-front SPAN {
  white-space: nowrap;
}
.control-taginput-addon {
  padding-right: 12px;
}
.control-taginput-addon-front {
  padding-left: 12px;
}
.ReactCrop{position:relative;display:inline-block;cursor:crosshair;overflow:hidden;max-width:100%}.ReactCrop *,.ReactCrop *:before,.ReactCrop *:after{-webkit-box-sizing:border-box;box-sizing:border-box}.ReactCrop--disabled,.ReactCrop--locked{cursor:inherit}.ReactCrop__child-wrapper{max-height:inherit}.ReactCrop__child-wrapper>img,.ReactCrop__child-wrapper>video{display:block;max-width:100%;max-height:inherit}.ReactCrop:not(.ReactCrop--disabled) .ReactCrop__child-wrapper>img,.ReactCrop:not(.ReactCrop--disabled) .ReactCrop__child-wrapper>video{-ms-touch-action:none;touch-action:none}.ReactCrop:not(.ReactCrop--disabled) .ReactCrop__crop-selection{-ms-touch-action:none;touch-action:none}.ReactCrop__crop-selection{position:absolute;top:0;left:0;-webkit-transform:translateZ(0);transform:translateZ(0);cursor:move;-webkit-box-shadow:0 0 0 9999em #00000080;box-shadow:0 0 0 9999em #00000080}.ReactCrop--disabled .ReactCrop__crop-selection{cursor:inherit}.ReactCrop--circular-crop .ReactCrop__crop-selection{border-radius:50%}.ReactCrop--no-animate .ReactCrop__crop-selection{outline:1px dashed white}.ReactCrop__crop-selection:not(.ReactCrop--no-animate .ReactCrop__crop-selection){-webkit-animation:marching-ants 1s;animation:marching-ants 1s;background-image:-webkit-gradient(linear,left top, right top,color-stop(50%, #fff),color-stop(50%, #444)),-webkit-gradient(linear,left top, right top,color-stop(50%, #fff),color-stop(50%, #444)),-webkit-gradient(linear,left top, left bottom,color-stop(50%, #fff),color-stop(50%, #444)),-webkit-gradient(linear,left top, left bottom,color-stop(50%, #fff),color-stop(50%, #444));background-image:linear-gradient(to right,#fff 50%,#444 50%),linear-gradient(to right,#fff 50%,#444 50%),linear-gradient(to bottom,#fff 50%,#444 50%),linear-gradient(to bottom,#fff 50%,#444 50%);background-size:10px 1px,10px 1px,1px 10px,1px 10px;background-position:0 0,0 100%,0 0,100% 0;background-repeat:repeat-x,repeat-x,repeat-y,repeat-y;color:#fff;-webkit-animation-play-state:running;animation-play-state:running;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}@-webkit-keyframes marching-ants{0%{background-position:0 0,0 100%,0 0,100% 0}to{background-position:20px 0,-20px 100%,0 -20px,100% 20px}}@keyframes marching-ants{0%{background-position:0 0,0 100%,0 0,100% 0}to{background-position:20px 0,-20px 100%,0 -20px,100% 20px}}.ReactCrop__crop-selection:focus{outline:none;border-color:#00f;border-style:solid}.ReactCrop--invisible-crop .ReactCrop__crop-selection{display:none}.ReactCrop__rule-of-thirds-vt:before,.ReactCrop__rule-of-thirds-vt:after,.ReactCrop__rule-of-thirds-hz:before,.ReactCrop__rule-of-thirds-hz:after{content:"";display:block;position:absolute;background-color:#fff6}.ReactCrop__rule-of-thirds-vt:before,.ReactCrop__rule-of-thirds-vt:after{width:1px;height:100%}.ReactCrop__rule-of-thirds-vt:before{left:33.3333333333%}.ReactCrop__rule-of-thirds-vt:after{left:66.6666666667%}.ReactCrop__rule-of-thirds-hz:before,.ReactCrop__rule-of-thirds-hz:after{width:100%;height:1px}.ReactCrop__rule-of-thirds-hz:before{top:33.3333333333%}.ReactCrop__rule-of-thirds-hz:after{top:66.6666666667%}.ReactCrop__drag-handle{position:absolute}.ReactCrop__drag-handle:after{position:absolute;content:"";display:block;width:10px;height:10px;background-color:#0003;border:1px solid rgba(255,255,255,.7);outline:1px solid transparent}.ReactCrop__drag-handle:focus:after{border-color:#00f;background:#2dbfff}.ReactCrop .ord-nw{top:0;left:0;margin-top:-5px;margin-left:-5px;cursor:nw-resize}.ReactCrop .ord-nw:after{top:0;left:0}.ReactCrop .ord-n{top:0;left:50%;margin-top:-5px;margin-left:-5px;cursor:n-resize}.ReactCrop .ord-n:after{top:0}.ReactCrop .ord-ne{top:0;right:0;margin-top:-5px;margin-right:-5px;cursor:ne-resize}.ReactCrop .ord-ne:after{top:0;right:0}.ReactCrop .ord-e{top:50%;right:0;margin-top:-5px;margin-right:-5px;cursor:e-resize}.ReactCrop .ord-e:after{right:0}.ReactCrop .ord-se{bottom:0;right:0;margin-bottom:-5px;margin-right:-5px;cursor:se-resize}.ReactCrop .ord-se:after{bottom:0;right:0}.ReactCrop .ord-s{bottom:0;left:50%;margin-bottom:-5px;margin-left:-5px;cursor:s-resize}.ReactCrop .ord-s:after{bottom:0}.ReactCrop .ord-sw{bottom:0;left:0;margin-bottom:-5px;margin-left:-5px;cursor:sw-resize}.ReactCrop .ord-sw:after{bottom:0;left:0}.ReactCrop .ord-w{top:50%;left:0;margin-top:-5px;margin-left:-5px;cursor:w-resize}.ReactCrop .ord-w:after{left:0}.ReactCrop__disabled .ReactCrop__drag-handle{cursor:inherit}.ReactCrop__drag-bar{position:absolute}.ReactCrop__drag-bar.ord-n{top:0;left:0;width:100%;height:6px;margin-top:-3px}.ReactCrop__drag-bar.ord-e{right:0;top:0;width:6px;height:100%;margin-right:-3px}.ReactCrop__drag-bar.ord-s{bottom:0;left:0;width:100%;height:6px;margin-bottom:-3px}.ReactCrop__drag-bar.ord-w{top:0;left:0;width:6px;height:100%;margin-left:-3px}.ReactCrop--new-crop .ReactCrop__drag-bar,.ReactCrop--new-crop .ReactCrop__drag-handle,.ReactCrop--fixed-aspect .ReactCrop__drag-bar,.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-n,.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-e,.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-s,.ReactCrop--fixed-aspect .ReactCrop__drag-handle.ord-w{display:none}@media (pointer: coarse){.ReactCrop .ord-n,.ReactCrop .ord-e,.ReactCrop .ord-s,.ReactCrop .ord-w{display:none}.ReactCrop__drag-handle{width:24px;height:24px}}

h1 {
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
  color: #071C3E;
}

.subHeading {
  text-align: center;
  color: #8a8a8a;
}

.shadow {
  width: 160px;
}

.control-select-portal {
  z-index: 1000;
}

.control-select-filter-portal {
  z-index: 999;
}

.fontweight600 {
  font-weight: 600;
}

.header2 .block-limiter {
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.header2 .brandhotelselector {
  margin-top: 5px;
}

.bellContainer {
  position: relative;
  width: 50px;
}

.floatRight {
  float: right;
}

.marginBottom20 {
  margin-bottom: 20px;
}

.calender-selection {
  margin-top: 5px;
}

.calender-selection .control-select-men {
  display: inline-block;
  float: left;
}

.calender-selection .control-select-filter-men {
  display: inline-block;
  float: left;
}

.displayInline {
  display: inline !important;
}

.stdcontainer .block-limiter {
  padding: 0 10px 10px 10px;
}

.fullWidthSelect {
  width: 100% !important;
}

.shadow {
  width: 160px;
}

.noShadow {
  box-shadow: none;
}

.resetScoresContainer {
  margin-right: 10px;
}

.resetScoresContainer button {
  background-color: #dafbf9 !important;
  min-width: 60px !important;
  border-color: #dafbf9 !important;
  box-shadow: none !important;
}

.resetScoresContainer .reset-button {
  padding: 5px;
  border-radius: 4px;
  float: right;
}

.resetScoresContainer .reset-button .button-icon-main {
  border-radius: 0;
  background-color: inherit;
  height: 25px;
  width: 25px;
}

.resetScoresContainer .reset-button .button-icon-main .icon {
  color: #2e968f;
}

.resetScoresContainer .reset-button .label {
  text-transform: inherit;
  padding-right: 10px;
  color: #8a8a8a;
  font-weight: normal;
}

.resetScoresContainer .reset-button .button-icon-main svg {
  height: 20px;
  width: 20px;
}

.missedStandardTable table {
  display: block;
  padding-bottom: 88px;
}

.missedStandardTable tr {
  border: 1px solid #E1E1E1;
}

.missedStandardTable table th {
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #1F1F1F;
  text-align: center;
  padding: 15px 15px 15px 10px;
  position: relative;
}

.missedStandardTable table td {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #1F1F1F;
  padding: 15px 15px 15px 10px;
  text-align: center;
}

.missedStandardTable table td:first-child {
  width: 50%;
  text-align: left;
}

.missedStandardTable table th:first-child {
  width: 50%;
  text-align: left;
}

.missedStandardTable th svg {
  position: absolute;
  bottom: 20px;
  margin-left: 5px;
}

.missedStandardTable .tbComplete {
  padding-right: 20px;
}

.missedStandardTable .tbCompletetd {
  padding-right: 20px;
}

.missedStandardTable .paginator {
  list-style: none;
  background: none;
}

.button.layout-default {
  min-width: 70px;
}

.button-filters {
  margin-bottom: 15px;
}

.button-filters button {
  border: 1px solid #e1e1e1;
  border-radius: 60px !important;
  margin-right: 9px;
  min-width: 65px !important;
  color: #afafaf !important;
  height: 24px !important;
  line-height: 24px !important;
}

.button-filters .button .text {
  font-size: 11px;
}

.button-filters .button.active {
  border: 1px solid #4FADA6 !important;
  border-radius: 60px !important;
  margin-right: 10px;
  min-width: 65px !important;
  color: #4FADA6 !important;
  height: 24px !important;
  line-height: 24px !important;
}

.button-filters button.reset {
  border: 1px solid !important;
  border-radius: 60px !important;
  margin-right: 10px;
  min-width: 65px !important;
  color: #000 !important;
  height: 24px !important;
  line-height: 24px !important;
}

.button-filters button {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  align-items: center;
  color: #919191;
  box-shadow: none !important;
}

.icon-percentage-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
}

.reset-icon .button-inner svg {
  position: relative;
  top: 0px;
}

.fixed-block {
  transition: 0.5s all ease-in-out;
  top: 8px;
  position: sticky;
  padding-bottom: 10px;
  background-color: white;
}

.fixed-block.active {
  position: sticky;
  z-index: 10;
  top: 80px;
}

.donut-container-missed {
  display: flex;
}

.donut-container-missed .donut {
  width: 114px !important;
  height: 114px !important;
  margin: 13px 0 0 9px;
  align-self: flex-start;
  color: #000;
}

.donut-container-missed .donut-value {
  font-size: 25px !important;
}

.donut-container-missed .donut-change.intent-success {
  font-size: 15px !important;
}
.header2 .block-limiter {
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.header2 .brandhotelselector {
  margin-top: 5px;
}

.floatRight {
  float: right;
}

.marginBottom20 {
  margin-bottom: 20px;
}

.clearAll {
  clear: both;
}

.marginBottom20 {
  margin-bottom: 20px;
}

.noMarginTop {
  margin-top: 0x !important;
}

.backOverlay .button {
  width: 100%;
}

.backOverlay > .primary {
  width: 100%;
}

.backOverlay {
  padding: 20px;
  margin: 5px;
  border-radius: 10px;
  background: white;
  padding-top: 60px;
  padding-bottom: 60px;
}

.overlayPrompt {
  box-shadow: 0px 0px 0px 4000px rgba(27, 61, 88, 0.5) inset;
  overflow-y: scroll;
}

.overlayLight {
  background: rgba(217, 217, 217, 0.47) !important;
}

.formDiv-filter {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  cursor: text;
  border-radius: 4px;
  background-color: #fff;
  transition: all 125ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  height: 56px;
  width: 100%;
  position: relative;
  border: 1px solid #E1E1E1;
  border-radius: 6px;
  margin: 5px;
}

.formDiv-filter label {
  position: absolute;
  top: 18px;
  left: 0;
  color: grey;
  pointer-events: none;
  transition: all 0.3s ease;
  text-indent: 10px;
  line-height: 22px;
  font-size: 17px;
}

.formDiv-filter input {
  height: 100%;
  width: 100%;
  padding: 2px;
  border: none;
  font-size: 0.9rem;
  text-indent: 10px;
  box-sizing: border-box;
  border-radius: 6px;
  padding-top: 16px;
  background-color: transparent;
}

.formDiv-filter input:focus {
  border: none;
  outline: none;
}

.formDiv-filter label.hasValue,
.formDiv-filter:focus-within label {
  transform: translateY(-10px);
  font-size: 12px;
  line-height: 16px;
}

.formDiv-filter.hasError {
  box-shadow: inset 0 0 0 1px rgba(204, 48, 68, 0.3);
  background-color: rgba(204, 48, 68, 0.07);
}

.formDiv-filter .react-datepicker__input-container {
  position: unset;
}

.calendarIconContainer svg.calendarIcon {
  width: 20px;
  height: 20px;
}
.calendarIconContainer svg.calendarIcon g path {
  stroke: #717171;
}
.calendarIconContainer .calendarIconContainer {
  top: 50%;
  transform: translateY(-50%);
}

.calendarIconContainerClose svg.calendarIconClose {
  width: 20px;
  height: 20px;
}
.calendarIconContainerClose svg.calendarIconClose path {
  stroke: #717171;
  fill: #717171;
}
.calendarIconContainerClose .calendarIconContainerClose {
  top: 50%;
  transform: translateY(-50%);
}

.position-close-icon {
  right: 50px;
  bottom: 10px;
}

.multi-select {
  width: 60%;
}

.pt-60 {
  padding-top: 60px;
}
body.react-confirm-alert-body-element {
  overflow: hidden;
}

.react-confirm-alert-blur {
  filter: url(#gaussian-blur);
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

.react-confirm-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.9);
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  opacity: 0;
  animation: react-confirm-alert-fadeIn 0.5s 0.2s forwards;
}

.react-confirm-alert-body {
  font-family: Arial, Helvetica, sans-serif;
  width: 400px;
  padding: 30px;
  text-align: left;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 75px rgba(0, 0, 0, 0.13);
  color: #666;
}

.react-confirm-alert-svg {
  position: absolute;
  top: 0;
  left: 0;
}

.react-confirm-alert-body > h1 {
  margin-top: 0;
}

.react-confirm-alert-body > h3 {
  margin: 0;
  font-size: 16px;
}

.react-confirm-alert-button-group {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

.react-confirm-alert-button-group > button {
  outline: none;
  background: #333;
  border: none;
  display: inline-block;
  padding: 6px 18px;
  color: #eee;
  margin-right: 10px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

@keyframes react-confirm-alert-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.header2 .block-limiter {
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.header2 .brandhotelselector {
  margin-top: 5px;
}

.floatRight {
  float: right;
}

.marginBottom20 {
  margin-bottom: 20px;
}

h1 {
  text-align: left;
  color: #FFF;
}

.clearAll {
  clear: both;
}

.textRed {
  color: #EF374E !important;
}

.marginBottom20 {
  margin-bottom: 20px;
}

.textCenter {
  text-align: center !important;
}

.textRight {
  text-align: right !important;
}

.textLeft {
  text-align: left !important;
}

.assesementDate {
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
  color: #071C3E;
  margin-top: 10px;
  margin-bottom: 20px;
}

.assessmtCat {
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
  color: #071C3E;
}

.assessmtStatus {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #919191;
}

.assessDtlContainer {
  margin-top: 20px;
}

.assessDtlChart {
  float: left;
  width: 33%;
}

.assessDtlAuth {
  float: left;
  width: 33%;
}

.assessDtlDate {
  float: left;
  width: 33%;
}

.assessDtlAuth .title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #1F1F1F;
}

.assessDtlDate .title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  display: block;
  text-align: right;
  color: #1F1F1F;
}

.assessDtlAuth .name {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #919191;
}

.assessDtlDate .date {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  display: block;
  align-items: center;
  text-align: right;
}

.assessDtlDate .statusCheck {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  display: block;
  text-align: right;
  color: #007AFF;
  margin-top: 20px;
}

.btnContainer {
  width: 100%;
}

.btnContainer button {
  width: 100%;
  height: 48px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
}
.addActionPlanForm {
  width: 95%;
  padding: 10px;
  border-collapse: collapse;
  margin: 0 auto;
}

.addActionPlanForm .addAttachmentlink {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  color: #717171;
}

.addActionPlanForm td {
  padding-top: 10px;
  padding-bottom: 10px;
}

.addActionPlanForm tr:last-child td {
  padding-bottom: 20px;
}

.addActionPlanForm .txtboxrounded {
  width: 100%;
  background: #F1F1F1;
  border-radius: 78px;
}

.addActionPlanForm .control-input {
  background: #F8F8F8;
  border-radius: 6px;
  height: 30px;
  text-align: center;
}

.addActionPlanForm .control-input-holder input {
  padding-top: 0px;
  text-align: left;
}

.addActionPlanForm .control-select-inner {
  background: #F8F8F8;
  display: flex;
  justify-content: space-between;
}

.addActionPlanForm .control-select-filter-inner {
  background: #F8F8F8;
}

.addActionPlanForm .control-select-select {
  max-width: 122px;
}

.addActionPlanForm .statusText {
  height: 25px;
  border-radius: 6px;
  text-align: center;
  display: block;
}

.addActionPlanForm td {
  width: 50%;
  padding-left: 0px !important;
}

.red .control-select-inner {
  border: 1px solid red;
}

.red .control-autocomplete-inner {
  border: 1px solid red;
}

.icon-container-actionplan {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
}

.img-container-cover {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  max-width: 100px;
  height: 100%;
  border-radius: 10px 10px 0px 0px;
  margin-right: 9px;
}
h1 {
  font-size: 25px;
  margin-bottom: 5px;
  text-align: center;
}

.subHeading {
  text-align: center;
  color: #8a8a8a;
}

.shadow {
  width: 160px;
}

.fontweight600 {
  font-weight: 600;
}

.header2 .block-limiter {
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.header2 .brandhotelselector {
  margin-top: 5px;
}

.bellContainer {
  position: relative;
  width: 50px;
}

.floatRight {
  float: right;
}

.marginBottom20 {
  margin-bottom: 20px;
}

.calender-selection {
  margin-top: 5px;
}

.calender-selection .control-select-men {
  display: inline-block;
  float: left;
}

.calender-selection .control-select-filter-men {
  display: inline-block;
  float: left;
}

.displayInline {
  display: inline !important;
}

.stdcontainer .block-limiter {
  padding: 0 16px 16px 16px !important;
}

.fullWidthSelect {
  width: 100% !important;
}

.shadow {
  width: 160px;
}

.noShadow {
  box-shadow: none;
}

.tagsContainer {
  float: left;
}

.iconsContainer {
  float: left;
}

.iconsContainer svg {
  height: 20px !important;
  width: 20px !important;
  margin-right: 10px;
}

.stdIconContainer {
  margin-top: 10px;
}

.tagsContainer .tags-tag {
  background-color: #FFF;
  border: 1px solid #d1dbec;
}

.stdIconContainer svg {
  margin-right: 15px;
}

.tabContainer .tabContent {
  display: none;
}

.tabContainer .active {
  display: block;
}

.tabs {
  width: 100%;
}

.tabs .tabs-ul {
  list-style: none;
  padding-bottom: 12px;
  margin-bottom: 0px;
  display: inline-block;
  border-bottom: 1px solid #F1F1F1;
  overflow-x: auto;
  overflow-y: hidden;
  display: -webkit-box;
  display: -moz-box;
  white-space: nowrap;
}

.tabs .tabs-ul li {
  display: inline;
  margin-right: 10px;
  color: #919191;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 10px;
}

.tabs .tabs-ul li.activeTab {
  border-bottom: 3px solid #58c3bb;
  color: #000;
  font-weight: 600;
}

.subTabs {
  width: 100%;
  white-space: nowrap;
  overflow-x: auto;
}

.subTabs .subTabs-ul {
  list-style: none;
  padding-bottom: 20px;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: none;
  overflow-x: auto;
  overflow-y: hidden;
  display: -webkit-box;
  display: -moz-box;
  white-space: nowrap;
}

.subTabs .subTabs-ul li {
  display: inline;
  margin-right: 10px;
  color: #E1E1E1;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 10px;
  border-bottom: 1px solid #E1E1E1;
}

.tabs .tabs-ul li.activeSubTab {
  color: #58c3bb;
  font-weight: 600;
}

.subTabContainer {
  overflow-x: hidden;
  white-space: normal;
  min-height: 400px;
}

.subTabContainer .tabContent {
  display: none;
  padding: 10px;
}

.subTabContainer .active {
  display: block;
}

.tagsContainer .tags-tag {
  background-color: #fff;
  border: 1px solid #d1dbec;
  padding: 0px;
  font-size: 14px;
}

.submitOverlay .button {
  width: 100%;
}

.submitOverlay > .primary {
  width: 100%;
}

.submitOverlay {
  padding: 20px;
  margin: 5px;
  border-radius: 10px;
  background: white;
  padding-top: 60px;
  padding-bottom: 60px;
}

.button.layout-link.intent-discrete {
  color: #071C3E;
  text-decoration: underline;
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}

.box-spacing,
.search-wrapper {
  display: flex;
  justify-content: space-between;
}

.assessed-wrapper {
  margin: 16px 0;
  padding: 10px 6px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  line-height: 22px;
  cursor: text;
  box-shadow: inset 0 0 0 1px rgba(51, 51, 51, 0.35);
  border-radius: 4px;
  background-color: #fff;
  transition: all 125ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
}

.assessed-wrapper .control-input {
  height: 30px;
  border-radius: 78px;
}

.search-wrapper {
  align-items: center;
  -moz-column-gap: 5px;
  column-gap: 5px;
}

.existing-assessed-wrapper {
  display: flex;
  -moz-column-gap: 10px;
  column-gap: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.standard-attachment-drawer [data-rsbs-overlay] {
  max-height: calc(100dvh - 120px);
  border-radius: 16px 16px 0 0;
}

.h-device {
  height: 100dvh;
}

.ReactCrop__child-wrapper > img,
.ReactCrop__child-wrapper > video {
  -o-object-fit: contain;
  object-fit: contain;
}

.react-crop .backOverlay {
  margin: 110px 8px !important;
  max-height: calc(100vh - 145px) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ReactCrop {
  max-width: 100%;
  display: flex !important;
  justify-content: center !important;
}

.ReactCrop__child-wrapper {
  max-height: calc(100dvh - 420px) !important;
}

.ReactCrop__child-wrapper::after {
  display: block;
  padding-bottom: 100%;
}

.justify-image-center {
  display: flex;
  justify-content: center;
  max-width: 100%;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.iconsContainer span:last-child svg path {
  stroke: rgb(145, 145, 145);
}

.light-stroke path {
  stroke: #919191;
}

.no-button button {
  display: none;
}
h1 {
  font-size: 25px;
  margin-bottom: 5px;
  text-align: center;
}

.subHeading {
  text-align: center;
  color: #8a8a8a;
}

.shadow {
  width: 160px;
}

.fontweight600 {
  font-weight: 600;
}

.header2 .block-limiter {
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.header2 .brandhotelselector {
  margin-top: 5px;
}

.bellContainer {
  position: relative;
  width: 50px;
}

.floatRight {
  float: right;
}

.marginBottom20 {
  margin-bottom: 20px;
}

.calender-selection {
  margin-top: 5px;
}

.calender-selection .control-select-men {
  display: inline-block;
  float: left;
}

.calender-selection .control-select-filter-men {
  display: inline-block;
  float: left;
}

.displayInline {
  display: inline !important;
}

.stdcontainer .block-limiter {
  padding: 0 10px 10px 10px;
}

.fullWidthSelect {
  width: 100% !important;
}

.shadow {
  width: 160px;
}

.noShadow {
  box-shadow: none;
}

.tagsContainer {
  float: left;
}

.iconsContainer {
  float: left;
}

.iconsContainer svg {
  height: 20px !important;
  width: 20px !important;
  margin-right: 10px;
}

.stdIconContainer {
  margin-top: 10px;
}

.tagsContainer .tags-tag {
  background-color: #FFF;
  border: 1px solid #d1dbec;
}

.stdIconContainer svg {
  margin-right: 15px;
}

.tabContainer .tabContent {
  display: none;
}

.tabContainer .active {
  display: block;
}

.tabs {
  width: 100%;
}

.tabs .tabs-ul {
  list-style: none;
  padding-bottom: 12px;
  margin-bottom: 0px;
  display: inline-block;
  border-bottom: 1px solid #F1F1F1;
  overflow-x: auto;
  overflow-y: hidden;
  display: -webkit-box;
  display: -moz-box;
  white-space: nowrap;
}

.tabs .tabs-ul li {
  display: inline;
  margin-right: 10px;
  color: #919191;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 10px;
}

.tabs .tabs-ul li.activeTab {
  border-bottom: 3px solid #58c3bb;
  color: #000;
  font-weight: 600;
}

.subTabs {
  width: 100%;
  white-space: nowrap;
  overflow-x: auto;
}

.subTabs .subTabs-ul {
  list-style: none;
  padding-bottom: 20px;
  margin-bottom: 10px;
  display: inline-block;
  border-bottom: none;
  overflow-x: auto;
  overflow-y: hidden;
  display: -webkit-box;
  display: -moz-box;
  white-space: nowrap;
}

.subTabs .subTabs-ul li {
  display: inline;
  margin-right: 10px;
  color: #E1E1E1;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 10px;
  border-bottom: 1px solid #E1E1E1;
}

.subTabs .subTabs-ul li.activeSubTab {
  border-bottom: 2px solid #58c3bb;
  color: #58c3bb;
  font-weight: 600;
}

.subTabContainer {
  overflow-x: hidden;
  white-space: normal;
  min-height: 400px;
}

.subTabContainer .tabContent {
  display: none;
  padding: 0 !important;
}

.subTabContainer .active {
  display: block;
}

.tagsContainer .tags-tag {
  background-color: #fff;
  border: 1px solid #d1dbec;
  padding: 0px;
  font-size: 14px;
}

@media screen and (max-width: 372px) {
  .self-assesment-block-outer {
    margin-right: 5px;
  }
  .self-assesment-block {
    padding: 2px;
    margin-right: 5px;
  }
}
.white-icon svg {
  fill: white;
}
.react-tel-input{font-family:'Roboto',sans-serif;font-size:15px;position:relative;width:100%}.react-tel-input :disabled{cursor:not-allowed}.react-tel-input .flag{width:16px;height:11px;background-image:url(data:image/png;base64,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)}.react-tel-input .ad{background-position:-16px 0}.react-tel-input .ae{background-position:-32px 0}.react-tel-input .af{background-position:-48px 0}.react-tel-input .ag{background-position:-64px 0}.react-tel-input .ai{background-position:-80px 0}.react-tel-input .al{background-position:-96px 0}.react-tel-input .am{background-position:-112px 0}.react-tel-input .ao{background-position:-128px 0}.react-tel-input .ar{background-position:-144px 0}.react-tel-input .as{background-position:-160px 0}.react-tel-input .at{background-position:-176px 0}.react-tel-input .au{background-position:-192px 0}.react-tel-input .aw{background-position:-208px 0}.react-tel-input .az{background-position:-224px 0}.react-tel-input .ba{background-position:-240px 0}.react-tel-input .bb{background-position:0 -11px}.react-tel-input .bd{background-position:-16px -11px}.react-tel-input .be{background-position:-32px -11px}.react-tel-input .bf{background-position:-48px -11px}.react-tel-input .bg{background-position:-64px -11px}.react-tel-input .bh{background-position:-80px -11px}.react-tel-input .bi{background-position:-96px -11px}.react-tel-input .bj{background-position:-112px -11px}.react-tel-input .bm{background-position:-128px -11px}.react-tel-input .bn{background-position:-144px -11px}.react-tel-input .bo{background-position:-160px -11px}.react-tel-input .br{background-position:-176px -11px}.react-tel-input .bs{background-position:-192px -11px}.react-tel-input .bt{background-position:-208px -11px}.react-tel-input .bw{background-position:-224px -11px}.react-tel-input .by{background-position:-240px -11px}.react-tel-input .bz{background-position:0 -22px}.react-tel-input .ca{background-position:-16px -22px}.react-tel-input .cd{background-position:-32px -22px}.react-tel-input .cf{background-position:-48px -22px}.react-tel-input .cg{background-position:-64px -22px}.react-tel-input .ch{background-position:-80px -22px}.react-tel-input .ci{background-position:-96px -22px}.react-tel-input .ck{background-position:-112px -22px}.react-tel-input .cl{background-position:-128px -22px}.react-tel-input .cm{background-position:-144px -22px}.react-tel-input .cn{background-position:-160px -22px}.react-tel-input .co{background-position:-176px -22px}.react-tel-input .cr{background-position:-192px -22px}.react-tel-input .cu{background-position:-208px -22px}.react-tel-input .cv{background-position:-224px -22px}.react-tel-input .cw{background-position:-240px -22px}.react-tel-input .cy{background-position:0 -33px}.react-tel-input .cz{background-position:-16px -33px}.react-tel-input .de{background-position:-32px -33px}.react-tel-input .dj{background-position:-48px -33px}.react-tel-input .dk{background-position:-64px -33px}.react-tel-input .dm{background-position:-80px -33px}.react-tel-input .do{background-position:-96px -33px}.react-tel-input .dz{background-position:-112px -33px}.react-tel-input .ec{background-position:-128px -33px}.react-tel-input .ee{background-position:-144px -33px}.react-tel-input .eg{background-position:-160px -33px}.react-tel-input .er{background-position:-176px -33px}.react-tel-input .es{background-position:-192px -33px}.react-tel-input .et{background-position:-208px -33px}.react-tel-input .fi{background-position:-224px -33px}.react-tel-input .fj{background-position:-240px -33px}.react-tel-input .fk{background-position:0 -44px}.react-tel-input .fm{background-position:-16px -44px}.react-tel-input .fo{background-position:-32px -44px}.react-tel-input .fr,.react-tel-input .bl,.react-tel-input .mf{background-position:-48px -44px}.react-tel-input .ga{background-position:-64px -44px}.react-tel-input .gb{background-position:-80px -44px}.react-tel-input .gd{background-position:-96px -44px}.react-tel-input .ge{background-position:-112px -44px}.react-tel-input .gf{background-position:-128px -44px}.react-tel-input .gh{background-position:-144px -44px}.react-tel-input .gi{background-position:-160px -44px}.react-tel-input .gl{background-position:-176px -44px}.react-tel-input .gm{background-position:-192px -44px}.react-tel-input .gn{background-position:-208px -44px}.react-tel-input .gp{background-position:-224px -44px}.react-tel-input .gq{background-position:-240px -44px}.react-tel-input .gr{background-position:0 -55px}.react-tel-input .gt{background-position:-16px -55px}.react-tel-input .gu{background-position:-32px -55px}.react-tel-input .gw{background-position:-48px -55px}.react-tel-input .gy{background-position:-64px -55px}.react-tel-input .hk{background-position:-80px -55px}.react-tel-input .hn{background-position:-96px -55px}.react-tel-input .hr{background-position:-112px -55px}.react-tel-input .ht{background-position:-128px -55px}.react-tel-input .hu{background-position:-144px -55px}.react-tel-input .id{background-position:-160px -55px}.react-tel-input .ie{background-position:-176px -55px}.react-tel-input .il{background-position:-192px -55px}.react-tel-input .in{background-position:-208px -55px}.react-tel-input .io{background-position:-224px -55px}.react-tel-input .iq{background-position:-240px -55px}.react-tel-input .ir{background-position:0 -66px}.react-tel-input .is{background-position:-16px -66px}.react-tel-input .it{background-position:-32px -66px}.react-tel-input .je{background-position:-144px -154px}.react-tel-input .jm{background-position:-48px -66px}.react-tel-input .jo{background-position:-64px -66px}.react-tel-input .jp{background-position:-80px -66px}.react-tel-input .ke{background-position:-96px -66px}.react-tel-input .kg{background-position:-112px -66px}.react-tel-input .kh{background-position:-128px -66px}.react-tel-input .ki{background-position:-144px -66px}.react-tel-input .xk{background-position:-128px -154px}.react-tel-input .km{background-position:-160px -66px}.react-tel-input .kn{background-position:-176px -66px}.react-tel-input .kp{background-position:-192px -66px}.react-tel-input .kr{background-position:-208px -66px}.react-tel-input .kw{background-position:-224px -66px}.react-tel-input .ky{background-position:-240px -66px}.react-tel-input .kz{background-position:0 -77px}.react-tel-input .la{background-position:-16px -77px}.react-tel-input .lb{background-position:-32px -77px}.react-tel-input .lc{background-position:-48px -77px}.react-tel-input .li{background-position:-64px -77px}.react-tel-input .lk{background-position:-80px -77px}.react-tel-input .lr{background-position:-96px -77px}.react-tel-input .ls{background-position:-112px -77px}.react-tel-input .lt{background-position:-128px -77px}.react-tel-input .lu{background-position:-144px -77px}.react-tel-input .lv{background-position:-160px -77px}.react-tel-input .ly{background-position:-176px -77px}.react-tel-input .ma{background-position:-192px -77px}.react-tel-input .mc{background-position:-208px -77px}.react-tel-input .md{background-position:-224px -77px}.react-tel-input .me{background-position:-112px -154px;height:12px}.react-tel-input .mg{background-position:0 -88px}.react-tel-input .mh{background-position:-16px -88px}.react-tel-input .mk{background-position:-32px -88px}.react-tel-input .ml{background-position:-48px -88px}.react-tel-input .mm{background-position:-64px -88px}.react-tel-input .mn{background-position:-80px -88px}.react-tel-input .mo{background-position:-96px -88px}.react-tel-input .mp{background-position:-112px -88px}.react-tel-input .mq{background-position:-128px -88px}.react-tel-input .mr{background-position:-144px -88px}.react-tel-input .ms{background-position:-160px -88px}.react-tel-input .mt{background-position:-176px -88px}.react-tel-input .mu{background-position:-192px -88px}.react-tel-input .mv{background-position:-208px -88px}.react-tel-input .mw{background-position:-224px -88px}.react-tel-input .mx{background-position:-240px -88px}.react-tel-input .my{background-position:0 -99px}.react-tel-input .mz{background-position:-16px -99px}.react-tel-input .na{background-position:-32px -99px}.react-tel-input .nc{background-position:-48px -99px}.react-tel-input .ne{background-position:-64px -99px}.react-tel-input .nf{background-position:-80px -99px}.react-tel-input .ng{background-position:-96px -99px}.react-tel-input .ni{background-position:-112px -99px}.react-tel-input .nl,.react-tel-input .bq{background-position:-128px -99px}.react-tel-input .no{background-position:-144px -99px}.react-tel-input .np{background-position:-160px -99px}.react-tel-input .nr{background-position:-176px -99px}.react-tel-input .nu{background-position:-192px -99px}.react-tel-input .nz{background-position:-208px -99px}.react-tel-input .om{background-position:-224px -99px}.react-tel-input .pa{background-position:-240px -99px}.react-tel-input .pe{background-position:0 -110px}.react-tel-input .pf{background-position:-16px -110px}.react-tel-input .pg{background-position:-32px -110px}.react-tel-input .ph{background-position:-48px -110px}.react-tel-input .pk{background-position:-64px -110px}.react-tel-input .pl{background-position:-80px -110px}.react-tel-input .pm{background-position:-96px -110px}.react-tel-input .pr{background-position:-112px -110px}.react-tel-input .ps{background-position:-128px -110px}.react-tel-input .pt{background-position:-144px -110px}.react-tel-input .pw{background-position:-160px -110px}.react-tel-input .py{background-position:-176px -110px}.react-tel-input .qa{background-position:-192px -110px}.react-tel-input .re{background-position:-208px -110px}.react-tel-input .ro{background-position:-224px -110px}.react-tel-input .rs{background-position:-240px -110px}.react-tel-input .ru{background-position:0 -121px}.react-tel-input .rw{background-position:-16px -121px}.react-tel-input .sa{background-position:-32px -121px}.react-tel-input .sb{background-position:-48px -121px}.react-tel-input .sc{background-position:-64px -121px}.react-tel-input .sd{background-position:-80px -121px}.react-tel-input .se{background-position:-96px -121px}.react-tel-input .sg{background-position:-112px -121px}.react-tel-input .sh{background-position:-128px -121px}.react-tel-input .si{background-position:-144px -121px}.react-tel-input .sk{background-position:-160px -121px}.react-tel-input .sl{background-position:-176px -121px}.react-tel-input .sm{background-position:-192px -121px}.react-tel-input .sn{background-position:-208px -121px}.react-tel-input .so{background-position:-224px -121px}.react-tel-input .sr{background-position:-240px -121px}.react-tel-input .ss{background-position:0 -132px}.react-tel-input .st{background-position:-16px -132px}.react-tel-input .sv{background-position:-32px -132px}.react-tel-input .sx{background-position:-48px -132px}.react-tel-input .sy{background-position:-64px -132px}.react-tel-input .sz{background-position:-80px -132px}.react-tel-input .tc{background-position:-96px -132px}.react-tel-input .td{background-position:-112px -132px}.react-tel-input .tg{background-position:-128px -132px}.react-tel-input .th{background-position:-144px -132px}.react-tel-input .tj{background-position:-160px -132px}.react-tel-input .tk{background-position:-176px -132px}.react-tel-input .tl{background-position:-192px -132px}.react-tel-input .tm{background-position:-208px -132px}.react-tel-input .tn{background-position:-224px -132px}.react-tel-input .to{background-position:-240px -132px}.react-tel-input .tr{background-position:0 -143px}.react-tel-input .tt{background-position:-16px -143px}.react-tel-input .tv{background-position:-32px -143px}.react-tel-input .tw{background-position:-48px -143px}.react-tel-input .tz{background-position:-64px -143px}.react-tel-input .ua{background-position:-80px -143px}.react-tel-input .ug{background-position:-96px -143px}.react-tel-input .us{background-position:-112px -143px}.react-tel-input .uy{background-position:-128px -143px}.react-tel-input .uz{background-position:-144px -143px}.react-tel-input .va{background-position:-160px -143px}.react-tel-input .vc{background-position:-176px -143px}.react-tel-input .ve{background-position:-192px -143px}.react-tel-input .vg{background-position:-208px -143px}.react-tel-input .vi{background-position:-224px -143px}.react-tel-input .vn{background-position:-240px -143px}.react-tel-input .vu{background-position:0 -154px}.react-tel-input .wf{background-position:-16px -154px}.react-tel-input .ws{background-position:-32px -154px}.react-tel-input .ye{background-position:-48px -154px}.react-tel-input .za{background-position:-64px -154px}.react-tel-input .zm{background-position:-80px -154px}.react-tel-input .zw{background-position:-96px -154px}.react-tel-input *{box-sizing:border-box;-moz-box-sizing:border-box}.react-tel-input .hide{display:none}.react-tel-input .v-hide{visibility:hidden}.react-tel-input .form-control{position:relative;font-size:14px;letter-spacing:.01rem;margin-top:0 !important;margin-bottom:0 !important;padding-left:48px;margin-left:0;background:#FFFFFF;border:1px solid #CACACA;border-radius:5px;line-height:25px;height:35px;width:300px;outline:none}.react-tel-input .form-control.invalid-number{border:1px solid #d79f9f;background-color:#FAF0F0;border-left-color:#cacaca}.react-tel-input .form-control.invalid-number:focus{border:1px solid #d79f9f;border-left-color:#cacaca;background-color:#FAF0F0}.react-tel-input .flag-dropdown{position:absolute;top:0;bottom:0;padding:0;background-color:#f5f5f5;border:1px solid #cacaca;border-radius:3px 0 0 3px}.react-tel-input .flag-dropdown:hover,.react-tel-input .flag-dropdown:focus{cursor:pointer}.react-tel-input .flag-dropdown.invalid-number{border-color:#d79f9f}.react-tel-input .flag-dropdown.open{z-index:2;background:#fff;border-radius:3px 0 0 0}.react-tel-input .flag-dropdown.open .selected-flag{background:#fff;border-radius:3px 0 0 0}.react-tel-input input[disabled]+.flag-dropdown:hover{cursor:default}.react-tel-input input[disabled]+.flag-dropdown:hover .selected-flag{background-color:transparent}.react-tel-input .selected-flag{outline:none;position:relative;width:38px;height:100%;padding:0 0 0 8px;border-radius:3px 0 0 3px}.react-tel-input .selected-flag:hover,.react-tel-input .selected-flag:focus{background-color:#fff}.react-tel-input .selected-flag .flag{position:absolute;top:50%;margin-top:-5px}.react-tel-input .selected-flag .arrow{position:relative;top:50%;margin-top:-2px;left:20px;width:0;height:0;border-left:3px solid transparent;border-right:3px solid transparent;border-top:4px solid #555}.react-tel-input .selected-flag .arrow.up{border-top:none;border-bottom:4px solid #555}.react-tel-input .country-list{outline:none;z-index:1;list-style:none;position:absolute;padding:0;margin:10px 0 10px -1px;box-shadow:1px 2px 10px rgba(0,0,0,0.35);background-color:white;width:300px;max-height:200px;overflow-y:scroll;border-radius:0 0 3px 3px}.react-tel-input .country-list .flag{display:inline-block}.react-tel-input .country-list .divider{padding-bottom:5px;margin-bottom:5px;border-bottom:1px solid #ccc}.react-tel-input .country-list .country{padding:7px 9px}.react-tel-input .country-list .country .dial-code{color:#6b6b6b}.react-tel-input .country-list .country:hover{background-color:#f1f1f1}.react-tel-input .country-list .country.highlight{background-color:#f1f1f1}.react-tel-input .country-list .flag{margin-right:7px;margin-top:2px}.react-tel-input .country-list .country-name{margin-right:6px}.react-tel-input .country-list .search{position:sticky;top:0;background-color:#fff;padding:10px 0 6px 10px}.react-tel-input .country-list .search-emoji{font-size:15px}.react-tel-input .country-list .search-box{border:1px solid #cacaca;border-radius:3px;font-size:15px;line-height:15px;margin-left:6px;padding:3px 8px 5px;outline:none}.react-tel-input .country-list .no-entries-message{padding:7px 10px 11px;opacity:.7}.react-tel-input .invalid-number-message{position:absolute;z-index:1;font-size:13px;left:46px;top:-8px;background:#fff;padding:0 2px;color:#de0000}.react-tel-input .special-label{display:none;position:absolute;z-index:1;font-size:13px;left:46px;top:-8px;background:#fff;padding:0 2px;white-space:nowrap}
.stepper {
  display: flex;
  position: relative;
  justify-content: space-between;
  padding-right: 15px;
  z-index: 1;
}

.stepperWrapper {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  padding: 5px 5px;
}

.stepperItem {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 11px;
  list-style: none;
  position: relative;
  width: 100%;
}

.stepperItem:first-child {
  justify-content: start;
}

.stepperItem:last-child {
  justify-content: end;
}

.stepperItem::before {
  content: "";
  position: absolute;
  display: block;
  background: rgba(0, 0, 0, 0.5019607843);
  z-index: -1;
}

.stepperItem:first-child:before,
.stepperItem:last-child:before {
  top: 50%;
  bottom: 50%;
  width: 185%;
  height: 2px;
}

.stepperItem:first-child:before {
  left: 0px;
}

.stepperItem:last-child:before {
  right: 0px;
}

/* pending step css */
.stepperItem.active ~ li::before {
  background: rgba(0, 0, 0, 0.5019607843);
}

.itemWrapper {
  color: var(--gray-900, #1F1F1F);
  text-align: center;
  font-feature-settings: "clig" off, "liga" off;
  font-family: Source Sans Pro;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px;
  /* 83.333% */
  padding-right: 20px;
}

.itemWrapper.active {
  color: #919191;
}

.stepperItem:first-child.activeLineFist::before {
  background-color: #58C3BB;
}

.stepperItem:last-child.activeLineLast::before {
  background-color: #58C3BB;
}
.setting-container {
  display: flex;
  justify-content: space-between;
}

.setting-content-container {
  background-color: rgb(242, 240, 240);
  border-radius: 5px;
  padding: 10px;
  box-shadow: rgb(180, 179, 179);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.setting-content-container span {
  vertical-align: text-bottom;
}

.benefits-container > div:last-child {
  color: #1F1F1F;
}

.setting-wrapper {
  width: 90%;
  margin-top: 16px;
}

.setting-wrapper > div {
  margin-block-end: 0px !important;
  width: 100%;
}
.control-radio {
  flex: 0 0 auto;
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.control-radio:before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  background-color: transparent;
}

.control-radio-overflow {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.control-radio-overflow INPUT {
  position: absolute;
  right: 100%;
  bottom: 100%;
}
.control-radio-overflow INPUT:checked + SPAN {
  border-color: #58c3bb;
  background-color: #58c3bb;
}
.control-radio-overflow INPUT:checked + SPAN:before {
  opacity: 1;
}
.control-radio-overflow INPUT:disabled + SPAN, .control-radio-overflow INPUT[disabled] + SPAN {
  opacity: 0.5;
}
.control-radio-overflow SPAN {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 1px solid rgba(51, 51, 51, 0.35);
  transition: all 250ms ease-in-out 0ms;
  background-color: #fff;
  border-radius: 50%;
}
.control-radio-overflow SPAN:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #fff;
  opacity: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.security-container {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  padding: 10px;
  margin-bottom: 85px;
  top: 60px;
}

.security-change-password-container {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  padding: 20px 10px;
  background-color: rgb(244, 247, 248);
}

.back-container {
  position: relative;
  height: 60px;
}

.centered-element {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.icon-button {
  height: 50px;
  width: 100%;
  background-color: #CC3044;
  display: flex;
  align-items: center;
  padding: 20px;
  color: #fef3f3;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 18px;
}

.button-text {
  margin-left: 14px;
}

.delete {
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
  border: 0.5px solid #ccc;
  text-align: center;
  display: flex;
  margin-top: 20px;
  border-radius: 13px;
}

.delete-h1 {
  font-weight: 200;
  padding-top: 20px;
  text-align: center;
  font-size: 17px;
  position: relative;
  line-height: 23px;
}

.delete-text {
  font-size: 15px;
  color: grey;
  text-align: center;
}

.delete-button {
  display: flex;
  margin-top: 15px;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
}

.email-selector .control-select-filter-inner {
  height: 56px;
}

.email-selector .control-select-filter-select.has-placeholder {
  color: grey;
}

.display-gap {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.border-ui {
  border: 0.5px solid #919191;
  padding: 10px;
  margin: 5px;
  padding-top: 20px;
  border-radius: 5px;
}

.nice-border {
  padding: 0px 10px;
  margin-top: 3px;
  border-radius: 10px;
}

.security-container .security-container {
  margin-bottom: 0;
}

.email-wrapper > div:nth-child(1) .control-input-holder input {
  padding-top: 0 !important;
}
.cv-form-container .formDiv {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  cursor: text;
  border-radius: 4px;
  background-color: #fff;
  transition: all 125ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
  height: 56px;
  width: 100%;
  position: relative;
  border: 1px solid #E1E1E1;
  border-radius: 6px;
  margin: 0px;
}

.cv-form-container .formDiv label {
  position: absolute;
  top: 18px;
  left: 0;
  color: grey;
  pointer-events: none;
  transition: all 0.3s ease;
  text-indent: 10px;
  line-height: 22px;
  font-size: 17px;
}

.cv-form-container .formDiv input {
  height: 100%;
  width: 100%;
  padding: 2px;
  border: none;
  font-size: 0.9rem;
  text-indent: 10px;
  box-sizing: border-box;
  border-radius: 6px;
  padding-top: 16px;
  background-color: transparent;
}

.cv-form-container .formDiv input:focus {
  border: none;
  outline: none;
}

.cv-form-container .formDiv label.hasValue,
.cv-form-container .formDiv:focus-within label {
  transform: translateY(-10px);
  font-size: 12px;
  line-height: 16px;
}

.cv-form-container .formDiv.hasError {
  box-shadow: inset 0 0 0 1px rgba(204, 48, 68, 0.3);
  background-color: rgba(204, 48, 68, 0.07);
}

.cv-form-container .formDiv .react-datepicker__input-container {
  position: unset;
}

.floating-wrapper {
  position: relative;
}

.floating-wrapper > label {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 12px;
  color: grey;
  transition: all 0.3s;
}

.floating-wrapper > label.hasValue, .floating-wrapper:has(.control-input.focus) > label {
  transform: translateY(-10px);
  font-size: 12px;
}

.floating-wrapper > label.hasValue, .floating-wrapper:has(.control-textarea.focus) > label {
  transform: translateY(-10px);
  font-size: 12px;
}

.floating-wrapper .control-textarea {
  box-shadow: inset 0 0 0 1px #E1E1E1;
}
.floating-wrapper .control-textarea.has-error {
  box-shadow: inset 0 0 0 1px rgba(204, 48, 68, 0.3);
  background-color: rgba(204, 48, 68, 0.07);
}

.floating-wrapper .control-textarea textarea {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
}

.floating-wrapper .control-textarea.has-value, .floating-wrapper .control-textarea.focus {
  padding-top: 20px;
  font-size: 0.9rem;
}
.nav-wrapper {
  position: relative;
  width: 100%;
  background-color: #fff;
  height: 84px !important;
}
.nav-wrapper:before, .nav-wrapper:after {
  content: "";
  position: absolute;
  width: 147px;
  height: 100%;
  background-repeat: no-repeat;
  top: 0px;
  opacity: 0;
}
.nav-wrapper:before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJQAAABYCAMAAAAkyC4pAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAMBQTFRFAAAAAAAA////AAAAVVVVAAAAQEBAAAAAAAAAMzMzKioqAAAAGRkZAAAAAAAAHBwcAAAAEhISDw8PAAAADg4OAAAAAAAADQ0NDQ0NAAAAAAAAAAAAAAAACAgICAgIAAAACAgIAAAACwsLwMDA6urq+/v7////aWlp6urqAAAA+fn56+vrAAAAoqKiAAAA8/Pz/f39AAAA8vLy2tra9fX1l5eX+/v7AAAAp6en9vb2zMzM+fn5/v7+gICAJCQkFxcX7Xf6qAAAAEB0Uk5TAAEBAgMDBAQFBQYICgkKCQsOERISFBMTFBEPGBweHx8gHhhVneP/J5wH1JsONBCo4gyYS5Yb0gYalSik0QIHC+5PvZwAAAL/SURBVHic7VvJdtowFH02sgRBNm4ZTNJgkk7pkM5DOqX8/1/lDVLgYBbaSQvdyPKbdY8Q4mTxADwKHlAUOFhgVRxi908Bzu1tAPt4XwZcmX0Fl3CQVfgM74LDeuVIVdpoY5Qx9MJhWFKaRa33JjM23uYClcvAZyKWiQ/HaCyC+mMEj/FeG/sqNFWm0rqqmJsZn01t3dSWhm0ay68ZiYS68b7GWivWWswszjCUdfRz3owCOYh0KjaTDKmN86zxqO3+hR6KqpHTSE/bJ0/ni+WqWzG61VpEp695XuAzJ1vXiceFdDJhkpNW846DfYWOleXKm6jcUkovuVrnE2Wh+TlyGtuL9bPLTb/dXm2v+6u+3/Yk4YMmB5aucaCAAeTtxXtNwT6o50lmjOm3G04gCRMwZLPxNTm9p8U45HER1C9BTez58xcvX71OCKBn85s3sVkcAd5e3LyLTeIY0C7fx+YwANx+iE1hCPj4KTaFIWCR3IlCUl1sBicAy9gMTiBNUqvYDE4A1rEZnECapPKZCkSaO5Uvz0BkUqFI855K8kpIcqeSPFNJkkry48s3eiDS/PiS3KlMKhBpnqn82xeINM9UJhWINEkl+e1LcqfylRCITCoUaZLKV0Ig8k6FIpMKRZqkkvy3Pf8gByJNUvnyDEQ+6KHIpEKRJqkkf2aS3Kl8eQYizcszyYOeJKlFbAYnAOexGZwA3H6OTWEI+PI1NoUhYPotNoUhYNx+j81hAFBnP37GJnEMKKu7X79jszgCwKi6m/75+y82kUNQN8G9mvyfUjNA23CvgG1t07Y7aRxod6xLf0DTzKxvMkDrztq2fWwMwJymtZy8o4yW66Fumx2VcZFc1LZo4xVt3ex24mrdKlYaMO5HSlUMo6j7odIsV9pUSgRFJvRVzktmzNGUZ1RltGSToIxh2VAyJSo00p8RJ5cih6wg0VJRa1bgoDGkKMrCdajwXNJclmIq0Va69hW0AatoRQVEEhuVcKn0KqUcj1L6WHgRjvP9Kq5PhVOp9gPkpg9PId44ZgAAAABJRU5ErkJggg==);
  left: 0px;
}
.nav-wrapper:after {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJMAAABYCAMAAADGFDVQAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAM9QTFRFAAAAAAAAAAAAAAAAQEBAAAAAMzMzVVVVAAAAgICAAAAAAAAAGRkZHBwcAAAAJCQk////AAAAAAAADQ0NAAAADQ0NAAAADg4OEBAQEhISAAAAAAAAAAAACAgIAAAACAgICAgICQkJAAAAAAAAAAAA/f39////+Pj47e3tj4+PCwsL6urqb29vDw8P+fn5bm5u6+vrycnJ7u7u/Pz8AAAA+vr6FBQU9PT0ubm59fX1+/v7nZ2dAAAA9vb2p6enKioq////5ubmFxcXICAgAAAA86gBdgAAAEV0Uk5TAAEDBAQFBQMCAgkKCgkIBwEREhMTFBQSEA4LHB4fHyAeHRsXDvH/1as5F5wnEdQlm1Ga4g/TDaYsltIaBpUaBuBICwgHICbATQAAAvtJREFUeJztW8m22jAM9QSBOFA/Yoa6JI+2lM7zPLwOtP//TZVkJ5zuvKsWvsS2JEvKPXEGFpYQUkohxQhSZOpxjKKIRikHl+gron1ocsgw2C4pxZhGpDSXDClghNJGR5iJMVMYtMLOGGUMClNUtK7QQw/ORleGRGMuJj3Rgy05VikC2jRapuPp9ASSgD56mJmcR2q1baytrW1ggB7UGqQFmhZkofkGj8bSZAMT5IxxdZqD+CZa62gmcRET1SkPqvFENemYbBEjMMPy1lRJB5yuVq33vsXOt54Gkny7isPat5vB3vq1T56ENfVbaOSMWdphlpK19FsnycO5tpcz+JaUTTSsVrvbYakVkLqz73o4ENd9h+gPPR59v0dLD0ac2nfXIHQoRXNCFz0pB3rCbBdn9+g8OHXUxR584CQUgBIEgMvhcPfefX+sJzMnHpzY4OGjx092djoT/5vIv3j67LnVzDidXrw8LrlxOr3aBHacTq+P/Di92fHj9PaKH6fTiiGnLUNOHK8TR05t4ZQFz5ATx+eO43Xi+NxxvE7lfspDeT/lgSMnjmtX3k954Lh2HDmVtctDee7yUP4X5IEjp3KP54Hj+4njc8eRE8e143iPc+RU1i4PHJ87jteJIyeO32COnMra5YHju6BwygPH+6l8g/PAkRPH+4njdeLIqaxdHjhyKt+WPJS1ywPHbzBHThz3ZL3jx+n9B36cPjLcC/mJ357Rz8Fw4/Tl6zfFjNPN9x+V5MTp582vxWQmhcA9+uHcpM38uEffhlgGYENocEe/DXSgsQloPcdd/uFMeqoasItmqAgAKyQMwY4AGXJh8DlQQswHemPPmCZ61r//TNTMASetKl0po7SpTKU1SKpS0DR0CtXKKIIGExhNsmtyA6GiEE3KGA1GaBADeWM0CpgfZY3BGFiBEX+aJtVczqluw1E1iKOyDuecAFGSjppMRR5gkKmUhHqHfZrGAOFSnYlzVDHiKIPDFufRhilSKA5ODKUqUrhYcOJiKclfqBz+w5ZwsQEAAAAASUVORK5CYII=);
  right: 0px;
}
.nav-wrapper .navigation-bg {
  position: absolute;
  z-index: 0;
  bottom: 0;
  width: 100%;
}
.nav-wrapper .nav-container {
  position: relative;
  box-shadow: 0 0 2px 2px #e1e1e1;
  border-radius: 6px 6px 0 0;
  height: 80px;
  margin-top: 4px;
}
.nav-wrapper .nav-container:before {
  content: "";
  position: absolute;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFUAAAA7CAMAAAA91TZCAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAK5QTFRFAAAAgICA1NTU8PDw////////////////////////////////////////+/v7////6+vr3t7e7e3t9vb2+fn5/Pz8/f39/v7+/Pz8+vr69/f37Ozs7e3t7u7u8PDw9fX1+Pj4+vr6/f39+/v78vLy4eHh4+Pj5ubm8fHx9/f37Ozs6Ojo7+/v6enp8/Pz/Pz86urq6+vr9PT0+fn59vb25+fn5eXl4uLi5OTk4ODg2FRYkgAAADp0Uk5TAwIGEThksPj/8NCdbUk+KA1GgbLg4OP//PLAfP///////////////////////////////////////0NdF8YAAALSSURBVHic1dfpkuIgEADg7M3e97IH4VZDgBxA4sz7v9jiVM2YxDgeYX8sZamJ5WcLTSedZdmTp8+ev3j5Ciwfr9+8fff+w8dPWfb5y9dv338AmADdDQh//vr9J0M5JpTxRCrkghKZZ6v1BhVKpFKFwqVeZwAoYytap1FrVTQt5dnufYEcSxIsZA7J+HqnAiPTBAtp0YIH1Zs0aq1yv1chCiKFKkLO9yooSRrVlWCo8hTogZokVFCTkYp8EhUSNFJDEhU4M1QNTaOGkSoTxSrkUA1VGpWTofqP8pWIFBkrJpnlWAJ0V7JGqkxRtyGT48ySPoXq8TizjEowr7Uy48xCKkGBrQNyQ5W1LsHEMtfQocpbyRZPQVwsDYYqyDFdHCukGI3VyiyeWMgVqsYqbavFu4s5S8cqsIVfGCz3sgETtVqaW1CE0kxVpeWyq0wMVd8XvgcVlMvWC9YKlfcHe5U2i262dsnqDlWgsVpQumNaNQ8HA9Vpef1OgL7SZE4FbRmuzVnOSan3h0NV6eLKehiXynSDFBqqADeVv4rlvrL54Hik8g6Ra0oXZ67Vw5UeqUD1JtQXrxisienV8MxYBcbii/cC5BRrMzo1UQGyl7ZJsRkqdDs+N1W5bqS6JL9gHXCjJ1+YqkD0tggXLFnssGw/3ZMHamS1Cee2oDUj+BCdUYHYWBN8fUa4UHiSd91h9ZhRAc97JNXJcGHNQlH27czPz6kxwbbWOC8ec3kdu2uj13juw3kViJuuxY6KY/MQ44wde9vfzF8/jqjxBmGlS+x8nN+DgCEXzBOM9E1+5EePqkC0W12ailAh4lTEAXZPUYykqkyptzPLdFLdube9LbEkgVIWsd2D+UCqAtnNyj7SoDymRjdfrza2RTmWVRxOysLkpe2362P//Rw1jng9vt32G62ttbrrNlHU+ak+6qR6JxPTbLpo2sZU59w1nKVePP4n9S/OFeh4vcq/IAAAAABJRU5ErkJggg==);
  width: 85px;
  height: 88px;
  top: -4px;
  left: 0;
  right: 0;
  margin: auto;
  background-repeat: no-repeat;
}
.nav-wrapper .customNavItem {
  width: 80px;
}
.nav-wrapper .customNavItem .customNavBar {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 20px;
}
.nav-wrapper .customNavItem .customNavBar .customIconContainer {
  background-color: #4FADA6;
  box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.2);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: relative;
}
.nav-wrapper .customNavItem .customNavBar .customIconContainer.active {
  background-color: #071C3E;
}
.nav-wrapper .customNavItem .customNavBar .customIconContainer svg {
  position: absolute;
  top: 8px;
  left: 10px;
}
.nav-wrapper .customNavItem .customNavBar .customIconContainer .active-dot {
  position: relative;
}
.nav-wrapper .customNavItem .customNavText {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -1px;
}
.style {
  width: 349px;
  height: 251px;
  top: 399px;
  left: 15px;
  padding: 10px;
  gap: 23px;
  background-color: #FAFAFA;
}

.vector {
  color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h1-text {
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  line-height: 48px;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  font-size: 21px;
}

.para {
  color: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  text-align: center;
  line-height: 38px;
}

.retry {
  display: flex;
  margin-top: 16px;
  line-height: 42px;
  align-items: center;
  justify-content: center;
}

.internet-backOverlay {
  width: 75%;
  height: 180px;
  top: 418px;
  left: 26px;
  border-radius: 8px;
  border: 1px solid #DEE2E6;
  padding: 36px 40px 36px 40px;
  gap: 24px;
  background-color: #FFFFFF;
}

.overlay-div {
  margin-top: 22px;
  width: 321px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.overlay-div h1 {
  font-size: 27px;
  font-weight: 600;
  line-height: 24.2px;
}

.overlay-div p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400px;
  color: rgba(84, 89, 94, 0.6);
}

.overlay-button {
  display: flex;
  margin-top: 42px;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 100%;
}

.prompt {
  background-color: rgba(217, 217, 217, 0.3803921569) !important;
  opacity: 38%;
  z-index: 2000;
}

.show-button {
  z-index: 2500;
  font-size: larger;
}
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: hsl(6, 78%, 57%);
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);

  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);

  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;

  /* Used only for colored theme */
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;

  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  /* used to control the opacity of the progress trail */
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
  align-items: end;
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  width: var(--toastify-toast-width);
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: var(--toastify-toast-padding);
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: var(--toastify-toast-shadow);
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  /* webkit only issue #791 */
  z-index: 0;
  /* inner swag */
  display: flex;
  flex: 1 auto;
  align-items: center;
  word-break: break-word;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
  .Toastify__toast {
    --toastify-toast-width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}

.Toastify__toast-container[data-stacked='true'] {
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed='false'] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed='true']:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos='top'] {
  top: 0;
}

.Toastify__toast--stacked[data-pos='bot'] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos='bot'].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos='top'].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  margin-inline-end: 10px;
  width: 22px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  z-index: 1;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: unset;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover,
.Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
  transform-origin: left;
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden='true'] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/*# sourceMappingURL=application.css.map*/