.detail-box-qmp {
    margin: 30px 0;
    opacity: 1;
    max-height: 9999px;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.06), 0px 2px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.detail-box-qmp.hide {
    max-height: 0;
    overflow: hidden;
    border: 0 !important;
}

.detail-box-qmp .content-container {
    display: flex;
    position: relative;
}

.detail-box-qmp .position {
    top: 36px;
    left: -24.5px;
    position: absolute;
    color: var(--nv-primary-accent);
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    background: #ffffff;
    border: 1px solid #E5E5E5;
    box-sizing: border-box;
    border-radius: 8px;
    width: 49px;
    text-align: center;
    padding: 3px 0;
    z-index: 11;
}

.detail-box-qmp .left {
    text-decoration: none !important;
    color: inherit;
    position: relative;
    padding: 40px;
    display: grid;
    column-gap: 90px;
    grid-template-columns: 205px 1fr;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    flex: 1;
}

.detail-box-qmp .left:focus,
.detail-box-qmp .left:hover {
    text-decoration: none !important;
}

.detail-box-qmp .left .title {
    font-weight: 600;
    font-size: 24px;
    line-height: normal;
    margin-bottom: 11px;
    font-family: inherit;
}

.detail-box-qmp .left .content {
    font-size: 16px;
    line-height: normal;
    color: #000000 !important;
    display: flex;
    flex-direction: column;
}

.detail-box-qmp .left .content > p {
    font-size: 16px;
}

.detail-box-qmp .left .content ul {
    padding-left: 20px;
    list-style-type: none;
    margin: 0;
}

.detail-box-qmp .left .content ul li {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    margin: 0 0 8px 0;
}

.detail-box-qmp .left .content ul li:before {
    content: none;
}

.detail-box-qmp .data {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.detail-box-qmp .data-item .item-name {
    text-transform: uppercase;
    font-size: 14px;
}

.detail-box-qmp .data-item .item-content {
    font-weight: bold;
    display: flex;
}

.detail-box-qmp .left .content ul li:after {
    content: "✓ ";
    top: 0;
    left: -20px;
    position: absolute;
    display: inline-block;
    color: var(--accent-color-2);
    font-weight: 600;
}

.detail-box-qmp .left .stars-explanation {
    height: 20px;
    margin-left: 5px;
}

.detail-box-qmp .left .stars-explanation svg path:nth-child(2)
 {
    fill: var(--nv-primary-accent);
}

.detail-box-qmp .data-item .item-content svg {
    margin-left: 5px;
}

.detail-box-qmp .data-item .item-content svg path:nth-child(2) {
    fill: var(--nv-primary-accent);
}

.detail-box-qmp .data-item .item-content div[data-tippy-root],
.detail-box-qmp .left .stars-explanation div[data-tippy-root]
 {
    padding: 7px 0;
}

.detail-box-qmp .data-item .item-content .tippy-content,
.detail-box-qmp .left .stars-explanation .tippy-content
 {
    background: var(--nv-site-bg);
    color: var(--nv-text-color);
    box-shadow: rgba(0, 0, 0, 0.3) 0 0 5px;
    font-weight: normal;
}

.detail-box-qmp .data-item .item-content .tippy-arrow,
.detail-box-qmp .left .stars-explanation .tippy-arrow{
    color: var(--nv-site-bg);
    display: none;
}

.detail-box-qmp .left .stars-explanation .tippy-content div {
    padding: 15px;
}

.detail-box-qmp .left .stars-explanation .tippy-content p {
    margin: 0;
}

.detail-box-qmp .left .content ul li:last-of-type {
    margin-bottom: 0;
}

.detail-box-qmp .label {
    top: 16px;
    left: -9px;
    position: absolute;
    padding: 8px 43px;
    color: #487538;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    background: #E1F4DA;
    z-index: 10;
}

.detail-box-qmp .label::after {
    content: "";
    top: -5px;
    left: 0;
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 8px 0px 0px;
    border-color: transparent #B4DDA5 transparent transparent;
}

.detail-box-qmp .left .image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-box-qmp .left .image img {
    width: 100%;
}

.detail-box-qmp .left .stars {
    display: flex;
    margin-bottom: 27px;
    min-height: 30px;
    align-items: center;
}

.detail-box-qmp .left .stars .stars-item + .detail-box-qmp .left .stars .stars-item {
    margin-left: 2px;
}

.detail-box-qmp .left .stars .stars-item {
    height: 20px;
}

.detail-box-qmp .left .stars .stars-item svg {
    height: 100%;
    fill: #ffb401;
}

.detail-box-qmp .left .stars .review-count {
    margin-left: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline;
    color: var(--accent-color-2);
}

.detail-box-qmp .left .label {
    font-family: inherit;
}

.detail-box-qmp .button-container {
    margin-top: 25px;
    display: block;
}

.detail-box-qmp .button-container > * {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px;
    font-weight: bold;
    font-size: 18px;
    line-height: normal;
    text-decoration: none !important;
    text-transform: uppercase;
    border-radius: 12px;
    background: var(--primarybtnbg);
    color: var(--primarybtncolor);
    transition: background-color .5s;
}

@media screen and (max-width: 1349px) {
    .detail-box-qmp .left {
        column-gap: 20px;
        padding: 20px;
    }

    .detail-box-qmp .right {
        padding: 20px 20px 20px 0;
    }

    .detail-box-qmp .label {
        padding-right: 10px;
    }
}

@media screen and (max-width: 1279px) {
    .detail-box-qmp {
        display: block;
    }
}

@media screen and (max-width: 1100px) {
    .detail-box-qmp .left .title {
        font-size: 20px;
    }


    .detail-box-qmp .label,
    .detail-box-qmp .left .content,
    .detail-box-qmp .left .content > p,
    .detail-box-qmp .left .content ul li,
    .detail-box-qmp .left .stars .review-count {
        font-size: 14px;
    }

    .detail-box-qmp .label::after {
        top: -5px;
    }

    .detail-box-qmp .content-container {
        grid-template-columns: 1fr 215px;
    }

    .detail-box-qmp .left {
        grid-template-columns: 170px 1fr;
    }
}


@media screen and (max-width: 900px) {
    .detail-box-qmp .content-container {
        grid-template-columns: 1fr 170px;
    }
}

@media screen and (max-width: 768px) {
    .detail-box-qmp .left {
        display: block;
        padding: 85px 16px 16px;
    }

    .detail-box-qmp .left .image img {
        max-width: 200px;
        margin-bottom: 40px;
    }

    .detail-box .position {
        display: none;
    }

    .detail-box-qmp .left .stars {
        display: none;
    }

    .detail-box-qmp .content-container {
        display: block;
    }
}