/*!
 * Theme Name: Default
 * Package : DashLite
 * Author: Softnio
 * Author URI: http://themeforest.net/user/softnio
 * Version	 :	1.0.0
 * Updated	 :	07.23.2020
**/

.select2-selection__rendered{
    line-height: 18px!important;
}
.select2-selection{
    height: 35px!important;
    border: 1px solid #dbdfea!important;
}

.blink-btn {
    animation: blink 2s infinite;
}

@keyframes blink {
    0%   { opacity: 1; }
    50%  { opacity: 0.7; }
    100% { opacity: 1; }
}

.blink-bg {
    animation: blink-bg 1s infinite alternate;
}

@keyframes blink-bg {
    from {
        background-color: rgba(129, 83, 214, 0);
        color: #4910c6;
    }
    to   {
        background-color: #4910c6;
        color: #ffffff;
    }
}

.note-modal .modal-dialog {
    outline: 0!important;
    border-radius: 5px!important;
    box-shadow: none!important;
}

.finger-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    transition: 0.2s;
}
.finger-item:hover {
    background: #ececec;
}
.finger-icon {
    font-size: 1.2rem;
}

.sortable-placeholder {
    height: 50px;
    background: #f4f6fa;
    border: 2px dashed #ccc;
}