@media (min-width: 992px) {
    .cards-favorites .wdk-featured-card {
        height: 205px;
    }
}

.wdk-featured-card {
    position: relative;
    padding: 20px 20px 20px 20px;
    border: 1px solid var(--grey-01);
    border-radius: 10px;
    background-color: var(--white-01);
    transition: var(--time-01);
    height: 100%;
}

.wdk-featured-card.linked:hover {
    border-color: var(--document-find-wdk-featured-card-linked-hover);
    transition: .3s;
}

.wdk-featured-card.linked:hover .wdk-title {
    color: var(--document-find-wdk-featured-card-linked-title-hover);
    transition: .3s;
}

.wdk-featured-card.linked.grab:hover {
    cursor: grab;
}

.wdk-featured-card.linked.grabbing:hover {
    cursor: grabbing;
}

.wdk-featured-card.h-auto {
    height: initial;
}

.wdk-featured-card.full {
    width: 100%;
}

.wdk-featured-card.preview .file-upload-content {
    padding: 0 !important;
    border: none !important;
}

.wdk-featured-card.preview .file-upload-wrapper {
    height: 128px;
    width: 128px;
}

.wdk-featured-card.preview .image-upload-wrap {
    height: 128px;
    width: 128px;
}

.wdk-featured-card.preview .file-upload-content img {
    border-radius: 8px !important;
}

.wdk-featured-card.preview .image-upload-drag-text {
    margin: 0;
}

.wdk-featured-card.preview .file-upload-content .file-upload-wrap button {
    top: -40px !important;
    right: -190px !important;
    color: var(--tertiary) !important;
}

.wdk-featured-card.preview .file-upload-content .file-upload-image {
    height: 128px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.wdk-featured-card.preview .file-upload-content .file-upload-wrap button:hover {
    color: var(--tertiary-dark) !important;
}

.wdk-featured-card:not(:last-child) {
    margin-bottom: 20px;
}

.wdk-featured-card .row {
    margin-bottom: 0;
}

.wdk-featured-card .flex-fill > .wdk-card-title {
    min-height: 23px;
    padding-right: 80px !important;
    white-space: initial;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 576px) {
    .wdk-featured-card .flex-fill > .wdk-card-title {
        padding-right: 2.7rem !important;
        -webkit-line-clamp: 1;
        min-height: 1.5rem;
    }
}

.wdk-featured-card img:hover {
    cursor: pointer;
}

a:hover .wdk-featured-card {
    box-shadow: 5px 5px 14px rgba(0, 0, 0, .25);
}

a:hover .wdk-featured-card.disabled {
    cursor: auto;
    box-shadow: var(--box-shadow);
}

.wdk-featured-card .flex-fill {
    max-width: calc(100% - 168px);
}

@media (max-width: 576px) {
    .wdk-featured-card .flex-fill {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 992px) {
    .wdk-featured-card .flex-fill {
        max-width: 100%;
        min-width: 51%;
    }
}

.wdk-featured-card [aria-expanded="true"] [class*=icon-] {
    transform: rotate(180deg);
}

.wdk-featured-card-icon {
    font-size: 34px;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: var(--grey-01);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .wdk-featured-card-icon {
        font-size: 25px;
        width: 45px;
        height: 45px;
    }
}

.wdk-featured-card .wdk-title.fs-36 {
    line-height: 1;
}

.wdk-featured-card.primary {
    border-color: var(--primary);
}

.wdk-featured-card.primary .wdk-featured-card-icon,
.wdk-featured-card .primary .wdk-featured-card-icon {
    background-color: var(--secondary);
    color: var(--primary);
}

.wdk-featured-card-icon .primary {
    background-color: var(--secondary);
    color: var(--primary);
}

.wdk-featured-card.primary .wdk-group .wdk-title,
.wdk-featured-card .primary .wdk-group .wdk-title {
    color: var(--primary);
}

.wdk-featured-card.danger {
    border-color: var(--red-04);
}

.wdk-featured-card.danger .wdk-featured-card-icon,
.wdk-featured-card .danger .wdk-featured-card-icon {
    background-color: var(--red-01);
    color: var(--red-04);
}

.wdk-featured-card-icon.danger {
    background-color: var(--red-01);
    color: var(--red-04);
}

.wdk-featured-card.danger .wdk-group .wdk-title,
.wdk-featured-card .danger .wdk-group .wdk-title {
    color: var(--red-04);
}

.wdk-featured-card.success {
    border-color: var(--success);
}

.wdk-featured-card.success .wdk-featured-card-icon,
.wdk-featured-card .success .wdk-featured-card-icon {
    background-color: var(--green-01);
    color: var(--success);
}

.wdk-featured-card-icon.success {
    background-color: var(--green-01);
    color: var(--success);
}

.wdk-featured-card.success .wdk-group .wdk-title {
    color: var(--success);
}

.wdk-featured-card.warning {
    border-color: var(--warning);
}

.wdk-featured-card.warning .wdk-featured-card-icon,
.wdk-featured-card .warning .wdk-featured-card-icon {
    background-color: var(--yellow-01);
    color: var(--warning);
}

.wdk-featured-card-icon.warning {
    background-color: var(--yellow-01);
    color: var(--warning);
}

.wdk-featured-card.warning .wdk-group .wdk-title,
.wdk-featured-card .warning .wdk-group .wdk-title {
    color: var(--warning);
}

.wdk-featured-card.blue {
    border-color: var(--blue-04);
}

.wdk-featured-card.blue .wdk-featured-card-icon,
.wdk-featured-card .blue .wdk-featured-card-icon {
    background-color: var(--blue-01);
    color: var(--blue-04);
}

.wdk-featured-card-icon.blue {
    background-color: var(--blue-01);
    color: var(--blue-04);
}

.wdk-featured-card.blue .wdk-group .wdk-title,
.wdk-featured-card .blue .wdk-group .wdk-title {
    color: var(--blue-04);
}

.wdk-featured-card.light-blue {
    border-color: var(--primary);
}

.wdk-featured-card.light-blue .wdk-featured-card-icon,
.wdk-featured-card .light-blue .wdk-featured-card-icon {
    background-color: var(--light-blue);
    color: var(--primary);
}

.wdk-featured-card.light-blue .wdk-group .wdk-title,
.wdk-featured-card .light-blue .wdk-group .wdk-title {
    color: var(--primary);
}

.wdk-featured-card.tertiary {
    border-color: var(--tertiary);
}

.wdk-featured-card.tertiary .wdk-featured-card-icon,
.wdk-featured-card .tertiary .wdk-featured-card-icon {
    /*background-color: var(--tertiary);*/
    color: var(--tertiary);
}

.wdk-featured-card.tertiary .wdk-group .wdk-title,
.wdk-featured-card .tertiary .wdk-group .wdk-title {
    color: var(--white-01);
}

.wdk-featured-card.secondary {
    border-color: var(--primary);
}

.wdk-featured-card.secondary .wdk-featured-card-icon,
.wdk-featured-card .secondary .wdk-featured-card-icon {
    background-color: var(--secondary);
    color: var(--primary);
}

.wdk-featured-card.secondary .wdk-group .wdk-title,
.wdk-featured-card .secondary .wdk-group .wdk-title {
    color: var(--primary);
}

.wdk-featured-card.alternative {
    background-color: var(--grey-03);
}

.wdk-featured-card.alternative .wdk-featured-card-icon,
.wdk-featured-card .alternative .wdk-featured-card-icon {
    background-color: var(--white-01);
    color: var(--primary);
}

.wdk-featured-card.alternative .wdk-title,
.wdk-featured-card.alternative .wdk-text,
.wdk-featured-card.alternative .btn,
.wdk-featured-card.alternative [class*=btn] [class*=icon-] {
    color: var(--white-01);
}

.wdk-featured-card.alternative.primary {
    background-color: var(--primary);
    border-color: transparent;
}

.wdk-featured-card.alternative.primary .wdk-featured-card-icon,
.wdk-featured-card.alternative .primary .wdk-featured-card-icon {
    background-color: var(--secondary);
    color: var(--primary);
}

.wdk-featured-card.alternative.primary .wdk-title,
.wdk-featured-card.alternative.primary .wdk-text {
    color: var(--white-01);
}

.wdk-featured-card.alternative.secondary {
    background-color: var(--secondary);
    border-color: transparent;
}

.wdk-featured-card.alternative.secondary .wdk-featured-card-icon,
.wdk-featured-card.alternative .secondary .wdk-featured-card-icon {
    background-color: var(--primary);
    color: var(--secondary);
}

.wdk-featured-card.alternative.secondary .wdk-title,
.wdk-featured-card.alternative.secondary .wdk-text {
    color: var(--primary);
}

.wdk-featured-card.alternative.tertiary {
    background-color: var(--tertiary);
    border-color: transparent;
}

.wdk-featured-card.alternative.tertiary .wdk-featured-card-icon,
.wdk-featured-card.alternative .tertiary .wdk-featured-card-icon {
    background-color: var(--white-01);
    color: var(--tertiary);
}

.wdk-featured-card.alternative.tertiary .wdk-title,
.wdk-featured-card.alternative.tertiary .wdk-text {
    color: var(--white-01);
}

.wdk-featured-card.alternative.light {
    background-color: var(--grey-02);
    border-color: transparent;
}

.wdk-featured-card.alternative.light .wdk-featured-card-icon,
.wdk-featured-card.alternative .light .wdk-featured-card-icon {
    background-color: var(--primary);
    color: var(--grey-02);
}

.wdk-featured-card.alternative.light .wdk-title,
.wdk-featured-card.alternative.light .wdk-text {
    color: var(--primary);
}

.wdk-featured-card.alternative.danger {
    background-color: var(--red-04);
    border-color: transparent;
}

.wdk-featured-card.alternative.danger .wdk-featured-card-icon,
.wdk-featured-card.alternative .danger .wdk-featured-card-icon {
    background-color: var(--white-01);
    color: var(--red-04);
}

.wdk-featured-card.alternative.danger .wdk-title,
.wdk-featured-card.alternative.danger .wdk-text {
    color: var(--white-01);
}

.wdk-featured-card.alternative.success {
    background-color: var(--success);
    border-color: transparent;
}

.wdk-featured-card.alternative.success .wdk-featured-card-icon,
.wdk-featured-card.alternative .success .wdk-featured-card-icon {
    background-color: var(--white-01);
    color: var(--success);
}

.wdk-featured-card.alternative.success .wdk-title,
.wdk-featured-card.alternative.success .wdk-text {
    color: var(--white-01);
}

.wdk-featured-card.alternative.warning {
    background-color: var(--warning);
    border-color: transparent;
}

.wdk-featured-card.alternative.warning .wdk-featured-card-icon,
.wdk-featured-card.alternative .warning .wdk-featured-card-icon {
    background-color: var(--white-01);
    color: var(--warning);
}

.wdk-featured-card.alternative.warning .wdk-title,
.wdk-featured-card.alternative.warning .wdk-text {
    color: var(--white-01);
}

.wdk-featured-card.alternative.blue {
    background-color: var(--blue-04);
    border-color: transparent;
}

.wdk-featured-card.alternative.blue .wdk-featured-card-icon,
.wdk-featured-card.alternative .blue .wdk-featured-card-icon {
    background-color: var(--white-01);
    color: var(--blue-04);
}

.wdk-featured-card.alternative.blue .wdk-title,
.wdk-featured-card.alternative.blue .wdk-text {
    color: var(--white-01);
}

.wdk-featured-card.alternative.light-blue {
    background-color: var(--light-blue);
    border-color: transparent;
}

.wdk-featured-card.alternative.light-blue .wdk-featured-card-icon,
.wdk-featured-card.alternative .light-blue .wdk-featured-card-icon {
    background-color: var(--primary);
    color: var(--primary);
}

.wdk-featured-card.alternative.light-blue .wdk-title,
.wdk-featured-card.alternative.light-blue .wdk-text {
    color: var(--primary);
}

.wdk-featured-card .wdk-featured-card-icon.secondary {
    background-color: var(--secondary);
    color: var(--primary);
}

.wdk-featured-card .wdk-featured-card-icon.complementary1 {
    background-color: var(--complementary-01);
    color: var(--primary);
}

.wdk-featured-card .wdk-featured-card-icon.complementary3 {
    background-color: var(--complementary-03);
    color: var(--primary);
}

.wdk-featured-card .wdk-featured-card-icon.light-blue {
    background-color: var(--light-blue);
    color: var(--primary);
}

.wdk-featured-card.inactive {
    opacity: .5;
}

.wdk-featured-card.raised {
    box-shadow: var(--box-shadow);
}

.wdk-featured-card > .wdk-group:last-child > .btn.btn-featured {
    margin-bottom: -8px;
}

.wdk-featured-card-control > .wdk-group:first-child {
    display: inline-flex;
    width: initial;
}

.wdk-featured-card-control > .wdk-group:first-child + .btn.btn-featured {
    float: right;
}

.wdk-featured-card-collapsed:before {
    content: "";
    display: block;
    height: 20px;
}

.wdk-featured-card-collapsed {
    max-height: 0px;
    opacity: 0;
    overflow: hidden;
    transition: var(--time-01);
}

.cards-favorites .wdk-featured-card.opened {
    height: initial;
}

.wdk-featured-card.opened .wdk-featured-card-collapsed {
    max-height: 500px;
    opacity: 1;
}

.wdk-featured-card.opened.grabbing .wdk-featured-card-collapsed {
    max-height: 0px;
    opacity: 0;
}

.document-find ~ div .wdk-featured-card.opened .flex-fill.h-90 {
    height: initial !important;
    max-height: initial !important;
}

.wdk-featured-card:not(.opened) .btn .notopen,
.wdk-featured-card.opened .btn .open {
    display: none;
}

.wdk-featured-card.opened .btn .icon-keyboard_arrow_down {
    transform: rotate(180deg);
}

.wdk-featured-card:not(.opened) .wdk-featured-card-collapsed > * {
    display: none;
}

.wdk-featured-card .btn.btn-featured .icon-keyboard_arrow_down,
.wdk-featured-card .btn.btn-featured .icon-fullscreen,
.wdk-featured-card .btn.btn-featured .icon-fullscreen_exit {
    font-size: 22px;
}

.wdk-featured-card .btn.btn-featured {
    height: 36px !important;
    right: -6px !important;
    align-self: end;
}

/* Expands when the card is opened */
.wdk-featured-card:not(.opened) .ewtcio {
    display: block;
    position: relative;
    width: 90%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wdk-featured-card.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 9999999;
}

.wdk-featured-card.fullscreen ~ .wdk-fullscreen-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999998;
    background-color: rgba(0,0,0,.8);
}

.wdk-featured-card.fullscreen .btn .open,
.wdk-featured-card.fullscreen .btn .icon-fullscreen,
.wdk-featured-card:not(.fullscreen) .btn .icon-fullscreen_exit {
    display: none;
}

.wdk-featured-card.fullscreen .btn .notopen,
.wdk-featured-card.fullscreen .btn .icon-fullscreen_exit {
    display: initial;
}

.wdk-fullscreen-header .btn.btn-featured {
    position: absolute;
    top: 0;
    right: 16px;
}

.wdk-fullscreen-header {
    padding-right: 104px;
}

.wdk-featured-card.fullscreen {
    display: flex;
    flex-direction: column;
    border-radius: 0;
    padding-top: 100px;
}

.wdk-featured-card.fullscreen .wdk-fullscreen-header {
    padding: 20px 104px 20px 20px;
    background-color: var(--grey-01);
    width: 100%;
    max-width: 100%;
    top: 0;
    position: absolute;
    left: 0;
}

@media (max-width: 992px) {
    .wdk-featured-card.fullscreen .wdk-fullscreen-header {
        padding: 20px 64px 20px 20px;

    }

    .wdk-featured-card.fullscreen .wdk-fullscreen-header h2.wdk-title {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.wdk-featured-card.fullscreen .wdk-fullscreen-header .btn.btn-featured {
    top: 11px;
}

.wdk-card-fav-btn {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 10px;
    right: 50px;
    cursor: pointer;
}

@media (max-width: 576px) {
    .wdk-card-fav-btn {
        right: 10px;
    }
}

.wdk-card-fav-btn:hover {
    color: var(--tertiary-dark);
    transition: .5s;
}

.wdk-card-fav-btn [class*=icon-] {
    font-size: 32px;
    color: var(--tertiary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--time-01);
}

.wdk-card-open-btn {
    width: 44px;
    height: 44px !important;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.document-find ~ div .wdk-card-open-btn {
    color: var(--document-find-open_new_tab-btn-color) !important;
}

.document-find ~ div .wdk-card-open-btn:hover {
    color: var(--document-find-open_new_tab-btn-color-hover) !important;
}

.wdk-featured-card:not(.favorite) .wdk-card-fav-btn .icon-favorite,
.wdk-featured-card.favorite .wdk-card-fav-btn .icon-favorite_border {
    opacity: 0;
    display: none;
}

.wdk-featured-card:not(.favorite) .wdk-card-fav-btn:hover .icon-favorite {
    opacity: 1;
    display: block;
    transition-duration: .5s;
    transition-property: opacity;
}

@keyframes wipe-in-down {
    from {
        clip-path: inset(0 0 100% 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

.wdk-featured-card:not(.favorite) .wdk-card-fav-btn:hover .icon-favorite {
    animation: .7s cubic-bezier(.25, 1, .30, 1) wipe-in-down both;
}

.wdk-featured-card.favorite .wdk-card-fav-btn:hover .icon-favorite {
    color: var(--tertiary-dark);
    transition: .5s;
}

.wdk-featured-card-trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: var(--time-01);
    font-size: 24px;
}

.wdk-featured-card-trigger:hover {
    background-color: rgba(0,0,0,.1);
}

@media (max-width: 576px) {
    .wdk-featured-card > .wdk-group.g5.nowrap {
        flex-direction: column;
        justify-content: center;
        align-items: center;

        /* Card on document-find */
        padding-left: 16px;
    }

    .wdk-featured-card > .wdk-group.g5.nowrap > .flex-fill {
        max-width: 100%;
    }
}

.wdk-featured-card.ui-sortable-handle {
    padding: 20px 20px 20px 30px;
}

@media (min-width: 577px) {
    .wdk-featured-card.ui-sortable-handle::before {
        content: "\eb41";
        display: block;
        position: absolute;
        left: 4px;
        top: 50%;
        width: 20px;
        height: 20px;
        font-size: 22px;
        margin-right: 12px;
        font-family: 'icomoon' !important;
        line-height: 1;
        cursor: move;
        cursor: grab;
        cursor: -moz-grab;
        cursor: -webkit-grab;
        transform: translateY(-50%);
    }
}

@media(min-width: 992px) {
    .cards-favorites,
    .cards-mostaccessed {
        position: relative;
        max-height: calc(100vh - 170px);
        overflow-y: auto;
        overflow-x: visible;
        scrollbar-width: thin !important;
    }

    .cards-favorites::-webkit-scrollbar-track,
    .cards-mostaccessed::-webkit-scrollbar-track {
        background-color: var(--white-02) !important;
        -webkit-box-shadow: inset 0 0 6px var(--white-02) !important;
        box-shadow: inset 0 0 6px var(--white-02) !important;
    }

    .cards-favorites::-webkit-scrollbar,
    .cards-mostaccessed::-webkit-scrollbar {
        background-color: var(--white-02) !important;
        width: 5px !important;
        height: 5px;
    }

    .cards-favorites::-webkit-scrollbar-thumb,
    .cards-mostaccessed::-webkit-scrollbar-thumb {
        background-color: var(--scroll-thumb-light-custom-color) !important;
        border-radius: 10px;
    }
}

.wdk-featured-card .card-image {
    margin-right: 16px !important;
}

/* Has line left */
.wdk-featured-card.has-line-left {
    padding-left: 28px;
    border-width: 1px;
    border-style: solid;
}

.wdk-featured-card.has-line-left:before {
    content: "";
    position: absolute;
    width: 4px;
    height: calc(100% - 40px);
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: black;
    border-radius: 8px;
}

.wdk-featured-card.has-line-left .wdk-featured-card-icon {
    background-color: transparent;
    font-size: 24px;
}

.wdk-featured-card.has-line-left.complementary-01 {
    border-color: var(--complementary-01);
}

.wdk-featured-card.has-line-left.complementary-01:before {
    background-color: var(--complementary-01);
}

.wdk-featured-card.has-line-left.black {
    border-color: var(--black);
}

.wdk-featured-card.has-line-left.black:before {
    background-color: var(--black);
}

.wdk-featured-card.has-line-left.secondary-dark {
    border-color: var(--secondary-dark);
}

.wdk-featured-card.has-line-left.secondary-dark:before {
    background-color: var(--secondary-dark);
}

.wdk-featured-card.has-line-left.tertiary {
    border-color: var(--tertiary);
}

.wdk-featured-card.has-line-left.tertiary:before {
    background-color: var(--tertiary);
}

.wdk-featured-card.border-left-16 {
    border-left: 16px solid var(--grey-01);
}
.wdk-featured-card.border-left-8 {
    border-left: 8px solid var(--grey-01);
}
.wdk-featured-card.disabled,
.wdk-featured-card:disabled {
    cursor: not-allowed;
}
.wdk-featured-card.disabled:hover,
.wdk-featured-card:disabled:hover,
.wdk-featured-card[disabled]:hover {
    cursor: not-allowed !important;
    background-color: var(--white-01) !important;
}

.wdk-featured-card.disabled:hover a,
.wdk-featured-card:disabled:hover a,
.wdk-featured-card[disabled]:hover a {
    cursor: not-allowed !important;
    background-color: transparent !important;
}