.bulk-learner-modal {
    &.modal-content {
        max-width: 570px;
        min-width: 570px;
    }
    .bulk-modal-close {
        top: 5px;
        right: 5px;
        cursor: pointer;
        position: absolute;
        svg {
            width: 32px;
            height: 32px;
        }
    }
    form {
        .float-label-input {
            position: relative;
            label {
                position: absolute;
                top: 13px;
                left: 28px;
                cursor: text;
                opacity: 0.7;
            }
            input:not([value=""],:not([value])),
            input:focus {
                padding-bottom: 5px;
                + label{
                    font-size: 10px;
                    top: 5px;
                }
            }
        }
        .consent {
            .consent-request {
                color:#9b9b9d;
                font-size: 11px;
                margin-bottom: 10px;
            }
            .consent-checkbox {
                position: relative;
                top: 7px;
                float: left;
                margin-right: 10px;
                + div {
                    display: inline-block;
                    width: 90%;
                    font-size: 11px;
                }
            }
            .consent-response {
                color: #1b1c21;
                font-weight: 600;
            }
            .consent-description {
                color: #9b9b9d;
                font-weight: 400;
                margin-top: 10px;
                * {
                    color: inherit;
                    font-weight: inherit;
                }
            }
        }
    }
    .modal-footer {
        button {
            border-radius: 0;
        }
    }
    .modal-body {
        text-align: left;
        max-height: 60vh;
        overflow-y: auto;
    }
    .error-msg {
        display: inline-flex;
        align-items: center;
        margin-top: 3px;
        font-size: 9px;
        color: #e30002;
        position: relative;
    }
}

.bulk_enroll_modal {
    .modal-dialog-centered {
        max-width: 100%;
    }
    .except-modal-header {
        display: block;
        text-align: left;
        padding: 20px 10px 0;
        h3 {
            font-weight: 900;
        }
        p {
            font-size: 13px;
        }
    }
    .error-border, &:focus:hover {
        border: 1px solid #e30002 !important;
    }
}

#pps_detailed_form_bulk, #pps_number_form_bulk {
    .float-label-input {
        position: relative;
        label {
            left: 16px;
        }
    }
}

.learner_lists.bulk_page {
    .icon-trash-empty {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 22px !important;
        padding: 0;
        height: 22px !important;
        svg {
            top: 0px !important;
        }
    }
    .learner-list-action {
        opacity: 1;
        position: relative;
        top: 0;
    }
}

.server-error-bulk-enroll {
    background: #d83434;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin: 0 15px 10px;
    border-radius: 5px;
}

.float-label-input {
    input+label {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 80%;
    }
}

.bulk-toaster {
    position: fixed;
    z-index: 2500;
    bottom: 10vh;
    width: 100%;
    display: flex;
    justify-content: center;
}

.bulk-toaster .content {
    color: #fff;
    background-color: #454b93;
    border-radius: 5px;
    padding: 10px;
    font-size: 12px;
    font-weight: bold;
    width: fit-content;
    display: none;
}

.bulk-toaster .content.error {
    background-color: #ff4545 !important;
}

.bulk-toaster.bulk-show .content{
    animation: toastView 3s ease-in;
    display: block;
}

.bulk-modal {
    background: rgb(0 0 0 / 60%);
    .modal-dialog {
        transform: translate(0, -50%)!important;
        top: 50%!important;
        margin-top: 0!important;
    }
}

@keyframes toastView {
    from {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}