﻿.toast-bg-success {
    background-color: green;
    color: #fff;
}

.toast-bg-danger {
    background-color: red;
    color: #fff;
}

.toast-bg-warning {
    background-color: peru;
    color: #fff;
}

.toast-bg-info {
    background-color: gray;
    color: #fff;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

    .rating > input {
        display: none;
    }

    .rating > label {
        position: relative;
        width: 1em;
        color: #FFD600;
        cursor: pointer;
    }

        .rating > label::before {
            content: "\2605";
            position: absolute;
            opacity: 0;
        }

        .rating > label:hover:before,
        .rating > label:hover ~ label:before {
            opacity: 1 !important;
        }

    .rating > input:checked ~ label:before {
        opacity: 1;
    }

    .rating:hover > input:checked ~ label:before {
        opacity: 0.4;
    }

.projeUl {
    padding: 0;
}

#prgLoader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(6, 6, 6, 0.59);
    display: none;
    z-index: 10000;
}

.progressLoading {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.pictureP img {
    width: 120px;
    resize: both;
}

.up-arrow {
    width: 0;
    height: 0;
    border: solid 5px transparent;
    background: transparent;
    border-bottom: solid 7px gray;
    border-top-width: 0;
    cursor: pointer;
}

.down-arrow {
    width: 0;
    height: 0;
    border: solid 5px transparent;
    background: transparent;
    border-top: solid 7px gray;
    border-bottom-width: 0;
    margin-top: 1px;
    cursor: pointer;
}

#Photo-error {
    margin-top: -10px;
}

.image-previewer {
    height: 220px;
    width: 220px;
    display: flex;
    border-radius: 10px;
    border: 1px solid lightgrey;
    object-fit: cover;
}

#FormFile {
    margin-top: 15px;
    width: 220px;
    border-radius: 1rem;
    padding: 10px;
    color: transparent;
    font-weight: bold;
    border: 1px solid lightgrey;
}

.input-title {
    position: relative;
    margin-bottom: .5rem;
}

.infoimg {
    resize: both;
    width: 12px;
    top: 5px;
    right: 5px;
    position: absolute;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #dedbdb;
    border-radius: 10px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0.17rem 0.75rem 0.17rem 0.75rem;
    min-height: 28px;
}

.select2-container .select2-selection--single {
    height: 36px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 0px;
    top: 50%;
    right: 3px;
}

.select2-container .select2-selection--multiple {
    height: 36px !important;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #dedbdb;
    border-radius: 10px;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    height: 30px !important;
    overflow-y: auto !important;
    width: 100%;
    margin:2px;
}

.projeTitle {
    padding-left: 5px;
    font-weight: 600;
    font-size: 1.5em;
    color: #2f3132;
    margin-bottom: 10px;
}
gallery .box {
    width: 220px;
    position: relative
}

.delete {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 32px;
}

.gallery .box img {
    width: 100%
}

.zoom {
    transition: transform .2s; 
}

    .zoom:hover {
        -ms-transform: scale(3)!important; 
        -webkit-transform: scale(3)!important; 
        transform: scale(3)!important;
        z-index:20000;
        position:absolute;
    }