.driver-popover {
    border-radius: 15px;
    padding: 20px;
    font-family: inherit;
    font-size: 15px;
    box-shadow: none;
}

/* Arrow pointing towards the highlighted element */
.driver-popover-arrow {}

/* Title and description */
.driver-popover-title {
    padding: 5px 10px 0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
}

.driver-popover-description {
    padding: 10px;
    font-family: inherit;
    font-size: 15px;
}

.driver-popover-description a {
    font-family: inherit;
    font-size: 15px;
    color: #00AEDA !important;
}

/* Close button displayed on the top right corner */
.driver-popover-close-btn {
    font-family: inherit;
    font-size: 22px;
    font-weight: 300;
}

/* Footer of the popover displaying progress and navigation buttons */
.driver-popover-footer {
}

.driver-popover-footer button {
    font-family: inherit;
    font-size: 15px;
    background-color: #f5f5f5;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    text-shadow: none !important;
    border-radius: 10px;
    font-weight: 500;
    padding: 0.8em 1em;
    transition-duration: .2s;
    transition-property: background-color;
}

.driver-popover-progress-text {
    font-family: inherit;
    font-size: 15px;
}

.driver-popover-footer button.driver-popover-next-btn {
    background-color: rgba(0, 206, 255, 0.3);
}

.driver-popover-footer button.driver-popover-next-btn:hover {
    background-color: rgba(0, 206, 255, 0.4);
}

.driver-popover-footer button[disabled] {
    background-color: #FAFAFA !important;
    color: #aaa !important;
}

body.admin-body.dark-mode .driver-popover {
    color: #fff;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
    background-color: rgb(53, 53, 53);
}

body.admin-body.dark-mode .driver-popover-arrow {
    border: 5px solid  rgb(53, 53, 53);
    border-left-color: transparent;
    border-top-color: transparent;
    border-right-color: transparent;
}

body.admin-body.dark-mode .driver-popover-footer button.driver-popover-next-btn {
    color: #fff ;
}

body.admin-body.dark-mode .driver-popover-close-btn:hover, body.admin-body.dark-mode .driver-popover-close-btn:focus {
    color: #fff;
}

body.admin-body.dark-mode .driver-overlay path {
    opacity: .6 !important;
}