.product-wrap {
    display: grid;
    grid-template-columns: 500px 1fr;
    column-gap: 30px;
    margin-bottom: 60px;
    padding: 0 15px;
}

@media (max-width: 991px) {
    .product-wrap {
        display: block;
    }
}

#productImage {
    position: sticky;
    top: 30px;
    margin-top: 25px;
    margin-bottom: 15px;
}

#productImage > img {
    width: 100%;
}

#productImage .no-image img {
    display: block;
    width: 100%;
    height: auto;
}

#productImage .image a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

#productImage .image a img {
    max-width: 100%;
    max-height: 100%
}

#productImage .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
#productImage .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    color: #C64D00;
}

#productImage .thumbs-nav {
    margin-top: 20px;
}

#productImage .thumb-outer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 82px;
    border: 1px solid #f3f3f3;
    cursor: pointer;
    opacity: 0.7;
}

#productImage .thumb-outer.swiper-slide-thumb-active {
    opacity: 1;
}

#productImage .thumb-outer.swiper-slide,
#productImage .gallery-top .swiper-slide {
    height: auto;
}

#productImage .gallery-top iframe,
#productImage .gallery-top .video,
#productImage .thumb-outer .video-img {
    width: 100%;
    height: 100%;
}

#productImage .thumb-outer .img-outer {
    display: flex;
    justify-content: center;
    align-items: center;
}

#productImage .thumb-outer .img-outer img {
    max-width: 100%;
    max-height: 100%;
}

#productImage .thumb-outer.swiper-slide-thumb-active {
    position: relative;
    border: 1px solid #C64D00;
}

#productDataColumn {
    margin: 25px 0 0;
}

#productDataColumn > div:not(:first-child),
#productOptions > span,
#productOptions > div {
    margin-bottom: 15px;
}

.product-codes {
    display: flex;
    flex-wrap: wrap;
    color: #B2B2B2;
}

.product-code {
    margin-right: 10px;
}

.product-full-card__wrap-caption {
    margin-bottom: 11px;
}

.product-full-card__wrap-name {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 8px;
}

.product-full-card__name {
    display: flex;
    margin-bottom: 0;
    padding-top: 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.product-full-card__type,
.product-full-card__color-name {
    font-size: 16px;
}

.product-full-card__new,
.product-full-card__sale {
    height: 21px;
    margin-left: 10px;
    padding: 0 6px;
    line-height: 21px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: 3px;
    background-color: #11cb24;
}

.product-full-card__new {
    margin-top: 4px;
}

.product-full-card__sale {
    margin: 0 10px;
    padding: 0 8px 0 6px;
    display: inline-block;
    background-color: #ff0000;
    order: 2;
}

.product-full-card__wrap-colors {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 16px !important;
    border-bottom: 1px solid #F0F0F0;
}

#productPrices {
    margin: 3px 0;
    font-weight: 600;
}

.product-full-card__wrap-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 18px !important;
    padding: 16px 0;
    border-bottom: 1px solid #F0F0F0;
}

.product-full-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-grow: 1;
    font-size: 24px;
}

.old-price {
    margin-right: 10px;
    font-size: 20px;
    color: #B2B2B2;
}

.previous-price {
    width: 100%;
    font-size: 18px;
    color: #C64D00;
}

.product-rating {
    display: flex;
    align-items: center;
    margin: 3px 0;
}

.product-rating .rating-stars {
    margin-right: 5px;
}

.product-rating .to-reviews {
    padding: 5px 18px 6px;
    background: #0000;
    border: 1px solid #c64d00;
    color: #C64D00 !important;
    font-weight: bold;
    text-decoration: none !important;
    cursor: pointer;
}

.product-rating .to-reviews:hover {
    background: #0000;
    border: 1px solid #F86508;
    color: #F86508 !important;
}

.rating-stars {
    display: flex;
}

.rating-star {
    margin-right: 4px;
    width: 20px;
    height: 19px;
    background-image: url('../images/icons/star_off.svg');
}

.rating-star.active {
    width: 20px;
    height: 19px;
    background-image: url('../images/icons/star_on.svg');
}

.product-full-card__color-label {
    margin-right: 15px;
}

.product-full-card__colors {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.product-full-card__color {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 2px 3px;
    border-radius: 50%;
    background-position: center;
    cursor: pointer;
}

.product-full-card__color--active {
    border: 1px solid #C64D00;
}

#productOptions > span {
    display: block;
}

.description {
    position: relative;
    max-height: 210px;
    font-size: 14px;
    line-height: 1.6;
    overflow: hidden;
    transition: 0.5s;
}

#productDescription .description:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 100%);
    opacity: 1;
}

.description.short:after {
    content: none;
}

.description .tech {
    margin-bottom: 10px;
}

.description .materials img {
    margin-right: 10px;
    width: 50px;
    vertical-align: middle;
}

.product_weight {
    margin-top: 15px;
}

.description-more {
    margin-top: 8px;
    text-align: center;
    font-weight: 500;
    line-height: 18px;
    color: #C64D00;
}

.description-more:hover {
    color: #F86508;
    cursor: pointer;
}

#productDescription.show-more .description {
    max-height: none;
}

#productDescription.show-more .description:after {
    content: none;
}

@media (max-width: 991px) {
    .product-full-card__color-label {
        margin-bottom: 10px;
    }

    .product-full-card__wrap-colors {
        padding-top: 16px;
        border-top: 1px solid #e3e3e3;
    }
}

@media (max-width: 639px) {
    .product-full-card__price {
        font-size: 18px;
    }

    .old-price {
        font-size: 16px;
    }
}

.majc {
    z-index: 150000000000;
}

.majc__btn {
    padding: 1.7rem 0.75rem !important;
    color: white !important;
    font-weight: bold !important;
    font-size: 18px !important;
    text-decoration: none;
}

.wrapper-checkbox {
    margin-bottom: 7px;
}

.container-checkbox {
    display: flex;
    align-items: center;
    padding: 0 15px 0 30px;
    font-size: 14px;
    line-height: 1.2;
}

.sizes-table {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px solid #F0F0F0;
}

.tech-article img {
    display: block;
    max-width: 100%;
    height: auto;
}

.sizes-table > div > div:first-child {
    margin: 4px 5px 0 0;
    font-weight: 500;
}

@media (max-width: 600px) {
    .sizes-table {
        display: block;
    }

    #sizesContainer {
        margin-bottom: 10px;
    }
}

.sizes-table > span:first-child {
    margin-right: 20px;
}

#resultMessage {
    margin-bottom: 20px !important;
}

.extra_fields_name {
    text-transform: uppercase;
}

#sizeGuideContainer {
    min-width: 175px;
    width: max-content;
    padding: 1px 6px 2px;
    margin: 3px;
    border: 1px solid #b2b2b2;
}

#sizeGuideContainer a {
    display: flex;
    align-items: center;
}

/*#sizeGuideContainer,*/
#sizeGuide {
    display: none;
    position: relative;
}

#sizeGuide .size-table-hor {
    margin: 0 auto;
}

#sizeGuide #selectSize {
    border: 1px solid grey;
}

#sizeGuide .glyphicon-remove {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

#selectSize > div {
    overflow-x: auto;
}

#sizeGuide table td {
    min-width: 45px !important;
}

#sizeGuide .nav > li > a, #selectSize .nav > li > a {
    color: black;
}

#sizeGuide .tab-content {
    max-width: 900px;
}

.akuSizesTable {
    width: 135px;
}

.akuSizesTable,
.sitkaSizesTable {
    margin: 25px auto;
}

.akuSizesTable td,
.akuSizesTable th,
.sitkaSizesTable td,
.sitkaSizesTable th {
    padding: 3px 10px;
    text-align: center;
}

.sitkaSizesTable th {
    background-color: #C64D00;
    border-bottom: 0 !important;
    color: white;
    text-transform: uppercase;
}

.sitkaSizesTable td {
    border-left: 1px solid #bebcb7;
    border-bottom: 1px solid #bebcb7;
}

.sitkaSizesTable tr td:first-child {
    border-left: 0;
    text-align: left;
}

.product-bottom {
    padding: 0 15px;
    overflow: hidden;
}

#recommendedItems .preview-card-product {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

#recommendedItems .preview-card-product__name {
    font-size: 15px;
    line-height: 1.1;
    min-height: 33px;
}

#recommendedItems .preview-card-product__price-wrap {
    min-height: 40px;
}

#recommendedItems .preview-card-product__caption {
    padding-bottom: 15px;
}

@media (max-width: 1199px) {
    #recommendedItems .preview-card-product:hover,
    #recommend .preview-card-product:hover {
        border-color: transparent;
    }
}

#recommend {
    margin-bottom: 20px;
    padding: 7px;
}

#recommend.swiper {
    overflow: visible;
}

.recommend-scrollbar,
.videos-scrollbar {
    height: 7px;
    margin-top: 20px;
}

.recommend-scrollbar .swiper-scrollbar-drag,
.videos-scrollbar .swiper-scrollbar-drag {
    background: #C64D00;
    cursor: pointer;
}

#recommendedItems h3,
#videos h3,
#blogPosts h3,
#reviews h3 {
    margin: 0 0 14px;
    padding-top: 5px;
    font-size: 150%;
    font-weight: 600;
    text-transform: uppercase;
}

#videos h3,
#blogPosts h3,
#reviews h3 {
    margin-bottom: 18px;
}

.product-bottom #blogPosts .blog-wrapper {
    margin-bottom: 40px;
}

.product-bottom #blogPosts .blog-wrapper {
    padding: 7px;
}

.product-bottom #blogPosts a.blog-item {
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.product-bottom #blogPosts .blog-item__title {
    min-height: 36px;
}

.product-bottom #blogPosts .blog-item__caption,
.product-bottom #blogPosts .blog-item__more {
    padding: 0 10px;
}

.product-bottom #blogPosts .blog-item__descr {
    min-height: 60px;
}

.product-bottom #blogPosts .blog-item__more {
    padding-bottom: 10px;
}

#reviews {
    position: relative;
    margin-bottom: 100px;
}

#reviews h3 span {
    color: #C64D00;
}

#reviewFrmBtn {
    margin-bottom: 40px;
    padding: 10px 70px;
}

.reviews-rating {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 45px;
    right: 15px;
    width: 520px;
    margin-top: 0;
    padding: 16px;
    background-color: #F6F6F6;
}

.reviews-rating .rating-wrapper {
    margin-right: 20px;
}

.reviews-rating .rating-numbers {
    font-size: 46px;
    font-weight: 500;
    color: #c4c4c4;
    text-align: center;
}

.reviews-rating .statistics {
    flex-grow: 1;
    display: table;
}

.reviews-rating .statistics > div {
    display: table-row;
}

.reviews-rating .statistics-mark {
    font-weight: 500;
}

.reviews-rating .statistics-scale {
    width: 100%;
    padding: 0 8px;
}

.reviews-rating .statistics-scale > div {
    height: 4px;
    border-radius: 2px;
}

.reviews-rating .statistics-percent {
    color: #C4C4C4;
}

.reviews-rating .statistics-mark,
.reviews-rating .statistics-scale,
.reviews-rating .statistics-percent {
    display: table-cell;
}

.review_item {
    margin-bottom: 20px;
}

.review_time {
    margin-bottom: 2px;
    font-size: 12px;
}

.review_user {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
}

.review_item .rating-stars {
    margin-bottom: 14px;
}

.review_text {
    font-size: 16px;
}

.review_text .snd-part {
    display: none;
}

.review_text .descr-readmore a {
    color: #C64D00;
    cursor: pointer;
}

#reviews > div:first-child {
    border-top: 0;
}

#reviews .error {
    margin-top: 10px;
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 5px;
    outline: 1px solid red;
    transition: .3s;
}

#reviews .more-reviews {
    display: none;
    margin: 0 auto;
    transition: 0.3s;
}

#reviews .more-reviews.open {
    transform: rotate(180deg);
}

#rating {
    display: block;
    text-align: center;
    float: right;
    margin: 0 20px;
    width: 140px;
}

#rating .basic {
    margin-right: 12px !important;
}

#ratingDetails {
    background-color: white;
    border: 1px dashed #c7c7c7;
    margin-left: 10px;
    margin-top: 10px;
    padding: 10px;
    width: 100px;
    z-index: 100;
}

#ratingDetails > div {
    line-height: 14px;
    padding: 0 12px;
}

#ratingDetails > div:first-child {
    font-weight: bold;
    padding: 0;
}

#ratingDetails > div span {
    float: right;
}

#jshop_review_write {
    width: 50%;
    margin-bottom: 20px;
}

#jshop_review_write .reviews__wrap-user {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 5px;
}

#jshop_review_write label {
    display: block;
    font-weight: 400;
}

#jshop_review_write input[type="text"] {
    width: 100%;
    height: 40px;
}

#jshop_review_write input[type="text"]::placeholder,
#jshop_review_write textarea::placeholder {
    color: #777;
}

#jshop_review_write textarea {
    width: 100%;
    resize: none;
}

#jshop_review_write .reviews__wrap-rating {
    margin-bottom: 16px;
}

#jshop_review_write input[type="submit"] {
    margin-bottom: 8px;
}

.rating__group {
    position: relative;
    width: 140px;
    height: 28px;
    background-image: url(../images/icons/star_off.svg);
    background-size: 28px 27px;
    background-repeat: repeat-x;
}

#reviews .rating__input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.rating__input:focus ~ .rating__focus {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    outline: 3px solid #4a90e2;
    outline-offset: 3px;
}

.rating__input:checked + .rating__star {
    background-image: url(../images/icons/star_on.svg);
}

.rating__star {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    height: 28px;
    background-size: 28px 27px;
    background-repeat: repeat-x;
    cursor: pointer;
}

.rating__star--no-fix:hover {
    background-image: url(../images/icons/star_on.svg);
}

.rating__star--no-fix:hover ~ .rating__star {
    background-image: url(../images/icons/star_off.svg);
}

.rating__star:nth-of-type(1) {
    z-index: 5;
    width: 28px;
}

.rating__star:nth-of-type(2) {
    z-index: 4;
    width: 56px;
}

.rating__star:nth-of-type(3) {
    z-index: 3;
    width: 84px;
}

.rating__star:nth-of-type(4) {
    z-index: 2;
    width: 112px;
}

.rating__star:nth-of-type(5) {
    z-index: 1;
    width: 140px;
}

.rating [checked='disabled'] + label {
    pointer-events: none;
}

.reviewRules {
    margin-bottom: 10px;
}

@media (min-width: 769px) and (max-width: 1200px) {
    .reviews-rating {
        width: 45%;
    }
}

@media (max-width: 768px) {
    #reviews {
        margin-bottom: 60px;
    }

    #reviewFrmBtn {
        margin-bottom: 20px;
        width: 100%;
    }

    #jshop_review_write {
        width: 100%;
    }

    #jshop_review_write .reviews__wrap-user {
        display: block;
        margin-bottom: 0;
    }

    #jshop_review_write input[type="text"] {
        margin-bottom: 5px;
    }

    .reviews-rating {
        position: static;
        width: auto;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .reviews-rating .rating-wrapper {
        margin-bottom: 8px;
    }

    .reviews-rating .rating-numbers {
        font-size: 38px;
    }

    .reviews-rating .rating-stars {
        justify-content: center;
    }
}

.theReview .reviewPreview {
    float: left;
    margin-right: 10px;
    width: 75px;
}

.theReview .reviewPreview img {
    width: 75px;
}

.theReview .reviewDateAuthor {
    font-size: 11px;
    clear: both;
}

.theReview .reviewDateAuthor span:first-child {
    font-weight: bold;
}

.theReview .dtreviewed {
    color: #999999;
}

.theReview .reviewOverall {
    font-size: 14px;
    font-weight: bold;
}

.theReview .reviewText .fullText {
    display: none;
}

.theReview .reviewText .readMore {
    display: block;
    text-align: right;
}

.theReview .reviewText .readMore a {
    color: #333333;
}

.theReview .reviewText .readMore a:after {
    content: " »»» "
}

.permalink {
    display: none;
}

.inReviewRate span {
    display: inline-block;
    cursor: pointer;
    height: 20px;
}

.inReviewRate span.highlight {
    background-color: maroon;
}

#sizeGuideBtn {
    color: #333;
    cursor: pointer;
}

#sizeGuideBtn img {
    margin-right: 4px;
}

#sizeGuideBtn:hover {
    text-decoration: none;
}

/* multishot settings */
#thumbsScroller {
    overflow: hidden;
    height: 135px;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}

#thumbs {
    position: absolute;
    margin: 2px;
    margin-left: 40px;
    white-space: nowrap;
    -webkit-transition-duration: 0.5s;
    left: 0;
}

#thumbs > img {
    cursor: pointer;
    width: 130px;
}

#thumbs > img.active {
    outline: 2px solid black;
}

img[data-banner] {
    cursor: pointer;
    max-width: 50px;
}

.thumbscontrol > img {
    padding-top: 160%;
}

/* end multishot settings */

.itemMaterialBannerDialog,
.itemMaterialBannerDialog #theDialog {
    padding: 0 !important;
    overflow: hidden !important;
}

.itemMaterialBannerDialog .ui-dialog-titlebar {
    position: absolute !important;
    right: 0;
    z-index: 1003;
}