/* ---------------- LOAD MOBILE CSS ---------------- */
@import url("hs_apply_mobile.css");

/* ---------------- Navigator --------------*/
.hs_nav_container {
  --navColor: var(--ubPrimaryColor, #154273);
  position: relative;
  padding: 10px 0px 30px 0px;
}

ol.hs_nav {
  list-style: none;
  display: flex;
  counter-reset: navigation-counter 0;
  padding: 0;
  margin: 0;
}

ol.hs_nav.hs_nav_hori {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

ol.hs_nav.hs_nav_vert {
  row-gap: 15px;
  flex-direction: column;
}

ol.hs_nav .hs_nav_section {
  flex: 1 1 0px;
  font-size: 1em;
  list-style: none;
  margin: 0;
}

ol.hs_nav .hs_nav_section a {
  text-decoration: none;
  color: unset;
}

ol.hs_nav .hs_nav_section span {
  display: flex;
  color:  #757575;
}

ol.hs_nav.hs_nav_hori .hs_nav_section span {
  text-align: center;
  flex-direction: column-reverse;
  padding: 0px 5px;
}

ol.hs_nav.hs_nav_vert .hs_nav_section span {
  line-height: 31px;
}

ol.hs_nav .hs_nav_section.hs_nav_section_complete span {
  color: black;
}

ol.hs_nav .hs_nav_section.hs_nav_section_current span {
  color: #154273; /*IE fallback*/
  color: var(--navColor, #154273);
  font-weight: bold;
}

/* Before of section*/
ol.hs_nav .hs_nav_section span::before {
  counter-increment: navigation-counter;
  content: counter(navigation-counter);
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
  border: solid 3px #e1e1e1;
  border-radius: 50%;
  background-color: white;
  z-index: 2;
  text-align: center;
  line-height: 25px;
  color:  #757575;
  box-sizing: content-box;
}

ol.hs_nav.hs_nav_hori .hs_nav_section span::before {
  margin: auto;
  margin-top: 10px;
}

ol.hs_nav.hs_nav_vert .hs_nav_section span::before {
  margin-right: 10px;
}

ol.hs_nav .hs_nav_section.hs_nav_section_complete span::before {
  background-color: #154273; /*IE fallback*/
  border-color: #154273; /*IE fallback*/
  background-color: var(--navColor, #154273);
  border-color: var(--navColor, #154273);
  color: white;
}

ol.hs_nav .hs_nav_section.hs_nav_section_current span::before {
  border-color: #154273; /*IE fallback*/
  color: #154273; /*IE fallback*/
  border-color: var(--navColor, #154273);
  color: var(--navColor, #154273);
  font-weight: bold;
  background-color: white;
}

/* Horizontal line */
ol.hs_nav .hs_nav_section {
  position: relative;
}

ol.hs_nav.hs_nav_hori .hs_nav_section::after {
  content: '';
  width: 100%;
  border-bottom: solid 3px #e1e1e1;
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 1;
}

ol.hs_nav.hs_nav_hori .hs_nav_section.hs_nav_section_complete::after {
  border-color: #154273; /*IE fallback*/
  border-color: var(--navColor, #154273);
}

ol.hs_nav.hs_nav_hori .hs_nav_section:last-child::after {
  display: none;
}

/* Vertical line */
ol.hs_nav.hs_nav_vert .hs_nav_section::after {
  content: '';
  height: 100%;
  top: 50%;
  left: 14px;
  border-left: solid 3px #e1e1e1;
  position: absolute;
  z-index: 1;
}

ol.hs_nav.hs_nav_vert .hs_nav_section.hs_nav_section_complete::after {
  border-color: #154273; /*IE fallback*/
  border-color: var(--navColor, #154273);
}

ol.hs_nav.hs_nav_vert .hs_nav_section:last-child::after {
  display: none;
}

/* ---------------- Cammio ---------------- */
.hs_platform_form .form-group label.form-label.form-label-cammio,
.hs_platform_form .form-group label.form-label.form-label-flipbase {
  width: 100%;
  display: inline-block;
}

.hs_platform_form .form-group .form-field.flipbase-video-pitch {
  width:100%;
}

.hs_platform_form .form-group div.cammio-video-pitch-wrapper.form-field,
.hs_platform_form .form-group div.flipbase-video-pitch-wrapper.form-field {
  width: 100%;
  display: inline-block;
  border: 1px solid #8F8F8F;
  border-radius: var(--ubBorderRadius);
  background-color: white;
  max-width: 600px;
}

.hs_platform_form .form-group.error .cammio-video-pitch-wrapper,
.hs_platform_form .form-group.error .flipbase-video-pitch-wrapper {
  color: #DB0000;
}

/* ---------------- SUMO SELECT ---------------- */
/* Based on https://github.com/HemantNegi/jquery.sumoselect but with custom changes*/

.SumoSelect p {
  margin: 0;
}

.SumoSelect {
  /*width: 200px;*/
  width: 100%;
}

.SelectBox {
  padding: 5px 8px;
}

.sumoStopScroll {
  overflow:hidden;
}

/* Filtering style */
.SumoSelect .hidden {
  display:none;
}

.SumoSelect .search-txt {
  display:none;
  outline:none;
}

.SumoSelect .no-match {
  display:none;
  padding: 6px;
}

.SumoSelect.open .search-txt {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 5px 8px;
  border: none;
  box-sizing: border-box;
  border-radius: 5px;
}

.SumoSelect.open>.search>span,
.SumoSelect.open>.search>label {
  visibility: hidden;
}

/*this is applied on that hidden select. DO NOT USE display:none; or visiblity:hidden; and Do not override any of these properties. */
.SelectClass,
.SumoUnder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  box-sizing: border-box;
  opacity: 0;
}

.SelectClass {
  z-index: 1;
}

.SumoSelect > .optWrapper > .options  li.opt label,
.SumoSelect > .CaptionCont,.SumoSelect .select-all > label {
  user-select: none;
}

.SumoSelect {
  display: inline-block;
  position: relative;
  outline:none;
}

.SumoSelect:focus > .CaptionCont,
.SumoSelect:hover > .CaptionCont,
.SumoSelect.open > .CaptionCont {
  outline: 1px auto #005fcc;
  outline-offset: 0px;
  border-color: #005fcc;
}

.SumoSelect > .CaptionCont {
  position: relative;
  border: 1px solid #8F8F8F;
  min-height: 14px;
  background-color: #fff;
  border-radius: var(--ubBorderRadius);
  margin:0;
  padding: 8px 10px;
  font-size: 1em;
}

.hs_platform_form .form-group.error .SumoSelect > .CaptionCont {
  border: 1px solid #DB0000;
}

.SumoSelect > .CaptionCont > span {
  display: block;
  padding-right: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor:default;
}

.SumoSelect > .CaptionCont > label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
}

.SumoSelect > .CaptionCont > label > i {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wMdBhAJ/fwnjwAAAGFJREFUKM9jYBh+gBFKuzEwMKQwMDB8xaOWlYGB4T4DA0MrsuapDAwM//HgNwwMDDbYTJuGQ8MHBgYGJ1xOYGNgYJiBpuEpAwODHSF/siDZ+ISBgcGClEDqZ2Bg8B6CkQsAPRga0cpRtDEAAAAASUVORK5CYII=');
  background-position: center center;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  opacity: 0.8;
}

.SumoSelect > .optWrapper {
  display:none;
  z-index: 1000;
  top: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
  border-radius: var(--ubBorderRadius);
  overflow: hidden;
}

.SumoSelect.open > .optWrapper {
  top:35px;
  display:block;
}

.SumoSelect.open > .optWrapper.up {
  top: auto;
  bottom: 100%;
  margin-bottom: 5px;
}

.SumoSelect > .optWrapper ul {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  overflow: auto;
}

.SumoSelect > .optWrapper > .options {
  border-radius: var(--ubBorderRadius);
  position:relative;
  /*Set the height of pop up here (only for desktop mode)*/
  max-height: 250px;/*height*/
}

.SumoSelect > .optWrapper.okCancelInMulti > .options {
  border-radius: 2px 2px 0 0;
}

.SumoSelect > .optWrapper.selall > .options {
  border-radius: 0 0 2px 2px;
}

.SumoSelect > .optWrapper.selall.okCancelInMulti > .options {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.group.disabled > label{
  opacity:0.5;
}

.SumoSelect > .optWrapper > .options li ul li.opt{
  padding-left: 22px;
}

.SumoSelect > .optWrapper.multiple > .options li ul li.opt{
  padding-left: 50px;
}

.SumoSelect > .optWrapper.isFloating > .options {
  max-height: 100%;
  box-shadow: 0 0 100px #595959;
}

.SumoSelect > .optWrapper > .options  li.opt {
  position: relative;
  border-bottom: 1px solid #f5f5f5;
  line-height: 1.5em;
  padding: 8px 10px;
}

.SumoSelect > .optWrapper > .options > li.opt:first-child {
  border-radius: 2px 2px 0 0;
}

.SumoSelect > .optWrapper.selall > .options > li.opt:first-child {
  border-radius:0;
}

.SumoSelect > .optWrapper > .options > li.opt:last-child {
  border-radius: 0 0 2px 2px;
  border-bottom: none;
}

.SumoSelect > .optWrapper.okCancelInMulti > .options > li.opt:last-child {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.opt:hover {
  background-color: #E4E4E4;
}

.SumoSelect > .optWrapper > .options li.opt.sel, .SumoSelect .select-all.sel{
  outline: 1px auto #005fcc;
  outline-offset: -1px;
  border-color: #005fcc;
  background-color: transparent;
}

.SumoSelect > .optWrapper > .options li label {
  overflow: hidden;
  display: block;
  cursor: pointer;
  font-size: 0.9em;
}

.SumoSelect > .optWrapper > .options li span {
  display: none;
}

.SumoSelect > .optWrapper > .options li.group > label {
  cursor: default;
  padding: 8px 6px;
  font-weight: bold;
}

/*Floating styles*/
.SumoSelect > .optWrapper.isFloating {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 90%;
  bottom: 0;
  margin: auto;
  max-height: 90%;
}

/*disabled state*/
.SumoSelect > .optWrapper > .options li.opt.disabled {
  background-color: inherit;
  pointer-events: none;
}

.SumoSelect > .optWrapper > .options li.opt.disabled * {
  opacity: 0.5;
}

/*styling for multiple select*/
.SumoSelect > .optWrapper.multiple > .options li.opt {
  padding-left: 35px;
  cursor: pointer;
}

.SumoSelect > .optWrapper.multiple > .options li.opt span,
.SumoSelect .select-all > span {
  position:absolute;
  display:block;
  width:30px;
  top:0;
  bottom:0;
  margin-left:-35px;
}

.SumoSelect > .optWrapper.multiple > .options li.opt span i,
.SumoSelect .select-all > span i {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #AEAEAE;
  border-radius: 2px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.SumoSelect > .optWrapper > .MultiControls {
  display: none;
  border-top: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.13);
  border-radius: 0 0 3px 3px;
}

.SumoSelect > .optWrapper.multiple.isFloating > .MultiControls {
  display: block;
  margin-top: 5px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls {
  display: block;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p {
  padding: 6px;
}

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p:focus {
  box-shadow: 0 0 2px #a1c0e4;
  border-color: #a1c0e4;
  outline: none;
  background-color: #a1c0e4;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p {
  display: inline-block;
  cursor: pointer;
  padding: 12px;
  width: 50%;
  box-sizing: border-box;
  text-align: center;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p:hover {
  background-color: #f1f1f1;
}

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnOk {
  border-right: 1px solid #DBDBDB;
  border-radius: 0 0 0 3px;
}
.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnCancel {
  border-radius: 0 0 3px 0;
}
/*styling for select on popup mode*/
.SumoSelect > .optWrapper.isFloating > .options li.opt {
  padding: 12px 6px;
}

/*styling for only multiple select on popup mode*/
.SumoSelect > .optWrapper.multiple.isFloating > .options li.opt {
  padding-left: 35px;
}

.SumoSelect > .optWrapper.multiple.isFloating {
  padding-bottom: 43px;
}

.SumoSelect > .optWrapper.multiple > .options li.opt.selected span i,
.SumoSelect .select-all.selected > span i,
.SumoSelect .select-all.partial > span i{
  background-color: rgb(17, 169, 17);
  box-shadow: none;
  border-color: transparent;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAABMSURBVAiZfc0xDkAAFIPhd2Kr1WRjcAExuIgzGUTIZ/AkImjSofnbNBAfHvzAHjOKNzhiQ42IDFXCDivaaxAJd0xYshT3QqBxqnxeHvhunpu23xnmAAAAAElFTkSuQmCC');
  background-repeat: no-repeat;
  background-position: center center;
}

/*disabled state*/
.SumoSelect.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.SumoSelect.disabled > .CaptionCont {
  border-color:#ccc;
  box-shadow:none;
}

/**Select all button**/
.SumoSelect .select-all {
  border-radius: 3px 3px 0 0;
  position: relative;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  padding: 8px 0 3px 35px;
  height: 20px;
  cursor: pointer;
}

.SumoSelect .select-all > label,
.SumoSelect .select-all > span i {
  cursor: pointer;
}

.SumoSelect .select-all.partial > span i {
  background-color:#ccc;
}

/*styling for optgroups*/
.SumoSelect > .optWrapper > .options li.optGroup {
  padding-left: 5px;
  text-decoration: underline;
}

.hs_platform_form div.optWrapper.multiple li.group.disabled {
  display: none;
}