﻿
* {
    padding: 0;
    /* Standard Reset, and we're adding box-sizing:border-box because it's awesome. */
    margin: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
}

.content-box {
    width: 100%;
    height: 400px;
    max-width: 80%;
    margin: 94px auto 0 auto;
    position: relative;
    /* So we can position the banner within the box */
    background: gray;
    border: 5px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

#ribbon-container {
    position: absolute;
    bottom: 15px;
    right: -20px;
    overflow: visible;
    /* so we can see the pseudo-elements we're going to add to the anchor */
    font-size: 18px;
    /* font-size and line-height must be equal so we can account for the height of the banner */
    line-height: 18px;
}

    #ribbon-container:before {
        content: "";
        height: 0;
        width: 0;
        display: block;
        position: absolute;
        top: 3px;
        left: 0;
        border-top: 29px solid rgba(0, 0, 0, .3);
        /* These 4 border properties create the first part of our drop-shadow */
        border-bottom: 29px solid rgba(0, 0, 0, .3);
        border-right: 29px solid rgba(0, 0, 0, .3);
        border-left: 29px solid transparent;
    }

    #ribbon-container:after {
        /* This adds the second part of our dropshadow */
        content: "";
        height: 3px;
        background: rgba(0, 0, 0, .3);
        display: block;
        position: absolute;
        bottom: -3px;
        left: 58px;
        right: 3px;
    }

    #ribbon-container a {
        display: block;
        padding: 20px;
        position: relative;
        /* allows us to position our pseudo-elements properly */
        background: #f83e37;
        overflow: visible;
        height: 58px;
        margin-left: 29px;
        color: #fff;
        text-decoration: none;
    }

        #ribbon-container a:after {
            /* this creates the "folded" part of our ribbon */
            content: "";
            height: 0;
            width: 0;
            display: block;
            position: absolute;
            bottom: -15px;
            right: 0;
            border-top: 15px solid #f83e37;
            border-right: 15px solid transparent;
        }

        #ribbon-container a:before {
            /* this creates the "forked" part of our ribbon */
            content: "";
            height: 0;
            width: 0;
            display: block;
            position: absolute;
            top: 0;
            left: -29px;
            border-top: 29px solid #f83e37;
            border-bottom: 29px solid #f83e37;
            border-right: 29px solid transparent;
            border-left: 29px solid transparent;
        }



.modal-dialog {
    margin-top:30px!important
}

.display-0 {
    font-size: 5rem;
}
.display-6 {
    font-size: 1rem;
}
.card {
    -webkit-box-shadow: 0 0 1px 2px #b7b7b7!important; 
    -moz-box-shadow: 0 0 1px 2px #b7b7b7!important;
    box-shadow: 0 0 1px 2px #b7b7b7!important;
}
.img-lg-profil{
    width:150px!important;
    height:150px!important;
}
.badge-outline-warning {
    color: #ff7f00 !important;
    border: 1px solid #ff7f00 !important;
}
.border-warning {
    border-color: #ff7f00 !important;
}
.compareDiv {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 5;
}
.nav-pills-light .nav-link.active {
    color:#000000!important;
}
.dropdown-item:hover, .dropdown-item:focus {
    color: #ffffff !important;
}
.dropdown-menu button:hover{
    color: #ffffff !important;
}
.dropdown-menu a:hover {
    color: #ffffff !important;
}
.bg-warning {
    color: #ffffff !important;
    background-color: #ff7f00 !important;
}

.text-warning {
    color: #ff7f00 !important;
}

.btn-warning {
    color: #ffffff !important;
    background-color: #ff7f00 !important;
    border-color: #ff7f00 !important;
}

.badge-warning {
    color: #ffffff !important;
    background-color: #ff7f00 !important;
}

.btn-outline-warning {
    color: #ff7f00 !important;
    border-color: #ff7f00 !important;
}

    .btn-outline-warning:hover {
        color: #ffffff !important;
        background-color: #ff7f00 !important;
        border-color: #ff7f00 !important;
    }



@media print {
    nav {
        display: none;
    }
    .PrintNone{
        display:none;
    }

}
.select2-selection .select2-selection--multiple {
    border: none;
    font-size: 0.800rem;
    line-height: 1.5px;
}
.text-lime {
    color: #01ff70 !important;
}
.card-select-primary {
    background: repeating-linear-gradient( 45deg, rgb(102, 64, 178,0.5), rgb(102, 64, 178,0.5) 10px, rgb(38, 41, 59,0) 10px, rgb(38, 41, 59,0) 20px );
}
.card-select-warning {
    background: repeating-linear-gradient( 45deg, rgb(255, 179, 16,0.2), rgb(255, 179, 16,0.2) 10px, rgb(38, 41, 59,0) 10px, rgb(38, 41, 59,0) 20px );
}
.card-select-dark {
    background: repeating-linear-gradient( 45deg, rgb(0, 0, 0,0), rgb(0,0 ,0, 0) 10px, rgb(38, 41, 59) 10px, rgb(38, 41, 59) 20px );
}
.card-select-danger {
    background: repeating-linear-gradient( 45deg, rgb(0, 0, 0,0), rgb(0,0,0, 0) 10px, rgb(255, 0, 0) 10px, rgb(255, 0, 0) 20px )!important;
}

.card-lime {
    -webkit-box-shadow: 0 0 1px 2px #01ff70 !important;
    -moz-box-shadow: 0 0 1px 2px #01ff70 !important;
    box-shadow: 0 0 1px 2px #01ff70 !important;
    color: #01ff70 !important;
}

    .card-lime a h6 {
        color: #01ff70 !important;
    }

    .card-lime a p {
        color: #01ff70 !important;
    }

    .card-lime p {
        color: #01ff70 !important;
    }

    .card-lime h3 {
        color: #01ff70 !important;
    }

    .card-lime h4 {
        color: #01ff70 !important;
    }

    .card-lime h5 {
        color: #01ff70 !important;
    }

    .card-lime h6 {
        color: #01ff70 !important;
    }

    .card-lime i {
        color: #01ff70 !important;
    }

.card-warning {
    -webkit-box-shadow: 0 0 1px 2px #ff7f00 !important;
    -moz-box-shadow: 0 0 1px 2px #ff7f00 !important;
    box-shadow: 0 0 1px 2px #ff7f00 !important;
    color: #ff7f00 !important;
}

    .card-warning a h6 {
        color: #ff7f00 !important;
    }

    .card-warning a p {
        color: #ff7f00 !important;
    }
    .card-warning p {
        color: #ff7f00 !important;
    }
    .card-warning h3 {
        color: #ff7f00 !important;
    }
    .card-warning h4 {
        color: #ff7f00 !important;
    }
    .card-warning h5 {
        color: #ff7f00 !important;
    }
    .card-warning h6 {
        color: #ff7f00 !important;
    }
    .card-warning i {
        color: #ff7f00 !important;
    }


.card-danger {
    -webkit-box-shadow: 0 0 1px 2px #f83e37 !important;
    -moz-box-shadow: 0 0 1px 2px #f83e37 !important;
    box-shadow: 0 0 1px 2px #f83e37 !important;
    color: #f83e37 !important;
}

    .card-danger a h6 {
        color: #f83e37 !important;
    }

    .card-danger a p {
        color: #f83e37 !important;
    }

    .card-danger p {
        color: #f83e37 !important;
    }

    .card-danger h3 {
        color: #f83e37 !important;
    }

    .card-danger h4 {
        color: #f83e37 !important;
    }

    .card-danger h5 {
        color: #f83e37 !important;
    }

    .card-danger h6 {
        color: #f83e37 !important;
    }

    .card-danger i {
        color: #f83e37 !important;
    }

.card-info {
    -webkit-box-shadow: 0 0 1px 2px #1cbccd !important;
    -moz-box-shadow: 0 0 1px 2px #1cbccd !important;
    box-shadow: 0 0 1px 2px #1cbccd !important;
    color: #1cbccd !important;
}

    .card-info a h6 {
        color: #1cbccd !important;
    }

    .card-info a p {
        color: #1cbccd !important;
    }

    .card-info p {
        color: #1cbccd !important;
    }

    .card-info h3 {
        color: #1cbccd !important;
    }

    .card-info h4 {
        color: #1cbccd !important;
    }

    .card-info h5 {
        color: #1cbccd !important;
    }

    .card-info h6 {
        color: #1cbccd !important;
    }

    .card-info i {
        color: #1cbccd !important;
    }

.card-success {
    -webkit-box-shadow: 0 0 1px 2px #00aa6a !important;
    -moz-box-shadow: 0 0 1px 2px #00aa6a !important;
    box-shadow: 0 0 1px 2px #00aa6a !important;
    color: #00aa6a !important;
}

    .card-success a h6 {
        color: #00aa6a !important;
    }

    .card-success a p {
        color: #00aa6a !important;
    }

    .card-success p {
        color: #00aa6a !important;
    }

    .card-success h3 {
        color: #00aa6a !important;
    }

    .card-success h4 {
        color: #00aa6a !important;
    }

    .card-success h5 {
        color: #00aa6a !important;
    }

    .card-success h6 {
        color: #00aa6a !important;
    }

    .card-success i {
        color: #00aa6a !important;
    }

.card-primary {
    -webkit-box-shadow: 0 0 1px 2px #6640b2 !important;
    -moz-box-shadow: 0 0 1px 2px #6640b2 !important;
    box-shadow: 0 0 1px 2px #6640b2 !important;
    color: #6640b2 !important;
}

    .card-primary a h6 {
        color: #6640b2 !important;
    }

    .card-primary a p {
        color: #6640b2 !important;
    }

    .card-primary p {
        color: #6640b2 !important;
    }

    .card-primary h3 {
        color: #6640b2 !important;
    }

    .card-primary h4 {
        color: #6640b2 !important;
    }

    .card-primary h5 {
        color: #6640b2 !important;
    }

    .card-primary h6 {
        color: #6640b2 !important;
    }

    .card-primary i {
        color: #6640b2 !important;
    }

.widget-user-image img {
    width: 215px;
    height: 215px;
}


.card-body2 {
    border-radius: .25rem !important;
    background-color: #2b2e4c !important;
}

.profil {
    cursor: pointer;
}

    .profil:hover {
        color: black !important;
    }
.select2-selection .select2-selection--multiple {
    border: none;
    font-size: 0.800rem;
    line-height: 1.5px;
}

.nopadding {
    padding: 3px !important;
}


.card-body2 {
    background-color: #2b2e4c;
}

.link {
    cursor: pointer;
}

    .link:hover {
        color: black !important;
    }

.icon-dot {
    width: 70px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

@media (min-width: 400px) {
    .icon-dot {
        width: 190px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}

@media (min-width: 768px) {
    .icon-dot {
        width: 100px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}

@media (min-width: 992px) {
    .icon-dot {
        width: 105px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}

@media (min-width: 1200px) {
    .icon-dot {
        width: 100px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}

@media (min-width: 1600px) {
    .icon-dot {
        width: 160px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}

.tooltip-warning .tooltip-inner {
    background: #ff7f00!important;
    color: #ffffff;
}

.tooltip-warning.bs-tooltip-top .arrow::before, .tooltip-warning.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #ff7f00 !important;
}

.tooltip-warning.bs-tooltip-right .arrow::before, .tooltip-warning.bs-tooltip-auto[x-placement^="right"] .arrow::before {
    border-right-color: #ff7f00 !important;
}

.tooltip-warning.bs-tooltip-bottom .arrow::before, .tooltip-warning.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
    border-bottom-color: #ff7f00 !important;
}

.tooltip-warning.bs-tooltip-left .arrow::before, .tooltip-warning.bs-tooltip-auto[x-placement^="left"] .arrow::before {
    border-left-color: #ff7f00 !important;
}