.news-and-events-container article {
   position: relative;
}

.news-and-events-container article > .datepicker {
   margin: -30px 0 0 30px;
}

.sk-ne-wrapper {
   overflow: hidden;
}

.sk-ne-entry {
   position: relative;
   overflow: hidden;
   margin-bottom: 16px;
}

.sk-mode-editing .news-and-events-container .sk-ne-entry.article-inactive {
   cursor: pointer;
}

.sk-mode-editing .news-and-events-container .sk-ne-entry.article-inactive * {
   opacity: 0.6 !important;
}

.sk-ne-calendar {
   float: left;
   min-width: 30px;
}

.sk-ne-calendar .short-calendar-input {
   height: 0;
   overflow: hidden;
}

.sk-ne-calendar .short-calendar-input input {
   width: 10px !important;
}

.fix-z-index::before {
   z-index: 1 !important;
}

.sk-ne-shadow {
   margin: 4px 18px 3px 2px;
   box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

.sk-ne-shadow.hidden {
   height: 1px;
   visibility: hidden;
}

.sk-ne-calendar .sk-ne-date-month {
   font-size: 9px;
   text-align: center;
   text-transform: uppercase;
   color: white;
   background: #DF4910;
}

.sk-ne-calendar .sk-ne-date-day {
   font-size: 16px;
   text-align: center;
   line-height: 16px;
   color: #7C7772;
   background: white;
}

.sk-ne-content {
   overflow: hidden;
}

.sk-ne-heading,
.sk-ne-title a {
   margin-right: 10px;
}

.sk-ne-title a .sk-ne-heading {
   margin-right: 0;
}

.sk-ne-title .plainsmall {
   display: block;
   margin: 5px 0;
   white-space: nowrap;
}

.sk-ne-show-more {
   margin-bottom: 16px;
   float: left;
}

.sk-ne-show-more.disabled a {
   opacity: 0.5;
    cursor: default;
    color: #ccc;
}

.sk-ne-loading {
   padding: 10px 0;
}

.sk-ne-image {
   width: 32px;
   padding: 3px;
   background: none repeat scroll 0 0 white;
   float: left;
}

.sk-ne-contentwrapper {
   position: relative;
   left: -10px;
   padding-left: 10px;
   overflow: hidden;
}

.sk-ne-wrapper .hide_entry {
   display: none;
}

.sk-ne-contenteditable:hover, .sk-ne-contenteditable:focus {
   box-shadow: 0 0 2px 1px #4799ea;
   outline: none;
}

.sk-ne-title, .sk-ne-description {
   margin: 2px;
}

.sk-select-wrapper {
   display: flex;
   flex-direction: column;
   margin: 10px 0;
   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

.sk-select-label {
   font-size: 12px;
   font-family: Lato2, Helvetica, Arial, sans-serif;
   white-space: nowrap;
   color: #222;
   margin-bottom: 5px;
}

.sk-select-options-wrapper {
   position: relative;
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 30px;
   padding: 0 6px;
   border-radius: 6px;
   border: 1px solid #DDDDDD;
   background-color: #FAFAFA;
   font-size: 14px;
   cursor: pointer;
}

.sk-select-options-wrapper:hover {
   background-color: #F2F2F2;
}

.sk-select-options-wrapper.active {
   border-bottom-left-radius: 0px;
   border-bottom-right-radius: 0px;
   border: 1px solid #00ABDE;
   background-color: #FFFFFF;
}

.sk-selected-option-title {
   max-width: 80%;
   color: #444;
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
}

.sk-selected-option-arrow {
   width: 20px;
   height: 20px;
   background-image: url(/Shared/UIComponents/React/Select/Images/expand_more_icon.svg);
   background-size: contain;
   background-repeat: no-repeat;
}

.sk-selected-option-arrow.active {
   background-image: url(/Shared/UIComponents/React/Select/Images/expand_less_icon.svg);
}

.sk-selected-cover {
   position: fixed;
   inset: 0;
   z-index: 1;
   cursor: default;
}

.sk-select-options {
   display: none;
   position: absolute;
   top: 31px;
   width: 100%;
   max-height: 140px;
   font-size: 14px;
   left: -1px;
   text-align: left;
   background-color: #fff;
   border-bottom-left-radius: 6px;
   border-bottom-right-radius: 6px;
   border-left: 1px solid #DDDDDD;
   border-right: 1px solid #DDDDDD;
   border-bottom: 1px solid #DDDDDD;
   z-index: 2;
   overflow: auto;
}

.sk-select-options.active {
   display: block;
}

.sk-select-option {
   height: 32px;
   padding: 0 6px;
   line-height: 32px;
   cursor: pointer;
}

.sk-select-option:not(:last-child) {
   border-radius: 0px;
}

.sk-select-option.selected {
   background-color: #F2F2F2;
}

.sk-select-option:not(.selected):hover {
   background-color: #FAFAFA;
}

.sk-select-option-label {
   max-width: 80%;
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
   color: #444;
}

.sk-select-hint {
   margin-top: 3px;
   font-size: 10px;
   color: #777;
   white-space: pre-line;
}

.sk-select-option.disabled {
   opacity: 0.5;
   cursor: default;
   background-color: #fff;
}
body:has(.sk-popup-outer-container) {
    overflow: hidden;
}

.sk-popup-outer-container {
    position: fixed;
    inset: 0;
    z-index: 10003; /* Same as modal z-index */
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 0;
}

.sk-popup-container {
    position: absolute;
    max-width: 30vw;
}

.sk-popup-container-full-width {
   max-width: unset;
}

.sk-popup-container.sk-popup-no-background-blur {
    position: fixed;
    z-index: 10003; /* Same as modal z-index */
    opacity: 0;
}

.sk-popup-container.sk-popup-hidden {
    display: none;
}

.sk-popup-arrow {
    position: absolute;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    background: #fff;
    z-index: 10001;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.sk-popup-container:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.sk-popup-inner-container {
    position: relative;
    width: 100%;
    z-index: 10002;
}

.sk-popup-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: fit-content;
    padding: 15px;
    border-radius: 4px;
    background: #fff;
    font-family: Lato2, Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #000000;
}

.sk-popup-title {
    font-size: 14px;
    font-weight: bold;
    color: #121212;
}

.sk-popup-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background-image: url(/Shared/UIComponents/React/Popup/Images/close_icon.svg);
    background-repeat: no-repeat;
    background-size: 15px 15px;
    background-position: 0px 0px;
    cursor: pointer;
}

.sk-popup-footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-top: 10px;
}

.sk-popup-steps-text {
    display: flex;
    flex-shrink: 1;
    align-items: center;
    font-size: 12px;
    color: rgba(68, 68, 68, 0.7);
}

.sk-popup-buttons-container {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    gap: 10px;
}

.sk-popup-fade-out {
    -webkit-animation: sk-popup-fade-out-animation 0.1s linear forwards;
    animation: sk-popup-fade-out-animation 0.1s linear forwards;
}

@-webkit-keyframes sk-popup-fade-out-animation {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
    }
}

@keyframes sk-popup-fade-out-animation {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
    }
}

.sk-popup-fade-in {
    -webkit-animation: sk-popup-fade-in-animation 0.1s linear forwards;
    animation: sk-popup-fade-in-animation 0.1s linear forwards;
}

@-webkit-keyframes sk-popup-fade-in-animation {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@keyframes sk-popup-fade-in-animation {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 600px) {    
   .sk-popup-container {
      max-width: 70vw;
   }

   .sk-popup-container.sk-popup-container-full-width {
      max-width: 100%;
   }
}
.sk-tooltip-container .sk-popup-content {
    padding: 7px 10px;
}
.sk-button {
   position: relative;
   border-radius: 6px;
   font-family: Lato2, Helvetica, Arial, sans-serif;
   font-weight: normal;
   cursor: pointer;
}

.sk-button.small {
   height: 24px;
   min-height: 24px;
   padding: 0 10px;
   font-size: 12px;
}

.sk-button.medium {
   height: 32px;
   min-height: 32px;
   padding: 0 15px;
   font-size: 14px;
}

.sk-button.large {
   height: 40px;
   min-height: 40px;
   padding: 0 20px;
   font-size: 16px;
}

.sk-button.x-large {
   height: 48px;
   min-height: 48px;
   padding: 0 25px;
   font-size: 18px;
}

.sk-button.primary {
   background: #E37A00;
   border: 1px solid #E37A00;
   color: #fff;
}

.sk-button.primaryOutlined {
   background: transparent;
   border: 1px solid #E37A00;
   color: #E37A00;
}

.sk-button.primary:hover, .sk-button.primary:not(:disabled):active, .sk-button.primary:not(:disabled).active {
   background: #BA6400;
   border: 1px solid #BA6400;
   color: #fff;
}

.sk-button.primaryOutlined:hover, .sk-button.primaryOutlined:not(:disabled):active, .sk-button.primaryOutlined:not(:disabled).active {
   background: #E37A00;
   border: 1px solid #E37A00;
   color: #fff;
}

.sk-button.secondary {
   background: #35b291;
   border: 1px solid #35b291;
   color: #fff;
}

.sk-button.secondaryOutlined {
   background: transparent;
   border: 1px solid #35b291;
   color: #35b291;
}

.sk-button.secondary:hover, .sk-button.secondary:not(:disabled):active, .sk-button.secondary:not(:disabled).active {
   background: #28896F;
   border: 1px solid #28896F;
   color: #fff;
}

.sk-button.secondaryOutlined:hover, .sk-button.secondaryOutlined:not(:disabled):active, .sk-button.secondaryOutlined:not(:disabled).active {
   background: #35b291;
   border: 1px solid #35b291;
   color: #fff;
}

.sk-button.base {
   background: #00abde;
   border: 1px solid #00abde;
   color: #fff;
}

.sk-button.baseOutlined {
   background: transparent;
   border: 1px solid #00abde;
   color: #00abde;
}

.sk-button.base:hover, .sk-button.base:not(:disabled):active, .sk-button.base:not(:disabled).active {
   background: #007BA0;
   border: 1px solid #007BA0;
   color: #fff;
}

.sk-button.baseOutlined:hover, .sk-button.baseOutlined:not(:disabled):active, .sk-button.baseOutlined:not(:disabled).active {
   background: #00abde;
   border: 1px solid #00abde;
   color: #fff;
}

.sk-button.alert {
   background: #D50101;
   border: 1px solid #D50101;
   color: #fff;
}

.sk-button.alert:hover, .sk-button.alert:not(:disabled):active, .sk-button.alert:not(:disabled).active {
   background: #A80000;
   border: 1px solid #A80000;
   color: #fff;
}

.sk-button.text {
   background: transparent;
   color: #00abde;
   border: none;
}

.sk-button.text:hover, .sk-button.text:not(:disabled):active, .sk-button.text:not(:disabled).active {
   color: #007BA0;
}

.sk-button.textSecondary {
   background: transparent;
   color: #35b291;
   border: none;
}

.sk-button.textSecondary:hover, .sk-button.textSecondary:not(:disabled):active, .sk-button.textSecondary:not(:disabled).active {
   color: #28896F;
}

.sk-button.primary:disabled,
.sk-button.secondary:disabled {
  border: 1px solid #E6E6E6;
  background-color: #E6E6E6;
  color: #B1B1B1;
  cursor: inherit;
}

.sk-button.base:disabled {
   border: 1px solid #E6E6E6;
   background-color: #E6E6E6;
   color: #B1B1B1;
   cursor: inherit;
 }

.sk-button.primaryOutlined:disabled,
.sk-button.secondaryOutlined:disabled {
  border: 1px solid #D5D5D5;
  background-color: transparent;
  color: #B1B1B1;
  cursor: inherit;
}

.sk-button.baseOutlined:disabled {
  border: 1px solid #D5D5D5;
  background-color: transparent;
  color: #B1B1B1;
  cursor: inherit;
}

.sk-button.text:disabled,
.sk-button.textSecondary:disabled {
  color: #B1B1B1;
  cursor: inherit;
}

.sk-button:focus {
   outline: none;
   box-shadow: none;
 }

.sk-button.loading {
   background: #fff !important;
   color: #fff !important;
}

.sk-button.primary.loading,
.sk-button.primaryOutlined.loading {
   border: 1px solid #E37A00;
}

.sk-button.secondary.loading,
.sk-button.secondaryOutlined.loading {
   border: 1px solid #35b291;
}

.sk-button.base.loading,
.sk-button.text.loading {
   border: 1px solid #00abde;
}

.sk-button.textSecondary.loading {
   border: 1px solid #35b291;
}

.sk-button.baseOutlined.loading {
   border: 1px solid #00abde;
}

.sk-button.alert.loading {
   border: 1px solid #D50101;
}

.sk-button.loading::after {
   content: "";
   position: absolute;
   width: 12px;
   height: 12px;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   margin: auto;
   border: 2px solid transparent;
   border-radius: 50%;
   animation: button-loading-spinner 1s ease infinite;
}

.sk-button.primary.loading::after,
.sk-button.primaryOutlined.loading::after {
   border-top-color: #E37A00;
}

.sk-button.secondary.loading::after,
.sk-button.secondaryOutlined.loading::after {
   border-top-color: #35b291;
}

.sk-button.base.loading::after,
.sk-button.baseOutlined.loading::after,
.sk-button.text.loading::after {
   border-top-color: #00abde;
}

.sk-button.textSecondary.loading::after {
   border-top-color: #35b291;
}

.sk-button.alert.loading::after {
   border-top-color: #D50101;
}

@keyframes button-loading-spinner {
   from {
       transform: rotate(0turn);
   }

   to {
       transform: rotate(1turn);
   }
}
.sk-section-selector-wrapper {
   display: flex;
   position: relative;
}

.sk-section-selector-select-text {
   font-size: 13px;
   color: white;
}

.sk-section-selector-select-title {
   display: inline-block;
   max-width: 85px;
   padding-left: 4px;
   font-size: 13px;
   color: #00abde;
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
   cursor: pointer;
}

.sk-section-selector-select-title-arrow {
   width: 15px;
   height: 15px;
   display: inline-block;
   background: url(/Shared/Images/AdminArea/new-opb-sprite.svg) no-repeat transparent -14px -1747px;
   cursor: pointer;
}

.sk-section-selector-select-option-wrapper {
   display: none;
}

.sk-section-selector-select-option-wrapper.active {
   display: block;
   position: absolute;
   top: 20px;
   right: 0;
   text-align: left;
   z-index: 2;
   font-family: Lato2, Helvetica, Arial, sans-serif;
   font-size: 12px;
   background-color: #fefffe;
   border-radius: 6px;
   color: #3a3a3a;
   box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
   border: 1px solid rgba(221, 221, 221, 1);
   overflow: hidden;
}

.sk-section-selector-selectable-option {
   padding: 10px 13px;
   color: #00abde;
   font-size: 13px;
   line-height: normal;
   font-weight: bold;
   cursor: pointer;
   white-space: nowrap;
}

.sk-section-selector-selectable-option:not(:last-child) {
   border-bottom: 1px solid rgba(221, 221, 221, 0.6);
   border-radius: 0px;
}

.sk-section-selector-selectable-option.selected {
   background-color: #eff6f6;
}

.sk-section-selector-selectable-option:not(.selected):hover {
   background-color: #fafcfc;
}

.sk-button-with-dropdown-container {
   display: flex;
   height: fit-content;
}

.sk-button-with-dropdown-btn {
   border-top-right-radius: 0;
   border-bottom-right-radius: 0;
}

.sk-button-with-dropdown-divider {
   position: relative;
   width: 1px;
}

.sk-button-with-dropdown-divider.primary,
.sk-button-with-dropdown-divider.primaryOutlined {
   background-color: #E37A00;
}

.sk-button-with-dropdown-divider.secondary,
.sk-button-with-dropdown-divider.secondaryOutlined {
   background-color: #35b291;
}

.sk-button-with-dropdown-divider.base,
.sk-button-with-dropdown-divider.baseOutlined {
   background-color: #00abde;
}

.sk-button-with-dropdown-divider.alert {
   background-color: #D50101;
}

.sk-button-with-dropdown-divider.disabled  {
  background-color: #E6E6E6;
}

.sk-button-with-dropdown-divider:after {
   content: '';
   position: absolute;
   display: block;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   background-color: rgba(255,255,255,0.2);
}

.sk-button-with-dropdown-dropdown-btn {
   border-top-left-radius: 0;
   border-bottom-left-radius: 0;
}

.sk-button-with-dropdown-dropdown-btn {
   border-top-left-radius: 0;
   border-bottom-left-radius: 0;
}

.sk-button-with-dropdown-dropdown-btn.small {
   padding: 0 10px !important;
}

.sk-button-with-dropdown-dropdown-btn.medium {
   padding: 0 14px !important;
}

.sk-button-with-dropdown-dropdown-btn.large {
   padding: 0 18px !important;
}

.sk-button-with-dropdown-dropdown-btn.x-large {
   padding: 0 22px !important;
}

.sk-button-with-dropdown-dropdown-btn:after {
   content: '';
   position: absolute;
   display: block;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   background-image: url('/Shared/Images/AdminArea/new-opb-sprite.svg');
   background-repeat: no-repeat;
}

.sk-button-with-dropdown-dropdown-btn.small:after {
   background-size: 36px;
   background-position: center -1521px;
}

.sk-button-with-dropdown-dropdown-btn.small.opened:after {
   background-position: center -1546px;
}

.sk-button-with-dropdown-dropdown-btn.medium:after {
   background-size: 40px;
   background-position: center -1687px;
}

.sk-button-with-dropdown-dropdown-btn.medium.opened:after {
   background-position: center -1715px;
}

.sk-button-with-dropdown-dropdown-btn.large:after {
   background-size: 44px;
   background-position: center -1854px;
}

.sk-button-with-dropdown-dropdown-btn.large.opened:after {
   background-position: center -1884px;
}

.sk-button-with-dropdown-dropdown-btn.x-large:after {
   background-size: 48px;
   background-position: center -2020px;
}

.sk-button-with-dropdown-dropdown-btn.x-large.opened:after {
   background-position: center -2053px;
}

.sk-button-with-dropdown-dropdown.small {
   top: 26px !important;
}

.sk-button-with-dropdown-dropdown.medium {
   top: 34px !important;
}

.sk-button-with-dropdown-dropdown.large {
   top: 42px !important;
}

.sk-button-with-dropdown-dropdown.x-large {
   top: 50px !important;
}
.sk-sip-wrapper {
   margin: 10px 0;
   user-select: none;
}

.sk-sip-label {
   font-size: 12px;
   font-family: Lato2, Helvetica, Arial, sans-serif;
   white-space: nowrap;
   color: #222;
   margin-bottom: 5px;
}

.sk-sip-selected-icon-wrapper {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
   height: 30px;
   color: #444;
   font-size: 12px;
}

.sk-sip-selected-icon {
   background-repeat: no-repeat;
   background-position: left;
   background-size: contain;
}

.sk-sip-none-icon {
   background-image: url('/Shared/UIComponents/React/StockIconPicker/Images/button-icon-none.png');
}

.sk-sip-image-caption {
   display: block;
   position: absolute;
   top: 50%;
   left: 0;
   width: 100%;
   font-size: 10px;
   line-height: 1em;
   margin-top: -.5em;
   text-transform: lowercase;
   text-align: center;
}

.sk-sip-image-wrapper {
   width: 100%;
   height: 210px;
   overflow-y: scroll;
   border: solid 1px #edeeee;
   border-radius: 4px;
}

.sk-sip-image {
   position: relative;
   display: inline-block;
   width: 47px;
   height: 47px;
   margin: 2px;
   padding: 2px;
   background-position: center;
   background-repeat: no-repeat;
   box-sizing: border-box;
   cursor: pointer;
}

.sk-sip-loading-container {
   text-align: center;
   vertical-align: middle;
   line-height: 130px;
}

.sk-sip-image:hover,
.sk-sip-image-selected,
.sk-sip-image-selected:hover {
   padding: 0;
   border: 2px solid #00abde;
}

.sk-sip-hint {
   margin-top: 3px;
   font-size: 10px;
   color: #777;
   white-space: pre-line;
}

.sk-sid-selector-wrapper .sk-select-option-label {
   max-width: 100%;
}

.sk-sid-selector-wrapper .sk-sid-selector-option {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.sk-sid-selector-wrapper .sk-selected-option-title {
   min-width: 140px;
}

.sk-input-field-wrapper {
   margin: 10px 0;
}

.sk-input-field-input {
   width: 100%;
   box-sizing: border-box;
   border-radius: 6px;
   border: 1px solid #DDDDDD;
   background: #FAFAFA;
   font-family: Lato2, Helvetica, Arial, sans-serif;
   color: #444;
}

.sk-input-field-input::placeholder {
   color: #777;
}

.sk-input-field-input.small {
   height: 24px;
   font-size: 12px;
}

.sk-input-field-input.small,
.sk-input-field-input.small:focus:placeholder-shown {
   padding: 0 6px;
}

.sk-input-field-input.medium {
   height: 32px;
   font-size: 14px;
}

.sk-input-field-input.medium,
.sk-input-field-input.medium:focus:placeholder-shown {
   padding: 0 9px;
}

.sk-input-field-input.large {
   height: 40px;
   font-size: 16px;
}

.sk-input-field-input.large,
.sk-input-field-input.large:focus:placeholder-shown {
   padding: 0 12px;
}

.sk-input-field-input.x-large {
   height: 48px;
   font-size: 18px;
}

.sk-input-field-input.x-large,
.sk-input-field-input.x-large:focus:placeholder-shown {
   padding: 0 15px;
}

.sk-input-field-input:hover {
   background: #F2F2F2;
}

.sk-input-field-input:focus {
   background: #FFFFFF;
   border: 1px solid #00ABDE;
   outline: none;
   color: #444;
}

.sk-input-field-input:disabled {
   background: #E6E6E6;
   border: 1px solid #00000000;
   color: #909090;
}

.sk-input-field-input.error {
   border: 1px solid #D50101;
}

.sk-input-field-label {
   font-family: Lato2, Helvetica, Arial, sans-serif;
   white-space: nowrap;
   color: #222;
}

.sk-input-field-label.small,
.sk-input-field-label.medium {
   font-size: 12px;
   margin-bottom: 5px;
}

.sk-input-field-label.large {
   font-size: 14px;
   margin-bottom: 8px;
}

.sk-input-field-label.x-large {
   font-size: 16px;
   margin-bottom: 11px;
}

.sk-input-field-label-required-star {
   color:#d50101;
   white-space: pre;
}

.sk-input-field-error {
   font-family: Lato2, Helvetica, Arial, sans-serif;
   color: #D50101;
   white-space: pre-line;
}

.sk-input-field-error.small,
.sk-input-field-error.medium {
   font-size: 12px;
   margin-top: 5px;
}

.sk-input-field-error.large {
   font-size: 14px;
   margin-top: 8px;
}

.sk-input-field-error.x-large {
   font-size: 16px;
   margin-top: 11px;
}

.sk-input-field-input.range {
   -webkit-appearance: none;
   appearance: none;
   height: 8px; 
   min-height: 8px;
   background: #00abde;
   outline: none;
   margin: 0;
}

.sk-input-field-input.range:focus {
   outline: none;
}

.sk-input-field-input.range::-webkit-slider-thumb {
   -webkit-appearance: none;
   appearance: none;
   width: 16px;
   height: 16px;
   background: #fff;
   border-radius: 16px;
   border: 3px solid #00abde;
   cursor: pointer;
 }
 
 .sk-input-field-input.range::-moz-range-thumb {
   width: 16px;
   height: 16px;
   background: #fff;
   border-radius: 16px;
   border: 3px solid #00abde;
   cursor: pointer;
 }

.sk-input-field-hint {
   font-family: Lato2, Helvetica, Arial, sans-serif;
   color: #777;
   white-space: pre-line;
}

.sk-input-field-hint.small,
.sk-input-field-hint.medium {
   font-size: 10px;
   margin-top: 3px;
}

.sk-input-field-hint.large {
   font-size: 12px;
   margin-top: 5px;
}

.sk-input-field-hint.x-large {
   font-size: 14px;
   margin-top: 8px;
}
.sk-input-with-units-wrapper {
   display: block;
   width: 100%;
   margin: 10px 0;
}

.sk-input-field-with-units {
   display: flex;
   flex-direction: row;
   flex-wrap: nowrap;
   align-items: baseline;
}

.sk-input-field-with-units .sk-input-field-wrapper,
.sk-input-field-with-units .sk-select-wrapper {
   margin: 0;
}

.sk-input-field-with-units .sk-input-field-wrapper {
   flex-grow: 1;
}

.sk-input-field-with-units .sk-select-wrapper {
   max-width: 90px;
   flex: 1 1 75px;
}

.sk-input-field-with-units .sk-select-options-wrapper {
   border-top-left-radius: 0;
   border-bottom-left-radius: 0;
   border-left-color: transparent;
}

.sk-input-field-with-units .sk-select-options-wrapper.active {
   border-left-color: #00ABDE;
}


.sk-input-field-with-units .sk-input-field-input {
   border-top-right-radius: 0;
   border-bottom-right-radius: 0;
}
.sk-validation-error-message {
   font-family: Lato2, Helvetica, Arial, sans-serif;
   color: #D50101;
   white-space: pre-line;
}

.sk-validation-error-message.small,
.sk-validation-error-message.medium {
   font-size: 12px;
}

.sk-validation-error-message.large {
   font-size: 14px;
   margin-top: 3px;
}

.sk-validation-error-message.x-large {
   font-size: 16px;
   margin-top: 6px;
}

.sk-validation-red-outline:focus,
.sk-validation-red-outline:not(:focus) {
   border: 1px solid #D50101;
}
/* Variables declaration */
.rdp-root {
  --rdp-accent-color: blue; /* The accent color used for selected days and UI elements. */
  --rdp-accent-background-color: #f0f0ff; /* The accent background color used for selected days and UI elements. */

  --rdp-day-height: 44px; /* The height of the day cells. */
  --rdp-day-width: 44px; /* The width of the day cells. */

  --rdp-day_button-border-radius: 100%; /* The border radius of the day cells. */
  --rdp-day_button-border: 2px solid transparent; /* The border of the day cells. */
  --rdp-day_button-height: 42px; /* The height of the day cells. */
  --rdp-day_button-width: 42px; /* The width of the day cells. */

  --rdp-selected-border: 2px solid var(--rdp-accent-color); /* The border of the selected days. */
  --rdp-disabled-opacity: 0.5; /* The opacity of the disabled days. */
  --rdp-outside-opacity: 0.75; /* The opacity of the days outside the current month. */
  --rdp-today-color: var(--rdp-accent-color); /* The color of the today's date. */

  --rdp-dropdown-gap: 0.5rem; /* The gap between the dropdowns used in the month captons. */

  --rdp-months-gap: 2rem; /* The gap between the months in the multi-month view. */

  --rdp-nav_button-disabled-opacity: 0.5; /* The opacity of the disabled navigation buttons. */
  --rdp-nav_button-height: 2.25rem; /* The height of the navigation buttons. */
  --rdp-nav_button-width: 2.25rem; /* The width of the navigation buttons. */
  --rdp-nav-height: 2.75rem; /* The height of the navigation bar. */

  --rdp-range_middle-background-color: var(--rdp-accent-background-color); /* The color of the background for days in the middle of a range. */
  --rdp-range_middle-color: inherit; /* The color of the range text. */

  --rdp-range_start-color: white; /* The color of the range text. */
  --rdp-range_start-background: linear-gradient(
    var(--rdp-gradient-direction),
    transparent 50%,
    var(--rdp-range_middle-background-color) 50%
  ); /* Used for the background of the start of the selected range. */
  --rdp-range_start-date-background-color: var(--rdp-accent-color); /* The background color of the date when at the start of the selected range. */

  --rdp-range_end-background: linear-gradient(
    var(--rdp-gradient-direction),
    var(--rdp-range_middle-background-color) 50%,
    transparent 50%
  ); /* Used for the background of the end of the selected range. */
  --rdp-range_end-color: white; /* The color of the range text. */
  --rdp-range_end-date-background-color: var(--rdp-accent-color); /* The background color of the date when at the end of the selected range. */

  --rdp-week_number-border-radius: 100%; /* The border radius of the week number. */
  --rdp-week_number-border: 2px solid transparent; /* The border of the week number. */

  --rdp-week_number-height: var(--rdp-day-height); /* The height of the week number cells. */
  --rdp-week_number-opacity: 0.75; /* The opacity of the week number. */
  --rdp-week_number-width: var(--rdp-day-width); /* The width of the week number cells. */
  --rdp-weeknumber-text-align: center; /* The text alignment of the weekday cells. */

  --rdp-weekday-opacity: 0.75; /* The opacity of the weekday. */
  --rdp-weekday-padding: 0.5rem 0rem; /* The padding of the weekday. */
  --rdp-weekday-text-align: center; /* The text alignment of the weekday cells. */

  --rdp-gradient-direction: 90deg;

  --rdp-animation_duration: 0.3s;
  --rdp-animation_timing: cubic-bezier(0.4, 0, 0.2, 1);
}

.rdp-root[dir="rtl"] {
  --rdp-gradient-direction: -90deg;
}

.rdp-root[data-broadcast-calendar="true"] {
  --rdp-outside-opacity: unset;
}

/* Root of the component. */
.rdp-root {
  position: relative; /* Required to position the navigation toolbar. */
  box-sizing: border-box;
}

.rdp-root * {
  box-sizing: border-box;
}

.rdp-day {
  width: var(--rdp-day-width);
  height: var(--rdp-day-height);
  text-align: center;
}

.rdp-day_button {
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  justify-content: center;
  align-items: center;
  display: flex;

  width: var(--rdp-day_button-width);
  height: var(--rdp-day_button-height);
  border: var(--rdp-day_button-border);
  border-radius: var(--rdp-day_button-border-radius);
}

.rdp-day_button:disabled {
  cursor: revert;
}

.rdp-caption_label {
  z-index: 1;

  position: relative;
  display: inline-flex;
  align-items: center;

  white-space: nowrap;
  border: 0;
}

.rdp-dropdown:focus-visible ~ .rdp-caption_label {
  outline: 5px auto Highlight;
  /* biome-ignore lint/suspicious/noDuplicateProperties: backward compatibility */
  outline: 5px auto -webkit-focus-ring-color;
}

.rdp-button_next,
.rdp-button_previous {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  appearance: none;

  width: var(--rdp-nav_button-width);
  height: var(--rdp-nav_button-height);
}

.rdp-button_next:disabled,
.rdp-button_next[aria-disabled="true"],
.rdp-button_previous:disabled,
.rdp-button_previous[aria-disabled="true"] {
  cursor: revert;

  opacity: var(--rdp-nav_button-disabled-opacity);
}

.rdp-chevron {
  display: inline-block;
  fill: var(--rdp-accent-color);
}

.rdp-root[dir="rtl"] .rdp-nav .rdp-chevron {
  transform: rotate(180deg);
  transform-origin: 50%;
}

.rdp-dropdowns {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--rdp-dropdown-gap);
}
.rdp-dropdown {
  z-index: 2;

  /* Reset */
  opacity: 0;
  appearance: none;
  position: absolute;
  inset-block-start: 0;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: inherit;
  border: none;
  line-height: inherit;
}

.rdp-dropdown_root {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.rdp-dropdown_root[data-disabled="true"] .rdp-chevron {
  opacity: var(--rdp-disabled-opacity);
}

.rdp-month_caption {
  display: flex;
  align-content: center;
  height: var(--rdp-nav-height);
  font-weight: bold;
  font-size: large;
}

.rdp-root[data-nav-layout="around"] .rdp-month,
.rdp-root[data-nav-layout="after"] .rdp-month {
  position: relative;
}

.rdp-root[data-nav-layout="around"] .rdp-month_caption {
  justify-content: center;
  margin-inline-start: var(--rdp-nav_button-width);
  margin-inline-end: var(--rdp-nav_button-width);
  position: relative;
}

.rdp-root[data-nav-layout="around"] .rdp-button_previous {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  height: var(--rdp-nav-height);
  display: inline-flex;
}

.rdp-root[data-nav-layout="around"] .rdp-button_next {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  height: var(--rdp-nav-height);
  display: inline-flex;
  justify-content: center;
}

.rdp-months {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: var(--rdp-months-gap);
  max-width: fit-content;
}

.rdp-month_grid {
  border-collapse: collapse;
}

.rdp-nav {
  position: absolute;
  inset-block-start: 0;
  inset-inline-end: 0;

  display: flex;
  align-items: center;

  height: var(--rdp-nav-height);
}

.rdp-weekday {
  opacity: var(--rdp-weekday-opacity);
  padding: var(--rdp-weekday-padding);
  font-weight: 500;
  font-size: smaller;
  text-align: var(--rdp-weekday-text-align);
  text-transform: var(--rdp-weekday-text-transform);
}

.rdp-week_number {
  opacity: var(--rdp-week_number-opacity);
  font-weight: 400;
  font-size: small;
  height: var(--rdp-week_number-height);
  width: var(--rdp-week_number-width);
  border: var(--rdp-week_number-border);
  border-radius: var(--rdp-week_number-border-radius);
  text-align: var(--rdp-weeknumber-text-align);
}

/* DAY MODIFIERS */
.rdp-today:not(.rdp-outside) {
  color: var(--rdp-today-color);
}

.rdp-selected {
  font-weight: bold;
  font-size: large;
}

.rdp-selected .rdp-day_button {
  border: var(--rdp-selected-border);
}

.rdp-outside {
  opacity: var(--rdp-outside-opacity);
}

.rdp-disabled {
  opacity: var(--rdp-disabled-opacity);
}

.rdp-hidden {
  visibility: hidden;
  color: var(--rdp-range_start-color);
}

.rdp-range_start {
  background: var(--rdp-range_start-background);
}

.rdp-range_start .rdp-day_button {
  background-color: var(--rdp-range_start-date-background-color);
  color: var(--rdp-range_start-color);
}

.rdp-range_middle {
  background-color: var(--rdp-range_middle-background-color);
}

.rdp-range_middle .rdp-day_button {
  border: unset;
  border-radius: unset;
  color: var(--rdp-range_middle-color);
}

.rdp-range_end {
  background: var(--rdp-range_end-background);
  color: var(--rdp-range_end-color);
}

.rdp-range_end .rdp-day_button {
  color: var(--rdp-range_start-color);
  background-color: var(--rdp-range_end-date-background-color);
}

.rdp-range_start.rdp-range_end {
  background: revert;
}

.rdp-focusable {
  cursor: pointer;
}

@keyframes rdp-slide_in_left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes rdp-slide_in_right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes rdp-slide_out_left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes rdp-slide_out_right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.rdp-weeks_before_enter {
  animation: rdp-slide_in_left var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-weeks_before_exit {
  animation: rdp-slide_out_left var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-weeks_after_enter {
  animation: rdp-slide_in_right var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-weeks_after_exit {
  animation: rdp-slide_out_right var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-root[dir="rtl"] .rdp-weeks_after_enter {
  animation: rdp-slide_in_left var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-root[dir="rtl"] .rdp-weeks_before_exit {
  animation: rdp-slide_out_right var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-root[dir="rtl"] .rdp-weeks_before_enter {
  animation: rdp-slide_in_right var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-root[dir="rtl"] .rdp-weeks_after_exit {
  animation: rdp-slide_out_left var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

@keyframes rdp-fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes rdp-fade_out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.rdp-caption_after_enter {
  animation: rdp-fade_in var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-caption_after_exit {
  animation: rdp-fade_out var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-caption_before_enter {
  animation: rdp-fade_in var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.rdp-caption_before_exit {
  animation: rdp-fade_out var(--rdp-animation_duration)
    var(--rdp-animation_timing) forwards;
}

.sk-date-picker-input-input {
   width: 100%;
   box-sizing: border-box;
   padding: 0 6px;
   border-radius: 6px;
   border: none;
   background: #ebebeb;
   min-height: 32px;
   font-size: 14px;
}

.sk-date-picker-input-input:focus {
   outline: #00abde solid 1px;
}

.rdp-root {
  --rdp-accent-color: #00abde;
  --rdp-accent-background-color: #00abde;
  --rdp-day-height: 34px;
  --rdp-day-width: 34px;
  --rdp-day_button-height: 36px;
  --rdp-day_button-width: 36px;
  --rdp-nav-height: auto;
  --rdp-nav_button-height: auto;
  --rdp-nav_button-width: auto;
}

.rdp-selected {
  font-weight: bold;
  font-size: unset;
}

.rdp-selected .rdp-day_button {
  background-color: #00abde;
  color: #fff;
}

.rdp-nav {
  gap: 10px;
}

.rdp-chevron {
  width: 18px;
  height: 18px;
}

.rdp-month_grid {
  margin-top: 10px;
}

.rdp-month_caption {
  font-size: medium;
}
