.my-card
{
    padding-inline: 20px;
    padding-block: 15px;
    box-shadow: 0 1px 2px 0 rgba(33, 33, 33, 0.14), 0 0 1px 0 rgba(0, 0, 0, 0.14);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 0px solid transparent;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    word-wrap: none;
    background: #fff;
}
.container-fluid
{
    display:grid;
}

.form-group .pic-container, .form-group .file-container
{
    display:flex;
    gap: 10px;
    flex-wrap: wrap;
}
.form-group .pic-wrappper, .form-group .file-wrappper
{
    position: relative;
    border: 1px solid #e0e0e0;
    width: 150px;
    /* min-height: 100px; */
    /* background-image: url(/assets/img/placeholder.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px;
    background-color: #f4f4f4;
    
    & .progress
    {
        position:absolute;
        bottom:0px;
        left:0px;
        width:100%;
        margin:0px;
    }

    & img
    {
        width:100%;

    }
    & .delete
    {
        position: absolute;
        width:24px;
        height:24px;
        top:-10px;
        right:-10px;
        cursor:pointer;
        
        z-index: 10;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23ff0000'%3E%3Cpath d='m336-280 144-144 144 144 56-56-144-144 144-144-56-56-144 144-144-144-56 56 144 144-144 144 56 56ZM480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Z'/%3E%3C/svg%3E");

        & span
        {
            color:#fff;
        }
    }


}
.form-group .file-wrappper
{
    width:50px;
    height: max-content;
    min-height: unset;
    border:0px;
}
.form-group .file-upload
{
    position: absolute;
    top:-1000px;

}


.btn-upload-file
{
    min-height: 10px !important;
    min-width: 10px !important;
    padding: 0px !important;
    margin-left: 5px !important;
}



@media (max-width: 767px) {
    .mobile-padding-inline
    {
        padding-inline: 20px;
    }

    .table thead th:last-child
    {
       min-width: 100px;

    }
}



