.widget-title {
    width: 100%;
    text-align: center;
}

#offboardingConfigModal .modal-content textarea,
#onboardingConfigModal .modal-content textarea {
    height: 50vh;
}

.onboarding .errors {
    background-color: #ffe1e1;
    border-radius: 1rem;
}

.onboarding .options {
    border-radius: 1rem;
}

.onboarding .options button {
    margin-bottom: 1rem;
    margin-right: .5rem;
}

.onboarding .employee-group {
    position: relative;
    float: left;
    width: 100%;
    border: solid lightgrey;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.onboarding .employee-group .head {
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.onboarding .employee-group .bucket {
    margin: 1rem 0 1rem 0;
    border-radius: 1rem;
}

.onboarding .employee-group .bucket .task {
    position: relative;
    border: 1px dotted lightgrey;
    border-radius: 1rem;
    padding: .25rem;
    margin: .5rem 0 .5rem 0;
    overflow: hidden;
}

.onboarding .employee-group .bucket .task .completed-sign {
    float: left;
    width: 40px;
    text-align: center;
}

.onboarding .employee-group .bucket .task .completed-sign img {
    max-height: 15px;
    height: 100%;
    margin-top: 5px;
}

.onboarding .employee-group .bucket .task .task-options {
    float: right;
    width: 60px;
}

.onboarding .employee-group .bucket .task .task-options a {
    float: right;
}

.onboarding .employee-group .bucket .task .task-options img {
    width: 100%;
    max-width: 20px;
    margin-left: 10px;
    margin-top: 5px;
}

.onboarding .employee-group .bucket .task .task-title {
    float: left;
    font-weight: bold;
    font-size: initial;
    width: calc(100% - 100px);
}

.onboarding .employee-group .bucket .task .description {
    float: left;
    display: inline-block;
    margin-left: 40px;
    width: calc(100% - 40px);
}

@media screen and (max-width: 780px) {
    .onboarding .employee-group .bucket .task .task-title {
        width: calc(100% - 40px);
    }
}