/* =========================
   PRODUCT LIST WRAPPER
========================= */
.products.wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* =========================
   PRODUCT CARD (PIXEL CLEAN)
========================= */
.product-item-info {
   position: relative;
    display: block;
    background: #fff;
    border-radius: 4px;
    transition: all .15s ease-in-out;
}

.product-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* =========================
   IMAGE
========================= */
.products-list .product-item-photo {
    display: table-cell;
        padding: 0 0px 0px 0;
}
.product-item-info {
    max-width: 100%;
    width: auto !important;
}
.product-item-actions {
				border-left: 1px solid #eee;
        display: flex;
        gap: 24px;
        padding-left: 16px;
        flex-direction: column;
        align-content: space-between;
        flex-wrap: nowrap;
        justify-content: space-around;
}
.product-image-container{    aspect-ratio: 0 !important;}
.products-list .product-item {
        position: relative;
        display: block;
        background: #fff;
        border: 1px solid #e5e4e0;
        border-radius: 4px;
        transition: all .15s ease-in-out;
        padding: 16px;
        grid-template-columns: 1fr;
        display: grid;
        grid-row-gap: 8px;
        margin-bottom: 18px;
        grid-auto-flow: column;
}

.product-image-photo {
    width: 160px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

/* =========================
   TITLE + DETAILS
========================= */
.product.details.product-item-details {
    min-width: 0;
}
.page-products .page-title{
	     font-size: 24px;
       line-height: 24px;
        padding-top: 9px;
	}

.product-item-name {
    margin: 0 0 6px;
}

.product-item-link {
    font-size: 16px;
    font-weight: 700 !important;
    color: #1a1a1a;
    text-decoration: none;
        line-height: 24px !important;
        letter-spacing: .0025em;
        font-weight: 700;
        font-family: 'Inter';
}
.page-products .authorname{
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.0025em;
    color: rgb(93, 94, 92);
    white-space: pre-wrap;

	}
.product-item-link:hover {
    color: #00876e;
}
/* CATEGORY SIDEBAR */
.filter-options-content {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    max-height: 550px;
    overflow-y: auto;
    padding: 0;
}

/* LIST RESET */
.filter-options-content .items {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* EACH ITEM */
.filter-options-content .item {
    border-bottom: 1px solid #f1f1f1;
}

.filter-options-content .item:last-child {
    border-bottom: none;
}

/* LINK STYLE */
.filter-options-content .item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: all .3s ease;
}

/* HOVER EFFECT */
.filter-options-content .item a:hover {
    background: #f7f7f7;
    color: #0056b3;
    padding-left: 20px;
}

/* CATEGORY COUNT */
.filter-options-content .count {
    background: #f1f3f5;
    color: #555;
    min-width: 28px;
    height: 28px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    transition: all .3s ease;
    white-space: nowrap;
}

/* COUNT HOVER */
.filter-options-content .item a:hover .count {
    background: #0056b3;
    color: #fff;
}

/* HIDE "items/item" TEXT */
.filter-options-content .filter-count-label {
    display: none;
}

/* CUSTOM SCROLLBAR */
.filter-options-content::-webkit-scrollbar {
    width: 6px;
}

.filter-options-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 20px;
}

.filter-options-content::-webkit-scrollbar-track {
    background: #f5f5f5;
}
/* PRICE */
.price-box {
    margin: 6px 0 10px;
}

.price {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

/* DESCRIPTION */
.product-item-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-top: 8px;
}

.action.more {
 color: #003b44;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        letter-spacing: 0;
        width: 196px;
        height: 56px;
        border-radius: 8px;
        background: #00d875;
        border: none;
        transition: all .15s ease-in-out;
        display: flex;
        align-content: center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
}

/* =========================
   RIGHT PANEL (AMAZON STYLE)
========================= */
.product-item-inner {

}

/* ADD TO CART BUTTON */
.action.tocart.primary {
    width: 100%;
    background: #00d875;
    border: none;
    color: #000;
    font-weight: 700;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
}

.action.tocart.primary:hover {
    background: #00c76a;
}

/* COMPARE */
.action.tocompare {
    font-size: 13px;
    color: #555;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .product-item-info {
        grid-template-columns: 1fr;
    }

    .product-item-inner {
    }
}
.catalog-product-view .page-title-wrapper.product {
	 display: none !important;
}
 .catalog-product-view .page-main > .page-title-wrapper {
	 display: none !important;
}
 .catalog-product-view .block.related, .catalog-product-view .block.upsell, .catalog-product-view .products-related, .catalog-product-view .block-actions {
	 display: none !important;
}
 .breadcrumbs {
	 width: calc(100% - 80px * 2);
   max-width: 1600px;
	 margin: 50px auto 0;
	 padding: 16px 32px;
	 font-family: "Inter",Arial, sans-serif;
	 font-size: 14px;
	 color: #555;
}
 .breadcrumbs .items {
	 list-style: none;
	 margin: 0;
	 padding: 0;
	 display: flex;
	 flex-wrap: wrap;
	 align-items: center;
	 gap: 6px;
}
 /* HERO BANNER */
.cms-category .page-title-wrapper,.cms-annual-returns-extract-of-annual-returns .page-title-wrapper,.cms-about-wiley-india .page-title-wrapper  {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;

    display: flex;
    align-items: center;
}
.cms-about-wiley-india .page-title-wrapper {
    background-image: url(../images/wiley-website-about-us-people2.jpg);
  }
.cms-category .page-title-wrapper {
    background-image: url(../images/wiley-website-shop-by-subject-object.jpg);
  }
.cms-annual-returns-extract-of-annual-returns .page-title-wrapper {
    background-image: url(../images/wiley-website-partnership-offerings-people.jpg);
  }
.cms-contact-us .page-title-wrapper {
    background-image: url(../images/wiley-website-contact-us-people_Extra-Large.jpg);
  }
/* DARK OVERLAY */
.cms-category .page-title-wrapper::before,.cms-category .page-title-wrapper::before,.cms-about-wiley-india .page-title-wrapper::before,.cms-contact-us .page-title-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}



/* BREADCRUMBS INSIDE BANNER */
.cms-category .breadcrumbs,.cms-annual-returns-extract-of-annual-returns .breadcrumbs,.cms-about-wiley-india .breadcrumbs,.cms-contact-us .breadcrumbs{
   position: absolute;
    top: 9%;
    left: 4%;
    z-index: 3;
    margin: 0;
}

/* BREADCRUMB LIST */
.cms-category .breadcrumbs .items,.cms-annual-returns-extract-of-annual-returns .breadcrumbs .items,.cms-about-wiley-india .breadcrumbs .items,.cms-contact-us .breadcrumbs .items{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* BREADCRUMB LINKS */
.cms-category .breadcrumbs a,.cms-annual-returns-extract-of-annual-returns .breadcrumbs a,.cms-about-wiley-india .breadcrumbs a, .cms-contact-us .breadcrumbs a{
    color: #00f7a5 !important;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
}
.page-products .breadcrumbs {
        margin-top: 5% !important;
    }
.cms-category .breadcrumbs strong,.cms-annual-returns-extract-of-annual-returns .breadcrumbs strong,.cms-about-wiley-india .breadcrumbs strong,.cms-contact-us .breadcrumbs strong{
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
}

/* SLASH */
.cms-category .breadcrumbs .item:not(:last-child):after,.cms-annual-returns-extract-of-annual-returns .breadcrumbs .item:not(:last-child):after,.cms-about-wiley-india .breadcrumbs .item:not(:last-child):after,.cms-contact-us .breadcrumbs .item:not(:last-child):after{
    content: "/";
    color: #fff;
    margin-left: 10px;
}

/* PAGE TITLE */
.cms-category .page-title-wrapper .page-title,
.cms-annual-returns-extract-of-annual-returns .page-title-wrapper .page-title,
.cms-about-wiley-india .page-title-wrapper .page-title,
.cms-contact-us .page-title-wrapper .page-title
{
   			position: absolute;
        left: 9%;
        top: 50%;
        z-index: 3;
        margin: 0;
        font-family: 'Inter';
        font-size: 80px;
        line-height: 96px;
        letter-spacing: -.02em;
}
.page-products .page-title-wrapper,.page-products .breadcrumbs {
	    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 80px * 2);
    max-width: 1600px;
    }
.page-products .page-title-wrapper .page-title{
			 font-size: 24px;
        line-height: 24px;
        z-index: 3;
        font-family: 'Inter';
        font-weight: 700;
    		text-transform: capitalize;
        }
  .sorter-options,.limiter-options{
		font-weight: 600;
        font-size: 14px;
        line-height: 18px;
        letter-spacing: .0025em;
        color: #131313;
        border-radius: unset;
        padding: 8px 37px;
        height: 48px;
  }
/* TITLE TEXT */
.cms-category .page-title-wrapper .base,.cms-annual-returns-extract-of-annual-returns .page-title-wrapper .base,.cms-about-wiley-india .page-title-wrapper .base,.cms-contact-us .page-title-wrapper .base{
    color: #fff;
    font-weight: 300;
}
.cms-category .page-main,.cms-annual-returns-extract-of-annual-returns .page-main, .cms-about-wiley-india .page-main,.cms-contact-us .page-main{
	padding: 80px 0px !important;
}
/* REMOVE DEFAULT MAGENTO SPACING */

 .breadcrumbs .item {
	 display: inline-flex;
	 align-items: center;
	 gap: 8px;
}
 .breadcrumbs .item a {
	 color: #555;
	 text-decoration: none;
	 transition: color .15s ease;
}
 .breadcrumbs .item a:hover {
	 color: #006955;
}
 .breadcrumbs .item + .item::before {
}
 .breadcrumbs .item strong {
	 color: #1a1a1a;
	 font-weight: 600;
}


 .wiley-pdp {
	 padding: 8px 0 64px;
	 background: #fff;
	 color: #1a1a1a;
	 font-family: "Inter",Arial, sans-serif;
	 font-size: 16px;
	 line-height: 1.5;
}
 .wiley-pdp *, .wiley-pdp *::before, .wiley-pdp *::after {
	 box-sizing: border-box;
}
 .wiley-pdp__container {
	width: calc(100% - 80px * 2);
   max-width: 1600px;
	 margin: 0 auto;
	 padding: 0 0px;
}
 .wiley-pdp__grid {
	--bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: nowrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    flex-direction: row;
}
 .wiley-pdp__left {
 				position: sticky;
        top: 24px;
        align-self: start;
				flex: 0 0 auto;
        width: 16.66666667%;
}
 .wiley-pdp__center {
	 min-width: 0;
 padding-right: 13px;
        width: 69%;
}
 .wiley-pdp__right {
	 position: sticky;
	 top: 24px;
	 align-self: start;
}
 .wiley-pdp__below {
	 padding-top: 32px;
}
 .wiley-pdp__below > * + * {
	 margin-top: 56px;
}
 .wiley-pdp .wiley-cover {
}
 .wiley-pdp .wiley-cover__img {
	 width: 90%;
	 height: auto;
	 object-fit: cover;
	 display: block;
}
 .wiley-pdp .wiley-excerpt {
	 position: relative;
	 width: 213px;
}
 .wiley-pdp .wiley-excerpt__btn {
	 width: 100%;
	 padding: 12px 14px;
	 background: #fff;
	 border: 1px solid #d0d0d0;
	 border-radius: 4px;
	 font-family: inherit;
	 font-size: 13px;
	 font-weight: 600;
	 color: #1a1a1a;
	 text-align: left;
	 cursor: pointer;
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 transition: background .15s ease, border-color .15s ease;
}
.cms-category .wiley-sub a {
    font-weight: 500;
}
.cms-category .wiley-sub li {
    padding-top: 5px;
}
.cms-category  .wiley-title {
    padding-top: 10px;
}
 .wiley-pdp .wiley-excerpt__btn:hover {
	 background: #f7f7f7;
	 border-color: #555;
}
 .wiley-pdp .wiley-excerpt__btn:focus {
	 outline: 2px solid #00d875;
	 outline-offset: 2px;
}
 .wiley-pdp .wiley-excerpt__chevron {
	 color: #888;
	 font-size: 11px;
}
 .wiley-pdp .wiley-excerpt__menu {
	 display: none;
	 position: absolute;
	 top: calc(104%);
	 left: 0;
	 min-width: 220px;
	 background: #fff;
	 border: 1px solid #d0d0d0;
	 border-radius: 4px;
	 box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	 z-index: 100;
}
 .wiley-pdp .wiley-excerpt__menu.is-open {
	 display: block;
}
 .wiley-pdp .wiley-excerpt__item {
	 display: block;
	 padding: 12px 18px;
	 color: #1a1a1a;
	 font-size: 14px;
	 text-decoration: none;
	 border-bottom: 1px solid #e6e6e6;
}
 .wiley-pdp .wiley-excerpt__item:last-child {
	 border-bottom: none;
}
 .wiley-pdp .wiley-excerpt__item:hover {
	 background: #e8f1ee;
	 color: #006955;
}
 .wiley-pdp .wiley-bookmarks {
				margin-top: 8px;
        width: 90%;
        padding: 12px 0px;
        border-radius: 2px;
        border: 1px solid #e5e4e0;
        background: #fff;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2);
        font-size: 14px;
        font-weight: 600;
        line-height: 21px;
        letter-spacing: .035px;
}
 .wiley-pdp .wiley-bookmarks__title {
	 font-weight: 700;
	 font-size: 15px;
	 color: #1a1a1a;
	 margin-bottom: 10px;
	 padding: 6px 12px;
}
 .wiley-pdp .wiley-bookmarks__line {
	 height: 1px;
	 background: #e6e6e6;
	 margin-bottom: 12px;
	 position: relative;
}
 .wiley-pdp .wiley-bookmarks__accent {
	 position: absolute;
	 left: 0;
	 top: -1px;
	 height: 3px;
	 width: 36px;
	 background: #00d875;
}
 .wiley-pdp .wiley-bookmarks__list {
	 list-style: none;
	 padding: 0;
	 margin: 0;
}
 .wiley-pdp .wiley-bookmarks__item {
	 padding: 5px 0;
	 font-size: 13px;
	 border-bottom: 1px solid #e6e6e6;
	 line-height: 1.4;
	 margin-bottom: 0rem !important;
}
 .wiley-pdp .wiley-bookmarks__item:last-child {
	 border-bottom: none;
}
 .wiley-pdp .wiley-bookmarks__item a {
	 font-weight: 400;
    color: #5d5e5c;
    text-decoration: none;
    padding: 8px 16px;
    display: inline-block;
}
 .wiley-pdp .wiley-bookmarks__item a:hover {
	 color: #006955;
}
 .wiley-pdp .wiley-bookmarks__item.is-active a {
	font-weight: 600;
    color: #000;
    margin-left: -3px;
}
 .wiley-pdp .wiley-bookmarks__item--download a {
	 color: #006955;
	 font-weight: 700;
}
 .wiley-pdp .wiley-bookmarks__item--download a::before {
}
 .wiley-pdp .wiley-title {
	 margin-bottom: 28px;
}
 .wiley-pdp .wiley-title__row {
	 display: flex;
	 justify-content: space-between;
	 align-items: flex-start;
	 gap: 16px;
}
 .wiley-pdp .wiley-title__heading {
	 margin: 0;
	 font-family: "Inter", Arial, sans-serif;
	font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 14px;
    letter-spacing: -.24px;
    color: #000;
    font-style: normal;
}
 .wiley-pdp .wiley-title__share {
	 flex: 0 0 auto;
	 width: 36px;
	 height: 36px;
	 min-width: 36px;
	 min-height: 36px;
	 max-width: 36px;
	 max-height: 36px;
	 padding: 7px;
	 background: none;
	 border: none;
	 color: #00876e;
	 cursor: pointer;
	 border-radius: 50%;
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
	 transition: background .15s ease;
	 line-height: 0;
}
 .wiley-pdp .wiley-title__share:hover {
	 background: #e8f1ee;
}
 .wiley-pdp .wiley-title__share:focus {
	 outline: 2px solid #00d875;
	 outline-offset: 2px;
}
 .wiley-pdp .wiley-title__share-icon {
	 width: 22px !important;
	 height: 22px !important;
	 display: block;
	 fill: currentColor;
	 flex-shrink: 0;
}
 .wiley-pdp .wiley-title__author {
		color: #000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.28px;
    white-space: pre-wrap;
    font-style: normal;
    line-height: 8.284px;
    text-decoration-line: underline;
}
.wiley-pdp .wiley-title__author:hover {
    color: #007a76;
    text-decoration-line: none
}
 .wiley-pdp .wiley-title__meta {
				display: flex;
        flex-flow: wrap;
        color: #000;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 8.284px;
        letter-spacing: -.28px;
        list-style-type: none;
        margin-top: 13px;
        padding: 0px;
}
 .wiley-pdp .wiley-title__meta li {
	 position: relative;
	 padding-right: 16px;
}
 .wiley-pdp .wiley-title__meta li::after {
	         content: "|";
        position: absolute;
        right: 5px;
        color: #282828;
}
 .wiley-pdp .wiley-title__meta li:last-child {
	 padding-right: 0;
}
 .wiley-pdp .wiley-title__meta li:last-child::after {
	 content: none;
}
 .wiley-pdp .wiley-formats {
	 display: flex;
	 border-bottom: 1px solid #e6e6e6;
}
 .wiley-pdp .wiley-formats__tab {
	 flex: 1;
	 padding: 22px 16px 18px;
	 background: transparent;
	 border: none;
	 border-bottom: 4px solid transparent;
	 cursor: pointer;
	 font-family: inherit;
	 text-align: center;
	 transition: background .15s ease, border-color .15s ease;
}
 .wiley-pdp .wiley-formats__tab:hover:not(.is-active) {
	 background: #fafafa;
}
 .wiley-pdp .wiley-formats__tab.is-active {
	 border-bottom-color: #00d875;
}
 .wiley-pdp .wiley-formats__tab.is-active .wiley-formats__name {
	 color: #1a1a1a;
}
 .wiley-pdp .wiley-formats__name {
	 display: block;
	 font-size: 18px;
	 font-weight: 700;
	 color: #888;
	 margin-bottom: 4px;
}
 .wiley-pdp .wiley-formats__price {
	 display: block;
	 font-size: 14px;
	 color: #555;
}
 .wiley-pdp .wiley-variants__row {
	 display: grid;
	 grid-template-columns: 28px 1fr auto;
	 align-items: center;
	 gap: 14px;
	 padding: 24px 4px;
	 border-bottom: 1px solid #e6e6e6;
	 cursor: pointer;
	 transition: background .12s ease;
}
 .wiley-pdp .wiley-variants__row:hover {
	 background: #fafafa;
}
 .wiley-pdp .wiley-variants__radio {
	 width: 22px;
	 height: 22px;
	 border: 2px solid #00d875;
	 border-radius: 50%;
	 position: relative;
	 flex-shrink: 0;
}
 .wiley-pdp .wiley-variants__row.is-selected .wiley-variants__radio::after {
	 content: "";
	 position: absolute;
	 inset: 3px;
	 background: #00d875;
	 border-radius: 50%;
}
 .wiley-pdp .wiley-variants__body {
	 display: flex;
	 flex-direction: column;
	 gap: 4px;
}
 .wiley-pdp .wiley-variants__label {
	 font-weight: 700;
	 font-size: 16px;
	 color: #1a1a1a;
	 display: inline-flex;
	 align-items: center;
	 gap: 8px;
}
 .wiley-pdp .wiley-variants__info {
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
	 width: 16px;
	 height: 16px;
	 border-radius: 50%;
	 border: 1px solid #888;
	 color: #888;
	 font-size: 11px;
	 font-style: italic;
	 cursor: help;
}
 .wiley-pdp .wiley-variants__detail {
	 color: #555;
	 font-size: 14px;
}
 .wiley-pdp .wiley-variants__price {
		font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: .0025em;
    text-align: right;
    color: #000;
}
 .wiley-pdp .wiley-cartbox {
	 background: #fff;
	 border: 1px solid #d0d0d0;
	 border-radius: 4px;
	 padding: 24px 16px;
	 box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
 .wiley-pdp .wiley-cartbox__selected {
		font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 21.79px;
    text-align: left;
}
 .wiley-pdp .wiley-cartbox__selected strong {
	 color: #1a1a1a;
	 font-weight: 700;
	 margin-left: 4px;
}
 .wiley-pdp .wiley-cartbox__price-row {
	 display: flex;
	 justify-content: space-between;
	 align-items: baseline;
	 margin: 18px 0 24px;
}
 .wiley-pdp .wiley-cartbox__price-label {
		font-size: 16px;
    font-weight: 400;
    line-height: 21.79px;
    text-align: left;
}
 .wiley-pdp .wiley-cartbox__price {
	 	font-size: 24px;
    font-weight: 700;
    line-height: 32.68px;
    text-align: right;
}
 .wiley-pdp .wiley-cartbox__unavailable {
	 margin: 0;
	 padding: 14px;
	 background: #fafafa;
	 border-radius: 2px;
	 text-align: center;
	 color: #555;
	 font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0;
    text-align: center;
}
 .wiley-pdp .wiley-eval {
	 margin-top: 16px;
}
 .wiley-pdp .wiley-eval__btn {
	 display: block;
	 width: 100%;
	 padding: 16px;
	 background: #e8f1ee;
	 color: #006955;
	 border-radius: 4px;
	 font-weight: 700;
	 font-size: 15px;
	 text-align: center;
	 text-decoration: none;
	 transition: background .15s ease;
}
 .wiley-pdp .wiley-eval__btn:hover {
	 background: #dbe9e5;
	 color: #0d3b3e;
	 text-decoration: none;
}
 .wiley-pdp .wiley-section {
	 padding-top: 32px;
	 border-top: 1px solid #e6e6e6;
}
 .wiley-pdp .wiley-section__heading {
		font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: -.18px;
}
 .wiley-pdp .wiley-section--description {
	 border-top: none;
	 padding-top: 32px;
	 margin-top: 0;
}
 .wiley-pdp .wiley-related {
	 display: grid;
	 grid-template-columns: repeat(4,1fr);
	 gap: 24px;
}
 .wiley-pdp .wiley-related__card {
	 display: flex;
	 flex-direction: column;
	 background: #fff;
	 border: 1px solid #e6e6e6;
	 border-radius: 4px;
	 color: #1a1a1a;
	 text-decoration: none;
	 overflow: hidden;
	 transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
 .wiley-pdp .wiley-related__card:hover {
	 text-decoration: none;
	 transform: translateY(-4px);
	 box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	 border-color: #d0d0d0;
}
 .wiley-pdp .wiley-related__card:hover .wiley-related__title {
	 color: #006955;
}
 .wiley-pdp .wiley-related__img-wrap {
	 width: 100%;
	 aspect-ratio: 0.75;
	 background: #fff;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 overflow: hidden;
	 padding: 16px 16px 8px;
}
 .wiley-pdp .wiley-related__img {
	 max-width: 100%;
	 max-height: 100%;
	 width: auto;
	 height: auto;
	 object-fit: contain;
	 display: block;
}
 .wiley-pdp .wiley-related__body {
	 padding: 14px 16px 18px;
	 display: flex;
	 flex-direction: column;
	 gap: 6px;
}
 .wiley-pdp .wiley-related__title {
	 font-weight: 700;
	 font-size: 15px;
	 line-height: 1.35;
	 color: #1a1a1a;
	 margin: 0;
	 display: -webkit-box;
	 -webkit-line-clamp: 2;
	 -webkit-box-orient: vertical;
	 overflow: hidden;
	 transition: color .15s ease;
	 min-height: 2.7em;
}
 .wiley-pdp .wiley-related__author {
	 font-size: 13px;
	 color: #555;
	 line-height: 1.4;
	 display: -webkit-box;
	 -webkit-line-clamp: 2;
	 -webkit-box-orient: vertical;
	 overflow: hidden;
}
 .wiley-pdp .wiley-prose {
	 color: #1a1a1a;
	 font-size: 16px;
	 line-height: 1.7;
}
 .wiley-pdp .wiley-prose > *:first-child {
	 margin-top: 0;
}
 .wiley-pdp .wiley-prose > *:last-child {
	 margin-bottom: 0;
}
 .wiley-pdp .wiley-prose p[class^="cs"], .wiley-pdp .wiley-prose p[class*=" cs"] {
	 all: revert;
	 margin: 0 0 1em;
	 padding: 0;
	 color: #1a1a1a;
	 font-family: "Inter", Arial, sans-serif;
	 font-size: 16px;
	 line-height: 1.7;
	 font-weight: 400;
}
 .wiley-pdp .wiley-prose span[class^="cs"], .wiley-pdp .wiley-prose span[class*=" cs"] {
	  color: #000;
    font-size: 16px;
    letter-spacing: .04px;
    font-weight: 400;
    line-height: 32px;
    padding-top: 16px;
}
 .wiley-pdp .wiley-prose a[name^="_dx_frag"], .wiley-pdp .wiley-prose a[name^="_Toc"], .wiley-pdp .wiley-prose a[name^="_GoBack"], .wiley-pdp .wiley-prose a[name^="OLE_LINK"] {
	 display: inline;
	 font-size: 0;
	 line-height: 0;
	 color: transparent;
	 text-decoration: none;
	 background: none;
	 padding: 0;
	 margin: 0;
}
 .wiley-pdp .wiley-prose h1, .wiley-pdp .wiley-prose h2, .wiley-pdp .wiley-prose h3, .wiley-pdp .wiley-prose h4, .wiley-pdp .wiley-prose h5, .wiley-pdp .wiley-prose h6 {
	 color: #1a1a1a;
	 font-weight: 600;
	 line-height: 1.3;
	 margin: 1.6em 0 0.6em;
}

 .wiley-pdp .wiley-prose h6 {
	 font-size: 14px;
	 text-transform: uppercase;
	 letter-spacing: .04em;
}
 .wiley-pdp .wiley-prose p {
	 margin: 0 0 1em;
	 color: #1a1a1a;
	 font-size: 16px;
	 line-height: 1.7;
}
 .wiley-pdp .wiley-prose > p:first-of-type, .wiley-pdp .wiley-prose > p[class^="cs"]:first-of-type {
	 color: #1a1a1a;
	 font-size: 17px;
	 margin-bottom: 1.2em;
}
 .wiley-pdp .wiley-prose strong, .wiley-pdp .wiley-prose b {
	 font-weight: 700;
	 color: #1a1a1a;
}
 .wiley-pdp .wiley-prose em, .wiley-pdp .wiley-prose i {
	 font-style: italic;
}
 .wiley-pdp .wiley-prose u {
	 text-decoration-color: #555;
	 text-underline-offset: 3px;
}
 .wiley-pdp .wiley-prose mark {
	 background: #fff3a3;
	 padding: 0 3px;
	 border-radius: 2px;
}
 .wiley-pdp .wiley-prose small {
	 font-size: 0.875em;
	 color: #555;
}
 .wiley-pdp .wiley-prose del, .wiley-pdp .wiley-prose s {
	 text-decoration: line-through;
	 color: #555;
}
 .wiley-pdp .wiley-prose span {
	 font-family: inherit;
	 color: inherit;
	 font-size: inherit;
	 line-height: inherit;
}
 .wiley-pdp .wiley-prose a {
	 color: #00876e;
	 text-decoration: underline;
	 text-underline-offset: 3px;
	 transition: color .15s ease;
}
 .wiley-pdp .wiley-prose a:hover, .wiley-pdp .wiley-prose a:focus {
	 color: #006955;
	 text-decoration-thickness: 2px;
}
 .wiley-pdp .wiley-prose a:visited {
	 color: #005e4d;
}
 .wiley-pdp .wiley-prose ul, .wiley-pdp .wiley-prose ol {
	 margin: 0 0 1em;
	 padding-left: 1.6em;
}
 .wiley-pdp .wiley-prose ul li, .wiley-pdp .wiley-prose ol li {
	 margin-bottom: 0.4em;
	 line-height: 1.6;
}
 .wiley-pdp .wiley-prose ul li::marker, .wiley-pdp .wiley-prose ol li::marker {
	 color: #00876e;
}
 .wiley-pdp .wiley-prose ul li ul, .wiley-pdp .wiley-prose ul li ol, .wiley-pdp .wiley-prose ol li ul, .wiley-pdp .wiley-prose ol li ol {
	 margin: 0.4em 0;
}
 .wiley-pdp .wiley-prose ul {
	 list-style: disc outside;
}
 .wiley-pdp .wiley-prose ol {
	 list-style: decimal outside;
}
 .wiley-pdp .wiley-prose ul.wiley-checks {
	 list-style: none;
	 padding-left: 0;
}
 .wiley-pdp .wiley-prose ul.wiley-checks li {
	 padding-left: 1.8em;
	 position: relative;
}
 .wiley-pdp .wiley-prose ul.wiley-checks li::before {
	 content: "✓";
	 position: absolute;
	 left: 0;
	 color: #00876e;
	 font-weight: 700;
}
 .wiley-pdp .wiley-prose blockquote {
	 margin: 1.4em 0;
	 padding: 16px 24px;
	 border-left: 4px solid #00d875;
	 background: #e8f1ee;
	 font-style: italic;
	 font-size: 17px;
}
 .wiley-pdp .wiley-prose blockquote p:last-child {
	 margin-bottom: 0;
}
 .wiley-pdp .wiley-prose hr {
	 border: none;
	 border-top: 1px solid #e6e6e6;
	 margin: 2em 0;
}
 .wiley-pdp .wiley-prose img {
	 max-width: 100%;
	 height: auto;
	 border-radius: 2px;
	 margin: 1em 0;
}
 .wiley-pdp .wiley-prose figure {
	 margin: 1.4em 0;
	 text-align: center;
}
 .wiley-pdp .wiley-prose figure img {
	 margin: 0 auto;
}
 .wiley-pdp .wiley-prose figure figcaption {
	 margin-top: 8px;
	 font-size: 14px;
	 color: #555;
	 font-style: italic;
}
 .wiley-pdp .wiley-prose table {
	 width: 100%;
	 border-collapse: collapse;
	 margin: 1.4em 0;
	 font-size: 15px;
}
 .wiley-pdp .wiley-prose table th, .wiley-pdp .wiley-prose table td {
	 padding: 12px 16px;
	 border: 1px solid #e6e6e6;
	 text-align: left;
	 vertical-align: top;
}
 .wiley-pdp .wiley-prose table thead th {
	 background: #e8f1ee;
	 color: #0d3b3e;
	 font-weight: 700;
	 border-bottom: 2px solid #00d875;
}
 .wiley-pdp .wiley-prose table tbody tr:nth-child(even) {
	 background: #fafafa;
}
 .wiley-pdp .wiley-prose table tbody tr:hover {
	 background: #f3f7f5;
}
 .wiley-pdp .wiley-prose code {
	 font-family: "SF Mono", Monaco, Consolas, monospace;
	 font-size: 0.9em;
	 padding: 2px 6px;
	 background: #f3f4f6;
	 border-radius: 3px;
	 color: #c7254e;
}
 .wiley-pdp .wiley-prose pre {
	 background: #2d2d2d;
	 color: #f8f8f2;
	 padding: 16px 20px;
	 border-radius: 4px;
	 overflow-x: auto;
	 font-size: 14px;
	 margin: 1.2em 0;
}
 .wiley-pdp .wiley-prose pre code {
	 background: none;
	 padding: 0;
	 color: inherit;
}
 .wiley-pdp .wiley-prose--toc ul, .wiley-pdp .wiley-prose--toc ol {
	 margin-bottom: 0.4em;
}
 .wiley-pdp .wiley-prose--toc ul li, .wiley-pdp .wiley-prose--toc ol li {
	 margin-bottom: 0.25em;
}
 .wiley-pdp .wiley-prose--toc p {
	 margin-bottom: 0.5em;
}
 .wiley-pdp .wiley-prose--toc p[class^="cs"], .wiley-pdp .wiley-prose--toc p[class*=" cs"] {
	 margin-bottom: 0.4em;
}
 .wiley-pdp .wiley-prose--toc > p:first-of-type, .wiley-pdp .wiley-prose--toc > p[class^="cs"]:first-of-type {
	 font-weight: 400;
	 font-size: 16px;
}
 @media (max-width: 1200px) {
	 .wiley-pdp__grid {
		 grid-template-columns: 220px 1fr 320px;
		 gap: 28px;
	}
	 .wiley-pdp .wiley-related {
		 grid-template-columns: repeat(3,1fr);
	}
}
 @media (max-width: 991px) {
	 .wiley-pdp__grid {
		 grid-template-columns: 1fr;
		 gap: 32px;
	}
	 .wiley-pdp__right {
		 position: static;
	}
	 .wiley-pdp__container {
		 padding: 0 20px;
	}
	 .wiley-pdp__left {
		 align-items: flex-start;
	}
	 .wiley-pdp .wiley-title__heading {
		 font-size: 26px;
	}
	 .wiley-pdp .wiley-section__heading {
		 font-size: 20px;
	}
	 .wiley-pdp .wiley-related {
		 grid-template-columns: repeat(2,1fr);
	}
}
 @media (max-width: 575px) {
	 .wiley-pdp__container {
		 padding: 0 16px;
	}
	 .wiley-pdp__grid {
		 padding: 16px 0;
	}
	 .wiley-pdp .wiley-cover {
		 width: 160px;
		 height: 205px;
	}
	 .wiley-pdp .wiley-cover__img {
		 width: 160px;
		 height: 205px;
	}
	 .wiley-pdp .wiley-excerpt {
		 width: 160px;
	}
	 .wiley-pdp .wiley-formats__tab {
		 padding: 16px 8px 14px;
	}
	 .wiley-pdp .wiley-formats__name {
		 font-size: 16px;
	}
	 .wiley-pdp .wiley-formats__price {
		 font-size: 13px;
	}
	 .wiley-pdp .wiley-cartbox {
		 padding: 20px;
	}
	 .wiley-pdp .wiley-cartbox__price {
		 font-size: 26px;
	}
	 .wiley-pdp .wiley-title__heading {
		 font-size: 22px;
	}
	 .wiley-pdp .wiley-section__heading {
		 font-size: 18px;
	}
	 .wiley-pdp .wiley-related {
		 grid-template-columns: repeat(2,1fr);
		 gap: 16px;
	}
	 .wiley-pdp .wiley-related__title {
		 font-size: 14px;
	}
	 .wiley-pdp .wiley-prose {
		 font-size: 15px;
	}
	 .wiley-pdp .wiley-prose h1 {
		 font-size: 20px;
	}
	 .wiley-pdp .wiley-prose h2 {
		 font-size: 18px;
	}
	 .wiley-pdp .wiley-prose h3 {
		 font-size: 17px;
	}
	 .wiley-pdp .wiley-prose table {
		 font-size: 14px;
	}
	 .wiley-pdp .wiley-prose table th, .wiley-pdp .wiley-prose table td {
		 padding: 8px 10px;
	}
}
 






/* Product Grid Wrapper */
.products-grid .product-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.page-products .products-grid .product-item {width:100% !important;}
/* Product Card */
.products-grid .product-item {
    width: 100%;
    margin: 0;
}

.products-grid .product-item-info {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.products-grid .product-item-info:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

/* Product Image */
.products-grid .product-item-photo {
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

.products-grid .product-image-wrapper {
    overflow: hidden;
    border-radius: 6px;
}

.products-grid .product-image-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .3s ease;
}

.products-grid .product-item-info:hover .product-image-photo {
    transform: scale(1.05);
}

/* Product Name */
.products-grid .product-item-name {
    min-height: 52px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.products-grid .product-item-link {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
}

.products-grid .product-item-link:hover {
    color: #007bdb;
}

/* Price */
.products-grid .price-box {
    margin: 10px 0 15px;
}

.products-grid .price {
    color: #d10024;
    font-size: 22px;
    font-weight: 700;
}

/* Add To Cart Button */
.products-grid .action.tocart {
    width: 100%;
    background: #007bdb;
    border: none;
    border-radius: 4px;
    height: 44px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    transition: background .3s ease;
}

.products-grid .action.tocart:hover {
    background: #005fa3;
}

/* Wishlist + Compare */
.products-grid .actions-secondary {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.products-grid .actions-secondary a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.products-grid .actions-secondary a:hover {
    color: #007bdb;
}

/* Mobile */
@media (max-width: 768px) {
    .products-grid .product-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .products-grid .product-item-link {
        font-size: 14px;
    }

    .products-grid .price {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .products-grid .product-items {
        grid-template-columns: 1fr;
    }
}

.form-discount .g-recaptcha {
  margin-top: 50px !important;
}

.login-container .g-recaptcha,
.form-login .g-recaptcha,
.form-edit-account .g-recaptcha {
  margin-bottom: 10px !important;
}

.required-captcha.checkbox {
  position: absolute;
  display: block;
  visibility: visible;
  overflow: hidden;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.block.newsletter .field-recaptcha .field .control:before {
  content: none;
}

.review-form .field-recaptcha {
  margin-bottom: 10px;
}

.form.send.friend .g-recaptcha {
  margin-top: 40px;
}

.form.wishlist.share .g-recaptcha {
  margin-bottom: 40px;
}
.block-minicart .block-content > .actions .smart-buttons {
  margin-top: 15px;
}
.pay-later-message {
  margin-top: 10px;
}
.smart-buttons > div > div {
  vertical-align: bottom;
}
.apple-pay {
  margin-top: 14px;
}
.cart-summary .apple-pay {
  margin-top: 11px;
}
.google-pay {
  margin-top: 14px;
}
.navigation {background: #f5f5f500 !important;}
.navbar{display: flex !important;}
.navbar a {
    font-size: 16px;
    cursor: pointer;
    padding: 0 16px;
    position: relative;
    outline-offset: -5px;
    color:#fff;
    text-decoration: unset;
}

.subnav {
  float: left;
  overflow: hidden;
text-transform: capitalize !important;
}
.subnav .subnavbtn, .navbar a{
		font-family: 'Inter';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-transform: capitalize !important;
}
.subnav-content dt {
    font-weight: 600;
    display: grid;
    margin-bottom: 0px;
}

.navbar a:before{
	 position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #fff;
    border-radius: 4px 4px 0 0;}
.subnav-content {
   display: none;
    position: absolute;
    background-color: #ecedee;
    z-index: 1;
    top: 100%;
    text-align: left;
    padding: 10px;
    color: #161616;
}
.subnav-content li{
	display: grid;
	}

.subnav-content a {
  float: left;
  color: #161616;
  text-decoration: none;
  padding: 5px 7px;
}

.subnav-content a:hover {
  background-color: #3e40414d;
}

.subnav:hover .subnav-content {
  display: block;
  width: 32%;
}
.subnav-content a:hover li {display:block;} /* shows sublist on hover */
.subnav-content li a:hover li {
display:block; /* shows sub-sublist on hover */
margin-left:200px; /* this should be the same width as the parent list item */
margin-top:-35px; /* aligns top of sub menu with top of list item */
}
@media only screen and (max-width: 600px) {
.subnav-content {position: relative !important;}
.navbar a,.subnav {float: none !important;}
}


.google-pay button {
  background-origin: content-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
}
.cart-summary .google-pay {
  margin-bottom: 14px;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.product-info-stock-sku .configurable-variation-qty {
  display: none;
}
@media only screen and (max-width: 768px) {
  .field-tooltip .field-tooltip-content {
    left: auto;
    right: -10px;
    top: 40px;
  }
  .field-tooltip .field-tooltip-content::before,
  .field-tooltip .field-tooltip-content::after {
    border: 10px solid transparent;
    height: 0;
    left: auto;
    margin-top: -21px;
    right: 10px;
    top: 0;
    width: 0;
  }
  .field-tooltip .field-tooltip-content::before {
    border-bottom-color: #999;
  }
  .field-tooltip .field-tooltip-content::after {
    border-bottom-color: #f4f4f4;
    top: 1px;
  }
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
*/
@media only screen and (min-device-width: 320px) and (max-device-width: 780px) and (orientation: landscape) {
  .product-video {
    height: 100%;
    width: 81%;
  }
}
:root {
  --w-brand-green: #00d875;
  --w-brand-green-dark: #00b85f;
  --w-icon-dark-teal: #003B44;
  --w-dark-primary: #000000;
  --w-dark-brand-tertiary: #003B44;
  --w-dark-brand-primary: #003B44;
  --w-light-primary: #FFFFFF;
  --w-light-secondary: #F2EFE8;
  --w-light-tertiary: #E8E4DA;
  --w-dark-brand-secondary: #00565F;
  --w-font-serif: "Inter", Georgia, "Times New Roman", serif;
  --w-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --w-s-xs: 8px;
  --w-s-sm: 16px;
  --w-s-md: 16px;
  --w-s-lg: 24px;
  --w-s-xl: 32px;
  --w-s-2xl: 48px;
  --w-s-3xl: 64px;
  --w-s-4xl: 80px;
  --w-container: 1600px;
  --w-radius: 4px;
  --w-trans: 200ms ease-out;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--w-font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--w-dark-primary);
  background: var(--w-light-primary);
  margin: 0;
  font-weight: 400;
}
a {
  color: var(--w-dark-brand-tertiary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--w-trans);
}
a:hover,
a:focus {
  color: var(--w-brand-green-dark);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
.w-title,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--w-font-serif);
  font-weight: 300;
  line-height: 40px;
  margin: 0 0 var(--w-s-md);
  color: inherit;
  letter-spacing: -.02em;
}
h1,
.w-title--size-xl {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
}
h2,
.w-title--size-lg {
  font-size: 48px;
}
h3,
.w-title--size-md {
  font-size: 32px;
}
h4,
.w-title--size-sm {
  font-size: 24px;
  font-weight: 600;
}
p {
  margin: 0 0 var(--w-s-md);
}
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--w-light-primary);
}
.page-main {
  width: 100%;
 width: calc(100% - 80px * 2);
        max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--w-s-lg);
  flex: 1;
}
.w-container__wrapper {
  width: 100%;
}
.w-container__inner {
  width: calc(100% - 80px * 2);
        max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--w-s-lg);
}
.header-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Search width */
.block-search {
    flex: 1;
    max-width: 400px;
}

/* Menu spacing */
.navigation {
    margin-left: 20px;
}

/* Push cart + account right */
.minicart-wrapper {
    margin-left: auto;
}

.header.links {
    margin-left: 15px;
}
tabsection{
		float: left;
    clear: none;
    width: 100%;
    }
    .join-wiley-section {
    background: #003b46;
    padding: 70px 0;
}

.join-wiley-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 40px;
}

.join-wiley-image {
    flex: 1;
}

.join-wiley-image img {
    width: 100%;
    display: block;
}

.join-wiley-content {
    flex: 1;
    color: #fff;
}

.join-wiley-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 400;
}

.join-wiley-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.join-btn {
    display: inline-block;
    background: #00e676;
    color: #000;
    padding: 18px 40px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 3px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.3s ease;
}

.join-btn:hover {
    background: #00c853;
}

/* Responsive */
@media (max-width: 768px) {

    .join-wiley-container {
        flex-direction: column;
    }

    .join-wiley-content h2 {
        font-size: 34px;
    }

    .join-wiley-content p {
        font-size: 14px;
    }
}
.learning-resources {
    padding: 60px 0;
    background: #f5f5f5;
}


.section-header {
    text-align: left;
    padding-bottom: 32px;
}

.section-header h2 {
				font-family: 'Inter';
        font-size: 48px;
        line-height: 64px;
        letter-spacing: -.02em;
        font-weight: 300;
}
.section-header p
{				font-family: 'Inter';
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -.02em;}
.resource-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.resource-card {
    border-color: #006260;
    padding: 30px;
    border: 1px solid #006260;
    border-radius: 8px;
}

.resource-card h3 {
    margin-bottom: 15px;
}

.resource-card .action {
    margin-top: 20px;
    display: inline-block;
}
.page-header {
  background: var(--w-dark-brand-tertiary);
  color: var(--w-light-primary);

}
.header.content {
	display:flex;
        position: absolute;
        z-index: 10;
		    width: calc(100vw - 8px * 2) !important;
		    max-width: 1742px !important;
		    margin: 8px auto 0;
		    left: 0;
		    top: 0;
		    right: 0;
		    backdrop-filter: blur(1px);
		    min-height: 72px;
        border-radius: 8px;
        padding: 0px 0px 0px 0px !important;
        border: 1px solid #006260;
    		background-color: #003b44;
    		flex-direction: row;
        align-items: center;
}
.logo {
  flex: 0 0 auto;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.logo__emblem {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--w-brand-green);
  position: relative;
}
.logo__emblem::before,
.logo__emblem::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1.5px solid var(--w-brand-green);
}
.logo__emblem::after {
  inset: 9px;
  border-width: 1px;
  opacity: 0.6;
}
.logo__wordmark {
  font-family: var(--w-font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.875rem;
  color: var(--w-brand-green);
  letter-spacing: -0.01em;
}
.block-search {
 		
    margin-left: 24px;
  max-width: 480px;
}
.block-search .block-content {
  margin: 0;
}
.block-search .label ,.nested{
  display: none;
}
.block-search .control {
  position: relative;
}
.block-search input[type="search"],
.block-search input#search {
  width: 100%;
  height: 56px;
  color: var(--w-light-primary);
  background: #000;
  font-size: 16px;
    font-family: 'Inter';
    line-height: 24px;
    letter-spacing: -.02em;
    height: 56px;
    padding-left: 24px;
}
.block-search input[type="search"]::placeholder,
.block-search input#search::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.block-search input[type="search"]:focus,
.block-search input#search:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--w-brand-green);
}
.block-search .action.search {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--w-light-primary);
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-search .action.search::before {
  content: '\f002';
  font-family: 'luma-icons';
  font-size: 16px;
  
}
.block-search .action.search span {
  display: none;
}
.minicart-wrapper,
.header.links {
  display: inline-flex;
  align-items: center;
  gap: var(--w-s-sm);
}
.minicart-wrapper .action.showcart,
.header.links a.action {
  background: transparent;
  border: none;
  color: var(--w-light-primary);
  padding: 8px 12px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--w-trans);
}
.minicart-wrapper .action.showcart:hover,
.header.links a.action:hover {
  color: var(--w-brand-green);
}
.minicart-wrapper .action.showcart .counter.qty,
.header.links a.action .counter.qty {
  background: var(--w-brand-green);
  color: var(--w-dark-primary);
  font-weight: 500;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 10px;
  padding: 0 6px;
  font-size: 0.75rem;
  margin-left: 4px;
}
.nav-sections {
  background: var(--w-dark-brand-tertiary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.navigation {
width:auto;
  margin: 0 auto;
  padding: 0 var(--w-s-lg);
  background: transparent;
}
.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.navigation .level0 {
  position: relative;
}
.navigation .level0 > .level-top {
  display: block;
  padding: 14px 16px;
  color: var(--w-light-primary);
  font-family: var(--w-font-sans);
  font-weight: 400;
  font-size: 0.9375rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all var(--w-trans);
}
.navigation .level0 > .level-top:hover,
.navigation .level0 > .level-top.ui-state-active {
  color: var(--w-brand-green);
  border-bottom-color: var(--w-brand-green);
}
.navigation .level0 .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--w-light-primary);
  border: 1px solid var(--w-light-tertiary);
  box-shadow: 0 8px 24px rgba(0, 59, 68, 0.15);
  padding: var(--w-s-sm) 0;
  display: none;
  z-index: 50;
}
.navigation .level0 .submenu li {
  display: block;
}
.navigation .level0 .submenu a {
  display: block;
  padding: 10px 20px;
  color: var(--w-dark-primary);
  font-size: 0.9rem;
  text-decoration: none;
}
.navigation .level0 .submenu a:hover {
  background: var(--w-light-secondary);
  color: var(--w-dark-brand-tertiary);
}
.navigation .level0:hover .submenu {
  display: block;
}
.w-hero {
  position: relative;
  background-color: var(--w-dark-primary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--w-light-primary);
  overflow: hidden;
  background-image: url(/pub/media/images/homepage-only-energy-burst-visual.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.w-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--w-dark-primary);
  opacity: 0.4;
  pointer-events: none;
}
.w-hero__inner {
	margin-top: 160px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
 width: calc(100% - 80px * 2);
        max-width: 1600px;
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: var(--w-s-xl);
}
.w-hero__content {
  padding: var(--w-s-xl) 0;
}
.w-hero__title {
  font-family: var(--w-font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--w-light-primary);
  margin: 0 0 var(--w-s-md);
  max-width: 9ch;
  max-width: 12ch;
}
@media (min-width: 900px) {
  .w-hero__title {
    max-width: none;
  }
   .w-card-row {
        grid-template-columns: 1fr;
    }
}
.w-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.w-hero__lede {
  font-size: 16px;
  line-height: 1.55;
  max-width: 100%;
  margin: 0 0 var(--w-s-lg);
  color: var(--w-light-primary);
}
.w-hero__media {
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--w-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.w-hero__media::after {
  content: '';
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--w-brand-green);
  position: relative;
}
.w-hero__media::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  z-index: 2;
  width: 0;
  height: 0;
  border-left: 18px solid var(--w-dark-primary);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.w-icon-strip {
  background: var(--w-dark-brand-tertiary);
  padding: var(--w-s-2xl) 0;
  color: var(--w-light-primary);
}
.w-icon-strip__grid {
  max-width:100%;
  margin: 0 0;
  padding: 0 var(--w-s-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--w-s-xl);
}
.w-icon-card {
  color: var(--w-light-primary);
  padding:24px 32px 32px 32px;
}
.w-icon-card__icon {
  width: 72px;
  height: 82px;
  background-image: url(/pub/media/images/f6ce55755374133d2d0f.svg);
  background: var(--w-brand-green);
  border-radius: var(--w-radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--w-icon-dark-teal);
  margin-bottom: 32px;
  border-radius: 34px;
}
.w-icon-card__icon svg {
     width: 60%;
    height: 60%;
  fill: var(--w-icon-dark-teal);
}
.w-icon-card__title,.g-tx-target {
  font-family: var(--w-font-serif);
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -.02em;
  color: var(--w-light-primary);
  margin: 0 0 var(--w-s-sm);
}
.w-icon-card__desc {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 var(--w-s-md);
}
.w-icon-card__link {
 		text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top:11px;
    color:#00d875 !important;
    font-family: 'Inter';
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    font-weight: 500;
}
.w-icon-card__link:hover {
  color: var(--w-brand-green);
}
.w-icon-card__link::after {
  content: '\2192';
  transition: transform var(--w-trans);
}
.w-icon-card__link:hover::after {
  transform: translateX(3px);
}
.w-icon-card + .w-icon-card {
  margin-top: 0;
}
.w-section {
  padding: var(--w-s-4xl) 0;
}
.w-section--dark {
  background: var(--w-dark-primary);
  color: var(--w-light-primary);
}
.w-section--cream {
  background: var(--w-light-secondary);
  color: var(--w-dark-primary);
}
.w-section__inner,.resource-cards,.w-content-card,.w-card-row,.learning-resources .container {
   width: calc(100% - 80px * 2);
   max-width: 1600px;
 		margin-left: auto;
    margin-right: auto;
  }
  .w-section__inner {
    padding:0px 0px !important;
}
.w-section__heading {
  text-align: center;
  max-width: 1600px;
  margin: 0 auto var(--w-s-xl);
}
.w-section__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: inherit;
  opacity: 0.7;
  margin-bottom: var(--w-s-sm);
}
.w-section--dark .w-section__title{text-align:left !important;}
.w-section__title {
  font-family: 'Inter';
  font-size: 48px;
  line-height: 64px;
  color: inherit;
  margin: 0;
  font-weight:200;
}
.tabsection .w-section__title {text-align: left;}
.w-section__lede {
  font-size:16px;
  margin-top: var(--w-s-md);
  opacity: 0.9;
}
.w-content-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--w-s-2xl);
  align-items: center;
}

.w-section--dark .w-content-card__media{order:2;}

.w-content-card__media img {
  width: 100%;
  height: auto;
  border-radius: var(--w-radius);
  display: block;
}
.w-content-card__body {
  padding: var(--w-s-md) 0;
  align-self: start;
}
.w-content-card__eyebrow,.w-section__eyebrow {
  font-size:14px;
  	font-family: 'IBM Plex Mono';
    text-transform: uppercase;
    letter-spacing: .0875em;
  font-weight: 300;
  margin-bottom: var(--w-s-sm);
  opacity: 0.75;
}
.w-content-card__title {
  font-family: var(--w-font-serif);
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 var(--w-s-md);
}
.w-content-card__desc {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 var(--w-s-lg);
}
.w-content-card--reverse .w-content-card__media {
  order: 2;
}

.feature .w-card {
  background: transparent;
  border: 1px solid #8c8b89;
  border-color: #302f2f;
  border-radius: var(--w-radius);
  padding: var(--w-s-lg);
  display: flex;
  flex-direction: column;
  color: inherit;
}

.w-card {
  background: transparent;
  border: 1px solid currentColor;
  border-color: var(--w-dark-brand-primary);
  border-radius: var(--w-radius);
  padding: var(--w-s-lg);
  display: flex;
  flex-direction: column;
  color: inherit;
}
.w-card__title {
  font-family: var(--w-font-serif);
  font-size: 32px;
  line-height: 40px;
  margin: 0 0 var(--w-s-sm);
  font-weight: 400;
}
.w-card__desc {
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 var(--w-s-lg);
  flex: 1;
  opacity: 0.9;
  letter-spacing: -.02em;
}
article .w-btn--outlined{
	  text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width:44%;
    margin-bottom: 50px;
	}
.w-section--cream .w-card {
  border-color: var(--w-dark-brand-tertiary);
  background: var(--w-light-primary);
}
.w-tabs {
  border-bottom: none
  margin-bottom: var(--w-s-2xl);
}
.w-tabs__list {
		list-style: none;
  	display: inline-flex;
  	overflow: auto;
  	flex-direction: row;
    scrollbar-width: thin;
    background-color: #302f2f;
		justify-content: space-evenly;
    gap: 10px;
    height: auto;
    padding: 4px;
    border-radius: 160px;
    border: 0;
}
.w-tabs__list li{
	margin-bottom: 0rem;
	color: #fff;
	}
.w-tabs__btn {
  	background-color: #00000000;
    border: 0;
    border-radius: 50px;
    min-width: 150px;
    font-weight: 600;
    font-size: 16px;
    padding: 16px 32px;
    cursor: pointer;
    overflow: clip;
    transition: all .2s ease-out;
    color:#fff;
}
.w-tabs__btn:hover {
  opacity: 1;
  color: #000000;
  border: 0 !important;
  background-color: #ffffff;
}
.w-tabs__btn.is-active {
  opacity: 1;
  color: #000000;
  background-color: #ffffff;
}
.w-tabs__btn.is-active::after {
	  content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    height: 0px;
}
.w-tab-panel,.tabsection .w-card-row {
  display: none;
}
.w-tab-panel.is-active{
  display: block;
}
.tabsection .w-card-row.is-active {
        display: grid;
        margin-top: 40px;
    }
.resource-cards .action.primary{color: #003b44;
    border: 1px solid #006260;
    background-color: #0000;
		 font-family: 'IBM Plex Mono';
    	font-size: 14px;
    	line-height: 24px;
    	letter-spacing: .0875em;
    padding: 16px 24px;
    min-height: 48px;
    display: inline-flex !important;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color .15s ease-in-out, color .15s ease-in-out, border-color .15s ease-in-out;
    }
.w-section--dark .w-content-card .w-btn, #tab-libraries .w-btn,
#tab-libraries .w-btn,
#tab-corporates .w-btn,
#tab-authors .w-btn,
#tab-educators .w-btn,
#tab-learners.w-btn,
#tab-learners.w-btn{
    	background-color: #00d875;
    	border: 1px solid #00d875;
   	 color: #003b44 !important;
   	 font-family: 'IBM Plex Mono';
    	font-size: 14px;
    	line-height: 24px;
    	letter-spacing: .0875em;
    padding: 16px 24px;
    min-height: 48px;
    display: inline-flex !important;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color .15s ease-in-out, color .15s ease-in-out, border-color .15s ease-in-out;
    	}
.w-btn,
.action.primary,
button.action.primary,
.action-primary,
button.tocart,.join-btn {
    font-family: 'IBM Plex Mono';
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .02em;
    padding: 16px 24px;
    min-height: 48px;
    font-weight: 500 !important;
    text-transform: uppercase;
    color: var(--w-dark-primary) !important;
   border-radius: 8px
}
.w-section--dark .w-btn{color: #f2f2eb !important;
    border: 1px solid #adaca8;
    background-color: #0000;
    position: relative;
    z-index: 0;
    overflow: hidden;}
    
.w-btn:hover,
.action.primary:hover,
button.action.primary:hover,
.action-primary:hover,
button.tocart:hover,
.w-btn:focus,
.action.primary:focus,
button.action.primary:focus,
.action-primary:focus,
button.tocart:focus {
  background: var(--w-brand-green-dark);
  border-color: var(--w-brand-green-dark);
  color: var(--w-dark-primary);
  text-decoration: none;
}
.w-btn::after,
.action.primary::after,
button.action.primary::after,
.action-primary::after,
button.tocart::after {
  content: '\2192';
  font-weight: 400;
  transition: transform var(--w-trans);
}
.w-btn:hover::after,
.action.primary:hover::after,
button.action.primary:hover::after,
.action-primary:hover::after,
button.tocart:hover::after {
  transform: translateX(3px);
}
.w-btn--outlined,
.action.secondary {
  background: transparent;
  color: inherit;
  border: 1px solid #8c8b89;
}
.w-btn--outlined:hover,
.action.secondary:hover,
.w-btn--outlined:focus,
.action.secondary:focus {
  background: var(--w-brand-green);
  border-color: var(--w-brand-green);
  color: var(--w-dark-primary);
}
.w-btn--text {
  background: transparent;
  border: none;
  padding: 0;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
.w-btn--text:hover {
  color: var(--w-brand-green);
  background: transparent;
}
.products-grid .product-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--w-s-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}
.products-grid .product-item {
  background: var(--w-light-primary);
  border: 1px solid var(--w-light-tertiary);
  border-radius: var(--w-radius);
  overflow: hidden;
  transition: all var(--w-trans);
}
.products-grid .product-item:hover {
  border-color: var(--w-brand-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 59, 68, 0.1);
}
.products-grid .product-item-info {
  padding: var(--w-s-md);
}
.products-grid .product-item-photo {
  display: block;
  aspect-ratio: 3 / 4;
  background: var(--w-light-secondary);
}
.products-grid .product-item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products-grid .product-item-name {
  font-family: var(--w-font-serif);
  font-size: 1.0625rem;
  line-height: 1.3;
  margin: 0 0 var(--w-s-sm);
  min-height: 2.6em;
}
.products-grid .product-item-name a {
  color: var(--w-dark-primary);
  text-decoration: none;
}
.products-grid .product-item-name a:hover {
  color: var(--w-brand-green-dark);
}
.products-grid .price-box {
  margin: var(--w-s-sm) 0;
}
.products-grid .price-box .price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--w-dark-primary);
}
.products-grid .price-box .old-price .price {
  font-size: 0.875rem;
  color: #888;
  text-decoration: line-through;
  font-weight: 400;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--w-font-sans);
  font-size: 0.9375rem;
  color: var(--w-dark-primary) !important;
  background: var(--w-light-primary);
  border: 1px solid #999;
  border-radius: var(--w-radius);
  transition: border-color var(--w-trans);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--w-dark-brand-tertiary);
  box-shadow: 0 0 0 3px rgba(0, 216, 117, 0.2);
}
label {
  font-weight: 600;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 6px;
  color: var(--w-dark-primary);
}
.block.newsletter {
  background: var(--w-dark-brand-tertiary);
  color: var(--w-light-primary);
  padding: var(--w-s-2xl) var(--w-s-lg);
  text-align: center;
}
.block.newsletter .title {
  font-family: var(--w-font-serif);
  font-size: 1.875rem;
  margin-bottom: var(--w-s-sm);
  color: var(--w-light-primary);
}
.block.newsletter .content {
  max-width: 540px;
  margin: 0 auto;
}
.block.newsletter .field.newsletter {
  display: flex;
  gap: var(--w-s-sm);
}
.block.newsletter .field.newsletter input {
  flex: 1;
  background: var(--w-light-primary);
  color: var(--w-dark-primary);
  height: 46px;
  border: 1px solid transparent;
}
.block.newsletter .field.newsletter input:focus {
  border-color: var(--w-brand-green);
}
.block.newsletter .actions .action.subscribe {
  height: 46px;
  background: var(--w-brand-green);
  border-color: var(--w-brand-green);
  color: var(--w-dark-primary);
}
.block.newsletter .actions .action.subscribe:hover {
  background: var(--w-brand-green-dark);
  border-color: var(--w-brand-green-dark);
}
.page-footer {
  background: var(--w-dark-primary);
  color: var(--w-light-primary);
  padding: var(--w-s-4xl) 0 var(--w-s-md);
  margin-top: auto;
  font-size: 0.875rem;
}
.page-footer .footer.content {
  max-width:1600px;
  margin: 0 auto;
  padding: 0 var(--w-s-lg);
}
.w-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--w-s-xl);
  padding-bottom: var(--w-s-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.w-footer-grid h4 {
  color: var(--w-light-primary);
  font-family: var(--w-font-sans);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--w-s-md);
}
.w-footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer.content {
     border-top: none !important;
    }
.w-footer-grid li {
  margin-bottom: 8px;
}
.w-footer-grid a {
  color: rgba(255, 255, 255, 0.75);
 		font-family: 'Inter';
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0px;
  display: inline-block;
}
.w-footer-grid a:hover {
  color: var(--w-brand-green);
}
.w-footer-bottom {
  padding-top: var(--w-s-lg);
  display: flex;
  flex-direction: column;
  gap: var(--w-s-md);
}
.w-footer-bottom__logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--w-s-md);
}
.w-footer-bottom__social {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.w-footer-bottom__social a {
  color: var(--w-light-primary);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--w-trans);
}
.w-footer-bottom__social a:hover {
  background: var(--w-brand-green);
  color: var(--w-dark-primary);
}
.w-footer-bottom__social a svg {
  width: 18px;
  height: 18px;
  fill: #8c8b89;
}
.w-footer-bottom__copyright {
  font-size: 0.75rem;
  opacity: 0.7;
  line-height: 1.5;
}
.w-footer-bottom__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--w-s-lg);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.w-footer-bottom__legal a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.w-footer-bottom__legal a:hover {
  color: var(--w-brand-green);
}
.w-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--w-brand-green);
  color: var(--w-dark-primary);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 59, 68, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all var(--w-trans);
  z-index: 999;
}
.w-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.w-scroll-top:hover {
  background: var(--w-brand-green-dark);
}
.breadcrumbs {
  max-width:1600px;
  margin: 0 auto;
  padding: var(--w-s-md) var(--w-s-lg);
  font-size: 0.8125rem;
  color: var(--w-dark-primary);
}
.breadcrumbs .items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.breadcrumbs .item + .item::before {

}
.breadcrumbs a {
  color: var(--w-dark-brand-tertiary);
}
.breadcrumbs a:hover {
  color: var(--w-brand-green-dark);
}
.message {
  padding: var(--w-s-md) var(--w-s-lg);
  border-radius: var(--w-radius);
  margin: var(--w-s-md) 0;
  font-size: 0.9rem;
  border-left: 4px solid;
}
.message.success {
  background: #E6FCEF;
  border-color: #008844;
  color: #003C20;
}
.message.error {
  background: #FCEBEB;
  border-color: #C8102E;
  color: #6B0A19;
}
.message.notice,
.message.info {
  background: #E6F4F6;
  border-color: var(--w-dark-brand-tertiary);
  color: var(--w-dark-brand-tertiary);
}
.sidebar .block-title strong {
  font-family: var(--w-font-serif);
  font-size: 1.125rem;
  color: var(--w-dark-primary);
  padding-bottom: var(--w-s-sm);
  border-bottom: 2px solid var(--w-brand-green);
  display: block;
  margin-bottom: var(--w-s-md);
}
@media (max-width: 1024px) {
  .header.content {
    flex-wrap: wrap;
  }
  .block-search {
    order: 3;
    flex: 1 1 100%;
  }
  .w-hero__inner {
    grid-template-columns: 1fr;
  }
  .w-icon-strip__grid {
    grid-template-columns: 1fr;
    gap: var(--w-s-lg);
  }
  .w-card-row {
    grid-template-columns: 1fr;
  }
  .w-content-card {
    grid-template-columns: 1fr;
    gap: var(--w-s-lg);
  }
  .w-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .navigation ul {
    flex-direction: column;
  }
  .navigation .level0 > .level-top {
    padding: 12px var(--w-s-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .w-section {
    padding: var(--w-s-2xl) 0;
  }
  .w-hero__inner {
    padding: var(--w-s-2xl) var(--w-s-lg);
  }
  .w-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .w-footer-bottom__logo-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .block.newsletter .field.newsletter {
    flex-direction: column;
  }
  .w-tabs__list {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
	.header.content {
    flex-wrap: wrap;
  }
  .block-search {
    order: 3;
    flex: 1 1 100%;
  }
  .w-hero__inner {
    grid-template-columns: 1fr;
  }
  .w-icon-strip__grid {
    grid-template-columns: 1fr;
    gap: var(--w-s-lg);
  }
  .w-card-row {
    grid-template-columns: 1fr;
  }
  .w-content-card {
    grid-template-columns: 1fr;
    gap: var(--w-s-lg);
  }
  .w-footer-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .w-footer-grid {
    grid-template-columns: 1fr;
  }
  .products-grid .product-items {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--w-s-md);
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media print {
  .page-header,
  .page-footer,
  .nav-sections,
  .block.newsletter,
  .w-scroll-top {
    display: none;
  }
  body {
    color: #000;
    background: #fff;
  }
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
@media all and (min-width: 768px), print {
  .abs-product-options-list-desktop dt,
  .block-giftregistry-shared .item-options dt {
    clear: left;
    float: left;
    margin: 0 10px 5px 0;
  }
  .abs-product-options-list-desktop dt:after,
  .block-giftregistry-shared .item-options dt:after {
    content: ': ';
  }
  .abs-product-options-list-desktop dd,
  .block-giftregistry-shared .item-options dd {
    display: inline-block;
    float: left;
    margin: 0 0 5px;
    word-break: break-all;
  }
  .abs-button-desktop {
    width: auto;
  }
  .abs-blocks-2columns,
  .column .block-addbysku .block-content .box,
  .login-container .block,
  .account .column.main .block:not(.widget) .block-content .box,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box,
  .sales-guest-view .column.main .block:not(.widget) .block-content .box {
    width: 48.8%;
  }
  .abs-blocks-2columns:nth-child(odd),
  .column .block-addbysku .block-content .box:nth-child(odd),
  .login-container .block:nth-child(odd),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  .sales-guest-view .column.main .block:not(.widget) .block-content .box:nth-child(odd) {
    clear: left;
    float: left;
  }
  .abs-blocks-2columns:nth-child(even),
  .column .block-addbysku .block-content .box:nth-child(even),
  .login-container .block:nth-child(even),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(even),
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box:nth-child(even),
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box:nth-child(even),
  .sales-guest-view .column.main .block:not(.widget) .block-content .box:nth-child(even) {
    float: right;
  }
  .abs-reset-left-margin-desktop,
  .column.main .magento-payments-review .actions-toolbar,
  .bundle-options-container .legend.title,
  .column.main .cart-summary .actions-toolbar,
  .cart.table-wrapper .item-actions .actions-toolbar,
  .gift-summary .actions-toolbar,
  .cart.table-wrapper .gift-summary .actions-toolbar,
  .column.main .block-giftregistry-shared-items .actions-toolbar,
  .form-new-agreement .fieldset .legend,
  .form-new-agreement .actions-toolbar,
  .column.main .paypal-review .actions-toolbar,
  .wishlist-index-index .main .form-wishlist-items .actions-toolbar {
    margin-left: 0;
  }
  .abs-action-remove-desktop,
  .abs-add-fields-desktop .fieldset .additional .action.remove,
  .form-giftregistry-share .fieldset .additional .action.remove,
  .form-giftregistry-edit .fieldset .additional .action.remove,
  .form-add-invitations .fieldset .additional .action.remove,
  .form-create-return .fieldset .additional .action.remove,
  .form.send.friend .fieldset .additional .action.remove {
    margin-left: 75.8%;
    top: 6px;
  }
  .abs-add-fields-desktop .fieldset .field:not(.choice) .control,
  .form-giftregistry-share .fieldset .field:not(.choice) .control,
  .form-giftregistry-edit .fieldset .field:not(.choice) .control,
  .form-add-invitations .fieldset .field:not(.choice) .control,
  .form-create-return .fieldset .field:not(.choice) .control,
  .form.send.friend .fieldset .field:not(.choice) .control {
    width: 50%;
  }
  .abs-margin-for-forms-desktop,
  .fieldset .legend,
  .column:not(.sidebar-main) form .actions-toolbar,
  .column:not(.sidebar-additional) form .actions-toolbar,
  .login-container .fieldset:after {
    margin-left: 25.8%;
  }
  .abs-visually-hidden-desktop,
  .modes-label,
  .block-search .label,
  .dashboard-welcome-toggler,
  .block-collapsible-nav .title {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .abs-add-clearfix-desktop:before,
  .abs-add-clearfix-desktop:after,
  .abs-pager-toolbar:before,
  .abs-pager-toolbar:after,
  .magento-payments-review .block-content:before,
  .magento-payments-review .block-content:after,
  .magento-payments-review-discount:before,
  .magento-payments-review-discount:after,
  .order-review-form:before,
  .order-review-form:after,
  .block-cart-failed .block-content:before,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:before,
  .column .block-addbysku .block-content:after,
  .cart-container:before,
  .cart-container:after,
  .login-container:before,
  .login-container:after,
  .account .column.main .block:not(.widget) .block-content:before,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:before,
  .block-addresses-list .items.addresses:after,
  .block-giftregistry-shared .item-options:before,
  .block-giftregistry-shared .item-options:after,
  .gift-wrapping .nested:before,
  .gift-wrapping .nested:after,
  .table .gift-wrapping .content:before,
  .table .gift-wrapping .content:after,
  .block-wishlist-management:before,
  .block-wishlist-management:after,
  .paypal-review .block-content:before,
  .paypal-review .block-content:after,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:before,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:after,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:before,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:after,
  .sales-guest-view .column.main .block:not(.widget) .block-content:before,
  .sales-guest-view .column.main .block:not(.widget) .block-content:after,
  .header.content:before,
  .header.content:after,
  .page-header .header.panel:before,
  .page-header .header.panel:after,
  .account .toolbar:before,
  .account .toolbar:after,
  .toolbar-giftregistry-results:before,
  .toolbar-giftregistry-results:after,
  .toolbar-wishlist-results:before,
  .toolbar-wishlist-results:after {
    content: '';
    display: table;
  }
  .abs-add-clearfix-desktop:after,
  .abs-pager-toolbar:after,
  .magento-payments-review .block-content:after,
  .magento-payments-review-discount:after,
  .order-review-form:after,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:after,
  .cart-container:after,
  .login-container:after,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:after,
  .block-giftregistry-shared .item-options:after,
  .gift-wrapping .nested:after,
  .table .gift-wrapping .content:after,
  .block-wishlist-management:after,
  .paypal-review .block-content:after,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:after,
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content:after,
  .sales-guest-view .column.main .block:not(.widget) .block-content:after,
  .header.content:after,
  .page-header .header.panel:after,
  .account .toolbar:after,
  .toolbar-giftregistry-results:after,
  .toolbar-wishlist-results:after {
    clear: both;
  }
  .abs-add-box-sizing-desktop,
  .column.main,
  .sidebar-main,
  .sidebar-additional {
    box-sizing: border-box;
  }
  .abs-add-box-sizing-desktop-m,
  .opc-wrapper {
    box-sizing: border-box;
  }
  .abs-revert-field-type-desktop .fieldset > .field,
  .abs-revert-field-type-desktop .fieldset .fields > .field,
  .product-add-form .fieldset > .field,
  .product-add-form .fieldset .fields > .field {
    margin: 0 0 20px;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .label,
  .product-add-form .fieldset > .field:not(.choice) > .label,
  .product-add-form .fieldset .fields > .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .control,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .control,
  .product-add-form .fieldset > .field:not(.choice) > .control,
  .product-add-form .fieldset .fields > .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .abs-revert-field-type-desktop .fieldset > .field > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field > .label,
  .product-add-form .fieldset > .field > .label,
  .product-add-form .fieldset .fields > .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .abs-revert-field-type-desktop .fieldset > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset > .field.no-label:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.no-label:before,
  .product-add-form .fieldset > .field.choice:before,
  .product-add-form .fieldset .fields > .field.choice:before,
  .product-add-form .fieldset > .field.no-label:before,
  .product-add-form .fieldset .fields > .field.no-label:before {
    display: none;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(:first-child):last-of-type,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(:first-child):last-of-type,
  .product-add-form .fieldset > .field:not(:first-child):last-of-type,
  .product-add-form .fieldset .fields > .field:not(:first-child):last-of-type {
    margin-bottom: 0;
  }
  .abs-no-display-desktop,
  .opc-estimated-wrapper,
  .sidebar .block.widget .pager .item:not(.pages-item-next):not(.pages-item-previous) {
    display: none;
  }
  .abs-pager-toolbar,
  .account .toolbar,
  .toolbar-giftregistry-results,
  .toolbar-wishlist-results {
    margin-bottom: 20px;
    position: relative;
  }
  .abs-pager-toolbar .limiter,
  .account .toolbar .limiter,
  .toolbar-giftregistry-results .limiter,
  .toolbar-wishlist-results .limiter {
    float: right;
    position: relative;
    z-index: 1;
  }
  .abs-pager-toolbar .toolbar-amount,
  .account .toolbar .toolbar-amount,
  .toolbar-giftregistry-results .toolbar-amount,
  .toolbar-wishlist-results .toolbar-amount {
    float: left;
    line-height: normal;
    padding: 7px 0 0;
    position: relative;
    z-index: 1;
  }
  .abs-pager-toolbar .pages,
  .account .toolbar .pages,
  .toolbar-giftregistry-results .pages,
  .toolbar-wishlist-results .pages {
    position: absolute;
    width: 100%;
    z-index: 0;
  }
  .abs-shopping-cart-items-desktop,
  .block-cart-failed,
  .cart-container .form-cart,
  .cart-container .cart-gift-item {
    float: left;
    position: relative;
    width: 73%;
  }
  .abs-shopping-cart-items-desktop .actions,
  .block-cart-failed .actions,
  .cart-container .form-cart .actions,
  .cart-container .cart-gift-item .actions {
    text-align: right;
  }
  .abs-shopping-cart-items-desktop .action.clear,
  .abs-shopping-cart-items-desktop .action.update,
  .block-cart-failed .action.clear,
  .block-cart-failed .action.update,
  .cart-container .form-cart .action.clear,
  .cart-container .form-cart .action.update,
  .cart-container .cart-gift-item .action.clear,
  .cart-container .cart-gift-item .action.update {
    margin-left: 10px;
  }
  .abs-shopping-cart-items-desktop .action.continue,
  .block-cart-failed .action.continue,
  .cart-container .form-cart .action.continue,
  .cart-container .cart-gift-item .action.continue {
    float: left;
  }
  h1 {
    font-size: 40px;
    margin-bottom: 40px;
  }
.breadcrumbs{
						padding: 25px 0 23px;
            margin: 6% 0% 0% 0% !important;
	}
  .breadcrumbs,
  .page-header .header.panel,
  .header.content,
  .footer.content,
  .page-wrapper > .widget,
  .page-wrapper > .page-bottom,
  .block.category.event,
  .top-container,
  .page-main {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 80px * 2);
    max-width: 1600px;
    padding-left: 100px;
    padding-right: 100px;
  }
  .page-main {
    width: 100%;
  }
  .columns {
    display: block;
  }
  .column.main {
    min-height: 300px;
  }
  .page-layout-1column .column.main {
    width: 100%;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-3columns .column.main {
    width: 66.66666667%;
    display: inline-block;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .column.main {
    width: 83.33333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .column.main {
    width: 83.33333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .sidebar-main {
    padding-right: 2%;
  }
  .page-layout-3columns .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-left .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    padding-left: 2%;
    padding-right: 0;
  }
  .sidebar-additional {
    clear: right;
    padding-left: 2%;
  }
  .page-layout-3columns .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
  .page-layout-2columns-left .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .main {
    padding-left: 2%;
  }
  .page-layout-2columns-left .sidebar-additional {
    clear: left;
    float: left;
    padding-left: 0;
  }
  .panel.header {
    padding: 10px 20px;
  }
  .nav-toggle {
    display: none;
  }
  .nav-sections {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-bottom: 25px;
  }
  .nav-sections-item-title {
    display: none;
  }
  .nav-sections-item-content > * {
    display: none;
  }
  .nav-sections-item-content > .navigation {
    display: block;
  }
  .navigation {
    background: #f5f5f5;
    font-weight: 500;
    height: inherit;
    left: auto;
    overflow: inherit;
    padding: 0;
    position: relative;
    top: 0;
    z-index: 3;
  }
  .navigation:empty {
    display: none;
  }
  .navigation ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    position: relative;
  }
  .navigation li.level0 {
    border-top: none;
  }
  .navigation li.level1 {
    position: relative;
  }
  .navigation .level0 {
    margin: 0 10px 0 0;
    display: inline-block;
    position: relative;
  }
  .navigation .level0:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .navigation .level0:hover:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: calc(100% + 3px);
    z-index: 1;
  }
  .navigation .level0 > .level-top {
    color: #575757;
    line-height: 53px;
    padding: 0 12px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
  }
  .navigation .level0 > .level-top:hover,
  .navigation .level0 > .level-top.ui-state-focus {
    color: #333;
    text-decoration: none;
  }
  .navigation .level0.active > .level-top,
  .navigation .level0.has-active > .level-top {
    border-color: #ff5501;
    border-style: solid;
    border-width: 0 0 3px;
    color: #333;
    text-decoration: none;
    display: inline-block;
  }
  .navigation .level0.parent:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.parent > .level-top {
    padding-right: 20px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon {
    position: absolute;
    right: 0;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 20px;
    color: inherit;
    content: '\e622';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0 .submenu {
    background: #fff;
    border: 1px solid #d1d1d1;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.19);
    font-weight: 700;
    min-width: 230px;
    padding: 0;
    display: none;
    left: 0;
    margin: 0 !important;
    position: absolute;
    z-index: 1;
    margin-top: 11px;
  }
  .navigation .level0 .submenu > ul {
    margin-top: 11px;
  }
  .navigation .level0 .submenu > ul:before,
  .navigation .level0 .submenu > ul:after {
    content: '';
    display: block;
    overflow: hidden;
    position: absolute;
  }
  .navigation .level0 .submenu > ul:before {
    color: #fff;
    left: 20px;
    top: -20px;
    border: 10px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #fff;
    z-index: 4;
  }
  .navigation .level0 .submenu > ul:after {
    border: 11px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #d1d1d1;
    color: #d1d1d1;
    left: 19px;
    top: -22px;
    z-index: 3;
  }
  .navigation .level0 .submenu:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    top: -4px;
    z-index: 1;
  }
  .navigation .level0 .submenu a {
    display: block;
    line-height: inherit;
    color: #575757;
    padding: 8px 20px;
  }
  .navigation .level0 .submenu a:hover,
  .navigation .level0 .submenu a.ui-state-focus {
    background: #e8e8e8;
    color: #333;
    text-decoration: none;
  }
  .navigation .level0 .submenu .active > a {
    border-color: #ff5501;
    border-style: solid;
    border-width: 0 0 0 3px;
  }
  .navigation .level0 .submenu .submenu {
    top: -1px !important;
    left: 100% !important;
  }
  .navigation .level0 .submenu .submenu-reverse {
    left: auto !important;
    right: 100%;
  }
  .navigation .level0 .submenu li {
    margin: 0;
    position: relative;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon {
    position: absolute;
    right: 3px;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 20px;
    color: inherit;
    content: '\e608';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.more {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.more:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 26px;
    line-height: inherit;
    color: inherit;
    content: '\e607';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.more:before {
    display: none;
  }
  .navigation .level0.more:after {
    cursor: pointer;
    padding: 8px 12px;
    position: relative;
    z-index: 1;
  }
  .navigation .level0.more:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.more li {
    display: block;
  }
  .panel.header .links,
  .panel.header .switcher {
    display: inline-block;
  }
  .fieldset > .field {
    margin: 0 0 20px;
    box-sizing: border-box;
    margin: 0 0 29px;
  }
  .fieldset > .field > .label {
    margin: 0;
  }
  .fieldset > .field:before,
  .fieldset > .field:after {
    content: '';
    display: table;
  }
  .fieldset > .field:after {
    clear: both;
  }
  .fieldset > .field.choice:before,
  .fieldset > .field.no-label:before {
    padding: 6px 15px 0 0;
    width: 25.8%;
    box-sizing: border-box;
    content: ' ';
    float: left;
    height: 1px;
  }
  .fieldset > .field .description {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .fieldset > .field:not(.choice) > .label {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .fieldset > .field:not(.choice) > .control {
    width: 74.2%;
    float: left;
  }
  .product.data.items {
    position: relative;
    z-index: 1;
  }
  .product.data.items:before,
  .product.data.items:after {
    content: '';
    display: table;
  }
  .product.data.items:after {
    clear: both;
  }
  .product.data.items > .item.title {
    float: left;
    width: auto;
  }
  .product.data.items > .item.title > .switch {
    height: 20px;
    display: block;
    position: relative;
    z-index: 2;
  }
  .product.data.items > .item.content {
    margin-top: 20px;
    box-sizing: border-box;
    float: right;
    margin-left: -100%;
    width: 100%;
  }
  .product.data.items > .item.content:before,
  .product.data.items > .item.content:after {
    content: '';
    display: table;
  }
  .product.data.items > .item.content:after {
    clear: both;
  }
  .product.data.items > .item.content.active {
    display: block;
  }
  .product.data.items > .item.title {
    margin: 0 5px 0 0;
  }
  .product.data.items > .item.title > .switch {
    font-weight: 600;
    line-height: 20px;
    font-size: 1.4rem;
    color: #7d7d7d;
    text-decoration: none;
    background: #f0f0f0;
    border: 1px solid #d1d1d1;
    border-bottom: none;
    height: 20px;
    padding: 5px 20px 5px 20px;
  }
  .product.data.items > .item.title > .switch:visited {
    color: #7d7d7d;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:hover {
    color: #7d7d7d;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:active {
    color: #333;
    text-decoration: none;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:focus,
  .product.data.items > .item.title:not(.disabled) > .switch:hover {
    background: #fcfcfc;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:active,
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    background: #ffffff;
    color: #333;
    text-decoration: none;
  }
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    padding-bottom: 6px;
  }
  .product.data.items > .item.content {
    background: #ffffff;
    margin-top: 31px;
    padding: 20px 20px 20px 20px;
    border: 0;
    border-top: 1px solid #d1d1d1;
  }
  .actions-toolbar:before,
  .actions-toolbar:after {
    content: '';
    display: table;
  }
  .actions-toolbar:after {
    clear: both;
  }
  .actions-toolbar .primary {
    float: left;
  }
  .actions-toolbar .secondary {
    float: right;
  }
  .actions-toolbar .primary,
  .actions-toolbar .secondary {
    display: inline-block;
  }
  .actions-toolbar .primary a.action,
  .actions-toolbar .secondary a.action {
    display: inline-block;
  }
  .actions-toolbar .primary .action {
    margin: 0 5px 0 0;
  }
  .actions-toolbar .secondary a.action {
    margin-top: 6px;
  }
  .actions-toolbar > .primary,
  .actions-toolbar > .secondary {
    margin-bottom: 0;
  }
  .actions-toolbar > .primary .action,
  .actions-toolbar > .secondary .action {
    margin-bottom: 0;
    width: auto;
  }
  .modal-popup.modal-slide .modal-footer {
    border-top: 1px solid #c1c1c1;
    text-align: right;
  }
  /**
     * @codingStandardsIgnoreStart
     */
  #store-selector .form-continue .actions-toolbar > .primary {
    float: right;
  }
  #store-selector .form-continue .actions-toolbar .action.primary {
    margin: 0;
  }
  .pagebuilder-mobile-only {
    display: none !important;
  }
  .magento-payments-review .magento-payments-review-title {
    border-bottom: 1px solid #d1d1d1;
  }
  .magento-payments-review .block-content .box-order-shipping-address,
  .magento-payments-review .block-content .box-order-shipping-method,
  .magento-payments-review .block-content .box-order-shipping-method + .box-order-billing-address {
    box-sizing: border-box;
    float: left;
    width: 33%;
  }
  .magento-payments-review .block-content .box-order-shipping-address {
    padding: 0 5%;
    width: 34%;
  }
  .magento-payments-review .table-magento-payments-review-items .col.price,
  .magento-payments-review .table-magento-payments-review-items .col.qty {
    text-align: center;
  }
  .magento-payments-review .table-magento-payments-review-items .col.item {
    width: 60%;
  }
  .magento-payments-review .col.subtotal,
  .magento-payments-review .mark,
  .magento-payments-review .amount {
    text-align: right;
  }
  .magento-payments-review-discount {
    border-top: 1px solid #d1d1d1;
  }
  .magento-payments-review-discount .block {
    margin-bottom: 15px;
  }
  .magento-payments-review-discount .block .title:after {
    display: inline;
    margin-left: 10px;
    position: static;
  }
  .magento-payments-review-discount .block .content {
    padding-bottom: 0;
  }
  .order-review-form .actions-toolbar > .primary {
    float: right;
  }
  .order-review-form .action.primary {
    margin-right: 0;
  }
  .block-cart-failed .actions {
    text-align: left;
  }
  .block-cart-failed .actions.primary {
    float: right;
  }
  .bundle-options-container .bundle-options-wrapper,
  .bundle-options-container .product-options-wrapper {
    float: left;
    width: 57%;
  }
  .bundle-options-container .block-bundle-summary {
    float: right;
    position: relative;
    width: 40%;
  }
  .page-layout-2columns-left .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-left .bundle-options-container .block-bundle-summary,
  .page-layout-2columns-right .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-right .bundle-options-container .block-bundle-summary,
  .page-layout-3columns .bundle-options-container .bundle-options-wrapper,
  .page-layout-3columns .bundle-options-container .block-bundle-summary {
    width: 48%;
  }
  .page-products .products-grid .product-item {
    margin-left: 2%;
    padding: 0;
    width: calc((100% - 4%) / 3);
  }
  .page-products .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 0;
  }
  .page-products.page-layout-1column .products-grid .product-item {
    width: 25%;
  }
  .page-products.page-layout-3columns .products-grid .product-item {
    width: 50%;
  }
  .page-products .columns {
    padding-top: 0;
    position: relative;
    z-index: 1;
  }
  .products.wrapper ~ .toolbar .pages {
    float: left;
  }
  .toolbar-amount {
    float: left;
  }
  .sorter {
    float: right;
  }
  .modes {
    display: inline-block;
    float: left;
    margin-right: 20px;
  }
  .products.wrapper ~ .toolbar .modes {
    display: none;
  }
  .modes-mode {
    color: #7d7d7d;
    border: 1px solid #d1d1d1;
    border-right: 0;
    float: left;
    font-weight: 400;
    line-height: 1;
    padding: 7px 10px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
  }
  .modes-mode:not(.active):hover {
    color: #7d7d7d;
    background: #dedede;
  }
  .modes-mode:last-child {
    border-right: 1px solid #d1d1d1;
  }
  .modes-mode.active {
    color: #a6a6a6;
  }
  .modes-mode > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .modes-mode:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 24px;
    line-height: inherit;
    color: #7d7d7d;
    content: '\e60d';
    font-family: 'icons-blank-theme';
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .modes-mode:hover:before {
    color: #7d7d7d;
  }
  .mode-list:before {
    content: '\e60b';
  }
  .products.wrapper ~ .toolbar .limiter {
    display: block;
    float: right;
  }
  .product-info-main .box-tocart,
  .product-options-bottom .box-tocart {
    display: table;
  }
  .product-info-main .box-tocart .field.qty,
  .product-options-bottom .box-tocart .field.qty {
    display: table-cell;
  }
  .product-info-main .box-tocart .actions,
  .product-options-bottom .box-tocart .actions {
    display: table-cell;
    padding-top: 25px;
    text-align: center;
    vertical-align: bottom;
  }
  .product-info-main .page-title-wrapper .page-title {
    margin-top: -13px;
  }
  .sidebar .product-items .product-item-info .product-item-photo {
    float: left;
    left: auto;
    margin: 0 10px 10px 0;
    position: relative;
    top: auto;
  }
  .sidebar .product-items .product-item-details {
    margin: 0;
  }
  .sidebar .product-items .product-item-actions {
    clear: left;
  }
  .product-info-main {
    float: right;
  }
  .product.media {
    float: left;
    margin-bottom: 25px;
  }
  .page-layout-1column .product-info-main {
    width: 40%;
  }
  .page-layout-1column .product.media {
    width: 57%;
  }
  .page-layout-2columns-left .product-info-main,
  .page-layout-2columns-right .product-info-main,
  .page-layout-3columns .product-info-main {
    width: 48%;
  }
  .page-layout-2columns-left .product.media,
  .page-layout-2columns-right .product.media,
  .page-layout-3columns .product.media {
    width: 50%;
  }
  .block-category-event.block:last-child {
    margin-bottom: 30px;
    padding: 10px 0 30px;
  }
  .block-category-event .block-title {
    margin: 0;
  }
  .block-category-event .block-title strong {
    font-size: 2.4rem;
  }
  .block-category-event .ticker li {
    display: none;
    margin: 0 50px;
  }
  .block-category-event .ticker .value {
    font-size: 6rem;
  }
  .block-category-event .ticker .label {
    font-size: 1.4rem;
    text-transform: none;
  }
  .block-category-event .dates .date {
    font-size: 5rem;
  }
  .block-category-event .dates .start {
    padding-right: 50px;
  }
  .block-category-event .dates .start:after {
    font-size: 5rem;
    right: 10px;
  }
  .block-search {
    float: right;
    padding-left: 0px;
    position: relative;
    width: 250px;
    z-index: 4;
  }
  .block-search .control {
    border-top: 0;
    margin: 0;
    padding: 0 0 0px;
  }
  .block-search .nested {
    display: none;
    padding-top: 5px;
    position: absolute;
  }
  .block-search input {
    margin: 0;
    padding-right: 35px;
    position: static;
  }
  .block-search input::-webkit-input-placeholder {
    color: #c2c2c2;
  }
  .block-search input:-moz-placeholder {
    color: #c2c2c2;
  }
  .block-search input::-moz-placeholder {
    color: #c2c2c2;
  }
  .block-search input:-ms-input-placeholder {
    color: #c2c2c2;
  }
  .block-search .action.search {
    display: inline-block;
    background-image: none;
    background: none;
    -moz-box-sizing: content-box;
    border: 0;
    box-shadow: none;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-shadow: none;
    font-weight: 400;
    padding: 5px 0;
    position: absolute;
    right: 10px;
    top: 50%;
    z-index: 1;
  }
  .block-search .action.search > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .block-search .action.search:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 22px;
    line-height: 22px;
    color: #8f8f8f;
    content: '\e615';
    font-family: 'icons-blank-theme';
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .block-search .action.search:hover:before {
    color: inherit;
  }
  .block-search .action.search:active:before {
    color: inherit;
  }
  .block-search .action.search:focus,
  .block-search .action.search:active {
    background: none;
    border: none;
  }
  .block-search .action.search:hover {
    background: none;
    border: none;
  }
  .block-search .action.search.disabled,
  .block-search .action.search[disabled],
  fieldset[disabled] .block-search .action.search {
    pointer-events: none;
    opacity: 0.5;
  }
  .block-search .action.search:focus:before {
    color: #333;
  }
  .search-autocomplete {
    margin-top: 0;
  }
  .cart-container .widget {
    float: left;
  }
  .cart-container .widget.block {
    margin-bottom: 20px;
  }
  .cart-summary {
    float: right;
    position: relative;
    width: 23%;
  }
  .column.main .cart-summary .actions-toolbar > .secondary {
    float: none;
  }
  .cart-summary .block .fieldset .field {
    margin: 0 0 20px;
    margin: 0 0 10px;
  }
  .cart-summary .block .fieldset .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .cart-summary .block .fieldset .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .cart-summary .block .fieldset .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .cart-summary .block .fieldset .field.choice:before,
  .cart-summary .block .fieldset .field.no-label:before {
    display: none;
  }
  .cart.table-wrapper .items {
    min-width: 100%;
    width: auto;
  }
  .cart.table-wrapper .item .col.item {
    padding: 27px 8px 10px;
  }
  .cart.table-wrapper .item-actions td {
    text-align: right;
  }
  .cart.table-wrapper .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding-right: 20px;
    position: static;
    vertical-align: top;
    width: 1%;
  }
  .cart.table-wrapper .product-item-details {
    display: table-cell;
    vertical-align: top;
    white-space: normal;
    width: 99%;
  }
  .cart.table-wrapper .item-actions .actions-toolbar {
    text-align: left;
  }
  .cart .action {
    margin-bottom: 10px;
  }
  .cart-products-toolbar .toolbar-amount {
    line-height: 30px;
    margin: 0;
  }
  .cart-products-toolbar .pages {
    float: right;
    margin: 0 0 1px;
  }
  .cart-products-toolbar .pages .item:last-child {
    margin-right: 0;
  }
  .cart.table-wrapper .cart-products-toolbar + .cart thead tr th.col {
    padding-bottom: 7px;
    padding-top: 8px;
  }
  .cart.table-wrapper .cart + .cart-products-toolbar {
    margin-top: 25px;
  }
  .minicart-wrapper {
    margin-left: 13px;
  }
  .minicart-wrapper .block-minicart {
    right: -15px;
    width: 390px;
  }
  .opc-wrapper {
    width: 66.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    padding-right: 30px;
  }
  .checkout-onepage-success .print {
    display: block;
    float: right;
    margin: 22px 0 0;
  }
  .opc-progress-bar-item {
    width: 185px;
  }
  .checkout-index-index .modal-popup .form-shipping-address {
    max-width: 600px;
  }
  .checkout-index-index .modal-popup .modal-footer .action-save-address {
    float: right;
    margin: 0 0 0 10px;
  }
  .checkout-shipping-method .actions-toolbar > .primary {
    float: right;
  }
  .checkout-shipping-method .actions-toolbar .action.primary {
    margin: 0;
  }
  .opc-wrapper .form-login,
  .opc-wrapper .form-shipping-address {
    max-width: 600px;
  }
  .table-checkout-shipping-method {
    width: auto;
  }
  .opc-sidebar {
    margin: 46px 0 20px;
    width: 33.33333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .opc-summary-wrapper .modal-header .action-close {
    display: none;
  }
  .authentication-dropdown {
    background-color: #fff;
    border: 1px solid #aeaeae;
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    -webkit-transition: -webkit-transform linear 0.1s, visibility 0s linear 0.1s;
    position: absolute;
    text-align: left;
    top: 100%;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: transform linear 0.1s, visibility 0s linear 0.1s;
    visibility: hidden;
    width: 100%;
  }
  .authentication-dropdown._show {
    z-index: 100;
    -webkit-transform: scale(1, 1);
    -webkit-transition: -webkit-transform linear 0.1s, visibility 0s linear 0s;
    transform: scale(1, 1);
    transition: transform linear 0.1s, visibility 0s linear 0s;
    visibility: visible;
  }
  .authentication-wrapper {
    width: 33.33333333%;
    text-align: right;
  }
  .block-authentication .block-title {
    font-size: 2.6rem;
    border-bottom: 0;
    margin-bottom: 25px;
  }
  .block-authentication .actions-toolbar > .primary {
    display: inline;
    float: right;
    margin-right: 0;
  }
  .block-authentication .actions-toolbar > .primary .action {
    margin-right: 0;
  }
  .block-authentication .actions-toolbar > .secondary {
    float: left;
    margin-right: 2rem;
    padding-top: 1rem;
  }
  .popup-authentication .modal-inner-wrap {
    min-width: 768px;
    width: 60%;
  }
  .popup-authentication .block-authentication {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 1px solid #c1c1c1;
  }
  .popup-authentication .block[class],
  .popup-authentication .form-login,
  .popup-authentication .fieldset,
  .popup-authentication .block-content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
  .popup-authentication .block[class] {
    box-sizing: border-box;
    float: left;
    padding: 10px 30px 0 0;
    width: 50%;
  }
  .popup-authentication .block[class] + .block {
    border-left: 1px solid #c1c1c1;
    border-top: 0;
    margin: 0;
    padding: 10px 0 0 40px;
  }
  .popup-authentication .block[class] + .block:before {
    left: 0;
    top: 50%;
  }
  .popup-authentication .actions-toolbar {
    margin-bottom: 0;
    margin-top: auto;
  }
  .checkout-payment-method .actions-toolbar .primary {
    float: right;
    margin: 0;
  }
  .checkout-payment-method .fieldset > .field-select-billing > .control {
    float: none;
    width: 100%;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field {
    margin: 0 0 20px;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.choice:before {
    padding: 0;
    width: 0;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.type .control {
    margin-left: 25.8%;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.type.no-detection .control {
    margin-left: 0;
  }
  .checkout-billing-address .action-update {
    float: right;
  }
  .checkout-billing-address .actions-toolbar .action-cancel {
    margin: 6px 20px 0 0;
  }
  .checkout-payment-method .payment-option-title {
    padding-left: 22px;
  }
  .checkout-payment-method .payment-option-content .payment-option-inner + .actions-toolbar {
    margin-left: 0;
  }
  .contact-index-index .column:not(.sidebar-additional) .form.contact {
    min-width: 600px;
  }
  .login-container .block .login .actions-toolbar > .primary {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .login-container .block .login .actions-toolbar > .secondary {
    float: left;
  }
  .fieldset .fullname .field .label {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .fieldset .fullname .field .control {
    width: 74.2%;
    float: left;
  }
  .form.password.reset,
  .form.send.confirmation,
  .form.password.forget,
  .form.create.account,
  .form.search.advanced,
  .form.form-orders-search {
    min-width: 600px;
    width: 50%;
  }
  .account.page-layout-2columns-left .sidebar-main,
  .account.page-layout-2columns-left .sidebar-additional {
    width: 22.3%;
  }
  .account.page-layout-2columns-left .column.main {
    width: 77.7%;
  }
  .block-addresses-list .items.addresses {
    font-size: 0;
  }
  .block-addresses-list .items.addresses > .item {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
    vertical-align: top;
    width: 48.8%;
  }
  .block-addresses-list .items.addresses > .item:nth-last-child(1),
  .block-addresses-list .items.addresses > .item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .block-addresses-list .items.addresses > .item:nth-child(even) {
    margin-left: 2.4%;
  }
  .control.captcha-image .captcha-img {
    margin: 0 10px 10px 0;
  }
  .page-product-downloadable .product-options-wrapper {
    float: left;
    width: 55%;
  }
  .page-product-downloadable .product-options-bottom {
    float: right;
    width: 40%;
  }
  .page-product-downloadable .product-options-bottom .field.qty + .actions {
    padding-top: 0;
  }
  .gift-message .field {
    margin-bottom: 20px;
  }
  .gift-options {
    position: relative;
    z-index: 1;
  }
  .catalog-product-view .page-title-wrapper.product {display:none;}
  .gift-options .actions-toolbar {
    clear: both;
    float: right;
    position: static;
  }
  .gift-options .actions-toolbar .secondary {
    float: right;
  }
  .gift-options .actions-toolbar .secondary .action {
    float: right;
    margin-left: 20px;
  }
  .gift-options .actions-toolbar .secondary .action-cancel {
    display: block;
    float: left;
    margin-top: 6px;
  }
  .gift-options .actions-toolbar:nth-child(3):before {
    border-left: 1px solid #c1c1c1;
    bottom: 5rem;
    content: '';
    display: block;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 0;
  }
  .gift-options-title {
    font-weight: 300;
    font-size: 1.8rem;
  }
  .cart.table-wrapper .action-gift {
    float: left;
  }
  .order-options .gift-wrapping,
  .table-order-review .gift-wrapping {
    max-width: 50%;
  }
  .form-giftregistry-search .fieldset {
    margin-bottom: 29px;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field {
    margin: 0 0 20px;
    box-sizing: border-box;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field > .label {
    margin: 0;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:before,
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:after {
    content: '';
    display: table;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:after {
    clear: both;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field.choice:before,
  .form-giftregistry-search .fieldset > .fields-specific-options > .field.no-label:before {
    padding: 6px 15px 0 0;
    width: 25.8%;
    box-sizing: border-box;
    content: ' ';
    float: left;
    height: 1px;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field .description {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:not(.choice) > .label {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:not(.choice) > .control {
    width: 74.2%;
    float: left;
  }
  .block-giftregistry-shared-items .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding: 0 20px 0 0;
    vertical-align: top;
    width: 1%;
  }
  .block-giftregistry-shared-items .product-item-details {
    display: table-cell;
    vertical-align: top;
    width: 99%;
    word-break: normal;
  }
  .block-giftregistry-shared-items .col.product {
    width: 48%;
  }
  .block-giftregistry-shared-items .col:not(.product) {
    text-align: center;
  }
  .block-giftregistry-shared-items .col.price {
    padding-top: 17px;
  }
  .block-giftregistry-shared-items .input-text.qty {
    margin-top: -4px;
  }
  .gift-options-cart-item .gift-wrapping,
  .cart-gift-item .gift-wrapping {
    box-sizing: border-box;
    float: left;
    padding-right: 20px;
    width: 50%;
  }
  .gift-options-cart-item .gift-wrapping + .gift-message,
  .cart-gift-item .gift-wrapping + .gift-message {
    border-left: 1px solid #c1c1c1;
    box-sizing: border-box;
    float: left;
    padding-left: 4.5rem;
    width: 50%;
  }
  .form-add-invitations .additional,
  .form-add-invitations .field.text {
    margin-top: 29px;
  }
  .table-invitations .col {
    width: 50%;
  }
  .wishlist.window.popup {
    bottom: auto;
    top: 20%;
    left: 50%;
    margin-left: -212px;
    width: 380px;
    right: auto;
  }
  .wishlist.window.popup .field {
    margin: 0 0 20px;
  }
  .wishlist.window.popup .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .wishlist.window.popup .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .wishlist.window.popup .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .wishlist.window.popup .field.choice:before,
  .wishlist.window.popup .field.no-label:before {
    display: none;
  }
  .block-wishlist-management {
    margin-bottom: 20px;
  }
  .block-wishlist-management .wishlist-select {
    border-bottom: 1px solid #e8e8e8;
    display: table;
    margin-bottom: 15px;
    width: 100%;
  }
  .block-wishlist-management .wishlist-select .wishlist-name {
    display: table-cell;
    margin-right: 10px;
    padding: 5px 10px 10px;
    vertical-align: top;
    white-space: nowrap;
    width: 5%;
  }
  .block-wishlist-management .wishlist-select-items {
    display: table-cell;
    padding-right: 160px;
    vertical-align: top;
  }
  .block-wishlist-management .wishlist-select-items .item {
    display: inline-block;
    margin-right: 10px;
    padding: 5px 10px 10px;
  }
  .block-wishlist-management .wishlist-select-items .item:last-child {
    margin-right: 0;
  }
  .block-wishlist-management .wishlist-select-items .current {
    border-bottom: 3px solid #ff5501;
    font-weight: 600;
  }
  .block-wishlist-management .wishlist-select .wishlist-name-current {
    display: none;
  }
  .block-wishlist-management .wishlist-add.item {
    position: absolute;
    right: 0;
    top: 0;
  }
  .block-wishlist-management .wishlist-title strong {
    font-size: 4rem;
  }
  .block-wishlist-management .wishlist-info {
    float: left;
  }
  .block-wishlist-management .wishlist-toolbar {
    float: right;
  }
  .block-wishlist-info-items .product-item-photo {
    margin-left: 0;
  }
  .products-grid.wishlist .product-item-checkbox {
    float: left;
  }
  .products-grid.wishlist .product-item-checkbox + .product-item-name {
    margin-left: 25px;
  }
  .block.newsletter {
    max-width: 44%;
    width: max-content;
  }
  .block.newsletter .field {
    margin-right: 5px;
  }
  .block.newsletter .field.newsletter {
    max-width: 220px;
  }
  .block.newsletter .field .control {
    width: 100%;
  }
  .block.newsletter .action.subscribe {
    border-radius: 3px;
  }
  .paypal-review .paypal-review-title {
    border-bottom: 1px solid #d1d1d1;
  }
  .paypal-review .block-content .box-order-shipping-address,
  .paypal-review .block-content .box-order-shipping-method,
  .paypal-review .block-content .box-order-shipping-method + .box-order-billing-address {
    box-sizing: border-box;
    float: left;
    width: 33%;
  }
  .paypal-review .block-content .box-order-shipping-address {
    padding: 0 5%;
    width: 34%;
  }
  .paypal-review .col.subtotal,
  .paypal-review .mark,
  .paypal-review .amount {
    text-align: right;
  }
  .products.wrapper.list .product-reviews-summary {
    margin: 0;
  }
  .reward-settings + .actions-toolbar {
    margin-top: -32px;
  }
  .form-create-return .additional .field:last-child {
    margin-top: 29px;
  }
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box {
    margin-bottom: 20px;
  }
  .block-returns-tracking .block-title .action {
    margin: 0 0 0 30px;
  }
  .block-returns-tracking .block-title .actions-track {
    float: right;
    margin-top: 12px;
  }
  .table-order-items .subtotal,
  .table-order-items .amount {
    text-align: right;
  }
  .table-order-items.creditmemo .col.qty,
  .table-order-items.creditmemo .col.discount,
  .table-order-items.creditmemo .col.subtotal {
    text-align: center;
  }
  .table-order-items.creditmemo .col.total {
    text-align: right;
  }
  .order-pager-wrapper .order-pager-wrapper-top {
    padding-left: 0;
    padding-right: 0;
  }
  .order-pager-wrapper .pages {
    float: right;
  }
  .order-actions-toolbar .action.print {
    display: block;
    float: right;
  }
  .page-title-wrapper .order-date {
    margin-top: -20px;
  }
  [class^='sales-guest-'] .column.main .block:not(.widget) .block-content .box,
  .sales-guest-view .column.main .block:not(.widget) .block-content .box {
    margin-bottom: 20px;
  }
  .page-wrapper > .breadcrumbs,
  .page-wrapper > .top-container,
  .page-wrapper > .widget {
    box-sizing: border-box;
  }
  .navigation ul {
    padding: 0 8px;
  }
  .header.panel > .header.links {
    float: right;
    font-size: 0;
    margin: 0;
    padding: 0;
    list-style: none none;
    margin-left: auto;
  }
  .header.panel > .header.links > li {
    display: inline-block;
    vertical-align: top;
  }
  .header.panel > .header.links > li {
    font-size: 14px;
    margin: 0 0 0 15px;
  }
  .header.panel > .header.links > li.welcome,
  .header.panel > .header.links > li a {
    line-height: 1.4;
  }
  .header.panel > .header.links > li.welcome a {
    padding-left: 5px;
  }
  .header.content {
    padding: 30px 20px 0;
  }
  .page-header {
    border: 0;
    margin-bottom: 0;
  }
  .page-header .panel.wrapper,.nav-sections {
    border-bottom: 1px solid #e8e8e8;
    display:none;
  }
  .page-header .header.panel {
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .page-header .switcher {
    display: inline-block;
  }
  .page-main > .page-title-wrapper .page-title {
    display: inline-block;
  }
  .page-main > .page-title-wrapper .page-title + .action {
    float: right;
    margin-top: 20px;
  }
  .logo {
    margin: 0 0px 0px 0;
  }
  .logo img {
    max-height: inherit;
  }
  .footer.content .block {
    float: right;
  }
  .footer.content .links {
    display: inline-block;
    margin-bottom: 20px;
    padding: 0 50px 0 0;
    vertical-align: top;
  }
  .footer.content .switcher.store {
    display: inline-block;
    padding-right: 50px;
    vertical-align: top;
  }
  .my-credit-cards .card-type img {
    display: block;
  }
  .products-grid.wishlist .product-item-tooltip {
    display: inline-block;
  }
  .products-grid.wishlist .product-item-actions {
    margin: 10px 0 0;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty {
    margin-bottom: 10px;
    padding-right: 10px;
  }
  .products-grid.wishlist .product-item .fieldset .field.qty .label {
    width: auto;
  }
  .products-grid.wishlist .product-item .box-tocart .actions-primary {
    margin: 0;
  }
  .products-grid.wishlist .product-item .box-tocart .stock {
    margin: 20px 0 0;
  }
  .wishlist-index-index .product-item-info {
    width: 240px;
  }
  .block.widget .products-grid .product-item {
    width: 33.33333333%;
  }
  .sidebar .block.widget .products-grid .product-item {
    margin-left: 0;
    width: 100%;
  }
  .sidebar .block.widget .products-grid .product-item .actions-secondary {
    display: block;
    padding: 10px 0;
  }
  .page-layout-1column .block.widget .products-grid .product-item {
    margin-left: 2%;
    width: calc((100% - 6%) / 4);
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(3n + 1) {
    margin-left: 2%;
  }
  .page-layout-1column .block.widget .products-grid .product-item:nth-child(4n + 1) {
    margin-left: 0;
  }
  .page-layout-3columns .block.widget .products-grid .product-item {
    width: 50%;
  }
  .sidebar .block.widget .pager .pages-item-next {
    padding: 0;
  }
  .sidebar .block.widget .pager .pages-item-next .action {
    margin: 0;
  }
  .braintree-express-paylater-message-container {
    order: 1;
  }
  .paypal-braintree-paylater-message-container-pdp {
    padding: 0 0 10px;
  }
  .paypal-braintree-paylater-message-container-cart {
    padding: 0;
  }
}
@media all and (max-width: 1023px), print {
  .field-tooltip .field-tooltip-content {
    right: -10px;
    top: 40px;
    left: auto;
  }
}
@media all and (min-width: 1440px), print {
  .sidebar .product-items .product-item-info .product-item-photo {
    float: none;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
  }
  .sidebar .product-items .product-item-details {
    margin-left: 85px;
  }
}

/* =========================================
   LEFT SIDEBAR
========================================= */
.bookmarks-desktop {
    position: sticky;
    top: 20px;
}

.page-sections-menu {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px 0;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li a {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    color: #555;
}

.menu-list li.active a {
    border-left: 3px solid #00d084;
    color: #000;
    font-weight: 600;
}
.productLeftPanel {
    width: 213px;
    flex-shrink: 0;
}

.item-image-container {
    background: #fff;
    padding: 10px;
    border: 1px solid #e5e5e5;
}

.item-image {
    width: 100%;
    display: block;
}
	.product-details-page .product-title-container .title-section .title{
		font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 36px !important;
    margin-bottom: 14px !important;
    letter-spacing: -.24px !important;
    color: #000 !important;
    font-style: normal !important;
    font-family: Inter, sans-serif !important;
		}

.catalog-product-view .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
.page-sections-menu {
    background: #fff;
    border: 1px solid #e5e5e5;
    margin-top: 20px;
    padding: 20px 0;
}

.menu-title {
    font-size: 18px;
    font-weight: 600;
    padding: 0 20px 20px;
    border-bottom: 1px solid #eee;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    position: relative;
}

.menu-list li a {
    display: block;
    padding: 14px 20px;
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: all .3s;
}

.menu-list li.active a,
.menu-list li a:hover {
    color: #000;
    background: #fafafa;
}

.menu-list li.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #00d084;
}

/* =========================================
   MAIN CONTENT
========================================= */

.product-details-content {
    flex: 1;
    min-width: 0;
}

.product-details {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.product-title-container {
    flex: 1;
}

.title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #111;
}

.product-authors {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.28px;
    white-space: pre-wrap;
    font-style: normal;
    line-height: 8.284px;
    margin-bottom: 14px;
    line-height: normal;
}

.text-piped {
   display: flex;
    flex-flow: wrap;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 8.284px;
    letter-spacing: -.28px;
}

/* =========================================
   FORMAT TABS
========================================= */

.format-tabs {
    display: flex;
    border: 1px solid #ddd;
    background: #fff;
    margin-bottom: 20px;
}

.format-tab {
    flex: 1;
    padding: 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.format-tab.active {
    border-bottom: 3px solid #00d084;
}

.format-tab .name {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}

.format-tab .price {
    color: #666;
}

/* =========================================
   VARIANT ROW
========================================= */

.variant-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 18px 0;
    cursor: pointer;
}

.variant-name {
    font-size: 18px;
    font-weight: 500;
}

.variant-price {
    font-size: 24px;
    font-weight: 700;
}

/* =========================================
   RIGHT SIDEBAR
========================================= */

.product-details-sidebar {
    width: 340px;
    flex-shrink: 0;
}

.cart-sidebar {
    background: #fff;
    border: 1px solid #ccc;
    padding: 30px;
}

.cart-box__selected {
    font-size: 18px;
    margin-bottom: 30px;
}

.cart-box__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.cart-box__price-label {
    font-size: 18px;
}

.cart-box__price {
    font-size: 42px;
    font-weight: 700;
    color: #000;
}

.cart-box__unavailable {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}

/* =========================================
   BUTTONS
========================================= */

.eval-copy-btn,
.download-flyer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ecebe5;
    color: #000;
    text-decoration: none;
    padding: 18px;
    margin-top: 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: all .3s;
}

.eval-copy-btn:hover,
.download-flyer-btn:hover {
    background: #ddd;
}

/* =========================================
   DESCRIPTION
========================================= */

.description-content {
    margin-top: 50px;
    padding-top: 20px;
}

.description-content .heading {
    font-size: 34px;
    margin-bottom: 30px;
}

.description-body p {
    margin-bottom: 20px;
}

/* =========================================
   BREADCRUMB
========================================= */

.breadcrumbs {
    margin-bottom: 30px;
}

.breadcrumbs .items {
    display: flex;
    gap: 0px;
    list-style: none;
    padding: 0;
}

.breadcrumbs .item {
    font-size: 14px;
}

.breadcrumbs .item::after {
    content: ">";
    margin-left: 10px;
}

.breadcrumbs .item:last-child::after {
    display: none;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .product-details {
        flex-direction: column;
    }

    .product-details-sidebar {
        width: 100%;
    }
}

@media (max-width: 992px) {

    .product-details-page .row {
        flex-direction: column;
    }

    .productLeftPanel {
        width: 100%;
    }

    .title {
        font-size: 30px;
    }

    .cart-box__price {
        font-size: 32px;
    }
}
#description-section .heading{font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: -.18px;}
 .product-details-page .description-content p, .product-details-page .related-products-section p, .product-details-page .toc-section p {
    margin-bottom: 16px !important;
    font-size: 16px !important;
    color: #000 !important;
    letter-spacing: .04px !important;
    font-weight: 400 !important;
    line-height: 32px !important;
}
@media (max-width: 992px) {
    .columns {
        flex-direction: column;
    }

    .productLeftPanel,
    .product-details-sidebar {
        width: 100%;
        position: relative;
    }
}


.product-details-page .row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
/* =========================
   MOBILE RESPONSIVE CSS
   ========================= */

@media only screen and (max-width: 768px) {

    /* General */
    body {
        overflow-x: hidden;
        font-size: 14px;
    }

    .page-wrapper,
    .columns,
    .container,
    .page-main {
        width: 100% !important;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }

    /* Header */
    .page-header {
        padding: 10px 0;
    }

    .logo img {
        max-width: 140px;
        height: auto;
    }

    /* Navigation */
    .navigation,
    .nav-sections {
        width: 100%;
    }

    .navigation ul {
        display: block;
    }

    .navigation li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .navigation a {
        display: block;
        padding: 12px 15px;
    }

    /* Banner / Slider */
    .banner,
    .slider,
    .home-slider img,
    .block-banner img {
        width: 100% !important;
        height: auto !important;
    }

    /* Product Grid */
    .products-grid .product-item {
        width: 48% !important;
        margin: 1% !important;
        float: left;
    }

    .product-item-info {
        width: 100%;
    }

    .product-image-container img {
        width: 100%;
        height: auto;
    }

    /* Product Page */
    .product.media,
    .product-info-main {
        width: 100% !important;
        float: none !important;
    }

    /* Buttons */
    .action.primary,
    button,
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Forms */
    input,
    select,
    textarea {
        width: 100% !important;
        max-width: 100%;
    }

    /* Tables */
    table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }

    /* Footer */
    .page-footer .footer.content {
        text-align: center;
    }

    .footer.content .links {
        display: block;
    }

    /* Hide unnecessary desktop elements */
    .desktop-only {
        display: none !important;
    }
}


/* Extra Small Devices */
@media only screen and (max-width: 480px) {

    .products-grid .product-item {
        width: 100% !important;
        margin: 0 0 15px 0 !important;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    .logo img {
        max-width: 120px;
    }

    .minicart-wrapper {
        float: right;
    }
}