/*
 * COLORS
 */
/*
 * FONT AND TEXT
 */
/*
 * SIZES AND PREFIXES
 */
/*
 * MEDIA QUERIES
 */
.--center-ver {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.--unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.--click-through {
  pointer-events: none;
}

.--no-scroll-bar {
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
}
.--no-scroll-bar::-webkit-scrollbar {
  width: 0 !important;
}

.input-base {
  border: none;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  padding: 11px 0px 11px 13px;
  box-shadow: none;
  -webkit-transition: border 0.3s ease-in-out;
  -moz-transition: border 0.3s ease-in-out;
  -ms-transition: border 0.3s ease-in-out;
  -o-transition: border 0.3s ease-in-out;
  transition: border 0.3s ease-in-out;
  -webkit-transition: box-shadow 0.3s ease-in-out;
  -moz-transition: box-shadow 0.3s ease-in-out;
  -ms-transition: box-shadow 0.3s ease-in-out;
  -o-transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
}
.input-base::placeholder {
  color: #8DA1B7;
}

.display-none {
  display: none;
}

.subsection {
  padding-bottom: 10px;
  border-top: solid 1px #C9D3DC;
}
.subsection:last-of-type {
  border-bottom: solid 1px #C9D3DC;
}

.subsection__expander {
  font-size: 14px;
  padding-left: 5px;
  height: 50px;
}
.search-entry .subsection__expander {
  cursor: pointer;
  border-top: solid 1px #C9D3DC;
  width: 100%;
}

.subsection__title {
  font-size: 14px;
  font-weight: 900;
  color: #424B5A;
  line-height: 50px;
  font-family: "Lato";
  text-transform: uppercase;
  margin-left: 10px;
}

.subsection__expandable {
  padding-bottom: 30px;
  margin-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 1200px) {
  .subsection__expandable {
    vertical-align: top;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.expander-icon {
  color: rgb(var(--primary-color));
}

button.firstFormButton {
  width: 0px;
  height: 0px;
  padding: 0px;
  margin: 0px;
  float: left;
  border: 0px;
}

@media (min-width: 768px) {
  .entry-form-core__pair-not-full-width:nth-of-type(odd) {
    padding-right: 15px;
  }
  .entry-form-core__pair-not-full-width:nth-of-type(even) {
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .entry-form-core__pair-not-full-width:nth-of-type(odd) {
    padding-right: 0px;
  }
  .entry-form-core__pair-not-full-width:nth-of-type(even) {
    padding-left: 0px;
  }
}

.entry-form-core__pair, .entry-form-core__full-width {
  position: relative;
  vertical-align: top;
}
.entry-form-core__pair:not(:last-of-type), .entry-form-core__full-width:not(:last-of-type) {
  margin-bottom: 10px;
}
.entry-form-core__pair:last-of-type + .entry-form-core__full-width, .entry-form-core__full-width:last-of-type + .entry-form-core__full-width {
  margin-top: 10px;
}
.entry-form-core__pair.entry-form-core__full-width:last-of-type + .entry-form-core__pair-not-full-width, .entry-form-core__full-width:last-of-type + .entry-form-core__pair-not-full-width {
  margin-top: 10px;
}
.entry-form-core__pair.entry-form-core__full-width:last-of-type + .entry-form-core__pair-not-full-width + .entry-form-core__pair-not-full-width, .entry-form-core__full-width:last-of-type + .entry-form-core__pair-not-full-width + .entry-form-core__pair-not-full-width {
  margin-top: 10px;
}
.entry-form-core__pair .form-input__time, .entry-form-core__full-width .form-input__time {
  display: inline-flex;
  width: 100%;
}
@media (min-width: 1200px) {
  .entry-form-core__pair .form-input__time, .entry-form-core__full-width .form-input__time {
    width: calc(100% - 190px);
  }
}
.entry-form-core__pair > input, .entry-form-core__full-width > input {
  height: 40px;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-left: 9px;
  border-radius: 6px;
  border: solid 1px #C9D3DC;
  outline: none;
  width: 100%;
}
.entry-form-core__pair > input:focus, .entry-form-core__full-width > input:focus {
  box-shadow: 0px 0px 5px rgba(var(--primary-color), 0.3);
  border: solid 1px rgba(var(--primary-color), 0.5);
}
@media (min-width: 1200px) {
  .entry-form-core__pair > input, .entry-form-core__full-width > input {
    width: calc(100% - 190px);
  }
}
.entry-form-core__pair input[class*=form-input__time-input], .entry-form-core__full-width input[class*=form-input__time-input] {
  width: unset;
  flex: 1;
}
.entry-form-core__pair input:disabled, .entry-form-core__full-width input:disabled {
  background-color: #ECF1F5;
}
.entry-form-core__pair textarea:disabled, .entry-form-core__full-width textarea:disabled {
  background-color: #ECF1F5;
}
@media (min-width: 768px) {
  .entry-form-core__pair, .entry-form-core__full-width {
    display: inline-block;
    width: calc(50% - 3px);
  }
}
@media (min-width: 2560px) {
  .entry-form-core__pair, .entry-form-core__full-width {
    display: inline-block;
    width: calc(33% - 3px);
  }
}

.modal-modal .entry-form-core__pair, .modal-modal .entry-form-core__full-width {
  padding-right: 0px !important;
  padding-left: 0px !important;
}

@media (min-width: 1200px) {
  .entry-form-core__full-width .entry-form-core__pair-label {
    display: inline-block;
    width: 174px;
    text-align: right;
    margin-right: 13px;
    line-height: 40px;
    vertical-align: top;
  }
}
@media (min-width: 1200px) {
  .entry-form-core__full-width.entry-form-core__block-label .entry-form-core__pair-label {
    display: block;
    width: unset;
    text-align: left;
    line-height: unset;
  }
}
.entry-form-core__full-width.entry-form-core__block-label .grid-filter-container {
  margin-top: 0px;
}
@media (min-width: 768px) {
  .entry-form-core__full-width {
    display: block;
    width: unset;
  }
}
@media (min-width: 2560px) {
  .entry-form-core__full-width {
    display: block;
    width: unset;
  }
}

.entry-form-core__pair-label {
  display: block;
  line-height: 14px;
  margin-bottom: 5px;
}
@media (min-width: 1200px) {
  .entry-form-core__pair-label {
    display: inline-block;
    width: 174px;
    text-align: right;
    margin-right: 13px;
    line-height: 40px;
    vertical-align: top;
  }
}

.entry-form-core__tooltip-icon {
  font-size: 14px;
  line-height: 14px;
  margin-right: 5px;
  display: block;
}
.entry-form-core__tooltip-icon > label {
  font-family: "Lato";
  display: inline-block;
  vertical-align: inherit;
}
.entry-form-core__tooltip-icon > label::before {
  font-family: "Font Awesome 5 Pro";
  color: #C9D3DC;
}
@media (min-width: 1200px) {
  .entry-form-core__tooltip-icon {
    margin-right: 0;
    display: inline-block;
  }
}

.popup__wrapper {
  position: relative;
  width: 100%;
}

.popup__content {
  overflow: auto;
  max-height: calc(98vh - 60px);
}
@media (min-width: 576px) {
  .popup__content {
    max-height: calc(98vh - 20px);
  }
}
@media (min-width: 768px) {
  .popup__content {
    max-height: calc(98vh - 50px);
  }
}
.popup__content .subsection {
  border-top: 0;
}
.popup__content .subsection__expandable {
  text-align: left;
  padding-left: 0px;
  padding-right: 0px;
  margin-top: 0px;
}
.popup__content .subsection__expander {
  margin-left: 0px;
}
.popup__content .subsection__expander span {
  margin-left: 0px;
}
.popup__content .subsection__expander::before {
  content: "" !important;
}
.popup__content .pair-selectgrid_multi_sub {
  margin-bottom: 35px;
}
.popup__content .pair-selectgrid_multi_sub .entry-form-core__pair-label {
  width: unset;
}
.popup__content .pair-selectgrid_addonfly .entry-form-core__pair-label {
  width: unset;
}
.popup__content .pair-selectgrid_multi_limitforentry .entry-form-core__pair-label {
  width: unset;
}
.popup__content .entry-form-core__pair, .popup__content .entry-form-core__full-width {
  display: block;
}

.modal-content .checklist_table input[type=text] {
  width: 100%;
}

.checklist_table {
  border: 1px solid #8DA1B7;
  border-radius: 6px;
  border-collapse: separate;
  border-spacing: 0;
}
.checklist_table tr td:not(:last-of-type) {
  border-right: 1px solid #8DA1B7;
}
.checklist_table tr:not(last-of-type) td {
  border-bottom: 1px solid #8DA1B7;
}
.checklist_table tbody tr:first-of-type td {
  border-top: 1px solid #8DA1B7;
}
.checklist_table td:first-child {
  border-left: none;
}
.checklist_table td:last-child {
  border-right: none;
}
.checklist_table tr:first-child td {
  border-top: none;
}
.checklist_table tr:last-child td {
  border-bottom: none;
}
.checklist_table tr:first-child th:not(:last-of-type) {
  border-right: 1px solid #8DA1B7;
}
.checklist_table tr:first-child th:first-child {
  border-top-left-radius: 6px;
}
.checklist_table tr:first-child th:last-child {
  border-top-right-radius: 6px;
}
.checklist_table tr:last-child td:first-child {
  border-bottom-left-radius: 6px;
}
.checklist_table tr:last-child td:last-child {
  border-bottom-right-radius: 6px;
}

.checklist_header_column {
  background-color: #C9D3DC;
}

.checklist_header_column_fixed_width, .checklist_header_column_fixed_width_slim {
  width: 15%;
  background-color: #C9D3DC;
  text-align: center;
  padding: 5px;
  color: #44494c;
  word-break: break-word;
}

.checklist_header_column_fixed_width_slim {
  width: 10%;
}
@media (min-width: 768px) {
  .checklist_header_column_fixed_width_slim {
    width: 6%;
  }
}
@media (min-width: 1200px) {
  .checklist_header_column_fixed_width_slim {
    width: 5%;
  }
}
@media (min-width: 1440px) {
  .checklist_header_column_fixed_width_slim {
    width: 4%;
  }
}
@media (min-width: 2560px) {
  .checklist_header_column_fixed_width_slim {
    width: 4%;
  }
}

.checklist_column {
  padding: 8px;
}

td .check_control.check_control--disabled {
  border: 2px solid rgb(var(--primary-color));
  color: rgb(var(--primary-color));
}

td .check_control {
  border: 2px solid rgb(var(--primary-color));
  color: rgb(var(--primary-color));
}

td .check_control.check_control--selected {
  background-color: rgb(var(--primary-color));
}

.subscribe-table__heading {
  font-size: 21px;
  line-height: 31px;
  padding-bottom: 17px;
  border-bottom: solid 1px #C9D3DC;
}
@media (min-width: 576px) {
  .subscribe-table__heading {
    border-bottom: 0;
  }
}

.subscribe-table__description {
  padding-top: 14px;
  line-height: 20px;
}
@media (min-width: 576px) {
  .subscribe-table__description {
    padding-top: 0px;
    padding-bottom: 30px;
  }
}

.subscribe-table__mobile-header {
  height: 36px;
  background-color: #ECF1F5;
  color: rgb(var(--primary-navigation-color));
  font-size: 12px;
  line-height: 36px;
  padding-left: 38px;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 17px;
  margin-top: 17px;
}
@media (min-width: 576px) {
  .subscribe-table__mobile-header {
    display: none;
  }
}

.subscribe-table__mobile .selectall .form-input__checkbox-label {
  margin-right: 10px;
}
.subscribe-table__mobile .subscribe__row {
  padding-top: 9px;
  padding-bottom: 9px;
}
.subscribe-table__mobile .subscribe__row:first-of-type {
  padding-top: 18px;
}
.subscribe-table__mobile .subscribe__row:last-of-type {
  padding-bottom: 18px;
}
.subscribe-table__mobile .subscribe__label {
  margin-left: 58px;
  width: 65%;
  display: inline-block;
}
.subscribe-table__mobile .selectall.keycolumn div {
  width: 100%;
}
.subscribe-table__mobile .selectall.keycolumn div:first-of-type {
  height: 36px;
  line-height: 36px;
}
.subscribe-table__mobile .selectall.keycolumn:nth-of-type(even) div {
  background-color: #F2F5F7;
}
.subscribe-table__mobile .buttonSaveEntry {
  width: 100%;
}
.subscribe-table__mobile .entry_form_button_div {
  border-top: solid 1px #C9D3DC;
}
@media (min-width: 576px) {
  .subscribe-table__mobile {
    display: none;
  }
}

.subscription-panel__desktop-view {
  display: none;
}
@media (min-width: 576px) {
  .subscription-panel__desktop-view {
    display: block;
  }
}
.subscription-panel__desktop-view .buttonSaveEntry {
  width: 159px;
}
.subscription-panel__desktop-view table {
  border-style: hidden;
  border-radius: 6px;
  box-shadow: 0 0 0 1px #C9D3DC;
  overflow: hidden;
}
.subscription-panel__desktop-view table tbody th {
  border: 0 !important;
  color: #2D333C !important;
  line-height: 20px;
  font-weight: 900;
}
.subscription-panel__desktop-view table tbody th span {
  font-size: 12px !important;
}
.subscription-panel__desktop-view table tbody td {
  border: 0 !important;
  height: 46px;
  line-height: 46px;
}
.subscription-panel__desktop-view table tbody tr:nth-of-type(2n+1) {
  background-color: #F2F5F7;
}
.subscription-panel__desktop-view table tbody td:first-of-type {
  padding-left: 14px;
}
.subscription-panel__desktop-view table tbody td:first-of-type .form-input__checkbox-label {
  margin-right: 29px;
}

/*# sourceMappingURL=entry-form-core.css.map */
