.box-quick-create-task .select2-selection, .box-quick-create-task .select2-selection--single, .select2-selection--multiple {
    background: #f8f9fa !important;
    border: 1px solid #ced4da !important;
}
.box-quick-create-task .select2-container--disabled .select2-selection--single, .box-quick-create-task .select2-container--disabled .select2-selection--multiple {
    border: 1px solid #ced4da !important;
    background-color: #eee !important;
}
.box-quick-create-task .select2-container--disabled .select2-selection__choice {
    padding-left: 0 !important;
}
.box-quick-create-task .select2-container--disabled .select2-selection__arrow {
    display: none !important;
}
.box-quick-create-task .select2-selection--single {
    height: 33.5px !important;
    padding-top: 5px !important;
}
.btn-box-quick-create-task{
    position: fixed !important;
    bottom: 100px !important;
    right: 20px !important;
    z-index: 20 !important;
    padding: 5px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
    line-height: 1.5;
    background: #ffffffba;
}

.btn-box-quick-create-task.hide{
    width: 0;
    height: 0;
    opacity: 0;
    padding: 0;
    overflow: hidden;
}

.btn-box-quick-create-task:hover{
    transform: translateY(-2px);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}

.box-quick-create-task{
    position: fixed !important;
    bottom: 100px !important;
    right: 20px !important;
    z-index: 20 !important;
    opacity: 0;
    width: 0;
    height: 0;
    transition: 0.3s all ease-in-out;
    overflow: hidden;
    box-shadow: 0px -2px 12px rgba(0, 0, 0, 0.2);
    border-radius: 10px 10px 0px 0px;
}

.box-quick-create-task.show{
    opacity: 1;
    width: 450px;
    max-width: 90vw;
    /* height: auto;
    max-height: 70vh;
    overflow-y: auto; */
    min-height: 65vh;
    z-index: 21;
}

.box-quick-create-task .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    border: 2px solid #ccc;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}
.box-quick-create-task .success-animation {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

.box-quick-create-task .hidden {
    display: none;
}

.box-quick-create-task .checkmark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #4bb71b;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb71b;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.box-quick-create-task .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #4bb71b;
    fill: #fff;
    animation: stroke .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.box-quick-create-task .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

.box-quick-create-task .card-body{
    height: auto;
    max-height: 65vh;
    overflow: hidden;
    overflow-y: auto;
}

.pointer-events-none {
    pointer-events: none;
}
.box-quick-task-success {
    position: fixed !important;
    bottom: 100px !important;
    right: 20px !important;
    z-index: 9998 !important;
    opacity: 0;
    width: 0;
    height: 0;
    transition: 0.3s all ease-in-out;
    overflow: hidden;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.box-quick-task-success.show {
    opacity: 1;
    width: 450px;
    max-width: 90vw;
    height: auto;
    overflow: visible;
}

.box-quick-task-success .card-body {
    padding: 30px;
}

.box-quick-task-success .alert-success {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
}

@keyframes stroke { 100% { stroke-dashoffset: 0; } }
@keyframes scale  { 50% { transform: scale3d(1.1,1.1,1);} }
@keyframes fill   { 100% { box-shadow: inset 0px 0px 0px 20px #4bb71b; } }
@keyframes spin   { 100% { transform: rotate(360deg); } }