@import "../start";

.fs-notice
{
    position: relative;

    &.fs-has-title
    {
        margin-bottom: 30px !important;
    }

    &.success
    {
        color:       green;
//        font-weight: normal;
    }

    &.promotion
    {
        border-color: $fs-notice-promotion-border-color !important;
        background-color: $fs-notice-promotion-bkg !important;
    }

    .fs-close
    {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        color: #ccc;

        &:hover
        {
            color: #aaa;
        }
    }

    label.fs-plugin-title
    {
        background: rgba(0, 0, 0, 0.3);
        color: #fff;
        padding: 2px 10px;
        position: absolute;
        bottom: -22px;
        top: auto;
        right: auto;
        @include border-radius(0 0 3px 3px);
        left: 10px;
        font-size: 12px;
        font-weight: bold;
        cursor: auto;
    }
}

.rtl .fs-notice .fs-close
{
    left: 10px;
    right: auto;
}

.fs-secure-notice
{
    position: fixed;
    top: 32px;
    left: 160px;
    right: 0;
    background: rgb(235, 253, 235);
    padding: 10px 20px;
    color: green;
    z-index: 9999;
    box-shadow: 0px 2px 2px rgba(6, 113, 6, 0.3);
    @include opacity(0.95);

    &:hover
    {
        @include opacity(1);
    }
}

@media screen and (max-width: 960px)
{
    .fs-secure-notice
    {
        left: 36px;
    }
}

@media screen and (max-width: 782px)
{
    .fs-secure-notice
    {
        left: 0;
        top: 46px;
        text-align: center;
    }
}

span.fs-submenu-item.fs-sub:before {
    // Add small arrow.
    content: '\21B3';
    padding: 0 5px;
}

.rtl {
    span.fs-submenu-item.fs-sub:before {
        // Add small RTL arrow.
        content: '\21B2';
    }
}