:root {

    --primary: #5b35f5;
    --primary-dark: #4724d7;

    --green: #18c98b;
    --orange: #ff9f1c;

    --dark: #15151a;
    --text: #29292f;
    --muted: #777783;

    --background: #f7f7fa;
    --white: #ffffff;

    --border: #e9e9ef;

    --radius: 18px;

    --shadow:
        0 12px 35px rgba(20, 20, 30, .07);

}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    background: var(--background);

    color: var(--text);

}


button,
input {
    font-family: inherit;
}


button {
    cursor: pointer;
}


a {
    text-decoration: none;
    color: inherit;
}


.container {

    width: min(
        1240px,
        calc(100% - 40px)
    );

    margin-inline: auto;

}


/* =====================================================
   TOPBAR
===================================================== */

.topbar {

    background: #15151a;

    color: white;

    font-size: 12px;

}


.topbar-content {

    height: 36px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.topbar-left,
.topbar-right {

    display: flex;

    align-items: center;

    gap: 22px;

}


.topbar span,
.topbar a {

    color: #cfcfd5;

}


.topbar i {

    margin-right: 5px;

}


/* =====================================================
   HEADER
===================================================== */

.header {
    margin-top: 10px;
    margin-bottom: 10px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}
.header-main {
    min-height: 78px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

 

/* SEARCH */

.search-box {

    height: 46px;

    flex: 1;

    max-width: 600px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 4px 5px 4px 15px;

    background: #f5f5f8;

    border: 1px solid transparent;

    border-radius: 12px;

}


.search-box:focus-within {

    background: white;

    border-color: var(--primary);

}


.search-box > i {

    color: #888;

}


.search-box input {

    flex: 1;

    border: none;

    outline: none;

    background: transparent;

    font-size: 13px;

}


.search-box button {

    border: none;

    color: white;

    background: var(--primary);

    height: 36px;

    padding: 0 17px;

    border-radius: 9px;

    font-size: 12px;

    font-weight: 600;

}


.header-actions {

    display: flex;

    align-items: center;

    gap: 14px;

}


.header-action {

    border: none;

    background: transparent;

    display: flex;

    align-items: center;

    gap: 7px;

    font-size: 12px;

    font-weight: 600;

    color: #444;

}


.header-action > i {

    font-size: 21px;

}


.cart-icon {

    position: relative;

    display: flex;

}


.cart-icon b {

    position: absolute;

    top: -9px;

    right: -9px;

    width: 17px;

    height: 17px;

    border-radius: 50%;

    background: #ef4444;

    color: white;

    font-size: 9px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.mobile-menu-button {

    display: none;

    border: none;

    background: transparent;

    font-size: 24px;

}


/* =====================================================
   NAVIGATION
===================================================== */

.navigation {

    border-top: 1px solid #f1f1f3;

}


.navigation-content {

    min-height: 48px;

    display: flex;

    align-items: center;

    gap: 27px;

}


.categories-button {

    border: none;

    background: var(--primary);

    color: white;

    border-radius: 8px;

    padding: 9px 15px;

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 12px;

    font-weight: 600;

}


.nav-link {

    font-size: 12px;

    color: #62626b;

}


.nav-link:hover,
.nav-link.active {

    color: var(--primary);

}


/* =====================================================
   HERO
===================================================== */

.hero {

    padding: 25px 0 0;

}


.hero-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        340px;

    gap: 18px;

}


.hero-main {

    min-height: 390px;

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    color: white;

    background:
        linear-gradient(
            105deg,
            #151329,
            #332477
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 600px;

    padding: 55px;

}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 12px;

    border: 1px solid
        rgba(255,255,255,.15);

    background:
        rgba(255,255,255,.08);

    border-radius: 30px;

    font-size: 10px;

    margin-bottom: 20px;

}


.hero h1 {

    font-size: clamp(
        38px,
        4vw,
        55px
    );

    line-height: 1.02;

    letter-spacing: -2.5px;

    margin-bottom: 20px;

}


.hero h1 span {

    display: block;

    color: #a99aff;

}


.hero p {

    max-width: 500px;

    color: #d3d0df;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 28px;

}


.hero-buttons {

    display: flex;

    gap: 10px;

}


.btn-primary,
.btn-secondary {

    padding: 13px 18px;

    border-radius: 10px;

    font-size: 12px;

    font-weight: 700;

}


.btn-primary {

    color: var(--primary);

    background: white;

}


.btn-secondary {

    color: white;

    border: 1px solid
        rgba(255,255,255,.2);

}


.hero-decoration {

    position: absolute;

    inset: 0;

    pointer-events: none;

}


.hero-circle {

    position: absolute;

    border-radius: 50%;

    border: 1px solid
        rgba(255,255,255,.08);

}


.circle-1 {

    width: 500px;

    height: 500px;

    right: -130px;

    top: -90px;

}


.circle-2 {

    width: 350px;

    height: 350px;

    right: -20px;

    top: 40px;

}


.hero-product {

    position: absolute;

    right: 100px;

    top: 115px;

    width: 145px;

    height: 145px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 40px;

    font-size: 65px;

    color: white;

    background:
        rgba(255,255,255,.07);

    transform: rotate(-10deg);

}


/* HERO SIDE */

.hero-side {

    display: grid;

    grid-template-rows: 1fr 1fr;

    gap: 18px;

}


.side-banner {

    position: relative;

    overflow: hidden;

    padding: 27px;

    border-radius: 20px;

    color: white;

}


.banner-green {

    background:
        linear-gradient(
            120deg,
            #12a970,
            #18c98b
        );

}


.banner-orange {

    background:
        linear-gradient(
            120deg,
            #ff8d09,
            #ffbd28
        );

}


.side-banner span {

    font-size: 10px;

    opacity: .8;

}


.side-banner h3 {

    max-width: 200px;

    font-size: 21px;

    line-height: 1.15;

    margin: 7px 0;

}


.side-banner p {

    max-width: 210px;

    font-size: 11px;

    line-height: 1.5;

    opacity: .85;

}


.side-banner a {

    display: inline-flex;

    gap: 6px;

    margin-top: 13px;

    font-size: 11px;

    font-weight: 700;

}


.side-icon {

    position: absolute;

    right: 15px;

    bottom: -5px;

    font-size: 90px;

    opacity: .13;

}


/* =====================================================
   FEATURES
===================================================== */

.features {

    padding: 18px 0;

    background: white;

    border-bottom: 1px solid var(--border);

}


.features-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

}


.feature {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px 25px;

    border-right: 1px solid var(--border);

}


.feature:last-child {

    border-right: none;

}


.feature-icon {

    width: 40px;

    height: 40px;

    border-radius: 11px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary);

    background: #efecff;

}


.feature strong {

    display: block;

    font-size: 11px;

}


.feature span {

    display: block;

    margin-top: 3px;

    color: #888;

    font-size: 9px;

}


/* =====================================================
   SECTIONS
===================================================== */

.section {

    padding: 60px 0 0;

}


.section-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 25px;

}


.section-label {

    display: block;

    color: var(--primary);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 7px;

}


.section-header h2 {

    font-size: 24px;

    letter-spacing: -.8px;

}


.section-header p {

    color: #888;

    font-size: 12px;

    margin-top: 6px;

}


.see-all {

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;

}


/* =====================================================
   CATEGORIES
===================================================== */

.categories-grid {

    display: grid;

    grid-template-columns:
        repeat(8, 1fr);

    gap: 12px;

}


.category-card {

    padding: 18px 10px;

    text-align: center;

    background: white;

    border: 1px solid var(--border);

    border-radius: 15px;

    transition: .2s;

}


.category-card:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow);

    border-color: #d8d0ff;

}


.category-icon {

    width: 52px;

    height: 52px;

    margin: auto auto 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    font-size: 22px;

}


.category-icon.purple {
    color: #7355ff;
    background: #eeeaff;
}


.category-icon.blue {
    color: #3985ff;
    background: #eaf3ff;
}


.category-icon.orange {
    color: #f39b17;
    background: #fff4df;
}


.category-icon.pink {
    color: #ec5da5;
    background: #ffedf6;
}


.category-icon.green {
    color: #19ad78;
    background: #e6fbf3;
}


.category-icon.yellow {
    color: #e3a900;
    background: #fff8dc;
}


.category-icon.red {
    color: #ed5555;
    background: #ffeded;
}


.category-icon.cyan {
    color: #13a8b6;
    background: #e4f9fb;
}


.category-card strong {

    display: block;

    font-size: 11px;

}


.category-card span {

    display: block;

    margin-top: 4px;

    color: #999;

    font-size: 9px;

}


/* =====================================================
   PRODUCTS
===================================================== */

.products-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;

}


.product-card {

    overflow: hidden;

    background: white;

    border: 1px solid var(--border);

    border-radius: 17px;

    transition: .25s;

}


.product-card:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow);

}


.product-image {

    height: 225px;

    position: relative;

    background: #f3f3f5;

    overflow: hidden;

}


.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .4s;

}


.product-card:hover
.product-image img {

    transform: scale(1.05);

}


.product-discount {

    position: absolute;

    top: 12px;

    left: 12px;

    padding: 5px 8px;

    border-radius: 6px;

    color: white;

    background: #ef4444;

    font-size: 9px;

    font-weight: 800;

}


.product-favorite {

    position: absolute;

    top: 11px;

    right: 11px;

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,.94);

    color: #555;

    font-size: 16px;

}


.product-favorite.active {

    color: #ef4444;

}


.product-content {

    padding: 16px;

}


.product-seller {

    color: var(--green);

    font-size: 9px;

    font-weight: 800;

    margin-bottom: 6px;

}


.product-name {

    min-height: 38px;

    font-size: 13px;

    line-height: 1.4;

}


.product-rating {

    margin: 9px 0;

    color: #f59e0b;

    font-size: 10px;

}


.product-rating span {

    color: #999;

    margin-left: 3px;

}


.product-price {

    display: flex;

    align-items: baseline;

    gap: 7px;

}


.product-price strong {

    font-size: 19px;

}


.product-old-price {

    color: #aaa;

    font-size: 10px;

    text-decoration: line-through;

}


.product-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 13px;

}


.product-location {

    color: #888;

    font-size: 9px;

}


.add-product {

    width: 35px;

    height: 35px;

    border: none;

    border-radius: 9px;

    color: var(--primary);

    background: #eeeaff;

    font-size: 17px;

}


.add-product:hover {

    color: white;

    background: var(--primary);

}


/* =====================================================
   OFFER
===================================================== */

.offer-banner {

    min-height: 260px;

    overflow: hidden;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 40px 55px;

    border-radius: 25px;

    color: white;

    background:
        linear-gradient(
            110deg,
            #4e2de0,
            #7355f5
        );

}


.offer-content {

    position: relative;

    z-index: 2;

    max-width: 600px;

}


.offer-label {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    opacity: .75;

}


.offer-banner h2 {

    margin: 10px 0;

    font-size: 30px;

    line-height: 1.15;

    letter-spacing: -1px;

}


.offer-banner p {

    color: #ddd8ff;

    font-size: 12px;

}


.offer-button {

    display: inline-flex;

    gap: 7px;

    margin-top: 20px;

    padding: 12px 18px;

    border-radius: 9px;

    color: var(--primary);

    background: white;

    font-size: 11px;

    font-weight: 700;

}


.offer-graphic {

    position: relative;

    width: 250px;

    height: 250px;

}


.offer-circle {

    position: absolute;

    right: 20px;

    top: 5px;

    width: 220px;

    height: 220px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border: 1px solid
        rgba(255,255,255,.2);

    border-radius: 50%;

    background:
        rgba(255,255,255,.08);

}


.offer-circle span {

    font-size: 11px;

}


.offer-circle strong {

    font-size: 65px;

    line-height: .9;

}


.offer-circle small {

    font-weight: 800;

}


/* =====================================================
   STORES
===================================================== */

.stores-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

}


.store-card {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px;

    border: 1px solid var(--border);

    background: white;

    border-radius: 15px;

}


.store-logo {

    flex-shrink: 0;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    font-size: 21px;

}


.store-logo.tech {

    color: #7155ff;

    background: #efebff;

}


.store-logo.sport {

    color: #ed9514;

    background: #fff2d9;

}


.store-logo.home {

    color: #19ad78;

    background: #e5faf2;

}


.store-logo.digital {

    color: #3985ff;

    background: #eaf3ff;

}


.store-info {

    flex: 1;

    min-width: 0;

}


.store-name {

    display: flex;

    align-items: center;

    gap: 4px;

}


.store-name strong {

    font-size: 11px;

}


.store-name i {

    color: var(--primary);

    font-size: 10px;

}


.store-info > span {

    display: block;

    margin-top: 3px;

    color: #777;

    font-size: 9px;

}


.store-info small {

    display: block;

    margin-top: 6px;

    color: #999;

    font-size: 8px;

}


.store-card > button {

    width: 30px;

    height: 30px;

    border: none;

    border-radius: 8px;

    color: var(--primary);

    background: #f0edff;

}


/* =====================================================
   SUPPLIER
===================================================== */

.supplier-banner {

    min-height: 310px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 50px;

    border-radius: 25px;

    color: white;

    background:
        linear-gradient(
            110deg,
            #14131c,
            #2b2547
        );

}


.supplier-content {

    position: relative;

    z-index: 2;

    max-width: 600px;

}


.supplier-content > span {

    color: #a99aff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.supplier-content h2 {

    margin: 10px 0;

    font-size: 31px;

    line-height: 1.1;

    letter-spacing: -1px;

}


.supplier-content p {

    color: #aaa7b4;

    font-size: 12px;

    line-height: 1.7;

    max-width: 500px;

}


.supplier-button {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: 22px;

    padding: 13px 19px;

    color: white;

    background: var(--primary);

    border-radius: 9px;

    font-size: 11px;

    font-weight: 700;

}


.supplier-icon {

    position: absolute;

    right: 80px;

    font-size: 170px;

    color: rgba(255,255,255,.05);

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    margin-top: 70px;

    padding-top: 55px;

    background: #121216;

    color: white;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 50px;

}


.footer-logo {

    margin-bottom: 17px;

}


.footer-brand p {

    max-width: 350px;

    color: #8d8d96;

    font-size: 11px;

    line-height: 1.8;

}


.social-links {

    display: flex;

    gap: 8px;

    margin-top: 18px;

}


.social-links a {

    width: 31px;

    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    color: #aaa;

    background: #202026;

}


.footer-column h4 {

    margin-bottom: 17px;

    font-size: 11px;

}


.footer-column a {

    display: block;

    margin-bottom: 12px;

    color: #85858e;

    font-size: 10px;

}


.footer-column a:hover {

    color: white;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    margin-top: 45px;

    padding: 20px 0;

    border-top: 1px solid #27272d;

    color: #666;

    font-size: 9px;

}


/* =====================================================
   MODAL
===================================================== */

.modal {

    position: fixed;

    inset: 0;

    z-index: 500;

    display: none;

}


.modal.show {

    display: block;

}


.modal-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.55);

    backdrop-filter: blur(4px);

}


.modal-content {

    position: relative;

    z-index: 2;

    width: min(
        800px,
        calc(100% - 30px)
    );

    max-height: 90vh;

    overflow: auto;

    margin: 5vh auto;

    border-radius: 20px;

    background: white;

}


.modal-close {

    position: absolute;

    top: 15px;

    right: 15px;

    z-index: 3;

    width: 35px;

    height: 35px;

    border: none;

    border-radius: 50%;

    background: #f2f2f4;

}


.modal-body {

    padding: 30px;

}


/* =====================================================
   CART
===================================================== */

.cart-overlay {

    position: fixed;

    inset: 0;

    z-index: 300;

    display: none;

    background: rgba(0,0,0,.45);

}


.cart-overlay.show {

    display: block;

}


.cart-drawer {

    position: fixed;

    top: 0;

    right: 0;

    bottom: 0;

    z-index: 301;

    width: min(
        410px,
        100%
    );

    display: flex;

    flex-direction: column;

    background: white;

    transform: translateX(100%);

    transition: .3s;

}


.cart-drawer.show {

    transform: translateX(0);

}


.cart-header {

    display: flex;

    justify-content: space-between;

    padding: 22px;

    border-bottom: 1px solid var(--border);

}


.cart-header span {

    color: var(--primary);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.cart-header h3 {

    margin-top: 4px;

}


.cart-header button {

    border: none;

    background: transparent;

    font-size: 18px;

}


.cart-items {

    flex: 1;

    overflow: auto;

    padding: 20px;

}


.empty-cart {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

    color: #999;

}


.empty-cart i {

    margin-bottom: 15px;

    font-size: 45px;

    color: #ddd;

}


.empty-cart strong {

    color: #444;

    font-size: 13px;

}


.empty-cart span {

    margin-top: 5px;

    font-size: 10px;

}


.cart-item {

    display: flex;

    gap: 12px;

    padding: 12px 0;

    border-bottom: 1px solid var(--border);

}


.cart-item img {

    width: 65px;

    height: 65px;

    object-fit: cover;

    border-radius: 9px;

}


.cart-item-info {

    flex: 1;

}


.cart-item-info strong {

    display: block;

    font-size: 11px;

}


.cart-item-info span {

    display: block;

    margin-top: 7px;

    font-size: 11px;

}


.cart-remove {

    border: none;

    background: transparent;

    color: #ef4444;

}


.cart-footer {

    padding: 20px;

    border-top: 1px solid var(--border);

}


.cart-total {

    display: flex;

    justify-content: space-between;

    margin-bottom: 15px;

}


.cart-total span {

    color: #777;

    font-size: 12px;

}


.cart-total strong {

    font-size: 18px;

}


.checkout-button {

    width: 100%;

    height: 48px;

    border: none;

    border-radius: 10px;

    color: white;

    background: var(--primary);

    font-size: 12px;

    font-weight: 700;

}


/* =====================================================
   TOAST
===================================================== */

.toast {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 999;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 13px 17px;

    border-radius: 10px;

    color: white;

    background: #18181c;

    font-size: 11px;

    box-shadow: 0 10px 30px rgba(0,0,0,.2);

    transform: translateY(100px);

    opacity: 0;

    transition: .3s;

}


.toast.show {

    transform: translateY(0);

    opacity: 1;

}


.toast i {

    color: var(--green);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1050px) {

    .categories-grid {

        grid-template-columns:
            repeat(4,1fr);

    }


    .products-grid {

        grid-template-columns:
            repeat(3,1fr);

    }


    .stores-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


@media(max-width:850px) {

    .header-main {

        flex-wrap: wrap;

        padding: 12px 0;

    }


    .search-box {

        order: 3;

        flex-basis: 100%;

        max-width: none;

    }


    .navigation {

        display: none;

    }


    .navigation.show {

        display: block;

    }


    .navigation-content {

        padding: 12px 0;

        flex-direction: column;

        align-items: stretch;

    }


    .mobile-menu-button {

        display: block;

    }


    .hero-grid {

        grid-template-columns: 1fr;

    }


    .hero-side {

        grid-template-columns:
            1fr 1fr;

    }


    .features-grid {

        grid-template-columns:
            repeat(2,1fr);

    }

}


@media(max-width:600px) {

    .container {

        width: min(
            100% - 24px,
            1240px
        );

    }


    .topbar {

        display: none;

    }


    .header-main {

        min-height: 70px;

    }


    .header-action span {

        display: none;

    }


    .header-actions {

        margin-left: auto;

    }


    .logo-info small {

        display: none;

    }


    .hero {

        padding-top: 12px;

    }


    .hero-content {

        padding: 38px 25px;

    }


    .hero-main {

        min-height: 450px;

    }


    .hero h1 {

        font-size: 39px;

    }


    .hero-product {

        right: 30px;

        top: 290px;

    }


    .hero-side {

        grid-template-columns: 1fr;

    }


    .features-grid {

        grid-template-columns: 1fr;

    }


    .feature {

        border-right: none;

        border-bottom: 1px solid var(--border);

        padding: 14px;

    }


    .categories-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .products-grid {

        grid-template-columns:
            repeat(2,1fr);

        gap: 10px;

    }


    .product-image {

        height: 175px;

    }


    .product-content {

        padding: 12px;

    }


    .product-name {

        font-size: 11px;

    }


    .product-price strong {

        font-size: 16px;

    }


    .stores-grid {

        grid-template-columns: 1fr;

    }


    .offer-banner {

        padding: 35px 25px;

    }


    .offer-graphic {

        display: none;

    }


    .supplier-banner {

        padding: 35px 25px;

    }


    .supplier-icon {

        right: -30px;

        opacity: .5;

    }


    .footer-grid {

        grid-template-columns:
            1fr 1fr;

        gap: 30px;

    }


    .footer-brand {

        grid-column: 1 / -1;

    }


    .footer-bottom {

        gap: 10px;

        flex-direction: column;

    }

}


@media(max-width:400px) {

    .products-grid {

        grid-template-columns: 1fr;

    }


    .product-image {

        height: 220px;

    }

}