/* Utility */
.fullwidth {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}

/* Link on Dark Background */

.dark-background > a {
	color: white!important;
	font-weight: 700;
}


/* .page-content-container {
    max-width: 1540px;
    width: 90%;
    margin: auto;
} */

body .is-layout-grid {
   gap: 30px!important;
}

@media(max-width: 900px) {
body .is-layout-grid {
	grid-template-columns: repeat(1, minmax(0, 1fr))!important;
	}
}

.general-container, .general-container-no-space, .page-content-container {
	padding-left: 30px;
	padding-right: 30px;
}

.general-container, .page-content-container {
	padding-top: 100px;
	padding-bottom: 100px;
}

.icon-row-container {
	padding: 30px!important;
}

.page-content-container {
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.general-container__column, .general-container__row, .related-products-div {
	margin: 0 auto!important;
	width: 1540px!important;
	max-width: 100%!important;
	justify-content: center!important;
	align-items: center;
}

.general-content, .category-cover-blurb {
	width: 100%!important;
	display: flex!important;
	gap: 30px!important;
}

.general-container__column {
	display: flex!important;
	flex-direction: column!important;
    gap: 30px!important;
}

.general-container__row {
	display: flex!important;
	flex-direction: row!important;
	gap: 30px!important;
}

@media screen and (max-width: 980px) {
	.general-content, .category-cover-blurb {
		display: grid!important;
		grid-template-columns: 1fr!important;
		grid-gap: 30px!important;
	}
}

.gb-block-layout-column-gap-2 {
	grid-gap: 30px!important;
}

.column-border {
	border: 3px solid black;
}

.column-border__label {
	width: 100%;
	padding: 30px;
}

.column-border__image > figure > img {
	aspect-ratio: 6 / 5!important;
	object-fit: cover!important;
	width: 100%!important;
}

/* Colors */
.primary-color {
    color: #37667B;
}


/* Headings */
.cover-heading {
    font-weight: bold !important;
    font-size: 50px !important;
    line-height: 30px !important;
    color: #fff !important;
}
@media(max-width: 500px) {
    .cover-heading {
        font-size: 45px !important;
    }
}

/* Buttons */
.primary-button a {
    background-color: #0393D1 !important;
    color: #fff !important;
    border: 4px solid #37667B !important;
    padding: 10px 25px 10px !important;
    font-size: 20px !important;
    border-radius: 50px !important;
    text-transform: uppercase !important;
}
.primary-button a:hover {
    border-color: #0393D1 !important;
}

/* Header */
.viz-header-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.viz-header-left {
    width: 30%;
}
.viz-header-right {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.viz-header-search .ws_search_wrap {
    display: block;
    width: 100%;
}
.viz-header-search .ws_search_wrap .ws_input_wrap {
    margin: auto;
    width: 100%;
    position: relative;
}
.viz-header-search .ws_search_wrap .ws_input_wrap i {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: #0393D1;
}
.viz-header-search .ws_input_wrap input {
    border: none !important;
    border-bottom: 2px solid #0393D1 !important;
}
nav#genesis-nav-primary {
    display: none !important;
}
.viz-header-dropdown {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-dropdown-box {
    position: absolute;
    width: 200px;
    background: #fff;
    border: 1px solid #000;
    top: 45px;
    right: 0px;
    z-index: 99;
}
.header-dropdown-box .header-dropdown-content {
    padding: 10px;
}
.header-dropdown-box li:not(:last-child) {
    border-bottom: 1px solid #000;
}
.viz-header-bottom {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.viz-header-bottom-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 10px 0px;
}
.mobile-main-menu {
    display: none;
}
@media(max-width: 1170px) {
    .viz-header-right .viz-design-button,
    .viz-header-bottom,
    .viz-header-right .viz-header-dropdown {
        display: none;
    }
    .mobile-main-menu {
        display: block;
    }
}
@media(min-width: 1171px) {
    .viz-header-bottom #mega-menu-wrap-primary {
        background-color: #fff !important;
    }
    .viz-header-bottom-inner ul#mega-menu-primary {
        display: flex !important;
        justify-content: space-between !important;
    }
    .viz-header-bottom-inner ul li a {
        color: #0393D1 !important;
        font-weight: bold !important;
        font-size: 18px !important;
        line-height: 20px !important;
        height: auto !important;
    }
}
@media(max-width: 1575px) {
    .viz-header-inner,
    .viz-header-bottom-inner {
        width: 90%;
    }
}
/* Header Hamburger */
.hamburger {
  position: relative;
  width: 40px;
  height: 30px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hamburger:hover {
  background: transparent;
}
.hamburger:focus-visible,
.hamburger:focus {
  outline: none;
  background: transparent;
}
.hamburger-line {
  position: absolute;
  width: 100%;
  height: 5px;
  border-radius: 10px;
  background-color: #0393D1;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.hamburger-line:nth-child(1) {
  top: 0%;
}
.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-line:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}
.hamburger.is-open .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0.3);
}
.hamburger.is-open .hamburger-line:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Product Page */
.main-product-section {
    display: flex;
    justify-content: space-between;
    margin: 75px auto;
}
.main-product-left {
    width: 49%;
}
.main-product-right {
    width: 49%;
}
.product-breadcrumb {
    margin-top: -70px;
    margin-bottom: 40px;
}
.product-breadcrumb span,
.product-breadcrumb span a {
    color: #0393D1;
    font-size: 20px;
    font-weight: 300;
}
.main-product-left .product-feat-img {
    position: sticky;
    top: 20px;
}
.main-product-left .product-feat-img img {
    width: 100%;
}
.main-product-title {
    color: #37667B;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
}
.main-content-title {
    font-weight: 600;
}
.dropdown-title {
    color: #37667B;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 600;
    padding: 30px 0px;
    border-top: 1px solid #37667B;
    cursor: pointer;
    position: relative;
    margin-bottom: 0px;
}
.dropdown-title::after {
    content: '\f078';
    font-family: "Font Awesome 7 Pro";
    font-size: 15px;
    color: #fff;
    background-color: #37667B;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.dropdown-title.open::after {
    content: '\f077';
}
.profile-section h3 {
    color: #000;
    font-weight: 600;
}
.product-dropdowns div.gallery-img-div,
.product-dropdowns div.profile-img-div,
.product-dropdowns div.colors-img {
    border: 1px solid transparent;
    position: relative;
}
.img-hover-icon:hover::after,
.subcat-div .subcat-img-div:hover::after {
    content: '\2b';
    font-family: 'Font Awesome 7 Pro';
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(3,147,209,0.8);
    padding: 5px 10px;
    z-index: 0;
}
.product-dropdowns .selected-product-img {
    border: 1px solid #333;
}
.dropdown-content-div {
    text-align: center;
}

/* .profile-section-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.profile-section-content .profile-img-div {
    cursor: pointer;
    width: calc(100% / 3);
    text-align: center;
} */

.profile-section-content {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.5em;
}

.profile-section-content .profile-img-div {
	cursor: pointer;
	text-align: center;
	width: 100%;
}

.features-dropdown-content ol {
    list-style: none;
    counter-reset: step;
    margin-bottom: 20px;
}
.features-dropdown-content ol li {
    position: relative;
    padding-left: 35px;
    counter-increment: step;
}
.features-dropdown-content ol li:not(:last-child) {
    padding-bottom: 10px;
}
.features-dropdown-content ol li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    color: #37667B;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background-color: #ededed;
    border-radius: 50%;
}
.impact-img img {
width: 100%; 
}

.impact-img p {
    margin-top: 20px;
}
.colors-dropdown-content h3 {
    font-weight: 600;
}

div.colors-dropdown-content > h3 > p.color-monitor-notice {
	display: inline-block; 
	background: #efefef; 
	padding: 10px!important; 
	width: 100%; 
	font-size: 12px; 
	line-height: 1.4;
	font-weight: 400;
}

/* .colors-section-content {
    display: flex;
    flex-wrap: wrap;
}
.colors-section-content .colors-img {
    width: calc(100% / 3);
    text-align: center;
    padding-right: 20px;
    cursor: pointer; 
} */

.colors-section-content {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.5em;
}

.colors-section-content .colors-img {
	text-align: center;
	cursor: pointer;
	width: 100%;
}

div.dropdown-content-div > div.gallery-img-div > img.product-switch-img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.main-product-left > .product-feat-img > img, .colors-img > img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

/* .gallery-section-content {
    display: flex;
    flex-wrap: wrap;
}
.gallery-section-content .gallery-img-div {
    cursor: pointer;
    width: calc(100% / 3);
    padding-right: 25px;
    padding-bottom: 20px;
} */

.gallery-section-content {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5em;
    padding-bottom: 10px;
}

.gallery-section-content .gallery-img-div {
	cursor: pointer;
	width: 100%;
	text-align: center;
}

.cta-block {
    border-top: 1px solid #37667B;
}
.cta-block-content {
    background-color: #ededed;
    text-align: center;
    padding: 50px;
}
.cta-block-content a {
    color: #0393D1;
}
.cta-buttons .primary-button {
    width: 100%;
}
.cta-buttons .primary-button:last-child {
    margin-top: 20px;
}
.cta-buttons .primary-button a {
    width: 50%;
    display: inline-block;
}
.related-products-section {
    text-align: center;
    margin-bottom: 100px;
}
.related-products-section h2 {
    font-weight: 600;
    color: #37667B;
    font-size: 40px;
}
.mrv-subcat-grid {
    max-width: 1590px;
    margin: auto;
    padding: 30px;
}
.related-products-div, 
.mrv-subcat-grid {
    display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2em;
}
.related-product-div, 
.subcat-div {
    border: 2px solid #37667B;
    display: flex;
    flex-direction: column;
    height: 500px;
}
.related-product-div a,
.subcat-div a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.related-product-div div.related-img-div,
.subcat-div .subcat-img-div {
    flex: 9;
    overflow: hidden;
    position: relative;
}
.related-product-div .related-img-div img,
.subcat-div .subcat-img-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.related-product-div p,
.subcat-div p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 10px 0px;
    text-align: center;
    margin-bottom: 0px;
    font-weight: 600;
}
@media(max-width: 1372px) {
		.colors-section-content {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media(max-width: 1023px) {
    .main-product-section {
        flex-direction: column;
    }
    .main-product-left,
    .main-product-right {
        width: 100%;
    }
    .main-product-left {
        position: sticky;
        top: 20px;
        background-color: #fff;
        z-index: 9999;
    }
    .main-product-left .product-feat-img {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    .main-product-left .product-feat-img img {
        width: 50%;
    }
 /*   .colors-section-content .colors-img {
        width: calc(100% / 3);
    } */
		.colors-section-content {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
    .cta-buttons .primary-button a {
        width: 80%;
    }
    .related-products-div,
    .mrv-subcat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        height: 400px;
    }
}

@media(max-width: 680px) {
		.colors-section-content {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media(max-width: 425px) {
    .main-product-left .product-feat-img img {
        width: 90%;
    }
	.colors-section-content, .gallery-section-content, .profile-section-content {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	}
    .related-products-div,
    .mrv-subcat-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        height: 300px;
    }
 /*    .gallery-section-content .gallery-img-div {
        width: calc(100% / 2);
    }
   .colors-section-content .colors-img {
        width: calc(100% / 2);
    }
    .profile-section-content .profile-img-div {
        width: calc(100% / 2);
    } */
}

/* Category Archive Pages */
body.archive.tax-mrv-category .site-container .site-inner{
    max-width: 100%;
    width: 100%;
    padding-top: 0px;
}
.fullwidth-hero {
    height: 70vh;
    width: 100%;
}
 .fullwidth-hero .fullwidth-hero-inner { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.fullwidth-hero .fullwidth-hero-inner h1 {
    margin-bottom: 0px;
    color: #fff;
    max-width: 700px;
}
.fullwidth-hero .fullwidth-hero-inner p {
    color: #fff;
    font-size: 25px;
    max-width: 700px;
}
.viz-archive-desc {
    display: flex;
    margin-top: 100px;
	align-items: center;
    width: 1540px;
	max-width: 100%;
    margin: auto;
	gap: 30px;
}
.viz-archive-desc .desc-slider {
    width: 40%;
}
.viz-archive-desc .desc-content {
    width: 55%;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.viz-archive-desc {
    flex-direction: column;
}
	.viz-archive-desc .desc-slider {
    width: 100%;
}
.viz-archive-desc .desc-content {
    width: 550px;
	max-width: 100%;
}
}

.desc-slider i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background-color: rgba(0,0,0,0.4);
    padding: 10px;
    z-index: 9;
    font-size: 25px;
}
.desc-slider .fa-chevron-right {
    right: 0;
}
.desc-slider .fa-chevrot-left {
    left: 0;
}