* {
  /*font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif !important;*/
  font-weight: 400;
  font-style: normal;
}

body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.license-open-table-container {
  display: grid;
  grid-auto-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 30px;
}

.license-closed-table-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

#open_license_requests {
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 3;
  grid-column-end: 5;
}

#closed_license_requests {
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 3;
  grid-column-end: 5;
}

.refresh-button-container {
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 5;
  grid-column-end: 7;
}

.data-table {
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 7;
  border-collapse: collapse;
  width: 100%;
}

#last_pressed_time_label {
  margin-top: 20px;
}

.refresh-button-container {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

#table-body-open tr:hover {
  background-color: #f5f5f5;
}

#table-body-close tr:hover {
  background-color: #f5f5f5;
}

.header-cell {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  background-color: #f2f2f2;
}

.custom-td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

#closed_license_requests {
  background-color: #f2f2f2;
  color: #333;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}
#open_license_requests {
  background-color: #f2f2f2;
  color: #333;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

.activate-license-key-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 25px;
  height: 25px;
  background-image: url('../../img/license_key.png');
  background-size: cover;
}

.check-mark-key-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  width: 25px;
  height: 25px;
  background-image: url('../../img/done-check-mark.png');
  background-size: cover;
}

.popup-confirmation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content-confirmation {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
}

.popup-confirmation p {
  margin-bottom: 10px;
}

.popup-confirmation button {
  margin-top: 20px;
  margin-right: 10px;
  padding: 8px 20px;
  font-size: 14px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.popup-confirmation button.popup-cancel {
  background-color: #f44336;
}

.connect-to-salesforce-button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #95a5a6;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.connect-to-salesforce-button:hover {
  background-color: #7f8c8d;
}

.connect-to-salesforce-button:focus {
  outline: none;
  box-shadow: 0 0 5px #95a5a6;
}

.connect-instance-request {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #95a5a6;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.connect-instance-request:hover {
  background-color: #7f8c8d;
}

.connect-instance-request:focus {
  outline: none;
  box-shadow: 0 0 5px #95a5a6;
}

.popup-issue {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.popup-issue p {
  margin: 0;
}

.popup-issue.show {
  display: block;
  animation: fade-in 0.3s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.loading-spinner-license {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
  text-align: center;
}

.spinner-activate-license {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #ccc;
  border-top-color: #333;
  animation: spin-activate-license 1s linear infinite;
  margin: 0 auto 10px;
}

.loading-spinner-license p {
  margin: 0;
  font-size: 16px;
  color: #333;
}

@keyframes spin-activate-license {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.schedules-tab-loading {
  cursor: progress;
  opacity: 0.5;
  pointer-events: none;
}

.scheduled-popup-access-denied {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #4e86e4;
  padding: 20px;
  border-radius: 5px;
  color: white;
  z-index: 999;
}

.scheduled-popup-content-access-denied {
  text-align: center;
}

.scheduled-popup-access-denied.show {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

.scheduled-upgrades-tabs-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.scheduled-upgrades-caption {
  margin: 5px;
  padding: 10px;
}

#scheduled-upgrades-table-container, #scheduled, #upcoming, #executed {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.scheduled-upgrades-tabs-bar {
  text-align: center;
  margin-bottom: 20px;
}

.scheduled-upgrades-caption {
  cursor: pointer;
  display: inline-block;
  margin: 0 20px;
  padding: 10px 20px;
  border: 2px solid #4e86e4;
  border-radius: 5px;
  color: #4e86e4;
  transition: all 0.3s;
}

.scheduled-upgrades-caption.active-tab {
  background-color: #4e86e4;
  color: #fff;
}

.scheduled-upgrades-table {
  background-color: #fff;
  width: 100%;
  border-collapse: collapse;
}

.scheduled-upgrades-table th,
.scheduled-upgrades-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.scheduled-upgrades-table th {
  background-color: #4e86e4;
  color: #fff;
}

.page-navigation {
  text-align: center;
  margin-top: 20px;
}

.page-navigation span {
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
  padding: 5px 10px;
  border: 2px solid #4e86e4;
  border-radius: 5px;
  color: #4e86e4;
  transition: all 0.3s;
}

.page-navigation span:hover {
  background-color: #4e86e4;
  color: #fff;
}

.red-background-schedules-ui {
  background-color: #f39282;
}

.green-background-schedules-ui {
  background-color: #8bee8b;
}

.popup-schedules-ui {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.popup-content-schedules-ui {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

button.scheduled-dismiss-button,button.scheduled-jedox-instance,button.cancel-schedule-button {
  margin: 2px;
  background-color: #4daaf1;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 6px 12px;
  cursor: pointer;
}

button.scheduled-dismiss-button:hover,button.scheduled-jedox-instance:hover,button.cancel-schedule-button:hover {
  background-color: #2d9feb;
}

#confirm-dismiss-schedules-ui, #cancel-dismiss-schedules-ui, #confirm-cancel-upgrade, #cancel-cancel-upgrade {
  background-color: #4daaf1;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
}

#confirm-dismiss-schedules-ui:hover, #cancel-dismiss-schedules-ui:hover, #confirm-cancel-upgrade:hover, #cancel-cancel-upgrade:hover {
  background-color: #2d9feb;
}

.refresh-license-data-button {
  background-color: #007BFF;
  color: #fff;
  padding: 10px 20px;
  margin: 10px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.refresh-license-data-button:hover {
  background-color: #0056b3;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9999;
}

html, body {
  height: 100%;
  /*min-width: 940px;
   * modified for grafana 
   */
}

html.uk-modal-page {
  height: auto;
}

/*  Header        */
.header-wrapper {
  width: 100%;
  /*height: 80px;*/
  background-color: #1B4681;
}

.header-content {
  max-width: 940px;
  height: 100%;
  margin: 0 auto !important;
}

.header-banner-reschedule__button {
    appearance: none;
    background-color: transparent;
    border: none;
    color: #0F6ECD;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer; 
    margin-left: 15px;
    padding-top: 16px; 
}

.header-banner-top {
    position: absolute;
    top: 0;
    text-align: center;
    padding-top: 9px;
}

.header-banner-background {
    background: #FFE8C3;
    color: #454F5B ;
    padding-bottom: 2px;
}

.reschedule-button-settings:hover {
    background-color: #DCDCDC;
    border-radius: 5px;
}

.reschedule-button-settings {
    padding: 4px;
}

.header-banner-content {
    padding-top: 13px;
}
.reschedule-modal .uk-modal-dialog {
    width: 798px;
}

/*Calendar*/
.custom-datepicker .ui-datepicker {
    display: inline-block !important;
    width: auto !important;
    border: none;
    border-radius: 8px;
    padding: 32px 16px;
    background-color: #fff;
}

.custom-datepicker .ui-datepicker-group {
    width: calc(50% - 16px);
}

.custom-datepicker .ui-datepicker-group + .ui-datepicker-group {
    margin-left: 32px;
}

.custom-datepicker .ui-widget-header {
    background-color: transparent;
    border: none;
    padding: 0;
    margin-bottom: 8px;
}

.custom-datepicker .ui-datepicker-prev {
    left: -30px;
}

.custom-datepicker .ui-datepicker-next {
    right: -30px;
}

.custom-datepicker .ui-datepicker-title {
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.custom-datepicker .ui-datepicker-title span {
    font-weight: 600;
}

.custom-datepicker .ui-datepicker th {
    min-width: 49px;
    padding: 12px 0;
    font-weight: 400;
    line-height: 1.5;
    color: #919EAB;
    text-transform: uppercase;
    font-size: 12px;
}

.custom-datepicker .ui-datepicker td {
    padding: 4px 0;
}

.custom-datepicker .ui-state-default {
    width: 36px;
    height: 36px;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 50%;
    color: #454F5B;
    background: transparent;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}

.custom-datepicker .ui-state-active {
    background-color: #3778DE;
    color: #fff;
    font-weight: 600;
}

.custom-datepicker .ui-state-disabled {
    opacity: 1;
}

.custom-datepicker .ui-state-disabled .ui-state-default {
    color: #D5D5D6;
}

.custom-datepicker .ui-datepicker-today .ui-state-default {
    font-weight: 600;
    position: relative;
    color: #212B36;
}

.custom-datepicker .ui-datepicker-today .ui-state-default::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    background-color: #016EED;
    border-radius: 50%;
}

#reschedule-calendar {
    text-align: center;
}

#modal-reschedule-instance .uk-modal-footer {
    border-top: none;
    position: relative;
    padding-top: 24px;
    padding-bottom: 24px;
}

#modal-reschedule-instance .uk-modal-footer::before {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 1px;
    background-color: #E5E5E5;
    width: calc(100% - 48px);
}

#modal-reschedule-instance .uk-modal-body {
    padding-left: 24px;
    padding-right: 24px;
}

.custom-datepicker__past-limit {
    position: relative;
}

.custom-datepicker__past-limit.ui-state-disabled {
     pointer-events: auto;
}

.custom-datepicker__past-limit .custom-datepicker__disabled-tooltip {
    position: absolute;
    bottom: 9px;
    left: 0;
    z-index: 1;
    padding: 10px;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.36364;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    display: none;
}
.custom-datepicker__past-limit:hover .custom-datepicker__disabled-tooltip {
    display: block;
}
/*End Calendar/

.header-content .logo {
  /*margin-left: 15px;*/
}

/*  Body          */
.body-wrapper {
  flex: 1;
}

.body-content {
  width: 940px;
  /*height: 100%;*/
  margin: auto;
}

.login-content {
  width: 292px;
  margin: 120px auto auto auto;
}

.body-section {
  padding-top: 26px;
  padding-bottom: 5px;
  border-bottom: solid 1px #EBE7E7;
}

.body-section-header {
  color: #929292;
  font-size: 21px;
  float: left;
  line-height: 42px;
}

/*  Footer        */
.footer-wrapper {
  width: 100%;
}

.footer-content {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
  font-size: 12px;
  padding-top: 50px;
}

/* Start: Section */
.section__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.25em;
}
.section__header-text {
    flex-shrink: 1;
    flex-basis: 0;
}
.section__header-link {
    flex-shrink: 0;
}   
/* End: Section */

/*  Custom Elements   */
.jx-legend {
  text-align: center;
  color: black !important;
  font-size: 21px !important;
  font-weight: 400 !important;
}

.jx-legend b {
  font-weight: 600;
}

.jx-inline {
  width: 100%;
}

.jx-input {
  border-radius: 3px !important;
  font-size: 13px !important;
  line-height: normal;
}

.jx-input:focus {
  border-color: #2699D6 !important;
  color: #2699D6 !important;
}

.jx-login-input-icon {
  display: none;
}

.jx-a {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #2699D6;
  text-decoration: underline;
}

.jx-a-large {
  color: #000000;
  font-size: 14px;
  text-decoration: underline;
}

.jx-p {
  font-size: 12px !important;
  color: #A1A4A7 !important;
}
.jx-label {
  color: #000000;
}
.jx-hint {
  color: #666666;
}

.jx-h-small {
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
}

.jx-button-primary {
  width: 100% ;
  background-color: #4FC3F7;
  border-radius: 3px;
  text-transform: none !important;
  padding: 0;
}
.jx-button-primary:hover {
  background-color: #3C9AC4 !important;
}
.jx-button-primary:focus {
  background-color: #4FC3F7;
}

.jx-button-secondary_highlight
{
	border: 1px solid rgb(240,68,77) !important;
	color: rgb(240,68,77) !important;
}

.jx-button-secondary {
  border: 1px solid #4FC3F7;
  /*height: 28px;*/
  width: 142px;
  background-color: white;
  border-radius: 3px;
  color: #4FC3F7;
  /*font-size: 11px !important;*/
  line-height: 28px;
  font-weight: 400;
  text-transform: none;
  padding: 0;
}

.jx-button-secondary:hover {
  background-color: #E8EFF4  !important;
  color: #4FC3F7;
}

.jx-button-secondary:focus {
  background-color: #FFFFFF;
  color: #4FC3F7;
}

.jx-button-invisible {
  background-color: transparent;
  color: #FFFFFF;
  padding: 0;
}

.jx-button-disabled {
  background-color: #EDEDED !important;
  border-radius: 3px;
  text-transform: none !important;
  padding: 0;
  color: #C5C5C5;
  cursor: not-allowed !important;
}
.jx-button-disabled:hover {
  color: #C5C5C5;
}

.jx-bubble,
.jx-button-bubble {
  border: 1px solid #EBE7E7;
  border-radius: 4px;
  color: #909396;
  font-size: 12px;
  text-transform: none !important;
  text-align: center;
  height: 48px;
}
.jx-bubble,
.uk-active .jx-button-bubble {
  border-color: #F3F3F3;
  background-color: #F3F3F3 !important;
  color: #909396 !important;
  position: relative;
}
.jx-bubble:after,
li.uk-active .jx-button-bubble:after {
	position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #f3f3f3 transparent transparent transparent;
}
.jx-bubble {
  background-color: #E8EFF4 !important;
  border-color: #E8EFF4;
}
.jx-bubble:after {
  border-color: #E8EFF4 transparent transparent transparent;
}

.jx-button-bubble-note {
  display: block;
  color: #000000;
  font-size: 14px;
  margin-top: 7px;
}

.jx-button-small {
  width: 70px !important;
  /*height: 24px !important;
  line-height: 22px !important;
  font-size: 11px;
  font-weight: 600;*/
}
.jx-button-normal {
  width: 140px !important;
  height: 28px !important;
  line-height: 26px !important;
  font-size: 13px;
  font-weight: 600;
}

.jx-select {
	border: 1px solid #FFFFFF;
  border-radius: 3px;
  line-height: 40px;
  background-image: url(../../img/v2/arrow-down.svg) !important;
  background-position-x: 98% !important;
}

.jx-select-secondary {
  border-color: #EBE7E7;
  background-color: #FFFFFF;
  color: #000000;
  font-size: 13px;
}

.jx-select-transparent {
  /*opacity: 0;*/
  background-color: transparent;
  color: #FFFFFF;
  font-size: 14px;
  border-color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
  background-image: url(../../img/v2/arrow-down-white.svg) !important;
}
.jx-select-transparent:focus {
  background-color: transparent;
  color: #FFFFFF;
  font-size: 14px;
  border-color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}
.jx-select-transparent:focus option {
  color: #000000;
}

.jx-dropdown {
  margin-top: 0px;
  padding: 5px 0px 11px 0;
  top: 37.6px;
  left: 0px;
  width: inherit;
  background-color: #FFFFFF;
  border-radius: 2px;
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
  display: none;
  z-index: 10;
}
.jx-dropdown ul li:not(.uk-nav-divider) {
  margin-left: 10px;
  margin-right: 10px;
}

.jx-dropdown ul li a {
  color: #000000;
  font-size: 13px;
}

.jx-table th {
  /*font-size: 12px;*/
  line-height: 24px;
  color: #909396;
  /*text-transform: none;*/
}
/* 
.jx-table td {
  color: #000000;
  font-size: 12px;
}*/
.jx-table td:first-child {
  /*font-size: 14px;*/
  width: 158px;
}
.jx-table th:first-child {
  width: 158px;
}
.jx-table:not(.jx-list) td:last-child,
.jx-table:not(.jx-list) th:last-child {
  text-align: right;
}
.jx-table-small td {
  /*  Sets td size to 42px  */
  padding-top: 9px;
  padding-bottom: 9px;
  line-height: 22px;
}
.jx-table button:not(:first-child) {
  margin-left: 10px;
}
.collapse-last-row tr:last-child {
  height: 0 !important;
}
.collapse-last-row tr:last-child td {
  padding: 0 !important;
}

.jx-dictionary tr {
  height: 42px;
}

.jx-dictionary tr td {
  font-size: 12px;
  line-height: 42px;
  padding-top: 0;
  padding-bottom: 0;
}
.jx-dictionary tr td:not(:first-child) {
  color: #898989;
}
.jx-dictionary tr td:first-child {
  color: #000000;
  /*width: 200px;*/
  line-height: 42px;
}

.td-for-qr{
	line-height: 24px !important;
}

.jx-footer-static {
  color: black;
}

.jx-footer-url {
  color: #666666;
  text-decoration: underline;
}

.jx-footer-url:hover {
  color: #A1A4A7;
}

.jx-divider {
  margin: auto 3;
}

.jx-error-message {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #f0506e;
  display: none;
  height:18px;
  padding-bottom: 10px;
}

.jx-error-message .jx-error-text {
  margin: 0;
}

.jx-disabled {
  opacity: 0.6;
}

.jx-no-border {
  border: none !important;
}

.jx-tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.jx-tooltip-wrapper .jx-tooltip {
  visibility: hidden;
  position: absolute;
  z-index: 1;
  bottom: 130%;
  left: 18%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.5s;
}

.jx-tooltip-wrapper:hover .jx-tooltip {
  visibility: visible;
  opacity: 1;
}

/*  Overlay     */
.overlay-mask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  display: none;
  z-index: 100;
}

.overlay-window {
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 0 4px 0 rgba(0,0,0,0.35);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
}

.overlay-default {
  width: 455px;
  height: 243px;
  display: none;
}

.overlay-large {
  width: 455px;
  height: 305px;
  display: none;
}

.overlay-window-inner {
  margin: 40px 50px;
}

.overlay-new-password .overlay-window-inner {
  margin: 40px 80px !important;
}

.overlay-header {
  font-size: 15px;
  color: black;
}

.overlay-text {
  font-size: 13px;
}


/*  Sizes, Margins & More     */
.body-section-content {
  margin-left: 160px;
}
.width-extra-small {
  width: 36px !important;
}
.width-small {
  width: 70px !important;
}
.width-medium {
  width: 120px !important;
}
.width-medium-large {
  width: 130px !important;
}
.width-semi-large {
  width: 153px !important;
}
.width-large {
  width: 160px !important;
}
/*
.width-large-input {
  width: 660px !important;
}
*/
.width-very-large {
  width: 200px !important;
}
.width-extra-large {
  width: 290px !important;
}

.height-small {
  height: 30px !important;
}
/*
.height-very-small {
  height: 20px !important;
}
*/
.height-medium {
  height: 50px !important;
}

.padding-small {
  padding: 10px !important;
}

.margin-top-small {
  margin-top: 15px;
}

.line-height-normal {
  line-height: 12px;
}
.line-height-semibold {
  line-height: 14px;
}
.line-height-bold {
  line-height: 16px;
}

.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}

.row-padding td {
  padding-bottom: 18px !important;
}

.center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.uk-tooltip {
  max-width: 400px; 
}

/*  Page Specific     */
.two-step-verification-input {
  height: 46px;
  width: 43px;
  font-size: 16px !important;
  text-align: center;
}

.chart-container {
  height: 165px;
  width: 780px;
  background-color: #E8EFF4;
}

.status-badge {
  border-radius: 3px;
  width: 60px;
  height: 16px;
  /*
  color: #ffffff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 16px;
  text-align: center; */
  margin-top: 3px;
}

/*
.status-badge-active {
  background-color: #31C012;
}
.status-badge-inactive {
  background-color: #B3B3B3;
} 
.status-badge-restart {
  background-color: #1B4681;
}
.status-badge-block {
  background-color: rgb(240,68,77);
}
.status-badge-blocked {
  position: absolute;
  width: 250px;
  height: 24px;
  line-height: 24px;
  margin-top: 0;
  background-color: #FF0000;
}

*/

.uk-list-fix li:before {
  content: none !important;
}
.uk-list-fix li:after {
  content: none !important;
}

/*  Effects   */
.overlay-mask.jx-enabled {
  display: block !important;
}
.overlay-window.jx-enabled {
  display: block !important;
}

.jx-dropdown.jx-enabled {
  display: block;
}

table.jx-expanded #change-password-button-row {
  display: none;
}
table.jx-expanded .change-password-form-row {
  display: table-row;
}
.change-password-form-row {
  display: none;
}

#snapshot-table-wrapper #snapshot-empty-message {
  display: none;
}

#odata-table-wrapper #odata-empty-message {
  display: none;
}
#snapshot-table-wrapper.jx-empty #snapshot-empty-message {
  display: block;
}
#snapshot-table-wrapper.jx-empty #snapshot-table {
    display: none;
}

#odata-table-wrapper.od-empty #odata-empty-message {
  display: block;
}

.jx-error-message.jx-enabled {
  display: block;
}

/*
.header-wrapper-banner .header-banner {
  display: block !important;
}
*/


#wrapper-maintenance {
    position: relative;
    height: 70vh;
    width: 95vw;
  }

#wrapper-maintenance2 {
    position: relative;
    height: 40vh;
    width: 95vw;
  }

#container-maintenance {
    max-width: 600px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #212A36;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}
#container-maintenance > .illu {
    width: 75%;
}

#container-maintenance > .illu2 {
    width: 100%;
}

#container-maintenance > h1 {
    font-size: 22px; 
    font-weight: bold;
    margin-top: 48px;
}

#container-maintenance > h2 {
    font-size: 15px;
    font-weight: normal;
    margin-top: 16px;
}

#container-maintenance > h3 {
    font-size: 15px;
    font-weight: normal;
    color: #637381;
    margin-top: 24px;
}

#container-maintenance > .logo {
    max-width: 117px;
    margin-top: 48px;
}

#container-maintenance > * {
    margin: 0

}
.highlight_row {
    background-color:#CCC; 

}

.access-name-val, .access-cidr-val{
    overflow: hidden;
    width: 150px;
    display: inline-flex
}

/* Start: Services */
#services-table-wrapper {
    position: relative;
    z-index: 1;
}

#services-restart-message {
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 0;
    z-index: 2;
    background-color: #8FC943;
    height: 100%;
    width: 100%;
    color: #FFFFFF;
    font-size: 12px;
}

#services-restart-message .jx-h-small {
    color: #FFFFFF;
}

#services-table-wrapper.jx-toggled #services-table {
    visibility: hidden;
}
#services-table-wrapper.jx-toggled #services-restart-message {
    visibility: visible;
}

.services-table__row--vpn .services-table__status a {
    color: inherit;
    text-decoration: none;
}
.services-table__row--vpn .services-table__status.uk-label-warning {
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 1;
    background-color:#F5A623;
}
.services-table__status-text {
    vertical-align: middle;
    display: inline-block;
    padding-bottom: 1px;
}
#services-status {
    width: 200px;
}

.services-table--cluster-manager .services-table__row:last-child {
    border-bottom: 1px solid #e5e5e5;
}
.services-table__cell {
    text-align: left;
}
.services-table__cell--actions {
	text-align: right;
}
.services-table__buttons-wrapper {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 5px;
}   
/* End: Services */

.js--hidden {
    display: none !important;
}

.snapshot-table tbody tr:last-child {
	border-bottom: 1px solid #e5e5e5;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

/* Start: VPN handling */
.vpn-table thead th {
    min-width: 200px;
}
.vpn-table .vpn-table__cell {
    display: table-cell;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 12px;
	padding-right: 10px;
}

.vpn-table .vpn-table__cell--status {
    padding-right: 18px;
}

#vpn_section,
#vpn-hr,
#vpn-table-container,
#vpn_shortcut {
    display: none;
}
#smtp_section {
    display: none;
}
.js--has-vpn #vpn_section {
    display: flex;
}
.js--has-vpn #vpn-hr
{
    display: block;
}
.js--has-vpn #vpn_shortcut {
    display: list-item;
}
.js--has-vpn-connections #vpn-table-container {
    display: table-row;
}
.js--has-vpn-connections #no-vpn {
    display: none;
}
.vpn-table__status {
    color:white;
    display: inline-block;
    padding: 5px 10px;
    background-color: #B9B9B9;
    border-radius: 4px; 
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.42857;
}
.vpn-table__status--error {
    background-color: #EE395B;

}

.vpn-table__status--success {
    background-color: #33D296;
}

.vpn-table__status--warning {
    background-color: #F5A623;
}

.dns-mapping__input--warning:not(.uk-form-danger) {
    color: #F5A623;
    border-color: #F5A623;
}

.vpn-table__restart-button {
    appearance: none;
    background-color: transparent;
    border: none;
    color: #0F6ECD;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    cursor: pointer;
}

.vpn-table__restart-button--active svg {
    animation: spin-custom 1s linear infinite;
}

.services-table__restart-button {
  appearance: none;
  background-color: transparent; 
  color: #4FC3F7;
  font-size: 14px;
  line-height: 2;
  width: 145px;
  font-weight: 500;
  cursor: pointer;
}

@keyframes spin-custom{
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.vpn-table__troubleshooting {
    display: none;
    appearance: none;
    border: none;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -28px;
}

.vpn-table__troubleshooting--error {
    color:#EE395B;
}

.vpn-table__troubleshooting--warning {
    color:#F5A623;
}

.vpn-table__status--error ~ .vpn-table__troubleshooting--error, .vpn-table__status--warning ~ .vpn-table__troubleshooting--warning {
    display: inline-block;
}

.dns-mapping .vpn-table__troubleshooting {
    right: 30px;
}
.dns-mapping__row--warning .vpn-table__troubleshooting--warning {
    display: inline-block;
}

.vpn-table__cell-wrapper {
    position: relative;
    display: inline-block;
}

.dns-mapping__row .chevron-right {
    margin-left: 30px;
}

.modal-steps {
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.modal-steps__column:first-child {
    padding-right: 20px;
    flex-shrink: 0;
}

.modal-steps__number {
    display: flex;
    background-color: #3778DE;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.modal-steps__title {
    font-weight: 600;
    line-height: 1.35714;
}

.modal-steps__text {
    line-height: 1.35714;
}

.top-modal {
    margin-bottom: 0;
}

.vpn-modals .uk-modal-dialog {
    width: 712px;
}

.vpn-modals .uk-modal-header {
    border: none;
}

.vpn-modals .uk-modal-body {
    padding-top: 9px;
}

.note-vpn {
    display: flex;
    gap: 0.25em;
    margin-bottom: 20px;
    margin-top: 20px;
}

.note-vpn p {
    margin-bottom: 0;
}

.note-vpn *+p {
    margin-top: 10px;
}

.note-vpn-span {
    vertical-align: top;
}

#toggle-usage {
    margin-top: 20px;
}

/* End: VPN handling */

/* Start: Server Logs Filters */
.log-filters__input {
    opacity: 0;
    position: absolute;
    width: 0;
}
.log-filters__input:checked + .log-filters__label {
    background: rgb(150, 150, 150);
    color: white;
}
.log-filters__label {
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    background: rgb(204, 204, 204);
    padding: 3px 8px;
    margin-right: 4px;
    margin-bottom: 4px;
    display: inline-block;
    min-height: 19px;
}

.log-datepicker__message {
    margin: 0;
}
.log-datepicker__message:not([hidden]) ~ .log-datepicker__message {
	margin-top: 15px;
}
.log-datepicker__actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 20px;
}
.log-datepicker__actions--spread {
    gap: 4px 40px;
    padding-bottom: 30px;
}
.log-datepicker__reset {
    margin-right: auto;
}
/* End:  Server Logs Filters */

/* Start: Server Logs Table */
.logs-table__row--main.js--toggled .logs-table__trigger svg {
    transform: rotate(90deg);
}
.logs-table .logs-table__row--duplicate {
    display: none;
}
.logs-table__row--duplicate.js--visible {
    display: table-row;
}
.logs-table__row--duplicate .logs-table__date-time {
    vertical-align: middle;
    padding-left: 46px;
}
.logs-table__service {
    vertical-align: middle;
}
.logs-table__badge {
    user-select: none;
}
.logs-table__message {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
@media (max-width: 959px) {
    .logs-table__row--duplicate.js--visible {
        display: block;
    }
}
@media (min-width: 1340px) {
    .logs-table {
        table-layout: fixed;
    }
    .logs-table__message:hover {
        overflow-x: auto;
    }
}
/* End: Server Logs Table */

.synchronize-title{
    display: flex;
    align-items: center;
}

.in-preview-label {
  display: inline-block;
  width: 66px;
  height: 12px;
  padding: 3px 2px 2px 2px;
  margin: 9px 0px 0px 22px;
  border-radius: 7px;
  background: linear-gradient(0deg, rgba(237, 25, 121, 0.2), rgba(237, 25, 121, 0.2)),
              linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
  color: #ED1979;
  font-size: 10px;
  font-weight: 800;
  line-height: 12px;
  letter-spacing: 0em;
  text-align: center;
}

.synchronize-environment__wrapper:hover .preview-tooltip {
  display: block;
}

.preview-tooltip {
  display: none;
  z-index: 1000;
  opacity:0.7;
  left: 72%;
  top:55px;
  width: 351px;
  height: 42px;
  padding: 10px;
  gap: 10px;
  background-color: black;
  color: white;
  font-size: 11px;
  font-weight: 600;
  line-height: 15px;
  letter-spacing: 0px;
  text-align: left;
  position: absolute;
  transform: translateX(-50%);
}
#synchronize-environment-button{
    text-transform: none;
    vertical-align: middle;
    font-weight: 600;
}
#synchronize-enviroment-preview{
  width: 20px;
  height: 10px;
  padding: 2px 4px;
  border-radius: 8px;
  background-color: #ED1979;
  color: white;
  margin: 0px 0px 10px 0px;
  font-size: 8px;
  font-weight: 700;
  line-height: 10px;
  text-align: center;  
}
#synchronize-environment-link{
  padding:5px 2px 5px 10px;
}
#alert-synchronize-environment-delete-text{
  color:red;
  padding-bottom:0px;
  padding-top:0px;
  font-weight:700;
}
.synchronize-environment--loading-databases .synchronize-environment__wrapper,
.synchronize-environment--loading-config .synchronize-environment__wrapper,
.synchronize-environment--loading-instances .synchronize-environment__wrapper {
    position: relative;
}
.synchronize-environment__loading {
    display: none;
}
.synchronize-environment--loading-databases .synchronize-environment__loading,
.synchronize-environment--loading-config .synchronize-environment__loading,
.synchronize-environment--loading-instances .synchronize-environment__loading {
    display: flex;
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.synchronize-disclaimer {
    display: flex;
    align-items: center;
    background-color: #FFE8C3;
    padding: 12px;
    margin: 0;                   		
    margin-bottom: 24px;
    border-radius: 4px;
    position: relative;
    z-index:900;
}
@font-face {
  font-family: 'password';
  font-style: normal;
  font-weight: 400;
  src: url(https://jsbin-user-assets.s3.amazonaws.com/rafaelcastrocouto/password.ttf);
}

input#keys_secrets_password {
  font-family: 'password';
   
}


.keys_secrets_dialog
{
color: #666;
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}






.resource_boxes {
  border-radius: 0px;
  outline: 4px solid transparent;
  background: var(--colors-white, #FFF);
  cursor: pointer;
  transition: outline-color 0.2s;
}

.resource_boxes_selected {
  outline: 4px solid var(--colors-galaxy-blue-default, #3B82F6);
  box-shadow:0px 0px 16px 0px rgba(0, 0, 0, 0.25);
}
.resource_boxes:hover:not(.resource_boxes_selected) {
  outline-color: #ADD4FF;
  box-shadow:0px 0px 16px 0px rgba(0, 0, 0, 0.25);
}

#section_details{
  color: #999999;
  font-size: 11px; 
  font-style: normal; 
  font-weight: 400; 
  line-height: normal; 
  width: 204px;
  margin-top:0px;
}
.synchronize-disclaimer--hidden{
    display:none;
}
.synchronize-disclaimer__container-icon {
    flex-grow: 0;
    flex-shrink: 0;
    color: #E8A029;
}

.synchronize-disclaimer__container-text {
    flex-grow: 1;
    flex-shrink: 1;
    padding-left: 16px;
    padding-right: 30px;
}

.synchronize-disclaimer__text {
    font-size: 14px;
    line-height: 1.35714;
    margin: 0;
}

.synchronize-disclaimer__text + .synchronize-disclaimer__text {
    margin-top: 4px;
}

.synchronize-disclaimer__close-button {
    appearance: none;
    background-color: transparent;
    border: none;
    padding: 0;
    display: flex;
    position: absolute;
    top: 14px;
    right: 21px;
    cursor: pointer;
    transition: background-color .25s ease;
}

.synchronize-disclaimer__close-button:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.synchronize-olap-memory {
  display: flex;
  align-items: center;
  background-color: rgb(255,217,217);
  padding: 12px;
  margin: 0;
  margin-bottom: 24px;
  border-radius: 4px;
  position: relative;
}

.synchronize-olap-memory__container-icon {
  flex-grow: 0;
  flex-shrink: 0;
  color: #ff0030;
}

.synchronize-olap-memory__container-text {
  flex-grow: 1;
  flex-shrink: 1;
  padding-left: 16px;
  padding-right: 30px;
}

.synchronize-olap-memory__text {
  font-size: 14px;
  line-height: 1.35714;
  margin: 0;
}

.synchronize-olap-memory__text + .synchronize-olap-memory__text {
  margin-top: 4px;
}

.synchronize-olap-memory__close-button {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  position: absolute;
  top: 14px;
  right: 21px;
  cursor: pointer;
  transition: background-color .25s ease;
}

.synchronize-olap-memory__close-button:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.syncronize-environment__instance-selectors {
    max-width: 530px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    box-sizing: border-box;
}
.syncronize-environment__container--image {
    display: flex;
    align-items: center;
}
.syncronize-environment__container--selectors {
    flex-shrink: 1;
    flex-grow: 1;
    padding-left: 33px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.synchronize-environment__selector-row {
    display: flex;
    align-items: center;
}
.synchronize-environment__selector-label {
    font-size: 16px;
    line-height: 1.375;
    font-weight: 600;
    padding-right: 20px;
    width: 86px;
    flex-shrink: 0;
    flex-grow: 0;
    color: #000;
    box-sizing: border-box;
}
.synchronize-environment__select {
    padding-right: 24px !important;
    flex-grow: 1;
    flex-shrink: 1;
}
.synchronize-environment__select option[disabled] {
    color: #AEAEAE !important;
}
#synchronize-environment-destination .synchronize-environment__option--no-mirror {
	display: none;
}
.synchronize-environment__overwrite-section {
    position: relative;
}
.synchronize-environment__overwrite-section.js--disabled::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.5);
}

.key_secret_container--selectors {
  flex-shrink: 1;
  flex-grow: 1;  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.key_secret_selectors {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.key_secret_placeholder {
  display: flex;
  height: 198px; 
  padding: 16px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 6px;
  border: 1px dashed var(--colors-ink-lightest, #919EAB);
  background: var(--colors-white, #FFF);
  margin-top: 24px;
}
.key_secret_file_display {
  display: flex;
  height: 68px;
  padding: 16px 24px;
  flex-direction: column;
  justify-content: center; 
  gap: 8px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid var(--colors-galaxy-blue-default, #3B82F6);
  background: var(--colors-white, #FFF);
  margin-top: 24px;
}
.key_secret_text
{
  color: var(--colors-ink-medium, #454F5B);
font-family: Open Sans;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 142.857% */
}

@media screen and (max-width: 480px) {
    .synchronize-environment__selector-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .synchronize-environment__selector-row + .synchronize-environment__selector-row {
        margin-top: 10px;
    }
    .synchronize-environment__selector-label {
        margin-bottom: 5px;
    }
}

@keyframes dots {
    0% {
        content: '.';
    }
    50% {
        content: '..';
    }
    100% {
        content: '...';
    }
}

.dots::after {
    content: '';
    display: inline-block;
    min-width: 1em;
    animation: dots 1.5s infinite forwards linear;
}

.fancy-spinner {
    width: 32px;
    transform: rotate(-45deg);
    animation: fancy-spinner-spin 1s linear infinite forwards;
    display: inline-block;
    vertical-align: middle;
}
.fancy-spinner__circle {
    animation: fancy-spinner-grow 1s linear infinite forwards;
}
@keyframes fancy-spinner-spin {
    0% {
        transform: rotate(-45deg);
    }
    33% {
        transform: rotate(-45deg);
    }
    66% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(315deg);
    }
}
@keyframes fancy-spinner-grow {
    0% {
        stroke-dashoffset: 218px;
    }
    33% {
        stroke-dashoffset: 110px;
    }
    66% {
        stroke-dashoffset: 110px;
    }
    100% {
        stroke-dashoffset: 218px;
    }
}

.connection-section__loading {
    visibility: hidden;
    opacity: 0;
    user-select: none;
}

.connection-section__sftp--enabling .connection-section__loading,
.connection-section__sftp--disabling .connection-section__loading,
.connection-section__sftp--error .connection-section__loading {
    visibility: visible;
    opacity: 1;
}

#enable-sftp, 
#label-enable-sftp{
    cursor: pointer;
}

#label-enable-sftp {
    user-select: none;
}

.connection-section__sftp--enabling #enable-sftp, 
.connection-section__sftp--enabling #label-enable-sftp,
.connection-section__sftp--disabling #enable-sftp, 
.connection-section__sftp--disabling #label-enable-sftp{
    pointer-events: none;
}

.connection-section__message {
    display: none;
    vertical-align: middle;
    margin-left: 15px;
}

.connection-section__sftp--enabling .connection-section__message--enabling,
.connection-section__sftp--disabling .connection-section__message--disabling,
.connection-section__sftp--error .connection-section__message--error{
    display: inline-block;
}

.connection-section__sftp:not(.connection-section__sftp--enabled) .uk-button,
.connection-section__sftp:not(.connection-section__sftp--enabled) .connection-section__label{
    color: #B8B8B8;
    pointer-events: none;

}

.connection-section__sftp:not(.connection-section__sftp--enabled) .jx-tooltip-wrapper-key .jx-tooltip {
    visibility: hidden;
    opacity: 0;
}

.custom-button {
	appearance: none;
	padding: 15px 10px;
	margin: 0;
	border: none;
    border-radius: 4px;
	background-color: transparent;
    color: #0F6ECD;
	display: inline-flex;
	align-items: center;
    gap: 4px;
	vertical-align: middle;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.42857;
	cursor: pointer;
}
.custom-button--small {
    padding: 5px 10px;
}
.custom-button:hover,
.custom-button:focus {
    background-color: rgba(55, 120, 222, 0.15);
}
.custom-button:disabled {
	color: #999999;
	background-color: transparent;
	cursor: default;
}
.custom-button--animate svg {
    animation: spin-custom 1.3s infinite linear;
}
.custom-button__text {
	font: inherit;
}

/* Start: SMTP Section */
.section__fields {
    display: none;
}
.section__fields--enabled {
    display: block;
}
.section--smtp .section__row {
    display: flex;
    gap: 12px;
    padding: 0 12px;
}
.section--smtp .section__row--toggle,
.section--smtp .section__row--method {
    margin-bottom: 30px;
}
.section--smtp .section__row + .section__row {
    margin-top: 24px;
}
.section--smtp .section__column {
    display: flex;
    align-items: center;
}
.section--smtp .section__column:first-child {
    width: 20%;
}
.section--smtp .section__column:last-child {
    width: 80%;
}
.section--smtp .section__host-container {
    display: flex;
    flex-grow: 1;
}
.section--smtp .section__host-column:first-child {
	width: 64%;
}
.section--smtp .section__host-column:last-child {
	width: 36%;
	display: flex;
    align-items: center;
	gap: 12px;
	padding-left: 32px;
}
.section--smtp .section__label {
    white-space: nowrap;
}
.section--smtp .section__label--method {
	font-weight: 600;
}
.section--smtp .section__group {
    display: none;
}
.section--smtp .section__group--selected {
    display: block;
}
.section--smtp .section__actions {
	margin-top: 15px;
	padding: 0 12px;
}
.section--smtp .section__action-wrapper + .section__action-wrapper {
	margin-top: 8px;
}
.section--smtp .section__content--loading,
.section--smtp .section__content--error,
.section--smtp .section__content--disabled {
    position: relative;
}   
.section--smtp .section__message {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.8); 
}
.section--smtp .section__content--loading .section__loading,
.section--smtp .section__content--error .section__error,
.section--smtp .section__content--disabled .section__disabled {
    display: flex;
}

.smtp-modal .smtp-modal__outer {
    width: 100%;
    max-width: 1200px !important;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
.smtp-modal .smtp-modal__inner {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.smtp-modal .uk-modal-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.smtp-modal__label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}
.smtp-modal__input--invalid {
    background-color: rgb(189, 131, 131);
}
.smtp-modal__note {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.42857;
    color: #999999;
}
.smtp-modal__host-container {
    display: flex;
    flex-grow: 1;
}
.smtp-modal__host-column:first-child {
	width: 64%;
}
.smtp-modal__host-column:last-child {
	width: 36%;
	padding-left: 32px;
}
.smtp-modal__row + .smtp-modal__row {
	margin-top: 24px;
}
.smtp-modal__row--select {
	padding: 16px 0;
	display: flex;
	gap: 40px;
	align-items: center;
}
.smtp-modal__row--select .smtp-modal__label {
	margin-bottom: 0;
}
.smtp-modal__select {
	width: auto;
	color: #5383E1;
    padding-right: 24px !important;
}
.smtp-modal__group {
    display: none;
    margin: 16px 0;
}
.smtp-modal__group--selected {
    display: block;
}
.smtp-modal__actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}
.smtp-modal--loading .smtp-modal__inner {
    position: relative;
}   
.smtp-modal__message {
	display: none;
	position: absolute;
	inset: 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 15px;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 2000;
}
.smtp-modal--loading .smtp-modal__loading {
    display: flex;
}
.smtp-modal .uk-modal-footer {
    min-height: 60px;
    box-sizing: border-box;
}
/* End: SMTP Section */