#product .wnrow {
    justify-content: center;
}

#product .prdmn {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin:35px 0 65px 0;
    gap: 50px;
}
#product .prdmn .thmb a{display: block; font-size: 0;}

#product .prdmn .inf {
    width: 490px;
    flex: 0 0 490px;
    max-width: 100%;
}

#product .prdmn .inf h1 {
    font-size: 23px;
    margin: 0 0 12px 0;
    padding: 0;
    font-weight: 400;
    line-height: 1.2em;
}

#product .prdmn .inf .mdl {
    color: #595959;
    font-size: 14px;
    line-height: 1.1em;
    padding: 0;
    margin: 12px 0 6px 0;
    display: block;
}
#product .prdmn .mrctns{
    margin: 50px 0 0 0;
}
#product .prdmn .mrctns img{
    max-height: 18px;
}
#product .prdmn .mrctns #button-wishlist{
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 7px 12px;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    gap: 12px;
}
#product .rnf{
    margin: 60px 0 25px 0;
    display: grid;
    grid-template-columns: auto auto;
    gap: 15px 50px;
}
#product .rnf a,#product .rnf span{
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#product .form-group {
    display: flex;
    flex-flow: column;
    box-sizing: border-box;
    padding-bottom: 15px;
}

#product .form-group .group {
    display: flex;
    box-sizing: border-box;
    flex-flow: row wrap;
}

#product .form-group > label {
    font-size: 15px;
    color: #000000;
    box-sizing: border-box;
    padding-bottom: 10px;
}

#product .form-group .radio {
    margin: 0 10px 10px 0;
}

#product .form-group .radio label:not(.disabled):hover {
    color: #fff;
    cursor: pointer;
    background: black;
}

#product .form-group .radio input:checked + label {
    color: #fff;
    background: black;
}

#product .form-group .radio input {
    display: none;
}

#product .form-group .radio label {
    width: auto;
    padding:7px 0 5px 0;
    line-height: 20px;
    min-width: 32px;
    text-align: center;
    background: #EBEBEB;
    border: none;
    border-radius: 50%;
    display: inline-block;
    transition: 0.25s all ease-in-out;
    color: #000000;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}
#product .form-group .radio label.disabled{
    opacity: 0.5;
    cursor: not-allowed;
}
#product .form-group .radio label.disabled:hover:before{
    content: '';
    left: 0;
    width: 120%;
    height: 1px;
    background: #888;
    transform: rotate(-45deg);
    position: absolute;
    top: 30%;
}
#product .prdmn .inf .prcs {
    display: flex;
    align-items: center;
    margin: 24px 0 42px 0;
}

#product .prdmn .inf .prcs strong {
    font-size: 32px;
    font-weight: 500;
    line-height: 1em;
    position: relative;
}

#product .prdmn .inf .prcs strong.lt:before {
    content: '';
    width: 100%;
    height: 1px;
    top: calc(50% - 1px);
    left: 0;
    background: #000;
    opacity: 0.95;
    position: absolute;
}

#product .prdmn .inf .prcs span {
    font-size: 25px;
    font-weight: 700;
    line-height: 20px;
    position: relative;
    color: #CD3529;
    margin-left: 11px;
}

#product .prdmn .inf .prcs em {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    position: relative;
    background: #CD3529;
    color: #fff;
    letter-spacing: 0;
    margin-left: 11px;
    border-radius: 1px;
    padding: 6px 16px 3px 16px;
    font-style: normal;
}

#product .prdmn .crt {
    display: flex;
    max-width: 100%;
    margin: 24px 0 0 0;
}
#product .prdmn .crt .qty {
    border: 1px solid #5E5E5E;
    height: 48px;
    border-radius: 24px;
    box-sizing: border-box;
    width: 102px;
    display: flex;
    margin-right: 14px;
}
#product .prdmn .crt .qty input {
    padding: 0;
    margin: 0;
    height: 46px;
    line-height: 46px;
    font-size: 17px;
    width: 34px;
    background: transparent;
    border: none;
    text-align: center;
    color: #707070;
    box-sizing: content-box;
}

#product .prdmn .crt .qty span {
    width: 32px;
    height: 100%;
    position: relative;
    border-radius: 6px;
    cursor: pointer;
}

#product .prdmn .crt .qty span:before {
    content: '';
    width: 11px;
    height: 1px;
    background: #707070;
    position: absolute;
    top: 22px;
}

#product .prdmn .crt .qty span.less:before {
    left: 12px;
}

#product .prdmn .crt .qty span.plus:before {
    right: 12px;
}

#product .prdmn .crt .qty span.plus:after {
    content: '';
    width: 1px;
    height: 11px;
    background: #707070;
    position: absolute;
    top: 17px;
    right: 17px;
}

#product .prdmn .crt .btn {
    display: flex;
    flex-grow: 1
}

#product .prdmn .crt #button-cart {
    border-radius: 24px;
    background: var(--btn-gr-bg);
    height: 48px;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    flex-grow: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

#product .prdmn .crt #button-cart img {
    margin-right: 11px;
}

#product .prdmn .crt #button-cart span {
    padding-top: 2px;
}

#product .prdmn .crt #button-wishlist {
    border-radius: 0 6px 6px 0;
    background: #000;
    height: 46px;
    width: 46px;
    flex: 0 0 46px;
    line-height: 46px;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-left: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#product .prdmn .outofstock{
    border-radius: 6px;
    background: #dd3529;
    height: 54px;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    align-items: center;
    padding:18px 20px;
    line-height: 18px;
    display: inline-block;
    width: 100%;
    max-width: 580px;
    box-sizing: border-box;
    text-align: center;
}
#product .prdmn .hlpbxs{
    margin: 30px 0 22px 0;
}
#product .prdmn .hlpbxs h5 {
    font-size: 15px;
    line-height: 1.36em;
    font-weight: 400;
    margin: 0 0 18px 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
#product .prdmn .bx {
    border-radius: 6px;
    background: #fff;
    padding: 18px 25px;
    box-sizing: border-box;
    position: relative;
    border: 1px solid var(--border-color);
    margin-bottom: 8px;
    font-size: 15px;
}
.inf .stck{

}
.inf .stck span{
    position: relative;
    padding: 14px 20px 14px 30px;
    box-sizing: border-box;
    border-radius: 25px;
    display: inline-block;
    line-height: 16px;
    font-size: 15px;
}
.inf .stck span:before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    width: 6px;
    height: 6px;
    border-radius: 4px;
}
.inf .stck span.stck6:before,.inf .stck span.stck13:before,.inf .stck span.stck7:before{ background: #4D7C0F; }
.inf .stck span.stck6,
.inf .stck span.stck13,
.inf .stck span.stck7
{
    background: #4D7C0F0D;
    color: #4D7C0F;
}
.inf .stck span.stck11:before,.inf .stck span.stck10:before,.inf .stck span.stck9:before{ background: #D48806; }
.inf .stck span.stck11,
.inf .stck span.stck10,
.inf .stck span.stck9
{
    background: #D488060D;
    color: #D48806;
}
.inf .stck span.stck12:before,.inf .stck span.stck12:before{ background: #CC493D; }
.inf .stck span.stck12,
.inf .stck span.stck5
{
    background: #CC493D0D;
    color: #CC493D;
}

#product .rltds {
    padding: 60px 0;
}

#product .rltds .wnrow {
    flex-direction: column;
}

#product .rltds .rltd-hdr {
    text-align: center;
    position: relative;
}

#product .rltds .rltd-hdr h4 {
    background: #ffffff;
    display: inline-block;
    position: relative;
    padding: 0 20px;
    font-weight: 500;
    font-size: 40px;
    letter-spacing: 0;
    color: #1A2F33;
    opacity: 1;
    font-family: Arima, sans-serif;
}

#product .rltds .rltd-hdr:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #D0D0D0;
    position: absolute;
    top: 50%;
    left: 0;
}

.crsl-ttl {
    text-align: center;
}

.crsl-cnt {
    width: 100%;
    position: relative;
}

.crsl-next:before {
    content: '';
    width: 45px;
    height: 18px;
    cursor: pointer;
    background: url(../../../../../image/assets/arr-right.svg);
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    right: 0;
    z-index: 1;
}

.crsl-prev:before {
    content: '';
    width: 45px;
    height: 18px;
    cursor: pointer;
    background: url(../../../../../image/assets/arr-left.svg);
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    left: -20px;
    z-index: 1;
}

.success_msg {
    box-sizing: border-box;
    padding: 30px 20px 20px 20px;
    max-width: 450px;
    width: 90%;
    position: fixed;
    background: #fff;
    z-index: 9999999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.success_msg .close {
    width: 20px;
    height: 20px;
    position: absolute;
    cursor: pointer;
    top: 10px;
    right: 10px;
}

.success_msg .together {
    display: flex;
    box-sizing: border-box;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
}

.success_msg .together .images img {
    width: 120px;
}

.success_msg .together .text {
    font-size: 15px;
    line-height: 18px;
    padding: 0 0 0 20px;
}

.success_msg .together .text a {
    font-weight: bold;
}

.success_msg .bottom {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0 0;
}

.success_msg .close::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 2px;
    height: 20px;
    background: #000;
    content: '';
}

.success_msg .close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 2px;
    height: 20px;
    background: #000;
    content: '';
}

.success_msg .bottom #cntn-shppng {
    background: #e9e9e9;
    padding: 10px;
    color: #111;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
}

.success_msg .bottom a {
    background: #000;
    padding: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
}

.text-danger {
    color: #d0321e;
}

#product .tab-cnt {
    width: 100%;
    background: #F6F6F6;
}

#product .dscr {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto 60px auto;
    box-sizing: border-box;
}

#product .dscr > ul {
    display: flex;
    justify-content: center;
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #D0D0D0;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
}

#product .dscr > ul > li {
    padding: 12px 15px;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    margin: 0 10px;
    cursor: pointer;
    white-space: nowrap;
    color: #6B7375;
}

#product .dscr > ul > li:before {
    width: 100%;
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 4px;
    background: #000;
    transform: scale(0);
    transition: linear 0.25s;
}

#product .dscr > ul > li.active {
    color: #000;
}

#product .dscr > ul > li:hover:before, #product .dscr > ul > li.active:before {
    transform: scale(1);
}

#product .dscr .tabs {
    width: 100%;
    max-width: 500px;
    padding: 28px 20px;
    box-sizing: border-box;
}

#product .dscr .tabs .tab {
    display: none;
    overflow: auto;
}

#product .dscr .tabs .tab.active {
    display: block !important;
}

#product .glbbxs {
    margin-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
    #product .prdmn .thmbc {
        flex-grow: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }
}
@media only screen and (max-width: 960px) {
   #product .prdmn .inf,#product .prdmn .thmb{ flex: 0 0 calc(50% - 25px); width: calc(50% - 25px);}
}

@media only screen and (max-width: 796px) {
    #product .prdmn{ display: block; }
    #product .prdmn .inf,#product .prdmn .thmb{ width: 100%;}
}

@media only screen and (max-width: 580px) {

}
@media only screen and (max-width: 480px) {

}
@media only screen and (max-width: 420px) {

}
