@font-face {
    font-family: IRANSans;
    src: url('../../fonts/IRANSansWeb-Medium.eot');
    src: url('../../fonts/IRANSansWeb-Medium.eot?#iefix') format('embedded-opentype'),
    url('../../fonts/IRANSansWeb-Medium.woff2') format('woff2'),
    url('../../fonts/IRANSansWeb-Medium.woff') format('woff'),
    url('../../fonts/IRANSansWeb-Medium.ttf') format('truetype');
    font-weight: normal;
}

/**========================================================================
 *                                   Basic
 *========================================================================**/
/*================================ Fonts Face ==============================*/

/* latin-ext */
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Lato-light.woff2) format("woff2");
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: "Lato";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Lato.woff2) format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*================================  Css Variable ==============================*/

:root {
    /*--------------------- Main Colors ---------------------*/
    --primaryColor: #171d57;
    --secondaryColor: #faa702;
    --btnHoverColor: #0069d9;
    --btnColor: #007bff;
    /*----------------- BackGround Colors --------------------*/
    --grayBack: #f8f8f8;
    --grayBackL2: #ebebed;
    --lightBack: #ffffff;
    /*-----------------=---- Text Colors ---------------------*/
    --lightTextColor: #fff;
    --lightTextColorL2: #9fcde5;
    --grayTextColor: #555;
    --grayTextColorL2: #6c757d;
    --darkTextColor: #333;
    /*-----------------=---- Border Colors ---------------------*/
    --borderColor: #e8e8e8;
    /*-----------------=---- Border Radius ---------------------*/
    --borderRadius: 0.125rem;
    /*-----------------=---- Transition ---------------------*/
    --baseTransition: all ease-in-out 300ms;
    /*---------------------- Box Shadow ---------------------*/
    --fontIcons: "Font Awesome 6 Pro";
    /*--------------------- Text Shadow ---------------------*/
    --textShadowL1: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/*================================ Basic Style ==============================*/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--darkTextColor);
    font-family: "Lato", sans-serif;
    overflow-x: hidden;
    font-weight: 400;
    direction: ltr;
}

i {
    justify-content: center;
    align-items: center;
    line-height: 1;
    display: flex;
}

ul {
    padding: 0;
    margin: 0;
}

p {
    color: var(--grayTextColor);
    font-size: 0.9375rem;
    text-align: justify;
    margin-bottom: 1rem;
    line-height: 1.6rem;
}

a {
    transition: var(--baseTransition);
    color: var(--darkTextColor);
    text-decoration: none;
}

a:hover {
    color: var(--primaryColor);
}

/*=================================  Basic Class ===============================*/

.flex {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    display: flex;
}

.flex-column {
    flex-direction: column;
    display: flex;
    gap: 1rem;
}

.img-fluid {
    max-height: 100%;
}

/*================================  Colors ==============================*/

.bg-white {
    background-color: var(--lightBack);
}

.bg-gray {
    background-color: var(--grayBack);
}

/*================================  Scroll Bar ==============================*/

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 0.5rem;
}

::-webkit-scrollbar-thumb {
    background-color: var(--secondaryColor);
    border-radius: 0.0625rem;
}

::-webkit-scrollbar-track {
    background-color: var(--grayBack);
}

/*================================ Container Style ==============================*/

.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}

@media (min-width: 576px) {
    .container-sm,
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md,
    .container-sm,
    .container {
        max-width: 720px;
    }
}

@media (min-width: 1024px) {
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1340px) {
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1300px;
    }
}

/*================================ Typography ==============================*/

.simple-title {
    color: var(--primaryColor);
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.75;
    font-weight: 700;
}

.simple-sub-title {
    color: var(--lightTextColor);
    line-height: 1.5;
    font-weight: 400;
    font-size: 1rem;
}

/*================================ Buttons ==============================*/

.base-button {
    all: unset;
    background-color: var(--btnColor);
    transition: var(--baseTransition);
    color: var(--lightTextColor);
    padding: 0.125rem 1.25rem;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 0.25rem;
    align-items: center;
    text-align: center;
    width: fit-content;
    min-height: 40px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    gap: 0.375rem;
}

.base-button:hover {
    background-color: var(--btnHoverColor);
    color: var(--lightTextColor);
}

/*================================ Figure And Thumbnail ==============================*/

figure {
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0;
}

figure img {
    max-height: 100%;
    max-width: 100%;
}

/**========================================================================
 *                              Main Section
 *========================================================================**/
/*============================== location On Website ============================*/

.location-on-website {
    background-color: var(--firstColor);
    background-repeat: no-repeat;
    background-position: center 40%;
    background-size: cover;
    margin-bottom: 1.5rem;
    padding: 100px 10px;
    position: relative;
    text-align: center;
}

.location-on-website:before {
    background-color: rgba(21, 27, 84, 0.3);
    backdrop-filter: blur(0.5px);
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    right: 0;
    top: 0;
}

.location-on-website-content {
    position: relative;
    z-index: 0;
}

.location-on-website-title {
    color: var(--lightTextColor);
    font-weight: 600;
    font-size: 3rem;
}

.page-breadcrumb {
    border-bottom: 0.125rem solid var(--secondaryColor);
    margin: 0 auto 0.625rem auto;
    justify-content: flex-start;
    text-transform: uppercase;
    font-size: 0.9375rem;
    align-items: center;
    width: fit-content;
    padding: 0.25rem;
    flex-wrap: wrap;
    display: flex;
    gap: 10px;
}

.page-breadcrumb a {
    transition: all ease-in-out 200ms;
    color: var(--lightTextColor);
}

.page-breadcrumb a:hover {
    color: var(--secondaryColor);
}

.separator {
    color: var(--lightTextColor);
}

.page-breadcrumb .last {
    color: var(--lightTextColor);
}

/*================================== Aside Section ==============================*/
/*================================ Sidebar Tab Buttons ==============================*/

.nav-pills {
    border-radius: var(--borderRadius);
    flex-direction: column;
    overflow: hidden;
    display: flex;
}

.nav-pills .nav-item .nav-link {
    border-bottom: 0.0625rem solid var(--lightBack);
    background-color: var(--grayBackL2);
    transition: var(--baseTransition);
    color: var(--darkTextColor);
    border-radius: 0;
    font-size: 1rem;
    line-height: 2;
    width: 100%;
}

.nav-pills .nav-item .nav-link.active,
.nav-pills .nav-item .nav-link:hover {
    background-color: var(--secondaryColor);
    color: var(--lightTextColor);
}

/*================================ SideBar Contact ==============================*/

.sidebar-contact {
    background-color: var(--primaryColor);
    border-radius: var(--borderRadius);
    color: var(--lightTextColor);
    padding: 1.25rem 1rem;
    text-align: center;
}

.sidebar-contact .title {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.sidebar-contact p {
    color: var(--lightTextColorL2);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    text-align: center;
}

.sidebar-contact a {
    color: var(--lightTextColor);
    font-size: 1.375rem;
}

.sidebar-contact a:hover {
    color: var(--lightTextColorL2);
}

/*================================ Sidebar Form ==============================*/

.sidebar-form {
    background-color: var(--grayBackL2);
    padding: 1.25rem 1rem;
}

.sidebar-form .title {
    color: var(--primaryColor);
    font-size: 1.25rem;
    text-align: center;
}

.form-control {
    border-radius: var(--borderRadius);
    transition: var(--baseTransition);
}

.form-control:focus,
.form-control:hover {
    box-shadow: none;
    border-color: var(--secondaryColor);
}

.form-container :placeholder-shown {
    color: var(--grayTextColorL2);
}

/*================================ Main Content ==============================*/
/*================================ Tab Panel ==============================*/

.tab-content {
    background: var(--grayBack);
    border: 1px solid var(--borderColor);
    border-bottom: 5px solid var(--secondaryColor);
    border-top: 5px solid var(--secondaryColor);
    border-radius: var(--borderRadius);
    padding: 1.25rem;
}

/*================================ Table ==============================*/

.tab-content table{
    font-size: 0.8375rem;
}

/*================================ Categories Card ==============================*/

.card-title,
.card-title a {
    transition: var(--baseTransition);
    text-shadow: var(--textShadowL1);
    color: var(--primaryColor);
    font-weight: bold;
    font-size: 1rem;
}

.card-title:hover,
.card-title a:hover {
    color: var(--secondaryColor);
}

.card-description {
    color: var(--darkTextColor);
    margin-bottom: 0.5rem;
    text-align: justify;
}

.card-items {
    list-style: none;
}

.card-items li {
    padding: 0.125rem 0 0.125rem 1rem;
    position: relative;
}

.card-items li a {
    color: var(--thirdColor);
    font-size: 0.875rem;
}

.card-items li a:hover,
.card-items li:has(a:hover)::before {
    color: var(--secondaryColor);
}

.card-items li::before {
    transition: var(--baseTransition);
    font-family: var(--fontIcons);
    color: var(--thirdColor);
    font-size: 0.75rem;
    position: absolute;
    content: "\e122";
    left: 0.125rem;
    top: 0.4375rem;
}

/*================================ Partners Slider ==============================*/

.partner-slider-item figure {
    padding: 10px;
    height: 125px;
}

.partner-slider-item img {
    object-fit: contain;
    max-height: 100%;
    max-width: 100%;
}

/*================================ Seo Content Section ==============================*/

.seo-content .title {
    color: var(--darkTextColor);
    font-size: 0.875rem;
    font-weight: bold;
}

.seo-content p {
    color: var(--grayTextColorL2);
    font-size: 0.75rem;
    line-height: 1.6;
}

/*========================= Product Description || Product Single Page =========================*/

.products-description {
    flex-direction: column;
    display: flex;
    gap: 1rem;
}

.products-description .title {
    color: var(--primaryColor);
    font-size: 1.25rem;
    font-weight: bold;
}

.products-description p {
    color: var(--darkTextColor);
    text-align: justify;
    margin-bottom: 0;
}

.products-description ul {
    list-style: none;
}

.products-description ul li {
    padding: 0.125rem 0 0.125rem 2rem;
    position: relative;
}

.products-description ul li::before {
    transition: var(--baseTransition);
    font-family: var(--fontIcons);
    position: absolute;
    font-size: 0.75rem;
    content: "\e122";
    left: 1.125rem;
    top: 0.4375rem;
}

/**========================================================================
 *                                 Responsive
 *========================================================================**/
/*================================  LG Monitor ==============================*/

@media (max-width: 1200px) {
    .page-breadcrumb-section {
        padding: 180px 0 4.375rem;
    }
}

/*================================  MD Monitor  ==============================*/

@media (max-width: 1023px) {
    .page-breadcrumb-section {
        padding: 9.375rem 0 4.375rem;
    }

    .page-breadcrumb-section.sm {
        padding: 4.625rem 0 1.625rem;
    }
}

/*================================ Tablet ==============================*/

@media (max-width: 767px) {
    .page-breadcrumb-section {
        padding: 120px 0 3.125rem;
    }
}


.opacity-0
{
    opacity: 0;
}
.swal2-container.swal2-center
{
    z-index: 9999;
}
.filter-card-item .feature-thumb {
    height: 260px;
}
.captcha_img
{
    position: absolute;
    left: 3px;
    bottom: 15px;
}
.captcha_input
{
    padding-left: 70px;
}
.filter-card-item .feature-thumb img.img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
}

.filter-card-item .feature-thumb img.img-fluid2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.swal2-header {
    padding: 0 10px !important;
}

.swal2-popup {
    width: 350px !important;
}

.swal2-icon {
    width: 3em !important;
    height: 3em !important;
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
    height: 5px !important;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
    top: 30px !important;
    left: 5px !important;
    width: 15px !important;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
    width: 35px !important;
    top: 25px !important;
    right: 2px !important;
}

.swal2-icon .swal2-icon-content {
    font-size: 2.75em !important;
}

.swal2-title {
    font-size: 1.5rem !important;
}

.swal2-html-container {
    font-size: 15px !important;
}

.swal2-styled.swal2-confirm {
    font-size: 15px !important;
}

.swal2-content {
    padding: 0 0 !important;
}


.logo-wrapper img,
.footer-logo img {
    width: 200px;
    height: 60px;
    object-fit: contain;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.menu_lang {
    min-width: 70px !important;
}

.option_card {
    position: relative;
    height: 100%;
    display: flex;
    margin-top: 5px;
    padding: 10px;
    border-radius: 2px;
    box-shadow: 0 0 2px 0 #6d6d6d75;
}

.option_card .img {
    position: relative;
    width: 80px;
    height: 100%;
    background: var(--orginal_rgb_2);
    overflow: hidden;
    display: inline-table;
}

.option_card .img img {
    width: 80px;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s;
    -webkit-transition: all 0.6s;
}

.option_card .img:before {
    content: '';
    display: block;
    position: absolute;
    width: 1px;
    height: 75%;
    background: #6d6d6d75;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.option_card .img:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to left bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .1) 50%);
    background: -webkit-linear-gradient(to left bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .1) 50%);
    background: -moz-linear-gradient(to left bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .1) 50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .6s, visibility .6s;
    -webkit-transition: opacity .6s, visibility .6s;
}

.option_card:hover .img:after {
    opacity: 1;
    visibility: visible;
}

.option_card .content {
    width: calc(100% - 80px);
    padding-left: 10px;
}

.option_card .content h5 {
    color: #000;
    font-size: 15px;
}

.option_card .content h5 {
    color: #666;
    font-size: 14px;
}

.option_card .btn-md {
    padding: 7px 10px;
}

.option_card .cart-count {
    padding: 0;
}

.option_card .cart-count .btn-md {
    width: 35%;
}

.option_card .cart-count .btn-md i {
    color: #fff;
}

.option_card .cart-count .cart-input {
    width: 30%;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

article .feature-img {
    position: relative;
    width: 100%;
    height: 175px;
}

article .new-img-fluid {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
}

article .img-fluid2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;;
}

article .service-img-fluid {
    width: 100%;
    height: 130px;
    object-fit: contain;
}

article .text_card_service {
    min-height: 140px;
}

article .text_card_blog {
    min-height: 160px;
}

.blog-card .blog-title {
    font-size: 18px;
}

article .text_card_service p {
    font-size: 14px;
    margin-bottom: 0;
}

.blog-card-bottom .blog-title {
    font-size: 18px;
}

.blog-card-bottom .text-secondary {
    font-size: 15px;
}

.blog-card .small-btn-meta {
    font-size: 13px;
}

.lang_menu {
    width: 30px;
}

.lang_menu1:after {
    display: none;
}

form select.error,
form input.error,
form textarea.error {
    border-color: #9b0606 !important;;
}

form label.error,
#frm_l label.error {
    color: #9b0606 !important;
    font-size: 13px !important;
    margin-bottom: 0 !important;
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 100%;
}

.w-200px {
    width: 200px !important;
}

.h-200px {
    height: 200px !important;
}

.obj-fit-contain {
    object-fit: contain !important;
}

.iframe_footer {
    width: 100% !important;
    height: 200px !important;
}

form .input-field {
    position: relative;
}

.pointer {
    cursor: pointer;
}

.pay_check_level {
    width: 100%;
    height: 100px;
    text-align: center;
    padding: 10px;
}

.pay_check_level img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    box-shadow: 0 0 2px 0 #66666660;
    padding: 10px;
    border-radius: 3px;
}

.pay_check_level.checked img {
    box-shadow: 0 0 2px 0 #00ab28;
    background: #00ff3c30;
}

.gallery_card_index {
    position: relative;
    width: 100%;
    height: 200px;
}

.gallery_card_index img {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
}

.gallery_card_index img.img-fluid {
    object-fit: contain;
    z-index: 9;
}

.gallery_card_index img.img-fluid2 {
    object-fit: cover;
    filter: blur(5px);
}

.gallery_card_index h5 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 9;
    background: #00000050;
    color: #fff;
    padding: 10px;
    margin: 0;
}

.fancybox__caption {
    width: 100%;
}

.fancybox__caption * {
    color: #fff !important;
    text-align: justify !important;
    text-align-last: left !important;
}

.receipt {
    overflow-x: auto;
}

.receipt .container {
    box-shadow: 0 0 2px 0;
    padding: 0;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    min-width: 1200px;
}

.receipt .header {
    padding: 15px 10px;
    background: #f5f5f5;
    border-radius: 5px 5px 0 0;
}

.receipt .footer {
    padding: 15px 10px;
    background: #f5f5f5;
    border-radius: 0 0 5px 5px;
}

.receipt .img_receipt {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 5px;
    filter: drop-shadow(0 0 2px #00000050);
}

.receipt p.in_p {
    background: #f6f6f6;
    font-size: 12px;
}

.receipt p.in_p span {
    font-size: 12px;
}


.wat_sapp {
    position: fixed;
    text-align: center;
    bottom: 55px;
    left: 25px;
    z-index: 999;
    animation-name: text-focus-in;
    animation-duration: 2.2s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-fill-mode: backwards;
}

.wat_sapp img {
    width: 55px;
    border-radius: 50px !important;
    box-shadow: 0 0 50px 11px #ffa500;
    margin-bottom: 5px;
    animation: pulse 2s infinite;
}

.wat_sapp p {
    animation: pulse2 2s infinite;
    color: ;
}

.tbl_price th,
.tbl_price td {
    font-size: 15px !important;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 165, 0, 1);
    }
    90% {
        -webkit-box-shadow: 0 0 35px 20px rgba(255, 165, 0, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 165, 0, 1);
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 1);
    }
    90% {
        -moz-box-shadow: 0 0 35px 20px rgba(255, 165, 0, 0);
        box-shadow: 0 0 35px 20px rgba(255, 165, 0, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
    }
}


@-webkit-keyframes pulse2 {
    0% {
        text-shadow: 0 0 0 rgba(255, 165, 0, 1);
    }
    90% {
        text-shadow: 0 0px 50px rgba(255, 165, 0, 0);
    }
    100% {
        text-shadow: 0 0 0 rgba(255, 165, 0, 0);
    }
}

@keyframes pulse2 {
    0% {
        text-shadow: 0 0 0 rgba(255, 165, 0, 1);
    }
    90% {
        text-shadow: 0 0px 50px rgba(255, 165, 0, 0);
    }
    100% {
        text-shadow: 0 0 0 rgba(255, 165, 0, 0);
    }
}


.shopping-cart-left table th, .shopping-cart-left table td {
    padding: 12px 15px;
}

.meta-checkbox label {
    position: relative;
}

.meta-checkbox label input {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.meta-checkbox label .input-circle {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid transparent;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.meta-checkbox label .input-circle::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    background-color: #111010;
    border-radius: 50%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.meta-checkbox label input:checked ~ .input-circle::before {
    background: #FC0012;
}

.meta-checkbox label input:checked ~ .input-circle {
    border-color: #FC0012;
}


.meta-checkbox label {
    color: #7A7A7A;
    font-weight: 400;
    position: relative;
}

.meta-checkbox label input {
    width: auto;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.meta-checkbox label .toggle-switch {
    width: 28px;
    height: 16px;
    background: #F6F6F6;
    border: 1px solid #E9E9E9;
    display: inline-block;
    border-radius: 30px;
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    margin-right: 6px;
    position: relative;
}

.meta-checkbox label .toggle-switch::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #7A7A7A;
    border-radius: 50%;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}
.meta-checkbox label input:checked ~ .toggle-switch
{
    border-color: #f4a717;
}
.meta-checkbox label input:checked ~ .toggle-switch::before {
    background: #f4a717;
    left: auto;
    right: 3px;
}
.listing-btn1
{
    font-weight: 500;
    background: transparent;
    border: 0;
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 4px;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    font-size: 14px;
}
.listing-btn1 span {
    width: 30px;
    height: 30px;
    background: #f4a717;
    -webkit-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    font-size: 16px;
}
.listing-btn1:hover span {
    background: #111010;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
@media print {
    @page {
        size: landscape;
        margin: 10px;
    }

    body {
        background: #fff !important;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .d-none-print {
        display: none !important;
    }

    .receipt {
        padding: 5px !important;
        margin: 5px !important;
        overflow-x: unset !important;
    }

    .receipt .container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        min-width: unset !important;
    }

    .receipt .header {
        background: #f5f5f5 !important;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .receipt .footer {
        background: #f5f5f5 !important;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .receipt p.in_p {
        background: #f6f6f6 !important;
        font-size: 12px !important;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }

    .receipt p.in_p span {
        font-size: 12px !important;
    }

    .text-success {
        color: green !important;
        color-adjust: exact;
        -webkit-print-color-adjust: exact
    }

    .text-danger {
        color: red !important;
        color-adjust: exact;
        -webkit-print-color-adjust: exact
    }
}

@media (max-width: 1200px) {

}

@media (max-width: 991px) {

}

@media (max-width: 767px) {
    table img {
        width: 100px;
        height: 100px !important;
        max-width: 100px !important;
        object-fit: contain;
    }

    .lang_menu {
        width: 25px;
    }
    .listing-btn1 span
    {
        width: 25px;
        height: 25px;
    }
    .listing-btn1 span i
    {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .img_payment {
        position: absolute;
        right: 5px;
        top: 5px;
    }

    .at-hero-title .at-subtitle {
        font-size: 15px;
    }

    .at-hero-title h1 {
        font-size: 20px;
    }

    .dl-hero-single {
        padding: 180px 0;
    }

    .at-search-box {
        padding: 0;
        margin-top: -20px;
    }
    .dealership-hero .swiper-pagination
    {
        bottom: 15px;
    }
    .pt-mobile-15px {
        padding-top: 15px !important;
    }

    .w-mobile-100 {
        width: 100% !important;
    }

    .iframe_footer {
        height: 150px !important;
    }
    .lang_menu {
        width: 21px;
    }
    .listing-btn1 span
    {
        width: 21px;
        height: 21px;
    }
    .listing-btn1 span i
    {
       font-size: 14px;
    }
}
.orderdatabtn{
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    border-radius: 0;
    background: #111010;
    padding: 5px;
}
.modal .at-search-box{
    margin: unset;
}
.modal .at-search-box-filter{
    padding: 15px 15px;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    margin-top: 0!important;
}
.orderdatabtn p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}
.orderdatabtn .btn {
    border-radius: 50%;
    padding: 10px 15px;
}
.modal form .input-field{
    width:100%!important;
    margin-left:0!important;
    margin-top:5px;
}
.modal form{
    display:block!important;
}

.hovereffect {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
    border-radius: 5px;
}

.hovereffect .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    background-color: rgba(75,75,75,0.7);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hovereffect:hover .overlay {
    background-color: rgba(48, 152, 157, 0.4);
}

.hovereffect img.img-responsive {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
}
.hovereffect img.img-responsive2 {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hovereffect h2 {
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: absolute;
    margin-bottom: 0;
    right: 0;
    width: 100%;
    top: 50%;
    font-size: 14px;
    padding: 10px 5px;
    background: rgba(0, 0, 0, 0.6);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.hovereffect:hover h2 {
    top: 2px;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
}

.hovereffect a.info {
    display: inline-block;
    text-decoration: none;
    padding: 7px 14px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    font-weight: normal;
    margin: 2px;
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 5px;
}

.hovereffect:hover a.info {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.hovereffect a.info:hover {
    box-shadow: 0 0 5px #fff;
}
.blog-single-area img,
.about-left img
{
    max-width: 100%;
    height: auto!important;
}
.paginate-div nav
{
    display: inline-block!important;
}
.ul_category_product ul {
    padding-left: 10px;
    padding-right: 0;
}
.ul_category_product ul li {
    margin-top: 10px;
}
.ul_category_product ul li a {
    color: #666;
}
.ul_category_product ul li a.active {
    color: var(--bs-link-color);
}
.open_filter
{
    position: fixed;
    bottom: 60px;
    right: 40px;
    width: 45px;
    height: 45px;
    background: #f4a717;
    color: #fff;
    border-radius: 4px;
    display: none;
    -webkit-transition: initial;
    transition: initial;
    z-index: 999;
}
@media (max-width: 768px) {
    .ul_category_product
    {
        display: none;
    }
    .ul_category_product.open
    {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 99;
        margin-top: 0;
    }
    .open_filter
    {
        display: block;
    }
}
.h-260px
{
    height: 200px!important;
}
@media(min-width: 992px)
{
    .text-lg-right
    {
        text-align: right!important;
    }
    .text-lg-left
    {
        text-align: left!important;
    }
}


.collapse-panel {
    display: block;
    width: 100%;
    border: 1px solid #66666650;
    border-radius: 5px;
    margin-top: 5px;
}

.collapse-panel h6 {
    width: 100%;
    cursor: pointer;
    padding: 15px 10px;
    margin-bottom: 0;
}

.collapse-panel.active h6 {
    background: #e7f1ff;
    color: #0c63e4;
}

.collapse-panel h6 a {
    display: block;
}

.collapse-panel .panel-content {
    max-height: 0;
    overflow: hidden;
    transition: all .2s ease;
    padding: 10px;
}

.collapse-panel.active .panel-content {
    max-height: 1000px;
}

.collapse-panel .panel-content {
    display: none;
}

.collapse-panel.active .panel-content {
    display: block;
}

.editor-text * {
    line-height: 2.2;
    font-size: 16px;
}

.editor-text img{
    max-width:100%;
    border-radius: 5px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    margin:20px 0px 20px 0px;
}

.editor-text p {
    line-height: 2.2;
    font-size: 16px;
    text-align: justify;
}

.editor-text li {
    line-height: 2.2;
    font-size: 16px;
    text-align: justify;
}

.editor-text h1 {
    line-height: 2.2;
    font-size: 20px;
    text-align: justify;
}

.editor-text h2 {
    line-height: 2.2;
    font-size: 20px;
    text-align: justify;
}

.editor-text h3 {
    line-height: 2.2;
    font-size: 18px;
    text-align: justify;
}

.editor-text h4 {
    line-height: 2.2;
    font-size: 18px;
    text-align: justify;
}

.editor-text h5 {
    line-height: 2.2;
    font-size: 18px;
    text-align: justify;
}

.editor-text h6 {
    line-height: 2.2;
    font-size: 18px;
}