/**
 * Devders Wishlist — Preset Style 1 CSS
 * Classic Grid / List card-based layout (ported from wishlist1.html)
 * All selectors scoped under .devders-wl-container
 */

/* ─── Container ──────────────────────────────────────────────────── */
.devders-wl-container {
    max-width: 100%;
    margin: 0 auto;
}

/* @media (min-width: 640px) {
    .devders-wl-container {
        padding: 1.5rem 1.25rem;
    }
}

@media (min-width: 1024px) {
    .devders-wl-container {
        padding: 2rem 2rem;
    }
} */

/* ─── Page Header ────────────────────────────────────────────────── */
.devders-wl-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .devders-wl-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.devders-wl-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.devders-wl-header-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: var(--dw-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.devders-wl-header-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--dw-primary);
    fill: var(--dw-primary);
}

.devders-wl-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dw-text-main);
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .devders-wl-title {
        font-size: 1.5rem;
    }
}

.devders-wl-subtitle {
    font-size: 0.75rem;
    color: var(--dw-text-sub);
    margin-top: 0.125rem;
}

.devders-wl-filtered-count {
    color: var(--dw-text-light);
    font-weight: 400;
}

/* ─── View Toggles ───────────────────────────────────────────────── */
.devders-wl-view-toggles {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.devders-wl-view-btn {
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--dw-border-color);
    background: #fff;
    color: var(--dw-text-sub);
    display: flex;
    transition: color 0.2s;
    outline: none;
    cursor: pointer;
}

.devders-wl-view-btn:focus {
    box-shadow: 0 0 0 2px var(--dw-primary);
}

.devders-wl-view-btn.active {
    color: var(--dw-primary);
}

.devders-wl-view-btn svg {
    width: 1rem;
    height: 1rem;
}

/* ─── Search Bar ─────────────────────────────────────────────────── */
.devders-wl-search-bar {
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid var(--dw-border-color);
    padding: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

@media (min-width: 640px) {
    .devders-wl-search-bar {
        padding: 0.75rem 1rem;
    }
}

.devders-wl-search-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.devders-wl-search-wrapper>svg:first-child {
    position: absolute;
    left: 0.75rem;
    width: 1rem;
    height: 1rem;
    color: var(--dw-text-light);
    pointer-events: none;
}

.devders-wl-container input.devders-wl-search-input {
    width: 100%;
    padding: 0.5rem 2rem 0.5rem 2.25rem;
    border: 1px solid var(--dw-border-color);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--dw-text-main);
    background: var(--dw-surface);
    outline: none;
    transition: border-color 0.15s;
}

.devders-wl-container input.devders-wl-search-input:focus {
    border-color: var(--dw-primary);
    box-shadow: 0 0 0 2px var(--dw-primary-light);
}

.devders-wl-container input.devders-wl-search-input::placeholder {
    color: var(--dw-text-light);
}

.devders-wl-clear-search {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    padding: 0.25rem;
    color: var(--dw-text-light);
    display: none;
    align-items: center;
    cursor: pointer;
}

.devders-wl-clear-search:hover {
    color: var(--dw-text-main);
}

.devders-wl-clear-search svg {
    width: 0.875rem;
    height: 0.875rem;
}

/* ─── Toolbar ────────────────────────────────────────────────────── */
.devders-wl-toolbar {
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid var(--dw-border-color);
    padding: 0.75rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .devders-wl-toolbar {
        padding: 1rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.devders-wl-toolbar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.devders-wl-select-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.devders-wl-select-text {
    font-size: 0.875rem;
    color: var(--dw-text-main);
    font-weight: 500;
}

.devders-wl-selected-info {
    font-size: 0.75rem;
    color: var(--dw-text-light);
}

.devders-wl-toolbar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.devders-wl-sort-btn {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid var(--dw-border-color);
    background: #fff;
    color: var(--dw-text-sub);
    transition: color 0.15s, border-color 0.15s;
    outline: none;
    cursor: pointer;
}

.devders-wl-sort-btn:hover {
    border-color: var(--dw-primary);
    color: var(--dw-primary);
}

.devders-wl-sort-btn:focus {
    box-shadow: 0 0 0 2px var(--dw-primary);
}

.devders-wl-sort-btn.active {
    color: var(--dw-primary);
    border-color: var(--dw-primary);
}

.devders-wl-toolbar-divider {
    display: none;
    width: 1px;
    height: 1.25rem;
    background: var(--dw-border-color);
    margin: 0 0.25rem;
}

@media (min-width: 640px) {
    .devders-wl-toolbar-divider {
        display: block;
    }
}

.devders-wl-action-btn {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.15s;
    outline: none;
    cursor: pointer;
}

.devders-wl-action-btn:focus {
    box-shadow: 0 0 0 2px var(--dw-primary);
}

.devders-wl-action-btn svg {
    width: 0.875rem;
    height: 0.875rem;
}

.devders-wl-action-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.devders-wl-btn-delete {
    border: 1px solid var(--dw-border-color);
    background: #fff;
    color: var(--dw-text-sub);
}

.devders-wl-btn-delete:hover:not(:disabled) {
    color: var(--dw-primary);
    border-color: var(--dw-primary);
}

.devders-wl-btn-cart {
    border: none;
    background: var(--dw-primary);
    color: #fff;
}

.devders-wl-btn-cart:hover:not(:disabled) {
    background: var(--dw-primary-hover);
}

/* ─── Pagination Info Bar ────────────────────────────────────────── */
.devders-wl-pag-info-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.devders-wl-pag-info {
    font-size: 0.75rem;
    color: var(--dw-text-sub);
}

.devders-wl-pag-info span {
    font-weight: 500;
    color: var(--dw-text-main);
}

.devders-wl-per-page-group {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.devders-wl-per-page-label {
    font-size: 0.75rem;
    color: var(--dw-text-sub);
}

.devders-wl-per-page-select {
    appearance: none;
    -webkit-appearance: none;
    width: auto;
    font-size: 0.75rem;
    border: 1px solid var(--dw-border-color);
    border-radius: 0.375rem;
    padding: 0.375rem 1.75rem 0.375rem 0.5rem;
    background-color: #fff;
    color: var(--dw-text-main);
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23757575' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    outline: none;
    font-family: inherit;
}

.devders-wl-per-page-select:focus {
    box-shadow: 0 0 0 2px var(--dw-primary);
    border-color: var(--dw-primary);
}

/* ─── Grid / List Container ──────────────────────────────────────── */
.devders-wl-items {
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .devders-wl-items {
        gap: 1rem;
    }
}

.devders-wl-view-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
    .devders-wl-view-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .devders-wl-view-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .devders-wl-view-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.devders-wl-view-list {
    display: flex;
    flex-direction: column;
}

/* ─── Card Base ──────────────────────────────────────────────────── */
.devders-wl-card {
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid var(--dw-border-color);
    overflow: hidden;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.devders-wl-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.devders-wl-card-grid {
    display: flex;
    flex-direction: column;
}

.devders-wl-card-list {
    display: flex;
    flex-direction: row;
}

/* ─── Out of Stock / Discount Badge ──────────────────────────────── */
.devders-wl-oos-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.65);
    pointer-events: none;
}

.devders-wl-oos-badge {
    background: rgba(31, 41, 55, 0.8);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.devders-wl-discount-badge {
    background: var(--dw-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 2px;
    line-height: 1.4;
    position: absolute;
    bottom: 0.5rem;
    left: 0.625rem;
    z-index: 10;
}

.devders-wl-inline-discount {
    margin-left: 0.5rem;
    position: static;
}

/* ─── Image Areas ────────────────────────────────────────────────── */
.devders-wl-grid-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.devders-wl-list-img {
    position: relative;
    flex-shrink: 0;
    width: 7rem;
}

@media (min-width: 640px) {
    .devders-wl-list-img {
        width: 9rem;
    }
}

@media (min-width: 768px) {
    .devders-wl-list-img {
        width: 11rem;
    }
}

.devders-wl-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Card Controls ──────────────────────────────────────────────── */
.devders-wl-card-checkbox {
    position: absolute;
    top: 0.625rem;
    left: 0.625rem;
    z-index: 20;
    cursor: pointer;
}

.devders-wl-card-remove {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    z-index: 20;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    opacity: 0;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    outline: none;
    cursor: pointer;
}

.devders-wl-card-remove svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--dw-text-sub);
    transition: color 0.15s;
}

.devders-wl-card-remove:hover,
.devders-wl-card-remove:focus {
    background: #fef2f2;
    transform: scale(1.1);
}

.devders-wl-card-remove:hover svg,
.devders-wl-card-remove:focus svg {
    color: var(--dw-primary);
}

.devders-wl-card:hover .devders-wl-card-remove,
.devders-wl-card:focus-within .devders-wl-card-remove,
.devders-wl-card-remove:focus-visible {
    opacity: 1;
}

@media (max-width: 768px) {
    .devders-wl-card-remove { opacity: 1; }
}

/* ─── Card Body (Grid) ───────────────────────────────────────────── */
.devders-wl-grid-body {
    padding: 0.625rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (min-width: 640px) {
    .devders-wl-grid-body {
        padding: 0.75rem;
    }
}

/* ─── Card Body (List) ───────────────────────────────────────────── */
.devders-wl-list-body {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    flex: 1;
}

@media (min-width: 640px) {
    .devders-wl-list-body {
        padding: 1rem;
    }
}

/* ─── Product Title ──────────────────────────────────────────────── */
.devders-wl-product-title {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--dw-text-main);
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.375rem;
    min-height: 2.5em;
    text-decoration: none;
}

.devders-wl-product-title:hover {
    color: var(--dw-primary);
}

@media (min-width: 640px) {
    .devders-wl-product-title {
        font-size: 0.875rem;
        min-height: 2.8em;
    }
}

/* ─── Shop Name ──────────────────────────────────────────────────── */
.devders-wl-shop-name {
    font-size: 0.6875rem;
    color: var(--dw-text-light);
    margin-bottom: 0.5rem;
}

/* ─── Price ──────────────────────────────────────────────────────── */
.devders-wl-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    margin-bottom: 0.375rem;
}

.devders-wl-price-row-lg {
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.devders-wl-current-price {
    color: var(--dw-primary);
    font-size: 1rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .devders-wl-current-price {
        font-size: 1.125rem;
    }
}

.devders-wl-list-price {
    font-size: 1.125rem;
}

.devders-wl-original-price {
    color: var(--dw-text-light);
    font-size: 0.6875rem;
    text-decoration: line-through;
}

.devders-wl-list-orig-price {
    font-size: 0.75rem;
}

/* ─── Rating ─────────────────────────────────────────────────────── */
.devders-wl-rating-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.devders-wl-stars {
    display: flex;
}

.devders-wl-star {
    width: 0.75rem;
    height: 0.75rem;
}

.devders-wl-sold-count {
    font-size: 0.625rem;
    color: var(--dw-text-light);
}

.devders-wl-list-sold {
    font-size: 0.6875rem;
}

/* ─── List Actions ───────────────────────────────────────────────── */
.devders-wl-list-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .devders-wl-list-actions {
        margin-top: 0;
    }
}

.devders-wl-list-remove-btn {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--dw-border-color);
    background: #fff;
    color: var(--dw-text-sub);
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.15s;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

.devders-wl-list-remove-btn svg {
    width: 0.875rem;
    height: 0.875rem;
}

.devders-wl-list-remove-btn:hover {
    color: var(--dw-primary);
    border-color: var(--dw-primary);
}

.devders-wl-list-remove-btn:focus {
    box-shadow: 0 0 0 2px var(--dw-primary);
}

/* ─── Add to Cart Button ─────────────────────────────────────────── */
.devders-wl-atc-btn {
    width: 100%;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    background: var(--dw-primary);
    transition: filter 0.2s, transform 0.2s;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

.devders-wl-atc-btn svg {
    width: 0.875rem;
    height: 0.875rem;
}

.devders-wl-atc-btn:hover:not(:disabled) {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.devders-wl-atc-btn:active:not(:disabled) {
    transform: translateY(0);
    filter: brightness(0.95);
}

.devders-wl-atc-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.devders-wl-atc-btn:focus {
    box-shadow: 0 0 0 2px var(--dw-primary);
}

.devders-wl-atc-list {
    width: auto;
    padding: 0.5rem 1rem;
}

/* ─── Pagination ─────────────────────────────────────────────────── */
.devders-wl-pagination {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .devders-wl-pagination {
        margin-top: 2rem;
    }
}

.devders-wl-pag-buttons {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.devders-wl-page-btn {
    min-width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    border: 1px solid var(--dw-border-color);
    background: #fff;
    color: var(--dw-text-sub);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.15s;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

.devders-wl-page-btn:hover:not(:disabled):not(.active) {
    border-color: var(--dw-primary);
    color: var(--dw-primary);
}

.devders-wl-page-btn.active {
    background: var(--dw-primary);
    border-color: var(--dw-primary);
    color: #fff;
}

.devders-wl-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--dw-surface);
}

.devders-wl-page-btn:focus {
    box-shadow: 0 0 0 2px var(--dw-primary);
}

.devders-wl-page-btn svg {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 639px) {
    .devders-wl-page-btn {
        min-width: 1.75rem;
        height: 1.75rem;
        font-size: 0.75rem;
    }
}

.devders-wl-pag-ellipsis {
    padding: 0 0.25rem;
    color: var(--dw-text-light);
    font-size: 0.75rem;
}

/* ─── Empty State ────────────────────────────────────────────────── */
.devders-wl-empty-state {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid var(--dw-border-color);
    padding: 4rem 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .devders-wl-empty-state {
        padding: 6rem 1.5rem;
    }
}

.devders-wl-empty-bounce {
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: devdersWlBounceAnim 2s ease infinite;
}

@keyframes devdersWlBounceAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.devders-wl-empty-icon {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: var(--dw-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.devders-wl-empty-icon svg {
    width: 3rem;
    height: 3rem;
    color: var(--dw-primary);
    opacity: 0.5;
}

.devders-wl-empty-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dw-text-main);
    margin-bottom: 0.5rem;
}

.devders-wl-empty-desc {
    font-size: 0.875rem;
    color: var(--dw-text-sub);
    margin-bottom: 2rem;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
}

.devders-wl-empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dw-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: background 0.2s;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

.devders-wl-empty-cta:hover {
    background: var(--dw-primary-hover);
}

.devders-wl-empty-cta svg {
    width: 1rem;
    height: 1rem;
}

/* ─── Skeleton (Grid) ────────────────────────────────────────────── */
.devders-wl-skel-grid {
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid var(--dw-border-color);
    overflow: hidden;
}

.devders-wl-skel-grid-img {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.devders-wl-skel-grid-body {
    padding: 0.625rem;
}

@media (min-width: 640px) {
    .devders-wl-skel-grid-body {
        padding: 0.75rem;
    }
}

.devders-wl-skel-line {
    height: 0.875rem;
    margin-bottom: 0.375rem;
}

.devders-wl-skel-line-75 {
    width: 75%;
}

.devders-wl-skel-price {
    height: 1.25rem;
    width: 50%;
    margin-bottom: 0.75rem;
}

.devders-wl-skel-btn {
    height: 2rem;
    width: 100%;
    border-radius: 0.5rem;
}

/* ─── Skeleton (List) ────────────────────────────────────────────── */
.devders-wl-skel-list {
    background: #fff;
    border-radius: 0.75rem;
    border: 1px solid var(--dw-border-color);
    overflow: hidden;
    display: flex;
}

.devders-wl-skel-list-img {
    width: 7rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .devders-wl-skel-list-img {
        width: 9rem;
    }
}

@media (min-width: 768px) {
    .devders-wl-skel-list-img {
        width: 11rem;
    }
}

.devders-wl-skel-list-body {
    flex: 1;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 640px) {
    .devders-wl-skel-list-body {
        padding: 1rem;
    }
}

.devders-wl-skel-list-line {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.devders-wl-skel-list-66 {
    width: 66%;
}

.devders-wl-skel-list-25 {
    width: 25%;
    margin-bottom: 0.75rem;
}

.devders-wl-skel-list-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.devders-wl-skel-list-price {
    height: 1.25rem;
    width: 33%;
}

.devders-wl-skel-list-btn {
    height: 2rem;
    width: 6rem;
    border-radius: 0.5rem;
}