.driver-popover, .driver-popover-footer button {
  all: unset;
  box-sizing: border-box;
  background-color: #02B2FE;
  color: var(--Accent-Neutrals-White);
}

.driver-active *, .driver-active .driver-overlay {
  pointer-events: none;
}

.driver-active .driver-active-element, .driver-active .driver-active-element *, .driver-popover, .driver-popover * {
  pointer-events: auto;
}

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

.driver-fade .driver-overlay {
  animation: .2s ease-in-out animate-fade-in;
}

.driver-fade .driver-popover {
  animation: .2s animate-fade-in;
}

.driver-popover {
  margin: 0;
  padding: 15px;
  border-radius: 5px;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 1px 10px #0006;
  z-index: 1000000000;
  position: fixed;
  top: 0;
  right: 0;
}

.driver-popover * {
  font-family: var(--accent-ds-font-family-text);
}

.driver-popover-title {
  font: 700 20px/1.5 sans-serif;
  display: block;
  position: relative;
  zoom: 1;
  margin: 0;
}

.driver-popover-close-btn {
  all: unset;
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 28px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #d2d2d2;
  z-index: 1;
  text-align: center;
  transition: color .2s;
  display: none !important;
}

.driver-popover-close-btn:focus, .driver-popover-close-btn:hover {
  color: #2d2d2d;
}

.driver-popover-title[style*=block] + .driver-popover-description {
  margin-top: 5px;
}

.driver-popover-description {
  margin-bottom: 0;
  font: 400 16px/1.5 sans-serif;
  zoom: 1;
}

.driver-popover-footer {
  margin-top: 15px;
  text-align: right;
  zoom: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.driver-popover-progress-text {
  font-size: 13px;
  font-weight: 400;
  color: #727272;
  zoom: 1;
  display: none !important;
}

.driver-popover-footer button {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
}

.driver-popover-footer .driver-popover-btn-disabled {
  opacity: .5;
  pointer-events: none;
}

:not(body):has(>.driver-active-element) {
  overflow: hidden !important;
}

.driver-no-interaction, .driver-no-interaction * {
  pointer-events: none !important;
}

.driver-popover-footer button:focus, .driver-popover-footer button:hover {
  background-color: #f7f7f7;
}

.driver-popover-navigation-btns {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}

/*.driver-popover-navigation-btns button + button {*/
/*  margin-left: 15px;;*/
/*}*/

.driver-popover-arrow {
  content: "";
  position: absolute;
  border: 5px solid #fff;
}

.driver-popover-arrow-side-left, .driver-popover-arrow-side-top {
  border-bottom-color: transparent;
  border-right-color: transparent;
}

.driver-popover-arrow-none, .driver-popover-arrow-side-center, .driver-popover-arrow-side-over {
  display: none;
}

.driver-popover-arrow-side-left {
  left: 100%;
  border-top-color: transparent;
}

.driver-popover-arrow-side-right {
  right: 100%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-top-color: transparent;
}

.driver-popover-arrow-side-top {
  top: 100%;
  border-left-color: transparent;
}

.driver-popover-arrow-side-bottom {
  bottom: 100%;
  border-left-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
}

.driver-popover-arrow-side-left.driver-popover-arrow-align-start, .driver-popover-arrow-side-right.driver-popover-arrow-align-start {
  top: 15px;
}

.driver-popover-arrow-side-bottom.driver-popover-arrow-align-start, .driver-popover-arrow-side-top.driver-popover-arrow-align-start {
  left: 15px;
}

.driver-popover-arrow-align-end.driver-popover-arrow-side-left, .driver-popover-arrow-align-end.driver-popover-arrow-side-right {
  bottom: 15px;
}

.driver-popover-arrow-side-bottom.driver-popover-arrow-align-end, .driver-popover-arrow-side-top.driver-popover-arrow-align-end {
  right: 15px;
}

.driver-popover-arrow-side-left.driver-popover-arrow-align-center, .driver-popover-arrow-side-right.driver-popover-arrow-align-center {
  top: 50%;
  margin-top: -5px;
}

.driver-popover-arrow-side-bottom.driver-popover-arrow-align-center, .driver-popover-arrow-side-top.driver-popover-arrow-align-center {
  left: 50%;
  margin-left: -5px;
}

.driver-popover-prev-btn {
  background-color: var(--Accent-Neutrals-White) !important;
  border: 0px !important;
  border-radius: 5px !important;
  width: 123.5px !important;
  height: 36px !important;
  padding: 8px 16px 8px 16px !important;
  font-size: 14px !important;
  text-align: center !important;
  color: var(--Accent-Neutrals-Black) !important;
  line-height: 19.6px !important;
}

.driver-popover-next-btn {
  background-color: var(--Accent-Primary-600) !important;
  border: 0px !important;
  border-radius: 5px !important;
  width: 123.5px !important;
  height: 36px !important;
  padding: 8px 16px 8px 16px !important;
  font-size: 14px !important;
  text-align: center !important;
  line-height: 19.6px !important;
  margin: 0 !important;
}
