﻿/*------------------Staus----------------------*/

.status {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11111;
    text-align: center;
}

    .status > div {
        display: inline-block;
        margin: 0 auto;
        padding: 12px 20px;
        position: relative;
    }

    .status.success > div {
        background: #6ebe44;
    }

    .status.error > div {
        background: #ef5644;
    }

    .status > div:before, .status > div:after {
        content: '';
        position: absolute;
        width: 20px;
        height: 100%;
        top: 0;
        -webkit-transform: rotate(0deg) skew(-25deg) scale(1.1,1);
        -mox-transform: rotate(0deg) skew(-25deg) scale(1.1,1);
        -ms-transform: rotate(0deg) skew(-25deg) scale(1.1,1);
        -o-transform: rotate(0deg) skew(-25deg) scale(1.1,1);
        transform: rotate(0deg) skew(-25deg) scale(1.1,1);
    }

    .status > div:before {
        right: 0;
        margin-right: -10px;
    }

    .status > div:after {
        left: 0;
        margin-left: -10px;
    }

    .status.success > div:before,
    .status.success > div:after {
        background: #6ebe44;
    }

    .status.error > div:before,
    .status.error > div:after {
        background: #ef5644;
    }

    .status > div p {
        color: #fff;
        margin-bottom: 0;
    }

/*---------------------------------------------*/

label.error {
    color: #f00;
    font-size: 12px;
    margin-bottom: 0;
}

.input-group label.error {
    position: absolute;
    bottom: 0;
    margin-bottom: -17px;
}

.form-control.error {
    border-bottom: 1px solid #ff9b9b;
}

span.required-class {
    color: #ff0000;
    font-weight: 600;
}

.ux-hide {
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
}

.navbar-light .navbar-toggler {
    color: #fff;
    border-color: #fff;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
}

    .navbar-light .navbar-nav .active > .nav-link,
    .navbar-light .navbar-nav .nav-link.active,
    .navbar-light .navbar-nav .nav-link.show,
    .navbar-light .navbar-nav .show > .nav-link {
        color: #ffef5e;
        font-weight: 700;
    }

/*alert styling*/
.custom.alert-success {
    border-color: #e6e6e6;
    border-left: 5px solid #00986a;
    background-color: #fff;
    color: #888;
}

.custom.alert-info {
    border-color: #e6e6e6;
    border-left: 5px solid #00b3c8;
    background-color: #fff;
    color: #888;
}

.custom.alert-warning {
    border-color: #e6e6e6;
    border-left: 5px solid #f9af2c;
    background-color: #fff;
    color: #888;
}

.custom.alert-danger {
    border-color: #e6e6e6;
    border-left: 5px solid #c82630;
    background-color: #fff;
    color: #888;
}

.m-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    position: relative;
    letter-spacing: 1px;
    padding-bottom: 15px;
    text-align: left;
    margin-bottom: 20px;
}

    .m-text:before, .m-text:after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        transition: .5s;
    }

    .m-text:after {
        z-index: 1;
        height: 4px;
        width: 80px;
        background: #006b33;
        border-radius: 2px;
        margin-left: 0px;
    }

    .m-text:before {
        height: 1px;
        width: 200px;
        background: #d0d0d0;
    }

.noti-iocn {
    right: 0px;
    position: absolute;
    margin-right: 85px;
    font-size: 1.25rem;
    top:12px;
    right:0;
    color: #fff;
}

    .noti-iocn b {
        background: #f53e3d;
        color: #fff;
        position: absolute;
        width: 18px;
        height: 18px;
        line-height: 18px;
        border-radius: 50%;
        font-size: 12px;
        text-align: center;
        top: -4px;
        left: 16px;
    }