.product-coupon-list {
    border-top: 1px solid #d7d7d7;
    color: #00143f;
    font-family: inherit;
    margin: 18px 0 0;
    padding: 18px 0 0;
}

.product-coupon-list-title {
    align-items: center;
    color: #00143f;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    gap: 10px;
    letter-spacing: 0;
    line-height: 1.25;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.product-coupon-list-icon {
    border: 1.5px solid currentColor;
    border-radius: 2px;
    display: inline-block;
    height: 13px;
    position: relative;
    transform: rotate(45deg);
    width: 13px;
}

.product-coupon-list-icon:before {
    background: currentColor;
    border-radius: 50%;
    content: '';
    height: 3px;
    left: 2px;
    position: absolute;
    top: 2px;
    width: 3px;
}

.product-coupon-item {
    margin: 0 0 20px;
}

.product-coupon-item:last-child {
    margin-bottom: 0;
}

.product-coupon-name {
    color: #00143f;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 8px;
}

.product-coupon-row {
    color: #00143f;
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 6px;
    padding-left: 18px;
    position: relative;
}

.product-coupon-row:before {
    background: #00143f;
    border-radius: 50%;
    content: '';
    height: 4px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 4px;
}

.product-coupon-row strong {
    font-weight: 700;
}

.product-coupon-terms {
    background: transparent;
    border: 0;
    color: #ff3f6c;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin: 2px 0 0;
    padding: 0;
}

.product-coupon-terms:hover,
.product-coupon-terms:focus {
    color: #ff3f6c;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .product-coupon-list {
        margin-top: 16px;
        padding-top: 16px;
    }

    .product-coupon-list-title,
    .product-coupon-name {
        font-size: 16px;
    }

    .product-coupon-row,
    .product-coupon-terms {
        font-size: 14px;
    }
}

.cart-coupon-list {
    border: 1px solid #efefef;
    color: #00143f;
    margin: 0 0 16px;
    padding: 18px 18px 16px;
}

.cart-coupon-list-heading {
    color: #39445a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 22px;
    text-transform: uppercase;
}

.cart-coupon-list-title-row {
    align-items: center;
    display: flex;
    gap: 18px;
    margin: 0 0 18px;
}

.cart-coupon-list-title-row strong {
    color: #00143f;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.cart-coupon-list-icon {
    border: 1.5px solid currentColor;
    border-radius: 2px;
    color: #00143f;
    display: inline-block;
    flex: 0 0 auto;
    height: 14px;
    position: relative;
    transform: rotate(45deg);
    width: 14px;
}

.cart-coupon-list-icon:before {
    background: currentColor;
    border-radius: 50%;
    content: '';
    height: 3px;
    left: 2px;
    position: absolute;
    top: 2px;
    width: 3px;
}

.cart-coupon-list-item {
    align-items: flex-start;
    border-top: 1px solid #f2f2f2;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 14px 0 0;
}

.cart-coupon-list-item + .cart-coupon-list-item {
    margin-top: 14px;
}

.cart-coupon-list-content {
    min-width: 0;
}

.cart-coupon-list-name {
    color: #00143f;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 6px;
}

.cart-coupon-list-code,
.cart-coupon-list-description {
    color: #00143f;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 4px;
}

.cart-coupon-list-code strong {
    font-weight: 700;
}

.cart-coupon-list-form {
    flex: 0 0 auto;
}

.cart-coupon-list-apply {
    background: #fff;
    border: 1px solid #ff3f6c;
    border-radius: 2px;
    color: #ff3f6c;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    min-width: 88px;
    padding: 10px 16px;
    text-align: center;
    text-transform: uppercase;
}

.cart-coupon-list-apply:hover,
.cart-coupon-list-apply:focus {
    background: #fff5f8;
    border-color: #ff3f6c;
    color: #ff3f6c;
}

.cart-coupon-list-apply:disabled {
    border-color: #00a36c;
    color: #00a36c;
    cursor: default;
    opacity: 1;
}

@media (max-width: 767px) {
    .cart-coupon-list {
        padding: 16px 14px 14px;
    }

    .cart-coupon-list-item {
        gap: 10px;
    }

    .cart-coupon-list-apply {
        min-width: 76px;
        padding: 9px 12px;
    }
}

.checkout-cart-index .form-cart .cart-coupon-list-wrapper {
    box-sizing: border-box;
    clear: both;
    float: left;
    margin: 28px 0 24px;
    max-width: 760px;
    width: 58%;
}

@media (max-width: 991px) {
    .checkout-cart-index .form-cart .cart-coupon-list-wrapper {
        float: none;
        width: 100%;
    }
}
