.product {
    background-color: var(--background-color);
    position: relative;
    z-index: 10;
}
.product_content {
    padding-right: 5%;
    min-height: 100vh;
}
.product_content .product_image {
    margin-bottom: 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.product_content .product_image img {
    background-color: #eee;
    object-fit: cover;
    max-height: 500px;
    min-height: 200px;
    display: block;
    width: 100%;
}
.product_content .product_image h2 {
    background: linear-gradient(0deg, var(--secondary-color), transparent);
    padding: 60px 15px 20px 15px;
    text-align: center;
    position: absolute;
    font-size: 1.8rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    width: 100%;
    bottom: -250px;
    right: 0;
    left: 0;

    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    transition-delay: 0.1s;
}
.product_content .product_image:hover h2 {
    bottom: 0;
}

.product_content .content_blocks {
    position: relative;
}
.product_content .content_blocks .text_editor {
    padding: 30px 0;
}
.product_content .content_blocks .text_editor p {

}
.product_content .content_blocks .text_list {
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    padding: 30px 0;
}
.product_content .content_blocks .text_list h2 {
    margin-bottom: 25px;
    font-size: 2rem;
}
.product_content .content_blocks .text_list ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.product_content .content_blocks .text_list ul li {
    margin-bottom: 16px;
    font-size: 1.1rem;
    display: block;
}
.product_content .content_blocks .text_list ul li:last-child {
    margin-bottom: 5px;
}
.product_content .content_blocks .text_list ul li:before {
    content: '';
    background: url("../images/svg/check-2.svg") no-repeat center center;
    background-size: contain;
    display: inline-block;
    margin-bottom: -7px;
    margin-right: 8px;
    opacity: 0.8;
    height: 26px;
    width: 26px;
    filter: brightness(0);
    -webkit-filter: brightness(0);
}
.product_content .content_blocks .faq {
    padding: 35px 0;
}
.product_content .content_blocks .faq h2 {

}
.product_content .content_blocks .faq p {

}
.product_content .content_blocks .faq .accordion {

}
.product_content .content_blocks .faq .accordion .accordion-item {
    background-color: var(--background-color);
    border: none;
    border-bottom: 1px solid #999;
}
.product_content .content_blocks .faq .accordion .accordion-item:last-child {
    border-bottom: 1px solid transparent;
}
.product_content .content_blocks .faq .accordion .accordion-item .accordion-header {
    font-size: 1.25rem;
}
.product_content .content_blocks .faq .accordion .accordion-item .accordion-header .accordion-button {
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 1.2rem;
    box-shadow: none;
    padding: 22px 12px;
}
.product_content .content_blocks .faq .accordion .accordion-item .accordion-header .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
    outline: none;
}
.product_content .content_blocks .faq .accordion .accordion-item .accordion-header .accordion-button:after {
    filter: brightness(0);
    -webkit-filter: brightness(0);
}
.product_content .content_blocks .faq .accordion .accordion-item .accordion-header .accordion-button:before {
    content: '';
    background: url("../images/svg/question.svg") no-repeat center center;
    background-size: contain;
    display: inline-block;
    margin-right: 10px;
    opacity: 0.8;
    height: 40px;
    width: 40px;
    filter: brightness(0);
    -webkit-filter: brightness(0);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.product_content .content_blocks .faq .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed):before {
    filter: brightness(1);
    -webkit-filter: brightness(1);
}
.product_content .content_blocks .faq .accordion .accordion-item .accordion-header .accordion-button:hover:before {
    filter: brightness(1);
    -webkit-filter: brightness(1);
}
.product_content .content_blocks .faq .accordion .accordion-item .accordion-collapse {
    padding: 0 12px 30px 12px;
}
.product_content .content_blocks .faq .accordion .accordion-item .accordion-collapse .accordion-body {
    background-color: var(--background-color);
    color: var(--secondary-text-color);
    font-size: 1rem;
}
.product_content .content_blocks .faq .accordion .accordion-item .accordion-collapse .accordion-body p:last-child {
    margin-bottom: 0;
}

.product_content .content_blocks .table {
    padding: 35px 0;
    width: 100%;
    margin: 0;
}
.product_content .content_blocks .table table {
    border: 1px solid var(--secondary-color);
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.product_content .content_blocks .table table thead {
    background-color: var(--secondary-color);
    color: #fff;
}
.product_content .content_blocks .table table thead tr {
    padding: 0.8rem;
    border: none;
    width: 100%;
    display: flex;
}
.product_content .content_blocks .table table thead tr th {
    border-right: 1px solid #fff;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    width: 100%;
}
.product_content .content_blocks .table table thead tr th:last-child {
    border-right: 1px solid transparent;
}
.product_content .content_blocks .table table tbody {
    background-color: var(--background-color);
    color: var(--secondary-text-color);
}
.product_content .content_blocks .table table tbody tr {
    padding: 0.8rem;
    border: none;
    width: 100%;
    display: flex;
}
.product_content .content_blocks .table table tbody tr:nth-child(2n) {
    background-color: #1b5c7a1f;
}
.product_content .content_blocks .table table tbody tr td {
    border-right: 1px solid #999;
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    width: 100%;
}
.product_content .content_blocks .table table tbody tr td:last-child {
    border-right: 1px solid transparent;
}


.product_content .content_blocks .video {
    padding: 35px 0;
    width: 100%;
}
.product_content .content_blocks .video .video_box {
    background-color: #ccccccba;
    position: relative;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    height: 0;
}
.product_content .content_blocks .video .video_box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}





.product_sidebar {

}
.product_sidebar .sticky_sidebar {
    margin-bottom: 35px;
    position: sticky;
    top: 25px;
}
.product_sidebar .sticky_sidebar .product_sidebar_cat {
    background-color: var(--background-color);
    border: 1px solid #999;
    margin-bottom: 25px;
    border-radius: 18px;
    display: block;
    padding: 15px;
}
.product_sidebar .sticky_sidebar .product_sidebar_cat h3 {
    margin-bottom: 25px;
    font-size: 1.7rem;
    display: block;
}
.product_sidebar .sticky_sidebar .product_sidebar_cat ul {
    padding: 0;
    margin: 0;
}
.product_sidebar .sticky_sidebar .product_sidebar_cat ul li {
    border-bottom: 1px solid #999;
    display: block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.product_sidebar .sticky_sidebar .product_sidebar_cat ul li:last-child {
    border-bottom: 0 solid transparent;
    display: block;
}
.product_sidebar .sticky_sidebar .product_sidebar_cat ul li:hover {
    border-color: transparent;
}
.product_sidebar .sticky_sidebar .product_sidebar_cat ul li a {
    color: var(--secondary-text-color);
    border-radius: 8px;
    font-size: 1rem;
    display: block;
    padding: 10px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.product_sidebar .sticky_sidebar .product_sidebar_cat ul li a:hover {
    background-color: var(--main-color);
    color: #fff;
}
.product_sidebar .sticky_sidebar .product_sidebar_contact {
    background: url("../images/contact_sidebar.jpg") no-repeat center center #eee;
    background-size: cover;
    border-radius: 18px;
    text-align: center;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    z-index: 10;
    padding: 15px;
    color: #fff;
    gap: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.product_sidebar .sticky_sidebar .product_sidebar_contact:before {
    content: '';
    background-color: var(--secondary-color);
    position: absolute;
    border-radius: 18px;
    opacity: 0.45;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.product_sidebar .sticky_sidebar .product_sidebar_contact h3 {
    font-size: 1.5rem;
    font-weight: 500;
}
.product_sidebar .sticky_sidebar .product_sidebar_contact a {
    position: relative;
    font-size: 1.3rem;
    font-weight: 400;
    padding: 8px 12px;
    overflow: hidden;
    display: block;
    cursor: pointer;
    z-index: 10;
}
.product_sidebar .sticky_sidebar .product_sidebar_contact a:hover {
    color: #fff;
}
.product_sidebar .sticky_sidebar .product_sidebar_contact a:before {
    content: '';
    border: 2px solid #fff;
    border-radius: 12px;
    position: absolute;
    z-index: -1;
    height: 2px;
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.product_sidebar .sticky_sidebar .product_sidebar_contact a:hover:before {
    border: 3px solid #fff;
    height: 100%;
}