#product {
    padding: 70px 0;
    background: #F4F5F6;

    .dscr {
        width: 100%;
        max-width: 1280px;
        padding: 0 20px;
        margin: 40px auto 60px auto;
        box-sizing: border-box;
    }

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

    .dscr > ul > li {
        padding: 12px 15px;
        font-weight: 700;
        font-size: 20px;
        font-style: italic;
        position: relative;
        margin: 0 10px;
        cursor: pointer;
        white-space: nowrap;
    }

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

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

    .dscr .tabs {
        width: 100%;
        padding: 28px 0;
    }

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

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

    .breadcrumb {
        width: 100%;
        max-width: 1620px;
        margin: 0 auto 50px auto;
        box-sizing: border-box;
    }

    .row.prod {
        max-width: 1620px;
        box-sizing: border-box;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .imgs {

        .main img {
            max-width: 100%;
        }

    }

    .prod-inf {
        .prod-ttl {
            letter-spacing: 0;
            opacity: 1;
            margin-bottom: 25px;

            h1 {
                font-size: 34px;
                font-weight: 500;
                color: #4A4A4A;
                margin-top: 0;
            }
        }

        .infos {
            padding: 50px;
            background: #FFFFFF;
            box-sizing: border-box;

            .prices span {
                font-size: 30px;
                color: #888888;
                font-weight: 500;
                text-decoration: line-through 2px solid #888888;
                padding-right: 10px;
            }

            .prices strong {
                font-size: 30px;
                color: #000000;
            }

            .small-desc {
                border-bottom: 1px solid #E4E8EA;

                h5 {
                    font-size: 15px;
                    letter-spacing: 0;
                    color: #000000;
                    opacity: 1;
                    font-weight: 500;
                }

                span {
                    font-weight: 300;
                    font-size: 15px;
                    letter-spacing: 0;
                    color: #000000;
                    opacity: 1;
                }

            }


            /*.char {
                border-bottom: 1px solid #E4E8EA;
                margin-bottom: 20px;

                h5 {
                    font-size: 15px;
                    font-weight: 500;
                    letter-spacing: 0;
                    color: #000000;
                    opacity: 1;
                    margin-bottom: 10px;
                }

                .attribute {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    padding-bottom: 10px;

                    h4 {
                        font-size: 14px;
                        font-weight: 300;
                        letter-spacing: 0;
                        color: #888888;
                        opacity: 1;
                        margin: 0;
                    }

                    .attribute-txt {
                        font-size: 15px;
                        letter-spacing: 0;
                        color: #303C41;
                    }
                }

            }*/

            .avail {
                display: flex;
                flex-direction: column;
                gap: 10px;
                margin: 25px 0;

                strong {
                    font-size: 15px;
                    letter-spacing: 0;
                    color: #000000;
                    font-weight: 500;
                    opacity: 1;
                    margin-bottom: 10px;
                }

                span {
                    font-size: 13px;
                    font-weight: 300;
                    letter-spacing: 0.19px;
                    color: #6C6C6C;
                }

                span .green {
                    font-size: 13px;
                    font-weight: 500;
                    letter-spacing: 0.19px;
                    color: #269B26;
                }
            }

            .crt {
                display: flex;

                .qty label {
                    display: none !important
                }

                .qty .input-group {
                    display: grid;
                    grid-template-columns: 60px 60px;
                    align-items: center;
                }

                .qty .input-group input {
                    max-width: 60px;
                    width: fit-content;
                    padding: 22px 0;
                    text-align: center;
                    box-sizing: border-box;
                    color: #707070;
                    font-size: 14px;
                    line-height: 19px;
                    border: 1px solid #E4E8EA;
                    border-radius: 4px 0 0 4px;
                    border-right: none;
                }

                .qty .input-group input::-webkit-outer-spin-button,
                .qty .input-group input::-webkit-inner-spin-button {
                    -webkit-appearance: none;
                    margin: 0;
                }

                .qty .input-group input[type=number] {
                    -moz-appearance: textfield;
                }

                .qty .input-group .qty_arrows {
                    width: 60px;
                    display: flex;
                    border-radius: 0 4px 4px 0;
                    gap: 7px;
                    flex-direction: column-reverse;
                    border: 1px solid #E4E8EA;
                    margin-right: 5px;
                }

                .qty_arrows .plus,
                .qty_arrows .minus {
                    cursor: pointer;
                    background: #ffffff;
                    width: 100%;
                    position: relative;
                    height: 28px;
                }

                .qty_arrows .plus::after {
                    content: '';
                    width: 7px;
                    height: 7px;
                    background: transparent;
                    border-top: 1px solid #707070;
                    border-right: 1px solid #707070;
                    position: absolute;
                    left: 50%;
                    top: 60%;
                    transform: translate(-50%, -50%) rotate(-45deg);
                }

                .qty_arrows .minus::after {
                    content: '';
                    width: 7px;
                    height: 7px;
                    background: transparent;
                    border-top: 1px solid #707070;
                    border-right: 1px solid #707070;
                    position: absolute;
                    left: 50%;
                    top: 40%;
                    transform: translate(-50%, -50%) rotate(135deg);
                }

                .prod_agora {
                    display: flex;
                    gap: 10px;
                }

                .btn-cart {
                    background: #303C41;
                    border: 1px solid #303C41;
                    border-radius: 4px;
                    padding: 25px 120px;
                    margin-left: 20px;
                    color: #FFFFFF;
                }

                .wishlist {
                    padding: 15px 20px;
                    background: none;
                    border: 1px solid #303C41;
                    border-radius: 4px;
                }

            }

            .social {
                margin-top: 20px;

                p {
                    font-size: 13px;
                    color: #888888;
                }

                .share {
                    display: flex;
                    gap: 10px;

                    span {
                        font-size: 13px;
                        color: #888888;
                    }
                }
            }

            .rating {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 8px 0;
                margin-bottom: 25px;

                .strs img {
                    max-height: 16px;
                    padding: 0;
                    margin: 0;
                }

                .txt {
                    color: #aaa;
                    font-size: 13px;
                    line-height: 16px;
                    cursor: pointer;
                }
            }
        }
    }
}

.ftr.see-more {
    background: #E4E8EA;
    padding-right: 20px;
    padding-left: 20px;
}

.ftr.see-more .title:after {
    background: #ADB1B2;
}

.ftr.see-more h3 {
    background: #E4E8EA;
}

#review-form {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}

#review-form #review {
    flex-grow: 1;
    padding: 50px 50px 50px 0;
    box-sizing: border-box;
}

#review-form .review-form {
    width: 380px;
    padding: 50px 30px 30px 30px;
    box-sizing: border-box;
    background: #fff;
}

#review-form .review-form .form-group {
    width: 100%;
    flex-flow: column;
    display: flex;
    margin-bottom: 12px;
}

#review-form .review-form .form-group label {
    font-size: 15px;
    padding: 0 0 5px 0;
}

#review-form .help-block {
    padding-top: 5px;
    font-size: 13px;
}

#review-form .help-block span {
    margin: 0;
    padding: 6px 0 0 0;
    line-height: inherit
}

#review-form .col-sm-12 {
    display: flex;
    flex-direction: column;
}

#review-form input,
#review-form textarea {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #BABABA;
}

#review-form .alert-danger {
    padding-top: 35px;
    font-size: 15px;
    color: #E23734;
}

#review-form .alert-success {
    color: #4caf50;
}

#review-form .cnt {
    font-size: 15px;
}

#review-form p {
    font-size: 15px;
}

#review-form p a {
    color: #003e81;
}

#review .rvwln .rvwh {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #E4E5EA;
    margin-bottom: 12px;
}

#review .rvwln .rvwh .inf {
    display: flex;
    flex-flow: column;
}

#review .rvwln .rvwh .inf span {
    font-size: 12px;
    line-height: 1em;
    display: inline-block;
    color: #aaa;
    margin: 0;
    padding: 0 0 4px 0;
}

#review .rvwln .rvwh .strs img {
    max-height: 16px;
}

@media only screen and (max-width: 1150px) {
    #product .row.prod {
        gap: 30px;
    }
}

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

    #product .prod-inf .prod-ttl {
        letter-spacing: 0;
        opacity: 1;
        margin-bottom: 25px;
    }

    #product .prod-inf .infos .crt .btn-cart {
        padding: 25px 60px;
    }
}

@media only screen and (max-width: 840px) {
    #product .row.prod {
        display: flex;
        flex-direction: column;
    }

    #product .imgs {
        text-align: center;
    }

    #product .prod-inf .infos .crt .btn-cart {
        padding: 25px 120px;
    }

    #product .prod-inf .prod-ttl {
        text-align: center;
        padding-top: 15px;
        border-top: 1px solid #E4E8EA;
    }


}

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


}

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

    #product .prod-inf .prod-ttl h1 {
        font-size: 30px;
    }

    #product .prod-inf .infos .prices strong {
        font-size: 28px;
    }

}

@media only screen and (max-width: 480px) {
    #product .prod-inf .infos {
        padding: 30px;
    }

    #product .prod-inf .infos .crt .qty .input-group input {
        padding: 12px 0;
    }

    #product .prod-inf .infos .crt .qty .input-group .qty_arrows {
        gap: 1px;
    }

    #product .prod-inf .infos .crt .qty_arrows .plus,
    #product .prod-inf .infos .crt .qty_arrows .minus {
        height: 21px;
    }

    #product .prod-inf .infos .crt .btn-cart {
        padding: 12px 60px;
    }

    #product .prod-inf .infos .crt .wishlist {
        padding: 8px 15px;
    }

    #product .prod-inf .infos .prices strong {
        font-size: 28px;
    }

    #product .dscr .tabs {
        padding: 10px 0;
    }

    #product .dscr > ul > li {
        font-size: 18px;
    }

    #product .dscr .tabs p {
        font-size: 13px;
    }

}

@media only screen and (max-width: 400px) {
    #product .prod-inf .infos .crt {
        flex-direction: column;
    }

    #product .prod-inf .infos .crt .prod_agora {
        margin-top: 10px;
    }

    #product .prod-inf .infos .crt .btn-cart {
        margin: 0;
    }

    #product .prod-inf .infos .prices strong {
        font-size: 25px;
    }

}