#product-page {
    position: relative;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    overflow-x: hidden;
}

#product-page h2 {
    font-size: 26px;
}

#product-page h3 {
    font-size: 20px;
}

#product-page .heading {
    background-color: #96C21F;
    text-align: center;
    padding: 20px 0;
}

#product-page .heading h1 {
    font-weight: bold;
    font-size: 32px;
    color: white;
    padding: 10px;
}

#product-page .heading h3 {
    font-size: 18px;
    color: white;
}

#product-page .filters {
    display: flex;
    flex-direction: column;
    position: relative;
}

#product-page .filters .notification {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    color: #ff1717;
    font-size: 16px;
    background-color: #f7f7f7;
    padding: .5rem 3rem;
    border-radius: 25px;
}

#product-page .filters > div{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#product-page .filters h2 {
    margin: 5rem auto;
}

#product-page .filters .submit {
    margin-top: 2rem;
    padding-bottom: 5rem;
}

#product-page .filters .submit button {
    background-color: #96C21F;
    padding: 1rem 4rem;
    border-radius: 5px;
    color: white;
}

#product-page .filters .submit .product-loader {
    display: none;
}

#product-page .filters .submit button:hover {
    opacity: .8;
    transition: .3s all;
}

#product-page .filters .filters-container {
    margin-bottom: 2rem;
}

#product-page .filters .filters-container .d-flex {
    gap: 2rem;
}
#product-page .filters .filters-container > div > div{
    width: 300px;
}

#product-page .filters .filters-container > div > div .vscomp-toggle-button {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 2rem;
}

#product-page .filters .filters-container .vscomp-toggle-button.required {
    border-color: #ff1717;
}

#product-page a,#product-page a:hover {
    color: inherit;
    text-decoration: inherit;
}

#product-page .products-list {
    margin-top: 2rem;
}

#product-page .products-list .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;  
}

#product-page .products-list .container a {
    border: 1px solid black;
    padding: 1rem 2rem;
    transition: .3s all;
    min-height: 100px;
    display: flex;
}

#product-page .products-list .container a:hover {
    border-color: #96C21F;
    transition: .3s all;
    border-radius: 7px;
    background-color: #fcfcfc;
}

#product-page .products-list .container a .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

#product-page .products-list .container a .inner .info {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    line-height: 16px;
}

#product-page .products-list .container a .inner .info .carrier {
    font-weight: bold;
}

#product-page .single-product .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    font-size: 16px;
}

#product-page .single-product .container .info {
    width: 100%;
    font-size: 18px;
    display: flex;
    flex-direction: column;
}

#product-page .single-product .container .info span a {
    color: #96C21F;
    font-weight: bold;
}

#product-page .additional-info {
    align-self: flex-start;
    width: 100%;
}

#product-page .additional-info ul {
    margin: 0;
}

#product-page .additional-info ul li {
    list-style: none;
}

#product-page .additional-info ul li:before {
    content: "\2022";
    color: #96C21F;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: 1em;
}

#product-page .single-product .table-wrapper h3 {
    margin-bottom: 3rem;
    text-transform: uppercase;
}

#product-page .single-product .table-wrapper, 
#product-page .single-product .additional-services {
    width: 100%;
}

#product-page .single-product .table-wrapper .table {
    border: 1px solid #e1e1e1;
    border-radius: 5px;
}

#product-page .single-product .table-wrapper .table .product-row {
    display: flex;
    flex-wrap: nowrap;
    padding: .5rem 2rem;
}

#product-page .single-product .table-wrapper .table .product-row:nth-child(1),
#product-page .single-product .table-wrapper.addons-list .table .product-row {
    border-bottom: 1px solid #e1e1e1;
}

#product-page .single-product .table-wrapper.addons-list .table .product-row:last-child {
    border: none;
}

#product-page .single-product .table-wrapper.addons-list .table .product-row.row-center {
    justify-content: center;
    font-weight: bold;
    text-transform: uppercase;
}

#product-page .single-product .table-wrapper .table .product-row .product-col {
    flex: 0 0 50%;
    text-align: right;
}

#product-page .single-product .table-wrapper .table .product-row .product-col.bold {
    font-weight: bold;
}

#product-page .error {
    margin-top: 6rem;
}

#product-page .error .container {
    border: 1px solid black;
    border-radius: 10px;
    padding: 2rem;
    background-color: #fcfcfc;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

#product-page .custom-page {
    margin-top: 5rem;
}

#product-page .card-body .card-body-desc p {
    color: #777;
    font-size: 14px;
}

#product-page .blog-posts .card-body .card-body-desc {
    height: 100%;
}

#product-page .blog-posts .card-body a:hover {
    text-decoration: none;
    background-color: #81a71a;
    transition: all .3s;
}

#product-page .blog-posts .card-body > a {
    font-size: 13px;
    transition: all .3s;
    color: white;
    padding: 7px 10px;
    width: max-content;
    margin-top: 15px;
    background-color: #96C21F;
}

#product-page .single-product .table {
    width: 100%;
}

#product-page .blog-posts .card-body hr {
    border: none;
    border-top: 1px solid #adadad;
}

#product-page .blog-posts .card-body {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    padding: 20px 20px 0 20px;
    flex: 1 1 auto;
}

#product-page .blog-posts .card-body .date-container{
    margin-top: auto;
    color: #adadad;
    font-size: 11px;
    margin-bottom: 10px;
}

#product-page .blog-posts .card {
    flex: 0 0 33%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.125);
}

#product-page .blog-posts .card .posts-photo-container{
    padding-top: 60%;
    background-size: cover;
}


#product-page .blog-posts #posts-wrapper {
    display: flex;
    gap: 2rem;
}

#product-page .blog-posts h2 {
    text-align: center;
}

#product-page .blog-posts {
    margin: 5rem auto;
}

#product-page .comments {
    margin-top: 3rem;
}

#product-page .comments .comment {
    background-color: #fafafa;
    border-radius: 5px;
    padding: 15px 25px;
    display: grid;
    border: 1px rgba(0,0,0,0.1) solid;
    margin-bottom: 1rem;
    transition: .3s all;
}

#product-page .comments .comment.comments {
    text-align: center;
}

#product-page .comments .comment:hover {
    border-color: #96c21f;
    text-decoration: none;
    box-shadow: 0 0 3.2rem rgba(0,0,0,.03);
    transition: .3s all;
}

#product-page .comments .comment .__date {
    color: #afafaf;
    font-size: 12px;
}

#product-page .comments .comment .__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#product-page .comments .comment .__bottom .star-ratings {
    font-size: 20px;
}

#product-page .comments .comment .__reply {
    margin: 5px 0;
}

#product-page .comments .comment .__bottom .sign {
    margin-left: auto;
    color: #96C21F;
}

#product-page .comments-wrapper {
    max-width: 600px;
    margin: auto;
}

#product-page .comments-wrapper form {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 2rem;
}

#product-page .comments-wrapper form input,
#product-page .comments-wrapper form textarea {
    border: 1px rgba(0,0,0,0.1) solid;
    border-radius: 5px;
    width: 100%;
    padding: 10px 30px;
}

#product-page .comments-wrapper form textarea {
    padding: 20px 30px;
}

#product-page .comments-wrapper form textarea {
    height: 100px;
    resize: none;
}

#product-page .comments-wrapper form button{
    background-color: #96c21f;
    border-radius: 3px;
    color: white;
    padding: 10px 30px;
    max-width: 200px;
    margin-left: auto;
    transition: .3s all;
}

#product-page .comments-wrapper form button:hover {
    opacity: .8;
    transition: .3s all;
}

#product-page #pagination-container {
    display: flex;
    justify-content: center;
}

#product-page #pagination-container ul {
    display: flex;
    align-items: center;
    gap: .5rem;
}

#product-page .star-ratings {
    unicode-bidi: bidi-override;
    color: #ccc;
    font-size: 32px;
    position: relative;
    margin: 0;
    padding: 0;
}

#product-page .star-ratings .rating {
    text-align: center;
    font-size: 16px;
    margin-top: -1rem;
}

#product-page .rating-title {
    font-weight: bold;
    margin-bottom: -3rem;
}

#product-page .star-ratings .fill-ratings {
    color: #ffd016;
    padding: 0;
    position: absolute;
    z-index: 1;
    display: block;
    top: 0;
    left: 0;
    overflow: hidden;
}

#product-page .star-ratings .fill-ratings span {
    display: inline-block;
}

#product-page .star-ratings .fill-ratings .empty-ratings {
    padding: 0;
    display: block;
    z-index: 0;
}

#product-page .rating-title {
    font-weight: bold;
    margin-bottom: -3rem;
}

#product-page .product-review {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#product-page .product-review .label {
    padding-left: .5rem;
}

#product-page .product-review .label .muted {
    opacity: .15;
    font-size: 14px;
}

#product-page .blog-posts h2 {
    margin-bottom: 2rem;
}

@media screen and (max-width: 991px) {
    #product-page .products-list .container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 767px) {
    #product-page h2 {
        font-size: 24px;
    }

    #product-page h3 {
        font-size: 16px;
    }

    #product-page .filters .container > div {
        flex-direction: column;
    }

    #product-page .heading h2,
    #product-page .filters h2{
        text-align: center;
    }
    
    #product-page .products-list .container {
        grid-template-columns: repeat(2, 1fr);
    }

    #product-page .blog-posts #posts-wrapper {
        flex-direction: column;
    }

    #product-page .single-product .container .info span {
        font-size: 16px;
    }

    #product-page .single-product .container .table-wrapper h3 {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 575px) {
    #product-page .products-list .container {
        grid-template-columns: repeat(1, 1fr);
    }
}