.products {
    width: 100%
}

.products .products-list {
    margin: 0.5rem 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    justify-content: space-between
}

@media (max-width: 768px) {
    .products .products-list {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch
    }
}

.products .products-list .product {
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 500;
    width: 33%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

@media (max-width: 768px) {
    .products .products-list .product {
        width: 50%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        margin-bottom: 0.3rem
    }
}

.products .products-list .product .top {
    position: relative;
    width: 100%;
    height: auto
}

.products .products-list .product .top:hover .image {
    opacity: 0.5
}

.products .products-list .product .top:hover .cta {
    opacity: 1
}

.products .products-list .product .top:hover .cta .btn {
    background: #4C7FA6;
    color: #fff;
    border-color: #4C7FA6
}

.products .products-list .product .image {
    position: relative;
    display: block;
    padding-top: 100%;
    background-size: contain;
    margin: auto;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    cursor: pointer
}

@media (max-width: 768px) {
    .products .products-list .product .image {
        -webkit-background-size: contain;
        background-size: contain;
        width: 100%;
        height: 15rem
    }
}

@media (max-width: 565px) {
    .products .products-list .product .image {
        height: 12rem
    }
}

.products .products-list .product .cta {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.products .products-list .product .cta .btn {
    display: block;
    white-space: nowrap
}

.products .products-list .product .title {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 60px;
    padding: 0 1rem;
    margin: 0;
    margin-bottom: 0.5rem
}

.products .products-list .product .title a,
.products .products-list .product .title h4 {
    font-size: 0.75rem;
    text-transform: none;
    margin: 0;
    color: #000
}

@media (max-width: 565px) {
    .products .products-list .product .title a,
    .products .products-list .product .title h4 {
        font-size: 0.9rem
    }
}

.products .products-list .product .title:hover a {
    text-decoration: underline
}

.products .products-list .product .pricing {
    font-size: 0.8rem;
    height: auto;
    padding: 0 1rem
}

@media (max-width: 565px) {
    .products .products-list .product .pricing {
        height: 38px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }
    .products .products-list .product .pricing span {
        font-size: 1rem
    }
}

.products .products-list .product .pricing .old-price span {
    color: #7a7a7a;
    text-decoration: line-through
}

.products .products-list .product .pricing .price._on-sale span {
    text-decoration: line-through
}

.products .products-list .product .pricing .sale-price span {
    color: #e74c3c;
    font-weight: 900
}

.products .products-list .product .pricing .divider {
    width: 1px;
    margin: 0 0.25rem;
    background: #7a7a7a;
    height: 0.75rem
}

.products .products-list .product .rating {
    margin: 0.25rem auto;
    padding: 0 0.5rem
}

@media (max-width: 565px) {
    .products .products-list .product .rating {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.products .products-list .product .rating .stars {
    height: 1rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    zoom: 0.8
}

.products .products-list .product .rating .stars .star {
    width: 1.25rem
}

@media (max-width: 565px) {
    .products .products-list .product .rating .stars .star {
        width: 1rem
    }
}

.products .products-list .product .rating .stars .star svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: #fac747
}

.products .products-list .product .rating .count {
    margin-left: 0.25rem
}

.products .products-list .product .rating .count span {
    display: block;
    font-size: 0.7rem;
    color: #4C7FA6
}

.products .products-list .product .rating .count span:hover {
    color: #3C7FD5;
    text-decoration: underline
}

.products .products-list .product .rating .product-tag,
.products .products-list .product .rating .sale-tag {
    text-transform: uppercase;
    border: 1px solid #e74c3c;
    padding: 0.25rem 0.5rem;
    color: #e74c3c;
    font-size: 0.65rem;
    margin-left: 0.5rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    font-weight: 700
}

@media (max-width: 565px) {
    .products .products-list .product .rating .product-tag,
    .products .products-list .product .rating .sale-tag {
        margin-bottom: 0.5rem
    }
}

.products .products-list .product .rating .sold-tag {
    text-transform: uppercase;
    border: 1px solid #e74c3c;
    background-color: #e74c3c;
    padding: 0.25rem 0.5rem;
    color: #fff;
    font-size: 0.65rem;
    margin-left: 0.5rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    font-weight: 700
}

@media (max-width: 565px) {
    .products .products-list .product .rating .sold-tag {
        margin-bottom: 0.5rem
    }
}

.product {
    position: relative
}

.product .zoombox {
    position: absolute;
    right: 0;
    width: 100%;
    max-width: 35rem;
    height: 100%;
    max-height: 35rem
}

@media (min-width: 769px) and (max-width: 1023px) {
    .product .zoombox {
        max-width: 20rem;
        max-height: 20rem
    }
}

.product article {
    padding: 2rem 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.product .product-layout {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media (max-width: 768px) {
    .product .product-layout {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.product .product-layout .breadcrumbs {
    position: relative;
    width: 100%;
    padding: 0.5rem 0
}

@media (max-width: 768px) {
    .product .product-layout .breadcrumbs {
        display: none
    }
}

.product .product-layout .image {
    position: relative;
    width: 50%;
    height: 100%
}

@media (max-width: 768px) {
    .product .product-layout .image {
        width: 100%
    }
}

@media (max-width: 768px) {
    .product .product-layout .image {
        display: none
    }
}

.product .product-layout .image .image-wrapper {
    display: block;
    margin: auto;
    width: 100%;
    height: 100%;
    max-width: 25rem
}

@media (max-width: 565px) {
    .product .product-layout .image .image-wrapper {
        width: 100%;
        text-align: center
    }
}

.product .product-layout .image .image-wrapper img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto
}

@media (min-width: 769px) and (max-width: 1023px) {
    .product .product-layout .image .image-wrapper img {
        height: auto
    }
}

@media (max-width: 768px) {
    .product .product-layout .image .image-wrapper img {
        max-width: 20rem;
        height: auto
    }
}

@media (max-width: 565px) {
    .product .product-layout .image .image-wrapper img {
        height: auto;
        margin: auto
    }
}

.product .product-layout .image .thumbnails {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.product .product-layout .image .thumbnails a {
    outline: none
}

.product .product-layout .image .thumbnails .thumbnail {
    border: 1px solid #f3f6f8;
    width: 4rem;
    height: 4rem;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0.25rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.product .product-layout .image .zoom {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.product .product-layout .image .zoom .icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.25rem
}

.product .product-layout .image .zoom .icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: #676767
}

.product .product-layout .image .zoom span {
    display: block;
    font-size: 0.7rem
}

.product .product-layout .mobile-image {
    display: none
}

.product .product-layout .mobile-image img {
    display: block;
    margin: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 30rem
}

@media (max-width: 768px) {
    .product .product-layout .mobile-image {
        display: block
    }
}

.product .product-layout .mobile-image .thumbnails {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.product .product-layout .mobile-image .thumbnails a {
    outline: none
}

.product .product-layout .mobile-image .thumbnails .thumbnail {
    border: 1px solid #f3f6f8;
    width: 4rem;
    height: 4rem;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0.25rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

@media (max-width: 768px) {
    .product .product-layout .product-info-top {
        border-bottom: 0.1rem solid #f3f6f8
    }
}

.product .product-layout .product-details {
    border-bottom: 0.1rem solid #f3f6f8
}

@media (max-width: 768px) {
    .product .product-layout .product-details {
        padding-top: 1rem;
        border: none
    }
}

@media (max-width: 768px) {
    .product .product-layout .product-details .title {
        text-align: left
    }
}

.product .product-layout .product-details .title h1 {
    font-size: 1.2rem;
    font-weight: normal;
    margin: 0;
    font-weight: 600
}

.product .product-layout .product-details .below-title {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 768px) {
    .product .product-layout .product-details .below-title {
        padding-top: 0.5rem;
		display: block;
    }
}

/*
@media (min-width: 769px) {
	.product .product-layout .product-details .below-title .rating {
	    -webkit-box-pack: center;
	    -webkit-justify-content: center;
	    -ms-flex-pack: center;
	    justify-content: center
	}
}
*/

.product .product-layout .product-details .below-title .rating .ratingValue {
    visibility: hidden;
    height: 0;
    width: 0;
    font-size: 0
}

.product .product-layout .product-details .below-title .rating .stars {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
	padding-right: 10px;
}

.product .product-layout .product-details .below-title .rating .stars .star {
    width: 1.25rem
}

@media (max-width: 565px) {
    .product .product-layout .product-details .below-title .rating .stars .star {
        width: 2rem
    }
}

.product .product-layout .product-details .below-title .rating .stars .star svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: #fac747
}

.product .product-layout .product-details .below-title .rating .count {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.product .product-layout .product-details .below-title .rating .count a,
.product .product-layout .product-details .below-title .rating .count span {
    font-size: 0.7rem;
    color: #4C7FA6
}

.product .product-layout .product-details .below-title .rating .count a:hover,
.product .product-layout .product-details .below-title .rating .count span:hover {
    text-decoration: underline;
    color: #3C7FD5
}

.product .product-layout .product-details .below-title .rating .count a {
    display: inline-block
}

.product .product-layout .product-details .below-title .divider {
    margin: 0 0.5rem
}

@media (max-width: 565px) {
    .product .product-layout .product-details .below-title .divider {
        display: none
    }
}

.product .product-layout .product-details .below-title .divider span {
    font-size: 0.7rem;
    display: block
}

.product .product-layout .product-details .below-title .shipping-details {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.product .product-layout .product-details .below-title .shipping-details .icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem
}

.product .product-layout .product-details .below-title .shipping-details .icon svg {
    width: 100%;
    height: 100%;
    display: block
}

.product .product-layout .product-details .below-title .shipping-details p {
    font-size: 0.7rem
}

@media (max-width: 565px) {
	.product .product-layout .product-details .below-title .shipping-details p {
	    font-size: 0.87rem
	}
}

.product .product-layout .product-details .below-title .shipping-details a {
    margin-left: 0.5rem;
    font-size: 0.65rem;
    text-decoration: underline;
    line-height: 0;
    display: block;
    color: #4C7FA6
}

.product .product-layout .product-details .below-title .shipping-details a:hover {
    color: #3C7FD5
}

@media (max-width: 565px) {
    .product .product-layout .product-details .below-title .shipping-details a {
        display: none
    }
}

.product .product-layout .content {
    position: relative;
    width: 50%
}

@media (max-width: 768px) {
    .product .product-layout .content {
        width: 100%
    }
}

.product .product-layout .content .pricing-details {
    padding: 0.5rem 0;
    position: relative
}

.product .product-layout .content .pricing-details div {
    margin: 0.25rem 0
}

.product .product-layout .content .pricing-details span {
    color: #000;
    font-size: 0.8rem;
    white-space: nowrap
}

@media (max-width: 768px) {
    .product .product-layout .content .pricing-details span {
        font-size: 1.2rem
    }
}

.product .product-layout .content .pricing-details .price-label {
    width: 6rem;
    text-align: right;
    margin-right: 0.5rem
}

@media (max-width: 768px) {
    .product .product-layout .content .pricing-details .price-label {
        width: auto
    }
}

.product .product-layout .content .pricing-details .retail-price #retail-price {
    text-decoration: line-through
}

.product .product-layout .content .pricing-details .our-price .price-label {
    color: #000
}

.product .product-layout .content .pricing-details .our-price span {
    font-size: 1rem
}

@media (max-width: 768px) {
    .product .product-layout .content .pricing-details .our-price span {
        font-size: 1.75rem
    }
}

.product .product-layout .content .pricing-details .our-price #our-price {
    font-weight: 700
}

.product .product-layout .content .pricing-details .our-price._sale span {
    color: #e74c3c
}

.product .product-layout .content .pricing-details .savings .price-label {
    color: #000
}

.product .product-layout .content .pricing-details .savings span {
    color: #000
}

.product .product-layout .content .pricing-details .savings._on-sale .price-label,
.product .product-layout .content .pricing-details .savings._on-sale span {
    color: #e74c3c
}

.product .product-layout .content .pricing-details .taxesMessage {
    position: absolute;
    padding-top: 0.5rem;
    top: 0;
    right: 0;
    width: 230px
}

@media (max-width: 768px) {
    .product .product-layout .content .pricing-details .taxesMessage {
        position: relative;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        width: auto
    }
}

.product .product-layout .content .pricing-details .taxesMessage .taxesMessage-information {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

@media (max-width: 768px) {
    .product .product-layout .content .pricing-details .taxesMessage .taxesMessage-information {
        position: relative;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        width: auto
    }
}

.product .product-layout .content .pricing-details .taxesMessage .price-label {
    width: auto
}

.product .product-layout .content .pricing-details .taxesMessage .left-section {
    margin: 0
}

@media (max-width: 768px) {
    .product .product-layout .content .pricing-details .taxesMessage .left-section {
        width: auto
    }
}

.product .product-layout .content .pricing-details .taxesMessage .right-section {
    margin: 0;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

@media (max-width: 768px) {
    .product .product-layout .content .pricing-details .taxesMessage .right-section {
        width: auto
    }
}

.product .product-layout .content .pricing-details .taxesMessage .taxesMessage-info-container {
    height: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 15px
}

.product .product-layout .content .pricing-details .taxesMessage .taxesMessage-info-container .icon {
    width: 100%
}

.product .product-layout .content .pricing-details .taxesMessage .taxesMessage-info-container .icon svg {
    fill: #4C7FA6
}

.product .product-layout .content .pricing-details .taxesMessage .taxesMessage-description {
    background-color: #f9f9f9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #cdcdcd;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    font-family: muli;
    font-size: 12px;
    width: 100%;
    z-index: 100
}

.product .product-layout .content .pricing-details .taxesMessage .taxesMessage-description .taxesMessage-description-title {
    background-color: #4C7FA6;
    color: #ffffff;
    margin: 0px;
    position: relative;
    text-align: center
}

.product .product-layout .content .pricing-details .taxesMessage .taxesMessage-description .taxesMessage-description-title p {
    font-weight: 700;
    margin: 0
}

.product .product-layout .content .pricing-details .taxesMessage .taxesMessage-description .taxesMessage-description-title .close_taxes_message {
    position: absolute;
    top: 0;
    right: 0
}

.product .product-layout .content .pricing-details .taxesMessage .taxesMessage-description .taxesMessage-description-title .close_taxes_message span {
    color: #fff;
    font-size: 12px
}

.product .product-layout .content .pricing-details .taxesMessage .taxesMessage-description .taxesMessage-description-title .close_taxes_message span:hover {
    color: black
}

.product .product-layout .content .pricing-details .taxesMessage .taxesMessage-description .taxesMessage-description-content p {
    color: #4C7FA6;
    padding: 0 5px
}

.product .product-layout .add-to-cart {
    width: 100%;
    border-top: 0.1rem solid #f3f6f8;
    margin: 1rem 0;
    padding: 1rem 0
}

@media (max-width: 565px) {
    .product .product-layout .add-to-cart .layout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
}

@media (max-width: 565px) {
    .product .product-layout .add-to-cart .sub-total {
        margin-bottom: 1rem
    }
}

.product .product-layout .add-to-cart .sub-total span {
    font-size: 1.2rem
}

.product .product-layout .add-to-cart .cta .btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #f2852a;
    border: none;
    color: #fff;
    padding: 0.5rem 2rem;
    font-size: 1rem;
    white-space: nowrap;
    -webkit-border-radius: 0;
    border-radius: 0
}

@media (max-width: 565px) {
    .product .product-layout .add-to-cart .cta .btn {
        font-size: 1.5rem;
        width: 100%
    }
}

.product .included-with-purchase {
    width: 300%;
    margin-left: -100%;
    background: #4C7FA6;
    padding: 1rem 0
}

@media (max-width: 768px) {
    .product .included-with-purchase {
        width: 300%;
        margin-left: -100%
    }
}

.product .included-with-purchase .title {
    text-align: center;
    padding: 0.5rem 0
}

@media (max-width: 768px) {
    .product .included-with-purchase .title {
        text-align: center;
        margin: auto;
        max-width: 95vw
    }
}

.product .included-with-purchase .title span {
    color: #fff;
    font-size: 1rem
}

@media (max-width: 768px) {
    .product .included-with-purchase .title span {
        font-weight: 700;
        font-size: 1.2rem
    }
}

.product .included-with-purchase .included-items {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 100vw;
    margin: auto
}

@media (max-width: 768px) {
    .product .included-with-purchase .included-items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        max-width: 95vw;
        margin: auto
    }
}

.product .included-with-purchase .included-items .item {
    position: relative;
    width: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 1.5rem
}

@media (max-width: 768px) {
    .product .included-with-purchase .included-items .item {
        width: 100%;
        margin: 0
    }
}

.product .included-with-purchase .included-items .item i {
    cursor: pointer;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem
}

@media (max-width: 768px) {
    .product .included-with-purchase .included-items .item i {
        height: 20px;
        padding: 2px 5px 2px 2px;
        width: 25px
    }
}

.product .included-with-purchase .included-items .item i svg {
    width: 95%;
    height: 95%;
    fill: #fff
}

@media (max-width: 768px) {
    .product .included-with-purchase .included-items .item i svg {
        width: 85%;
        height: 85%
    }
}

.product .included-with-purchase .included-items .item .icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-right: 0.5rem
}

@media (min-width: 769px) and (max-width: 1023px) {
    .product .included-with-purchase .included-items .item .icon {
        width: 3rem;
        height: 3rem
    }
}

@media (max-width: 768px) {
    .product .included-with-purchase .included-items .item .icon {
        width: 3rem
    }
}

.product .included-with-purchase .included-items .item .icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: #fff
}

.product .included-with-purchase .included-items .item span {
    display: inline-block;
    color: #fff;
    font-size: 0.9rem
}

@media (max-width: 565px) {
    .product .included-with-purchase .included-items .item span {
        font-size: 1.2rem
    }
}

.product .more-details {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width: 768px) {
    .product .more-details {
        -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse
    }
}

.product .more-details .product-description {
    width: 50%;
    padding-right: 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

@media (max-width: 768px) {
    .product .more-details .product-description {
        width: 100%;
        padding: 0
    }
}

.product .more-details .product-description .title {
    margin: 1rem 0
}

@media (max-width: 768px) {
    .product .more-details .product-description .title {
        padding: 1rem 0;
        text-align: center;
        border-bottom: 1px solid #cdcdcd;
        border-top: 1px solid #cdcdcd
    }
}

.product .more-details .product-description .title span {
    font-size: 1rem
}

@media (max-width: 768px) {
    .product .more-details .product-description .title span {
        font-size: 1.2rem
    }
}

.product .more-details .product-description p {
    color: #676767;
    font-size: 0.75rem
}

@media (max-width: 768px) {
    .product .more-details .product-description p {
        padding-right: 0;
        font-size: 1rem
    }
}

.product .more-details .divider {
    width: 1px;
    margin: 1rem 0;
    background: #cdcdcd
}

@media (max-width: 768px) {
    .product .more-details .divider {
        display: none
    }
}

.product .more-details .product-information {
    width: 50%;
    padding-left: 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.product .more-details .product-information .title {
    margin: 1rem 0
}

@media (max-width: 768px) {
    .product .more-details .product-information .title {
        text-align: center
    }
}

.product .more-details .product-information .title span {
    font-size: 1rem
}

@media (max-width: 768px) {
    .product .more-details .product-information .title span {
        font-size: 1.2rem
    }
}

@media (max-width: 768px) {
    .product .more-details .product-information {
        width: 100%;
        padding: 0
    }
}

.product .more-details .product-information .product-specs {
    margin: 1rem 0;
    border: 1px solid #f3f6f8
}

.product .more-details .product-information .product-specs .spec {
    font-size: 0.75rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.5rem 0
}

@media (max-width: 768px) {
    .product .more-details .product-information .product-specs .spec {
        font-size: 1rem
    }
}

.product .more-details .product-information .product-specs .spec:nth-child(even) {
    background: #f3f6f8
}

.product .more-details .product-information .product-specs .spec label {
    padding-left: 0.25rem
}

.product .more-details .product-information .product-specs .spec .tooltip .icon {
    display: inline-block;
    vertical-align: top;
    width: 0.75rem;
    height: 0.75rem
}

@media (max-width: 768px) {
	.product .more-details .product-information .product-specs .spec .tooltip .icon {
	    vertical-align: bottom;
	    width: 1.2em;
	    height: 1.2em;
	}
}

.product .more-details .product-information .product-specs .spec .tooltip .icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: #4C7FA6
}

.product .more-details .product-information .product-specs .spec span,
.product .more-details .product-information .product-specs .spec a {
    color: #676767;
    font-size: 0.75rem;
    padding-right: 0.25rem
}

@media (max-width: 768px) {
    .product .more-details .product-information .product-specs .spec span,
    .product .more-details .product-information .product-specs .spec a {
        font-size: 1rem
    }
}

@media (max-width: 768px) {
	.products .products-list .product .title {
        min-height: 70px;
        height: inherit;
    }
}
