/*shop*/
.shop_catalog {
    display: flex;
    max-width: 1319px;
    margin: auto;
    padding-top: 18px;
}

@media(max-width: 1024px) {
    .shop_catalog {
        padding-top: 13px;
        flex-direction: column;
    }
}

.shop_l {
    min-width: 250px;
    padding: 11px 0px 0 18px;
    width: 250px;
}

@media(max-width: 1024px) {
    .shop_l {
        width: 100%;
        padding: 0 5px;
        /* position: sticky; */
        top: 0;
        z-index: 100;
        /* background-color: #142A37; */
    }
}

.shop_l_in {
    position: sticky;
    top: 57px;
}

@media(max-width: 1024px) {
    .shop_l_in {
    position: static;
    }
}

.left_find {
    margin-bottom: 15px;
}

@media(max-width: 768px) {
    .left_find {
        display: none;
    }
}

.left_find_input {
}

.left_find_input input {
    width: 100%;
    box-sizing: border-box;
    display: block;
    background: #eee;
    padding: 13px 14px;
    border: 2px solid #dadada;
    border-radius: 4px;
    background-color: #eaeaea;
    color: #292929;
    font-size: 14px;
    letter-spacing: 0.03em;
    transition: all 0.3s;
}

.left_find_input input:focus {
    border-color: #c4c4c4;
    background-color: #d9d9d9;
}

.shop_r {
    margin: 0 auto;
    padding: 0 0 0 18px;
    flex-grow: 1;
    width: 80%;
}

@media(max-width: 1024px) {
    .shop_r {
        width: 100%;
        margin: auto;
        max-width: unset;
        padding: 3px 0px 0;
    }
}

.product_page_child_products {
    margin-bottom: 10px;
}

.product_page_child_product_item {
    display: flex;
    width: 100%;
    padding: 17px 11px;
    border: 2px solid var(--variation-border-color);
    background-color: var(--variation-bg-color);
    cursor: pointer;
    margin: 0 0 19px 0;
    justify-content: space-between;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
    align-items: center;
}

@media(max-width: 480px) {
    .product_page_child_product_item {
        width: unset;
        padding: 8px 11px;
        border: 1px solid #939393;
        min-height: 60px;
    }
}

.product_page_child_product_item:hover {
    background-color: #13394F;
    border-color: #1D94D9;
}

.product_page_child_product_item.active {
    background-color: var(--variation-bg-color-active);
    border-color: var(--variation-bg-color-active);
}

.product_page_child_product_item_title {
    display: flex;
    align-items: center;
}

.product_page_child_product_item_price {
    display: flex;
    align-items: center;
}

@media(max-width: 480px) {
    .product_page_child_product_item_price {
        display: block;
        align-items: center;
        text-align: center;
        min-width: 100px;
    }
}

.product_page_child_product_item_price .webinar_page_price {
    font-size: 21px;
    margin-right: 2px;
}

@media(max-width: 480px) {
    .product_page_child_product_item_price .webinar_page_price {
        font-size: 17px;
        margin-right: 2px;
        margin-bottom: 1px;
    }
}

.product_page_child_product_item_open_desc {
    position: relative;
    width: 24px;
    height: 24px;
    background-color: #08D374;
    left: calc(50% - 12px);
    border-radius: 50%;
    bottom: 10px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: -22px;
}

.product_page_child_product_item_desc {
    padding: 0 6px 30px;
    display: none;
}

.product_page_child_product_item_open_desc:hover {
    transform: scale(1.1);
}

.product_page_child_product_item_open_desc.active {
    transform: scale(1.2) rotate(180deg);
}

.product_page_child_product_item_out {
    display: flex;
    position: relative;
    width: 420px;
    flex-direction: column;
    max-width: 100%;
}

@media(max-width: 768px) {
    .product_page_child_product_item_out {
        width: unset;
    }
}

.product_page_child_status_0 {
    opacity: 0.5;
}

.product_page_listen_button {
    width: 22px;
    height: 22px;
    background-size: 100%;
    position: absolute;
    right: -34px;
    top: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

@media(min-width: 1000px) {
    .product_page_listen_button:hover {
        transform: scale(1.15);
    }
}

@media(max-width: 1100px) {
    .product_page_listen_button {
        width: 22px;
        height: 22px;
        right: unset;
        top: calc(50% - 10px);
        left: 7px;
    }
}

@media(max-width: 1100px) {
    .product_page_child_product_item_title_has_audio {
        padding-left: 24px;
    }
}

.shop_l_items {
    flex-direction: column;
    border-radius: 5px;
    max-height: 100%;
    /* background-color: var(--bg-color-two); */
    top: 30px;
    background-color: #eaeaea;
}

@media(max-width: 1024px) {
    .shop_l_items {
        overflow: auto;
        white-space: nowrap;
        text-align: center;
        padding: 2px 1px 6px;
        background: transparent;
        position: sticky;
        display: flex;
        flex-direction: row;
        top: 0;
    }
}

.shop_l_item {
    color: #000000;
    letter-spacing: 0.05em;
    font-weight: 400;
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 15px 16px 15px 38px;
    transition: all 0.1s linear;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    /* margin-bottom: 6px; */
    cursor: pointer;
    /* max-width: 210px; */
    line-height: 150%;
    /* border-bottom: 1px solid #36322F; */
    border-radius: 4px;
}

.shop_l_item:hover {
    background-color: #d9d9d9;
}

.shop_l_item.current {
    background-color: #d9d9d9;
}

@media(max-width: 1024px) {
    .shop_l_item {
        width: unset;
        padding: 7px 8px 7px 10px;
        background-color: #f9f9f9;
        margin: 3px 6px 0 0;
        border: 2px solid #eeeeee;
        font-size: 11px;
        border-radius: 16px;
        /* order: 2; */
    }

    .shop_l_item.current {
        /* background-color: #e1e1e1; */
        border-color: #f1f1f1;
        /* order: -1; */
    }
}

.shop_l_item_status_0, .shop_l_item_status_new {
    opacity: 0.3;
}

.shop_l_item_link:before {
    content: '';
    width: 6px;
    height: 6px;
    background: #000000;
    position: absolute;
    top: calc(50% - 3px);
    border-radius: 50%;
    left: 15px;
}

.shop_l_item_link_in:before {
    border: 2px solid #fff;
    width: 3px;
    height: 3px;
    background: transparent;
}

@media(max-width: 1024px) {
    .shop_l_item:before {
        display: none;
    }
}

.shop_l_item:last-child {
    /* border: 0; */
}

.shop_l_item.mark:before {
    border-color: #ef7f5f;
    background-color: #ef7f5f;
}

.shop_l_item_parent_arrow {
    width: 10px;
    height: 10px;
    background-size: 100%;
    position: absolute;
    left: 15px;
    transition: all 0.2s;
    transform: rotate(-90deg);
}

.shop_l_item.active .shop_l_item_parent_arrow {
    transform: rotate(0deg);
}

.shop_l_item a {
    color: #fff;
}

.shop_l_childs {
    padding-left: 7%;
    display: none;
}

.shop_l_childs.active {
    display: block;
}

@media(max-width: 768px) {
    .product_cat_overlay {
        display: block;
        position: -webkit-sticky;
        position: sticky;
        right: -1px;
        top: 0;
        flex: 0 0 20px;
        /* background: linear-gradient(270deg,#142A37 0,#142A3700 100%); */
    }
}

.left_review_link {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-align: center;
    display: block;
    color: #fff;
    margin: auto;
    /* width: fit-content; */
    text-transform: uppercase;
    background-color: var(--bg-color-cat-active);
    padding: 12px 15px;
    border-radius: 4px;
    font-weight: 500;
    margin: 10px auto;
    letter-spacing: 0.15em;
}

@media(max-width: 1024px) {
    .left_review_link {
        display: none;
    }
}

.shop_l_add_cat {
    padding: 12px 0;
    text-align: center;
}

.shop_l_add_document {
    text-align: center;
    padding: 12px 0;
}

.shop_edit_cat {
    display: flex;
    justify-content: center;
    padding: 12px 0;
}

.shop_first_sale_info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop_first_sale_info_in {
    background-color: #ba0000;
    padding: 12px 20px;
    border-radius: 5px;
    margin: 12px 7px 5px;
    max-width: 700px;
    text-align: center;
    line-height: 150%;
    position: relative;
}

@media(max-width: 768px) {
    .shop_first_sale_info_in {
        padding: 12px 9px;
        margin: 3px 11px 2px;
    }
}

.shop_first_sale_info_text {
    margin-bottom: 12px;
    font-size: 16px;
}

.shop_first_sale_info .webinar_countdown_title {
    display: none;
}

.shop_first_sale_info .webinar_countdown_items {
    justify-content: center;
}

.shop_product .shop_first_sale_info {
    max-width: 420px;
}

.shop_product .shop_first_sale_info_in {
    margin: 0 0 15px 0;
    width: 100%;
}

.shop_product_items {
    display: flex;
    flex-wrap: wrap;
}

@media(max-width: 1100px) {
    .shop_product_items {
        justify-content: center;
    }
}

.shop_product_item {
    padding: 12px;
    box-sizing: border-box;
    position: relative;
}

@media(max-width: 1100px) {
    .shop_product_item {
        width: unset;
    }
}

@media(max-width: 480px) {
    .shop_product_item {
        width: unset;
    }
}

.shop_product_item_status_0, .shop_product_item_status_new {
    opacity: 0.5;
}

.shop_product_item_img {
    /* max-height: 220px; */
    position: relative;
    background-color: #0C3147;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 2px;
    width: 320px;
    height: 320px;
}

@media(max-width: 768px) {
    .shop_product_item_img {
        height: unset;
    }
}

.shop_product_item_img img {
    max-width: 100%;
    display: block;
    transition: 0.2s;
    min-height: 250px;
}

@media(max-width: 550px) {
    .shop_product_item_img img {
        /* max-width: 320px; */
    }
}

@media(max-width: 340px) {
    .shop_product_item_img {
        max-width: 300px;
        width: 300px;
    }
}

.shop_product_item_in:hover .shop_product_item_img img {
    transform: scale(1.06);
}

.shop_product_item_in {
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color-two);
    min-height: 72px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.shop_product_item_plus {
    width: 320px;
    align-items: center;
    justify-content: center;
}

@media(max-width: 550px) {
    .shop_product_item_plus {
        width: 300px;
    }
}

.shop_product_item_title {
    font-size: 17px;
    text-align: center;
    color: #d1d1d1;
    margin: auto;
    margin-bottom: 9px;
    transition: 0.2s;
    letter-spacing: 0.05em;
    padding: 0 10px;
    max-width: 285px;
}

.shop_product_item_in:hover .shop_product_item_title {
    color: #ffffff;
}

.shop_product_item_category {
    color: #646464;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 7px;
    letter-spacing: 0.1em;
}

.shop_product_item_price {
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 16px;
    align-items: center;
    letter-spacing: 0.06em;
}

.shop_product_item_price b {
    font-weight: 500;
}

.shop_product_item_price_current {
}

.shop_product_item_price_old {
    color: #c4c4c4;
    font-size: 18px;
    margin-left: 12px;
    position: relative;
    font-weight: 400;
    margin-right: 5px;
}

.shop_product_item_price_old b {
    font-weight: 400;
}

.shop_product_item_price_old:before {
    content: '';
    border-bottom: 2px solid #c41313;
    position: absolute;
    content: "";
    width: 114%;
    height: 48%;
    /* transform: rotate(-8deg); */
    left: -4px;
}

.shop_first_sale_info .shop_product_item_price_old:before {
    border-color: #091c27;
}

.shop_first_price_circle {
    width: 14px;
    height: 14px;
    background-color: #00A658;
    border-radius: 50%;
    margin-left: 6px;
}

.shop_product_item_add_cart {
    position: absolute;
    bottom: 0;
    padding: 0 12px;
    background-color: #091c2796;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0;
    color: #fff;
    right: calc(50% - 73px);
    /* width: 80%; */
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    display: flex;
    height: 36px;
    width: 146px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.shop_product_item_in:hover .shop_product_item_add_cart {
    opacity: 1;
}

@media(max-width: 768px) {
    .shop_product_item_add_cart {
        opacity: 1;
    }
}

.shop_category_empty {
    text-align: center;
    padding: 110px 25px;
    letter-spacing: 0.06em;
    width: 100%;
    line-height: 150%;
}

.cart_button {
    z-index: 50;
    position: fixed;
    right: 45px;
    top: 123px;
    width: 68px;
    height: 68px;
    background-color: var(--cart-button-color);
    border-radius: 50%;
    box-shadow: var(--cart-botton-shadow);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 26px;
    cursor: pointer;
    transition: all 0.3s;
}

@media(max-width: 768px) {
    .cart_button {
        bottom: 72px;
        top: unset;
        right: 18px;
        width: 62px;
        height: 62px;
    }
}

.cart_button:hover {
    background-color: var(--bg-color-two);
    box-shadow: 0px 0px 9px #ffffff91;
    transform: scale(1.08);
}

.cart_button_in {
    width: 100%;
    height: 100%;
    position: relative;
}

.cart_button_count {
    position: absolute;
    right: 11px;
    top: 12px;
    border-radius: 50%;
    background-color: #B40001;
    color: #fff;
    width: 18px;
    height: 18px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    box-sizing: border-box;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-weight: bold; */
}

.shop_video_button {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    opacity: 0.5;
    transition: all 0.2s;
}

.shop_item_best {
    right: 0;
    left: unset;
    opacity: 0.9;
}

.shop_product_item_in:hover .shop_video_button {
    opacity: 1;
    transform: scale(1.2);
}

.webinar_page_order .shop_product_item_price_old {
    margin: 0 12px;
    margin-left: 0;
}

@media(max-width: 768px) {
    .webinar_page_order .shop_product_item_price_old {
        margin: 0 7px;
    }
}

.shop_product_video_button {
    /* position: absolute; */
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    /* opacity: 0.5; */
    transition: all 0.2s;
    margin-right: 12px;
    background-repeat: no-repeat;
    cursor: pointer;
}

/*shop line*/
.shop_product_items_line {
    display: flex;
    flex-direction: column;
    padding: 0 8px;
}

.shop_line_item {
    display: flex;
    margin: 0;
    align-items: center;
    border-top: 1px solid #36322F;
    padding: 13px 12px;
    color: #fff;
    transition: all 0.2s;
    cursor: pointer;
    flex-wrap: wrap;
}

@media(max-width: 768px) {
    .shop_line_item {
        flex-wrap: wrap;
        padding: 9px 8px;
    }
}

.shop_line_item:first-child {
    border: 0;
}

.shop_line_item_status_0 {
    opacity: 0.5;
}

.shop_line_item_out {
    transition: all 0.2s;
    position: relative;
}

.shop_line_item_out:hover, .shop_line_item_out.active {
    /* background-color: #091C27; */
}

.shop_line_item_td {
    flex-grow: 1;
    text-align: center;
    display: flex;
    padding: 0 3px;
    width: 15%;
    align-items: center;
}

.shop_line_item_td_img {
    width: 37px;
}

.shop_line_item_td_name {
    flex-grow: 2;
    width: 30%;
    font-size: 17px;
}

.shop_line_item_td_size {
    text-align: center;
    width: 15%;
}

@media(max-width: 768px) {
    .shop_line_item_td_size {
        display: none;
    }
}

@media(max-width: 768px) {
    .shop_line_item_td_price {
        display: none;
    }
}

.shop_line_item_td_cart {
    flex-grow: 2;
    text-align: right;
    width: 15%;
    justify-content: center;
}

.shop_line_item_ext {
    background-size: 100%;
    background-repeat: no-repeat;
    margin-right: 12px;
    border-radius: 3px;
    min-width: 50px;
    min-height: 50px;
    transition: all 0.2s;
}

.shop_line_item_child .shop_line_item_ext {
    min-width: 44px;
    min-height: 44px;
    margin-right: 10px;
}

@media(max-width: 768px) {
    .shop_line_item_td {
        width: unset;
        text-align: left;
        font-size: 16px;
        line-height: 150%;
    }
}

.shop_product_find {
    width: 100%;
    padding: 12px 8px;
    box-sizing: border-box;
}

.shop_product_find input {
    width: 100%;
    box-sizing: border-box;
    display: block;
    background: #eee;
    padding: 16px 14px;
    border: 2px solid #0e3145;
    border-radius: 4px;
    background-color: #0e3145;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.03em;
    transition: all 0.3s;
}

.shop_product_find input:focus {
    border-color: #224a61;
}

.shop_line_item_open {
    display: none;
}

.shop_line_item_text {
    padding: 9px 12px;
    width: 38%;
}

@media(max-width: 1024px) {
    .shop_line_item_text {
        width: 100%;
    }
}

.shop_line_item_text .content_simlple_text {
    max-width: 600px;
}

.shop_line_item_open_in {
    display: flex;
    flex-wrap: wrap;
}

@media(max-width: 768px) {
    .shop_line_item_open_in {
    }
}

.shop_line_item_childs {
    width: 100%;
    /* padding: 12px; */
    padding: 0 16px;
}

@media(max-width: 1024px) {
    .shop_line_item_childs {
        width: 100%;
    }
}

@media(max-width: 768px) {
    .shop_line_item_childs {
        padding: 5px
    }
}

.shop_line_item_child_out {
    border-bottom: 1px solid #1E475F;
    /*margin-bottom: -1px;*/
}

.shop_line_item_out:last-child .shop_line_item_child_out {
    border: 0;
}

.shop_line_item_child {
    display: flex;
    padding: 18px 0px;
    margin-bottom: -1px;
    /* border-radius: 3px; */
    cursor: pointer;
    flex-wrap: wrap;
    /* justify-content: center; */
}

@media(max-width: 768px) {
    .shop_line_item_child {
        padding: 14px 0px;
    }
}

.shop_line_item_child>div {
    display: flex;
    align-items: center;
    width: 24%;
}

div.shop_line_item_child_title {
    width: 48%;
    padding-left: 12px;
    padding: 0 9px 0 0px;
    font-size: 15px;
}

@media(max-width: 768px) {
    div.shop_line_item_child_title {
        width: 100%;
        padding-left: 12px;
        padding: 0 27px 0 1px;
        font-size: 14px;
        padding-bottom: 20px;
        justify-content: end;
    }
}

div.shop_line_item_child_price {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17%;
}

@media(max-width: 768px) {
    div.shop_line_item_child_price {
        width: 40%;
    }
}

div.shop_line_item_child_add_to_cart {
    justify-content: flex-start;
    width: 20%;
}

@media(max-width: 768px) {
    div.shop_line_item_child_add_to_cart {
        width: 60%;
        justify-content: flex-end;
        padding-right: 4px;
    }

    .shop_line_item_child_add_to_cart button {
    min-width: 150px;
    }
}

div.shop_line_item_child_rate {
    justify-content: center;
    width: 15%;
}

@media(max-width: 768px) {
    div.shop_line_item_child_rate {
        display: none;
    }
}

.shop_card_review_button {
    display: flex;
    align-items: center;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
}

.shop_card_review_minus {
    color: #ff6767;
}

.shop_card_review_plus {
    color: #0ed578;
}

.shop_card_review_icon {
    /* background: #eee; */
    width: 22px;
    height: 22px;
    margin: 0 10px;
    background-size: 100%;
}

.shop_line_item_child_brif {
    padding: 2px 0px 14px;
    max-width: unset;
    display: none;
}

@media(max-width: 768px) {
    .shop_line_item_child_brif {
        padding: 2px 6px 14px;
    }
}

.doc_card_brif_open {
    width: 14px;
    height: 14px;
    background-color: transparent;
    background-size: 100%;
    background-repeat: no-repeat;
    margin-left: 8px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 14px;
}

@media(max-width: 768px) {
    .doc_card_brif_open {
        position: absolute;
        right: 9px;
    }
}

.shop_line_item_child.active .doc_card_brif_open {
    transform: scale(-1);
}

.shop_line_item_child_brif_in {
    display: flex;
    flex-wrap: wrap;
}

.shop_line_item_child_desc {
    border-right: 1px solid #1E475F;
    width: 50%;
    /* max-height: 200px; */
    position: relative;
}

@media(max-width: 768px) {
    .shop_line_item_child_desc {
        border: 0;
        width: 100%;
    }
}

.shop_line_item_child_desc_in {
    overflow: auto;
    max-height: 300px;
    padding: 16px 10px 25px 2px;
}

@media(max-width: 768px) {
    .shop_line_item_child_desc_in {
        padding: 0 0 24px 0;
    }
}

.shop_line_item_child_review {
    max-height: 300px;
    overflow: auto;
}

.shop_add_review_button_block {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    padding: 12px 12px 5px;
}

.shop_line_item_child_brif_top {
    display: flex;
}

@media(max-width: 768px) {
    .shop_line_item_child_brif_top {
        display: none;
    }
}

.shop_line_item_child_review_title {
    text-align: center;
    padding: 12px 12px;
    background-color: #14374b;
    /* text-transform: uppercase; */
    letter-spacing: 0.05em;
    font-size: 14px;
    /* font-weight: 500; */
    width: 50%;
    border-right: 1px solid #1E475F;
}

.shop_line_item_child_review_title:last-child {
    border: 0;
}

.shop_line_item_child_review_out {
    /* width: 50%; */
    position: relative;
    max-width: 583px;
    display: none;
}

@media(max-width: 768px) {
    .shop_line_item_child_review_out {
        width: 100%;
    }
}

.shop_review_rate_sel {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 12px;
}

.shop_review_rate_label {
    width: 20px;
    height: 20px;
    background-size: 100%;
    padding: 9px 10px;
    cursor: pointer;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.shop_review_rate_label input {
    position: absolute;
    opacity: 0;
}

.shop_review_rate_label span {
    transition: all 0.2s;
    width: 20px;
    height: 20px;
    background-size: 100%;
    display: block;
    background-repeat: no-repeat;
}

.shop_review_rate_label > input[type=radio] + span:before {
    content: '';
    transition: border-color 0.2s;
    border-color: #000;
}

.shop_review_rate_label > input[type=radio]:checked + span:before {
    position: absolute;
    left: 2px;
    top: 2px;
    width: 32px;
    height: 32px;
    border: 2px solid #65b6e5;
    border-radius: 4px;
}

.shop_review_rate_label span.pop_review_rate_0 {
    height: 6px;
    display: flex;
}

.shop_review_rate_label span.pop_review_rate_-1 {
    margin-top: 4px;
}

/*/shop*/
.product_point_count_text {
    margin-bottom: 12px;
    font-size: 12px;
    color: #a4c353;
    /* font-weight: 500; */
    letter-spacing: 0.05em;
}

@media(max-width: 768px) {
    .product_point_count_text {
        text-align: center;
    }
}

.product_point_count_text a {
    color: #d0e599;
    border-bottom: 1px dashed #d0e599;
}

.product_desc_rev_tabs {
    display: flex;
    padding: 6px 0 7px;
}

@media(max-width: 768px) {
    .product_desc_rev_tabs {
        justify-content: center;
    }
}

.product_desc_rev_tab_item {
    cursor: pointer;
    padding: 8px 12px;
    background-color: #ffe100;
    margin-right: 10px;
    opacity: 0.7;
    transition: all 0.2s;
    letter-spacing: 0.13em;
    border-radius: 5px;
    min-width: 157px;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 13px;
}

@media(max-width: 768px) {
    .product_desc_rev_tab_item {
        width: 50%;
        text-align: center;
        margin: 0 4px;
        padding: 10px 14px;
        min-width: unset;
    }
}

.product_desc_rev_tab_item.active {
    opacity: 1;
}
