﻿body {
}

.select2-selection__rendered {
    line-height: 31px !important;
}

.select2-container .select2-selection--single {
    height: 38px !important;
}

.select2-selection__arrow {
    height: 34px !important;
}

label.error {
    color: #ff0000;
    font-weight: normal;
    font-size: 11px;
}

/*------------------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;
    }

/*---------------------------------------------*/

.card-secondary.card-outline {
    border: none;
}

    .card-secondary.card-outline .card-header {
        border-left: 3px solid #6c757d;
        border-bottom: 1px dotted #6c757d;
    }