@charset "utf-8";

.product-body {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.product-body .product-body-left {
    width: 1100px;
}

.product-body .product-body-right {
    width: 360px;
}

/* product-image-panel */
.product-image-panel:nth-child(n+2) {
    margin-top: 20px;
}

.product-image-panel .panel-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.product-image-panel .panel-title h4 {
    color: #333;
    font-size: 18px;
    font-weight: normal;
}

.product-image-panel .panel-title h4 i {
    color: #0036ff;
    font-size: 22px;
}

.product-image-panel .panel-title .panel-title-right a {
    color: #0036ff;
    font-size: 16px;
}

.product-image-panel .panel-title .panel-title-right a i {
    font-size: 14px;
}

.product-image-panel .panel-body {
    margin-top: 15px;
}
/* product-image-panel */

/* img-container */
.img-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 750px;
    /* background-color: #f7f8fc; */
    border-radius: 10px;
}

.img-container img {
    max-width: 90%;
    max-height: 90%;
}

.prev {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    cursor: url("../../img/product/cur-img-container-btn-left.png"), auto;
}

.next {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    cursor: url("../../img/product/cur-img-container-btn-right.png"), auto;
}
/* img-container */

/* product-metadata-info */
.product-metadata-info .product-title-box {
    margin-top: 20px;
}

.product-metadata-info .product-title-box h2 {
    color: #222;
    font-size: 26px;
    font-weight: 999;
}

.product-metadata-info .product-key-specs {
    display: flex;
    margin-top: 15px;
}

.product-metadata-info .product-key-specs li {
    margin-left: 30px;
}

.product-metadata-info .product-key-specs li:first-child {
    margin-left: 0;
}

.product-metadata-info .product-key-specs li strong {
    color: #666;
    font-size: 16px;
    font-weight: normal;
}

.product-metadata-info .product-key-specs li p {
    margin-top: 8px;
    color: #0036ff;
    font-size: 15px;
}
/* product-metadata-info */

/* product-exterior-specs */
.product-exterior-specs {
    margin-top: 25px;
}

.product-exterior-specs li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.product-exterior-specs li:last-child {
    border: 0;
}

.product-exterior-specs li span {
    font-size: 16px;
    line-height: 38px;
}
/* product-exterior-specs */

/* product-action-btns */
.product-action-btns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product-action-btns a {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    width: 175px;
    height: 36px;
    border: 1px solid #0036ff;
    border-radius: 2px;
    color: #0036ff;
    font-size: 14px;
    text-align: center;
    line-height: 34px;
}

.product-action-btns a:nth-child(n+2) {
    margin-left: 10px;
}

.product-action-btns a.add-to-compare {
    background-color: #0036ff;
    color: #fff;
    transition: 0.6s;
}

.product-action-btns a.add-to-compare:hover {
    background-color: #3a65ff;
    border: 1px solid #3a65ff;
}

.product-action-btns a.add-to-compare:active {
    background-color: #0036ff;
    border: 1px solid #0036ff;
}

.product-action-btns a i {
    margin-right: 3px;
}
/* product-action-btns */

/* product-image-panel */
.product-image-panel .panel-body ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 9px;
}

.product-image-panel .panel-body ul li {
    overflow: hidden;
    display: flex;
    width: 110px;
    height: 85px;
    border: 2px solid #fff;
    border-radius: 5px;
    /* background-color: #f7f8fc; */
}

.product-image-panel .panel-body ul li:hover {
    border: 2px solid #8fa7ff;
}

.product-image-panel .panel-body ul li.active {
    border: 2px solid #0036ff;
}

.product-image-panel .panel-body ul li a {
    width: 100%;
    text-align: center;
}

.product-image-panel .panel-body ul li img {
    max-width: 100%;
    max-height: 100%;
}
/* product-image-panel */