.d-noscroll {
  overflow: hidden;
}

#Datepickk {
  z-index: 999;
  color: #333;
  -webkit-user-select: none;
  user-select: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: inherit;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

#Datepickk.MSIE:not(.wrapped):not(.inline) .d-calendar {
  height: 560px;
}

#Datepickk.d-show .d-overlay {
  animation-name: show;
  animation-duration: .2s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

#Datepickk.d-hide > * {
  animation-name: DatepickkHide;
  animation-duration: .2s;
  animation-timing-function: linear;
  animation-fill-mode: both;
}

#Datepickk.d-hide .d-overlay {
  animation-name: show;
  animation-duration: .15s;
  animation-timing-function: ease-out;
  animation-direction: reverse;
  animation-fill-mode: both;
}

#Datepickk .d-overlay {
  z-index: 1;
  background-color: #373a47f2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#Datepickk .d-title {
  color: #fff;
  text-align: center;
  z-index: 2;
  margin: 25px 0;
  font-size: 30px;
  position: relative;
}

#Datepickk .d-confirm {
  color: #fff;
  cursor: pointer;
  z-index: 2;
  background-color: #0000;
  border: none;
  outline: none;
  margin: 25px 0;
  padding: 0;
  font-family: inherit;
  font-size: 30px;
  font-weight: 500;
  position: relative;
}

#Datepickk .d-title:empty, #Datepickk .d-confirm:empty {
  display: none;
}

@media (height <= 528px) {
  #Datepickk .d-title, #Datepickk .d-confirm {
    margin: 15px 0;
    font-size: 20px;
  }

  #Datepickk .d-calendar {
    font-size: 20px;
  }
}

#Datepickk.multi .d-calendar, #Datepickk.multi .d-legend {
  max-width: 800px;
}

#Datepickk.multi .d-table {
  padding-top: 35px;
  position: relative;
}

#Datepickk.multi .d-table:before {
  content: attr(data-month);
  text-align: right;
  box-sizing: border-box;
  color: #ccc;
  width: 100%;
  padding: 5px 10px 5px 0;
  font-size: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

#Datepickk.inline.d-show .d-calendar {
  animation: none;
}

#Datepickk.inline, #Datepickk.wrapped {
  z-index: 0;
  position: static;
}

#Datepickk.inline .d-calendar, #Datepickk.wrapped .d-calendar {
  box-shadow: none;
  z-index: 0;
  max-width: none;
  max-height: none;
}

#Datepickk.inline .d-confirm, #Datepickk.wrapped .d-confirm, #Datepickk.inline .d-title, #Datepickk.wrapped .d-title {
  color: #222;
}

#Datepickk.inline .d-overlay, #Datepickk.wrapped .d-overlay {
  display: none;
}

#Datepickk.inline .d-legend, #Datepickk.wrapped .d-legend {
  max-width: none;
  max-height: none;
  color: #222 !important;
}

#Datepickk.fullscreen .d-calendar {
  max-width: none;
  max-height: none;
}

#Datepickk.fullscreen .d-calendar input + label {
  box-sizing: border-box;
  outline: 1px solid #eaeaea;
  justify-content: flex-end !important;
  align-items: flex-start !important;
}

#Datepickk.fullscreen .d-calendar input + label text {
  padding: 5px 10px 0 0;
}

#Datepickk.fullscreen .d-legend {
  max-width: none;
}

#Datepickk .d-legend {
  z-index: 2;
  color: #fff;
  background-color: #f5f5f5;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  display: flex;
  position: relative;
}

#Datepickk .d-legend:empty {
  height: 0;
}

#Datepickk .d-legend p {
  cursor: pointer;
  color: #1b353f;
  margin: 0;
  padding: 15px;
  transition: background-color .2s;
  animation-name: DatepickfadeInUp;
  animation-duration: .5s;
  animation-fill-mode: both;
  backface-visibility: visible !important;
}

#Datepickk .d-legend p:after {
  content: attr(data-legend);
}

#Datepickk .d-legend p span {
  vertical-align: bottom;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  display: inline-block;
}

#Datepickk .d-calendar {
  z-index: 2;
  background-color: #fff;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
  width: 100%;
  max-width: 500px;
  max-height: 560px;
  margin: 0;
  font-size: 20px;
  display: flex;
  position: relative;
  box-shadow: 0 2px 10px -2px #0009;
}

#Datepickk .d-header {
  color: #fff;
  background-color: #1b363f;
  font-size: 1.5em;
  position: relative;
}

#Datepickk .d-header p {
  text-align: center;
  margin: .5em 0;
}

#Datepickk .d-header i {
  cursor: pointer;
  text-align: center;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  transition: background-color .2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#Datepickk .d-header i:before, #Datepickk .d-header i:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
}

#Datepickk .d-header i:before {
  border-top: 10px solid #0000;
  border-bottom: 10px solid #0000;
}

#Datepickk .d-header i:after {
  border-top: 7px solid #0000;
  border-bottom: 7px solid #0000;
  transition: border-color .2s;
}

#Datepickk .d-header i#d-previous {
  left: 20px;
}

#Datepickk .d-header i#d-previous:before {
  border-right: 10px solid #fff;
  top: 5px;
  left: 7px;
}

#Datepickk .d-header i#d-previous:after {
  border-right: 7px solid #1b363f;
  top: 8px;
  left: 10px;
}

#Datepickk .d-header i#d-next {
  right: 20px;
}

#Datepickk .d-header i#d-next:before {
  border-left: 10px solid #fff;
  top: 5px;
  left: 12px;
}

#Datepickk .d-header i#d-next:after {
  border-left: 7px solid #1b363f;
  top: 8px;
  left: 12px;
}

#Datepickk .d-header i:hover {
  background-color: #5e7178;
}

#Datepickk .d-header i:hover:after {
  border-left-color: #5e7178 !important;
  border-right-color: #5e7178 !important;
}

#Datepickk .d-month {
  cursor: pointer;
  white-space: nowrap;
}

#Datepickk .d-year {
  cursor: pointer;
  margin-left: 10px;
}

#Datepickk .d-year:before {
  content: "";
}

#Datepickk .d-month-picker {
  pointer-events: none;
  background-color: #1b363fe6;
  justify-content: space-between;
  height: 0;
  transition: height .2s;
  display: flex;
  overflow: hidden;
}

#Datepickk .d-month-picker.d-show {
  pointer-events: auto;
  height: 44px;
}

#Datepickk .d-month-picker > div {
  text-align: center;
  color: #fff;
  cursor: pointer;
  width: 8.33333%;
  line-height: 44px;
}

#Datepickk .d-month-picker > div:hover, #Datepickk .d-month-picker > div:focus {
  color: #fff;
  background-color: #e32d2d;
}

#Datepickk .d-month-picker > div.current {
  color: #fff;
  background-color: #e9965a;
}

#Datepickk .d-year-picker {
  pointer-events: none;
  background-color: #1b363fe6;
  justify-content: space-between;
  height: 0;
  transition: height .2s;
  display: flex;
  overflow: hidden;
}

#Datepickk .d-year-picker.d-show {
  pointer-events: auto;
  height: 44px;
}

#Datepickk .d-year-picker > div {
  text-align: center;
  color: #fff;
  cursor: pointer;
  width: 9.09091%;
  line-height: 44px;
}

#Datepickk .d-year-picker > div:hover, #Datepickk .d-year-picker > div:focus {
  color: #fff;
  background-color: #e32d2d;
}

#Datepickk .d-year-picker > div.current {
  color: #fff;
  background-color: #e9965a;
}

#Datepickk .d-weekdays {
  display: flex;
}

#Datepickk .d-week {
  color: #fff;
  background-color: #e95a5a;
  width: 100%;
  display: flex;
}

#Datepickk .d-week + .d-week {
  border-left: 1px solid #ffffff0d;
}

#Datepickk .d-week > div {
  text-align: center;
  flex-basis: 14.2857%;
}

#Datepickk .d-week > div p {
  margin: .8em 0;
}

@media (height <= 540px) {
  #Datepickk .d-week {
    display: none;
  }
}

#Datepickk .d-table {
  flex-wrap: wrap;
  flex: 1;
  width: 100%;
  display: flex;
}

#Datepickk .d-table:first-child:nth-last-child(n+3), #Datepickk .d-table:first-child:nth-last-child(n+3) ~ div {
  border-bottom: 1px solid #0000000d;
  flex: 0 calc(33.3333% - 1px);
}

#Datepickk .d-table label:nth-of-type(7n) .d-date-legends {
  padding-right: 0;
}

#Datepickk .d-table label:nth-last-of-type(-n+7) .d-date-legends {
  padding-bottom: 0;
}

#Datepickk .d-table input {
  display: none;
}

#Datepickk .d-table input + label {
  cursor: pointer;
  -webkit-tap-highlight-color: #0000;
  box-sizing: border-box;
  -ms-flex-preferred-size: 14.28%;
  flex-basis: 14.2857%;
  justify-content: center;
  align-items: center;
  transition: background-color .2s, background .2s, color .2s;
  display: flex;
  position: relative;
}

#Datepickk .d-table input + label text {
  z-index: 9;
  pointer-events: none;
  position: relative;
}

#Datepickk .d-table input + label[style*="linear-gradient"] text {
  text-shadow: 0 0 20px #000;
}

#Datepickk .d-table input + label.today text:before {
  content: "";
  background-color: #e95a5a;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -5px;
  left: 0;
}

#Datepickk .d-table input + label:before {
  content: "";
  transform-origin: 0;
  background-color: #7dd076;
  border-radius: 5px;
  width: 75%;
  height: 75%;
  transition: transform .1s ease-out;
  position: absolute;
  top: 12.5%;
  left: 12.5%;
  transform: scaleX(0);
}

#Datepickk .d-table input + label.legend-hover {
  z-index: 10;
  animation: 1s infinite legendhover;
}

@keyframes legendhover {
  0% {
    transform: translate(0);
  }

  50% {
    transform: translate(0, -5px);
  }

  100% {
    transform: translate(0);
  }
}

#Datepickk .d-table input + label.next, #Datepickk .d-table input + label.prev {
  color: #ccc;
}

#Datepickk .d-table input + label [data-tooltip]:after {
  content: "";
  background-color: #1b363f;
  border-radius: 100%;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  right: -10px;
}

#Datepickk .d-table input + label .d-tooltip {
  color: #fff;
  z-index: 13;
  text-align: center;
  background-color: #1b363f;
  padding: 7px;
  font-size: .7em;
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -5px);
}

#Datepickk .d-table input + label .d-tooltip:before {
  content: "";
  border-bottom: 7px solid #1b363f;
  border-left: 5px solid #0000;
  border-right: 5px solid #0000;
  margin-left: -5px;
  position: absolute;
  top: -7px;
  left: 50%;
}

#Datepickk .d-table input + label .d-tooltip:empty {
  display: none !important;
}

#Datepickk .d-table input + label:hover .d-tooltip {
  display: block;
}

#Datepickk .d-table input:checked + label {
  color: #fff;
}

#Datepickk .d-table input:checked + label:before {
  transform: scaleX(1);
}

#Datepickk .d-table input:disabled + label {
  cursor: not-allowed;
}

#Datepickk .d-table input:disabled + label:after {
  content: "";
  z-index: 10;
  transform-origin: center;
  background-color: #c60000;
  width: 60%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 20%;
  transform: rotate(-25deg);
}

#Datepickk .d-table input + label.d-hidden {
  cursor: default;
  text-decoration: line-through;
  color: #ccc !important;
  background: #f0f0f0 !important;
}

#Datepickk .d-table input + label.d-hidden:after {
  content: none;
}

#Datepickk .d-tables {
  flex-wrap: wrap;
  flex: 1;
  display: flex;
}

#Datepickk .d-tables:not(.locked) input:not(:checked) + label:not(.hidden):hover {
  color: #222;
  background-color: #eaeaea;
}

#Datepickk .d-tables.locked label {
  cursor: default;
}

#Datepickk .d-tables.range:not(.before) input:not(.single):checked + label, #Datepickk .d-tables.range:not(.before) input:not(.single):checked + label ~ label:not(.hidden) {
  color: #fff;
}

#Datepickk .d-tables.range:not(.before) input:not(.single):checked + label ~ label:not(.hidden):before {
  background-color: #7dd07680;
  transform: scaleX(1);
}

#Datepickk .d-tables.range:not(.before) input:not(.single):checked ~ label:hover ~ label, #Datepickk .d-tables.range:not(.before) input:not(.single):checked ~ label:focus ~ label {
  color: #666;
}

#Datepickk .d-tables.range:not(.before) input:not(.single):checked ~ label:hover ~ label:before, #Datepickk .d-tables.range:not(.before) input:not(.single):checked ~ label:focus ~ label:before {
  transform: scaleX(0);
}

#Datepickk .d-tables.range:not(.before) input:not(.single):checked ~ label:hover ~ label.next, #Datepickk .d-tables.range:not(.before) input:not(.single):checked ~ label:focus ~ label.next, #Datepickk .d-tables.range:not(.before) input:not(.single):checked ~ label:hover ~ label.prev, #Datepickk .d-tables.range:not(.before) input:not(.single):checked ~ label:focus ~ label.prev {
  color: #ccc;
}

#Datepickk .d-tables.range:not(.before) input:not(.single):checked ~ input:checked + label {
  color: #fff;
}

#Datepickk .d-tables.range:not(.before) input:not(.single):checked ~ input:checked + label:before {
  background-color: #7dd076;
  transform: scaleX(1);
}

#Datepickk .d-tables.range:not(.before) input:not(.single):checked ~ input:checked + label ~ label {
  color: inherit;
}

#Datepickk .d-tables.range:not(.before) input:not(.single):checked ~ input:checked + label ~ label.next, #Datepickk .d-tables.range:not(.before) input:not(.single):checked ~ input:checked + label ~ label.prev {
  color: #ccc;
}

#Datepickk .d-tables.range:not(.before) input:not(.single):checked ~ input:checked + label ~ label:before {
  transform: scaleX(0);
}

#Datepickk .d-tables.range.before input:not(.single):not(:checked) + label {
  color: #fff;
}

#Datepickk .d-tables.range.before input:not(.single):not(:checked) + label:before {
  background-color: #e95a7e4d;
  transform: scaleX(1);
}

#Datepickk .d-tables.range.before input:not(.single):checked + label ~ label {
  color: inherit;
}

#Datepickk .d-tables.range.before input:not(.single):checked + label ~ label.next, #Datepickk .d-tables.range.before input:not(.single):checked + label ~ label.prev {
  color: #ccc;
}

#Datepickk .d-tables.range.before input:not(.single):checked + label ~ label:before {
  transform: scaleX(0);
}

#Datepickk .d-fadeInUp {
  animation-name: DatepickfadeInUp;
  animation-duration: .5s;
  animation-fill-mode: both;
  backface-visibility: visible !important;
}

@keyframes DatepickBGShow {
  from {
    opacity: 0;
  }
}

@keyframes DatepickfadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.d-fadeInUp {
  animation-name: DatepickfadeInUp;
}

#Datepickk.d-show > * {
  animation-name: DatepickkShow;
  animation-duration: .2s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

@keyframes DatepickkShow {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
}

@keyframes DatepickkHide {
  to {
    opacity: 0;
    transform: translateY(50px);
  }
}

.adyen-checkout__spinner__wrapper {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.adyen-checkout__spinner__wrapper--inline {
  height: auto;
  margin-right: 8px;
  display: inline-block;
}

[dir="rtl"] .adyen-checkout__spinner__wrapper--inline {
  margin-left: 8px;
  margin-right: 0;
}

.adyen-checkout__spinner {
  border: 3px solid #0075ff;
  border-top-color: #0000;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  animation: 1.5s linear infinite rotate-spinner;
}

.adyen-checkout__spinner--large {
  width: 43px;
  height: 43px;
}

.adyen-checkout__spinner--small {
  border-width: 2px;
  width: 16px;
  height: 16px;
}

.adyen-checkout__spinner--medium {
  width: 28px;
  height: 28px;
}

@keyframes rotate-spinner {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.adyen-checkout__button {
  color: #fff;
  cursor: pointer;
  background: #00112c;
  border: 0;
  border-radius: 6px;
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 15px;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  transition: background .3s ease-out, box-shadow .3s ease-out;
}

.adyen-checkout__button:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #3070ed;
}

.adyen-checkout__button:hover {
  background: #1c3045;
  box-shadow: 0 0, 0 2px 4px -1px #0003, 0 4px 5px #00000024;
}

.adyen-checkout__button:active {
  background: #3a4a5c;
}

.adyen-checkout__button:hover:focus {
  box-shadow: 0 0 0 2px #3070ed, 0 3px 4px #000f2d33;
}

.adyen-checkout__button:disabled, .adyen-checkout__button:disabled:hover {
  box-shadow: none;
  cursor: not-allowed;
  opacity: .4;
  -webkit-user-select: all;
  user-select: all;
}

.adyen-checkout__button.adyen-checkout__button--loading {
  box-shadow: none;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  background: #687282;
}

.adyen-checkout__button.adyen-checkout__button--pay {
  justify-content: center;
  margin-top: 24px;
  display: flex;
}

.adyen-checkout__button.adyen-checkout__button--pay:disabled {
  opacity: .4;
}

.adyen-checkout__button.adyen-checkout__button--standalone {
  margin-top: 0;
}

.adyen-checkout__button.adyen-checkout__button--inline {
  width: auto;
  height: auto;
  padding: 10px 8px;
  font-size: .81em;
  display: block;
}

.adyen-checkout__button.adyen-checkout__button--ghost {
  color: #00112c;
  background: none;
  border: 0;
}

.adyen-checkout__button.adyen-checkout__button--ghost:hover {
  box-shadow: none;
  background: #f7f8f9;
}

.adyen-checkout__button.adyen-checkout__button--ghost:active {
  box-shadow: none;
  background: #e6e9eb;
}

.adyen-checkout__button.adyen-checkout__button--secondary {
  color: #00112c;
  background: #fff;
  border: 1px solid #00112c;
  padding: 10px 12px;
}

.adyen-checkout__button.adyen-checkout__button--secondary:hover {
  background: #f7f8f9;
  box-shadow: 0 2px 4px #1b2a3c33, 0 4px 5px #1b2a3c24;
}

.adyen-checkout__button.adyen-checkout__button--secondary:active, .adyen-checkout__button.adyen-checkout__button--secondary:active:hover {
  box-shadow: none;
  background: #f7f8f9;
}

.adyen-checkout__button.adyen-checkout__button--secondary:disabled, .adyen-checkout__button.adyen-checkout__button--secondary:disabled:hover {
  box-shadow: none;
  cursor: not-allowed;
  opacity: .5;
  -webkit-user-select: all;
  user-select: all;
  background-color: #f7f8f9;
  border-color: #99a3ad;
}

.adyen-checkout__button.adyen-checkout__button--secondary .adyen-checkout__spinner {
  border-color: #0000 #00112c #00112c;
}

.adyen-checkout__button.adyen-checkout__button--action {
  color: #0075ff;
  background: #0066ff1a;
  border: 1px solid #0000;
  padding: 10px 12px;
}

.adyen-checkout__button.adyen-checkout__button--action:hover {
  box-shadow: none;
  background: #06f3;
}

.adyen-checkout__button.adyen-checkout__button--action:active, .adyen-checkout__button.adyen-checkout__button--action:active:hover {
  box-shadow: none;
  background: #0066ff4d;
}

.adyen-checkout__button.adyen-checkout__button--link {
  color: #0075ff;
  background: none;
  border: 1px solid #0000;
  border-radius: 3px;
  padding: 2px;
  font-weight: 400;
}

.adyen-checkout__button.adyen-checkout__button--link:hover {
  box-shadow: none;
  background: none;
  text-decoration: underline;
}

.adyen-checkout__button.adyen-checkout__button--completed, .adyen-checkout__button.adyen-checkout__button--completed:active, .adyen-checkout__button.adyen-checkout__button--completed:active:hover, .adyen-checkout__button.adyen-checkout__button--completed:hover {
  color: #fff;
  background: #089a43;
}

.adyen-checkout__button.adyen-checkout__button--completed .adyen-checkout__button__icon {
  filter: brightness(0) invert();
}

.adyen-checkout__button__content {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.adyen-checkout__button__icon {
  margin-right: 12px;
}

[dir="rtl"] .adyen-checkout__button__icon {
  margin-left: 12px;
  margin-right: 0;
}

.adyen-checkout__button__text {
  text-overflow: ellipsis;
  white-space: nowrap;
  justify-content: center;
  display: block;
  overflow: hidden;
}

.adyen-checkout__button__text--sr-only {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.adyen-checkout__button .adyen-checkout__spinner {
  border-color: #0000 #fff #fff;
}

.checkout-secondary-button__text {
  margin-top: 1px;
  margin-left: 5px;
  font-size: .85em;
}

.adyen-checkout__iframe {
  border: 0;
}

.adyen-checkout__fieldset {
  padding-block-start: 0;
  margin-inline: 0;
  padding-bottom: 8px;
  border: none;
  width: 100%;
  margin: 0;
  padding-block-end: 0;
  padding-inline: 0;
  display: block;
}

.adyen-checkout__fieldset:last-of-type {
  padding-bottom: 0;
}

.adyen-checkout__fieldset + .adyen-checkout__fieldset {
  margin-top: 16px;
}

.adyen-checkout__fieldset__title {
  color: #687282;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  padding: 0 0 12px;
  font-size: .68em;
  font-weight: 700;
  display: block;
}

.adyen-checkout__field-group, .adyen-checkout__fieldset__fields {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

@media (width >= 480px) {
  .adyen-checkout__field-group:last-of-type .adyen-checkout__field {
    margin-bottom: 0;
  }
}

.adyen-checkout__field-group:last-of-type .adyen-checkout__field:last-of-type, :not(.adyen-checkout__field-group) > .adyen-checkout__field:last-of-type {
  margin-bottom: 0;
}

.adyen-checkout__fieldset--readonly .adyen-checkout__fieldset__fields {
  color: #00112c;
  margin: 0;
  font-size: .81em;
  line-height: 19px;
}

.adyen-checkout__field {
  width: 100%;
  margin-bottom: 16px;
  display: block;
}

.adyen-checkout__label {
  display: block;
  position: relative;
}

.adyen-checkout__helper-text, .adyen-checkout__label__text {
  color: #00112c;
  padding-bottom: 5px;
  font-size: .81em;
  font-weight: 400;
  line-height: 13px;
  display: block;
}

.adyen-checkout__label-adornment--end {
  position: absolute;
  top: 0;
  right: 0;
}

.adyen-checkout__helper-text {
  color: #687282;
}

.adyen-checkout__label__text {
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .1s ease-out;
  display: block;
  overflow: hidden;
}

.adyen-checkout__label__text--error {
  color: #c12424;
}

.adyen-checkout__label--focused .adyen-checkout__label__text {
  color: #0075ff;
}

.adyen-checkout__error-text {
  color: #c12424;
  align-items: center;
  margin-top: 4px;
  font-size: .75em;
  font-weight: 400;
  display: flex;
}

.adyen-checkout__field-wrapper {
  width: 100%;
  display: flex;
}

@media (width >= 480px) {
  .adyen-checkout__field--20 {
    width: 20%;
  }

  .adyen-checkout__field--30 {
    width: 30%;
  }

  .adyen-checkout__field--40 {
    width: 40%;
  }

  .adyen-checkout__field--50 {
    width: 50%;
  }

  .adyen-checkout__field--60 {
    width: 60%;
  }

  .adyen-checkout__field--70 {
    width: 70%;
  }

  .adyen-checkout__field--80 {
    width: 80%;
  }

  .adyen-checkout__field--col-70 {
    width: calc(70% - 8px);
  }

  .adyen-checkout__field--col-30 {
    width: calc(30% - 8px);
  }

  .adyen-checkout__field--col-50 {
    width: calc(50% - 8px);
  }
}

.adyen-checkout__field-wrapper > .adyen-checkout__field:first-child {
  margin-right: 8px;
}

[dir="rtl"] .adyen-checkout__field-wrapper > .adyen-checkout__field:first-child {
  margin-left: 8px;
  margin-right: 0;
}

.adyen-checkout__field-wrapper > .adyen-checkout__field:nth-child(2) {
  margin-left: 8px;
}

[dir="rtl"] .adyen-checkout__field-wrapper > .adyen-checkout__field:nth-child(2) {
  margin-left: 0;
  margin-right: 8px;
}

.adyen-checkout__field-wrapper:last-of-type > .adyen-checkout__field {
  margin-bottom: 0;
}

.adyen-checkout__input {
  box-sizing: border-box;
  caret-color: #0075ff;
  color: #00112c;
  background: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 6px;
  outline: none;
  width: 100%;
  height: 40px;
  padding: 5px 8px;
  font-family: inherit;
  font-size: 1em;
  transition: border .2s ease-out, box-shadow .2s ease-out;
  display: block;
  position: relative;
}

.adyen-checkout__input:hover {
  border-color: #99a3ad;
}

.adyen-checkout__input:required {
  box-shadow: none;
}

.adyen-checkout__input--disabled, .adyen-checkout__input[readonly] {
  background: #e6e9eb;
  border-color: #e6e9eb;
}

.adyen-checkout__input--disabled:hover {
  border-color: #e6e9eb;
}

.adyen-checkout__input-wrapper {
  display: block;
  position: relative;
}

.adyen-checkout__input-wrapper--block {
  display: block;
}

.adyen-checkout-input__inline-validation {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

[dir="rtl"] .adyen-checkout-input__inline-validation {
  left: 14px;
  right: auto;
}

[dir="ltr"] .adyen-checkout-input__inline-validation {
  left: auto;
  right: 14px;
}

.adyen-checkout-input__inline-validation--valid {
  color: #089a43;
}

.adyen-checkout-input__inline-validation--invalid {
  color: #c12424;
}

.adyen-checkout__input--valid {
  border-bottom-color: #089a43;
}

.adyen-checkout__input--error, .adyen-checkout__input--error:hover, .adyen-checkout__input--invalid, .adyen-checkout__input--invalid:hover {
  border-color: #c12424;
}

.adyen-checkout__input::placeholder {
  color: #707070;
  font-weight: 200;
}

.adyen-checkout__input--date {
  padding-right: 30px;
}

.adyen-checkout__input--focus, .adyen-checkout__input--focus:hover, .adyen-checkout__input:active, .adyen-checkout__input:active:hover, .adyen-checkout__input:focus, .adyen-checkout__input:focus:hover {
  border: 1px solid #0075ff;
  box-shadow: 0 0 0 2px #3070ed;
}

.adyen-checkout__input[readonly], .adyen-checkout__input[readonly]:hover {
  color: #687282;
  cursor: default;
  background-color: #e6e9eb;
  border-color: #0000;
}

.adyen-checkout__fieldset--personalDetails .adyen-checkout__field--gender .adyen-checkout__radio_group {
  display: flex;
}

.adyen-checkout__fieldset--personalDetails .adyen-checkout__radio_group {
  margin: 8px 0;
  display: flex;
}

.adyen-checkout__fieldset--personalDetails .adyen-checkout__radio_group__input-wrapper {
  margin-right: 20px;
}

.adyen-checkout__fieldset--personalDetails .adyen-checkout__radio_group__input-wrapper:last-child {
  margin: 0;
}

.adyen-checkout__radio_group + .adyen-checkout-input__inline-validation {
  display: none;
}

.adyen-checkout__radio_group__input {
  opacity: 0;
  position: absolute;
}

.adyen-checkout__radio_group__label {
  color: inherit;
  padding-bottom: 0;
  padding-left: 24px;
  font-size: .81em;
  font-weight: 400;
  line-height: 16px;
  display: block;
  position: relative;
  overflow: visible;
}

.adyen-checkout__label--focused .adyen-checkout__radio_group__label {
  color: inherit;
}

.adyen-checkout__radio_group__label:before {
  content: "";
  background-color: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  transition: border-color .2s ease-out, box-shadow .2s ease-out;
  position: absolute;
  top: 0;
  left: 0;
}

.adyen-checkout__radio_group__label:hover:before {
  cursor: pointer;
  border-color: #99a3ad;
  box-shadow: 0 0 0 2px #d4d9db;
}

.adyen-checkout__radio_group__label:after {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin: 0 auto;
  transition: transform .2s ease-out;
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  transform: scale(0);
  box-shadow: 0 1px 1px #000f2d40;
}

.adyen-checkout__radio_group__label:hover {
  cursor: pointer;
  border-color: #0075ff;
}

.adyen-checkout__radio_group__input:checked + .adyen-checkout__radio_group__label:before, .adyen-checkout__radio_group__label--selected {
  background-color: #0075ff;
  border: 0;
  transition: all .2s ease-out;
}

.adyen-checkout__radio_group__input:checked + .adyen-checkout__radio_group__label:after {
  transform: scale(1);
}

.adyen-checkout__radio_group__input:focus + .adyen-checkout__radio_group__label:before {
  border-color: #0075ff;
  box-shadow: 0 0 0 2px #06f6;
}

.adyen-checkout__radio_group__input:checked + .adyen-checkout__radio_group__label:hover:before, .adyen-checkout__radio_group__input:checked:active + .adyen-checkout__radio_group__label:before, .adyen-checkout__radio_group__input:checked:focus + .adyen-checkout__radio_group__label:before {
  box-shadow: 0 0 0 2px #06f6;
}

.adyen-checkout__radio_group__label.adyen-checkout__radio_group__label--invalid:before {
  border: 1px solid #c12424;
}

.Select-module_adyen-checkout__dropdown__0Mj-n {
  position: relative;
}

.Select-module_adyen-checkout__dropdown__button__yTyqq {
  cursor: pointer;
  align-items: center;
  display: flex;
}

.Select-module_adyen-checkout__dropdown__button__yTyqq:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='7' fill='none'%3E%3Cpath fill='%23687282' d='M3.195 6.565a1 1 0 0 0 1.6 0l2.992-3.98a1 1 0 0 0-.8-1.602H1.013a1 1 0 0 0-.8 1.6l2.983 3.982Z'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  width: 8px;
  height: 6px;
  position: absolute;
  right: 16px;
}

[dir="rtl"] .Select-module_adyen-checkout__dropdown__button__yTyqq:after {
  left: 16px;
  right: auto;
}

.Select-module_adyen-checkout__dropdown__button--active__Ej-JR:after {
  transform: rotate(180deg);
}

.Select-module_adyen-checkout__filter-input__CwPBS {
  caret-color: #0075ff;
  color: #00112c;
  background: #fff;
  border: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  font-family: inherit;
  font-size: 1em;
}

.Select-module_adyen-checkout__filter-input__CwPBS::placeholder {
  color: #b9c4c9;
  font-weight: 200;
}

.Select-module_adyen-checkout__filter-input__CwPBS:active, .Select-module_adyen-checkout__filter-input__CwPBS:focus {
  outline: 0;
}

.Select-module_adyen-checkout__filter-input__CwPBS[readonly] {
  color: #00112c;
  cursor: not-allowed;
  background: #e6e9eb;
  border-color: #0000;
}

.Select-module_adyen-checkout__dropdown__list__YtEzj {
  z-index: 1;
  background: #fff;
  width: 100%;
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
  display: none;
  position: absolute;
  overflow-y: auto;
}

.Select-module_adyen-checkout__dropdown__list__YtEzj.Select-module_adyen-checkout__dropdown__list--active__Gegw2 {
  display: block;
}

.Select-module_adyen-checkout__dropdown__element__ORU4- {
  align-items: center;
  display: flex;
}

.adyen-checkout__image {
  opacity: 0;
  transition: opacity .6s ease-out;
}

.adyen-checkout__image--loaded {
  opacity: 1;
}

.adyen-checkout__dropdown__button-icon--left {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.adyen-checkout__dropdown__button-icon--left > img {
  margin-left: 0;
  margin-right: 12px;
}

.adyen-checkout__dropdown {
  width: 100%;
  max-width: 100%;
  font-size: 1em;
}

.adyen-checkout__dropdown__button {
  color: #00112c;
  -webkit-user-select: none;
  user-select: none;
  background: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 6px;
  outline: 0;
  width: 100%;
  height: 40px;
  padding: 7px 24px 7px 12px;
  font-size: 1em;
  line-height: 20px;
  text-decoration: none;
  transition: border .2s ease-out, box-shadow .2s ease-out;
}

[dir="rtl"] .adyen-checkout__dropdown__button {
  padding: 7px 12px 7px 24px;
}

.adyen-checkout__dropdown__button:hover {
  border-color: #99a3ad;
}

.adyen-checkout__dropdown__button__icon {
  border-radius: 3px;
  max-width: 40px;
  height: 26px;
  margin-right: 12px;
}

.adyen-checkout__dropdown__button--disabled {
  opacity: .4;
}

.adyen-checkout__dropdown__button--active, .adyen-checkout__dropdown__button--active:hover, .adyen-checkout__dropdown__button:active, .adyen-checkout__dropdown__button:focus {
  border-color: #0075ff;
  box-shadow: 0 0 0 2px #3070ed;
}

.adyen-checkout__dropdown__button--readonly, .adyen-checkout__dropdown__button--readonly--active, .adyen-checkout__dropdown__button--readonly:focus, .adyen-checkout__dropdown__button--readonly:hover {
  color: #00112c;
  cursor: not-allowed;
  background: #e6e9eb;
  border-color: #0000;
}

.adyen-checkout__dropdown__button--readonly:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='7' fill='none'%3E%3Cpath fill='%23B9C4C9' d='M3.195 6.565a1 1 0 0 0 1.6 0l2.992-3.98a1 1 0 0 0-.8-1.602H1.013a1 1 0 0 0-.8 1.6l2.983 3.982Z'/%3E%3C/svg%3E");
}

.adyen-checkout__dropdown__button--invalid {
  border-color: #c12424;
}

.adyen-checkout__dropdown__button--valid {
  border-bottom-color: #089a43;
}

.adyen-checkout__dropdown__button__text {
  pointer-events: none;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
  overflow: hidden;
}

.adyen-checkout__dropdown__button__secondary-text {
  margin-right: 16px;
}

.adyen-checkout__dropdown__list {
  z-index: 2;
  border-radius: 6px;
  max-height: 375px;
  box-shadow: 0 2px 7px #000f2d4d;
}

.adyen-checkout__dropdown__list.adyen-checkout__dropdown__list--active {
  margin-top: 2px;
}

.adyen-checkout__dropdown__element {
  cursor: pointer;
  -webkit-hyphens: auto;
  hyphens: auto;
  -webkit-user-select: none;
  user-select: none;
  word-break: break-word;
  border: 1px solid #0000;
  outline: 0;
  padding: 8px;
  font-size: .81em;
  line-height: 20px;
  transition: background .2s ease-out, border-color .2s ease-out;
}

.adyen-checkout__dropdown__element .adyen-checkout__icon {
  position: absolute;
  right: 8px;
}

.adyen-checkout__dropdown__element:last-child {
  border-bottom: 0;
}

.adyen-checkout__dropdown__element.adyen-checkout__dropdown__element--active {
  background: #e6e9eb99;
}

.adyen-checkout__dropdown__element.adyen-checkout__dropdown__element--selected {
  background: #0066ff1a;
}

.adyen-checkout__dropdown__element.adyen-checkout__dropdown__element--selected:active, .adyen-checkout__dropdown__element.adyen-checkout__dropdown__element--selected:focus, .adyen-checkout__dropdown__element.adyen-checkout__dropdown__element--selected:hover {
  background: #0066ff26;
}

.adyen-checkout__dropdown__element--disabled {
  cursor: not-allowed;
  opacity: .4;
}

.adyen-checkout__dropdown__element__icon {
  border-radius: 3px;
  max-width: 40px;
  max-height: 26px;
  margin-right: 12px;
}

.adyen-checkout__dropdown__element__text {
  flex-grow: 1;
}

.adyen-checkout__dropdown__element__secondary-text:not(:last-child) {
  margin-right: 8px;
}

.adyen-checkout__dropdown__element__flag {
  max-width: 27px;
  max-height: 18px;
  margin-left: 8px;
  margin-right: 10px;
}

.adyen-checkout__dropdown + .adyen-checkout-input__inline-validation {
  right: 32px;
}

.adyen-checkout__address-search {
  position: relative;
}

.adyen-checkout__address-search .adyen-checkout__dropdown__button:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath fill='%23687282' d='M6.5 11.9a4.5 4.5 0 0 0 2.6-.83l2.77 2.74c.13.13.3.19.48.19.38 0 .65-.29.65-.66a.63.63 0 0 0-.19-.46l-2.75-2.73a4.4 4.4 0 0 0 .92-2.7 4.48 4.48 0 0 0-8.98 0 4.48 4.48 0 0 0 4.5 4.45Zm0-.96a3.53 3.53 0 0 1-3.53-3.49 3.52 3.52 0 0 1 7.04 0c0 1.9-1.59 3.49-3.52 3.49Z'/%3E%3C/svg%3E");
  background-position: 50%;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 12px;
}

.adyen-checkout__address-search .adyen-checkout__dropdown__button--active:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath fill='%2300112C' d='M6.5 11.9a4.5 4.5 0 0 0 2.6-.83l2.77 2.74c.13.13.3.19.48.19.38 0 .65-.29.65-.66a.63.63 0 0 0-.19-.46l-2.75-2.73a4.4 4.4 0 0 0 .92-2.7 4.48 4.48 0 0 0-8.98 0 4.48 4.48 0 0 0 4.5 4.45Zm0-.96a3.53 3.53 0 0 1-3.53-3.49 3.52 3.52 0 0 1 7.04 0c0 1.9-1.59 3.49-3.52 3.49Z'/%3E%3C/svg%3E");
  transform: none;
}

.adyen-checkout__address-search .adyen-checkout__filter-input {
  padding-left: 24px;
}

.adyen-checkout__address-search__manual-add {
  position: absolute;
  top: 0;
  right: 0;
}

.adyen-checkout__address-search__manual-add .adyen-checkout__address-search__manual-add__button {
  border: 0;
  padding: 0;
}

.adyen-checkout__checkbox {
  display: block;
}

.adyen-checkout__checkbox__label {
  color: #00112c;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  padding-left: 24px;
  font-size: .81em;
  font-weight: 400;
  line-height: 19px;
  position: relative;
}

[dir="rtl"] .adyen-checkout__checkbox__label {
  padding-left: 0;
  padding-right: 24px;
}

.adyen-checkout__checkbox__input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.adyen-checkout__checkbox__input:checked + .adyen-checkout__checkbox__label:before {
  opacity: 1;
}

.adyen-checkout__checkbox__input:checked + .adyen-checkout__checkbox__label:after {
  background-color: #0075ff;
  border: 1px solid #0075ff;
}

.adyen-checkout__checkbox__input:checked:hover + .adyen-checkout__checkbox__label:after {
  border-color: #0075ff;
  box-shadow: 0 0 0 2px #06f6;
}

.adyen-checkout__checkbox__input:focus + .adyen-checkout__checkbox__label:after {
  border: 1px solid #0075ff;
  box-shadow: 0 0 0 2px #3070ed;
}

.adyen-checkout__checkbox__input:hover:not(:focus) + .adyen-checkout__checkbox__label:after {
  border-color: #99a3ad;
  box-shadow: 0 0 0 2px #d4d9db;
}

.adyen-checkout__checkbox__input + .adyen-checkout__checkbox__label:before {
  content: "";
  opacity: 0;
  transform-origin: 100% 100%;
  z-index: 1;
  border: 2px solid #fff;
  border-top: 1px solid #0000;
  border-left: 1px solid #0000;
  border-radius: 0 2px 1px;
  width: 6px;
  height: 11px;
  transition: opacity .2s ease-out;
  position: absolute;
  top: 2px;
  left: 1px;
  transform: rotate(37deg);
}

[dir="rtl"] .adyen-checkout__checkbox__input + .adyen-checkout__checkbox__label:before {
  left: auto;
  right: 8px;
}

.adyen-checkout__checkbox__input + .adyen-checkout__checkbox__label:after {
  content: "";
  z-index: 0;
  background-color: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 3px;
  width: 16px;
  height: 16px;
  transition: background .15s ease-out, border 50ms ease-out, box-shadow .1s ease-out;
  position: absolute;
  top: 0;
  left: 0;
}

[dir="rtl"] .adyen-checkout__checkbox__input + .adyen-checkout__checkbox__label:after {
  left: auto;
  right: 0;
}

.adyen-checkout__field--consentCheckbox {
  background: #e6e9eb;
  border: 1px solid #e6e9eb;
  border-radius: 6px;
  padding: 14px 14px 13px;
}

[dir="rtl"] .adyen-checkout__field--consentCheckbox {
  padding: 14px 14px 13px;
}

.adyen-checkout__field--consentCheckbox.adyen-checkout__field--error {
  border-color: #c12424;
}

.adyen-checkout__field--consentCheckbox .adyen-checkout-input__inline-validation {
  top: 10px;
  right: -5px;
}

.adyen-checkout__open-invoice .adyen-checkout__fieldset--billingAddress {
  margin-bottom: 16px;
}

.adyen-checkout__open-invoice .adyen-checkout__fieldset--deliveryAddress {
  margin-top: 24px;
  padding-bottom: 8px;
}

.adyen-checkout__open-invoice .adyen-checkout__input--separateDeliveryAddress {
  margin-bottom: 0;
}

.adyen-checkout__input--separateDeliveryAddress + .adyen-checkout__checkbox__label, .adyen-checkout__open-invoice .adyen-checkout__field--consentCheckbox {
  margin-top: 16px;
}

.adyen-checkout-form-instruction {
  color: #687282;
  margin-top: 0;
  font-size: .81em;
  font-weight: 400;
  line-height: 19px;
}

[dir="rtl"] .adyen-checkout-form-instruction {
  padding-right: 0;
}

.adyen-checkout__amazonpay__button {
  margin: auto;
}

.adyen-checkout__amazonpay .adyen-checkout__button--ghost {
  width: auto;
  margin: 8px auto 0;
  display: block;
}

@supports ((-webkit-appearance: -apple-pay-button)) {
  .ApplePayButton-module_apple-pay-button__l5g-d, .ApplePayButton-module_apple-pay__gYjuP {
    -webkit-appearance: -apple-pay-button;
  }

  .ApplePayButton-module_apple-pay-button__l5g-d {
    cursor: pointer;
    display: inline-block;
  }

  .ApplePayButton-module_apple-pay-button-black__istwW {
    -apple-pay-button-style: black;
  }

  .ApplePayButton-module_apple-pay-button-white__-wLaE {
    -apple-pay-button-style: white;
  }

  .ApplePayButton-module_apple-pay-button-white-with-line__MlRq7 {
    -apple-pay-button-style: white-outline;
  }

  .ApplePayButton-module_apple-pay-button--type-plain__ycfNl {
    -apple-pay-button-type: plain;
  }

  .ApplePayButton-module_apple-pay-button--type-buy__9m8AB {
    -apple-pay-button-type: buy;
  }

  .ApplePayButton-module_apple-pay-button--type-donate__HmRdK {
    -apple-pay-button-type: donate;
  }

  .ApplePayButton-module_apple-pay-button--type-check-out__XdGWd {
    -apple-pay-button-type: check-out;
  }

  .ApplePayButton-module_apple-pay-button--type-book__-v-VY {
    -apple-pay-button-type: book;
  }

  .ApplePayButton-module_apple-pay-button--type-subscribe__WxWIF {
    -apple-pay-button-type: subscribe;
  }

  .ApplePayButton-module_apple-pay-button--type-add-money__zeBA8 {
    -apple-pay-button-type: add-money;
  }

  .ApplePayButton-module_apple-pay-button--type-contribute__G3E8e {
    -apple-pay-button-type: contribute;
  }

  .ApplePayButton-module_apple-pay-button--type-order__ggI6j {
    -apple-pay-button-type: order;
  }

  .ApplePayButton-module_apple-pay-button--type-reload__QbgLd {
    -apple-pay-button-type: reload;
  }

  .ApplePayButton-module_apple-pay-button--type-rent__VzC-E {
    -apple-pay-button-type: rent;
  }

  .ApplePayButton-module_apple-pay-button--type-support__6EjmY {
    -apple-pay-button-type: support;
  }

  .ApplePayButton-module_apple-pay-button--type-tip__bdzGK {
    -apple-pay-button-type: tip;
  }

  .ApplePayButton-module_apple-pay-button--type-top-up__Eb3qR {
    -apple-pay-button-type: top-up;
  }
}

@supports not ((-webkit-appearance: -apple-pay-button)) {
  .ApplePayButton-module_apple-pay-button__l5g-d {
    box-sizing: border-box;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% 60%;
    border-radius: 5px;
    min-width: 200px;
    min-height: 32px;
    max-height: 64px;
    padding: 0;
    display: inline-block;
  }

  .ApplePayButton-module_apple-pay-button-black__istwW {
    background-color: #000;
    background-image: -webkit-named-image(apple-pay-logo-white);
  }

  .ApplePayButton-module_apple-pay-button-white-with-line__MlRq7, .ApplePayButton-module_apple-pay-button-white__-wLaE {
    background-color: #fff;
    background-image: -webkit-named-image(apple-pay-logo-black);
  }

  .ApplePayButton-module_apple-pay-button-white-with-line__MlRq7 {
    border: .5px solid #000;
  }
}

.adyen-checkout__applepay__button {
  width: 240px;
  height: 48px;
}

.adyen-checkout__dropin .adyen-checkout__applepay__button {
  width: 100%;
}

.adyen-checkout__issuer-button {
  cursor: pointer;
  background-color: #fff;
  border: none;
  border-radius: 6px;
  flex-grow: 2;
  flex-basis: 47%;
  align-items: center;
  height: 40px;
  padding: 0 12px;
  font-size: .81em;
  transition: background .3s ease-out, box-shadow .3s ease-out;
  display: flex;
  box-shadow: inset 0 0 0 1px #b9c4c9;
}

.adyen-checkout__issuer-button:active {
  color: #000;
}

.adyen-checkout__issuer-button:not(.adyen-checkout__issuer-button--selected):focus, .adyen-checkout__issuer-button:not(.adyen-checkout__issuer-button--selected):focus-visible, .adyen-checkout__issuer-button:not(.adyen-checkout__issuer-button--selected):hover {
  outline: none;
  box-shadow: inset 0 0 0 2px #99a3ad;
}

.adyen-checkout__issuer-button--selected {
  color: #0075ff;
  background: #fff;
  height: 40px;
  font-weight: 500;
  transition: none;
  box-shadow: inset 0 0 0 2px #0075ff;
}

.adyen-checkout__issuer-button-img {
  max-height: 26px;
  margin-right: 8px;
}

.adyen-checkout__issuer-button-group {
  flex-wrap: wrap;
  gap: 16px;
  display: flex;
}

.adyen-checkout__content-separator {
  color: #687282;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 19px;
  display: flex;
}

.adyen-checkout__content-separator:after, .adyen-checkout__content-separator:before {
  content: "";
  background: #e6e9eb;
  width: 100%;
  height: 1px;
  display: block;
}

.adyen-checkout__content-separator:after {
  margin-left: 20px;
}

.adyen-checkout__content-separator:before {
  margin-right: 20px;
}

.adyen-checkout__field--issuer-list {
  margin-bottom: 0;
}

.adyen-checkout__issuer-list__termsAndConditions {
  text-align: center;
}

.adyen-checkout-disclaimer__label {
  color: #687282;
  margin-top: 16px;
  padding-left: 0;
  font-size: .81em;
  font-weight: 400;
  line-height: 19px;
  display: inline-block;
}

[dir="rtl"] .adyen-checkout-disclaimer__label {
  padding-right: 0;
}

.js-iframe {
  border: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.adyen-checkout__card-input__form {
  transition: opacity .25s ease-out;
}

.adyen-checkout__card__cardNumber {
  max-width: 400px;
}

.adyen-checkout__card__cardNumber__input {
  padding: 5px 8px;
}

.adyen-checkout__card__exp-date__input--oneclick {
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
  line-height: 30px;
  overflow: hidden;
}

.adyen-checkout__field--storedCard .adyen-checkout__input[readonly], .adyen-checkout__field--storedCard .adyen-checkout__input[readonly]:hover {
  color: #00112c;
}

.adyen-checkout__card__holderName, .adyen-checkout__field--expiryDate, .adyen-checkout__field--storedCard {
  margin-bottom: 0;
}

.adyen-checkout__card-input .adyen-checkout__fieldset--billingAddress, .adyen-checkout__card__holderName, .adyen-checkout__card__kcp-authentication, .adyen-checkout__card__socialSecurityNumber, .adyen-checkout__installments, .adyen-checkout__store-details {
  margin-top: 16px;
}

.adyen-checkout__card-input.adyen-checkout__card-input--loading {
  pointer-events: none;
}

.adyen-checkout__card__holderName:first-child {
  margin: 0 0 16px;
}

.adyen-checkout__field--cardNumber .adyen-checkout__input--error .adyen-checkout__card__cardNumber__brandIcon, .adyen-checkout__field--cardNumber .adyen-checkout__input--valid:not(.adyen-checkout__card__cardNumber__input--noBrand) + .adyen-checkout-input__inline-validation--valid {
  display: none;
}

.adyen-checkout__field--securityCode.adyen-checkout__field--error .adyen-checkout__card__cvc__hint, .adyen-checkout__field--securityCode.adyen-checkout__field--valid .adyen-checkout__card__cvc__hint {
  opacity: 0;
}

@keyframes cvc-indicate-location {
  0% {
    opacity: 1;
  }

  to {
    opacity: .3;
  }
}

.adyen-checkout__label--focused .adyen-checkout__field__cvc--back-hint .adyen-checkout__card__cvc__hint--back .adyen-checkout__card__cvc__hint__location, .adyen-checkout__label--focused .adyen-checkout__field__cvc--front-hint .adyen-checkout__card__cvc__hint--front .adyen-checkout__card__cvc__hint__location {
  animation-name: cvc-indicate-location;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.adyen-checkout__card__cvc__hint__wrapper {
  backface-visibility: visible;
  transform-origin: center;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
  align-items: center;
  width: 27px;
  margin: 0 10px;
  transition: transform .3s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateZ(0);
}

.adyen-checkout__field__cvc--front-hint.adyen-checkout__card__cvc__hint__wrapper {
  transform: rotateY(180deg);
}

.adyen-checkout__card__cvc__hint {
  backface-visibility: hidden;
  transition: opacity .1s linear;
  position: absolute;
}

.adyen-checkout__field__exp-date_hint_wrapper {
  align-items: center;
  transition: opacity .1s linear;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.adyen-checkout__field__exp-date_hint_wrapper.adyen-checkout__field__exp-date_hint_wrapper--hidden {
  opacity: 0;
}

.adyen-checkout__field__exp-date_hint {
  width: 27px;
  height: 18px;
  margin: 0 10px 0 0;
}

.adyen-checkout__card__cvc__hint--front {
  transform: rotateY(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .adyen-checkout__card__cvc__hint__wrapper {
    transition: none;
  }
}

.adyen-checkout__fieldset--revolving-plan .adyen-checkout__fieldset__fields {
  justify-content: left;
}

.adyen-checkout__fieldset--revolving-plan .adyen-checkout__radio_group {
  flex-direction: column;
  display: flex;
}

.adyen-checkout__fieldset--revolving-plan .adyen-checkout__radio_group__input-wrapper {
  margin-top: 20px;
}

.adyen-checkout__fieldset--revolving-plan .adyen-checkout__field--revolving-plan-installments {
  width: 30%;
  margin-left: 15px;
  position: relative;
  top: 42px;
}

.LoadingWrapper-module_loading-input__form__ffCKa {
  opacity: 1;
}

.LoadingWrapper-module_loading-input__form--loading__7GmVo {
  opacity: 0;
}

.LoadingWrapper-module_loading-input__spinner__GxA51 {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.LoadingWrapper-module_loading-input__spinner--active__ENNBS {
  display: block;
}

.CardInput-module_card-input__wrapper__wXSCw {
  position: relative;
}

.CardInput-module_card-input__wrapper__wXSCw *, .CardInput-module_card-input__wrapper__wXSCw :after, .CardInput-module_card-input__wrapper__wXSCw :before {
  box-sizing: border-box;
}

.CardInput-module_card-input__icon__3Cz5M {
  border-radius: 3px;
  width: 27px;
  height: 18px;
  margin-left: 7px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.CardInput-module_card-input__form__fRo1r {
  opacity: 1;
}

.CardInput-module_card-input__spinner__-j2Qi {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.CardInput-module_card-input__spinner--active__slD7w {
  display: block;
}

.CardInput-module_card-input__form--loading__rrmdj {
  opacity: 0;
}

.CardInput-module_adyen-checkout__input__11tlB {
  max-height: 100px;
  display: block;
}

.CardInput-module_adyen-checkout__card__cvc__input--hidden__VIlHV, .CardInput-module_adyen-checkout__card__exp-date__input--hidden__evi6- {
  display: none;
}

.CardInput-module_adyen-checkout__card__exp-cvc__exp-date__input--hidden__YC3VT {
  justify-content: flex-end;
}

.CardInput-module_revolving-plan-installments__disabled__VhNj2 {
  opacity: .4;
  pointer-events: none;
}

.adyen-checkout__card__dual-branding__buttons {
  opacity: .4;
  pointer-events: none;
  display: flex;
}

.adyen-checkout__card__dual-branding__buttons--active {
  opacity: 1;
  pointer-events: auto;
}

.adyen-checkout__card__dual-branding__buttons .adyen-checkout__card__cardNumber__brandIcon {
  cursor: pointer;
  opacity: 1;
}

.adyen-checkout__card__dual-branding__buttons .adyen-checkout__card__cardNumber__brandIcon:first-child {
  right: 40px;
}

.adyen-checkout__card__dual-branding__buttons .adyen-checkout__card__cardNumber__brandIcon--not-selected {
  opacity: .5;
}

.adyen-checkout__card__brands {
  flex-wrap: wrap;
  flex-shrink: 1;
  flex-basis: auto;
  gap: 4px;
  height: 16px;
  margin-top: -8px;
  margin-bottom: 16px;
  transition: all .2s ease-out;
  display: flex;
  overflow: hidden;
}

.adyen-checkout__card__brands--hidden {
  opacity: 0;
  height: 0;
  margin: -8px 0 8px;
}

.adyen-checkout__card__brands img {
  border-radius: 3px;
  width: 24px;
  height: 16px;
}

.adyen-checkout__card__brands__brand-wrapper {
  width: 24px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.adyen-checkout__card__brands__brand-wrapper:after {
  content: "";
  border: 1px solid #001b2b2b;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.adyen-checkout-ctp__otp-resend-code {
  color: #0075ff;
  cursor: pointer;
  margin-left: auto;
  font-size: 13px;
  font-weight: 400;
}

.adyen-checkout-ctp__otp-resend-code--confirmation, .adyen-checkout-ctp__otp-resend-code--disabled {
  color: #687282;
  cursor: default;
  pointer-events: none;
  margin-left: auto;
  font-size: 13px;
  font-weight: 400;
}

.adyen-checkout-ctp__otp-resend-code--confirmation {
  align-items: center;
  display: flex;
}

.adyen-checkout-ctp__otp-resend-code--confirmation > img {
  margin-left: 4px;
}

.adyen-checkout-ctp__otp-resend-code-counter {
  color: #000;
  cursor: default;
  text-align: right;
  margin-left: auto;
  font-size: 13px;
  font-weight: 400;
  display: inline-block;
}

.adyen-checkout-ctp__section > .adyen-checkout__field.adyen-checkout__field--otp {
  margin-bottom: 12px;
}

.adyen_checkout-ctp__brand-wrapper {
  align-items: center;
  height: 18px;
  display: flex;
}

.adyen_checkout-ctp__brand-logo {
  width: 24px;
  margin-right: 6px;
}

.adyen_checkout-ctp__brand-pipe {
  height: 15px;
  margin-right: 6px;
}

.adyen_checkout-ctp__brand-scheme {
  -o-object-fit: none;
  object-fit: none;
  margin-right: 6px;
}

.adyen_checkout-ctp__brand-scheme-mc {
  width: 27px;
}

.adyen_checkout-ctp__brand-scheme-visa {
  width: 35px;
}

.adyen-checkout__modal-wrapper {
  overscroll-behavior-y: contain;
  visibility: hidden;
  z-index: 10;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
}

.adyen-checkout__modal-wrapper:before {
  content: "";
  opacity: 0;
  z-index: 10;
  background: #00112c80;
  width: 100%;
  height: 100%;
  transition: opacity .3s linear;
  position: fixed;
  top: 0;
  left: 0;
}

.adyen-checkout__modal-wrapper--open {
  visibility: visible;
}

.adyen-checkout__modal-wrapper--open .adyen-checkout__modal, .adyen-checkout__modal-wrapper--open:before {
  opacity: 1;
}

.adyen-checkout__modal {
  opacity: 0;
  z-index: 11;
  background-color: #fff;
  border-radius: 12px;
  margin: auto;
  padding: 16px;
  transition: opacity .2s, visibility .2s;
  position: relative;
  box-shadow: 0 8px 24px #00112c26;
}

@media (width <= 480px) {
  .adyen-checkout__modal-wrapper {
    padding: 0;
  }

  .adyen-checkout__modal {
    border-radius: 0;
    height: 100%;
  }
}

.adyen-checkout__ctp-modal-header-image {
  margin: auto;
  display: block;
}

.adyen-checkout__ctp-modal-title {
  margin: 0 0 12px;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.adyen-checkout__ctp-modal-text {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
}

.adyen-checkout__ctp-modal-benefits {
  margin-left: 0;
  padding-left: 20px;
}

.adyen-checkout__ctp-modal-benefits li {
  margin-bottom: 16px;
  list-style: outside;
}

.adyen-checkout__modal-wrapper--ctp .adyen-checkout__modal {
  max-width: 464px;
}

.adyen_checkout-ctp__brand-wrapper--popup {
  justify-content: center;
  margin-bottom: 24px;
}

.adyen-web__ctp-info-button {
  cursor: pointer;
  background-color: #0000;
  border: 0;
  padding: 0;
}

.adyen-checkout-ctp__section-logout-button {
  color: #0075ff;
  cursor: pointer;
  margin-left: auto;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
}

.adyen-checkout-ctp__section-logout-button--disabled {
  color: #687282;
  pointer-events: none;
}

.adyen-checkout-ctp__section {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  position: relative;
  box-shadow: 0 6px 12px #00112c14, 0 2px 4px #00112c0a;
}

.adyen-checkout-ctp__section-brand {
  align-items: center;
  height: 18px;
  margin-bottom: 16px;
  display: flex;
}

.adyen-checkout-ctp__section--standalone {
  all: unset;
}

.adyen-checkout-ctp__section .adyen-checkout__fieldset {
  margin-bottom: 24px;
}

.adyen-checkout-ctp__section-header {
  align-items: center;
  display: flex;
}

.adyen-checkout-ctp__section-header-title {
  width: auto;
  margin: 0;
  padding: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
}

@media screen and (width <= 400px) {
  .adyen-checkout-ctp__section-header-title {
    font-size: 15px;
  }
}

.adyen-checkout-ctp__section-header-adornment {
  margin-left: 5px;
}

.adyen-checkout-ctp__section-text {
  color: #707070;
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
}

.adyen-checkout-ctp__separator {
  color: #00112c;
  font-size: 13px;
  font-weight: 400;
}

.adyen-checkout-ctp__otp-subtitle--highlighted {
  color: #00112c;
  font-weight: 500;
}

.adyen-checkout-ctp__otp-checkbox-container {
  background-color: #f7f8f9;
  border-radius: 6px;
  margin-bottom: 16px;
  padding: 12px;
}

.adyen-checkout-ctp__otp-checkbox-container--checked {
  background-color: #f2f8ff;
}

.adyen-checkout-ctp__otp-checkbox-container label {
  cursor: pointer;
}

.adyen-checkout-ctp__section .adyen-checkout__field.adyen-checkout-ctp__otp-checkbox-container {
  margin-bottom: 4px;
}

.adyen-checkout-ctp__otp-checkbox-info {
  color: #707070;
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
}

.adyen-checkout-ctp__otp-readmore-button {
  all: unset;
  color: #0075ff;
  cursor: pointer;
  text-transform: lowercase;
}

.adyen-checkout-ctp__card-list-single-card {
  background-color: #f7f8f9;
  border-radius: 6px;
  align-items: center;
  height: 40px;
  padding: 12px;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  display: flex;
}

.adyen-checkout-ctp__card-list-single-card-expired {
  color: #687282;
  text-decoration: line-through;
}

.adyen-checkout-ctp__expired-label {
  color: #687282;
  margin-left: auto;
  font-weight: 500;
  line-height: 17px;
}

.adyen-checkout-ctp__card-image {
  border-radius: 3px;
  height: 24px;
  margin-right: 8px;
}

.adyen-checkout-ctp__cards-list-dropdown .adyen-checkout__dropdown__element--disabled {
  opacity: 1;
}

.adyen-checkout-ctp__cards-list-dropdown .adyen-checkout__dropdown__element--disabled .adyen-checkout__dropdown__element__text {
  opacity: .4;
  margin: 0;
  text-decoration: line-through;
}

.adyen-checkout-ctp__cards-list-dropdown .adyen-checkout__dropdown__element--disabled .adyen-checkout__dropdown__element__secondary-text {
  color: #687282;
  font-weight: 500;
  line-height: 17px;
}

.adyen-checkout-ctp__cards-list-dropdown .adyen-checkout__dropdown__button--disabled {
  opacity: 1;
}

.adyen-checkout-ctp__cards-list-dropdown .adyen-checkout__dropdown__button--disabled .adyen-checkout__dropdown__button__text {
  opacity: .4;
  text-decoration: line-through;
}

.adyen-checkout-ctp__cards-list-dropdown .adyen-checkout__dropdown__button--disabled .adyen-checkout__dropdown__button__secondary-text {
  color: #687282;
  opacity: 1;
  font-weight: 500;
}

.adyen-checkout-ctp__card {
  cursor: pointer;
  background-color: #fff;
  border: none;
  border-radius: 4px;
  width: 100%;
  height: 40px;
  margin: 0 0 20px;
  box-shadow: 0 0 0 2px #999595;
}

.adyen-checkout-ctp__empty-cards {
  color: #687282;
  background-color: #f7f8f9;
  border-radius: 6px;
  align-items: center;
  height: 40px;
  margin-bottom: 24px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  display: flex;
}

.adyen-checkout__iframe--ctpIframe {
  pointer-events: auto;
}

.adyen-checkout__iframe--ctpIframe-hidden {
  display: none;
}

@keyframes card-bounce {
  0% {
    -webkit-translate: 0 -60%;
    -moz-translate: 0 -60%;
    -ms-translate: 0 -60%;
    animation-timing-function: cubic-bezier(.17, .17, .32, 1);
    translate: 0 -60%;
  }

  9.70874% {
    -webkit-translate: 0 8.5%;
    -moz-translate: 0 8.5%;
    -ms-translate: 0 8.5%;
    animation-timing-function: cubic-bezier(.41, 0, .49, 1);
    translate: 0 8.5%;
  }

  23.4466% {
    -webkit-translate: 0 -22.5%;
    -moz-translate: 0 -22.5%;
    -ms-translate: 0 -22.5%;
    animation-timing-function: cubic-bezier(.29, 0, .26, 1);
    translate: 0 -22.5%;
  }

  47.7184% {
    -webkit-translate: 0;
    -moz-translate: 0;
    -ms-translate: 0;
    translate: 0;
  }

  63.8835% {
    -webkit-translate: 0;
    -moz-translate: 0;
    -ms-translate: 0;
    animation-timing-function: cubic-bezier(1, 0, .78, 1);
    translate: 0;
  }

  86.5534% {
    -webkit-translate: 0 40.7%;
    -moz-translate: 0 40.7%;
    -ms-translate: 0 40.7%;
    translate: 0 40.7%;
  }

  to {
    -webkit-translate: 0 40.7%;
    -moz-translate: 0 40.7%;
    -ms-translate: 0 40.7%;
    translate: 0 40.7%;
  }
}

@keyframes card-fade-100 {
  0% {
    opacity: 0;
    animation-timing-function: linear;
  }

  8.1068% {
    opacity: 1;
  }

  78.4466% {
    opacity: 1;
  }

  86.5534% {
    opacity: 0;
  }

  to {
    opacity: 0;
  }
}

@keyframes card-fade-60 {
  0% {
    opacity: 0;
    animation-timing-function: linear;
  }

  8.1068% {
    opacity: .6;
  }

  78.4466% {
    opacity: .6;
  }

  86.5534% {
    opacity: 0;
  }

  to {
    opacity: 0;
  }
}

@keyframes card-fade-20 {
  0% {
    opacity: 0;
    animation-timing-function: linear;
  }

  8.1068% {
    opacity: .2;
  }

  78.4466% {
    opacity: .2;
  }

  86.5534% {
    opacity: 0;
  }

  to {
    opacity: 0;
  }
}

.adyen-checkout-ctp__card-animation {
  aspect-ratio: 1 / .438;
  filter: grayscale();
  width: 140px;
  max-width: 100%;
  margin: 40px auto 50px;
  position: relative;
}

.adyen-checkout-ctp__card-animation > .adyen-checkout-ctp__card-animation-layer {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: contain !important;
}

.adyen-checkout-ctp__card-animation > .adyen-checkout-ctp__card-animation-layer:first-of-type {
  opacity: 1;
  z-index: 3;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1064' height='466' fill='none'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='m895.31 228.862-46.416-10.988c-1.172-.381-2.528-.481-3.565-.203-1.582.424-1.825 1.567-.543 2.554.676.52 1.641.893 2.634 1.067l42.816 10.545-.537 21.742-2.328.624-6.897 1.848 1.146-20.056c.002-.012.002-.025.003-.037h.005c.061-.536-.274-1.054-.864-1.494-.563-.447-1.399-.831-2.462-1.065l-.003.001-.072-.016-46.587-10.849a.3.3 0 0 1-.032-.008c-1.18-.39-2.554-.496-3.601-.215l-16.926 4.535c-1.582.424-1.825 1.568-.542 2.555.389.299.859.593 1.407.742l44.453 10.938-.526 19.429c-.021.101.234 2.007-2.662 2.783l-22.831 6.118c-3.105.832-7.644.01-10.253-1.998l-32.227-24.8c-2.271-1.748-2.029-4.233 1.146-5.083l14.204-3.806c1.674-.449 1.938-1.481.58-2.526s-3.556-1.501-5.23-1.053l-14.297 3.879c-6.795 1.82-6.817 6.539-2.199 10.093l32.275 24.837c4.972 3.826 14.615 5.636 20.567 4.042l22.824-6.116c1.151-.309 2.067-.696 2.797-1.118.104-.061.204-.122.301-.183 2.32-1.48 2.521-3.296 2.528-3.671l1.19-21.406c.081-.992-1.14-2.073-3.289-2.548l-.003.002-.072-.017-39.385-9.196 7.065-1.893 2.329-.624 41.998 10.256-.496 22.836c-.001.007.031.018.093.032.113.304.361.618.75.918 1.283.987 3.605 1.443 5.187 1.02l16.925-4.535c1.048-.281 1.507-.878 1.326-1.536l1.612-23.779.002-.037.005-.001c.123-1.083-1.369-2.092-3.323-2.539z'/%3E%3Cpath stroke='%23fff' d='m895.31 228.862-46.416-10.988c-1.172-.381-2.528-.481-3.565-.203-1.582.424-1.825 1.567-.543 2.554.676.52 1.641.893 2.634 1.067l42.816 10.545-.537 21.742-2.328.624-6.897 1.848 1.146-20.056c.002-.012.002-.025.003-.037h.005c.061-.536-.274-1.054-.864-1.494-.563-.447-1.399-.831-2.462-1.065l-.003.001-.072-.016-46.587-10.849a.3.3 0 0 1-.032-.008c-1.18-.39-2.554-.496-3.601-.215l-16.926 4.535c-1.582.424-1.825 1.568-.542 2.555.389.299.859.593 1.407.742l44.453 10.938-.526 19.429c-.021.101.234 2.007-2.662 2.783l-22.831 6.118c-3.105.832-7.644.01-10.253-1.998l-32.227-24.8c-2.271-1.748-2.029-4.233 1.146-5.083l14.204-3.806c1.674-.449 1.938-1.481.58-2.526s-3.556-1.501-5.23-1.053l-14.297 3.879c-6.795 1.82-6.817 6.539-2.199 10.093l32.275 24.837c4.972 3.826 14.615 5.636 20.567 4.042l22.824-6.116c1.151-.309 2.067-.696 2.797-1.118.104-.061.204-.122.301-.183 2.32-1.48 2.521-3.296 2.528-3.671l1.19-21.406c.081-.992-1.14-2.073-3.289-2.548l-.003.002-.072-.017-39.385-9.196 7.065-1.893 2.329-.624 41.998 10.256-.496 22.836c-.001.007.031.018.093.032.113.304.361.618.75.918 1.283.987 3.605 1.443 5.187 1.02l16.925-4.535c1.048-.281 1.507-.878 1.326-1.536l1.612-23.779.002-.037.005-.001c.123-1.083-1.369-2.092-3.323-2.539'/%3E%3Cpath fill='%23fff' fill-opacity='.9' fill-rule='evenodd' d='M418.95 242.813c-1.166.08-3.042-.372-4.121-.994-.702-.405-.941-.755-1.527-2.243-2.373-6.017-6.517-11.028-13.679-16.54-6.921-5.325-13.863-9.053-24.178-12.987-2.215-.844-4.182-1.652-4.368-1.795-.687-.528-.979-1.482-.612-1.986.505-.691 2.349-1.081 3.824-.809.567.103 2.521.743 4.345 1.421 7.215 2.687 13.99 5.937 20.009 9.598 3.723 2.267 9.803 6.823 12.219 9.164 4.462 4.317 7.493 8.422 9.4 12.73 1.153 2.604 1.269 3.77.4 4.003a2.41 2.41 0 0 0-.548.23c-.132.08-.653.173-1.164.208zm-16.069-.701c-1.791.122-4.29-.719-4.965-1.671-.163-.23-.697-1.349-1.19-2.485-2.083-4.815-6.346-9.43-12.427-13.455-4.994-3.305-8.797-5.218-15.392-7.737-4.424-1.69-4.929-2-5.087-3.117-.146-1.06 1.961-1.804 4.061-1.431 1.457.258 8.467 2.972 11.969 4.634 11.594 5.498 19.993 12.484 23.913 19.889 2.008 3.792 1.779 5.192-.882 5.373zm-16.492-.659c-1.224-.015-2.768-.406-3.758-.951-.603-.332-.912-.797-1.614-2.437-2.575-6.024-8.768-10.833-18.898-14.676-4.447-1.688-5.038-2.104-4.718-3.324.158-.605.358-.757 1.34-1.02 1.642-.44 3.175-.146 7.121 1.365 6.068 2.325 10.298 4.621 14.525 7.881 4.345 3.352 6.465 5.882 8.069 9.62.915 2.141.839 2.79-.389 3.282-.375.149-1.131.266-1.678.26zm-15.379-.611c-.949.006-2.546-.385-3.476-.851-1.035-.519-1.424-1.045-1.796-2.434-.477-1.786-1.147-2.632-3.558-4.488s-3.719-2.531-6.931-3.584c-1.089-.356-2.302-.809-2.698-1.003-1.658-.818-1.914-2.296-.508-2.936 1.187-.544 2.67-.406 5.617.522 8.533 2.685 14.934 7.611 15.941 12.27.357 1.645-.521 2.495-2.591 2.504z'/%3E%3Crect width='110' height='74' fill='url(%23a)' rx='10' transform='matrix(.96593 -.25882 .7925 .60987 199.717 245.906)'/%3E%3Cg stroke='%23000' stroke-opacity='.8' stroke-width='2'%3E%3Cpath d='m233.447 236.868 46.846 36.05c.876.673.72 1.451-.347 1.737l-31.799 8.521M266.657 262.424l-33.731 9.038m17.126-21.816-33.73 9.038m115.215 13.423-46.846-36.05c-.875-.673-.72-1.451.347-1.737l31.799-8.52M298.327 246.551l33.731-9.038m-17.126 21.816 33.731-9.038'/%3E%3Crect width='112' height='76' x='-1.758' y='-.351' rx='11' style='mix-blend-mode:soft-light' transform='matrix(.96593 -.25882 .7925 .60987 199.935 245.314)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='a' x1='-12.604' x2='99.193' y1='0' y2='88.114' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23fff'/%3E%3Cstop offset='.484' stop-color='%23b3b3b3'/%3E%3Cstop offset='1' stop-color='%23fff'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E") no-repeat, url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1064' height='466' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Crect width='728' height='455' fill='url(%23b)' rx='24' transform='matrix(.96593 -.25882 .7925 .60987 0 188.42)'/%3E%3Cg fill='%23033783'%3E%3Cpath fill-opacity='.2' d='M638.209-50.009C376.564 99.506 477.408 320.518 560.535 412.335L1063.78 277.49 638.209-50.009z'/%3E%3Cpath fill-opacity='.4' d='M711.119 6.099C494.132 130.043 577.63 313.21 646.503 389.3l417.277-111.81L711.119 6.099z'/%3E%3C/g%3E%3Cpath fill='%23003780' d='M791.162 67.695C624.04 163.343 688.839 304.87 742.129 363.677l321.651-86.187L791.162 67.695z'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='b' x1='72.545' x2='249.224' y1='26.435' y2='498.002' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%233382ea'/%3E%3Cstop offset='1' stop-color='%23003ea9'/%3E%3C/linearGradient%3E%3CclipPath id='a'%3E%3Crect width='728' height='455' fill='%23fff' rx='24' transform='matrix(.96593 -.25882 .7925 .60987 0 188.42)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat;
  animation-name: card-bounce, card-fade-100;
  animation-duration: 2.06s, 2.06s;
  animation-timing-function: linear, linear;
  animation-iteration-count: infinite, infinite;
  animation-direction: normal, normal;
  animation-play-state: running, running;
  animation-delay: .1s;
  animation-fill-mode: both, both;
  animation-timeline: auto, auto;
}

.adyen-checkout-ctp__card-animation > .adyen-checkout-ctp__card-animation-layer:nth-of-type(2) {
  opacity: .6;
  z-index: 2;
  animation-name: card-bounce, card-fade-60;
  animation-duration: 2.06s, 2.06s;
  animation-timing-function: linear, linear;
  animation-iteration-count: infinite, infinite;
  animation-direction: normal, normal;
  animation-play-state: running, running;
  animation-delay: 50ms;
  animation-fill-mode: both, both;
  animation-timeline: auto, auto;
  transform: translateY(25%);
}

.adyen-checkout-ctp__card-animation > .adyen-checkout-ctp__card-animation-layer:nth-of-type(2), .adyen-checkout-ctp__card-animation > .adyen-checkout-ctp__card-animation-layer:nth-of-type(3) {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1064' height='466' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Crect width='728' height='455' fill='url(%23b)' rx='24' transform='matrix(.96593 -.25882 .7925 .60987 0 188.42)'/%3E%3Cg fill='%23033783'%3E%3Cpath fill-opacity='.2' d='M638.209-50.009C376.564 99.506 477.408 320.518 560.535 412.335L1063.78 277.49 638.209-50.009z'/%3E%3Cpath fill-opacity='.4' d='M711.119 6.099C494.132 130.043 577.63 313.21 646.503 389.3l417.277-111.81L711.119 6.099z'/%3E%3C/g%3E%3Cpath fill='%23003780' d='M791.162 67.695C624.04 163.343 688.839 304.87 742.129 363.677l321.651-86.187L791.162 67.695z'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='b' x1='72.545' x2='249.224' y1='26.435' y2='498.002' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%233382ea'/%3E%3Cstop offset='1' stop-color='%23003ea9'/%3E%3C/linearGradient%3E%3CclipPath id='a'%3E%3Crect width='728' height='455' fill='%23fff' rx='24' transform='matrix(.96593 -.25882 .7925 .60987 0 188.42)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat;
}

.adyen-checkout-ctp__card-animation > .adyen-checkout-ctp__card-animation-layer:nth-of-type(3) {
  opacity: .2;
  z-index: 1;
  animation: 2.06s linear infinite both card-bounce, 2.06s linear infinite both card-fade-20;
  transform: translateY(50%);
}

.adyen-checkout-ctp__loading-subtitle {
  text-align: center;
  max-width: 280px;
  margin: 0 auto 58px;
  font-size: 16px;
  line-height: 19px;
}

.adyen-checkout-ctp__section > .adyen-checkout__field.adyen-checkout__field--shopperLogin {
  margin-bottom: 20px;
}

.adyen-checkout__cashapp > .adyen-checkout__store-details {
  margin-top: 0;
  margin-bottom: 16px;
}

.adyen-checkout__button-group {
  background: none;
  justify-content: space-between;
  display: flex;
}

.adyen-checkout__button-group .adyen-checkout__button {
  color: #00112c;
  text-align: center;
  background: none;
  border: 0;
  height: 40px;
  margin-right: 8px;
  padding: 0;
  font-size: .81em;
  font-weight: 400;
  line-height: 40px;
  box-shadow: inset 0 0 0 1px #99a3ad;
}

.adyen-checkout__button-group .adyen-checkout__button:last-child {
  margin-right: 0;
}

.adyen-checkout__button-group .adyen-checkout__button:hover {
  background: none;
  box-shadow: inset 0 0 0 2px #99a3ad;
}

.adyen-checkout__button-group .adyen-checkout__button:active {
  background: #f7f8f9;
  box-shadow: inset 0 0 0 2px #99a3ad;
}

.adyen-checkout__button-group .adyen-checkout__button--disabled, .adyen-checkout__button-group .adyen-checkout__button--disabled:hover {
  cursor: not-allowed;
  opacity: .4;
  -webkit-user-select: none;
  user-select: none;
}

.adyen-checkout__button-group .adyen-checkout__button--selected, .adyen-checkout__button-group .adyen-checkout__button--selected:active, .adyen-checkout__button-group .adyen-checkout__button--selected:active:hover, .adyen-checkout__button-group .adyen-checkout__button--selected:hover {
  color: #0075ff;
  background: #e5efff;
  height: 40px;
  font-weight: 500;
  transition: none;
  box-shadow: inset 0 0 0 2px #0075ff;
}

.adyen-checkout__button-group .adyen-checkout__button .adyen-checkout__button-group__input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.adyen-checkout__adyen-giving .adyen-checkout__status__icon {
  margin: 56px auto 32px;
  display: block;
}

.adyen-checkout__adyen-giving .adyen-checkout__status__text {
  color: #00112c;
  text-align: center;
  margin-bottom: 56px;
}

.adyen-checkout__campaign {
  background: #00112c;
  border-radius: 6px;
  height: 227px;
  position: relative;
  overflow: hidden;
}

.adyen-checkout__campaign-link:hover .adyen-checkout__campaign-description {
  text-decoration: underline;
}

.adyen-checkout__campaign-container {
  height: 100%;
}

.adyen-checkout__campaign-logo {
  border: 2px solid #fff6;
  border-radius: 3px;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: block;
  overflow: hidden;
}

.adyen-checkout__campaign-background-image {
  background-color: #00112c;
  background-position: 50%;
  background-size: cover;
  height: 100%;
}

.adyen-checkout__campaign-link .adyen-checkout__campaign-background-image:before {
  background: inherit;
  content: "";
  width: 100%;
  height: 100%;
  transition: transform .6s ease-out;
  position: absolute;
}

.adyen-checkout__campaign-link .adyen-checkout__campaign-background-image:hover:before {
  transform: scale(1.1);
}

.adyen-checkout__campaign-link .adyen-checkout__campaign-content {
  pointer-events: none;
}

.adyen-checkout__campaign-content {
  z-index: 2;
  padding: 16px;
  position: absolute;
  bottom: 0;
}

.adyen-checkout__campaign-description, .adyen-checkout__campaign-title {
  color: #fff;
  margin: 0;
  font-weight: 400;
}

.adyen-checkout__campaign-title {
  margin-bottom: 8px;
  font-size: 1em;
}

.adyen-checkout__campaign-description {
  font-size: .81em;
  line-height: 19px;
}

.adyen-checkout__adyen-giving-actions {
  text-align: center;
  margin-top: 16px;
}

.adyen-checkout__button.adyen-checkout__button--donate {
  margin: 16px auto 8px;
}

.adyen-checkout__button.adyen-checkout__button--decline {
  width: auto;
  margin: auto;
  display: block;
}

.adyen-checkout__paywithgoogle {
  height: 48px;
}

.adyen-checkout__paywithgoogle > div > button, .adyen-checkout__paywithgoogle > div > button.long, .adyen-checkout__paywithgoogle > div > button.short {
  height: 48px;
  transition: background-color .3s ease-out, box-shadow .3s ease-out;
}

.adyen-checkout__paywithgoogle > div > button.long:focus, .adyen-checkout__paywithgoogle > div > button.short:focus, .adyen-checkout__paywithgoogle > div > button:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #99c2ff;
}

.adyen-checkout__paywithgoogle > div > button.gpay-button {
  padding: 15px 24px 13px;
}

.adyen-checkout__econtext-input__field > .adyen-checkout__button--pay:only-child {
  margin-top: 0;
}

.adyen-checkout__voucher-result {
  box-sizing: border-box;
  text-align: center;
  border-radius: 12px;
  position: relative;
}

.adyen-checkout__voucher-result__bottom, .adyen-checkout__voucher-result__top {
  background: #fff;
  border: 1px solid #d4d9db;
}

.adyen-checkout__voucher-result__top {
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  padding: 40px 0 24px;
}

.adyen-checkout__voucher-result__bottom {
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.adyen-checkout__voucher-result__separator {
  background: #fff;
  align-items: center;
  width: calc(100% - 14px);
  height: 13px;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.adyen-checkout__voucher-result__separator:after, .adyen-checkout__voucher-result__separator:before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI3IiBoZWlnaHQ9IjEzIiBmaWxsPSJub25lIj48ZyBjbGlwLXBhdGg9InVybCgjYSkiPjxwYXRoIGZpbGw9IiNmZmYiIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0ibTAgMCA1IDIgMS41IDRIN1YwSDBabTAgMTMgNS0yIDEuNS00SDd2NkgwWiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PHBhdGggc3Ryb2tlPSIjRDREOURCIiBkPSJNNi40MjMgNi41QzYuNDIzIDMuMzEyIDMuNzgzLjc1Ni41LjUxOGMzLjM4Ni4yMzYgNiAyLjg1NSA2IDUuOTgyIDAgMy4xMjctMi42MTQgNS43NDYtNiA1Ljk4M3YtLjAwMWMzLjI4NC0uMjM3IDUuOTIzLTIuNzk0IDUuOTIzLTUuOTgyWiIvPjxwYXRoIGZpbGw9IiNENEQ5REIiIGQ9Ik0wIDBoMXYxSDB6TTAgMTJoMXYxSDB6Ii8+PC9nPjxkZWZzPjxjbGlwUGF0aCBpZD0iYSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTAgMGg3djEzSDB6Ii8+PC9jbGlwUGF0aD48L2RlZnM+PC9zdmc+");
}

.adyen-checkout__voucher-result__separator:before {
  left: -7px;
}

.adyen-checkout__voucher-result__separator:after, .adyen-checkout__voucher-result__separator:before {
  content: "";
  background-position: 100%;
  background-repeat: no-repeat;
  width: 7px;
  height: 13px;
  position: absolute;
  top: 0;
}

.adyen-checkout__voucher-result__separator:after {
  right: -7px;
  transform: rotate(-180deg);
}

.adyen-checkout__voucher-result__separator__inner {
  border-top: 1px solid #e6e9eb;
  width: 100%;
}

.adyen-checkout__voucher-result__image {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

.adyen-checkout__link--voucher-result-instructions {
  display: inline-block;
}

.adyen-checkout__voucher-result__image__wrapper {
  height: 48px;
  margin: 0 24px;
  display: block;
  position: relative;
}

.adyen-checkout__voucher-result__image__wrapper:after {
  content: "";
  border: 1px solid #001b2b2b;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.adyen-checkout__voucher-result__image__wrapper:nth-child(2):before {
  content: "";
  border-left: 1px solid #d4d9db;
  width: 1px;
  height: 64px;
  position: absolute;
  top: -8px;
  left: -24.5px;
}

.adyen-checkout__voucher-result__image__brand, .adyen-checkout__voucher-result__image__issuer {
  border-radius: 3px;
  height: 48px;
}

.adyen-checkout__voucher-result__introduction {
  color: #00112c;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  font-size: .81em;
  line-height: 19px;
}

.adyen-checkout__voucher-result__amount {
  color: #00112c;
  text-align: center;
  margin: 24px auto 0;
  font-size: 1em;
  font-weight: 700;
}

.adyen-checkout__voucher-result__surcharge {
  color: #687282;
  text-align: center;
  font-size: .81em;
  font-weight: 400;
  line-height: 19px;
  display: block;
}

.adyen-checkout__voucher-result__code__label {
  -webkit-user-select: none;
  user-select: none;
  width: auto;
  margin: 0 auto;
  font-weight: 400;
  line-height: 19px;
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
}

.adyen-checkout__voucher-result__code__label:before {
  content: "";
  position: absolute;
}

.adyen-checkout__voucher-result__code__label__text {
  color: #00112c;
  letter-spacing: normal;
  background: #fff;
  padding: 0 8px;
  font-size: 13px;
  line-height: 1;
}

.adyen-checkout__voucher-result__code__barcode {
  -webkit-user-select: none;
  user-select: none;
  max-width: 100%;
  height: 56px;
  margin: 0 auto 8px;
  display: block;
}

.adyen-checkout__voucher-result__code {
  color: #00112c;
  letter-spacing: 1px;
  text-align: center;
  -webkit-user-select: all;
  user-select: all;
  word-break: break-word;
  border-width: 1px 0;
  width: 100%;
  margin: 0 auto;
  padding: 16px 48px;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  position: relative;
}

.adyen-checkout__voucher-result__details {
  margin: -1px auto 0;
  padding: 0;
  list-style: none;
}

.adyen-checkout__voucher-result__details__item {
  color: #00112c;
  word-break: break-word;
  border-top: 1px solid #e6e9eb;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: .81em;
  display: flex;
}

.adyen-checkout__voucher-result__details__item:last-child {
  margin-bottom: 0;
}

.adyen-checkout__voucher-result__details__label {
  text-align: left;
  max-width: 50%;
}

.adyen-checkout__voucher-result__details__value {
  text-align: right;
  max-width: 50%;
  font-weight: 700;
}

.adyen-checkout__voucher-result__actions {
  justify-content: center;
  align-items: center;
  width: 300px;
  min-width: 200px;
  max-width: 100%;
  margin: 0 auto 32px;
  padding: 0;
  list-style: none;
  display: flex;
}

.adyen-checkout__voucher-result__actions__item {
  margin: 0 4px;
}

.adyen-checkout__paypal__buttons {
  z-index: 0;
  position: relative;
}

.adyen-checkout__paypal__button {
  margin-bottom: 16px;
  display: flex;
}

.adyen-checkout__paypal__button:empty {
  display: none;
}

.adyen-checkout__paypal__status--pending {
  margin: 16px 0;
}

.adyen-checkout__paypal__status--processing {
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  display: flex;
}

.adyen-checkout__paypal-processing .adyen-checkout__paypal__button {
  display: none;
}

.adyen-checkout__payment-method .adyen-checkout__paypal__status--pending {
  margin: -16px 0 38px;
}

.adyen-checkout__payment-method .adyen-checkout__paypal__status--processing {
  padding: 20px 0 65px;
}

.adyen-checkout__phone-input {
  direction: ltr;
}

.adyen-checkout__phone-input .adyen-checkout__input-wrapper {
  width: 100%;
}

.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__input {
  height: auto;
  padding: 0;
}

.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__input:focus {
  border: 1px solid #0075ff;
  box-shadow: 0 0 0 2px #99c2ff;
}

.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__dropdown__button {
  border: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: auto;
  height: 35px;
}

.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__dropdown__button:after {
  box-sizing: revert;
  height: 10px;
  left: 60px;
}

.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__input--phoneNumber {
  border: 1px solid #0000;
  height: 35px;
  margin-left: 8px;
  padding-left: 15px;
}

.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__input-wrapper--phoneInput {
  align-items: center;
  display: flex;
}

.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__input-wrapper--phoneInput:focus {
  border: 1px solid #0075ff;
  box-shadow: 0 0 0 2px #99c2ff;
}

.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__phoneNumber {
  align-items: center;
  width: 100%;
  margin-left: 65px;
  display: flex;
}

.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__countryFlag {
  position: absolute;
}

.adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__dropdown__button--active, .adyen-checkout__phone-input .adyen-checkout__input-wrapper .adyen-checkout__dropdown__button--active:hover {
  box-shadow: none;
}

.adyen-checkout__threeds2__challenge, .adyen-checkout__threeds2__challenge-container {
  box-sizing: border-box;
  height: inherit;
  background-color: #0000;
  width: 100%;
  min-height: 400px;
  display: block;
  position: relative;
  overflow: hidden;
}

.adyen-checkout__threeds2__challenge--01, .adyen-checkout__threeds2__challenge--01 .adyen-checkout__iframe--threeDSIframe {
  width: 250px;
  height: 400px;
}

.adyen-checkout__threeds2__challenge--02, .adyen-checkout__threeds2__challenge--02 .adyen-checkout__iframe--threeDSIframe {
  width: 390px;
  height: 400px;
}

.adyen-checkout__threeds2__challenge--03, .adyen-checkout__threeds2__challenge--03 .adyen-checkout__iframe--threeDSIframe {
  width: 500px;
  height: 600px;
}

.adyen-checkout__threeds2__challenge--04, .adyen-checkout__threeds2__challenge--04 .adyen-checkout__iframe--threeDSIframe {
  width: 600px;
  height: 400px;
}

.adyen-checkout__threeds2__challenge--05, .adyen-checkout__threeds2__challenge--05 .adyen-checkout__iframe--threeDSIframe {
  width: 100%;
  height: 100%;
}

.adyen-checkout__iframe--threeDSIframe {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.adyen-checkout__threeds2-challenge-error .adyen-checkout__status__icon {
  margin: 56px auto 32px;
  display: block;
}

.adyen-checkout__threeds2-challenge-error .adyen-checkout__status__text {
  color: #c12424;
  text-align: center;
  margin-bottom: 56px;
}

.adyen-checkout__qr-loader {
  text-align: center;
  background: #fff;
  border: 1px solid #d4d9db;
  border-radius: 12px;
  padding: 40px;
}

.adyen-checkout__qr-loader--result {
  padding: 100px;
}

.adyen-checkout__qr-loader__brand-logo {
  border-radius: 3px;
  width: 74px;
}

.adyen-checkout__qr-loader__subtitle {
  max-width: 400px;
  margin: 32px auto 0;
}

.adyen-checkout__qr-loader__subtitle--result {
  margin-bottom: 32px;
}

.adyen-checkout__qr-loader__payment_amount, .adyen-checkout__qr-loader__subtitle {
  color: #00112c;
  font-size: 1em;
  line-height: 19px;
}

.adyen-checkout__qr-loader__icon {
  width: 88px;
  height: 88px;
}

.adyen-checkout__qr-loader__payment_amount {
  font-weight: 700;
}

.adyen-checkout__qr-loader__progress {
  background: #d4d9db;
  border-radius: 24px;
  width: 152px;
  height: 4px;
  margin: 32px auto 12px;
  padding-right: 3%;
}

[dir="rtl"] .adyen-checkout__qr-loader__progress {
  padding-left: 3%;
  padding-right: 0;
}

.adyen-checkout__qr-loader__percentage {
  background: #0075ff;
  border-radius: 24px;
  height: 100%;
  display: block;
}

.adyen-checkout__qr-loader__countdown {
  color: #687282;
  font-size: .81em;
}

.adyen-checkout__qr-loader > .adyen-checkout__spinner__wrapper {
  margin: 60px 0;
}

.adyen-checkout__qr-loader__app-link {
  display: none;
}

.adyen-checkout__button.adyen-checkout__button--qr-loader {
  margin-top: 24px;
  text-decoration: none;
}

.adyen-checkout__qr-loader__instructions {
  color: #687282;
  margin-top: 32px;
  font-size: 1em;
  line-height: 1.5;
}

.adyen-checkout__qr-loader__actions {
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  display: flex;
}

@media only screen and (device-width <= 1200px) {
  .adyen-checkout__qr-loader__app-link {
    display: block;
  }
}

.adyen-checkout__voucher-result--boletobancario .adyen-checkout__voucher-result__code, .adyen-checkout__voucher-result--oxxo .adyen-checkout__voucher-result__code {
  word-break: break-all;
  padding: 24px;
  font-size: .81em;
  line-height: 19px;
}

.adyen-checkout__alert-message {
  text-align: left;
  border-radius: 6px;
  margin: 0 0 16px;
  padding: 12px;
  font-size: .81em;
  display: flex;
}

.adyen-checkout__alert-message--error {
  background: #fbe6ed;
}

.adyen-checkout__alert-message--warning {
  background: #ffeacc;
}

.adyen-checkout__alert-message--info {
  background: #e5efff;
}

.adyen-checkout__alert-message__icon {
  width: 14px;
  height: 14px;
  margin-right: 8px;
}

.adyen-checkout__giftcard-result__header {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 1em;
  font-weight: 400;
  display: flex;
  position: relative;
}

.adyen-checkout__giftcard-result__header__title {
  align-items: center;
  display: flex;
}

.adyen-checkout__giftcard-result__name {
  margin-left: 8px;
}

.adyen-checkout__giftcard-result__balance {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.adyen-checkout__giftcard-result__balance__item {
  justify-content: space-between;
  margin-bottom: 8px;
  display: flex;
}

.adyen-checkout__giftcard-result__balance__item .adyen-checkout__giftcard-result__balance__title--transactionLimit {
  color: #687282;
}

.adyen-checkout__giftcard-result__balance__item:last-child {
  margin-bottom: 0;
}

.adyen-checkout__giftcard-result__balance__value--amount {
  font-weight: 700;
}

.adyen-checkout__giftcard-result__remaining-balance {
  color: #687282;
  text-align: center;
  margin: 8px auto 0;
  font-size: 13px;
  line-height: 19px;
}

.DropinComponent-module_adyen-checkout__payment-methods-list__mAjAm {
  margin: 0;
  padding: 0;
  list-style: none;
}

.DropinComponent-module_adyen-checkout__payment-method__nWdwg {
  max-height: 60px;
  display: block;
}

.DropinComponent-module_adyen-checkout__payment-method__details__-rsW7 {
  display: none;
}

.DropinComponent-module_adyen-checkout__payment-method__image__nB80V {
  width: 40px;
  height: 26px;
}

.DropinComponent-module_adyen-checkout__payment-method__image__wrapper__6NWzA {
  margin-right: 8px;
}

[dir="rtl"] .DropinComponent-module_adyen-checkout__payment-method__image__wrapper__6NWzA {
  margin-left: 8px;
  margin-right: 0;
}

.DropinComponent-module_adyen-checkout__payment-method--selected__6egZF {
  max-height: 100%;
}

.DropinComponent-module_adyen-checkout__payment-method--selected__6egZF .DropinComponent-module_adyen-checkout__payment-method__details__-rsW7 {
  display: block;
}

.adyen-checkout__payment-method__disable-confirmation {
  color: #fff;
  opacity: 0;
  background: #c12424;
  border-left: 1px solid #b82222;
  border-right: 1px solid #b82222;
  max-height: 0;
  margin: 0 -17px;
  font-size: .81em;
  transition: opacity .15s ease-out, max-height .15s linear, margin-bottom .1s linear;
  overflow: hidden;
}

.adyen-checkout__payment-method__disable-confirmation.adyen-checkout__payment-method__disable-confirmation--open {
  opacity: 1;
  max-height: 62px;
  margin-bottom: 16px;
}

.adyen-checkout__payment-method__disable-confirmation__content {
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  display: flex;
}

.adyen-checkout__payment-method__disable-confirmation__buttons {
  display: flex;
}

.adyen-checkout__payment-method__disable-confirmation__button {
  color: #fff;
  cursor: pointer;
  background: #c12424;
  border: 1px solid #0000;
  border-radius: 6px;
  width: auto;
  height: auto;
  margin: 0 0 0 8px;
  padding: 8px;
  line-height: 14px;
  display: block;
}

.adyen-checkout__payment-method__disable-confirmation__button:hover, .adyen-checkout__payment-method__disable-confirmation__button:hover:focus {
  box-shadow: none;
  background: #ac2020;
}

.adyen-checkout__payment-method__disable-confirmation__button:active, .adyen-checkout__payment-method__disable-confirmation__button:hover:active {
  box-shadow: none;
  background: #961c1c;
}

.adyen-checkout__payment-method__disable-confirmation__button--remove, .adyen-checkout__payment-method__disable-confirmation__button--remove:disabled {
  border-color: #fff;
}

.adyen-checkout__payment-method__disable-confirmation__button--cancel, .adyen-checkout__payment-method__disable-confirmation__button--cancel:disabled {
  border-color: #0000;
}

.adyen-checkout__payment-method {
  cursor: pointer;
  background: #fff;
  border: 1px solid #e6e9eb;
  width: 100%;
  margin-top: -1px;
  transition: opacity .3s ease-out;
  position: relative;
}

.adyen-checkout__payment-method:focus {
  outline: 0;
}

.adyen-checkout__payment-method--selected + .adyen-checkout__payment-method, .adyen-checkout__payment-method:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-top: 0;
}

.adyen-checkout__payment-method--next-selected, .adyen-checkout__payment-method:last-child {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  margin-bottom: 0;
}

.adyen-checkout__payment-method--loading {
  opacity: .2;
}

.adyen-checkout__payment-method--selected.adyen-checkout__payment-method--loading {
  opacity: .9;
}

.adyen-checkout__payment-method--confirming .adyen-checkout__payment-method__details__content, .adyen-checkout__payment-method--disabling {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.adyen-checkout__payment-method--disabling {
  opacity: .3;
}

.adyen-checkout__payment-method__header {
  color: #00112c;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 16px 12px 44px;
  font-size: 1em;
  font-weight: 400;
  transition: background .1s ease-out;
  display: flex;
  position: relative;
}

[dir="rtl"] .adyen-checkout__payment-method__header {
  padding: 12px 44px 12px 12px;
}

.adyen-checkout__payment-method--standalone .adyen-checkout__payment-method__header {
  padding: 16px;
}

.adyen-checkout__payment-method__header__title {
  color: #00112c;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  align-items: center;
  max-width: 100%;
  margin-right: 16px;
  padding: 4px;
  font-size: 1em;
  font-weight: 400;
  display: flex;
}

[dir="rtl"] .adyen-checkout__payment-method__header__title {
  margin-left: 16px;
  margin-right: 0;
}

.adyen-checkout__payment-method__surcharge {
  color: #687282;
  margin-left: 5px;
}

.adyen-checkout__payment-method--selected {
  cursor: default;
  background: #f7f8f9;
  border: 1px solid #e6e9eb;
  border-radius: 12px;
  margin: 8px 0;
  transition: margin .15s cubic-bezier(.4, 0, .2, 1), opacity .3s ease-out;
}

.adyen-checkout__payment-method--selected .adyen-checkout__payment-method__header {
  flex-wrap: wrap;
}

.adyen-checkout__payment-method__details {
  padding: 0 16px;
  position: relative;
}

.adyen-checkout__payment-method__details__content > :last-child {
  margin-bottom: 16px;
}

.adyen-checkout__payment-method__image__wrapper {
  width: 40px;
  height: 26px;
  position: relative;
}

.adyen-checkout__payment-method__image__wrapper--outline:after {
  content: "";
  border: 1px solid #001b2b2b;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.adyen-checkout__payment-method__image {
  border-radius: 3px;
  display: block;
}

.adyen-checkout__payment-method__brands {
  text-align: right;
  flex-wrap: wrap;
  flex-shrink: 1;
  flex-basis: auto;
  height: 16px;
  margin: 4px 0;
  display: flex;
  overflow: hidden;
}

.adyen-checkout__payment-method__brands .adyen-checkout__payment-method__brand-number {
  color: #687282;
  font-size: 13px;
}

.adyen-checkout__payment-method--selected .adyen-checkout__payment-method__brands {
  text-align: left;
  height: auto;
  overflow: visible;
}

.adyen-checkout__payment-method__brands .adyen-checkout__payment-method__image__wrapper {
  width: 24px;
  height: 16px;
  margin-right: 4px;
  transition: opacity .2s ease-out;
  display: inline-block;
}

.adyen-checkout__payment-method__brands .adyen-checkout__payment-method__image__wrapper:last-child {
  margin: 0;
}

.adyen-checkout__payment-method--selected .adyen-checkout__payment-method__brands .adyen-checkout__payment-method__image__wrapper {
  margin-bottom: 4px;
}

.adyen-checkout__payment-method__brands img {
  width: 24px;
  height: 16px;
}

.adyen-checkout__payment-method__image__wrapper--disabled {
  opacity: .25;
}

.adyen-checkout__payment-method__radio {
  background-color: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  transition: border-color .2s ease-out, box-shadow .2s ease-out;
  position: absolute;
  left: 16px;
}

[dir="rtl"] .adyen-checkout__payment-method__radio {
  left: auto;
  right: 16px;
}

.adyen-checkout__payment-method--standalone .adyen-checkout__payment-method__radio {
  display: none;
}

.adyen-checkout__payment-method__radio:after {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin: 0 auto;
  transition: transform .3s ease-out;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%)scale(0);
}

.adyen-checkout__payment-method:hover:not(.adyen-checkout__payment-method--selected) .adyen-checkout__payment-method__radio {
  cursor: pointer;
  border-color: #99a3ad;
  box-shadow: 0 0 0 2px #d4d9db;
}

.adyen-checkout__payment-method__radio--selected {
  background-color: #0075ff;
  border: 0;
  transition: all .3s ease-out;
}

.adyen-checkout__payment-method__radio--selected:hover {
  box-shadow: 0 0 0 2px #06f6;
}

.adyen-checkout__payment-method__radio--selected:after {
  transform: translateY(-50%)scale(1);
}

.adyen-checkout__payment-method__name {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.adyen-checkout__payment-method__name--selected {
  font-weight: 500;
}

.adyen-checkout__payment-method__additional-info {
  color: #687282;
  font-size: .81em;
}

.adyen-checkout__payment-method__name_wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.adyen-checkout__order-payment-methods-list {
  margin: 0 auto 16px;
  padding: 0;
  list-style: none;
}

.adyen-checkout__order-payment-method {
  background: #fff;
  border: 1px solid #e6e9eb;
  width: 100%;
  margin-top: -1px;
  position: relative;
}

.adyen-checkout__order-payment-method:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.adyen-checkout__order-payment-method:last-child {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.adyen-checkout__order-payment-method__header {
  color: #00112c;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px;
  font-size: 1em;
  font-weight: 500;
  transition: background .1s ease-out;
  display: flex;
  position: relative;
}

.adyen-checkout__order-payment-method__header .adyen-checkout__payment-method__header__title {
  padding: 0;
}

.adyen-checkout__order-payment-method__details {
  padding: 0 16px 16px;
}

.adyen-checkout__order-payment-method__deducted-amount {
  justify-content: space-between;
  font-size: 1em;
  line-height: 1em;
  display: flex;
}

.adyen-checkout__order-payment-method__deducted-amount__label {
  font-size: .81em;
}

.adyen-checkout__order-payment-method__deducted-amount__value {
  font-weight: 500;
}

.adyen-checkout__order-remaining-amount {
  color: #7f4a00;
  background: #ffeacc;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 16px;
  padding: 8px 16px;
  font-size: .81em;
  display: block;
}

.adyen-checkout__order-remaining-amount strong {
  font-weight: 700;
}

.adyen-checkout__status {
  color: #00112c;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d4d9db;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 350px;
  margin: 0;
  padding: 32px;
  font-size: 1em;
  display: flex;
}

.adyen-checkout__status__icon {
  margin-bottom: 24px;
}

.adyen-checkout__status .adyen-checkout__spinner__wrapper {
  max-height: 88px;
}

.adyen-checkout__dropin, .adyen-checkout__dropin *, .adyen-checkout__dropin :after, .adyen-checkout__dropin :before {
  box-sizing: border-box;
}

.adyen-checkout__payment-methods-list--loading {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.adyen-checkout__instant-payment-methods-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.adyen-checkout__instant-payment-methods-list li:not(:last-child) {
  margin-bottom: 8px;
}

.adyen-checkout__link {
  color: #0075ff;
  text-decoration: none;
}

.adyen-checkout__link:hover {
  text-decoration: underline;
}

.AchInput-module_sf-input__wrapper__lfdiv {
  position: relative;
}

.AchInput-module_sf-input__wrapper__lfdiv *, .AchInput-module_sf-input__wrapper__lfdiv :after, .AchInput-module_sf-input__wrapper__lfdiv :before {
  box-sizing: border-box;
}

.AchInput-module_adyen-checkout__input__8WwCR {
  max-height: 100px;
  display: block;
}

.adyen-checkout__pm__holderName {
  margin-bottom: 0;
}

.adyen-checkout__fieldset__title + .adyen-checkout__ach-sf__form {
  margin-top: 0;
}

.adyen-checkout__ach-input .adyen-checkout__fieldset--address, .adyen-checkout__ach-sf__form {
  margin-top: 16px;
}

.adyen-checkout__ach-input .adyen-checkout__radio_group__input-wrapper:not(:last-child) {
  margin-bottom: 12px;
}

.adyen-checkout__loading-input__form {
  transition: opacity .25s ease-out;
}

.adyen-checkout-phone-input--new {
  direction: ltr;
}

.adyen-checkout-phone-input--new .adyen-checkout__input-wrapper {
  width: 100%;
}

.adyen-checkout-phone-input--new .adyen-checkout__input-wrapper .adyen-checkout__input {
  height: auto;
  padding: 0;
}

.adyen-checkout-phone-input--new .adyen-checkout__input-wrapper .adyen-checkout__input:focus-within {
  border: 1px solid #0075ff;
}

.adyen-checkout-phone-input--new .adyen-checkout__input-wrapper .adyen-checkout__input:focus-within .adyen-checkout-dropdown--countrycode-selector {
  border-right: 1px solid #0075ff;
}

.adyen-checkout-phone-input--new .adyen-checkout__input-wrapper .adyen-checkout__dropdown__button {
  border: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: auto;
  height: 35px;
}

.adyen-checkout-phone-input--new .adyen-checkout__input-wrapper .adyen-checkout__dropdown__button:after {
  box-sizing: revert;
  height: 10px;
}

.adyen-checkout-phone-input--new .adyen-checkout__input-wrapper .adyen-checkout__dropdown__button--active, .adyen-checkout-phone-input--new .adyen-checkout__input-wrapper .adyen-checkout__dropdown__button--active:hover {
  box-shadow: none;
}

.adyen-checkout-phone-input--new .adyen-checkout__input-wrapper .adyen-checkout-input--phone-number {
  border: 1px solid #0000;
  height: 35px;
  min-height: 35px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 15px;
  line-height: 35px;
}

.adyen-checkout-phone-input--new .adyen-checkout__input-wrapper .adyen-checkout-input--phone-number:focus-within {
  border: 1px solid #0075ff;
  box-shadow: 0 0 0 2px #99c2ff;
}

.adyen-checkout-phone-input--new .adyen-checkout__input-wrapper .adyen-checkout-dropdown--countrycode-selector {
  border-right: 1px solid #dce0e5;
  width: 144px;
  min-width: 144px;
}

.adyen-checkout-phone-input--new .adyen-checkout__input-wrapper .adyen-checkout-input-holder--phone-input {
  align-items: center;
  display: flex;
}

.adyen-checkout-phone-input--new .adyen-checkout__input-wrapper .adyen-checkout-phone-number {
  flex: 3;
  align-items: center;
  display: flex;
}

.adyen-checkout-phone-input--new .adyen-checkout-phone-input__error-holder {
  margin-top: -10px;
}

.adyen-checkout__await {
  text-align: center;
  background: #fff;
  border: 1px solid #d4d9db;
  border-radius: 12px;
  padding: 40px;
}

.adyen-checkout__await--result {
  padding: 100px;
}

.adyen-checkout__qr-loader--app {
  border: 0;
  border-radius: 0;
  padding: 0;
}

.adyen-checkout__await__brand-logo {
  border-radius: 3px;
  width: 74px;
}

.adyen-checkout__await__indicator-text, .adyen-checkout__await__subtitle {
  color: #00112c;
  margin-top: 32px;
  font-size: 1em;
  line-height: 19px;
}

.adyen-checkout__await__indicator-holder .adyen-checkout__await__indicator-text {
  margin-top: 6px;
  margin-left: 10px;
}

.adyen-checkout__await__indicator-holder {
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 20px;
  display: flex;
}

.adyen-checkout__await__subtitle--result {
  margin-bottom: 32px;
}

.adyen-checkout__await__icon {
  width: 88px;
  height: 88px;
}

.adyen-checkout__await__progress {
  background: #d4d9db;
  border-radius: 24px;
  width: 152px;
  height: 4px;
  margin: 32px auto 12px;
}

.adyen-checkout__await__percentage {
  background: #0075ff;
  border-radius: 24px;
  height: 100%;
  display: block;
}

.adyen-checkout__await__countdown {
  color: #687282;
  font-size: .81em;
}

.adyen-checkout__await > .adyen-checkout__spinner__wrapper {
  margin: 60px 0;
}

.adyen-checkout__await__app-link {
  margin-top: 16px;
  display: none;
}

@media only screen and (device-width <= 1200px) {
  .adyen-checkout__await__app-link {
    display: block;
  }
}

.adyen-checkout__blik__helper {
  color: #00112c;
  margin: 0 0 16px;
  padding: 0;
  font-size: 1em;
  font-weight: 400;
}

.adyen-checkout__bankTransfer__introduction {
  color: #00112c;
  margin: 0 0 16px;
  padding: 0;
  font-size: .81em;
  font-weight: 400;
}

.adyen-checkout__bankTransfer__emailField {
  margin: 0 0 16px;
}

.adyen-checkout__bacs--confirm {
  position: relative;
}

.adyen-checkout__bacs--confirm .adyen-checkout-input__inline-validation--valid {
  display: none;
}

.adyen-checkout__bacs .adyen-checkout__field--inactive {
  pointer-events: none;
}

.adyen-checkout__bacs .adyen-checkout__bacs--edit {
  cursor: pointer;
  width: 20%;
  position: absolute;
  top: -25px;
  right: 0;
}

.adyen-checkout__bacs .adyen-checkout__bacs--edit-dropin {
  top: -50px;
}

.adyen-checkout__bacs .adyen-checkout__bacs--edit .adyen-checkout__bacs--edit-button {
  color: #0075ff;
  cursor: pointer;
  text-align: end;
  background: none;
  border: none;
  text-decoration: underline;
}

.adyen-checkout__voucher-result__introduction {
  max-width: 420px;
  font-size: 1em;
}

.adyen-checkout__klarna-widget {
  pointer-events: all;
}

.adyen-checkout__field--vpa {
  margin-bottom: 0;
}

.adyen-checkout__segmented-control {
  background: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 6px;
  justify-content: space-between;
  gap: 4px;
  padding: 4px 5px;
  display: flex;
}

.adyen-checkout__segmented-control--disabled {
  pointer-events: none;
}

.adyen-checkout__segmented-control--disabled > .adyen-checkout__segmented-control-segment {
  color: #8390a3;
}

.adyen-checkout__segmented-control--disabled > .adyen-checkout__segmented-control-segment--selected {
  background: #f3f6f9;
  border: 1.5px solid #8390a3;
}

.adyen-checkout__segmented-control-segment {
  color: #0075ff;
  cursor: pointer;
  text-align: center;
  background: #fff;
  border: 0;
  border-radius: 6px;
  flex-grow: 1;
  width: 100%;
  height: 40px;
  font-weight: 500;
  transition: background .3s ease-out;
}

.adyen-checkout__segmented-control-segment:not(.adyen-checkout__segmented-control-segment--selected):hover {
  background-color: #f7f8f9;
}

.adyen-checkout__segmented-control-segment:active {
  background-color: #f7f8f9;
  border: 1.5px solid #687282;
}

.adyen-checkout__segmented-control-segment--selected {
  color: #0075ff;
  background: #e5f1ff;
  border: 1.5px solid #0075ff;
  font-weight: 700;
}

.adyen-checkout-radio-button {
  color: #00112c;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  align-items: center;
  max-width: 100%;
  padding: 4px;
  font-size: 1em;
  font-weight: 400;
  display: flex;
}

.adyen-checkout-radio-button[aria-checked="false"]:hover > .adyen-checkout-radio-button__radio {
  cursor: pointer;
  border-color: #99a3ad;
  box-shadow: 0 0 0 2px #d4d9db;
}

.adyen-checkout-radio-button__radio {
  background-color: #fff;
  border: 1px solid #b9c4c9;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  transition: border-color .2s ease-out, box-shadow .2s ease-out;
}

[dir="rtl"] .adyen-checkout-radio-button__radio {
  left: auto;
  right: 16px;
}

.adyen-checkout-radio-button__radio:after {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin: 0 auto;
  transition: transform .3s ease-out;
  display: block;
  position: relative;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%)scale(0);
}

.adyen-checkout-radio-button__radio--selected {
  background-color: #0075ff;
  border: 0;
  transition: all .3s ease-out;
}

.adyen-checkout-radio-button__radio--selected:hover {
  box-shadow: 0 0 0 2px #06f6;
}

.adyen-checkout-radio-button__radio--selected:after {
  transform: translateY(-50%)scale(1);
}

.adyen-checkout-upi-app-item-header {
  padding: 6px 16px 6px 32px;
  position: relative;
}

.adyen-checkout-upi-app-item {
  cursor: pointer;
  width: 100%;
  margin-top: -1px;
  transition: opacity .3s ease-out;
}

.adyen-checkout-upi-app-item:first-child {
  margin-top: 0;
}

.adyen-checkout-upi-app-item--selected {
  cursor: default;
  transition: margin .15s cubic-bezier(.4, 0, .2, 1), opacity .3s ease-out;
}

.adyen-checkout-upi-app-item .adyen-checkout-radio-button__radio {
  position: absolute;
  left: 0;
}

.adyen-checkout-upi-app-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.adyen-checkout-upi-app-list--loading {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.adyen-checkout_upi-mode-selection-text {
  margin-top: 0;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
}

.adyen-checkout__segmented-control--upi-margin-bottom {
  margin-bottom: 16px;
}

.adyen-checkout-upi-area-intent .adyen-checkout__button--pay {
  margin-top: 16px;
}

.adyen-checkout-upi-area-qr-code .adyen-checkout__button--pay {
  margin-top: 0;
}

.adyen-checkout-trustly {
  margin-bottom: 16px;
}

.adyen-checkout-trustly__descriptor {
  margin: 0 0 4px;
  font-size: 1em;
  font-weight: 500;
}

.adyen-checkout-trustly__description-list {
  margin: 0;
  padding-left: 20px;
  font-size: .81em;
  line-height: 1.5;
  list-style-type: disc;
}

.adyen-checkout-payme-instructions {
  color: #5c687c;
  text-align: center;
  font-size: .81em;
  line-height: 20px;
}

.adyen-checkout-payme-instructions__steps {
  padding-bottom: 8px;
  margin: 16px 0;
  padding-inline-start: 0;
  list-style-position: inside;
}

.adyen-checkout-paybybank_AIS_DD {
  margin-bottom: 16px;
}

.adyen-checkout-paybybank_AIS_DD__description-header {
  color: #00112c;
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 500;
}

.adyen-checkout-paybybank_AIS_DD__description-body {
  color: #687282;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  list-style-type: disc;
}

@media (width <= 330px) {
  .adyen-checkout__payment-method--paybybank_AIS_DD .adyen-checkout__payment-method__brands {
    display: none;
  }
}

@media (width <= 360px) {
  .adyen-checkout__payment-method--paybybank_AIS_DD .adyen-checkout__payment-method__brands .adyen-checkout__payment-method__image__wrapper:nth-child(2) {
    display: none;
  }
}

@media (width <= 390px) {
  .adyen-checkout__payment-method--paybybank_AIS_DD .adyen-checkout__payment-method__brands .adyen-checkout__payment-method__image__wrapper:nth-child(3) {
    display: none;
  }
}

@media (width <= 420px) {
  .adyen-checkout__payment-method--paybybank_AIS_DD .adyen-checkout__payment-method__brands .adyen-checkout__payment-method__image__wrapper:nth-child(4) {
    display: none;
  }
}

.adyen-checkout__payment-method--paybybank_AIS_DD .adyen-checkout__payment-method__brand-number {
  text-overflow: clip;
  white-space: nowrap;
}

.adyen-checkout-sr-panel {
  margin-bottom: 20px;
  font-size: .75em;
}

.adyen-checkout-sr-panel--sr-only {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #f9423a;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #666;
  --gray-dark: #343a40;
  --primary: #28a745;
  --secondary: #666;
  --success: #007bff;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #f9423a;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*, :before, :after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: #0000;
  font-family: sans-serif;
  line-height: 1.15;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  color: #212529;
  text-align: left;
  background-color: #fff;
  margin: 0;
  font-family: Sentinel A, Sentinel B, Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: .5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title], abbr[data-original-title] {
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  border-bottom: 0;
  text-decoration: underline dotted;
}

address {
  font-style: normal;
  line-height: inherit;
  margin-bottom: 1rem;
}

ol, ul, dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol, ul ul, ol ul, ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #28a745;
  background-color: #0000;
  text-decoration: none;
}

a:hover {
  color: #19692c;
  text-decoration: underline;
}

a:not([href]), a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

pre, code, kbd, samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  vertical-align: middle;
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  color: #666;
  text-align: left;
  caption-side: bottom;
  padding-top: .75rem;
  padding-bottom: .75rem;
}

th {
  text-align: inherit;
}

label {
  margin-bottom: .5rem;
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input, button, select, optgroup, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="reset"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

input[type="radio"], input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  resize: vertical;
  overflow: auto;
}

fieldset {
  border: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  width: 100%;
  max-width: 100%;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
  margin-bottom: .5rem;
  padding: 0;
  display: block;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button {
  height: auto;
}

[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  cursor: pointer;
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: .5rem;
  font-family: Sentinel A, Sentinel B, Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  border: 0;
  border-top: 1px solid #0000001a;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

small, .small {
  font-size: 90%;
  font-weight: 400;
}

mark, .mark {
  background-color: #fcf8e3;
  padding: .2em;
}

.list-unstyled, .list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: .5rem;
}

.initialism {
  text-transform: uppercase;
  font-size: 90%;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  color: #666;
  font-size: 90%;
  display: block;
}

.blockquote-footer:before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  background-color: #fff;
  border: 1px solid #dadada;
  border-radius: .25rem;
  max-width: 100%;
  height: auto;
  padding: .25rem;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: .5rem;
  line-height: 1;
}

.figure-caption {
  color: #666;
  font-size: 90%;
}

code {
  color: #e83e8c;
  word-wrap: break-word;
  font-size: 87.5%;
}

a > code {
  color: inherit;
}

kbd {
  color: #fff;
  background-color: #212529;
  border-radius: .2rem;
  padding: .2rem .4rem;
  font-size: 87.5%;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  color: #212529;
  font-size: 87.5%;
  display: block;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (width >= 576px) {
  .container {
    max-width: 540px;
  }
}

@media (width >= 768px) {
  .container {
    max-width: 720px;
  }
}

@media (width >= 992px) {
  .container {
    max-width: 960px;
  }
}

@media (width >= 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid, .container-xl, .container-lg, .container-md, .container-sm {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (width >= 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}

@media (width >= 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}

@media (width >= 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}

@media (width >= 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}

.row {
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.no-gutters {
  margin-left: 0;
  margin-right: 0;
}

.no-gutters > .col, .no-gutters > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.col-xl, .col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg, .col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md, .col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm, .col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col, .col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.col {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6667%;
  max-width: 16.6667%;
}

.col-auto {
  flex: none;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  flex: 0 0 16.6667%;
  max-width: 16.6667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.col-5 {
  flex: 0 0 41.6667%;
  max-width: 41.6667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333%;
  max-width: 58.3333%;
}

.col-8 {
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333%;
  max-width: 83.3333%;
}

.col-11 {
  flex: 0 0 91.6667%;
  max-width: 91.6667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.6667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333%;
}

.offset-5 {
  margin-left: 41.6667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333%;
}

.offset-8 {
  margin-left: 66.6667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333%;
}

.offset-11 {
  margin-left: 91.6667%;
}

@media (width >= 576px) {
  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-sm-auto {
    flex: none;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.6667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333%;
  }

  .offset-sm-5 {
    margin-left: 41.6667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333%;
  }

  .offset-sm-8 {
    margin-left: 66.6667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333%;
  }

  .offset-sm-11 {
    margin-left: 91.6667%;
  }
}

@media (width >= 768px) {
  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-md-auto {
    flex: none;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-md-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-md-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-md-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.6667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333%;
  }

  .offset-md-5 {
    margin-left: 41.6667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333%;
  }

  .offset-md-8 {
    margin-left: 66.6667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333%;
  }

  .offset-md-11 {
    margin-left: 91.6667%;
  }
}

@media (width >= 992px) {
  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-lg-auto {
    flex: none;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.6667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333%;
  }

  .offset-lg-5 {
    margin-left: 41.6667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333%;
  }

  .offset-lg-8 {
    margin-left: 66.6667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333%;
  }

  .offset-lg-11 {
    margin-left: 91.6667%;
  }
}

@media (width >= 1200px) {
  .col-xl {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-xl-auto {
    flex: none;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6667%;
    max-width: 91.6667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.6667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333%;
  }

  .offset-xl-5 {
    margin-left: 41.6667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333%;
  }

  .offset-xl-8 {
    margin-left: 66.6667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333%;
  }

  .offset-xl-11 {
    margin-left: 91.6667%;
  }
}

.table {
  color: #212529;
  width: 100%;
  margin-bottom: 1rem;
}

.table th, .table td {
  vertical-align: top;
  border-top: 1px solid #dadada;
  padding: .75rem;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dadada;
}

.table tbody + tbody {
  border-top: 2px solid #dadada;
}

.table-sm th, .table-sm td {
  padding: .3rem;
}

.table-bordered, .table-bordered th, .table-bordered td {
  border: 1px solid #dadada;
}

.table-bordered thead th, .table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th, .table-borderless td, .table-borderless thead th, .table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #0000000d;
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: #00000013;
}

.table-primary, .table-primary > th, .table-primary > td {
  background-color: #c3e6cb;
}

.table-primary th, .table-primary td, .table-primary thead th, .table-primary tbody + tbody {
  border-color: #8fd19e;
}

.table-hover .table-primary:hover, .table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th {
  background-color: #b1dfbb;
}

.table-secondary, .table-secondary > th, .table-secondary > td {
  background-color: #d4d4d4;
}

.table-secondary th, .table-secondary td, .table-secondary thead th, .table-secondary tbody + tbody {
  border-color: #afafaf;
}

.table-hover .table-secondary:hover, .table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th {
  background-color: #c7c7c7;
}

.table-success, .table-success > th, .table-success > td {
  background-color: #b8daff;
}

.table-success th, .table-success td, .table-success thead th, .table-success tbody + tbody {
  border-color: #7abaff;
}

.table-hover .table-success:hover, .table-hover .table-success:hover > td, .table-hover .table-success:hover > th {
  background-color: #9fcdff;
}

.table-info, .table-info > th, .table-info > td {
  background-color: #bee5eb;
}

.table-info th, .table-info td, .table-info thead th, .table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover, .table-hover .table-info:hover > td, .table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning, .table-warning > th, .table-warning > td {
  background-color: #ffeeba;
}

.table-warning th, .table-warning td, .table-warning thead th, .table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover, .table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger, .table-danger > th, .table-danger > td {
  background-color: #fdcac8;
}

.table-danger th, .table-danger td, .table-danger thead th, .table-danger tbody + tbody {
  border-color: #fc9d99;
}

.table-hover .table-danger:hover, .table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th {
  background-color: #fcb2af;
}

.table-light, .table-light > th, .table-light > td {
  background-color: #fdfdfe;
}

.table-light th, .table-light td, .table-light thead th, .table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover, .table-hover .table-light:hover > td, .table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark, .table-dark > th, .table-dark > td {
  background-color: #c6c8ca;
}

.table-dark th, .table-dark td, .table-dark thead th, .table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover, .table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active, .table-active > th, .table-active > td, .table-hover .table-active:hover, .table-hover .table-active:hover > td, .table-hover .table-active:hover > th {
  background-color: #00000013;
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dadada;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th, .table-dark td, .table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: #ffffff0d;
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: #ffffff13;
}

@media (width <= 575.98px) {
  .table-responsive-sm {
    -webkit-overflow-scrolling: touch;
    width: 100%;
    display: block;
    overflow-x: auto;
  }

  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (width <= 767.98px) {
  .table-responsive-md {
    -webkit-overflow-scrolling: touch;
    width: 100%;
    display: block;
    overflow-x: auto;
  }

  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (width <= 991.98px) {
  .table-responsive-lg {
    -webkit-overflow-scrolling: touch;
    width: 100%;
    display: block;
    overflow-x: auto;
  }

  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (width <= 1199.98px) {
  .table-responsive-xl {
    -webkit-overflow-scrolling: touch;
    width: 100%;
    display: block;
    overflow-x: auto;
  }

  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  -webkit-overflow-scrolling: touch;
  width: 100%;
  display: block;
  overflow-x: auto;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  color: #495057;
  background-color: #f8f9fa;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: #0000;
  border: 0;
}

.form-control:-moz-focusring {
  color: #0000;
  text-shadow: 0 0 #495057;
}

.form-control:focus {
  color: #495057;
  background-color: #f8f9fa;
  border-color: #71dd8a;
  outline: 0;
  box-shadow: 0 0 0 .2rem #28a74540;
}

.form-control::placeholder {
  color: #666;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  opacity: 1;
  background-color: #e9ecef;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #f8f9fa;
}

.form-control-file, .form-control-range {
  width: 100%;
  display: block;
}

.col-form-label {
  font-size: inherit;
  margin-bottom: 0;
  padding-top: calc(.375rem + 1px);
  padding-bottom: calc(.375rem + 1px);
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(.5rem + 1px);
  padding-bottom: calc(.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(.25rem + 1px);
  padding-bottom: calc(.25rem + 1px);
  font-size: .875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  color: #212529;
  background-color: #0000;
  border: 1px solid #0000;
  border-width: 1px 0;
  width: 100%;
  margin-bottom: 0;
  padding: .375rem 0;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-left: 0;
  padding-right: 0;
}

.form-control-sm {
  border-radius: .2rem;
  height: calc(1.5em + .5rem + 2px);
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
}

.form-control-lg {
  border-radius: .3rem;
  height: calc(1.5em + 1rem + 2px);
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

select.form-control[size], select.form-control[multiple], textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  margin-top: .25rem;
  display: block;
}

.form-row {
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  display: flex;
}

.form-row > .col, .form-row > [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.form-check {
  padding-left: 1.25rem;
  display: block;
  position: relative;
}

.form-check-input {
  margin-top: .3rem;
  margin-left: -1.25rem;
  position: absolute;
}

.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #666;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  align-items: center;
  margin-right: .75rem;
  padding-left: 0;
  display: inline-flex;
}

.form-check-inline .form-check-input {
  margin-top: 0;
  margin-left: 0;
  margin-right: .3125rem;
  position: static;
}

.valid-feedback {
  color: #007bff;
  width: 100%;
  margin-top: .25rem;
  font-size: 90%;
  display: none;
}

.valid-tooltip {
  z-index: 5;
  color: #fff;
  background-color: #007bffe6;
  border-radius: .25rem;
  max-width: 100%;
  margin-top: .1rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  display: none;
  position: absolute;
  top: 100%;
}

.was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip, .is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23007bff' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right calc(.375em + .1875rem) center;
  background-repeat: no-repeat;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
  border-color: #007bff;
  padding-right: calc(1.5em + .75rem);
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 .2rem #007bff40;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  background-position: right calc(.375em + .1875rem) top calc(.375em + .1875rem);
  padding-right: calc(1.5em + .75rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center / 8px 10px no-repeat, #f8f9fa url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23007bff' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") right 1.75rem center / calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;
  border-color: #007bff;
  padding-right: calc(.75em + 2.3125rem);
}

.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 .2rem #007bff40;
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #007bff;
}

.was-validated .form-check-input:valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, .form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #007bff;
}

.was-validated .custom-control-input:valid ~ .custom-control-label:before, .custom-control-input.is-valid ~ .custom-control-label:before {
  border-color: #007bff;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label:before, .custom-control-input.is-valid:checked ~ .custom-control-label:before {
  background-color: #3395ff;
  border-color: #3395ff;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label:before, .custom-control-input.is-valid:focus ~ .custom-control-label:before {
  box-shadow: 0 0 0 .2rem #007bff40;
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label:before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label:before, .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #007bff;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #007bff;
  box-shadow: 0 0 0 .2rem #007bff40;
}

.invalid-feedback {
  color: #f9423a;
  width: 100%;
  margin-top: .25rem;
  font-size: 90%;
  display: none;
}

.invalid-tooltip {
  z-index: 5;
  color: #fff;
  background-color: #f9423ae6;
  border-radius: .25rem;
  max-width: 100%;
  margin-top: .1rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  display: none;
  position: absolute;
  top: 100%;
}

.was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip, .is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23F9423A' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F9423A' stroke='none'/%3e%3c/svg%3e");
  background-position: right calc(.375em + .1875rem) center;
  background-repeat: no-repeat;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
  border-color: #f9423a;
  padding-right: calc(1.5em + .75rem);
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #f9423a;
  box-shadow: 0 0 0 .2rem #f9423a40;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  background-position: right calc(.375em + .1875rem) top calc(.375em + .1875rem);
  padding-right: calc(1.5em + .75rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center / 8px 10px no-repeat, #f8f9fa url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23F9423A' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23F9423A' stroke='none'/%3e%3c/svg%3e") right 1.75rem center / calc(.75em + .375rem) calc(.75em + .375rem) no-repeat;
  border-color: #f9423a;
  padding-right: calc(.75em + 2.3125rem);
}

.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #f9423a;
  box-shadow: 0 0 0 .2rem #f9423a40;
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #f9423a;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #f9423a;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label:before, .custom-control-input.is-invalid ~ .custom-control-label:before {
  border-color: #f9423a;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label:before, .custom-control-input.is-invalid:checked ~ .custom-control-label:before {
  background-color: #fb716b;
  border-color: #fb716b;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label:before, .custom-control-input.is-invalid:focus ~ .custom-control-label:before {
  box-shadow: 0 0 0 .2rem #f9423a40;
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label:before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label:before, .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #f9423a;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #f9423a;
  box-shadow: 0 0 0 .2rem #f9423a40;
}

.form-inline {
  flex-flow: wrap;
  align-items: center;
  display: flex;
}

.form-inline .form-check {
  width: 100%;
}

@media (width >= 576px) {
  .form-inline label {
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    display: flex;
  }

  .form-inline .form-group {
    flex-flow: wrap;
    flex: none;
    align-items: center;
    margin-bottom: 0;
    display: flex;
  }

  .form-inline .form-control {
    vertical-align: middle;
    width: auto;
    display: inline-block;
  }

  .form-inline .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .input-group, .form-inline .custom-select {
    width: auto;
  }

  .form-inline .form-check {
    justify-content: center;
    align-items: center;
    width: auto;
    padding-left: 0;
    display: flex;
  }

  .form-inline .form-check-input {
    flex-shrink: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: .25rem;
    position: relative;
  }

  .form-inline .custom-control {
    justify-content: center;
    align-items: center;
  }

  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  color: #212529;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: .25rem;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem #28a74540;
}

.btn.disabled, .btn:disabled {
  opacity: .65;
}

a.btn.disabled, fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-primary:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
  box-shadow: 0 0 0 .2rem #48b46180;
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #48b46180;
}

.btn-secondary {
  color: #fff;
  background-color: #666;
  border-color: #666;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #535353;
  border-color: #4d4d4d;
}

.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #535353;
  border-color: #4d4d4d;
  box-shadow: 0 0 0 .2rem #7d7d7d80;
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #666;
  border-color: #666;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #4d4d4d;
  border-color: #464646;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #7d7d7d80;
}

.btn-success {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-success:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  box-shadow: 0 0 0 .2rem #268fff80;
}

.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #268fff80;
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 .2rem #3ab0c380;
}

.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #3ab0c380;
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 .2rem #deaa0c80;
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #deaa0c80;
}

.btn-danger {
  color: #fff;
  background-color: #f9423a;
  border-color: #f9423a;
}

.btn-danger:hover {
  color: #fff;
  background-color: #f81e15;
  border-color: #f71309;
}

.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #f81e15;
  border-color: #f71309;
  box-shadow: 0 0 0 .2rem #fa5e5880;
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #f9423a;
  border-color: #f9423a;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #f71309;
  border-color: #ec1107;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #fa5e5880;
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 .2rem #d8d9db80;
}

.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #d8d9db80;
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 .2rem #52585d80;
}

.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #52585d80;
}

.btn-outline-primary {
  color: #28a745;
  border-color: #28a745;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 .2rem #28a74580;
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #28a745;
  background-color: #0000;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #28a74580;
}

.btn-outline-secondary {
  color: #666;
  border-color: #666;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #666;
  border-color: #666;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 .2rem #66666680;
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #666;
  background-color: #0000;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #666;
  border-color: #666;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #66666680;
}

.btn-outline-success {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 .2rem #007bff80;
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #007bff;
  background-color: #0000;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #007bff80;
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 .2rem #17a2b880;
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: #0000;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #17a2b880;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 .2rem #ffc10780;
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: #0000;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #ffc10780;
}

.btn-outline-danger {
  color: #f9423a;
  border-color: #f9423a;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #f9423a;
  border-color: #f9423a;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 .2rem #f9423a80;
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #f9423a;
  background-color: #0000;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #f9423a;
  border-color: #f9423a;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #f9423a80;
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 .2rem #f8f9fa80;
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: #0000;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #f8f9fa80;
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 .2rem #343a4080;
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: #0000;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 .2rem #343a4080;
}

.btn-link {
  color: #28a745;
  font-weight: 400;
  text-decoration: none;
}

.btn-link:hover {
  color: #19692c;
  text-decoration: underline;
}

.btn-link:focus, .btn-link.focus {
  box-shadow: none;
  text-decoration: underline;
}

.btn-link:disabled, .btn-link.disabled {
  color: #666;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  border-radius: .3rem;
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.btn-sm, .btn-group-sm > .btn {
  border-radius: .2rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
}

.btn-block {
  width: 100%;
  display: block;
}

.btn-block + .btn-block {
  margin-top: .5rem;
}

input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
  width: 100%;
}

.fade {
  transition: opacity .15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  transition: height .35s;
  position: relative;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup, .dropright, .dropdown, .dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle:after {
  vertical-align: .255em;
  content: "";
  border: .3em solid #0000;
  border-top-color: currentColor;
  border-bottom: 0;
  margin-left: .255em;
  display: inline-block;
}

.dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropdown-menu {
  z-index: 1000;
  float: left;
  color: #212529;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #00000026;
  border-radius: .25rem;
  min-width: 10rem;
  margin: .125rem 0 0;
  padding: .5rem 0;
  font-size: 1rem;
  list-style: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
}

.dropdown-menu-left {
  left: 0;
  right: auto;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
}

@media (width >= 576px) {
  .dropdown-menu-sm-left {
    left: 0;
    right: auto;
  }

  .dropdown-menu-sm-right {
    left: auto;
    right: 0;
  }
}

@media (width >= 768px) {
  .dropdown-menu-md-left {
    left: 0;
    right: auto;
  }

  .dropdown-menu-md-right {
    left: auto;
    right: 0;
  }
}

@media (width >= 992px) {
  .dropdown-menu-lg-left {
    left: 0;
    right: auto;
  }

  .dropdown-menu-lg-right {
    left: auto;
    right: 0;
  }
}

@media (width >= 1200px) {
  .dropdown-menu-xl-left {
    left: 0;
    right: auto;
  }

  .dropdown-menu-xl-right {
    left: auto;
    right: 0;
  }
}

.dropup .dropdown-menu {
  margin-top: 0;
  margin-bottom: .125rem;
  top: auto;
  bottom: 100%;
}

.dropup .dropdown-toggle:after {
  vertical-align: .255em;
  content: "";
  border: .3em solid #0000;
  border-top: 0;
  border-bottom-color: currentColor;
  margin-left: .255em;
  display: inline-block;
}

.dropup .dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  margin-top: 0;
  margin-left: .125rem;
  top: 0;
  left: 100%;
  right: auto;
}

.dropright .dropdown-toggle:after {
  vertical-align: .255em;
  content: "";
  border: .3em solid #0000;
  border-left-color: currentColor;
  border-right: 0;
  margin-left: .255em;
  display: inline-block;
}

.dropright .dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropright .dropdown-toggle:after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  margin-top: 0;
  margin-right: .125rem;
  top: 0;
  left: auto;
  right: 100%;
}

.dropleft .dropdown-toggle:after {
  vertical-align: .255em;
  content: "";
  margin-left: .255em;
  display: none;
}

.dropleft .dropdown-toggle:before {
  vertical-align: .255em;
  content: "";
  border-top: .3em solid #0000;
  border-bottom: .3em solid #0000;
  border-right: .3em solid;
  margin-right: .255em;
  display: inline-block;
}

.dropleft .dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropleft .dropdown-toggle:before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  bottom: auto;
  right: auto;
}

.dropdown-divider {
  border-top: 1px solid #e9ecef;
  height: 0;
  margin: .5rem 0;
  overflow: hidden;
}

.dropdown-item {
  clear: both;
  color: #212529;
  width: 100%;
  text-align: inherit;
  white-space: nowrap;
  background-color: #0000;
  border: 0;
  padding: .25rem 1.5rem;
  font-weight: 400;
  display: block;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  background-color: #f8f9fa;
  text-decoration: none;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  background-color: #28a745;
  text-decoration: none;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #666;
  pointer-events: none;
  background-color: #0000;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  color: #666;
  white-space: nowrap;
  margin-bottom: 0;
  padding: .5rem 1.5rem;
  font-size: .875rem;
  display: block;
}

.dropdown-item-text {
  color: #212529;
  padding: .25rem 1.5rem;
  display: block;
}

.btn-group, .btn-group-vertical {
  vertical-align: middle;
  display: inline-flex;
  position: relative;
}

.btn-group > .btn, .btn-group-vertical > .btn {
  flex: auto;
  position: relative;
}

.btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child), .btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child), .btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-left: .5625rem;
  padding-right: .5625rem;
}

.dropdown-toggle-split:after, .dropup .dropdown-toggle-split:after, .dropright .dropdown-toggle-split:after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split:before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-left: .375rem;
  padding-right: .375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-left: .75rem;
  padding-right: .75rem;
}

.btn-group-vertical {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn, .btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"], .btn-group-toggle > .btn input[type="checkbox"], .btn-group-toggle > .btn-group > .btn input[type="radio"], .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
  position: absolute;
}

.input-group {
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.input-group > .form-control, .input-group > .form-control-plaintext, .input-group > .custom-select, .input-group > .custom-file {
  flex: 1;
  min-width: 0;
  margin-bottom: 0;
  position: relative;
}

.input-group > .form-control + .form-control, .input-group > .form-control + .custom-select, .input-group > .form-control + .custom-file, .input-group > .form-control-plaintext + .form-control, .input-group > .form-control-plaintext + .custom-select, .input-group > .form-control-plaintext + .custom-file, .input-group > .custom-select + .form-control, .input-group > .custom-select + .custom-select, .input-group > .custom-select + .custom-file, .input-group > .custom-file + .form-control, .input-group > .custom-file + .custom-select, .input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus, .input-group > .custom-select:focus, .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:last-child), .input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:first-child), .input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  align-items: center;
  display: flex;
}

.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label:after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend, .input-group-append {
  display: flex;
}

.input-group-prepend .btn, .input-group-append .btn {
  z-index: 2;
  position: relative;
}

.input-group-prepend .btn:focus, .input-group-append .btn:focus {
  z-index: 3;
}

.input-group-prepend .btn + .btn, .input-group-prepend .btn + .input-group-text, .input-group-prepend .input-group-text + .input-group-text, .input-group-prepend .input-group-text + .btn, .input-group-append .btn + .btn, .input-group-append .btn + .input-group-text, .input-group-append .input-group-text + .input-group-text, .input-group-append .input-group-text + .btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  align-items: center;
  margin-bottom: 0;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
}

.input-group-text input[type="radio"], .input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea), .input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control, .input-group-lg > .custom-select, .input-group-lg > .input-group-prepend > .input-group-text, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-append > .btn {
  border-radius: .3rem;
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.input-group-sm > .form-control:not(textarea), .input-group-sm > .custom-select {
  height: calc(1.5em + .5rem + 2px);
}

.input-group-sm > .form-control, .input-group-sm > .custom-select, .input-group-sm > .input-group-prepend > .input-group-text, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-append > .btn {
  border-radius: .2rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
}

.input-group-lg > .custom-select, .input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text, .input-group > .input-group-append:not(:last-child) > .btn, .input-group > .input-group-append:not(:last-child) > .input-group-text, .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  min-height: 1.5rem;
  padding-left: 1.5rem;
  display: block;
  position: relative;
}

.custom-control-inline {
  margin-right: 1rem;
  display: inline-flex;
}

.custom-control-input {
  z-index: -1;
  opacity: 0;
  width: 1rem;
  height: 1.25rem;
  position: absolute;
  left: 0;
}

.custom-control-input:checked ~ .custom-control-label:before {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.custom-control-input:focus ~ .custom-control-label:before {
  box-shadow: 0 0 0 .2rem #28a74540;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label:before {
  border-color: #71dd8a;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label:before {
  color: #fff;
  background-color: #9be7ac;
  border-color: #9be7ac;
}

.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #666;
}

.custom-control-input[disabled] ~ .custom-control-label:before, .custom-control-input:disabled ~ .custom-control-label:before {
  background-color: #e9ecef;
}

.custom-control-label {
  vertical-align: top;
  margin-bottom: 0;
  position: relative;
}

.custom-control-label:before {
  pointer-events: none;
  content: "";
  background-color: #f8f9fa;
  border: 1px solid #adb5bd;
  width: 1rem;
  height: 1rem;
  display: block;
  position: absolute;
  top: .25rem;
  left: -1.5rem;
}

.custom-control-label:after {
  content: "";
  background: 50% / 50% 50% no-repeat;
  width: 1rem;
  height: 1rem;
  display: block;
  position: absolute;
  top: .25rem;
  left: -1.5rem;
}

.custom-checkbox .custom-control-label:before {
  border-radius: .25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label:before {
  background-color: #28a745;
  border-color: #28a745;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label:before, .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label:before {
  background-color: #28a74580;
}

.custom-radio .custom-control-label:before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label:before {
  background-color: #28a74580;
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label:before {
  pointer-events: all;
  border-radius: .5rem;
  width: 1.75rem;
  left: -2.25rem;
}

.custom-switch .custom-control-label:after {
  background-color: #adb5bd;
  border-radius: .5rem;
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  top: calc(.25rem + 2px);
  left: calc(2px - 2.25rem);
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label:after {
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label:after {
  background-color: #f8f9fa;
  transform: translateX(.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label:before {
  background-color: #28a74580;
}

.custom-select {
  color: #495057;
  vertical-align: middle;
  appearance: none;
  background: #f8f9fa url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center / 8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem 1.75rem .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  display: inline-block;
}

.custom-select:focus {
  border-color: #71dd8a;
  outline: 0;
  box-shadow: 0 0 0 .2rem #28a74540;
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #f8f9fa;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  background-image: none;
  height: auto;
  padding-right: .75rem;
}

.custom-select:disabled {
  color: #666;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select:-moz-focusring {
  color: #0000;
  text-shadow: 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + .5rem + 2px);
  padding-top: .25rem;
  padding-bottom: .25rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  margin-bottom: 0;
  display: inline-block;
  position: relative;
}

.custom-file-input {
  z-index: 2;
  opacity: 0;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  margin: 0;
  position: relative;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #71dd8a;
  box-shadow: 0 0 0 .2rem #28a74540;
}

.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label:after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]:after {
  content: attr(data-browse);
}

.custom-file-label {
  z-index: 1;
  color: #495057;
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-weight: 400;
  line-height: 1.5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.custom-file-label:after {
  z-index: 3;
  color: #495057;
  content: "Browse";
  border-left: inherit;
  background-color: #e9ecef;
  border-radius: 0 .25rem .25rem 0;
  height: calc(1.5em + .75rem);
  padding: .375rem .75rem;
  line-height: 1.5;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.custom-range {
  appearance: none;
  background-color: #0000;
  width: 100%;
  height: 1.4rem;
  padding: 0;
}

.custom-range:focus {
  outline: none;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem #28a74540;
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem #28a74540;
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem #28a74540;
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  appearance: none;
  background-color: #28a745;
  border: 0;
  border-radius: 1rem;
  width: 1rem;
  height: 1rem;
  margin-top: -.25rem;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #9be7ac;
}

.custom-range::-webkit-slider-runnable-track {
  color: #0000;
  cursor: pointer;
  background-color: #dadada;
  border-color: #0000;
  border-radius: 1rem;
  width: 100%;
  height: .5rem;
}

.custom-range::-moz-range-thumb {
  appearance: none;
  background-color: #28a745;
  border: 0;
  border-radius: 1rem;
  width: 1rem;
  height: 1rem;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #9be7ac;
}

.custom-range::-moz-range-track {
  color: #0000;
  cursor: pointer;
  background-color: #dadada;
  border-color: #0000;
  border-radius: 1rem;
  width: 100%;
  height: .5rem;
}

.custom-range::-ms-thumb {
  appearance: none;
  background-color: #28a745;
  border: 0;
  border-radius: 1rem;
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-left: .2rem;
  margin-right: .2rem;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #9be7ac;
}

.custom-range::-ms-track {
  color: #0000;
  cursor: pointer;
  background-color: #0000;
  border-width: .5rem;
  border-color: #0000;
  width: 100%;
  height: .5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dadada;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  background-color: #dadada;
  border-radius: 1rem;
  margin-right: 15px;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label:before, .custom-file-label, .custom-select {
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label:before, .custom-file-label, .custom-select {
    transition: none;
  }
}

.nav {
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
}

.nav-link {
  padding: .5rem 1rem;
  display: block;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #666;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dadada;
}

.nav-tabs .nav-item {
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: 1px solid #0000;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dadada;
}

.nav-tabs .nav-link.disabled {
  color: #666;
  background-color: #0000;
  border-color: #0000;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dadada #dadada #fff;
}

.nav-tabs .dropdown-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: -1px;
}

.nav-pills .nav-link {
  border-radius: .25rem;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #28a745;
}

.nav-fill .nav-item {
  text-align: center;
  flex: auto;
}

.nav-justified .nav-item {
  text-align: center;
  flex-grow: 1;
  flex-basis: 0;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
  position: relative;
}

.navbar .container, .navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navbar-brand {
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
  margin-right: 1rem;
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  display: inline-block;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
}

.navbar-nav .nav-link {
  padding-left: 0;
  padding-right: 0;
}

.navbar-nav .dropdown-menu {
  float: none;
  position: static;
}

.navbar-text {
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: inline-block;
}

.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}

.navbar-toggler {
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: .25rem;
  padding: .25rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  vertical-align: middle;
  content: "";
  background: center / 100% 100% no-repeat;
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
}

@media (width <= 575.98px) {
  .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (width >= 576px) {
  .navbar-expand-sm {
    flex-flow: row;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }

  .navbar-expand-sm .navbar-collapse {
    flex-basis: auto;
    display: flex !important;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (width <= 767.98px) {
  .navbar-expand-md > .container, .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (width >= 768px) {
  .navbar-expand-md {
    flex-flow: row;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .navbar-expand-md > .container, .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-collapse {
    flex-basis: auto;
    display: flex !important;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (width <= 991.98px) {
  .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (width >= 992px) {
  .navbar-expand-lg {
    flex-flow: row;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-collapse {
    flex-basis: auto;
    display: flex !important;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (width <= 1199.98px) {
  .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (width >= 1200px) {
  .navbar-expand-xl {
    flex-flow: row;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }

  .navbar-expand-xl .navbar-collapse {
    flex-basis: auto;
    display: flex !important;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  flex-flow: row;
  justify-content: flex-start;
}

.navbar-expand > .container, .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  padding-left: 0;
  padding-right: 0;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-left: .5rem;
  padding-right: .5rem;
}

.navbar-expand > .container, .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  flex-basis: auto;
  display: flex !important;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand, .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: #000000e6;
}

.navbar-light .navbar-nav .nav-link {
  color: #00000080;
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: #000000b3;
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: #0000004d;
}

.navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
  color: #000000e6;
}

.navbar-light .navbar-toggler {
  color: #00000080;
  border-color: #0000001a;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: #00000080;
}

.navbar-light .navbar-text a, .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: #000000e6;
}

.navbar-dark .navbar-brand, .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: #ffffff80;
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: #ffffffbf;
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: #ffffff40;
}

.navbar-dark .navbar-nav .show > .nav-link, .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: #ffffff80;
  border-color: #ffffff1a;
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: #ffffff80;
}

.navbar-dark .navbar-text a, .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #00000020;
  border-radius: .25rem;
  flex-direction: column;
  min-width: 0;
  display: flex;
  position: relative;
}

.card > hr {
  margin-left: 0;
  margin-right: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.card-body {
  flex: auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: .75rem;
}

.card-subtitle {
  margin-top: -.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  background-color: #00000008;
  border-bottom: 1px solid #00000020;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
}

.card-header:first-child {
  border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  background-color: #00000008;
  border-top: 1px solid #00000020;
  padding: .75rem 1.25rem;
}

.card-footer:last-child {
  border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px);
}

.card-header-tabs {
  border-bottom: 0;
  margin-bottom: -.75rem;
  margin-left: -.625rem;
  margin-right: -.625rem;
}

.card-header-pills {
  margin-left: -.625rem;
  margin-right: -.625rem;
}

.card-img-overlay {
  padding: 1.25rem;
  position: absolute;
  inset: 0;
}

.card-img, .card-img-top, .card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img, .card-img-top {
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
}

.card-img, .card-img-bottom {
  border-bottom-right-radius: calc(.25rem - 1px);
  border-bottom-left-radius: calc(.25rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (width >= 576px) {
  .card-deck {
    flex-flow: wrap;
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
  }

  .card-deck .card {
    flex: 1 0;
    margin-bottom: 0;
    margin-left: 15px;
    margin-right: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (width >= 576px) {
  .card-group {
    flex-flow: wrap;
    display: flex;
  }

  .card-group > .card {
    flex: 1 0;
    margin-bottom: 0;
  }

  .card-group > .card + .card {
    border-left: 0;
    margin-left: 0;
  }

  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-img-top, .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-img-bottom, .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-img-top, .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-img-bottom, .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: .75rem;
}

@media (width >= 576px) {
  .card-columns {
    column-count: 3;
    orphans: 1;
    widows: 1;
    column-gap: 1.25rem;
  }

  .card-columns .card {
    width: 100%;
    display: inline-block;
  }
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.badge {
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25rem;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}

a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  border-radius: 10rem;
  padding-left: .6em;
  padding-right: .6em;
}

.badge-primary {
  color: #fff;
  background-color: #28a745;
}

a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #1e7e34;
}

a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem #28a74580;
}

.badge-secondary {
  color: #fff;
  background-color: #666;
}

a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: #4d4d4d;
}

a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem #66666680;
}

.badge-success {
  color: #fff;
  background-color: #007bff;
}

a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #0062cc;
}

a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem #007bff80;
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}

a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem #17a2b880;
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}

a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem #ffc10780;
}

.badge-danger {
  color: #fff;
  background-color: #f9423a;
}

a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #f71309;
}

a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem #f9423a80;
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}

a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem #f8f9fa80;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}

a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 .2rem #343a4080;
}

.jumbotron {
  background-color: #e9ecef;
  border-radius: .3rem;
  margin-bottom: 2rem;
  padding: 2rem 1rem;
}

@media (width >= 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.alert {
  border: 1px solid #0000;
  border-radius: .25rem;
  margin-bottom: 1rem;
  padding: .75rem 1.25rem;
  position: relative;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  color: inherit;
  padding: .75rem 1.25rem;
  position: absolute;
  top: 0;
  right: 0;
}

.alert-primary {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-primary hr {
  border-top-color: #b1dfbb;
}

.alert-primary .alert-link {
  color: #0b2e13;
}

.alert-secondary {
  color: #353535;
  background-color: #e0e0e0;
  border-color: #d4d4d4;
}

.alert-secondary hr {
  border-top-color: #c7c7c7;
}

.alert-secondary .alert-link {
  color: #1c1c1c;
}

.alert-success {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-success hr {
  border-top-color: #9fcdff;
}

.alert-success .alert-link {
  color: #002752;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #81221e;
  background-color: #fed9d8;
  border-color: #fdcac8;
}

.alert-danger hr {
  border-top-color: #fcb2af;
}

.alert-danger .alert-link {
  color: #581714;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

.media {
  align-items: flex-start;
  display: flex;
}

.media-body {
  flex: 1;
}

.list-group {
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.list-group-item-action {
  color: #495057;
  width: 100%;
  text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  background-color: #f8f9fa;
  text-decoration: none;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  background-color: #fff;
  border: 1px solid #00000020;
  padding: .75rem 1.25rem;
  display: block;
  position: relative;
}

.list-group-item:first-child {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.list-group-item:last-child {
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: #666;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  border-top-width: 1px;
  margin-top: -1px;
}

.list-group-horizontal {
  flex-direction: row;
}

.list-group-horizontal .list-group-item:first-child {
  border-top-right-radius: 0;
  border-bottom-left-radius: .25rem;
}

.list-group-horizontal .list-group-item:last-child {
  border-top-right-radius: .25rem;
  border-bottom-left-radius: 0;
}

.list-group-horizontal .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal .list-group-item + .list-group-item.active {
  border-left-width: 1px;
  margin-left: -1px;
}

@media (width >= 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }

  .list-group-horizontal-sm .list-group-item:first-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: .25rem;
  }

  .list-group-horizontal-sm .list-group-item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-sm .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-sm .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-sm .list-group-item + .list-group-item.active {
    border-left-width: 1px;
    margin-left: -1px;
  }
}

@media (width >= 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }

  .list-group-horizontal-md .list-group-item:first-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: .25rem;
  }

  .list-group-horizontal-md .list-group-item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-md .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-md .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-md .list-group-item + .list-group-item.active {
    border-left-width: 1px;
    margin-left: -1px;
  }
}

@media (width >= 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }

  .list-group-horizontal-lg .list-group-item:first-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: .25rem;
  }

  .list-group-horizontal-lg .list-group-item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-lg .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-lg .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-lg .list-group-item + .list-group-item.active {
    border-left-width: 1px;
    margin-left: -1px;
  }
}

@media (width >= 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }

  .list-group-horizontal-xl .list-group-item:first-child {
    border-top-right-radius: 0;
    border-bottom-left-radius: .25rem;
  }

  .list-group-horizontal-xl .list-group-item:last-child {
    border-top-right-radius: .25rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-xl .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-xl .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-xl .list-group-item + .list-group-item.active {
    border-left-width: 1px;
    margin-left: -1px;
  }
}

.list-group-flush .list-group-item {
  border-left-width: 0;
  border-right-width: 0;
  border-radius: 0;
}

.list-group-flush .list-group-item:first-child {
  border-top-width: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #155724;
  background-color: #c3e6cb;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.list-group-item-secondary {
  color: #353535;
  background-color: #d4d4d4;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #353535;
  background-color: #c7c7c7;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #353535;
  border-color: #353535;
}

.list-group-item-success {
  color: #004085;
  background-color: #b8daff;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #81221e;
  background-color: #fdcac8;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #81221e;
  background-color: #fcb2af;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #81221e;
  border-color: #81221e;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  color: #000;
  text-shadow: 0 1px #fff;
  opacity: .5;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: .75;
}

button.close {
  appearance: none;
  background-color: #0000;
  border: 0;
  padding: 0;
}

a.close.disabled {
  pointer-events: none;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow: hidden auto;
}

.modal {
  z-index: 1050;
  outline: 0;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.modal-dialog {
  pointer-events: none;
  width: auto;
  margin: .5rem;
  position: relative;
}

.modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  max-height: calc(100% - 1rem);
  display: flex;
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header, .modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  align-items: center;
  min-height: calc(100% - 1rem);
  display: flex;
}

.modal-dialog-centered:before {
  content: "";
  height: calc(100vh - 1rem);
  display: block;
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable:before {
  content: none;
}

.modal-content {
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #0003;
  border-radius: .3rem;
  outline: 0;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
}

.modal-backdrop {
  z-index: 1040;
  background-color: #000;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: .5;
}

.modal-header {
  border-bottom: 1px solid #dadada;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px);
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  display: flex;
}

.modal-header .close {
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  flex: auto;
  padding: 1rem;
  position: relative;
}

.modal-footer {
  border-top: 1px solid #dadada;
  border-bottom-right-radius: calc(.3rem - 1px);
  border-bottom-left-radius: calc(.3rem - 1px);
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding: .75rem;
  display: flex;
}

.modal-footer > * {
  margin: .25rem;
}

.modal-scrollbar-measure {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -9999px;
  overflow: scroll;
}

@media (width >= 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered:before {
    height: calc(100vh - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (width >= 992px) {
  .modal-lg, .modal-xl {
    max-width: 800px;
  }
}

@media (width >= 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.spinner-border {
  vertical-align: text-bottom;
  border: .25em solid;
  border-right-color: #0000;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  animation: .75s linear infinite spinner-border;
  display: inline-block;
}

.spinner-border-sm {
  border-width: .2em;
  width: 1rem;
  height: 1rem;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
  }
}

.spinner-grow {
  vertical-align: text-bottom;
  opacity: 0;
  background-color: currentColor;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  animation: .75s linear infinite spinner-grow;
  display: inline-block;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #28a745 !important;
}

a.bg-primary:hover, a.bg-primary:focus, button.bg-primary:hover, button.bg-primary:focus {
  background-color: #1e7e34 !important;
}

.bg-secondary {
  background-color: #666 !important;
}

a.bg-secondary:hover, a.bg-secondary:focus, button.bg-secondary:hover, button.bg-secondary:focus {
  background-color: #4d4d4d !important;
}

.bg-success {
  background-color: #007bff !important;
}

a.bg-success:hover, a.bg-success:focus, button.bg-success:hover, button.bg-success:focus {
  background-color: #0062cc !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus, button.bg-info:hover, button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus, button.bg-warning:hover, button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #f9423a !important;
}

a.bg-danger:hover, a.bg-danger:focus, button.bg-danger:hover, button.bg-danger:focus {
  background-color: #f71309 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus, button.bg-light:hover, button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus, button.bg-dark:hover, button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: #0000 !important;
}

.border {
  border: 1px solid #dadada !important;
}

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

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

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

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

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #28a745 !important;
}

.border-secondary {
  border-color: #666 !important;
}

.border-success {
  border-color: #007bff !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #f9423a !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: .2rem !important;
}

.rounded {
  border-radius: .25rem !important;
}

.rounded-top {
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
}

.rounded-right {
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: .25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important;
}

.rounded-left {
  border-top-left-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important;
}

.rounded-lg {
  border-radius: .3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

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

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

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

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

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

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

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

.d-inline-flex {
  display: inline-flex !important;
}

@media (width >= 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

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

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

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (width >= 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

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

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

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (width >= 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

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

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

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (width >= 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

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

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

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

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

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

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.embed-responsive {
  width: 100%;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.embed-responsive:before {
  content: "";
  display: block;
}

.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.embed-responsive-21by9:before {
  padding-top: 42.8571%;
}

.embed-responsive-16by9:before {
  padding-top: 56.25%;
}

.embed-responsive-4by3:before {
  padding-top: 75%;
}

.embed-responsive-1by1:before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

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

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

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

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

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

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (width >= 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (width >= 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (width >= 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (width >= 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

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

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

.float-none {
  float: none !important;
}

@media (width >= 576px) {
  .float-sm-left {
    float: left !important;
  }

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

  .float-sm-none {
    float: none !important;
  }
}

@media (width >= 768px) {
  .float-md-left {
    float: left !important;
  }

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

  .float-md-none {
    float: none !important;
  }
}

@media (width >= 992px) {
  .float-lg-left {
    float: left !important;
  }

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

  .float-lg-none {
    float: none !important;
  }
}

@media (width >= 1200px) {
  .float-xl-left {
    float: left !important;
  }

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

  .float-xl-none {
    float: none !important;
  }
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  z-index: 1030;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.fixed-bottom {
  z-index: 1030;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

@supports (position: sticky) {
  .sticky-top {
    z-index: 1020;
    position: sticky;
    top: 0;
  }
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  white-space: normal;
  width: auto;
  height: auto;
  position: static;
  overflow: visible;
}

.shadow-sm {
  box-shadow: 0 .125rem .25rem #00000013 !important;
}

.shadow {
  box-shadow: 0 .5rem 1rem #00000026 !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem #0000002d !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

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

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.stretched-link:after {
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: #0000;
  position: absolute;
  inset: 0;
}

.m-0 {
  margin: 0 !important;
}

.mt-0, .my-0 {
  margin-top: 0 !important;
}

.mr-0, .mx-0 {
  margin-right: 0 !important;
}

.mb-0, .my-0 {
  margin-bottom: 0 !important;
}

.ml-0, .mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: .25rem !important;
}

.mt-1, .my-1 {
  margin-top: .25rem !important;
}

.mr-1, .mx-1 {
  margin-right: .25rem !important;
}

.mb-1, .my-1 {
  margin-bottom: .25rem !important;
}

.ml-1, .mx-1 {
  margin-left: .25rem !important;
}

.m-2 {
  margin: .5rem !important;
}

.mt-2, .my-2 {
  margin-top: .5rem !important;
}

.mr-2, .mx-2 {
  margin-right: .5rem !important;
}

.mb-2, .my-2 {
  margin-bottom: .5rem !important;
}

.ml-2, .mx-2 {
  margin-left: .5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3, .my-3 {
  margin-top: 1rem !important;
}

.mr-3, .mx-3 {
  margin-right: 1rem !important;
}

.mb-3, .my-3 {
  margin-bottom: 1rem !important;
}

.ml-3, .mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4, .my-4 {
  margin-top: 1.5rem !important;
}

.mr-4, .mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4, .my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4, .mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5, .my-5 {
  margin-top: 3rem !important;
}

.mr-5, .mx-5 {
  margin-right: 3rem !important;
}

.mb-5, .my-5 {
  margin-bottom: 3rem !important;
}

.ml-5, .mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0, .py-0 {
  padding-top: 0 !important;
}

.pr-0, .px-0 {
  padding-right: 0 !important;
}

.pb-0, .py-0 {
  padding-bottom: 0 !important;
}

.pl-0, .px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: .25rem !important;
}

.pt-1, .py-1 {
  padding-top: .25rem !important;
}

.pr-1, .px-1 {
  padding-right: .25rem !important;
}

.pb-1, .py-1 {
  padding-bottom: .25rem !important;
}

.pl-1, .px-1 {
  padding-left: .25rem !important;
}

.p-2 {
  padding: .5rem !important;
}

.pt-2, .py-2 {
  padding-top: .5rem !important;
}

.pr-2, .px-2 {
  padding-right: .5rem !important;
}

.pb-2, .py-2 {
  padding-bottom: .5rem !important;
}

.pl-2, .px-2 {
  padding-left: .5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3, .py-3 {
  padding-top: 1rem !important;
}

.pr-3, .px-3 {
  padding-right: 1rem !important;
}

.pb-3, .py-3 {
  padding-bottom: 1rem !important;
}

.pl-3, .px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4, .py-4 {
  padding-top: 1.5rem !important;
}

.pr-4, .px-4 {
  padding-right: 1.5rem !important;
}

.pb-4, .py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4, .px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5, .py-5 {
  padding-top: 3rem !important;
}

.pr-5, .px-5 {
  padding-right: 3rem !important;
}

.pb-5, .py-5 {
  padding-bottom: 3rem !important;
}

.pl-5, .px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -.25rem !important;
}

.mt-n1, .my-n1 {
  margin-top: -.25rem !important;
}

.mr-n1, .mx-n1 {
  margin-right: -.25rem !important;
}

.mb-n1, .my-n1 {
  margin-bottom: -.25rem !important;
}

.ml-n1, .mx-n1 {
  margin-left: -.25rem !important;
}

.m-n2 {
  margin: -.5rem !important;
}

.mt-n2, .my-n2 {
  margin-top: -.5rem !important;
}

.mr-n2, .mx-n2 {
  margin-right: -.5rem !important;
}

.mb-n2, .my-n2 {
  margin-bottom: -.5rem !important;
}

.ml-n2, .mx-n2 {
  margin-left: -.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3, .my-n3 {
  margin-top: -1rem !important;
}

.mr-n3, .mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3, .my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3, .mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4, .my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4, .mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4, .my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4, .mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5, .my-n5 {
  margin-top: -3rem !important;
}

.mr-n5, .mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5, .my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5, .mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto, .my-auto {
  margin-top: auto !important;
}

.mr-auto, .mx-auto {
  margin-right: auto !important;
}

.mb-auto, .my-auto {
  margin-bottom: auto !important;
}

.ml-auto, .mx-auto {
  margin-left: auto !important;
}

@media (width >= 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0, .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0, .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0, .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0, .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: .25rem !important;
  }

  .mt-sm-1, .my-sm-1 {
    margin-top: .25rem !important;
  }

  .mr-sm-1, .mx-sm-1 {
    margin-right: .25rem !important;
  }

  .mb-sm-1, .my-sm-1 {
    margin-bottom: .25rem !important;
  }

  .ml-sm-1, .mx-sm-1 {
    margin-left: .25rem !important;
  }

  .m-sm-2 {
    margin: .5rem !important;
  }

  .mt-sm-2, .my-sm-2 {
    margin-top: .5rem !important;
  }

  .mr-sm-2, .mx-sm-2 {
    margin-right: .5rem !important;
  }

  .mb-sm-2, .my-sm-2 {
    margin-bottom: .5rem !important;
  }

  .ml-sm-2, .mx-sm-2 {
    margin-left: .5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3, .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3, .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3, .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3, .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4, .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4, .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4, .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4, .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5, .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5, .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5, .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5, .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0, .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0, .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0, .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0, .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: .25rem !important;
  }

  .pt-sm-1, .py-sm-1 {
    padding-top: .25rem !important;
  }

  .pr-sm-1, .px-sm-1 {
    padding-right: .25rem !important;
  }

  .pb-sm-1, .py-sm-1 {
    padding-bottom: .25rem !important;
  }

  .pl-sm-1, .px-sm-1 {
    padding-left: .25rem !important;
  }

  .p-sm-2 {
    padding: .5rem !important;
  }

  .pt-sm-2, .py-sm-2 {
    padding-top: .5rem !important;
  }

  .pr-sm-2, .px-sm-2 {
    padding-right: .5rem !important;
  }

  .pb-sm-2, .py-sm-2 {
    padding-bottom: .5rem !important;
  }

  .pl-sm-2, .px-sm-2 {
    padding-left: .5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3, .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3, .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3, .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3, .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4, .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4, .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4, .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4, .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5, .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5, .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5, .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5, .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -.25rem !important;
  }

  .mt-sm-n1, .my-sm-n1 {
    margin-top: -.25rem !important;
  }

  .mr-sm-n1, .mx-sm-n1 {
    margin-right: -.25rem !important;
  }

  .mb-sm-n1, .my-sm-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-sm-n1, .mx-sm-n1 {
    margin-left: -.25rem !important;
  }

  .m-sm-n2 {
    margin: -.5rem !important;
  }

  .mt-sm-n2, .my-sm-n2 {
    margin-top: -.5rem !important;
  }

  .mr-sm-n2, .mx-sm-n2 {
    margin-right: -.5rem !important;
  }

  .mb-sm-n2, .my-sm-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-sm-n2, .mx-sm-n2 {
    margin-left: -.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3, .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3, .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3, .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3, .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4, .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4, .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4, .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4, .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5, .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5, .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5, .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5, .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto, .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto, .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto, .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto, .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (width >= 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0, .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0, .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0, .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0, .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: .25rem !important;
  }

  .mt-md-1, .my-md-1 {
    margin-top: .25rem !important;
  }

  .mr-md-1, .mx-md-1 {
    margin-right: .25rem !important;
  }

  .mb-md-1, .my-md-1 {
    margin-bottom: .25rem !important;
  }

  .ml-md-1, .mx-md-1 {
    margin-left: .25rem !important;
  }

  .m-md-2 {
    margin: .5rem !important;
  }

  .mt-md-2, .my-md-2 {
    margin-top: .5rem !important;
  }

  .mr-md-2, .mx-md-2 {
    margin-right: .5rem !important;
  }

  .mb-md-2, .my-md-2 {
    margin-bottom: .5rem !important;
  }

  .ml-md-2, .mx-md-2 {
    margin-left: .5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3, .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3, .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3, .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3, .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4, .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4, .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4, .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4, .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5, .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5, .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5, .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5, .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0, .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0, .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0, .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0, .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: .25rem !important;
  }

  .pt-md-1, .py-md-1 {
    padding-top: .25rem !important;
  }

  .pr-md-1, .px-md-1 {
    padding-right: .25rem !important;
  }

  .pb-md-1, .py-md-1 {
    padding-bottom: .25rem !important;
  }

  .pl-md-1, .px-md-1 {
    padding-left: .25rem !important;
  }

  .p-md-2 {
    padding: .5rem !important;
  }

  .pt-md-2, .py-md-2 {
    padding-top: .5rem !important;
  }

  .pr-md-2, .px-md-2 {
    padding-right: .5rem !important;
  }

  .pb-md-2, .py-md-2 {
    padding-bottom: .5rem !important;
  }

  .pl-md-2, .px-md-2 {
    padding-left: .5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3, .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3, .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3, .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3, .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4, .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4, .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4, .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4, .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5, .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5, .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5, .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5, .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -.25rem !important;
  }

  .mt-md-n1, .my-md-n1 {
    margin-top: -.25rem !important;
  }

  .mr-md-n1, .mx-md-n1 {
    margin-right: -.25rem !important;
  }

  .mb-md-n1, .my-md-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-md-n1, .mx-md-n1 {
    margin-left: -.25rem !important;
  }

  .m-md-n2 {
    margin: -.5rem !important;
  }

  .mt-md-n2, .my-md-n2 {
    margin-top: -.5rem !important;
  }

  .mr-md-n2, .mx-md-n2 {
    margin-right: -.5rem !important;
  }

  .mb-md-n2, .my-md-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-md-n2, .mx-md-n2 {
    margin-left: -.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3, .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3, .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3, .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3, .mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4, .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4, .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4, .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4, .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5, .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5, .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5, .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5, .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto, .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto, .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto, .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto, .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (width >= 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0, .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0, .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0, .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0, .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: .25rem !important;
  }

  .mt-lg-1, .my-lg-1 {
    margin-top: .25rem !important;
  }

  .mr-lg-1, .mx-lg-1 {
    margin-right: .25rem !important;
  }

  .mb-lg-1, .my-lg-1 {
    margin-bottom: .25rem !important;
  }

  .ml-lg-1, .mx-lg-1 {
    margin-left: .25rem !important;
  }

  .m-lg-2 {
    margin: .5rem !important;
  }

  .mt-lg-2, .my-lg-2 {
    margin-top: .5rem !important;
  }

  .mr-lg-2, .mx-lg-2 {
    margin-right: .5rem !important;
  }

  .mb-lg-2, .my-lg-2 {
    margin-bottom: .5rem !important;
  }

  .ml-lg-2, .mx-lg-2 {
    margin-left: .5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3, .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3, .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3, .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3, .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4, .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4, .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4, .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4, .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5, .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5, .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5, .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5, .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0, .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0, .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0, .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0, .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: .25rem !important;
  }

  .pt-lg-1, .py-lg-1 {
    padding-top: .25rem !important;
  }

  .pr-lg-1, .px-lg-1 {
    padding-right: .25rem !important;
  }

  .pb-lg-1, .py-lg-1 {
    padding-bottom: .25rem !important;
  }

  .pl-lg-1, .px-lg-1 {
    padding-left: .25rem !important;
  }

  .p-lg-2 {
    padding: .5rem !important;
  }

  .pt-lg-2, .py-lg-2 {
    padding-top: .5rem !important;
  }

  .pr-lg-2, .px-lg-2 {
    padding-right: .5rem !important;
  }

  .pb-lg-2, .py-lg-2 {
    padding-bottom: .5rem !important;
  }

  .pl-lg-2, .px-lg-2 {
    padding-left: .5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3, .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3, .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3, .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3, .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4, .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4, .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4, .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4, .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5, .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5, .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5, .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5, .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -.25rem !important;
  }

  .mt-lg-n1, .my-lg-n1 {
    margin-top: -.25rem !important;
  }

  .mr-lg-n1, .mx-lg-n1 {
    margin-right: -.25rem !important;
  }

  .mb-lg-n1, .my-lg-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-lg-n1, .mx-lg-n1 {
    margin-left: -.25rem !important;
  }

  .m-lg-n2 {
    margin: -.5rem !important;
  }

  .mt-lg-n2, .my-lg-n2 {
    margin-top: -.5rem !important;
  }

  .mr-lg-n2, .mx-lg-n2 {
    margin-right: -.5rem !important;
  }

  .mb-lg-n2, .my-lg-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-lg-n2, .mx-lg-n2 {
    margin-left: -.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3, .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3, .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3, .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3, .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4, .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4, .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4, .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4, .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5, .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5, .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5, .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5, .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto, .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto, .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto, .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto, .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (width >= 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0, .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0, .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0, .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0, .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: .25rem !important;
  }

  .mt-xl-1, .my-xl-1 {
    margin-top: .25rem !important;
  }

  .mr-xl-1, .mx-xl-1 {
    margin-right: .25rem !important;
  }

  .mb-xl-1, .my-xl-1 {
    margin-bottom: .25rem !important;
  }

  .ml-xl-1, .mx-xl-1 {
    margin-left: .25rem !important;
  }

  .m-xl-2 {
    margin: .5rem !important;
  }

  .mt-xl-2, .my-xl-2 {
    margin-top: .5rem !important;
  }

  .mr-xl-2, .mx-xl-2 {
    margin-right: .5rem !important;
  }

  .mb-xl-2, .my-xl-2 {
    margin-bottom: .5rem !important;
  }

  .ml-xl-2, .mx-xl-2 {
    margin-left: .5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3, .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3, .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3, .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3, .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4, .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4, .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4, .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4, .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5, .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5, .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5, .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5, .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0, .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0, .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0, .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0, .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: .25rem !important;
  }

  .pt-xl-1, .py-xl-1 {
    padding-top: .25rem !important;
  }

  .pr-xl-1, .px-xl-1 {
    padding-right: .25rem !important;
  }

  .pb-xl-1, .py-xl-1 {
    padding-bottom: .25rem !important;
  }

  .pl-xl-1, .px-xl-1 {
    padding-left: .25rem !important;
  }

  .p-xl-2 {
    padding: .5rem !important;
  }

  .pt-xl-2, .py-xl-2 {
    padding-top: .5rem !important;
  }

  .pr-xl-2, .px-xl-2 {
    padding-right: .5rem !important;
  }

  .pb-xl-2, .py-xl-2 {
    padding-bottom: .5rem !important;
  }

  .pl-xl-2, .px-xl-2 {
    padding-left: .5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3, .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3, .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3, .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3, .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4, .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4, .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4, .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4, .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5, .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5, .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5, .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5, .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -.25rem !important;
  }

  .mt-xl-n1, .my-xl-n1 {
    margin-top: -.25rem !important;
  }

  .mr-xl-n1, .mx-xl-n1 {
    margin-right: -.25rem !important;
  }

  .mb-xl-n1, .my-xl-n1 {
    margin-bottom: -.25rem !important;
  }

  .ml-xl-n1, .mx-xl-n1 {
    margin-left: -.25rem !important;
  }

  .m-xl-n2 {
    margin: -.5rem !important;
  }

  .mt-xl-n2, .my-xl-n2 {
    margin-top: -.5rem !important;
  }

  .mr-xl-n2, .mx-xl-n2 {
    margin-right: -.5rem !important;
  }

  .mb-xl-n2, .my-xl-n2 {
    margin-bottom: -.5rem !important;
  }

  .ml-xl-n2, .mx-xl-n2 {
    margin-left: -.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3, .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3, .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3, .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3, .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4, .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4, .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4, .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4, .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5, .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5, .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5, .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5, .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto, .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto, .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto, .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto, .mx-xl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace !important;
}

.text-justify {
  text-align: justify !important;
}

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

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

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

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

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

@media (width >= 576px) {
  .text-sm-left {
    text-align: left !important;
  }

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

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

@media (width >= 768px) {
  .text-md-left {
    text-align: left !important;
  }

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

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

@media (width >= 992px) {
  .text-lg-left {
    text-align: left !important;
  }

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

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

@media (width >= 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

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

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

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

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

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

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

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #28a745 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #19692c !important;
}

.text-secondary {
  color: #666 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #404040 !important;
}

.text-success {
  color: #007bff !important;
}

a.text-success:hover, a.text-success:focus {
  color: #0056b3 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #f9423a !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #e01007 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #666 !important;
}

.text-black-50 {
  color: #00000080 !important;
}

.text-white-50 {
  color: #ffffff80 !important;
}

.text-hide {
  font: 0 / 0 a;
  color: #0000;
  text-shadow: none;
  background-color: #0000;
  border: 0;
}

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

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *, :before, :after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

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

  pre, blockquote {
    page-break-inside: avoid;
    border: 1px solid #adb5bd;
  }

  thead {
    display: table-header-group;
  }

  tr, img {
    page-break-inside: avoid;
  }

  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  h2, h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }

  body, .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td, .table th {
    background-color: #fff !important;
  }

  .table-bordered th, .table-bordered td {
    border: 1px solid #dadada !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th, .table-dark td, .table-dark thead th, .table-dark tbody + tbody {
    border-color: #dadada;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dadada;
  }
}

svg {
  height: 36px;
}

.badge > svg {
  width: 16px;
  height: 16px;
  margin-top: -3px;
}

p > svg {
  position: relative;
  top: -1px;
}

dl {
  line-height: 1.2em;
}

.card .card-header {
  font-size: 1.25rem;
}

dl.horizontal {
  grid-column-gap: 1rem;
  grid-template-columns: auto 1fr;
  display: grid;
}

body.dialog-visible {
  height: 400px;
}

body.dialog-visible .booking-box {
  display: none;
}

@media (width <= 991.98px) {
  body.dialog-visible .embedded-messaging {
    display: none;
  }
}

.site-header {
  background-color: #f9423a;
  border-bottom: 1px solid #dadada;
  height: 88px;
}

.site-header .container {
  position: relative;
}

.site-header .logo-col {
  line-height: 88px;
}

.site-header .logo-col .logo {
  width: 211px;
  height: 50px;
  display: inline-block;
}

.site-header .logo-col .logo > svg {
  width: 100%;
  height: 100%;
}

.site-header .logo-col .logo > svg .st0 {
  fill: #fff;
}

.site-header .destination-menu {
  text-align: center;
  background-color: #fff;
  max-width: 100%;
  height: 88px;
  padding: 34px 2.5rem;
  display: inline-block;
}

.site-header .destination-menu ul {
  margin: 0;
}

.site-header .destination-menu ul > li {
  border-right: 2px solid red;
  margin: 0;
  padding: 0 12px;
  line-height: 15px;
}

.site-header .destination-menu ul > li:first-child {
  padding-left: 0;
}

.site-header .destination-menu ul > li:last-child {
  border-right: none;
  padding-right: 0;
}

.site-header .destination-menu ul > li > a {
  color: #000;
  text-transform: uppercase;
  font-family: Sentinel A, Sentinel B, Georgia, serif;
  font-size: 24px;
}

.site-header .menu-col {
  text-align: right;
  color: #fff;
  line-height: 88px;
}

.site-header-v2 {
  background-color: #fbfbfb;
  align-items: center;
  padding: 0 3rem;
  display: flex;
  box-shadow: 0 10px 10px #eee;
}

.site-header-v2 .logo-col .logo {
  width: 211px;
  height: 50px;
  display: inline-block;
}

.site-header-v2 .logo-col .logo > svg {
  width: 100%;
  height: 100%;
}

.site-header-v2 .logo-col .logo > svg .st0 {
  fill: #f9423a;
}

.site-header-v2 .menu-col {
  text-align: center;
  color: #f9423a;
  flex: 1;
  padding-right: 0;
}

.site-header-v2 .menu-col .menu-items {
  justify-content: center;
  display: none;
}

.site-header-v2 .menu-col .menu-items a {
  color: #000;
  border-bottom: 3px solid #fff;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  margin: 0 1.5rem;
  padding: 1.5rem 0;
  display: flex;
}

.site-header-v2 .menu-col .menu-items a svg {
  width: 36px;
}

.site-header-v2 .menu-col .menu-items a.active, .site-header-v2 .menu-col .menu-items a:active, .site-header-v2 .menu-col .menu-items a:hover {
  color: #f9423a;
  border-bottom: 3px solid #f9423a;
  text-decoration: none;
}

@media (width >= 1200px) {
  .site-header-v2 .menu-col {
    padding-right: 150px;
  }

  .site-header-v2 .menu-col .menu-items {
    display: flex;
  }
}

.site-header-v2 .flags-col {
  text-align: right;
}

.site-header-v2 .flags-col a.sv > .flag {
  width: 25.6px;
}

.site-header-v2 .flags-col a.en > .flag {
  width: 32px;
}

.site-header-v2 #btn-mobile-menu {
  color: #000;
  margin: .85rem 0 0 2rem;
}

.site-header-v2 #btn-mobile-menu.hamburger > div {
  background-color: #000;
}

@media (width <= 576px) {
  .site-header-v2 {
    padding: 1rem;
  }

  .site-header-v2 .logo-col .logo {
    width: 158px;
    height: 38px;
  }
}

.mp-results {
  display: none;
}

.secondary-header {
  color: #e9ecef;
  background-color: #666;
  height: 49px;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 1.25rem;
  line-height: 49px;
}

.secondary-header .list-inline-item a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}

.secondary-header .list-inline-item .icn {
  width: 24px;
  height: 24px;
  position: relative;
  top: -2px;
}

.secondary-header .list-inline-item .icn-alert-circle path {
  fill: #fa5e57;
}

.secondary-header .list-inline-item .icn-check-circle path {
  fill: #27cc4d;
}

.secondary-header ul {
  display: inline-block;
}

.secondary-header .flags {
  float: right;
  position: relative;
  top: -3px;
}

.secondary-header .flags .faq-icon {
  margin-right: 1rem;
}

.secondary-header .flags .faq-icon #FAQ {
  fill: #fff;
}

.secondary-header .flags .flag {
  max-width: 32px;
  height: 16px;
}

.secondary-header .flags .sv > .flag {
  width: 25.6px;
}

.secondary-header .flags .en > .flag {
  width: 32px;
}

.secondary-header .flags .de > .flag {
  width: 26.7px;
}

.secondary-header-v2 {
  color: #fff;
  text-align: center;
  background-color: #f9423a;
  height: 120px;
  font-size: 2.5rem;
  line-height: 120px;
}

.alert-block {
  color: #000;
  background-color: gold;
  border-color: gold;
  border-radius: 0;
  margin-bottom: 0;
  padding: 1rem .5rem .5rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.alert-block a {
  color: #000;
  text-decoration: underline;
}

.alert-block .alert-icon {
  margin: 0 20px;
  display: inline-block;
}

.alert-block .alert-message {
  display: inline-block;
}

.breadcrumbs {
  text-transform: uppercase;
  margin-top: 1rem;
  margin-bottom: -1rem;
}

.breadcrumbs .separator {
  color: #f9423a;
  margin: 5px;
  font-weight: bold;
}

.breadcrumbs a {
  color: #000;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.content-area {
  min-height: calc(100vh - 303px - 1.5rem);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.content-area .container {
  scroll-behavior: smooth;
}

.content-area .container img {
  max-width: 100%;
}

.startpage .main {
  margin-top: 2rem;
}

.startpage .ribbon {
  display: none;
}

@media (width >= 992px) {
  .startpage .ribbon {
    background-color: #28a745;
    border: 1px solid #0000;
    height: 80px;
    display: block;
  }

  .startpage .ribbon .ribbon-image {
    z-index: 400;
    background-image: url("../train-background.b0549551.png");
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 400px;
    margin-top: -170px;
    position: relative;
  }
}

@media (width >= 992px) and (width >= 1600px) {
  .startpage .ribbon .ribbon-image {
    background-position: 80%;
    height: 500px;
    margin-top: -230px;
  }
}

.startpage .content-area {
  min-height: calc(100vh - 303px);
}

.page-header {
  background: #ccc center / cover;
  height: 600px;
  margin-top: -2rem;
  padding-top: 4rem;
}

.page-header.sub-page {
  height: auto;
  min-height: 350px;
  margin-top: 0;
  margin-bottom: 3rem;
}

.hero h1 {
  color: #fff;
  background: #f9423a;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: 500;
  display: inline-block;
}

.hero p.lead {
  color: #fff;
  text-shadow: 0 0 5px #000;
  font-size: 1.5rem;
}

.hero .booking-box {
  background: #ffffffd9;
  border: 0;
  border-radius: 0;
  padding: 1rem;
}

.hero .booking-box .location-form {
  gap: 10px;
  display: grid;
}

@media (width >= 992px) {
  .hero .booking-box .location-form {
    grid-template-columns: 2fr 2fr 1fr;
  }
}

.hero .booking-box .from, .hero .booking-box .to {
  position: relative;
}

.hero .booking-box .from .location-selector .location-list, .hero .booking-box .to .location-selector .location-list {
  z-index: 3000;
  max-height: 500px;
  top: 75px;
}

@media (width >= 992px) {
  .hero h1 {
    margin-bottom: 3rem;
    padding: 1rem 4rem;
    font-size: 3rem;
  }

  .hero p.lead {
    font-size: 1.75rem;
  }

  .hero .btn-primary {
    margin-top: 30px;
  }
}

.block-area > * {
  margin-bottom: 1rem;
}

.block-area img {
  max-width: 100%;
}

.modal-body iframe {
  max-width: calc(100% - 4rem);
}

.site-footer {
  color: #000;
  background-color: #dadada;
  min-height: 166px;
  padding: 1em 0;
}

.site-footer .footer-content {
  grid-template-areas: "links"
                       "address"
                       "social";
  row-gap: 10px;
  display: grid;
}

@media (width >= 576px) {
  .site-footer .footer-content {
    grid-template-columns: 1fr auto;
    grid-template-areas: "address links"
                         "social social";
  }
}

.site-footer .address {
  grid-area: address;
}

.site-footer .links {
  text-align: center;
  border-bottom: 1px solid #fff;
  grid-area: links;
  padding-bottom: 10px;
}

@media (width >= 576px) {
  .site-footer .links {
    text-align: left;
    border-bottom: none;
    padding-bottom: 0;
  }

  .site-footer .links > a {
    margin: 0;
    display: block;
  }
}

.site-footer .social-links {
  grid-area: social;
}

.site-footer a {
  color: #000;
  white-space: nowrap;
  margin: 10px;
}

.site-footer a:first-child {
  margin-left: 0;
}

.site-footer a svg {
  width: 36px;
  height: 36px;
  margin-right: .5rem;
}

.site-footer a.cookie-link svg {
  padding: 5px;
}

button .icon {
  margin-right: .5em;
  position: relative;
  top: -1px;
}

.btn.btn-icon {
  width: 48px;
  height: calc(1.5em + .75rem + 2px);
  padding: 5px 10px;
  position: relative;
  top: -2px;
}

.btn > svg {
  width: 24px;
  height: 24px;
}

.btn > svg:first-child {
  margin-right: .5rem;
}

.btn > svg:last-child:not(:first-child) {
  margin-left: .5rem;
}

.btn.btn-sm > svg, .btn-group-sm > .btn > svg {
  width: 20px;
  height: 20px;
}

.btn[disabled] {
  cursor: not-allowed;
}

button.link-button {
  color: #28a745;
  background: none;
  border: none;
  padding: 0;
}

.input-group-prepend svg {
  height: 24px;
}

.form-control[readonly] {
  background-color: #fff;
}

.form-group label {
  margin-bottom: .25rem;
}

fieldset legend {
  font-size: 1.2rem;
}

input:disabled {
  cursor: not-allowed;
}

#btn-mobile-menu {
  text-align: right;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

#btn-mobile-menu.hamburger {
  background: none;
  border: none;
  border-radius: 0;
  width: 30px;
  height: 44px;
  padding: 0;
  line-height: 0;
}

#btn-mobile-menu.hamburger > span {
  font-weight: 400;
  line-height: 16px;
  position: relative;
  left: -8px;
}

#btn-mobile-menu.hamburger > div {
  background-color: #fff;
  height: 4px;
  margin-bottom: 6px;
  transition-duration: .5s;
}

#btn-mobile-menu.hamburger > div:last-child {
  margin-bottom: 0;
}

#btn-mobile-menu.hamburger.on > div.one {
  margin-left: 12px;
  transform: rotate(30deg)translateY(4.5px)translateX(2.5px);
}

#btn-mobile-menu.hamburger.on > div.three {
  margin-left: 12px;
  transform: rotate(-30deg)translateY(-4.5px)translateX(2.5px);
}

.mobile-menu {
  z-index: 5000;
  background-color: #fff;
  width: 400px;
  max-width: calc(100% - 40px);
  height: 100%;
  margin: 0;
  transition: all .5s ease-in-out;
  position: fixed;
  top: 0;
  right: 0;
  overflow: hidden auto;
  transform: translateX(430px);
  box-shadow: -7px 0 15px #0006;
}

.mobile-menu.visible {
  transform: translateX(0);
}

.mobile-menu .menu-button {
  color: #000;
  line-height: 24px;
}

.menu .top-nav {
  text-align: center;
  padding: 1rem;
}

.menu .top-nav > a {
  color: #000;
  white-space: nowrap;
  margin-left: 1rem;
  text-decoration: none;
}

.menu .top-nav > a:hover {
  color: #f9423a;
}

.menu .top-nav > a:first-child {
  margin-left: 0;
}

.menu .top-nav > a > svg {
  width: 36px;
  height: 36px;
  margin-right: .5rem;
}

.menu .nav .nav-item {
  max-width: 100%;
  position: relative;
}

.menu .nav .nav-item > .nav {
  opacity: 0;
  height: 0;
  margin-left: 1rem;
  transition: opacity .3s ease-in-out;
  overflow: hidden;
}

.menu .nav .nav-item > .nav.level-1 {
  margin-left: 0;
}

.menu .nav .nav-item .toggle {
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  transition: all .3s ease-in-out;
  display: block;
  position: absolute;
  top: 5px;
  right: 0;
  transform: rotate(-90deg);
}

.menu .nav .nav-item .toggle > svg.chevron-down {
  width: 100%;
  height: 100%;
}

.menu .nav .nav-item .toggle > svg.chevron-down .bg {
  fill: none;
}

.menu .nav .nav-item .toggle > svg.chevron-down .fg {
  stroke: #f9423a;
}

.menu .nav .nav-item.expanded > .nav {
  opacity: 1;
  height: auto;
}

.menu .nav .nav-item.expanded > .toggle {
  transform: rotate(0);
}

.menu .nav .nav-link {
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: calc(100% - 45px);
  margin-top: 5px;
  padding: 0 1rem;
  line-height: 2.5rem;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.menu .nav .nav-link.active, .menu .nav .nav-link:hover {
  color: #f9423a;
}

.menu .nav .nav-link.active {
  font-weight: 700;
}

.menu .nav.level-0 > .nav-item {
  border-top: 1px solid #dadada;
}

.menu .nav.level-0 > .nav-item > .nav-link {
  text-transform: uppercase;
}

.adyen-checkout__button, .adyen-checkout__payment-method__radio--selected {
  background-color: #28a745;
}

.adyen-checkout__input {
  border-radius: 0;
}

#adyen-dropin-container .adyen-checkout__applepay__button, #adyen-payment-container .adyen-checkout__applepay__button {
  -webkit-appearance: -apple-pay-button !important;
}

.alert svg[class*="alert"] {
  width: 36px;
  height: 36px;
  margin-right: .5em;
  position: relative;
}

.alert.small {
  padding: .5rem .75rem;
}

.booking-box {
  border: 1px solid #28a745;
  border-radius: .25rem;
  margin-bottom: 2rem;
  padding: 1rem;
}

.booking-box label {
  text-align: center;
  width: 100%;
  background-color: #0000 !important;
  padding: 0 !important;
  top: 5px !important;
}

.booking-box label:before {
  content: "";
  border-bottom: 1px solid #000;
  width: calc(50% - 50px);
  display: inline-block;
}

.booking-box label span {
  width: 100px;
  display: inline-block;
}

.booking-box label:after {
  content: "";
  border-bottom: 1px solid #000;
  width: calc(50% - 50px);
  display: inline-block;
}

.booking-box .form-control {
  background-color: #fff9 !important;
  border: none !important;
  padding-top: 0 !important;
}

.booking-box .btn-primary {
  text-transform: uppercase;
  background-color: green;
  border-color: green;
  width: 100%;
  font-weight: 700;
}

.booking-box .from .location-selector .location-list {
  top: 90px;
}

.booking-box .to .location-selector .location-list {
  top: 180px;
}

.standard-page .booking-box {
  display: none;
}

.standard-page .booking-box.on {
  display: block;
}

.standard-page .booking-box label {
  background-color: #fff !important;
  padding: 0 1em !important;
}

.standard-page .booking-btn {
  display: block;
}

.standard-page .booking-btn button {
  width: 100%;
  font-weight: 700;
  display: none;
}

.standard-page .booking-btn button.on {
  margin-bottom: 2rem;
  display: block;
}

@media (width >= 992px) {
  .standard-page .booking-box {
    display: block;
  }

  .standard-page .booking-box .form-control {
    font-size: 1.1rem !important;
  }

  .standard-page .booking-btn {
    display: none;
  }
}

.book-table-dialog .available-times > .btn {
  width: 60px;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

.book-table-dialog .select-persons > label, .book-table-dialog .select-day > label {
  font-weight: bold;
}

.book-table-dialog .select-persons > select, .book-table-dialog .select-day > select {
  width: unset;
  margin-left: 1rem;
}

.country-selector .rbt {
  flex-grow: 1;
}

.country-selector .rbt input.is-invalid, .country-selector .rbt input.is-valid {
  padding-right: .75rem;
}

.country-selector .flag {
  width: 24px;
  position: absolute;
  top: 10px;
  right: 10px;
}

#Datepickk {
  z-index: 2500;
}

#Datepickk .d-calendar {
  border: 1px solid #ced4da;
}

#Datepickk .d-calendar .d-header {
  color: #000;
  background-color: #0000;
  font-size: 1.2rem;
}

#Datepickk .d-calendar .d-week {
  background-color: #f9423a;
}

#Datepickk .d-calendar .d-week > div p {
  margin: .1em 0;
}

#Datepickk .d-calendar .d-table {
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 5px;
  display: grid !important;
}

#Datepickk .d-calendar .d-table input + label {
  margin-bottom: 0;
}

#Datepickk .d-calendar .d-table input + label:before {
  background-color: #28a745;
  border: 1px solid green;
  border-radius: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#Datepickk .d-calendar .d-table input + label.today text:before {
  background-color: #f9423a;
}

#Datepickk .d-calendar .d-table input + label[style*="linear-gradient"] text {
  text-shadow: none;
}

#feedback-popup {
  z-index: 10000;
  background-color: #7fffd4;
  max-width: 500px;
  margin: 2rem;
  padding: 2rem;
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
}

#feedback-popup.on {
  display: block;
}

#feedback-popup #feedback-close {
  position: absolute;
  top: 0;
  right: 0;
}

#feedback-popup #feedback-close img {
  cursor: pointer;
  width: 36px;
  height: 36px;
}

.krogen-ombord .reservations .badge {
  font-size: 100%;
}

.krogen-ombord .reservations .cancelled, .krogen-ombord .reservations .expired {
  color: #adb5bd;
  text-decoration: line-through;
}

.krogen-ombord .reservations .ongoing {
  color: #adb5bd;
}

.krogen-ombord .free-tables .badge {
  margin-left: 1rem;
  font-size: 1.25rem;
}

.option-selector .option-segment {
  margin-bottom: 1rem;
}

.option-selector .option-segment:last-child {
  margin-bottom: 0;
}

.option-selector .option-segment h3 {
  margin-top: 0;
  font-size: 1rem;
}

.option-selector .option-segment .option .availability-warning {
  color: #f9423a;
  position: relative;
  top: -2px;
}

.option-selector .option-segment .option.option-disabled {
  opacity: .5;
}

.option-selector .option-segment .option.option-disabled button, .option-selector .option-segment .option.option-disabled input {
  cursor: not-allowed;
}

.option-selector div[class*="option-component"] .option-label:before {
  content: "";
  background-image: url("../booking-icons.b76a7c85.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 667px 42px;
  width: 22px;
  height: 22px;
  margin-bottom: -3px;
  margin-right: .5em;
  display: none;
}

.option-selector div.option-component-353 .option-label:before {
  background-position: -215px 0;
  display: inline-block;
}

.option-selector div.option-component-314 .option-label:before {
  background-position: -241px 2px;
  display: inline-block;
}

.option-selector div.option-component-312 .option-label:before {
  background-position: -267px 2px;
  display: inline-block;
}

.option-selector div.option-component-311 .option-label:before {
  background-position: -346px 2px;
  display: inline-block;
}

.option-selector div.option-component-310 .option-label:before {
  background-position-x: -373px;
  display: inline-block;
}

.option-selector .option-multiple {
  margin-bottom: 1rem;
}

.option-selector .option-multiple:last-child {
  margin-bottom: 0;
}

.option-selector .option-multiple .option-heading {
  margin-top: .5rem;
  font-size: .875rem;
  font-weight: bold;
}

.option-selector .number-selector {
  float: right;
  width: 90px;
  position: relative;
  top: 3px;
}

@media (width >= 576px) {
  .option-selector .number-selector {
    width: unset;
  }
}

.option-selector .number-selector > input {
  text-align: right;
}

.option-selector .number-selector .btn {
  padding: .2rem;
  font-size: .75rem;
  line-height: .75;
}

.option-selector .number-selector .btn:disabled {
  opacity: .3;
}

.option-selector .number-selector .btn > svg {
  width: 16px;
  height: 16px;
  margin: 0;
}

.no-spinners {
  -moz-appearance: textfield;
}

.no-spinners::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.no-spinners::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dialog-background {
  background-color: #fff;
  border-bottom: 1px solid #ced4da;
  height: auto;
  padding: 0;
  box-shadow: 0 0 10px #adb5bd;
}

@media (width >= 576px) {
  .dialog-background {
    padding: 2rem 0;
  }
}

.dialog-background .btn-close {
  width: 72px;
  margin: 0 auto;
  display: block;
}

.dialog-background .btn-close > svg {
  fill: #000;
  width: 48px;
  height: 48px;
}

.dialog-background hr.red {
  background-color: #f9423a;
}

.reservation-dialog {
  background-color: #fff;
  margin: auto;
}

.reservation-dialog h3 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.reservation-dialog h4 {
  margin-bottom: .1rem;
  font-size: 1.1rem;
}

.reservation-dialog section {
  border-top: 1px solid #000;
  margin-top: 2rem;
}

.reservation-dialog section > h2 + h3 {
  margin-top: 0;
}

.reservation-dialog section > h2 {
  text-transform: uppercase;
  background-color: #fff;
  margin: 0;
  padding: 0 1em;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: .875rem;
  font-weight: bold;
  display: inline-block;
  position: relative;
  top: -.9em;
  left: 50%;
  transform: translateX(-50%);
}

.reservation-dialog section.vouchers input {
  text-transform: uppercase;
}

.reservation-dialog section.vouchers input::placeholder {
  text-transform: none;
}

.reservation-dialog .body {
  grid-gap: 1em;
  grid-template-rows: 1fr 71px;
  grid-template-areas: "content"
                       "footer";
  display: grid;
}

.reservation-dialog .body .content {
  min-height: 430px;
  padding: 0;
}

.reservation-dialog .body .footer {
  border-top: 1px solid #f9423a;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1rem 0;
  display: grid;
}

.reservation-dialog .body .footer .back {
  grid-column: 1;
}

.reservation-dialog .body .footer .price {
  text-align: center;
  text-transform: uppercase;
  grid-column: 2;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: .875rem;
}

.reservation-dialog .body .footer .price .totalPrice {
  text-transform: none;
  white-space: nowrap;
  font-weight: bold;
}

.reservation-dialog .body .footer .submit {
  text-align: right;
  grid-column: 3;
}

.reservation-dialog .alert {
  margin-top: 1rem;
}

.reservation-dialog .modal .swish-logo {
  width: 200px;
  margin: 2em auto;
}

.reservation-dialog .modal .swish-logo > svg {
  width: 100%;
  height: 100%;
}

.reservation-dialog .rebooking-box {
  position: relative;
}

.reservation-dialog .rebooking-box button {
  padding-left: 0;
  display: block;
}

@media (width >= 768px) {
  .reservation-dialog .rebooking-box button {
    padding-left: inherit;
    position: absolute;
    top: 6px;
    right: 1rem;
  }
}

.modal .seatmap-container {
  height: 260px;
}

.modal .seatmap-container > iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.search-form .form-group.location-selector label {
  text-transform: uppercase;
  z-index: 100;
  background-color: #fff;
  margin: 0;
  padding: 0 1em;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 80%;
  font-weight: bold;
  display: inline-block;
  position: relative;
  top: .66em;
  left: 50%;
  transform: translateX(-50%);
}

.search-form .form-group.location-selector .form-control {
  text-align: center;
  border-width: 1px 0 0;
  border-color: #000;
  border-radius: 0;
  padding: .5em 0 0;
  font-size: 1.25rem;
  font-weight: bold;
}

.search-form .form-group.location-selector .form-control:disabled, .search-form .form-group.location-selector .form-control:read-only {
  background-color: #fff;
}

.search-form .form-group.location-selector .search-box .rbt-input-hint {
  display: none;
}

.search-form .swapbutton {
  margin: auto;
  display: block;
  transform: rotateZ(90deg);
}

@media (width >= 992px) {
  .search-form .utresa .location-selector {
    margin-right: 10px;
  }

  .search-form .hemresa .location-selector {
    margin-left: 10px;
  }

  .search-form .swapbutton {
    position: absolute;
    top: 26px;
    right: -30px;
    transform: none;
  }
}

.search-form .passenger {
  margin-top: .5em;
  margin-bottom: .5em;
}

.search-form .passenger .categories {
  width: 170px;
  display: inline-block;
}

.search-form .passenger .age {
  width: 119px;
  margin-left: 1em;
  display: inline-block;
}

.search-form .passenger .age.invalid {
  border-color: #f9423a;
}

.timetable {
  margin-top: 1rem;
}

.timetable .journey-advice {
  cursor: pointer;
  border-top: 1px solid #0000;
  border-bottom: 1px solid #adb5bd;
  border-left: 10px solid #0000;
  border-right: 1px solid #0000;
  margin-top: -1px;
  margin-left: -10px;
  padding: .5rem 1rem 1rem;
  display: block;
  position: relative;
}

.timetable .journey-advice:last-child {
  border-bottom: none;
}

.timetable .journey-advice:hover {
  border-left-color: #adb5bd;
}

.timetable .journey-advice.selected {
  background-color: #fafafa;
  border-top-color: #28a745;
  border-bottom-color: #0000;
  border-left-color: #28a745;
}

.timetable .journey-advice .time {
  font-weight: 700;
}

.timetable .journey-advice .time svg, .timetable .journey-advice .duration svg {
  position: relative;
  top: -1px;
}

.timetable .journey-advice .producer {
  margin-right: 1em;
  display: inline-block;
}

.timetable .journey-advice img.producer {
  height: 20px;
  margin-top: -3px;
}

.timetable .journey-advice .segments-overview .travelmethod-icon {
  position: relative;
  top: 5px;
  left: -3px;
}

.timetable .journey-advice .no-price {
  margin-top: 8px;
  padding-left: 23px;
  position: relative;
}

.timetable .journey-advice .no-price svg {
  position: absolute;
  top: -6px;
  left: 0;
}

.timetable .journey-advice .price {
  font-size: 1.25rem;
  font-weight: 700;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.timetable .journey-advice .few-seats {
  border-left: 1px solid #000;
  margin-left: .5rem;
  padding-left: .5rem;
}

.timetable .journey-advice .few-seats > svg {
  fill: #f9423a;
  height: 16px;
  position: relative;
  top: -2px;
}

.timetable .journey-advice.loading {
  cursor: default;
}

.timetable .journey-advice.loading:hover {
  background-color: unset;
}

.timetable .journey-advice.disabled {
  cursor: not-allowed;
  opacity: .6;
}

.timetable .journey-advice.disabled:hover {
  background-color: unset;
  border-left-color: #0000;
}

.timetable-date {
  grid-template-columns: 40px 1fr 40px;
  line-height: 35px;
  display: grid;
}

.timetable-date > span {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
}

.price-diff {
  margin-left: .5rem;
  font-weight: bold;
}

[class^="travelicon-"], [class*=" travelicon-"] {
  background-image: url("../booking-icons.b76a7c85.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 667px 42px;
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
}

.travelicon-4 {
  background-position-x: 0;
}

.travelicon-7 {
  background-position-x: -26px;
}

.travelicon-8 {
  background-position-x: -575px;
}

.travelicon-9, .travelicon-69, .travelicon-84, .travelicon-KROG {
  background-position-x: -52px;
}

.travelicon-10 {
  background-position-x: -80px;
}

.travelicon-11 {
  background-position-x: -293px;
}

.travelicon-14 {
  background-position-x: -112px;
  width: 15px;
}

.travelicon-19 {
  background-position-x: -133px;
}

.travelicon-21, .travelicon-BIKE {
  background-position-x: -267px;
}

.travelicon-29 {
  background-position-x: -160px;
  width: 17px;
}

.travelicon-48, .travelicon-61 {
  background-position-x: -187px;
}

.travelicon-63, .travelicon-86 {
  background-position-x: -213px;
}

.travelicon-64, .travelicon-BAG {
  background-position-x: -346px;
}

.travelicon-65, .travelicon-SKI {
  background-position-x: -373px;
}

.travelicon-66 {
  background-position-x: -241px;
}

.travelicon-67 {
  background-position-x: -400px;
}

.travelicon-68 {
  background-position-x: -320px;
}

.travelicon-88 {
  background-position-x: -542px;
}

.segment-map .segment {
  padding-left: 1em;
  position: relative;
}

.segment-map .segment h3 {
  margin-top: 0;
}

.segment-map .segment:before {
  content: "";
  border-left: 2px solid #adb5bd;
  width: 2px;
  height: calc(100% - 14px);
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
}

.segment-map .segment .segment-heading:before, .segment-map .segment .segment-footer:before {
  content: "";
  background-color: #28a745;
  border: 3px solid #000;
  border-radius: 10px;
  width: 14px;
  height: 14px;
  display: inline-block;
  position: absolute;
  left: -6px;
}

.segment-map .segment .segment-heading:before {
  top: 6px;
}

.segment-map .segment .segment-footer:before {
  bottom: 6px;
}

.segment-map .segment.segment-change:before {
  border-left: 6px dotted #adb5bd;
  height: calc(100% + 20px);
  top: -10px;
  left: -2px;
}

.segment-map .segment .segment-data {
  margin-bottom: .5em;
  padding-left: 2em;
  position: relative;
}

.segment-map .segment .segment-data svg {
  height: 24px;
  margin-top: -4px;
}

.segment-map .segment .segment-data img.producer {
  height: 20px;
}

.segment-map .segment .segment-data[class*="travelmethod-icon-"]:before {
  content: "";
  background-image: url("../booking-icons.b76a7c85.png");
  background-position: -28px -34px;
  background-size: 1000px 63px;
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
}

.segment-map .segment .segment-data.travelmethod-icon-boat:before {
  background-position-x: -53px;
}

.segment-map .segment .segment-data.travelmethod-icon-bus:before {
  background-position-x: -76px;
}

.segment-map .segment .segment-data.travelmethod-icon-walk:before {
  background-position-x: -96px;
}

.segment-map .segment .segment-data.travelmethod-icon-taxi:before {
  background-position-x: -120px;
}

.segment-map .segment .segment-data .segment-info {
  margin-top: .5rem;
  font-size: .875rem;
}

.travelmethod-icon {
  background-image: url("../booking-icons.b76a7c85.png");
  background-position: -28px -34px;
  background-size: 1000px 63px;
  width: 24px;
  height: 24px;
  display: inline-block;
}

.travelmethod-icon-boat {
  background-position-x: -53px;
}

.travelmethod-icon-bus {
  background-position-x: -76px;
}

.travelmethod-icon-walk {
  background-position-x: -96px;
}

.travelmethod-icon-taxi {
  background-position-x: -120px;
}

.order-summary {
  background-color: #ffffe0;
  border: 1px solid #adb5bd;
  padding: 1rem;
}

.order-summary h1 {
  font-size: 1.25rem;
}

.order-summary h2 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.order-summary .intro-text {
  color: #f9423a;
  font-style: italic;
}

.order-summary .journey-summary {
  border-bottom: 1px solid #000;
  margin-bottom: 1rem;
}

.order-summary .journey-summary:last-child {
  border: none;
  margin-bottom: 0;
}

.order-summary .journey-summary h3 {
  margin-top: 0;
}

.order-summary .segment-summary {
  padding-left: 34px;
}

.order-summary .segment-summary > h3 {
  margin-left: -34px;
}

.order-summary .segment-summary > p {
  margin-bottom: .5rem;
}

.order-summary .segment-summary .segment-info {
  margin-top: -.5rem;
}

.order-summary .segment-summary .travelmethod-icon {
  margin-bottom: -3px;
  margin-right: 10px;
}

.order-summary .order-total-price {
  font-size: 1.25rem;
}

@media (width >= 576px) {
  .order-summary h1 {
    font-size: 1.5rem;
  }

  .order-summary h2 {
    font-size: 1.25rem;
  }

  .order-summary dl {
    line-height: 1.2em;
  }

  .order-summary .order-total-price {
    font-size: 1.5rem;
  }
}

.vouchers .voucher > svg {
  margin: 0 12px;
  position: relative;
  top: -2px;
}

.vouchers .voucher .btn-icon > svg {
  width: 20px;
  height: 20px;
}

.location-selector input {
  background-color: #fff;
}

.location-selector .location-list {
  z-index: 1000;
  background-color: #fff;
  border: 1px solid #000;
  min-width: 275px;
  min-height: 300px;
  max-height: 50vh;
  padding: 1em;
  position: absolute;
  top: 80px;
  overflow-y: scroll;
}

.location-selector .location-list a {
  cursor: pointer;
  margin: 0 -1em;
  padding: 0 1em;
  line-height: 2em;
  display: block;
}

.location-selector .location-list a:hover, .location-selector .location-list a.highlight {
  color: #fff;
  background-color: #f9423a;
}

.location-selector .location-list a.disabled {
  cursor: not-allowed;
  color: #adb5bd;
  background-color: #fff;
}

.location-selector .location-list .close-button {
  width: 3em;
  position: absolute;
  top: 0;
  right: 0;
}

.time-selector {
  margin-top: 1.5rem;
}

.time-selector > .icon {
  margin-right: 2em;
}

.time-selector > .buttons {
  display: flex;
}

.time-selector > .buttons > .btn {
  color: #adb5bd;
  border-radius: 0;
  flex: 1;
  margin: 0;
  padding: 36px 1rem 0;
  position: relative;
}

.time-selector > .buttons > .btn > svg {
  fill: #adb5bd;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 0;
  left: calc(50% - 18px);
}

.time-selector > .buttons > .btn > svg.crescent_svg__crescent {
  width: 30px;
  height: 30px;
  left: calc(50% - 15px);
}

.time-selector > .buttons > .btn.selected {
  color: #000;
}

.time-selector > .buttons > .btn.selected > svg {
  fill: #28a745;
}

.date-selector .selected-date {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
}

.date-selector .selected-date > svg {
  width: 36px;
  height: 36px;
  margin-right: .5rem;
}

.date-selector .selected-date > span {
  vertical-align: middle;
}

.phone-input {
  position: relative;
}

.phone-input .country {
  z-index: 1000;
  position: absolute;
  top: 5px;
  left: 52px;
}

.phone-input .country > img {
  height: 16px;
}

.phone-input input {
  padding-left: 44px;
}

.payment-type label {
  line-height: 48px;
}

.payment-type label.custom-control-label:before, .payment-type label.custom-control-label:after {
  top: 17px;
}

.payment-type label img {
  height: 32px;
  margin-right: .5rem;
}

.payment-type .disabled > label > img {
  opacity: .35;
}

[class^="payment-type"] label {
  line-height: 2.8rem;
}

[class^="payment-type"] label.custom-control-label:before, [class^="payment-type"] label.custom-control-label:after {
  top: .95rem;
}

[class^="payment-type"] label img {
  height: 2rem;
  margin-left: .5rem;
  margin-right: .5rem;
}

[class^="payment-type"] input:disabled ~ label > img {
  opacity: .45;
  cursor: not-allowed;
}

.backdrop {
  opacity: .7;
  z-index: 1040;
  background-color: #000;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.backdrop.backdrop-visible {
  display: block;
}

.seatmap {
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  position: relative;
}

.seatmap .carriage-outer {
  scroll-behavior: smooth;
  height: 50vh;
  margin: auto;
  position: relative;
  overflow-y: scroll;
}

.seatmap .carriage-outer .carriage-inner {
  position: relative;
}

.seatmap .carriage-outer .carriage-inner .seat {
  opacity: .6;
  border: none;
  position: absolute;
}

.seatmap .carriage-outer .carriage-inner .seat.available {
  background-color: #28a745;
}

.seatmap .carriage-outer .carriage-inner .seat.selected {
  cursor: default;
  background-color: #007bff;
}

.seatmap .carriage-outer .carriage-inner .seat.unavailable {
  cursor: not-allowed;
  opacity: 1;
}

.seatmap .carriage-outer .carriage-inner .seat.unavailable > svg {
  fill: #d3d3d3;
  width: 100%;
  height: 100%;
}

.seatmap .carriage-outer .carriage-inner .seat:hover {
  opacity: 1;
}

.seatmap .scrollbutton {
  opacity: .3;
  border-radius: 24px;
  width: 48px;
  height: 48px;
  position: absolute;
}

.seatmap .scrollbutton > svg {
  margin: 0;
}

.seatmap .scrollbutton.down {
  bottom: 15px;
  left: calc(50% - 29px);
}

.seatmap .scrollbutton.up {
  top: 15px;
  left: calc(50% - 29px);
}

.seatmap .scrollbutton.left {
  display: none;
  top: calc(50% - 34px);
  left: 15px;
}

.seatmap .scrollbutton.right {
  display: none;
  top: calc(50% - 34px);
  right: 15px;
}

@media (width >= 992px) {
  .seatmap .carriage-outer {
    width: 100%;
    overflow: scroll auto;
  }

  .seatmap .carriage-outer .carriage-inner {
    position: absolute;
    transform: rotate(-90deg);
  }

  .seatmap .carriage-outer .carriage-inner .seat .number {
    display: block;
    transform: rotate(90deg);
  }

  .seatmap .scrollbutton.down, .seatmap .scrollbutton.up {
    display: none;
  }

  .seatmap .scrollbutton.left, .seatmap .scrollbutton.right {
    display: block;
  }
}

.startpage-teaser {
  min-height: 250px;
  margin: 0 0 2rem;
  position: relative;
}

.startpage-teaser img {
  width: 100%;
}

.themed-teaser .teaser-textbox {
  color: #000;
  background: #f8f9fa;
  width: 100%;
  padding: 2rem;
}

.themed-teaser .teaser-textbox h3 {
  font-size: 2rem;
  font-weight: 700;
}

.themed-teaser .teaser-textbox .btn-primary {
  color: #fff;
  background-color: #f9423a;
  border-color: #f9423a;
}

.themed-teaser.Yellow .teaser-textbox {
  background: #ff09;
}

.themed-teaser.Blue .teaser-textbox {
  color: #fff;
  background: #324bafb3;
}

.themed-teaser.Green .teaser-textbox {
  background: #32d26eb3;
}

.themed-teaser.Red .teaser-textbox {
  background: #f00c;
}

.col-lg-9 .startpage-teaser {
  margin: 0 0 2rem;
}

@media (width >= 1200px) {
  .startpage-teaser {
    margin: 0 5rem 2rem;
  }
}

@media (width >= 992px) {
  .startpage-teaser .teaser-textbox {
    width: 40%;
    position: absolute;
    top: 2rem;
    right: 2rem;
  }

  .startpage-teaser.Left .teaser-textbox {
    left: 2rem;
  }
}

.sk-folding-cube {
  width: 30px;
  height: 30px;
  margin: 0 30px;
  display: inline-block;
  position: relative;
  top: 10px;
  transform: rotateZ(45deg);
}

.sk-folding-cube.block {
  width: 40px;
  height: 40px;
  top: unset;
  margin: 20px auto;
  display: block;
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: "";
  transform-origin: 100% 100%;
  background-color: #f9423a;
  width: 100%;
  height: 100%;
  animation: 2.4s linear infinite both sk-foldCubeAngle;
  position: absolute;
  top: 0;
  left: 0;
}

.sk-folding-cube .sk-cube2 {
  transform: scale(1.1)rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  transform: scale(1.1)rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  transform: scale(1.1)rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  animation-delay: .3s;
}

.sk-folding-cube .sk-cube3:before {
  animation-delay: .6s;
}

.sk-folding-cube .sk-cube4:before {
  animation-delay: .9s;
}

@keyframes sk-foldCubeAngle {
  0%, 10% {
    opacity: 0;
    transform: perspective(140px)rotateX(-180deg);
  }

  25%, 75% {
    opacity: 1;
    transform: perspective(140px)rotateX(0);
  }

  90%, 100% {
    opacity: 0;
    transform: perspective(140px)rotateY(180deg);
  }
}

.tooltip {
  width: 400px;
  max-width: 80vw;
  font-size: 1rem !important;
}

.tooltip p:last-child {
  margin-bottom: 0;
}

.tooltip-link {
  cursor: pointer;
  margin-left: .5rem;
  display: inline-block;
  position: relative;
  top: -.2rem;
}

.tooltip-link > svg {
  width: 24px;
  height: 24px;
}

.trafficinfo .announcement {
  border: 1px solid #f9423a;
  border-radius: 0;
  margin-bottom: 20px;
}

.trafficinfo .announcement h4 {
  color: #000;
  margin: .2em 0;
  font-size: 1.2em;
  font-weight: 700;
}

.trafficinfo .announcement p {
  margin: 0 0 1em;
}

.trafficinfo .announcement p:last-child {
  margin: 0;
}

.trafficinfo .announcement .delayed {
  color: #f9423a;
}

.trafficinfo .announcement .notdelayed {
  color: #28a745;
}

.image-block img {
  max-width: 100%;
}

.image-gallery-block {
  grid-gap: .5rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 30vw;
  display: grid;
}

@media (width >= 576px) {
  .image-gallery-block {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 106px;
  }
}

@media (width >= 768px) {
  .image-gallery-block {
    grid-auto-rows: 145px;
  }
}

@media (width >= 1200px) {
  .image-gallery-block {
    grid-auto-rows: 174px;
  }
}

.image-gallery-block > a {
  background-color: #dadada;
}

.image-gallery-block > a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-carousel-wrapper .image-carousel {
  height: 62vw;
}

.image-carousel-wrapper .image-carousel .startpage-teaser {
  height: 62vw;
  min-height: unset;
  width: 100%;
}

.image-carousel-wrapper .image-carousel .startpage-teaser img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-carousel-wrapper .image-carousel .teaser-textbox {
  display: none;
}

@media (width >= 576px) {
  .image-carousel-wrapper .image-carousel, .image-carousel-wrapper .image-carousel .startpage-teaser {
    height: 357px;
  }
}

@media (width >= 768px) {
  .image-carousel-wrapper .image-carousel, .image-carousel-wrapper .image-carousel .startpage-teaser {
    height: 438px;
  }
}

@media (width >= 992px) {
  .image-carousel-wrapper .image-carousel, .image-carousel-wrapper .image-carousel .startpage-teaser {
    height: 438px;
  }

  .image-carousel-wrapper .image-carousel .teaser-textbox {
    display: block;
  }
}

@media (width >= 1200px) {
  .image-carousel-wrapper .image-carousel, .image-carousel-wrapper .image-carousel .startpage-teaser {
    height: 524px;
  }
}

.image-carousel-wrapper .extras-wrapper {
  position: relative;
}

.image-carousel-wrapper .extras-wrapper .mobile-captions .caption {
  display: none;
}

.image-carousel-wrapper .extras-wrapper .mobile-captions .caption.active {
  display: block;
}

.image-carousel-wrapper .extras-wrapper .mobile-captions .caption > div > :last-child {
  margin-bottom: 0;
}

@media (width >= 992px) {
  .image-carousel-wrapper .extras-wrapper .mobile-captions {
    display: none;
  }
}

.image-carousel-wrapper .extras-wrapper .slide-indicator {
  z-index: 100;
  text-align: center;
  width: 100%;
  position: absolute;
  top: -26px;
  left: 0;
}

@media (width >= 992px) {
  .image-carousel-wrapper .extras-wrapper .slide-indicator {
    top: auto;
    bottom: 10px;
  }
}

.image-carousel-wrapper .extras-wrapper .slide-indicator > span {
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 6px;
  width: 12px;
  height: 12px;
  margin-right: 2px;
  display: inline-block;
}

.image-carousel-wrapper .extras-wrapper .slide-indicator > span.active {
  background-color: #fff;
}

.image-carousel-wrapper .extras-wrapper .slide-next, .image-carousel-wrapper .extras-wrapper .slide-prev {
  z-index: 100;
  cursor: pointer;
  background-color: #0000004d;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -49px;
}

.image-carousel-wrapper .extras-wrapper .slide-next > svg, .image-carousel-wrapper .extras-wrapper .slide-prev > svg {
  fill: #fff;
  width: 16px;
  margin: auto;
  display: block;
  position: relative;
  top: 1px;
}

.image-carousel-wrapper .extras-wrapper .slide-next {
  right: 10px;
}

.image-carousel-wrapper .extras-wrapper .slide-next > svg {
  left: 1px;
}

@media (width >= 576px) {
  .image-carousel-wrapper .extras-wrapper .slide-next {
    right: 20px;
  }
}

.image-carousel-wrapper .extras-wrapper .slide-prev {
  left: 10px;
}

.image-carousel-wrapper .extras-wrapper .slide-prev > svg {
  right: 1px;
}

@media (width >= 576px) {
  .image-carousel-wrapper .extras-wrapper .slide-prev {
    left: 20px;
  }

  .manage-booking .search-form .buttons {
    text-align: right;
  }
}

.manage-booking .modal-dialog .modal-body {
  min-height: 100px;
}

.manage-booking.ng-cloak {
  display: none;
}

.manage-booking .segment-summary .travelmethod-icon, .manage-booking .segment-summary [class^="travelicon-"], .manage-booking .segment-summary [class*=" travelicon-"] {
  position: relative;
  top: 4px;
  left: -3px;
}

.manage-booking .segment-summary .service-info {
  margin-left: -5px;
}

.modal-title > [class^="travelicon-"], .modal-title > [class*=" travelicon-"] {
  margin-right: 8px;
  position: relative;
  top: 2px;
}

.qa-block {
  scroll-behavior: smooth;
}

.qa-block .q {
  color: #f9423a;
  cursor: pointer;
  margin-left: 2rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.qa-block .q img {
  height: 16px;
  margin-top: -4px;
  margin-left: -2rem;
  margin-right: 1rem;
}

.qa-block .q .plus {
  display: inline;
}

.qa-block .q .minus, .qa-block .q.on .plus {
  display: none;
}

.qa-block .q.on .minus {
  display: inline;
}

.qa-block .a {
  display: none;
}

.qa-block .a.on {
  margin-bottom: 2rem;
  margin-left: 2rem;
  display: block;
}

.qa-block + .row {
  margin-top: 2rem;
}

.table.right-align-last td, .table.right-align-last th {
  vertical-align: middle;
}

.table.right-align-last td:last-child, .table.right-align-last th:last-child {
  text-align: right;
  white-space: nowrap;
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .startpage .ribbon-inner {
    text-align: center;
    padding: 20px;
  }
}

#Datepickk.MSIE {
  height: 385px;
}

#Datepickk.MSIE .d-table {
  height: 300px;
  display: flex !important;
}
/*# sourceMappingURL=style.css.map */
