//@import "../../../abstracts/abstracts";

.popover {
	background-color: $modal-body-background;
	border: 1px solid $modal-border-color;
    border-radius: $border-radius-default;
	-webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	.close {
		color: color(text-color-default);
		text-shadow: none !important;
		opacity: 1;
		float: right;
		font-size: 20px !important;
		font-weight: 700;
		line-height: 8px;
		padding: 0 !important;
		margin: 0 !important;
	}
	.arrow {
		display: none;
	}
    .popover-header {
        background-color: $modal-header-background;
        border-bottom: 1px solid $modal-header-border-color;
        color: $modal-header-color;
        padding: 15px 20px;
        font-size: $font-size-base;
        line-height: 14px;
        font-weight: 500;
        border-radius: $border-radius-default $border-radius-default 0 0;
    }
    .popover-body {
        color: color(text-color-default);
        background: $modal-body-background;
        padding: 15px 20px;
        font-weight: 400;
        border-radius: 0 0 $border-radius-default $border-radius-default;
    }
}

.bs-popover-auto[x-placement^="bottom"] {
	.popover-header {
		&::before {
			display: none;
		}
	}
}
.bs-popover-bottom {
	.popover-header {
		&::before {
			display: none;
		}
	}
}
