/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.notice-wrap .notice{
   padding: 10px 20px;
   border-radius: 10px;
}
.notice.error{
    color: #000;
    background: #ec1c501c;
    border-radius: 10px;
}
.notice.success{
    color: #000;
    background: #08d17787;
}
.single-employee{
    margin-top: 15px;
}
.single-employee img,
.single-employee-education img{
    border-radius: 5px;
}
.single-employee-education img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.single-employee .employee-info{
    position: relative;
}
.single-employee .actions{
    position: absolute;
    top: 5px;
    right: 10px;
}
.single-employee .flex{
    flex-direction: column;
    justify-content: space-between;
}
.single-employee .actions .edit-user{
    cursor: pointer;
}
.single-employee .actions svg{
    width: 21px;
    height: auto;
}
.single-employee .employee-info .name{
    font-size: 24px;
    font-weight: 500;
}
.single-employee .grid-1-3,
.single-employee-education.grid-1-3{
    grid-template-columns: 150px auto;
    gap:20px;
    row-gap: 20px;
    column-gap: 20px;
}
.single-employee-education .course-info a{
    font-size: 21px;
}
.single-employee-education .data{
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}
.single-employee-education .course-info p{
    font-size: 14px;
    margin-top: 2px;
    margin-bottom: 0px;
}
.employee-header{
    justify-content: space-between;
}
#edit-employee .employee-name{
    color:#254e7e;
}
.employee-progress-tracker,
.employee-quiz-tracker{
    width: 100%;
    height: 15px;
    background: #e5e5e5;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.employee-treshold{
    border-right: 2px solid #ec1c50;
    width: 0%;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    transition: 750ms ease-in-out;
}
.employee-progress-tracker .employee-progress{
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #1e3b5d, #2f5684);
    transition: 750ms ease-in-out;
}
.employee-quiz-tracker .employee-progress{
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #1e3b5d, #2f5684);
    transition: 750ms ease-in-out;
}
.company-manager-addfields .select2-selection.select2-selection--multiple .select2-selection__choice{
    margin-top: 5px !important;
    font-size: 0.9em !important;
    text-wrap: wrap;
    word-break: break-all;
}
.company-manager-addfields{
    margin:5px 0px;
}
.select2-selection.select2-selection--multiple{
    background-position:right 5px center !important;
    padding: 5px 25px 0px 10px !important;
    height: 100% !important;
    max-height: 120px;
    overflow-y: auto;
}
.select2-selection.select2-selection--multiple::-webkit-scrollbar{
    width:3px;
}

.select2-selection.select2-selection--multiple::-webkit-scrollbar-thumb{
    background: #ec1c50;
    border-radius: 5px;
}

.woocommerce-cart-form__cart-item td{
    padding:0.5rem 1rem !important;
}
@media (max-width:768px){
    .single-employee .grid-1-3{
        grid-template-columns: 80px auto;
        gap: 5px;
        row-gap: 5px;
        column-gap: 5px;
    }
    .single-employee .actions {
        top: 5px;
        right: 0px;
    }
    .single-employee .employee-info .name {
        margin-bottom: 0px;
        font-size: 21px;
        padding-right: 25px;
    }
    #edit-employee .tutor-modal-body,
    #create-employee .tutor-modal-body{
        padding: 15px 25px !important;
    }
    #edit-employee .tutor-modal-delete-footer button,
    #create-employee .tutor-modal-delete-footer button{
        padding: 15px 25px !important;
    }
}

.profile-image{
    position: relative;
 }
 .edit-image{
    transition: 150ms;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;
    opacity: 0;
    box-sizing: border-box;
    padding: 15px;
    cursor: pointer;
 }
 .edit-image:hover{
    opacity: 1;
 }
 .edit-image svg{
    height: 100%;
    width: 100%;
 }