/*@import url("https://fonts.googleapis.com/css2?family=Piazzolla:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap");*/

#tocWrapper .postTableOfContents.sticky-active {
    position: fixed;
    top: 90px;
/*    z-index: 100;*/
    margin-top: 10px;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.15),0 8px 16px 0 rgba(0,0,0,.05);
    max-height: calc(75% - 40px);
    overflow: auto
}

#tocWrapper .postTableOfContents.sticky-active:not(:hover) h2 {
    margin-top: .25rem;
    margin-bottom: .25rem
}

#tocWrapper .postTableOfContents.sticky-active:not(:hover) .inner-wrap {
    height: 0!important
}

/* -=- fonts -=- */
.fwb {
    font-weight: bold;
}

.fwh {
    font-weight: 800;
}

.fwm {
    font-weight: 500;
}

.fwn {
    font-weight: normal;
}

/***** custom margins ******/
.mt-60 {
    margin-top: 60px;
}

.mt-130 {
    margin-top: 130px;
}

.mt-200 {
    margin-top: 200px;
}

/* -=- letter spacing -=- */
.lett1 {
    letter-spacing: 1px;
}

body {
    font-size: 18px;
    line-height: 30px;
    color: #041300;
    font-family: "Piazzolla", serif;
    font-weight: normal;
}

/*-=- headings -=-*/
h1 {
    font-size: 66px;
    line-height: 77px;
    font-weight: 800;
}

h2 {
    font-size: 48px;
    font-weight: 800;
}

h3 {
    font-size: 40px;
    font-weight: 800;
}

h4 {
    font-size: 30px;
    font-weight: 800;
}

h5 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 800;
}

h6 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 800;
}

.h1 {
    font-size: 66px;
    line-height: 77px;
}

.h2 {
    font-size: 48px;
}

.h3 {
    font-size: 40px;
}

.h4 {
    font-size: 30px;
}

.h5 {
    font-size: 25px;
    line-height: 35px;
}

.h6 {
    font-size: 22px;
    line-height: 32px;
}

/*-=-  text colors -=- */
.body__txt {
    color: #041300;
}

.light__green__txt {
    color: #08a36d;
}

.dark__green__txt {
    color: #193311;
}

.dark__txt {
    color: #000906;
}

.white__txt {
    color: #fff;
}

/***** bg colors *****/
.light__green__bg {
    background-color: #08a36d;
}

.black__bg {
    background-color: #333;
}

.white__bg {
    background-color: #fff;
}

.footer__bg {
    background-color: #edf8ef;
}

/***** a href *****/
a {
    color: #08a36d;
    transition: 0.6s ease-in-out;
    display: inline-block;
    text-decoration: none;
}

a:hover {
    color: #08a36d;
}

/***** section *****/
section.section {
    margin: 70px 0;
}

/***** general button *****/
.gen__btn a {
    font-size: 22px;
    color: #08a36d;
    border: 1px solid #08a36d;
    padding: 12px 35px;
}

.gen__btn a:hover {
    background-color: #08a36d;
    color: #fff;
}

.container {
    max-width: 1440px;
}

/***** loader *****/
.cs-loader {
    background-color: #E9F8EF;
    z-index: 99;
    width: 100%;
    height: 100%;
    position: fixed !important;
}

.ico-1 {
    background: url(../images/loader/ico-1.svg) no-repeat;
}

.ico-2 {
    background: url(../images/loader/ico-2.svg) no-repeat;
}

.ico-3 {
    background: url(../images/loader/ico-3.svg) no-repeat;
}

.ico-4 {
    background: url(../images/loader/ico-4.svg) no-repeat;
}

.ico-5 {
    background: url(../images/loader/ico-5.svg) no-repeat;
}

.loader-img {
    width: 60px;
    height: 60px;
    background-size: contain;
}

.cs-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.cs-loader-inner {
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
    width: calc(100% - 200px);
    color: #FFF;
    padding: 0 100px;
    text-align: center;
    animation: curvedline 3s infinite ease-in-out;
}

.cs-loader-inner .loader-img {
    font-size: 20px;
    opacity: 0;
    display: inline-block;
    margin-left: 10px;
}

@keyframes curvedline {
    50% {
        transform: translate3D(0, -50px, 0);
    }
}

@keyframes lol {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    33% {
        opacity: 1;
        transform: translateX(0px);
    }

    66% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(300px);
    }
}

@-webkit-keyframes lol {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-300px);
    }

    33% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }

    66% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(300px);
    }
}

.cs-loader-inner .loader-img:nth-child(6) {
    -webkit-animation: lol 3s infinite ease-in-out;
    animation: lol 3s infinite ease-in-out;
}

.cs-loader-inner .loader-img:nth-child(5) {
    -webkit-animation: lol 3s 100ms infinite ease-in-out;
    animation: lol 3s 100ms infinite ease-in-out;
}

.cs-loader-inner .loader-img:nth-child(4) {
    -webkit-animation: lol 3s 200ms infinite ease-in-out;
    animation: lol 3s 200ms infinite ease-in-out;
}

.cs-loader-inner .loader-img:nth-child(3) {
    transform-origin: 50% 100%;
    -webkit-animation: lol 3s 300ms infinite ease-in-out;
    animation: lol 3s 300ms infinite ease-in-out;
}

.cs-loader-inner .loader-img:nth-child(2) {
    -webkit-animation: lol 3s 400ms infinite ease-in-out;
    animation: lol 3s 400ms infinite ease-in-out;
}

.cs-loader-inner .loader-img:nth-child(1) {
    -webkit-animation: lol 3s 500ms infinite ease-in-out;
    animation: lol 3s 500ms infinite ease-in-out;
}

/***** header *****/
.headerMain {
    padding: 10px 0;
    background-color: transparent;
    z-index: 9;
}

.headerMain.style-2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: transparent;
}

.headerMain.is-header-sticky {
    background-color: #edf8ef;
    ;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    transition: all 0.4s ease-in-out;
}

.headerMain.is-header-sticky .headerLogo {
    width: 220px;
}

.headerMenuToggleBtn {
    display: none;
}

.headerLogo {
    width: 240px;
    transition: all 0.4s ease-in-out;
}

.headerNav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    transition: 0.6s all ease-in-out;
}

.headerNav>ul>li {
    display: inline-block;
    position: relative;
    margin-left: 33px;
}

.headerNav>ul>li.has-submenu {
    padding-right: 15px;
}

.submenu-toggle-icon {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    border: none;
    border-bottom: 3px solid #000;
    border-right: 3px solid #000;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.headerNav>ul>li a {
    color: #000;
    font-weight: 600;
    font-size: 18px;
}

.headerNav>ul>li>ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    z-index: 9;
    background-color: #fff;
    box-shadow: 0px 10px 40px -10px #c4c4c4;
    padding: 18px 14px;
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
}

.headerNav>ul>li>ul::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 10px;
    transform: rotate(45deg);
    background-color: #ffffff;
    height: 12px;
    width: 12px;
}

.headerNav>ul>li>ul li {
    display: block;
    line-height: 1.7;
}

.headerNav>ul>li:hover>ul {
    display: block;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.headerNav>ul>li:hover>a,
.headerNav>ul>li a:hover {
    color: #00a86d;
}

.headerNav>ul>li:hover>.submenu-toggle-icon {
    transform: translateY(-50%) rotate(225deg);
    top: 60%;
    border-color: #00a86d;
}

.headerMain .btn_menu {
    color: #214b36;
    padding: 5px;
    font-size: 25px;
    line-height: 1;
    border: none;
    outline: none;
    box-shadow: none;
    display: none;
}

/* Home page */
/* -=- Definition section -=- */
.definition-list a{
    display: flex;
    display: -webkit-flex;
    height: 100%;
    flex-grow: 1;
}
.definition-list a .vf__item{
    width: 100%;
}

/* Social Popup */
.copy-link-wrap{}
.copy-link-icon{
    padding: 0px 15px;
}
.copy-link-input{
    margin: 0px 12px 0px 0px;
}

/* Product listing page */
.location-wrap{
    position: relative;
}
.location-wrap i{
    position: absolute;
    top: 5px;
    left: 0px;
}
.location-txt-wrap{
    padding-left: 22px;
    display: block;
    font-size: 18px;
    line-height: 24px;
}

/* blog design */
.page-blog-details h6,
.page-blog-details .h6,
.page-blog-details h2 {
    font-size: 25px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 12px;
}

.page-blog-details p {
    margin-bottom: 30px;
}

.page-blog-details .sb {
    margin-bottom: 30px;
}

.page-blog-details img {
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem
}

.page-blog-details ul {
    margin-bottom: 30px;
}

.page-blog-details > ul li {
    font-size: 22px;
    line-height: 40px;
    margin-bottom: 30px;
}

/*.page-blog-details ul li {
    font-size: 20px;
    line-height: 1;
    padding-bottom: 20px;
}*/

/*new css b-page-ul ul li*/
.page-blog-details .b-page-ul ul li {
    font-size: 20px;
    line-height: 1;
    padding-bottom: 20px;
}

.page-blog-details .decimal {
    padding: 0;
    margin-bottom: 35px;
}

.page-blog-details .decimal li {
    list-style: decimal;
    line-height: 1;
    padding-bottom: 25px;
}

.page-blog-details .decimal li:last-child {
    padding-bottom: 0;
}

.page-blog-details .quote {
    width: 100%;
    background-color: #edf8ef;
    padding: 40px 30px 35px;
    margin-bottom: 35px;
}

.page-blog-details .quote h5 {
    max-width: 615px;
    font-size: 35px;
    line-height: 1;
    margin: 0;
}

.page-blog-details .pages-content {
    margin-right: 0 !important;
}

/***** home banner *****/
.home__banner {
    height: 100vh;
    width: 100%;
    display: flex;
    background-position: right;
    background-repeat: no-repeat, no-repeat;
    position: relative;
    background-size: cover;
}

.home__baner_img {
    background-image: url(../images/section/home.webp);
    background-size: cover;
}

.countries_banner {
    background-image: url(../images/countries-baner.png);
}

.banner__text {
    position: absolute;
    top: 50%;
    left: auto;
    transform: translatey(-50%);
    display: block;
    width: 33%;
}

.banner__image {
    display: none;
}

/***** vegan item carousel *****/
.owl-carousel .owl-item img {
    width: auto;
}

.vegan__carousel {
    width: 100%;
    padding: 10px 0;
    font-size: 22px;
    margin-top: 55px;
}

.vegan__carousel img {
    height: 30px !important;
    width: 30px !important;
    padding-right: 5px;
}

.owl-vegan .item {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/***** vegan food *****/
.vf__item {
    /*border:1px solid #e0e0e0;*/
    padding: 0 20px 30px 20px;
    transition: 0.5s ease-in-out;
}

.vf__item .image img {
    /*border:1px solid #e0e0e0;*/
    padding: 25px 30px;
    margin-top: -75px;
    transition: 0.5s ease-in-out;
}

/*.vf__item:hover{border:1px solid #08a36d;cursor:pointer;}*/
/*.vf__item:hover .image img{box-shadow:0 0 15px rgba(0, 0, 0, 0.3);border:1px solid #08a36d;}*/
/***** vegan go *****/
.vegan__go .image {
    margin-left: -170px;
}

.inner__item {
    margin-top: 30px;
    margin-bottom: 100px;
}

.inner__item:last-child {
    margin-top: 0px;
    margin-bottom: 0px;
}

.inner__item .light__green__txt {
    padding-bottom: 30px;
}

.inner__item .gen__btn {
    margin-top: 30px;
}

/***** vegan everywhere *****/
.vf__item .num span {
    border: 1px solid #e0e0e0;
    padding: 35px 30px;
    margin-top: -60px;
    transition: 0.5s ease-in-out;
    font-size: 40px;
    background-color: #fff;
    display: inline-block;
    width: 130px;
}

.vf__item:hover .num span {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #08a36d;
}

.vegan__ev .vf__item {
    padding: 0 20px 30px 20px;
}

.view__link {
    font-size: 20px;
    line-height: 30px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: flex-end;
}
.view__link span{
    min-width: 78px;
}
.view__link .ft-chevron-right-solid{
    padding-left: 20px;
    height: 30px;
    display: inline-block;
    position: relative;
    margin-top: 4px;
}
.view__link .ft-chevron-right-solid:before{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
}

.vegan__ev .vf__item:hover .num span {
    background-color: #08a36d;
    color: #fff;
}

/***** vegan city *****/
.vc__item {
    background-image: url(../images/city-bg.webp);
    border: 1px solid #e0e0e0;
    padding: 25px 0 0 25px;
    transition: 0.5s ease-in-out;
    background-repeat: no-repeat;
    background-position: right top;
    min-height: 280px;
    margin-bottom: 30px;
}

.vc__item:hover {
    cursor: pointer;
    border: 1px solid #08a36d;
    background-position: top left;
}

.vc__item .icon img {
    transition: transform 0.8s;
}

.vc__item .vc__title {
    transition: 0.7s ease-in-out;
}

.vc__item:hover .icon img {
    transform: scale(1.09);
}

.vc__item:hover .vc__title {
    color: #08a36d;
}

/***** vegan support *****/
.vegan__go.vegan__support .image {
    margin-right: -170px;
    background-repeat: no-repeat;
    text-align: right;
    background-position: right top;
}

/***** vegan recipe *****/
.trending-blogs-list{
    margin-bottom: 30px;
}
.trending-blogs-list > a{
    display: block;
    height: 100%;
}
.vr__item {
    border: 1px solid #e0e0e0;
    transition: 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.vf__item .dark__green__txt{
    margin-top: 20px;
}
.vr__item .vr__title {
    padding: 30px 20px 20px 20px;
    transform: translateY(0);
    transition: 0.5s ease-in-out;
}

.vr__item:hover {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.vr__item .image img {
    transition: transform 0.8s ease;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.vr__item:hover .image img {
    transform: scale(0.92);
}

.vr__item:hover .vr__title {
    color: #08a36d;
    transform: translateY(-20px);
}

.vegan__food .section__top {
    margin-bottom: 85px;
}

/***** faq *****/
.vegan__faq .card {
    margin-bottom: 20px;
}

.vegan__faq .card-header a.btn {
    background-color: #08a36d;
    color: #fff;
    font-size: 25px;
    display: block;
    padding: 15px 58px 15px 20px;
    text-align: left;
    position: relative;
    font-weight: 500;
}

.vegan__faq .card-header a.btn::after {
    content: "\e000";
    position: absolute;
    font-family: "vegan-fontastic";
    right: 20px;
    transition: transform 0.5s;
    top: 50%;
    transform: translateY(-50%);
}

.vegan__faq .card-header a.btn.collapsed {
    background-color: #edf8ef;
    color: #193311;
    transition: 0.4s ease-in-out;
    position: relative;
}

.vegan__faq .card-header a.btn.collapsed::after {
    transform: translateY(-50%) rotate(180deg);
}

.vegan__faq .card-header a:focus {
    box-shadow: none;
    outline: none;
}

.vegan__faq .card-header {
    background-color: transparent;
    padding: 0;
}

.vegan__faq .card-body {
    font-size: 22px;
}

/***** vegan know *****/
.vk__item {
    padding: 100px 30px;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: 0.5s ease-in-out;
}

.vk__item h6,
.vk__item .h6 {
    font-size: 20px;
    font-weight: 500;
    transition: 0.5s ease-in-out;
}

.vk__item h5,
.vk__item .h5 {
    transition: 0.5s ease-in-out;
}

.vk__item:hover {
    cursor: pointer;
}

.vk__item:hover h5,
.vk__item:hover .h5 {
    transform: translateX(-15px);
}

.vk__item:hover h6,
.vk__item:hover .h6 {
    transform: translateX(15px);
}

/***** article *****/
.va__item {
    background-image: url("../images/article-bg.webp");
    background-repeat: no-repeat;
    background-position: -140px 0;
    transition: 0.7s ease-in-out;
    padding: 20px 0;
}

.va__item:hover {
    background-position: 50% 0;
    cursor: pointer;
}

.va__item .image {
    transition: 0.5s ease-in-out;
}

.va__item h6 {
    transition: 0.5s ease-in-out;
}

.va__item:hover .image {
    transform: translateY(-10px);
}

.va__item:hover h6 {
    transform: translateY(-10px);
    color: #08a36d;
}

/***** footer *****/
#footer {
    padding: 40px 0;
}

.foot__menu ul li a {
    font-size: 19px;
    font-weight: normal;
    transition: 0.6s ease-in-out;
    position: relative;
}

.foot__menu ul li {
    margin-bottom: 10px;
}

.foot__menu ul li a:hover {
    padding-left: 20px;
    color: #193311;
    transition: 0.6s ease-in-out;
}

.foot__menu ul li a::before {
    content: "";
    position: absolute;
    background-color: #193311;
    height: 2px;
    width: 12px;
    left: 0;
    top: 14px;
    opacity: 0;
    transition: 0.6s ease-in-out;
}

.foot__menu ul li a:hover::before {
    opacity: 1;
}

.social ul li {
    margin-left: 10px;
}

.social ul li a {
    color: #fff;
    font-size: 24px;
    transition: 0.5s ease-in-out;
}

.social ul li a:hover {
    transform: translateY(-7px);
}

.copy__right__text {
    font-size: 22px;
}

/*** Listing Page **/
.btn_veg {
    border: 1px solid #f1f1f1;
    border-radius: 0px;
    font-weight: bold;
    font-size: 25px;
    line-height: 1;
    padding: 8px 20px;
    margin-right: 20px;
    font-weight: 500;
}

.btn_veg img {
    height: 42px;
}

.btn_veg span {
    vertical-align: middle;
}

.btn_veg_list {
    border: 1px solid #f1f1f1;
    border-radius: 0px;
    font-weight: 500;
    background: #45a75c;
    color: #fff;
}

/*.btn_veg_list:hover{color:#fff;}*/
.btn_veg_review {
    background-color: #0050bc;
    border: 1px solid #f1f1f1;
    border-radius: 0px;
    font-weight: 500;
    color: white;
}

.btn_veg_review:hover {
    color: #fff;
}

.rating-color {
    color: #fbc634 !important;
}

.review-count {
    font-weight: 400;
    margin-bottom: 2px;
    font-size: 24px !important;
}

.list_layout.small-ratings {
    margin-top: 10px;
}

.small-ratings i {
    color: #cecece;
    font-size: 16px;
}

.review-stat {
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 2px;
}

.small-ratings i {
    color: #cecece;
}

.small-ratings span {
    font-weight: 500;
    color: #858585;
    margin-left: 0px;
    font-size: 16px;
    line-height: 26px;
    display: inline-block;
}

.list_layout .wishlist_list_2 {
    display: block;
    justify-content: center;
    text-align: center;
    background-color: #858585;
    color: #fff;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    font-size: 14px;
    line-height: 30px;
}

.list_layout .product_name {
    margin-bottom: 15px;
    color: #041300;
}

/* .small-ratings{margin-top:15px;} */
.list_text {
    font-size: 20px;
    color: rgb(133, 133, 133);
    line-height: 1.25;
    text-align: left;
    overflow-wrap: break-word;
}

.btn_filter {
    border: 1px solid #f1f1f1;
    border-radius: 0px;
    font-weight: normal;
    color: gray;
    padding-right: 50px !important;
}

.align_center {
    align-items: center;
}

.active_filter i {
    color: black !important;
}

.filter_icon i {
    color: gray;
}

.product_grid .product_img_box {
    position: relative;
}

.product_grid {
    height: fit-content;
    border: 1px solid #f1f1f1;
    padding: 18px 20px 22px;
    margin-right: -5px;
    height: 100%;
}
.product-list-grid{
    margin-bottom: 20px;
}

.advertise_grid {
    height: fit-content;
    border: 1px solid #f1f1f1;
    padding: 6px 20px 10px;
    margin-bottom: 20px;
}

.advertise_img_box img {
    width: 100%;
}

.advertise_grid .advertise_text {
    font-size: 14px;
    line-height: 1;
    color: #858585;
    font-weight: 400;
    padding-bottom: 7px;
}

.advertise_grid .advertise_title {
    font-size: 14px;
    line-height: 1;
    color: #0050bc;
    font-weight: 400;
    padding-top: 8px;
}

.location_text {
    font-size: 20px;
    color: #858585;
    line-height: 1;
}

.list_layout {
    margin-top: 10px;
    border: 1px solid #f1f1f1;
    padding: 30px 20px;
    margin: 10px 0px 10px 0px;
    position: relative;
}

.list_layout img {
    max-height: 280px;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
}

.wishlist {
    background-color: #e3e3e396;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    right: 10px;
    top: 10px;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    cursor: pointer;
    line-height: 32px;
}

.wishlist:hover {
    background-color: #000;
    color: #fff;
}

.distance {
    background-color: #e3e3e396;
    color: #000;
    position: absolute;
    right: 10px;
    bottom: 10px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1;
    padding: 10px;
    font-weight: 500;
    cursor: pointer;
}

.wishlist_list {
    background-color: #e3e3e396;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    top: 10px;
    margin: 0 auto;
    text-align: center;
    /* center all content vertically */
    justify-content: center;
    height: 25px;
    width: 25px;
}

.location_text i {
    font-size: 17px;
}

.rating-sec {
    margin-top: 12px;
}

.dollar .first_dollar {
    color: gray;
    font-size: 18px;
}

.dollar .second_dollar {
    color: gray;
    font-size: 20px;
}

.dollar .third_dollar {
    color: gray;
    font-size: 25px;
}

.rating {
    background-color: #ff9600;
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    padding: 10px;
    line-height: 1;
}

.rating i {
    font-size: 12px;
}

.product_grid .product_img_box img {
    border-radius: 10px;
    height: 250px;
    width: 100%;
    object-fit: cover;
    background-position: center;
}

.veg_icon img {
    height: 23px;
    margin-left: 10px;
    margin-top: -7px;
}

.porduct_title {
    display: flex;
    margin: 15px 0 10px 0;
}

.porduct_title a {
    color: #041300;
}

.product_name {
    font-size: 25px;
    font-weight: 600;
    line-height: 30px;
    display: block;
}

.listing_label {
    font-size: 30px;
    font-weight: 900;
    margin: 40px 0 30px 0;
    line-height: 1;
    font-weight: 900;
}

.btn_veg_list img {
    width: 20px !important;
    height: 20px !important;
    margin-right: 5px;
}

.btn_veg_review img {
    height: 25px;
}

/***** Description Page *****/
/* .desc_bg{height:173px;}
 */
.desc_bg h3 {
    font-size: 36px;
    line-height: 1;
    color: #ffffff;
    margin-top: 30px;
    font-weight: 900;
}

.desc_bg h1 {
    font-size: 36px;
    line-height: 1;
    color: #ffffff;
    margin-top: 30px;
    font-weight: 900;
}

.friend_icon {
    height: 30px;
    width: 23px;
}

.btn_desc {
    border: 1px solid #fff;
    border-radius: 0px;
    background: #fff;
    font-size: 17px;
    color: #000906;
    font-weight: 500;
    padding: 10px 20px;
    line-height: 1;
    transition: 0.4s all ease-in-out;
}

.btn_desc:hover {
    background-color: transparent;
    color: #fff;
}

.sub_title .btn_desc {
    line-height: 29px;
    margin-bottom: 0;
}

.vegan_badge {
    padding: 5px 20px;
    background-color: #fff;
    margin-right: 15px;
}

.vegan_badge img {
    width: 25px;
}

.friend_text {
    font-size: 22px;
    margin: 0;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    padding-right: 15px;
}

.closed_txt {
    font-size: 18px;
    line-height: 52px;
    color: #f5d042;
    font-weight: 500;
}

.desc_location_text a {
    font-size: 18px;
    font-weight: 500;
    /*color: #858585;*/
}

.desc_location_text li.active {
    color: #000;
    font-weight: 500;
}

.medal_txt {
    font-weight: 500;
    margin-bottom: 50px;
    font-size: 25px;
    color: #ff9c00;
}

#gmap_canvas {
    height: 250px;
    width: 100%;
}

.btn_transparent {
    width: auto;
    padding: 12px;
    font-size: 22px;
    background-color: transparent;
    border: 1px solid #858585;
    border-radius: 0;
    box-shadow: none;
    transition: 0.4s all ease-in-out;
}

.btn:focus {
    box-shadow: none;
    outline: none;
}

.btn_transparent:hover {
    background-color: #858585;
    color: #fff;
}

.review_select {
    padding: 12px;
    font-size: 22px;
    background-color: transparent;
    border: 1px solid #858585;
    border-radius: 0;
    color: #858585;
    transition: 0.4s all ease-in-out;
}

.hrs_table {
    max-width: 350px;
    float: right;
}

.hrs_table tbody tr td {
    height: 20px !important;
    padding: 5px 0;
    color: #000906;
    font-size: 20px;
    font-weight: 500;
}

.hrs_table {
    float: none;
    margin-top: -14px;
}

.map_desc {
    margin-top: 15px;
}

.map_text br {
    display: none;
}

.map_text {
    line-height: 1.2;
    font-size: 20px;
    color: #000906;
    padding-right: 15px;
}

.amenities_text {
    font-size: 20px;
    margin-bottom: 25px;
}

.amenities_text img {
    margin-bottom: 10px;
    height: 20px;
}

.hrs_table tbody tr td.pl-90 {
    padding-left: 90px;
}

.hrs_table tbody tr td.text-yellow {
    color: #ff9c00;
}

.contact_box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

#contact-map {
    height: 200px;
    width: 100%;
}

.btn_green_bg {
    width: 45%;
    height: 30px;
    background-color: #00a86d;
    border: 1px solid #858585;
    color: #fff;
    border-radius: 0;
    padding: 0.2rem 0.5rem;
    font-size: 14px;
    transition: 0.4s all ease-in-out;
}

.btn_green_bg:hover {
    background-color: transparent;
    border: 1px solid #00a86d;
    color: #00a86d;
}

.blog_social_icons_wrap {
    width: 102px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog_social_icons_wrap .social_icons {
    position: sticky;
    top: 110px;
}

.blog_social_icons_wrap .social_icons a,
.blog_social_icons_wrap .social_icons button {
    height: 40px;
    width: 40px;
    display: flex;
    color: #fff;
    background-color: #00a86d;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.blog_social_icons_wrap .social_icons a,
.blog_social_icons_wrap .social_icons button i {
    margin-bottom: 0;
}

.blog_social_icons_wrap .social_icons button {
    border: 0
}

.relatedBlogBox {
    position: sticky;
    top: 100px;
    width: 100%;
    background: #fff;
    display: block;
}

.small_dark_txt {
    font-size: 18px;
    line-height: 1;
    color: #000906;
    padding: 10px 0;
}

.small_light_txt {
    font-size: 15px;
    line-height: 20px;
    color: #858585;
    margin-bottom: 35px;
}

.small_green_txt {
    font-size: 18px;
    line-height: 1;
    color: #08a36d;
    margin-top: 15px;
}

.small_blue_txt {
    font-size: 14px;
    line-height: 18px;
    color: #0050bc;
    font-weight: 500;
}

.list_vegan_icon {
    height: 23px !important;
    width: 24px;
    margin-right: 0.5rem;
}

.desc_star_rating {
    padding: 0;
    text-align: left;
}

.desc_star_rating span {
    font-size: 15px;
    line-height: 20px;
    color: #858585;
    font-weight: normal;
}

.btn_grey {
    width: auto;
    height: 30px;
    background-color: #ffffff;
    border: 1px solid #858585;
    padding: 0.2rem 0.5rem;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    line-height: 30px;
    margin-right: 10px;
}

.btn_grey img {
    padding-right: 8px;
}

.btn_grey:last-child {
    margin-right: 0px;
}

.user_icon {
    position: absolute;
    top: 1rem;
    left: 1.45rem;
}

/***** Countries css *****/
.home__banner.countries_banner {
    display: block;
    height: 90vh;
}

.all-countries-sec {
    margin: 85px 0 100px 0;
}

.all-countries-sec h2 {
    margin: 0 0 50px 0;
    line-height: 1;
}

.count_box {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    text-align: center;
    padding: 70px 0 55px 0;
}

.count_box p {
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
}

.count_box h2 {
    margin: 0;
    line-height: 1;
    margin-bottom: 25px;
}

.country_list a {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: filter 0.4s ease-in-out;
}

.popular-contry-sec {
    margin-top: 15px;
}

.popular-contry-sec .country_list {
    padding: 0 25px;
}

.popular-contry-sec .country_list h4 {
    font-size: 28px;
    line-height: 1;
}

.mt-90 {
    margin-top: 90px;
}

.mt-40 {
    margin-top: 40px;
}

.listed-sec {
    margin-top: 70px;
}

.listed-sec h2 {
    margin-bottom: 25px;
    line-height: 1;
}

.listed-sec h4 {
    font-size: 28px;
}

.country_list:hover {
    filter: drop-shadow(9.192px 9.192px 6.5px rgba(13, 13, 13, 0.09));
}

.country_list h4 {
    line-height: 1;
    margin-bottom: 0;
    padding-left: 20px;
}

.country_list img,
.Countries-img {
    height: 100%;
    width: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.Countries-img {
    margin: auto 20px;
    width: 60px;
    height: 45px;
}

.country_desc {
    font-size: 25px;
    line-height: 30px;
    color: #000906;
    text-align: center;
}

.desc_light_txt {
    font-size: 30px;
    color: #999999;
    font-weight: 500;
}

/**** Why us css ****/
.why_vegan .sec-head {
    position: relative;
}

.why_vegan .sec-title {
    margin-bottom: -0.3rem;
}

.why_vegan .sec-title {
    font-size: 4.375rem;
    line-height: 1.044;
    font-weight: 700;
    color: #08a36d;
}

.why_vegan .sec-sub-text {
    position: relative;
    z-index: 1;
}

.why_vegan .sec-sub-text:after {
    background-color: #fff;
    content: "";
    position: absolute;
    height: 10px;
    width: 108%;
    bottom: 22px;
    left: 0;
    z-index: -1;
}

.why_vegan .sec-head:after {
    height: 1px;
    background-color: #08a36d;
    content: "";
    position: absolute;
    bottom: 0.9rem;
    margin: 0 -0.2rem 0 0;
    right: 0;
    left: 0;
}

.why_vegan .sec-sub-title {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.4;
    color: #08a36d;
    margin-top: 0;
    margin-bottom: 0;
}

.vegan_sidebar h2 {
    font-size: 1.875em;
    line-height: 1.2em;
    color: #fff;
    margin: 0;
    padding: 0.75em 0.75em 0.5em;
}

.vegan_sidebar {
    padding: 0;
    list-style: none;
    background-color: #08a36d;
    margin: 13px 0 0 0;
    color: #fff;
}

.vegan_sidebar .vegan_menu {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 700;
}

ul.menu {
    border: none;
    list-style: none;
    text-align: left;
}

.vegan_sidebar .vegan_menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 0.5em 1.5em;
}

.vegan_sidebar .vegan_menu ul li a {
    padding: 0.5em 1.5em 0.5em 3em;
}

.vegan_sidebar .vegan_menu .menu {
    background-color: #08a36d;
    padding: 0;
    display: none;
}

.vegan_sidebar .vegan_menu a.active {
    color: #008375;
    background: #b7d2cf;
}

.vegan_sidebar .vegan_menu a:hover {
    background: #ff9e16;
}

.why_vegan_header {
    margin-bottom: 60px;
}

.pages-content {
    margin-right: 70px;
}

.advertise_grid_wrap {
    position: sticky;
    top: 30px;
}

.why_vegan .advertise_grid {
    margin-top: 65px;
}

.pages-content h6 {
    margin-top: 30px;
}

.pages-content p {
    font-size: 22px;
    line-height: 40px;
    color: #041300;
    ;
    margin-bottom: 30px;
}

.pages-content ul {
    margin: 0 0 10px 0;
    padding: 0 0 0 10px;
    line-height: 40px;
    color: #041300;
}

/*.pages-content ul li {
    font-size: 20px;
}*/
/*new css*/
.pages-content ul li {
    font-size: 22px;
}

.pages-content .list_sec {
    margin-top: 35px;
}

.pages-content .list_sec p {
    margin-bottom: 0;
}

.pages-content ul li b,
.pages-content ul li i {
    color: #000906;
}

.pages-content ul li span {
    color: #041300;
}

.pages-content img {
    display: block;
    margin: 0px auto 25px;
    max-width: 100%;
}

.pages-content .quote {
    background-color: rgb(237, 248, 239);
    width: 100%;
    padding: 20px;
    margin-bottom: 30px;
}

.pages-content .quote label {
    font-size: 20px;
    color: rgb(8, 163, 109);
    margin: 0;
}

.pages-content p {
    color: #000906 !important;
}

.pages-content p:last-child {
    margin-bottom: 0;
}

.pages-content h2 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 800;
}

.link_txt {
    color: #00a86d;
    display: inline;
}

.list_why_us li {
    font-size: 20.136px;
    color: rgb(0, 9, 6);
    line-height: 2.25;
}

.green-list li {
    color: rgb(8, 163, 109);
    font-weight: 500;
}

.go_vegan {
    height: 300px;
    border: 1px solid gray;
    padding: 10px;
}

.active_menu {
    font-size: 19.958px;
    color: rgb(8, 163, 109);
    font-weight: bold;
    list-style-type: none;
    border-left: 10px solid rgb(8, 163, 109);
    padding-left: 10px;
}

.side_list li {
    list-style-type: none;
    margin-left: -30px;
    font-weight: bold;
}

.social_icons {
    display: flex;
    flex-direction: column;
}

.social_icons i {
    font-size: 20px;
    margin-bottom: 15px;
}

/***** blog css *****/
.blog-box {
    border-bottom: 1px solid rgb(216, 216, 216);
    padding: 30px 0;
    max-width: 88%;
}

.blog-box:last-child {
    border: none;
}

.blog-box .blog_title {
    font-size: 25px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-box .blog_short_desc {
    color: #858585;
    line-height: 1.4;
    font-size: 20px;
    color: #041300;
}

.blog-2 .blog_short_desc {
    margin-bottom: 30px;
}

.related_blog .blog_short_desc {
    line-height: 35px;
}

.blog-2 .blog_title {
    font-size: 25px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog h1 {
    font-size: 25px;
    color: rgb(0, 9, 6);
}

.blog_thum_img {
    height: 220px;
    width: 220px;
    float: right;
    object-fit: cover;
}

.blog .small_txt {
    font-size: 18px;
    line-height: 30px;
    color: #000906;
}

.blog_note {
    width: 100%;
    background-color: #edf8ef;
    padding: 40px 30px 35px;
    margin-bottom: 35px;
}

.blog_note .sec_title {
    max-width: 615px;
    font-size: 35px;
    line-height: 1;
    margin: 0;
}

.pain_suffer_list ul {
    padding: 0;
    margin-bottom: 35px;
}

.pain_suffer_list ul li {
    list-style: none;
    line-height: 1;
    padding-bottom: 25px;
}

.pain_suffer_list ul li:last-child {
    padding-bottom: 0;
}

.blog_banner {
    /*background:url("../images/blog_baner.jpg");*/
    background-color: #08a36d;
    /* background-repeat: no-repeat; */
    color: #ffffff;
    /* height: 66vh; */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-bottom: 75px;
    padding-top: 210px;
    position: relative;
}
.blog_banner.responsive-banner{
    background-position: center center;
    background-repeat: no-repeat;
}
.blog_banner.responsive-banner:before {
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.4);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}
.blog_banner.responsive-banner > .container{
    position: relative;
    z-index: 1;
}

.blog_banner .small_txt {
    font-size: 25px;
    line-height: 30px;
}

.blog-2 .blog_list ul {
    margin-bottom: 30px;
}

.blog-2 .blog_list ul li {
    font-size: 20px;
    line-height: 1;
    padding-bottom: 20px;
}

.related_blog {
    widtitleth: 96%;
}

.related_blog_title {
    font-size: 20px;
    color: #000906;
    text-transform: uppercase;
    font-weight: 500;
}

.related_blog .blog-box {
    max-width: 100%;
}

.related_blog .blog_thum_img {
    padding-left: 30px;
    width: 100%;
    height: 100%;
}

/***** carousel css *****/
.description {
    margin: 30px 0 100px 0;
}

.carousel-inner {
    padding: 1em;
}

.sec_title {
    margin: 55px 0 30px 0;
}

.about .sec_title {
    margin-bottom: 20px;
}

.about-slider {
    position: relative;
    margin-top: 40px;
}

.about-slide img {
    max-width: 97%;
    height: 450px;
    object-fit: cover;
}

.desc_location_text {
    line-height: 1.4;
}

.hilight_title i {
    font-size: 19px;
    color: #858585;
}

.hilight_text {
    font-size: 20px;
    padding: 0;
    margin: 30px 0 25px 0;
    line-height: 1.1;
    font-weight: 500;
    color: #000906;
}

.owl-prev,
.owl-next {
    display: block;
    position: absolute;
    background-color: #ffffff80 !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.owl-prev {
    left: 10px;
}

.owl-prev span,
.owl-next span {
    font-size: 30px;
    font-weight: 900;
    line-height: 25px;
}

/*.owl-carousel .owl-item img{width:100%;height:280px !important;object-fit:cover;}*/
.mt-55 {
    margin-top: 55px;
}

.question_title {
    font-size: 25px;
    font-weight: 600;
}

.review-box {
    margin-bottom: 35px;
}

.review:last-child {
    margin-bottom: 35px;
}

.review_title {
    font-size: 22px;
    color: #161d1b;
    line-height: 1;
    margin: 0;
    padding-bottom: 5px;
}

.review-box .small-ratings {
    margin-bottom: 10px;
}

.review_dec {
    font-size: 18px;
    line-height: 1;
    color: #858585;
    padding-bottom: 5px;
}

.review_dec .fa-star {
    background-color: #858585;
    color: #fff;
    font-size: 10px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    height: 18px;
    width: 18px;
}

.contact_box {
    font-size: 15px;
    line-height: 1;
    color: #858585;
    padding: 15px;
}

.contact_box .desc_box {
    margin-top: 15px;
}

.contact_box .desc_box .contact-text {
    margin: 8px 0;
    line-height: 20px;
}

.contact_box .desc_box .contact-text a {
    width: 100%;
    word-break: break-all;
}

.contact_box .desc_box .contact-text span {
    font-size: 15px;
    line-height: 1;
    color: #000906;
    text-transform: uppercase;
    padding-right: 10px;
    font-weight: 500;
}

.dollar span {
    padding-right: 0px !important;
}

.contact_social_icons {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.contact_social_icons .social_icon {
    height: 32px;
    width: 32px;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    color: #00a86d;
    border: 1px solid #00a86d;
    border-radius: 50%;
    background-color: transparent;
    margin-right: 10px;
}

.contact_social_icons .social_icon:hover {
    background-color: #00a86d;
    color: #fff;
}

.desc_box .social_icon {
    border: none !important;
    line-height: normal !important;
}

.desc_box .social_icon:hover {
    background-color: transparent !important;
}

.desc_box .social_icon img {
    max-width: 100%;
    max-height: 100%;
    border: none;
}

.nearby_listings {
    display: flex;
    border: 1px solid #f1f1f1;
    margin: 10px;
}

.nearby_listings .content-box {
    padding: 5px;
}

.nearby_listings .sec_title {
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    margin: 0;
    display: flex;
}

.nearby_listings .sec_title img {
    height: 18px !important;
    width: 18px;
}

.nearby_listings .foot_text {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    font-size: 14px;
    color: #858585;
}

.nearby_listings .foot_text .milestone {
    color: #000906;
}

.nearby_listings .foot_text span {
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 70%;
}

.nearby_img {
    height: 110px !important;
    width: 100%;
    object-fit: cover;
}

.ask_question {
    font-size: 20px;
    line-height: 35px;
    letter-spacing: 0.5px;
    color: #041300;
}

.review-box .small_light_txt {
    font-size: 18px;
    line-height: 25px;
    color: #041300;
}

.showbar-open {
    height: 100vh;
    overflow-y: hidden;
}

.header-close-btn {
    display: none;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: transparent;
    color: #214b36;
    padding: 5px;
    font-size: 35px;
    line-height: 1;
    margin-left: auto;
    margin-bottom: 15px;
}

.showMore {
    display: none;
}

.hilight img {
    max-width: 71px;
    margin-left: auto;
    margin-right: auto;
}

.page-title-wrap {
    padding: 20px 0;
}

.page-title-wrap .page-title {
    margin: 0;
}

/* contact */
.contact-section-image {
    margin-bottom: 30px;
    text-align: center;
}

.contact-section-form-sub-title {
    font-size: 25px;
    line-height: 40px;
    font-family: "Piazzolla", serif;
    font-weight: 500;
    color: #000906;
    display: block;
}

.contact-section-form-title {
    font-size: 40px;
    font-weight: 700;
    color: #000906;
    display: block;
    margin-top: 5px;
}

.contact-section-inner p {
    color: #353a38;
    font-family: "Piazzolla", serif;
    font-weight: normal;
    display: block;
    margin: 20px 0 35px;
}

.

.form-input-group {
    margin-bottom: 30px;
    position: relative;
}

.form-input-group input,
.form-input-group select,
.form-input-group textarea {
    width: 100%;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 2px solid #000;
    display: block;
    font-weight: 500;
    padding: 10px 5px;
    outline: none;
    font-size: 18px;
    resize: none;
}

.form-input-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url(../images/icon/angle-down.svg);
    background-size: 12px;
    background-position: calc(100% - 5px) center;
    background-repeat: no-repeat;
}

.form-btn {
    font-size: 22px;
    color: #041300;
    border: 1px solid #041300;
    padding: 12px 35px;
    text-align: center;
    min-width: 180px;
    background-color: #fff;
    margin-top: 40px;
    transition: all 0.4s ease-in-out;
}

.form-btn:hover {
    background-color: #08a36d;
    color: #fff;
    border-color: #08a36d;
}

.form-country-wrap {
    display: flex;
}

.form-country-wrap select {
    max-width: 80px;
    margin-right: 15px;
}

.form-country-check {
    margin-top: 5px;
}

.form-country-check .form-check-input {
    padding: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #041300;
    box-shadow: none;
}

.form-country-check .form-check-input:checked {
    background-color: #08a36d;
    border-color: #08a36d;
}

.form-error {
    color: #ff0000;
    font-weight: 500;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    font-size: 14px;
}

/* toc-blogs */
.blog-sidebar-sticky {
    position: sticky;
    top: 50px;
}

.toc-blogs{
    background-color: #f1f1f1;
    padding: 20px 30px;
    transition: all 0.5s ease-in-out;
}
.toc-desc-content{
    margin: 50px 0 0px 0;
}

.toc-blogs ul,
.toc-blogs ol {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0 !important;
}

.toc-blogs ul li {
    width: 50%;
}

.toc-pages ul li {
    width: 100%;
}

.toc-blogs li {
    display: block;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.toc-blogs li a {
    font-size: 18px;
    color: #041300;
}

.toc-blogs li a:hover,
.toc-blogs li a:active,
.toc-blogs li a:focus {
    color: #00a86d;
}

.toc-blogs li>ul {
    margin-top: 5px;
    margin-left: 15px;
}

.toc-title {
    color: #08a36d;
    display: block;
    font-size: 30px;
    font-weight: 600;
    margin: 0px;
    position: relative;
    padding-left: 30px;
}
.toc-title:before{
    content: "";
    padding: 10px;
    display: block;
    background: url("../images/blog/list-interface-symbol.png") no-repeat center center / cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 0px;
}
/* body.knowledgebase #tocWrapper .postTableOfContents.sticky-active{
    position: fixed;
    top: 60px;
    z-index: 100;
    margin-top: 10px;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 15%), 0 8px 16px 0 rgb(0 0 0 / 5%);
    max-height: calc(75% - 40px);
    overflow: auto;
}
body.knowledgebase #tocWrapper .postTableOfContents .inner-wrap {
    height: auto;
    overflow: hidden;
    transition: height .5s
}

*/
.toc-blogs-list-view{
    height: auto;
    overflow: hidden;
    transition: height .5s;
}
.toc-blogs-list-view > ul{
    margin-top: 20px;
}
.outer-sticky-wrapper.nav-container-sticky:not(:hover) .toc-blogs-list-view{
    height: 0px !important;
}


.toc-title i {
    font-size: 25px;
    margin-right: 15px;
}

.toc-blogs.is-topaa {
    max-height: 75px;
    padding-top: 21px;
    padding-bottom: 21px;
    position: fixed;
}

.toc-blogs .page-blog-details ul {
    margin-bottom: 0;
}

.Countries-img,
.country_list img {
    height: 40px;
    width: 60px;
    object-fit: cover;
    border-radius: 5px;
}

/* Responsive page CSS */
@media(max-width: 1200px){
    .map_desc{
        margin-bottom: 30px;
    }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    /* Common Element CSS */
    .h5 {
        font-size: 18px;
        line-height: 26px;
    }
    /* Header Section */
    .foot__logo,
    .headerLogo{
        width: 170px;
    }
    .headerMain.is-header-sticky .headerLogo{
        width: 180px;
    }
    /* common page content  */
    .pages-content p{
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 30px;
    }

    /* common page content ul li font size */
    .pages-content ul li {
        font-size: 18px;
        line-height: 30px;
    }

    /* Review page CSS */
    .hilight > .row > .col-6{
        width: 25%;
    }
    .hilight_text{
        margin: 15px 0 20px 0;
        font-size: 16px;
        line-height: 22px;
    }
    /* Contact Us page */
    .section.contact-section{
        margin: 40px 0px;
    }
    .contact-section-form-sub-title{
        font-size: 22px;
        line-height: 30px;
    }
    .contact-section-form-title{
        font-size: 34px;
        line-height: 64px;
    }
    .contact-section-image img{
        max-width: 550px;
    }
    /* Footer Section */
    .foot__menu ul li a{
        font-size: 16px;
        line-height: 24px;
    }
    .copy__right__text {
        font-size: 18px;
        line-height: 30px;
    }
    .social ul li a{
        font-size: 18px;
        line-height: 20px;
    }
}
@media (max-width: 992px){
    /* Blog Page */
    .blog_social_icons_wrap .social_icons{
        flex-direction: row;
        position: static;
        top: auto;
    }
    .blog_social_icons_wrap{
        margin-bottom: 15px;
    }
    .blog_social_icons_wrap{
        max-width: 100%;
        width: 100%;
    }
    .blog_social_icons_wrap .social_icons a, .blog_social_icons_wrap .social_icons button{
        margin: 0px 8px 0px 0px;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    /* Contact us page */
    .contact-section-image{
        max-width: 540px;
        width: 100%;
        margin: 0px auto 40px;
    }
    .contact-section-form-sub-title{
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .contact-section-form-title{
        font-size: 34px;
        line-height: 42px;
    }
    .form-subit-btn{
        text-align: center;
    }
    /* Review page CSS */
    .hilight > .row > .col-6{
        width: 25%;
    }
    .hilight_text{
        margin: 15px 0 20px 0;
        font-size: 16px;
        line-height: 22px;
    }

    /* Footer Section */
    .copy__right__text{
        font-size: 18px;
        line-height: 24px;
    }
    .social ul li a{
        font-size: 18px;
        line-height: 20px;
    }
}
@media (max-width: 768px){
    .h4 {
        font-size: 24px;
    }

    #outer-sticky-wrapper-id {
        top: 81px;
    }
    /* Blog innerpage */
    .toc-title{
        font-size: 24px;
        line-height: 28px;
    }
    .toc-blogs ul, .toc-blogs ol{
        display: block;
    }
    .toc-blogs li a {
        font-size: 16px;
        line-height: 20px;
    }
    .toc-blogs{
        padding: 20px;
        width: 100%;
        max-height: 100%;
    }

    /*.page-blog-details ul li{
        width: 100%;
        font-size: 20px;
        line-height: 18px;
    }*/
    .page-blog-details > ul li{
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    /*new css b-page-ul ul li*/
    .page-blog-details .b-page-ul ul li {
        width: 100%;
        font-size: 20px;
        line-height: 18px;
    }

    .trending-blogs-list > a{
        display: inline-block;
    }
    /* Common Page Content Section */
    .pages-content p{
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 15px;
    }
    /*new css*/
    /* common page content ul li font size */
    .pages-content ul li {
        font-size: 16px;
        line-height: 26px;
    }
    /* Product Listing page */
    .location-txt-wrap{
        font-size: 16px;
        line-height: 22px;
    }
    .location-wrap i{
        top: 2px;
    }
    /* Contact Page  */
    .contact-section-image{
        max-width: 320px;
        margin: 0px auto 25px;
    }
    .form-subit-btn{
        text-align: center;
    }
    .form-btn{
        margin-top: 10px;
        padding: 5px 20px;
        min-width: 140px;
        font-size: 16px;
        line-height: 28px;
    }
    .contact-section-form-title{
        font-size: 26px;
        line-height: 32px;
    }
    .form-input-group input, .form-input-group select, .form-input-group textarea{
        padding: 5px 5px;
        font-size: 16px;
    }
    .contact-section-form-sub-title{
        margin-bottom: 18px;
        font-size: 18px;
        line-height: 28px;
    }
    
    /* Home page */
    .section.vegan__recipes > .container .row > div{
        text-align: center;
    }
    .section.vegan__recipes > .container .row > div h2{
        text-align: left;
    }
    .vr__item{
        max-width: 327px;
    }
    .vegan__go .image{
        max-width: 400px;
    }
    .vegan__faq .card-header a.btn{
        font-size: 18px;
        line-height: 20px;
    }
    .vegan__faq .card-body{
        font-size: 16px;
        line-height: 25px;
    }
    .vk__item{
        max-width: 322px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
        padding: 0px 30px;
        min-height: 330px;
    }
    /* Review page css */
    .map_text{
        font-size: 16px;
        line-height: 20px;
    }
    .hrs_table{
        margin-top: 0px;
    }
    .hrs_table tbody tr td{
        font-size: 16px;
        line-height: 20px;
    }
}
@media (max-width: 575px){
    .section .section__top.d-flex{
        display: block !important;
    }
    .view__link{
        justify-content: flex-start;
    }
    /* Review page CSS */
    .hilight_text{
        margin: 15px 0 20px 0;
        font-size: 16px;
        line-height: 22px;
    }
}
