:root {
    --blue: #3490f3;
    --hov-blue: #2e7fd6;
    --soft-blue: rgba(0, 123, 255, 0.15);
    --secondary-base: {{get_setting('secondary_base_color', '#ffc519')}};
    --hov-secondary-base: {{get_setting('secondary_base_hov_color', '#dbaa17')}};
    --soft-secondary-base: {{hex2rgba(get_setting('secondary_base_color', '#ffc519'), 0.15)}};
    --gray: #9d9da6;
    --gray-dark: #8d8d8d;
    --secondary: #919199;
    --soft-secondary: rgba(145, 145, 153, 0.15);
    --success: #85b567;
    --soft-success: rgba(133, 181, 103, 0.15);
    --warning: #f3af3d;
    --soft-warning: rgba(243, 175, 61, 0.15);
    --light: #f5f5f5;
    --soft-light: #dfdfe6;
    --soft-white: #b5b5bf;
    --dark: #292933;
    --soft-dark: #1b1b28;
    --primary: {{get_setting('base_color', '#d43533')}};
    --hov-primary: {{get_setting('base_hov_color', '#9d1b1a')}};
    --soft-primary: {{hex2rgba(get_setting('base_color', '#d43533'), 0.15)}};

    --bg-white: #ffffff;
    --bg-black: #17171f;
    --color: #1b1b1b;
    --text-white: #ffffff;
    --primary-color: #00704c;
    --transition: all 0.4s;
}
.floating-buttons-section{
    display: none;
}
.c-pointer{
    cursor: pointer;
}
.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}
button{
    outline: none;
    border:none;
    background:transparent;
}
hr {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.mt-80{
    margin-top: 80px;
}
.mb-80{
    margin-bottom: 80px;
}
.pt-80{
    padding-top: 80px;
}
.pb-80{
    padding-bottom: 80px;
}
.mb-10{
    margin-bottom: 10px !important;
}
.mt-30{
    margin-top: 30px;
}
.mb-30{
    margin-bottom: 30px;
}
h1,h2,h3,h4,h5,h6,p{
    margin: 0;
}
a{
    color: var(--soft-dark);
}
.medi-title{
    margin-bottom: 30px;
    h2,h1{
        font-size: 34px;
    }
    h3{
        font-size: 28px;
    }
    h4{
        font-size: 24px;
    }
    h5{
        font-size: 20px;
        font-family: var(--font-catamaran);
    }
    h6{
        font-size: 16px;
        font-weight: 700;
    }
    p{
        font-size: 14px;
        font-weight: 300;
        strong, b{
            font-weight: 700;
        }
    }
}
@media (min-width:992px) and (max-width:1199px){
    .mt-80{
        margin-top: 60px;
    }
    .mb-80{
        margin-bottom: 60px;
    }
    .pt-80{
        padding-top: 60px;
    }
    .pb-80{
        padding-bottom: 60px;
    }
    .mb-30{
        margin-bottom: 24px;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .medi-title{
        margin-bottom: 20px;
        h2,h1{
            font-size: 30px;
        }
        h3{
            font-size: 26px;
        }
        h4{
            font-size: 22px;
        }
        h5{
            font-size: 18px;
        }
    }
    .mt-30{
        margin-top: 20px;
    }
    .mb-30{
        margin-bottom: 20px;
    }
}
@media (min-width:576px) and (max-width:767px) {
    .medi-title{
        margin-bottom: 18px;
        h2,h1{
            font-size: 26px;
        }
        h3{
            font-size: 22px;
        }
        h4{
            font-size: 20px;
        }
        h5{
            font-size: 18px;
        }
    }
    .mt-30{
        margin-top: 18px;
    }
    .mb-30{
        margin-bottom: 18px;
    }
}
@media (max-width:575px) {
    .medi-title{
        margin-bottom: 14px;
        h2,h1{
            font-size: 22px;
        }
        h3{
            font-size: 20px;
        }
        h4{
            font-size: 18px;
        }
        h5{
            font-size: 16px;
        }
        p{
            font-size: 12px;
        }
        svg{
            height: 18px;
            width: auto;
        }
    }
    .mt-30{
        margin-top: 14px;
    }
    .mb-30{
        margin-bottom: 14px;
    }
}
.btn-main{
    display: flex;
}
.medih-btn{
    background-color: var(--primary);
    border: 1px solid var(--primary-color);
    color: white;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    text-transform: capitalize;
    &:hover{
        color: var(--color);
        background-color: transparent;
    }
}
/* PRODUCT DETAIL */
.aiz-editor-data > *,
.woocommerce-product-details__short-description > *{
    margin-bottom: 10px;
}















