/*
Custom style for the jMeeoConfirmation plugins
static class assigned to the container is:
.jmeeo-confirmation
*/

.jmeeo-confirmation.popover{
  border: 1px solid var(--bg-color-3);
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.jmeeo-confirmation .popover-body{
  background-color: var(--bg-color-2);
  color: var(--main-text-color);
}

.jmeeo-confirmation .popover-header{
  background-color: var(--bg-color-3);
  border-bottom: 1px solid var(--bg-color-4);
  color: var(--main-text-color);
}


.jmeeo-confirmation.bs-popover-top > .popover-arrow::before {
  border-top-color: var(--bg-color-3);
}
.jmeeo-confirmation.bs-popover-top > .popover-arrow::after {
  border-top-color: var(--bg-color-2);
}

.jmeeo-confirmation.bs-popover-end > .popover-arrow::before {
  border-right-color: var(--bg-color-3);
}
.jmeeo-confirmation.bs-popover-end > .popover-arrow::after {
  border-right-color: var(--bg-color-2);
}

.jmeeo-confirmation.bs-popover-bottom > .popover-arrow::before {
  border-bottom-color: var(--bg-color-3);
}
.jmeeo-confirmation.bs-popover-bottom > .popover-arrow::after {
  border-bottom-color: var(--bg-color-2);
}

.jmeeo-confirmation.bs-popover-start > .popover-arrow::before {
  border-left-color: var(--bg-color-3);
}
.jmeeo-confirmation.bs-popover-start > .popover-arrow::after {
  border-left-color: var(--bg-color-2);
}
