/*----------------------Popover ---------------------*/
.PopoverContainer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.4)
}

.PopoverContainer {
    z-index: 20;
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    user-select: none
}

.PopoverContainer-overlay {
    background: none
}

.Popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1010;
    height: auto;
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid rgba(131,138,148,0.03);
    border-radius: 6px;
    box-shadow: 0 0 16px 6px rgba(131,138,148,0.1);
    -webkit-box-shadow: 0 0 16px 6px rgba(131,138,148,0.1)
}

    .Popover label {
        font-size: 14px;
        color: #cfd5da
    }

    .Popover input[type=text], .Popover input[type=password], .Popover input[type=email], .Popover input[type=tel] {
        padding: 4px 6px;
        width: 100%;
        border: 1px solid #cfd5da;
        font-size: 14px;
        margin-bottom: 6px;
        display: block
    }

    .Popover input:focus, .Popover input:hover {
        border-color: #6cb8f9
    }

    .Popover.Popover--top {
        margin-top: -10px
    }

    .Popover.Popover--right {
        margin-left: 10px
    }

    .Popover.Popover--bottom {
        margin-top: 10px
    }

    .Popover.Popover--left {
        margin-left: -10px
    }

.Popover-header {
    padding: 12px;
    margin: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    font-weight: normal;
    line-height: 18px;
    color: #cfd5da;
    border-bottom: 1px solid var(--background);
    border-radius: 6px 6px 0 0
}

.Popover-footer {
    width: 100%;
    height: 48px;
    line-height: 48px;
    padding: 0 12px;
    background-color: var(--white);
    border-top: 1px solid var(--background);
    border-radius: 0 0 6px 6px
}

.Popover-content {
    line-height: 24px;
    padding: 9px 14px
}

.Popover > .Popover-arrow, .Popover > .Popover-arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.Popover > .Popover-arrow {
    border-width: 11px
}

    .Popover > .Popover-arrow:after {
        content: "";
        border-width: 10px
    }

.Popover.Popover--top > .Popover-arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999;
    border-top-color: rgba(0,0,0,0.25);
    border-bottom-width: 0
}

    .Popover.Popover--top > .Popover-arrow:after {
        bottom: 1px;
        margin-left: -10px;
        content: " ";
        border-top-color: var(--white);
        border-bottom-width: 0
    }

.Popover.Popover--right > .Popover-arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999;
    border-right-color: rgba(0,0,0,0.25);
    border-left-width: 0
}

    .Popover.Popover--right > .Popover-arrow:after {
        bottom: -10px;
        left: 1px;
        content: " ";
        border-right-color: var(--white);
        border-left-width: 0
    }

.Popover.Popover--bottom > .Popover-arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0
}

    .Popover.Popover--bottom > .Popover-arrow:after {
        top: 1px;
        margin-left: -10px;
        content: " ";
        border-top-width: 0;
        border-bottom-color: var(--white)
    }

.Popover.Popover--left > .Popover-arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0,0,0,0.25)
}

    .Popover.Popover--left > .Popover-arrow:after {
        right: 1px;
        bottom: -10px;
        content: " ";
        border-right-width: 0;
        border-left-color: var(--white)
    }
/*-----------------------Popover----------------------*/