.scwc-cart-item-editable {
    /*display: inline-flex;*/
    align-items: center;
    gap: 6px;
}

.scwc-cart-item-editable a,
.scwc-cart-edit-trigger {
    cursor: pointer;
}

.scwc-cart-edit-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
    min-width: 0;
    vertical-align: middle;
    border: 1px solid #ccc;
    padding: 2px 10px;
    border-radius: 15px;
}

.scwc-cart-edit-swatch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(17, 24, 39, 0.18);
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

.scwc-cart-edit-swatch__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scwc-cart-edit-swatch--empty::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9ca3af;
}

.scwc-cart-edit-attribute-name {
    display: inline-block;
    max-width: 80px;
    overflow: hidden;
    color: #333;
    font-size: 11px;
    line-height: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.scwc-cart-edit-chevron {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    color: #6b7280;
    opacity: 0.9;
    transform: rotate(45deg) translateY(-2px);
}

.scwc-cart-edit-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.scwc-cart-edit-modal[hidden] {
    display: none !important;
}

.scwc-cart-edit-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.56);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.scwc-cart-edit-modal__dialog {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(1120px, calc(100vw - 32px));
    height: min(880px, calc(100vh - 32px));
    margin: 16px auto;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.scwc-cart-edit-modal.is-open .scwc-cart-edit-modal__backdrop {
    opacity: 1;
}

.scwc-cart-edit-modal.is-open .scwc-cart-edit-modal__dialog {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scwc-cart-edit-modal__header {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.scwc-cart-edit-modal__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.scwc-cart-edit-modal__close {
    border: 0;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    color: #111827;
    cursor: pointer;
}

.scwc-cart-edit-modal__body {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    background: #f8fafc;
}

.scwc-cart-edit-modal.is-loading .scwc-cart-edit-modal__body {
    min-height: min(420px, calc(100vh - 160px));
}

.scwc-cart-edit-modal__loading {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #334155;
    font-weight: 600;
    background: rgba(248, 250, 252, 0.92);
    z-index: 2;
}

.scwc-cart-edit-modal.is-loading .scwc-cart-edit-modal__loading {
    display: flex;
}

.scwc-cart-edit-modal__content {
    height: 100%;
    background: #fff;
    overflow: auto;
}

html.scwc-cart-edit-modal-open,
body.scwc-cart-edit-modal-open {
    overflow: hidden;
}

body.scwc-cart-edit-product,
.scwc-cart-edit-modal__content {
    background: #f8fafc;
}

body.scwc-cart-edit-product #scwc-cart-edit-root,
.scwc-cart-edit-modal__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    background-color: #fff;
}

body.scwc-cart-edit-product .scwc-cart-edit-product-shell,
.scwc-cart-edit-modal__content .scwc-cart-edit-product-shell {
    margin: 0;
}

body.scwc-cart-edit-product .scwc-cart-edit-product-grid,
.scwc-cart-edit-modal__content .scwc-cart-edit-product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 32px;
    align-items: start;
}

body.scwc-cart-edit-product .scwc-cart-edit-product-grid__media,
body.scwc-cart-edit-product .scwc-cart-edit-product-grid__summary,
.scwc-cart-edit-modal__content .scwc-cart-edit-product-grid__media,
.scwc-cart-edit-modal__content .scwc-cart-edit-product-grid__summary {
    min-width: 0;
}

body.scwc-cart-edit-product .woocommerce-product-gallery,
body.scwc-cart-edit-product .summary.entry-summary,
.scwc-cart-edit-modal__content .woocommerce-product-gallery,
.scwc-cart-edit-modal__content .summary.entry-summary {
    margin-bottom: 0;
}

body.scwc-cart-edit-product .summary.entry-summary .product_meta,
body.scwc-cart-edit-product .summary.entry-summary .woocommerce-tabs,
body.scwc-cart-edit-product .summary.entry-summary .related,
body.scwc-cart-edit-product .summary.entry-summary .up-sells,
.scwc-cart-edit-modal__content .summary.entry-summary .product_meta,
.scwc-cart-edit-modal__content .summary.entry-summary .woocommerce-tabs,
.scwc-cart-edit-modal__content .summary.entry-summary .related,
.scwc-cart-edit-modal__content .summary.entry-summary .up-sells {
    display: none;
}

.scwc-cart-edit-modal__content.single-product div.product {
    display: block;
}

.scwc-cart-edit-modal__content .scwc-cart-edit-product-grid {
    display: grid !important;
    grid-template-columns: minmax(360px, 560px) minmax(360px, 1fr);
    gap: 32px;
    align-items: start;
}

.scwc-cart-edit-modal__content .scwc-cart-edit-product-grid__media,
.scwc-cart-edit-modal__content .scwc-cart-edit-product-grid__summary,
.scwc-cart-edit-modal__content .woocommerce-product-gallery,
.scwc-cart-edit-modal__content #commercegurus-pdp-gallery-wrapper,
.scwc-cart-edit-modal__content .commercegurus-gallery-wrap,
.scwc-cart-edit-modal__content div.product div.images,
.scwc-cart-edit-modal__content .summary.entry-summary {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    clear: none !important;
    margin: 0 !important;
}

.scwc-cart-edit-modal__content .woocommerce-product-gallery {
    max-width: 560px !important;
    margin: 0 auto !important;
}

.scwc-cart-edit-modal__content #commercegurus-pdp-gallery-wrapper,
.scwc-cart-edit-modal__content .woocommerce-product-gallery .flex-viewport {
    margin-top: 0 !important;
}

.scwc-cart-edit-modal__content .summary.entry-summary {
    display: block;
    padding-top: 0;
}

.scwc-cart-edit-modal__content .summary.entry-summary ul,
.scwc-cart-edit-modal__content .summary.entry-summary ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.scwc-cart-edit-modal__content .summary.entry-summary li {
    list-style: none;
}

.scwc-cart-edit-modal__content .summary.entry-summary .price,
.scwc-cart-edit-modal__content .summary.entry-summary .woocommerce-product-rating,
.scwc-cart-edit-modal__content .summary.entry-summary .product_title,
.scwc-cart-edit-modal__content .summary.entry-summary form.cart,
.scwc-cart-edit-modal__content .summary.entry-summary .woocommerce-variation-add-to-cart,
.scwc-cart-edit-modal__content .summary.entry-summary .variations_form {
    width: 100%;
    max-width: 100%;
}

.scwc-cart-edit-modal__content .summary.entry-summary .variations {
    width: 100%;
}

.scwc-cart-edit-modal__content .summary.entry-summary .variations td,
.scwc-cart-edit-modal__content .summary.entry-summary .variations th {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.scwc-cart-edit-modal__content .summary.entry-summary .variations select {
    width: 100%;
}

.scwc-cart-edit-modal__content .woocommerce-product-gallery .flex-viewport,
.scwc-cart-edit-modal__content .woocommerce-product-gallery__wrapper,
.scwc-cart-edit-modal__content .woocommerce-product-gallery__image {
    max-width: 100%;
}

.scwc-cart-edit-modal__content .woocommerce-product-gallery .flex-viewport {
    margin-bottom: 12px !important;
}

.scwc-cart-edit-modal__content .woocommerce-product-gallery img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.scwc-cart-edit-modal__content .woocommerce-product-gallery .flex-control-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
}

.scwc-cart-edit-modal__content .woocommerce-product-gallery .flex-control-thumbs li {
    margin: 0 !important;
}

.scwc-cart-edit-modal__content .woocommerce-product-gallery .flex-control-thumbs li img {
    width: 56px;
}

body.scwc-cart-edit-submitting {
    cursor: progress;
}

.scwc-cart-quick-editor {
    display: grid;
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    width: 100%;
}

.scwc-cart-quick-editor__gallery,
.scwc-cart-quick-editor__summary {
    min-width: 0;
}

.scwc-cart-quick-editor__main-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f6f6f6;
    overflow: hidden;
}

.scwc-cart-quick-editor__main-image img,
.scwc-cart-quick-editor__main-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scwc-cart-quick-editor__thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.scwc-cart-quick-editor__thumb,
.scwc-cart-quick-editor__linked-product {
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    padding: 2px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
}

.scwc-cart-quick-editor__thumb.is-active,
.scwc-cart-quick-editor__linked-product.is-active {
    border-color: #111;
    box-shadow: 0 0 0 1px #111 inset;
}

.scwc-cart-quick-editor__thumb img,
.scwc-cart-quick-editor__linked-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scwc-cart-quick-editor__heading {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.scwc-cart-quick-editor__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.scwc-cart-quick-editor__price {
    color: #e23b22;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.scwc-cart-quick-editor__price del {
    color: #8a8a8a;
    font-size: 14px;
    font-weight: 400;
}

.scwc-cart-quick-editor__group,
.scwc-cart-quick-editor__attribute {
    margin-bottom: 18px;
}

.scwc-cart-quick-editor__label {
    display: block;
    margin-bottom: 8px;
    color: #111;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.scwc-cart-quick-editor__linked-products {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.scwc-cart-quick-editor__attributes select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
}

.scwc-cart-quick-editor__actions {
    /*margin-top: 20px;*/
}

.scwc-cart-quick-editor__quantity {
    display: inline-grid !important;
    grid-template-columns: 38px 46px 38px;
    align-items: stretch;
    width: 122px !important;
    min-width: 122px !important;
    height: 40px;
    margin: 0 !important;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}

.scwc-cart-quick-editor__quantity .quantity {
    display: contents;
}

.scwc-cart-quick-editor__qty-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-width: 38px;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #f7f7f7;
    color: #111;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
}

.scwc-cart-quick-editor__quantity input.qty {
    width: 46px !important;
    min-width: 46px !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 4px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    text-align: center;
    -moz-appearance: textfield;
}

.scwc-cart-quick-editor__quantity input.qty::-webkit-outer-spin-button,
.scwc-cart-quick-editor__quantity input.qty::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.scwc-cart-quick-editor__native-select {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.scwc-cart-quick-editor__option-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.scwc-cart-quick-editor__option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.15;
    cursor: pointer;
}

.scwc-cart-quick-editor__option--image {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    padding: 2px;
}

.scwc-cart-quick-editor__option--image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scwc-cart-quick-editor__color-swatch {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08) inset;
}

.scwc-cart-quick-editor__option--image .scwc-cart-quick-editor__option-label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.scwc-cart-quick-editor__option.is-selected,
.scwc-cart-quick-editor__option[aria-pressed="true"] {
    border-color: #111;
    box-shadow: 0 0 0 1px #111 inset;
}

.scwc-cart-quick-editor__option:disabled,
.scwc-cart-quick-editor__option.is-disabled,
.scwc-cart-quick-editor__linked-product:disabled {
    position: relative;
    opacity: 0.42;
    cursor: not-allowed;
}

.scwc-cart-quick-editor__option:disabled::after,
.scwc-cart-quick-editor__option.is-disabled::after,
.scwc-cart-quick-editor__linked-product:disabled::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 8%;
    right: 8%;
    border-top: 1px solid #111;
    transform: rotate(-24deg);
}

@media (max-width: 782px) {
    .scwc-cart-edit-modal__dialog {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: none;
        height: auto;
        max-height: min(70dvh, calc(100dvh - 72px));
        margin: 0;
        border-radius: 10px 10px 0 0;
        box-shadow: 0 -18px 42px rgba(15, 23, 42, 0.28);
        opacity: 1;
        transform: translateY(100%);
        transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .scwc-cart-edit-modal.is-open .scwc-cart-edit-modal__dialog {
        transform: translateY(0);
    }

    .scwc-cart-edit-modal__header {
        position: sticky;
        top: 0;
        z-index: 4;
        display: flex;
        min-height: 56px;
        justify-content: space-between;
        padding: 12px 14px;
        border-bottom: 1px solid #e5e7eb;
        background: #fff;
    }

    .scwc-cart-edit-modal__title {
        position: static;
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
        overflow: visible;
        clip: auto;
        color: #111827;
        font-size: 16px;
        /*font-weight: 700;*/
        line-height: 1.3;
        border: 0;
    }

    .scwc-cart-edit-modal__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        /*background: #f3f4f6;*/
        color: #111827;
        font-size: 24px;
        line-height: 1;
        box-shadow: none;
        transform: none;
    }

    .scwc-cart-edit-modal.is-loading .scwc-cart-edit-modal__body {
        min-height: min(280px, calc(70dvh - 56px));
    }

    body.scwc-cart-edit-product #scwc-cart-edit-root,
    .scwc-cart-edit-modal__content {
        max-width: none;
        padding: 0 0 calc(12px + env(safe-area-inset-bottom, 0px));
    }

    body.scwc-cart-edit-product .scwc-cart-edit-product-grid,
    .scwc-cart-edit-modal__content .scwc-cart-edit-product-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .scwc-cart-quick-editor {
        display: block;
        gap: 18px;
    }

    .scwc-cart-edit-quick-content {
        padding: 0 !important;
        background: #fff;
    }

    .scwc-cart-quick-editor__gallery {
        padding: 10px 0 10px;
        background: #f7f7f7;
    }

    .scwc-cart-quick-editor__media-strip {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(43%, 1fr);
        gap: 5px;
        overflow-x: auto;
        padding: 0 10px 0px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .scwc-cart-quick-editor__media-card {
        display: flex;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1.18 / 1;
        background: #f7f7f7;
        scroll-snap-align: start;
        overflow: hidden;
    }

    .scwc-cart-quick-editor__media-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .scwc-cart-quick-editor__heading {
        margin: 0;
        padding: 14px 12px 10px;
        border-bottom: 1px solid #f0f0f0;
    }

    .scwc-cart-quick-editor__title {
        font-size: 16px;
        line-height: 1.25;
    }

    .scwc-cart-quick-editor__price {
        font-size: 20px;
    }

    .scwc-cart-quick-editor__group,
    .scwc-cart-quick-editor__attribute {
        margin: 0;
        padding: 12px;
        border-bottom: 1px solid #f0f0f0;
    }

    .scwc-cart-quick-editor__label {
        margin-bottom: 9px;
        font-size: 14px;
    }

    .scwc-cart-quick-editor__linked-products,
    .scwc-cart-quick-editor__option-list {
        flex-wrap: wrap;
        overflow-x: visible;
        padding-bottom: 2px;
    }

    .scwc-cart-quick-editor__linked-product,
    .scwc-cart-quick-editor__option--image {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
    }

    .scwc-cart-edit-modal__content .herlan_single_product_tags,
    .scwc-cart-edit-modal__content .product_meta,
    .scwc-cart-edit-modal__content .commercekit-atc-sticky-tabs,
    .scwc-cart-edit-modal__content form.commercekit_sticky-atc,
    .scwc-cart-edit-modal__content .commercekit_sticky-atc {
        display: none !important;
    }

    .scwc-cart-edit-modal__content .woocommerce-product-gallery,
    .scwc-cart-edit-modal__content #commercegurus-pdp-gallery-wrapper,
    .scwc-cart-edit-modal__content .commercegurus-gallery-wrap,
    .scwc-cart-edit-modal__content div.product div.images {
        /*max-width: min(100%, 360px) !important;*/
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .scwc-cart-edit-modal__content .woocommerce-product-gallery .flex-viewport {
        max-height: 34vh;
        overflow: hidden;
    }

    .scwc-cart-edit-modal__content .woocommerce-product-gallery img {
        max-height: 34vh;
        object-fit: contain;
    }

    .scwc-cart-edit-modal__content .woocommerce-product-gallery .flex-control-thumbs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .scwc-cart-edit-modal__content .woocommerce-product-gallery .flex-control-thumbs li {
        flex: 0 0 auto;
    }

    .scwc-cart-edit-modal__content .summary.entry-summary,
    .scwc-cart-edit-modal__content .mobile-add-to-cart-wrapper,
    .scwc-cart-edit-modal__content .mobile-add-to-cart-wrapper form.cart,
    .scwc-cart-edit-modal__content .summary.entry-summary form.cart,
    .scwc-cart-edit-modal__content .summary.entry-summary .variations_form,
    .scwc-cart-edit-modal__content .summary.entry-summary .woocommerce-variation-add-to-cart,
    .scwc-cart-edit-modal__content .scwc-product-action-row {
        position: static !important;
        inset: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .scwc-cart-edit-modal__content .mobile-add-to-cart-wrapper {
        display: block !important;
        margin: 10px 0 0 !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: 0 !important;
    }

    .scwc-cart-edit-modal__content .mobile-add-to-cart-wrapper form.cart,
    .scwc-cart-edit-modal__content .summary.entry-summary .woocommerce-variation-add-to-cart {
        display: flex !important;
        align-items: stretch;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .scwc-cart-edit-modal__content .scwc-product-action-row {
        display: flex !important;
        gap: 8px;
        position: sticky !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        z-index: 3;
        padding: 10px !important;
        background: #fff !important;
        box-shadow: 0 -10px 24px rgba(15, 23, 42, 0.08) !important;
    }

    .scwc-cart-edit-modal__content .scwc-product-action-row > .quantity {
        flex: 0 0 122px !important;
        width: 122px !important;
        min-width: 122px !important;
    }

    .scwc-cart-edit-modal__content .scwc-cart-quick-editor__quantity {
        display: inline-grid !important;
        grid-template-columns: 38px 46px 38px !important;
        flex: 0 0 122px !important;
        width: 122px !important;
        min-width: 122px !important;
        max-width: 122px !important;
    }

    .scwc-cart-edit-modal__content .mobile-add-to-cart-wrapper .quantity {
        flex: 0 0 74px !important;
        min-width: 74px !important;
    }

    .scwc-cart-edit-modal__content .mobile-add-to-cart-wrapper .single_add_to_cart_button,
    .scwc-cart-edit-modal__content .scwc-product-action-row .single_add_to_cart_button {
        flex: 1 1 auto !important;
        min-height: 40px !important;
        border-radius: 4px !important;
        background: #000 !important;
        color: #fff !important;
        font-weight: 700 !important;
        letter-spacing: 0 !important;
        height: 40px;
        line-height: 40px;
    }
}
