/* Add here all your CSS customizations */
.emp-topics {
    color: #6A6C6D !important;
}

.emp-topics:hover {
    color: #A4B2A8 !important;
    transition: 2s ease !important;
}

.emp-topics-img {
    width:44px !important;
    border-radius: 5px !important;
    margin-bottom: 5px !important;
}

.error-msg{
    color: red !important;
    font-size: 14px !important;
    font-weight: bold !important;
}

.show_details:hover {
    background: #dbe1dd !important;
    transition: 2s ease !important;
}

/* Image Upload */
.col-container{
    height: 250px;
    width: 100%;
    position: relative;
}

.col-container .col-wrapper{
    position: relative;
    height: 200px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
    border: 2px dashed #c2cdda;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.col-wrapper.active{
    border: none;
}

.col-wrapper .image{
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-wrapper img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.col-wrapper .icon{
    font-size: 100px;
    color: #9658fe;
    padding-left: 10px;
}

.col-wrapper .text{
    font-size: 15px;
    font-weight: 500;
    color: #5B5B7B;
}

.col-wrapper #cancel-btn i{
    position: absolute;
    font-size: 15px;
    right: 15px;
    top: 15px;
    color: #9658fe;
    cursor: pointer;
    display: none;
}

.col-wrapper.active:hover #cancel-btn i{
    display: block;
}

.col-wrapper #cancel-btn i:hover{
    color: #e74c3c;
}

.col-wrapper .file-name{
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 8px 0;
    font-size: 16px;
    color: #fff;
    display: none;
    background: linear-gradient(135deg,#3a8ffe 0%,#9658fe 100%);
}

.col-wrapper.active:hover .file-name{
    display: block;
}

.col-container #custom-btn {
    margin-top: 10px;
    display: block;
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 25px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    background: linear-gradient(135deg,#3a8ffe 0%,#9658fe 100%);
}

.col-container #custom-btn-file, .upload-excel {
    margin-top: 10px;
    margin-left: 10px;
    display: block;
    width: 20%;
    height: 50px;
    border: none;
    outline: none;
    border-radius: 25px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    background: linear-gradient(135deg,#3a8ffe 0%,#9658fe 100%);
}

.hidegalimage {
    display:none;
}

/* Edit, Delete Buttons */
.edit-item, .delete-item {
    padding: 0px 7px 0px 7px !important;
    align-content: center !important;
}

/* Data Tables */
.common-thead {
    background-color:#c6c6c6 !important;
}
