@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");

body {
    margin: 0 auto;
    font-size: 16px;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    color: #000;
}

::selection {
    background-color: #118DD3;
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    color: #000;
}

a {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    outline: 0;
    color: #02E734;
    text-decoration: none;
}

a:hover {
    outline: none;
    color: #118DD3;
    text-decoration: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 9999s ease-in-out 0s;
    -webkit-text-fill-color: #000;
}

.wow {
    visibility: hidden;
}

.clear {
    clear: both;
}

img:not(table img) {
    max-width: 100%;
}

iframe {
    border: 0;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

p {
    font-size: 16px;
    color: #757576;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

figure {
    margin: 0 auto;
    display: block;
    text-align: center;
}

body.scroll-off {
    overflow: hidden;
}

.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-heading {
    color: #000000;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 0;
}

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.form-control::-webkit-input-placeholder {
    color: #9C9C9C;
}

.form-control::-moz-placeholder {
    color: #9C9C9C;
}

.form-control:-ms-input-placeholder {
    color: #9C9C9C;
}

.form-control:-moz-placeholder {
    color: #9C9C9C;
}

/*==================== User Dropdown Start ===================*/

.user_dropdown {
    display: inline-block;
}

.user_dropdown>a {
    color: #494949;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.user_dropdown img {
    height: 35px;
    width: 35px;
    min-height: 35px;
    min-width: 35px;
    border-radius: 50%;
}

.user_dropdown .dropdown-menu.show {
    display: block;
    left: auto;
    width: 160px;
    overflow-x: hidden;
    padding-bottom: 0;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    background-color: #fff;
    color: rgba(255, 255, 255, 0.6);
    right: 1px;
    box-shadow: 0 5px 12px rgba(60, 64, 67, 0.15);
    font-size: 12px;
    border-radius: 9px;
    border: 0;
}

.user_name>div {
    white-space: nowrap;
    max-width: calc(160px - 10px);
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
    color: #494949;
    text-transform: capitalize;
    font-size: 15px;
}

.user_name {
    padding: 0 10px;
    border-bottom: 1px solid #e9ecef;
}

.user_name small {
    color: #a2a2a2;
    text-transform: lowercase;
}

.user_name .user_email {
    margin-top: -10px;
}

.user_dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.user_dropdown ul li {
    display: block;
}

.user_dropdown ul li a {
    color: #494949;
    text-transform: capitalize;
    font-size: 14px;
    padding: 5px 10px;
    /* padding-left: 20px; */
    display: block;
    border-bottom: 1px solid #e9ecef;
}

.user_dropdown ul li a i {
    margin-right: 5px;
}

.user_dropdown ul li a:hover {
    color: #118DD3;
}


/*==================== User Dropdown End ===================*/


/* *** loader css start ****  */

.loader-wrapper {
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.loader:before {
    content: "";
    width: 100px;
    height: 100px;
    border: 5px solid rgba(0, 0, 0, 0.05);
    border-top-color: #118DD3;
    border-radius: 50%;
    animation: spin 1.5s infinite linear;
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader img {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* *** loader css end  ****  */


/*==================== Header Start ===================*/

#header {
    height: 85px;
    display: flex;
    align-items: center;
    z-index: 10;
    position: relative;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    background-color: #fff !important;
    -webkit-transition: 0.5s all ease-out;
    -o-transition: 0.5s all ease-out;
    transition: 0.5s all ease-out;
}

#header.is-sticky {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    height: 65px;
    -webkit-transition: 0.5s all ease-out;
    -o-transition: 0.5s all ease-out;
    transition: 0.5s all ease-out;
}

#header.is-sticky.awake {
    transform: translateY(0%);
    -webkit-transition: 0.5s all ease-out;
    -o-transition: 0.5s all ease-out;
    transition: 0.5s all ease-out;
}

#header.is-sticky.inner_pages_head,
#header.inner_pages_head {
    height: 65px;
}

#header>.container-fluid>.navbar {
    padding-left: 0;
    padding-right: 0;
}

#header .navbar-brand img {
    max-height: 45px;
    width: auto;
}

#header .navbar-expand-lg .navbar-nav .nav-item {
    margin-right: 10px;
}

#header .navbar-expand-lg .navbar-nav .nav-item:last-child {
    margin-right: 0px;
}

#header .nav-link {
    color: #333;
    font-weight: 400;
    position: relative;
    padding: 0;
    /* letter-spacing: 1px; */
    font-size: 16px;
}

#header .navbar-expand-lg .navbar-nav .nav-link:hover,
#header .navbar-expand-lg .navbar-nav .nav-item .nav-link.active {
    color: #02E734;
}

#header .navbar-expand-lg .navbar-nav .nav-link:hover:before,
#header .navbar-expand-lg .navbar-nav .nav-item .nav-link.active:before {
    color: #02E734;
    transform: scaleX(1);
}

#header .navbar-expand-lg .navbar-nav .nav-link:before {
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: #02E734;
    transform: scaleX(0);
    content: "";
    position: absolute;
    transition: transform 0.5s ease;
}

#header .dropdown-toggle::after {
    border: none;
    /* height: 8px;
  width: 11px; */
    /* background-image: url(../img/drop_arrow.png); */
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-top: 3px;
}

#header .extra_nav {
    margin-left: 30px;
}

#header .navbar-expand-lg .extra_nav .navbar-nav .nav-item {
    margin-right: 10px;
}


#header .extra_nav .nav-item:list-child {
    margin-right: 0px;
}


#header .extra_btn:hover {
    background-color: rgba(255, 255, 255, 0.24);
}

#header .header_filled_btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    background-color: #118DD3;
    color: #fff;
    border: 1px solid #118DD3;
}

#header .header_filled_btn:hover {
    background-color: #fff;
    color: #118DD3;
}

#header .header_border_btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    background-color: #fff;
    color: #118DD3;
    border: 1px solid #118DD3;
}

#header .header_border_btn:hover {
    background-color: #118DD3;
    color: #fff !important;
}

.header_border_btn:before,
.header_filled_btn:before {
    display: none;
}

#header .flag_ico {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop {
    padding-left: 32px;
    padding-right: 5px;
    width: auto;
    font-weight: 400;
    color: #000;
}


#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop img {
    width: 21px;
    height: auto;
    vertical-align: text-bottom;
}

#header .for_mobile {
    display: none;
}

#header .for_desktop {
    display: block;
}

#header .dropdown-item {
    font-weight: 300;
}


/*#header .dropdown-item:hover {
    background-color: #30383d;
    color: rgba(255,255,255,0.60);
}*/

.langugae_filter {
    position: relative;
}

.lang_dropdown {
    display: none;
    position: absolute;
    top: 100%;
    min-width: 100px;
    background-color: #fff;
    color: rgba(255, 255, 255, 0.6);
    right: 1px;
    box-shadow: 0 5px 12px rgba(60, 64, 67, 0.15);
    font-size: 12px;
    border-radius: 9px;
    border: 0;
    margin: 0;
    padding: 4px 11px 6px 10px;
}

.lang_country {
    position: relative;
    cursor: pointer;
}

.dropdown-toggle.lang_drop {
    border: 0;
    background: transparent;
}

#header .navbar-expand-lg .navbar-nav .currency-filter .nav-link.lang_drop {
    padding: 8px 0 8px 36px;
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop {
    padding: 8px 0 8px 36px;
    color: #8B96A5;
}

.lang_country {
    position: relative;
    padding: 5px 0px 5px 34px;
    color: #494949;
    border-bottom: 1px solid #e9e9e9;
}

.lang_country .flag_ico img {
    max-width: 19px;
}

.lang_country:last-child {
    border-bottom: 0;
}

.lang_country:hover {
    color: #118DD3;
    background-color: transparent;
}


.navbar-brand {
    font-size: 0;
    margin: 0 auto 0 0;
}

/* 
.langugae_filter:hover .lang_dropdown {
    display: block;
} */
/*==================== Header End ===================*/



/*==================== Footer login Signup Section ===================*/

.footer-logsign-link {
    position: relative;
}

.footer-logsign-link:after,
.footer-logsign-link:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    z-index: -1;
}

.footer-logsign-link:before {
    background-color: #df1f26;
    left: 0;
}

.footer-logsign-link:after {
    background-color: #ec2027;
    right: 0;
}

.footer-signin-link a,
.footer-signup-link a {
    height: 150px;
    align-items: center;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
    padding-right: 10px;
}

.footer-signup-link a {
    background-color: #df1f26;
    padding-left: 0px;
}

.footer-signin-link a {
    background-color: #ec2027;
}

.footer-signin-link a span,
.footer-signup-link a span {
    color: #fff;
    font-size: 36px;
    width: 100%;
}

.footer-signin-link a p,
.footer-signup-link a p {
    color: #fff;
    font-size: 15px;
    width: 100%;
    margin-bottom: 0;
}

.footer-signup-link a span.footer-link-arrow,
.footer-signin-link a span.footer-link-arrow {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    position: absolute;
    border-radius: 50%;
    background-color: #d42027;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 23px;
    transition: 0.5s all;
}

.footer-signup-link a:hover span.footer-link-arrow,
.footer-signin-link a:hover span.footer-link-arrow {
    background-color: #fff;
    color: #d42027;
}


/*==================== Footer login Signup Section ===================*/


/*==================== Footer ===================*/

.footer-block figure {
    margin: 0 0 25px;
    display: inline-block;
    max-width: 300px;
}

.cts_no {
    font-size: 15px;
    padding: 0 80px 0 0;
}

.cts_no p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

.copyright {
    padding: 15px 0;
    border-top: 1px solid #eeeeee1a;
    color: #ffffff;
    font-size: 14px;
    margin-top: 30px;
    text-align: center;
}

.newsletter-form .form-control {
    height: 45px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400;
    background: transparent;
    border: 0;
    border-radius: 3px;
    padding-right: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.relative-box {
    position: relative;
    top: 7px;
}

.relative-box .subscribe-btn {
    position: absolute;
    top: 0;
    right: 0;
    color: #827e7e;
    height: 45px;
    font-size: 20px;
    background: no-repeat;
}

.relative-box .subscribe-btn:hover {
    color: #d42027;
}

footer h6 {
    font-size: 17px;
    color: #fff;
    margin: 0 0 27px;
    position: relative;
}

ul.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.footer-links li {
    margin: 3px 0;
    padding: 0;
    list-style: none;
    margin-bottom: 14px;
}

ul.footer-links li {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

ul.footer-links li a {
    color: #fff;
}

ul.footer-links li a:hover {
    color: #02E734;
}

ul.footer-links.socialize li a {
    position: relative;
    padding-left: 25px;
}

ul.footer-links.socialize li a i {
    position: absolute;
    left: -9px;
    width: 30px;
    text-align: center;
    top: -4px;
    color: #959595;
    font-size: 17px;
}

.footer_wrapper {
    background: #012219;
    padding: 55px 0 0;
    border-top: 1px solid #eeeeee;
}

footer h6 {
    font-size: 20px;
    margin: 0 0 27px;
    font-weight: 600;
}

.subscribe_text {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}


.navbar {
    padding: 0;
    justify-content: right;
}


#top-button {
    display: inline-block;
    transition: background-color .3s,
        opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

#top-button.show {
    opacity: 1;
    visibility: visible;
}

.back_top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #118DD3;
    display: none;
    border: #118DD3 1px solid;
    z-index: 1;
    border-radius: 4px
}

.back_top span {
    position: relative;
    display: block;
    color: #fff;
    width: 100%;
    height: 100%;
}

.back_top span svg {
    width: 22px;
    height: 21px;
    position: absolute;
    left: 0;
    margin: 0 auto;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.back_top:hover {
    border-color: #118DD3;
    color: #118DD3;
    background-color: #fff;
}

.back_top:hover span {
    color: #118DD3;
}

.social-icons-group {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.social-icon a {
    border: 1px solid #fff;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon a:hover {
    border: 1px solid #02E734;
}

.social-icon svg {
    color: #fff;
}

.social-icon a:hover svg {
    color: #02E734;
}

/*==================== Footer ===================*/

/* #header .navbar-expand-lg .navbar-nav .nav-item.dropdown .nav-link {
    padding-right: 25px;
} */

.mobiledrop {
    position: absolute;
    right: 0px;
    top: 0;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background-color: transparent;
}

/* Custom Select */

.custom_checkbox input[type="checkbox"],
.custom_checkbox input[type="radio"] {
    height: 21px;
    width: 21px;
    min-width: 21px;
    margin: 0;
    padding: 0;
    opacity: 1;
    appearance: none;
    border: 2px solid #d0d0d0;
    border-radius: 5px;
    background: transparent;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
}

.custom_checkbox input[type="checkbox"]:checked,
.custom_checkbox input[type="radio"]:checked {
    border: 2px solid #1295d6;
    background: #1295d6;
}

.custom_checkbox input[type="checkbox"]:checked::before,
.custom_checkbox input[type="radio"]:checked::before {
    content: "\f00c";
    height: 100%;
    color: #fff;
    font-family: "Font-awesome-5-pro";
    position: absolute;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.custom_checkbox label {
    color: #555 !important;
}


/* Custom Radio */
.custom_radio [type="radio"]:checked,
.custom_radio [type="radio"]:not(:checked) {
    position: absolute;
    /* left: -9999px; */
    appearance: none;
}

.custom_radio [type="radio"]:checked+label,
.custom_radio [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.custom_radio [type="radio"]:checked+label:before,
.custom_radio [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #b5b5b5;
    border-radius: 100%;
    background: #fff;
}

.custom_radio [type="radio"]:checked+label::after,
.custom_radio [type="radio"]:not(:checked)+label::after {
    content: '';
    width: 10px;
    height: 10px;
    background: #F87DA9;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custom_radio [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom_radio [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.form-control {
    height: 45px;
    font-size: 16px;
    color: rgb(66 66 66 / 60%);
    font-weight: 400;
    background: transparent;
    border-radius: 6px;
    border: 1px solid #B1B1B1;
    padding: 15px 25px;
}

.form-control:focus {
    box-shadow: none;
}

.btn-primary {
    background-color: #118DD3;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    padding: 12px 30px;
    border: 1px solid #118DD3;
}

.btn-primary:hover {
    color: #118DD3;
    background-color: transparent;
    border: 1px solid #118DD3;
}

.custom_select_block .ms-dd .ms-dd-header {
    height: 45px;
    font-size: 16px;
    color: rgb(66 66 66 / 60%);
    font-weight: 400;
    background: transparent;
    border-radius: 6px;
    border: 1px solid #B1B1B1;
    overflow: hidden;
    width: 100%;
}

.custom_select_block .ms-dd .ms-dd-header .option-selected {
    height: 45px;
    padding: 10px 25px;
    width: 100%;
}

.custom_select_block .ms-dd .ms-list-option.option-selected,
.ms-dd .ms-optgroup ul .ms-list-option.option-selected {
    background: #ffffff;
}

.custom_select_block .ms-dd {
    width: 100%;
}

.custom_select_block .ms-dd .ms-dd-arrow {
    margin-top: -5px;
    right: 25px;
}


/* Select2 */



.floating-label {
    font-size: 16px;
    font-weight: 400;
    color: #475F7B;
    opacity: 1;
    top: 16px;
    left: 20px;
    pointer-events: none;
    position: absolute;
    transition: 240ms;
    margin-bottom: 0;
    z-index: 1;
}

.floating-diff .floating-label {
    opacity: 0;
}

.floating-diff.focused .floating-label {
    opacity: 1;
}

.form-group.focused .floating-label {
    opacity: 1;
    color: #7b7f82;
    top: 4px;
    left: 19px;
    font-size: 12px;
}

.form-group.focused select.form-control {
    padding-top: 21px;
}

.float-checkradio {
    background-color: #FFF;
    border: 1px solid #DFE3E7;
    border-radius: .267rem;
    padding: 8px 19px;
    transition: 0.3s;
    min-height: 55px;
}

.float-checkradio.focused {
    padding-top: 21px;
}

/*--------select2-css----*/
.select2Part .floating-label {
    opacity: 0;
}

.select2Part.focused .floating-label {
    opacity: 1;
}

.select2multiple .floating-label {
    opacity: 1;
}

.floating-group.focused .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding-bottom: 7px;
    margin: 0;
    padding-top: 17px;
    padding-left: 0px;
}


.select2-container--default .select2-selection--multiple .select2-selection__rendered:before {
    border: none;
    content: '';
    background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii00NzMgMjc3IDEyIDgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTQ3MyAyNzcgMTIgODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzhBOTNBNjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS00NzEuNiwyNzcuM2w0LjYsNC42bDQuNi00LjZsMS40LDEuNGwtNiw2bC02LTZMLTQ3MS42LDI3Ny4zeiIvPg0KPC9zdmc+DQo=') no-repeat 0 0;
    width: 12px;
    height: 8px;
    background-size: 100% 100%;
    transform: translateY(-50%);
    position: absolute;
    right: 18px;
    top: 26px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    left: auto;
    top: 0;
    right: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    padding-right: 30px;
    padding-left: 0px;
    background-color: #ebf0fe;
    margin-right: 5px;
    border: 0px solid #aaa;
    margin-top: 9px;
    padding-top: 3px;
    padding-bottom: 3px;

}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: #dc3545;
    color: #e4e4e4;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: #EE343A;
    color: #fff;
    padding: 1px;
    top: 7px;
    right: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    border-right: 0;
    justify-content: center;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-right: 10px;
    font-size: 13px;
    font-weight: 300;
    padding-left: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove span {
    line-height: 11px;
    height: 17px;
    /* width: 1px; */
    padding-right: 1px;
    border-radius: 50%;
    display: flex;
    font-weight: 300;
    justify-content: center;

}

.floating-group .select2-container--focus .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--focus .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--below .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--below .select2-selection--multiple {
    padding-top: 20px !important;
}

.floating-group .select2-container--above .select2-selection__rendered {
    padding-top: 20px !important;
}

.floating-group .select2-container--above .select2-selection--multiple {
    padding-top: 20px !important;
}

.floating-group .select2-selection--multiple .select2-selection__rendered {
    padding-top: 20px !important;
}

.select2-dropdown {
    border: 0px solid #aaa;
    box-shadow: 0 9px 9px rgba(0, 0, 0, 0.1);
    margin-top: 3px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #DFE3E7
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #DFE3E7;
    padding-left: 19px;
    padding-bottom: 9px;
}

.select2-container .select2-selection--multiple {
    min-height: 55px;

}

.select2-container .select2-selection--single {
    min-height: 55px;
    border: 1px solid #DFE3E7;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 16px;
    line-height: 1;
    margin-left: 0;
    padding-left: 0px;
    font-size: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    border: none;
    content: '';
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii00NzMgMjc3IDEyIDgiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTQ3MyAyNzcgMTIgODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6IzhBOTNBNjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS00NzEuNiwyNzcuM2w0LjYsNC42bDQuNi00LjZsMS40LDEuNGwtNiw2bC02LTZMLTQ3MS42LDI3Ny4zeiIvPg0KPC9zdmc+DQo=) no-repeat 0 0;
    width: 12px;
    height: 8px;
    background-size: 100% 100%;
    transform: translateY(-50%);
    position: absolute;
    right: 18px;
    top: 26px;
}

.select2-selection__rendered li:first-child {
    margin-left: 0;

}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 19px;
    padding-right: 20px;
    font-size: 15px;
    color: #000;
    padding-top: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-weight: 300;
}

.select2-results__option {
    font-size: 15px;
    font-weight: 300;

}

/*select2*/
.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 8px 19px;
    padding-top: 21px;
    min-height: 55px;
    font-size: 1rem;
    color: #475F7B;
    background-color: #FFF;
    border: 1px solid #DFE3E7;
    border-radius: .267rem;
    -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

select.form-control {
    padding-top: 10px;
    transition: 0.15s;
}

.form-control:focus {
    color: #475F7B;
    background-color: #FFF;
    border-color: #5A8DEE;
    outline: 0;
    box-shadow: none;
}



/* ======= Go to Top Button style ======= */
.progress-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
    background-color: #fff;
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.07);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.arrowTop {
    position: absolute;
    top: 16px;
    left: 17px;
}

.arrowTop path {
    fill: #1295d6;
}

/* .progress-wrap::after {
    position: absolute;
    font-family: 'themify';
    content: '\e648';
    text-align: center;
    line-height: 50px;
    font-size: 15px;
    font-weight: normal;
    color: transparent;
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
} */
.progress-wrap svg.progress-circle path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: transparent;
    stroke-width: 4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    transition: all 400ms linear;
}

/* .progress-wrap::after {
    color: #1e90ff;
} */
.progress-wrap svg.progress-circle path {
    stroke: #1e90ff;
}

/* End */

.dash_header {
    background-color: lightblue;
    padding: 10px;
}

.main_content {
    background-color: lightgrey;
    overflow-y: auto;
    /* Scroll if content overflows */
}

/* Menu */

.nav-item.has-megamenu.active .dropdown-menu {
    display: block;
}


.sideTabicon,
.closebtn {
    display: none;
}

@media (min-width: 992px) {
    /* .col-megamenu {
        padding-right: 127px;
    } */

    .megamenu {
        padding: 20px 30px;
        border-radius: 0;
        border: 0;
    }

    .dropdown-toggle>i {
        font-size: 11px;
    }

    .navbar .nav-item {
        padding: 10px 14px;

    }

    /* .mobileMegaDropDown {
        position: absolute;
        top: 50%;
        right: 0;
        background-color: transparent;
        color: #000;
        transform: translateY(-50%);
    } */
    .dropdown-menu {
        right: 0;
        left: auto;
    }

    .megamenu {
        border-radius: 0;
        border: 0;
    }

    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 30px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        background: #fff;
        border-radius: 0 0 15px 15px;
        box-shadow: 0px 25px 32px 0px rgba(11, 26, 49, 0.08);
        max-height: 500px;
        overflow: auto;
    }

    #header.is-sticky .navbar .megamenu {
        margin-top: 19px;
    }

    .Mobile-dd-toggle {
        display: none;
    }

    .navbar .nav-item {
        padding: 30px 14px;
    }

    .navbar .nav-item .dropdown-menu {
        display: none;
    }

    .dropdown:hover ul.dropdown-menu,
    .dropdown:hover ul.dropdown-menu.show {
        top: calc(100% + 5px);
        opacity: 1;
        visibility: visible;
        transform: rotateX(0) translateZ(0);
    }

    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }

    .navbar .has-megamenu {
        position: static !important;
    }

    .navbar .has-megamenu .mobileMegaDropDown {
        display: none;
    }

    /* .menutitle {
        margin: 0 0 30px;
        display: flex;
        align-items: center;
        height: 86px;

        position: relative;
        z-index: 1;
    } */

    /* .menutitle::before {
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.4);
        top: 0;
        left: 0;
        content: '';
        position: absolute;
        z-index: -1;
    } */
    .mega-column {
        width: 20%;
    }

    .cat-name {
        padding-bottom: 18px;
        margin-bottom: 14px;
        position: relative;
        color: #000;
        text-transform: capitalize;
        border-bottom: 1px solid #e8e8e8;
        cursor: text;
        font-size: 17px;
        font-weight: 500;
        display: block;
    }

    .cat-name::before {
        position: absolute;
        content: "";
        bottom: -2px;
        left: 0px;
        width: 50px;
        height: 2px;
        background: #02E734;
    }

    .mobMenuList li a {
        color: #555;
        font-size: 14px;
        display: block;
        padding: 5px 0;
    }

    .mobMenuList li a:hover,
    .mobMenuList li a.active {
        color: #02E734;
    }

    .col-megamenu {
        margin: 0 0 31px;
    }

    /* 
    .cat-name:hover {
        color: #02E734;
    } */

}

@media(max-width:991.98px) {

    .reset_botton {
        position: absolute;
        right: 13px;
        background: none;
        border: 0;
        font-size: 14px;
        color: #EA6E0D;
    }

    .scroll-off .sideTabicon {
        display: none;
    }

    .sideTabicon {
        cursor: pointer;
        display: block;
        margin-left: 20px;
        position: fixed;
        bottom: 20px;
        left: 0;
        z-index: 9999;
        background: #02e734;
        width: 50px;
        color: #000000;
        height: 50px;
        border-radius: 50%;
        text-align: center;
        line-height: 50px;
        animation: animate-pulse 3s linear infinite;
        cursor: pointer
    }

    @keyframes animate-pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(74, 255, 98, 0.7), 0 0 0 0 rgba(110, 255, 74, 0.7);
        }

        40% {
            box-shadow: 0 0 0 50px rgba(255, 109, 74, 0.0), 0 0 0 0 rgba(110, 255, 74, 0.7);
        }

        80% {
            box-shadow: 0 0 0 50px rgba(255, 109, 74, 0.0), 0 0 0 30px rgba(255, 109, 74, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(255, 109, 74, 0.0), 0 0 0 30px rgba(255, 109, 74, 0);
        }

    }

    #portfolioDisc {
        width: 100%;
        left: 0;
        height: 0;
        overflow-x: hidden;
        transition: all 0.2s linear;
        position: fixed;
        bottom: 0;
        background-color: #fff;
        z-index: 999;
        padding: 0;
        overflow-y: auto;
    }

    #portfolioDisc.showBar {
        height: calc(100lvh + 20px);
        padding: 65px 20px;
        padding-bottom: 30px;
    }

    .closebtn {
        position: absolute;
        top: 25px;
        right: 15px;
        display: block;
        font-size: 25px;
        color: #333;
    }

    /* filter button */

    .col-megamenu .mobMenuList {
        display: none;
        margin: 5px 0 0px 11px;
        padding: 0 0 11px 0;
        max-height: 218px;
        overflow: auto;
    }

    .col-megamenu.active .mobMenuList {
        display: block;

    }

    .col-megamenu {
        border-bottom: solid 1px rgb(201 201 201 / 25%);
        margin: 0 0 0 10px;
    }

    #header .navbar-nav .has-megamenu .dropdown-menu.megamenu .col-xl-4:last-child .col-megamenu {
        border-bottom: 0;
    }

    .menutitle {
        position: relative;
        margin: 0;
        /* background-image: none !important; */
        display: block;
        /* justify-content: space-between;
        align-items: center; */
    }

    .megamenu ul li a {
        font-size: 14px;
        display: block;
        padding: 7px 0;
        color: #555;
    }

    .Mobile-dd-toggle {
        width: 25px;
        cursor: pointer;
        /* background: #eee; */
        text-align: center;
        height: 24px;
        /* border-radius: 50%; */
        line-height: 21px;
        position: absolute;
        top: 12px;
        right: 6px;
        background: #f6f7f8;
        border-radius: 34px;
        border: 0;
        /* padding: 30px 20px; */
        pointer-events: none;
    }

    .Mobile-dd-toggle i {
        font-size: 10px;
        color: #666;
    }

    .cat-name {
        flex: auto;
        color: #000;
        font-size: 15px;
        padding: 15px 0;
        display: block;
    }

    .mobMenuList {
        padding: 0 0 0 29px;
    }

    #header .navbar-nav .has-megamenu .dropdown-menu {
        border: none;
        position: unset;
        padding-bottom: 0;
        padding-top: 0;
    }

    .navbar {
        justify-content: flex-start;
    }

    .mobileMegaDropDown.dropdown-toggle {
        position: absolute;
        top: 12px;
        right: 0;
        width: 31px;
        height: 31px;
        cursor: pointer;
        text-align: center;
        pointer-events: none;
    }

    .nav-item.has-megamenu.active .mobileMegaDropDown.dropdown-toggle i,
    .col-megamenu.active .Mobile-dd-toggle i {
        transform: rotate(-180deg);
    }

    .navbar-toggler:focus,
    .navbar-toggler:active {
        outline: none;
        box-shadow: none;
    }



    .navbar-toggler {
        width: 28px;
        height: 24px;
        position: relative;
        right: 0px;
        padding: 0;
        border: 0;
        z-index: 9;
        top: 4px;
    }

    .category-toggle.navbar-toggler {
        padding: 0;
        border: 0;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        font-size: 17px;
        color: #000;
        width: 100%;
        padding: 11px 0 15px;
        font-weight: 500;
        text-transform: uppercase;
        position: static;
        height: auto;
    }

    /* .navbar-toggler:before {
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        height: 2px;
        width: 22px;
        background: #ec2027;
        content: "";
    } */

    /* .navbar-toggler span {
        -webkit-transition: all 0.3s ease;
        -ms-transition: all 0.3s ease;
        transition: all 0.3s ease;
        position: absolute;
        bottom: 14px;
        right: 0;
        display: block;
        height: 2px;
        width: 22px;
        background: #ec2027;
    } */

    /* .navbar-toggler:after {
        position: absolute;
        top: 16px;
        right: 0;
        display: block;
        height: 4px;
        width: 22px;
        border-top: 2px solid #ec2027;
        content: "";
    } */


    /* Main Menu */
    header .collapse:not(.show) {
        display: block;
        position: fixed;
        top: 0;
        left: -300px;
        height: 100vh;
        overflow-y: auto;
        width: 250px;
        background: #fff;
        padding: 0 12px;
        padding-top: 45px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.5s;
        z-index: 99;
    }

    header .collapse:not(.show).menu-show {
        left: 0px;
    }


    .overlay {
        position: fixed;
        height: 100vh;
        width: 100%;
        background: rgba(0, 0, 0, 0.4);
        top: 0;
        left: 0;
        z-index: 1;
    }

    #header .navbar-expand-lg .navbar-nav .nav-item {
        margin-right: 0px !important;
        border-bottom: solid 1px rgb(201 201 201 / 25%);
        padding: 9px 0;
    }

    #header .navbar-expand-lg .navbar-nav .nav-link {
        padding: 5px 0;
        font-size: 16px;
    }

    #header .for_mobile {
        display: block;
        margin-top: 20px;
    }

    .login_borderBtn,
    .login_solidBtn {
        font-size: 15px;
        min-width: 100px;
    }

    header .collapse:not(.show) {
        width: 100%;
    }

    .navbar-toggler.menuClose-icon {
        position: absolute;
        top: 13px;
        right: 15px;
    }

    header .collapse:not(.show) {
        left: -100%;
        box-shadow: unset;
    }


}

.theme-btn {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 70px;
    border: 0;
    background: #02E734;
    color: #000;
    padding: 15px 26px 15px;
    text-align: center;
}

.theme-btn:hover {
    background: #118DD3;
    color: #fff;
}

/* hero-banner */
.herobg_wrapper {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 700px;
    display: flex;
    align-items: center;
}

.hero-heading {
    color: #FFF;
    font-size: 75px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero_text {
    color: #FFF;
    font-size: 29px;
    font-weight: 400;
    margin-bottom: 0;
}

.slider_details {
    max-width: 680px;
}

.hero_btn {
    color: #FFF;
    font-size: 20px;
    margin-top: 55px;
    font-weight: 400;
    border-radius: 6px;
    padding: 14px 30px;
    border: 2px solid #FFF;
    display: inline-block;
    background: rgba(194, 147, 69, 0.00);
    transition: all 0.5s ease-in-out;
}

.hero_btn:hover {
    background: #C576AC;
    border: 2px solid #C576AC;
    color: #fff;
}

.heroswiper .swiper-pagination {
    position: absolute;
    margin-top: 0;
}

.heroswiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    width: 10px;
    height: 10px;
    border-radius: 41px;
}

.heroswiper .swiper-pagination-bullet-active {
    background: #02E734 !important;
    width: 30px;
    height: 10px;
}

.hero-banner {
    height: 581px;
    position: relative;

}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    border: 1px solid rgba(15, 68, 89, 0.10);
    background: rgba(15, 68, 89, 0.77);
    backdrop-filter: blur(16.200000762939453px);
    padding: 40px 40px 54px;
}

.hero-offer {
    color: #02E734;
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 0;
}

.hero-text {
    color: #02E734;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.hero-para {
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 25px;
}

.shop-btn {
    padding: 10px 30px;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    background: #02E734;
    display: inline-block;
    border: 0;
}

.theme-btn.shop-btn:hover {
    background: #118DD3;
    color: #fff;
}

/* New Css 22/10/2024 */

.form-control.input-bgColor {
    background: #F5F6F8;
    border-color: #F5F6F8;
}

.contact-bg {
    border-radius: 26px;
    background: #FFF;
    box-shadow: 10px 0px 60px 0px rgba(38, 45, 118, 0.08);
    padding: 30px;
}

.contactImg {
    border-radius: 16px;
}

.contact-section {
    margin: 100px 0;
}

.contact-para {
    color: #616161;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 32px;
}

.contact-heading {
    color: #012219;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.form-control.input-bgColor {
    border-color: #F5F6F8;
    border-radius: 12px;
    background: rgba(240, 240, 243, 0.46);
}

.form-control.input-bgColor,
#Select {
    border-color: #F5F6F8;
    border-radius: 12px;
    background: rgba(240, 240, 243, 0.46);
    padding: 8px 20px;
    height: auto;
    min-height: 55px;
}

.submitbtn {
    text-align: right;
    margin-top: 30px;
}

.submitbtn .theme-btn {
    padding: 10px 30px;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    background: #02E734;
    display: inline-block;
    border: 0;
}

.submitbtn .theme-btn:hover {
    background: #118DD3;
    color: #fff;
}

.form-control {
    border-color: #F5F6F8;
    border-radius: 12px;
    background: rgba(240, 240, 243, 0.46);
    height: auto;
    min-height: 55px;
    border: 1px solid #ececec;
}

.form-floating>.form-control-plaintext~label::after,
.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-select~label::after {
    background-color: unset;
}

.about-heading {
    color: #ffffff;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-para {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 32px;
}

.aboutImg {
    border-radius: 16px;
}

.about-btn {
    padding: 10px 30px;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    background: #02E734;
    display: inline-block;
    border: 0;
}

.about-btn:hover {
    background: #fff;
    color: #000;
}

section.about-section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.about-bg-color {
    max-width: 100%;
    left: calc((100vw - 525px)/2);
    position: absolute;
    background: #118DD3;
    width: 100%;
    z-index: -1;
    top: 50%;
    height: 100%;
    border-radius: 36px 0 0 36px;
    transform: translateY(-50%);
}

.web-layout {
    overflow-x: hidden;
}

.form-control.form-select {
    background: rgba(240, 240, 243, 0.46) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
}

.product-category-title {
    color: #000;
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    border-radius: 0 0 16px 16px;
    background: rgba(240, 240, 243, 0.46);
    padding: 16px;
    transition: all .4s;
}

.product-category-img img {
    border-radius: 16px 16px 0 0;
    width: 100%;
    height: 265px;
    object-fit: cover;
}

.product-card-box:hover .product-category-title {
    background: #02E734;
}

.product-section-heading {
    color: #012219;
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 32px;
    text-align: center;
}

.productSlide {
    padding-bottom: 57px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #02E734;
}

/* Mega Menu Desktop */

.header_tabs .nav-tabs {
    flex-direction: column;
}

.header_tabs {
    background: #f5f6f7;
    padding-top: 0;
    height: 100%;
}

#header .header_bg_nav .header_tabs .nav-tabs .nav-item .nav-link {
    padding: 15px 20px 14px 50px;
    width: 100%;
    text-align: left;
    margin-right: 0;
    color: var(--theme-color);
    font-size: 18px;
    font-weight: 600;
    border: none;
    position: relative;
}


.header_tabs .nav-tabs .nav-item .nav-link.active {
    color: #02E734 !important;
    background: #fff !important;
}


.header_tabs .nav-tabs .nav-item .nav-link:hover {
    color: #02E734 !important;
}

/* .header_tabs .nav-tabs .nav-item .nav-link.active {
    color: #02E734 !important;
} */

/* #header .header_tabs .nav-tabs .nav-item .nav-link.active::before {
    content: "";
    border-radius: 0px 8px 8px 0px;
    background: var(--theme-color);
    width: 6px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 1px;
    transform: unset;
    bottom: unset;
    transition: 0;
} */

/* .header_tabs .nav-tabs .nav-item .nav-link:hover {
    background-color: #02E734;
} */

.mega-menu-box {
    padding: 6px 22px 10px 0;
    /* overflow-x: auto;
    max-height: 545px; */
}

.mega_menu_inner_box {
    padding-bottom: 36px;
}

.dropdown-menu.megamenu.desktop-megaMenu {
    padding: 0;
    overflow-y: auto;
    height: 420px;
    overflow-x: hidden;
}

.navbar .dropdown-menu.megamenu.desktop-megaMenu .nav-item {
    padding: 0;
    font-size: 16px !important;
    margin: 0 !important;
}

#header .navbar .dropdown-menu.megamenu.desktop-megaMenu .nav-link {
    letter-spacing: 0;
    padding: 11px 14px;
    display: block;
    width: 100%;
    border-radius: 0;
    text-align: left;
}

#header .navbar .dropdown-menu.megamenu.desktop-megaMenu .nav-link::before {
    display: none;
}

#header .navbar .dropdown-menu.megamenu.desktop-megaMenu .nav-link {
    letter-spacing: 0;
    font-weight: 600;
    border: 0;
    background: transparent;
}

.mega-menu-box {
    column-count: 4;
}

.has-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.has-submenu>li {
    /* border-left: 1px solid #dfdfdf; */
    padding: 0;
    margin: 0;
}

.has-submenu li a {
    font-size: 14px;
    color: #555555;
    display: block;
    position: relative;
    padding: 8px 0 8px 14px;
}

.has-submenu li a:hover,
.has-submenu li a.active {
    color: #02E734;
}

.has-submenu li a::before {
    content: "\f105";
    font-family: "Font-awesome-5-pro";
    position: absolute;
    font-weight: 300;
    top: 9px;
    left: 0;
    font-size: 14px;
}

/* END */

.products-listing {
    background-color: #f5f6f7;
    padding: 5px 0 50px;
}

.shop-widget {
    padding: 20px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    background: #fff;
    border: 1px solid #fff;
}

.shop-widget-title {
    padding-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #e8e8e8;
    margin: 0 0 18px;
    font-size: 18px;
    position: relative;

}

.shop-widget-title::before {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0px;
    width: 50px;
    height: 2px;
    background: #02E734;
}

.searchFrom .form-control {
    min-height: 47px;
    padding-top: 9px;
}

.btn-search {
    position: absolute;
    top: 8px;
    right: 8px;
    border: 0;
    color: #555;
    background: transparent;
}

.btn-search:hover {
    color: #118DD3;
}

.flex-Head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0 0 20px;
}

.sorting {
    display: flex;
    color: #555;
    flex-wrap: nowrap;
    white-space: nowrap;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

.sorting .form-control {
    border-color: #D2D2D2;
    border-radius: 7px;
    height: auto;
    min-height: 22px;
    padding: 5px 25px 6px 11px !important;
    font-size: 14px;
    line-height: 23px;
    padding-top: 0;
    background-position: right 8px center;
    background-size: 9px 10px;
}

.pageH1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 3px;
}

.pageH1 span {
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: #777;
}

.breadcrumb {
    margin: 0 0 30px 0;
    font-size: 13px;
}

.breadcrumb-item.active {
    color: #999;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #acacac;
}

.fileter_accordion {
    margin: 0
}

.fileter_accordion .accordion-item {
    border: 0;
}

.fileter_accordion .accordion-header {
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: 1px dotted rgb(217, 217, 217);
}

.accordion-item:last-of-type .accordion-header {
    border: 0;
}

.fileter_accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.double_range_slider_box {
    padding-bottom: 10px;
}

.fileter_accordion .accordion-body {
    padding: 12px 0;
}

.fileter_accordion .proCheck_hight {
    max-height: 210px;
    overflow: auto;
    position: relative;
}

.fileter_accordion .accordion-button {
    padding: 13px 0;
    font-weight: 500;
    color: #000;
}

.fileter_accordion .custom_checkbox label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fileter_accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: transparent;
    /* color: #118dd3; */
}

.listing_left_box button.accordion-button {
    padding-right: 0;
}

.accordion-button:not(.collapsed)::after {
    margin-top: 5px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_260_7078)'%3E%3Cpath d='M17 12L7 12' stroke='%2313101E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_260_7078'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.accordion-button::after {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5L12 19' stroke='%2313101E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19 12L5 12' stroke='%2313101E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 17px;
    margin-top: 5px;
}

.product_select_block {
    padding: 0;
    margin: 0 0 0 15px;
    list-style: none;
}

.product_select_block a {
    position: relative;
    color: #555;
    display: block;
    font-size: 15px;
    padding: 5px 0 5px 16px;
}

.product_select_block a.active {
    color: #118DD3;
}

.product_select_block a::before {
    content: "\f105";
    font-family: "Font-awesome-5-pro";
    position: absolute;
    font-weight: 300;
    top: 6px;
    left: 0;
    font-size: 15px;
}

.product-card {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    padding: 15px 18px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #fff;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;
    -ms-transition: all linear .3s;
    -o-transition: all linear .3s;
}

.product-media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding-top: 12px;
}

.product-name {
    margin-bottom: 3px;
    font-size: 18px;
    color: #000;
    text-transform: capitalize;
}

.brand {
    font-size: 13px;
    color: #118dd3;
    font-weight: 400;
}

.product-add {
    display: block;
    min-height: 43px;
    line-height: 2;
    font-size: 16px;
    border: 0;
}

.product-info {
    padding: 0;
    list-style: none;
    display: flex;
    margin: 15px -5px;
    flex-wrap: wrap;
    font-size: 14px;
}

.product-info li {
    padding: 0 5px;
    width: 50%;
    margin: 0 0 5px;
    color: #000;
    font-weight: 500;
    flex: 0 0 50%;
}

.product-info li span {
    font-weight: normal;
    color: #666;
}

.product-add {
    display: block;
    min-height: 43px;
    line-height: 2;
    font-size: 16px;
    border: 0;
    border-radius: 9px;
    text-align: center;
    color: #000;
    /* text-transform: uppercase; */
    background: #e7edf2;
    font-weight: 500;
    line-height: 45px;
}

.product-add:hover {
    background: #02E734;
    color: #000;
}

.shop-widget {
    padding-bottom: 0;
}

.itemsCount {
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: #777;
}

.modal-backdrop {
    --bs-backdrop-opacity: 0.88;
}

.btn-secondary {
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    min-width: 88px;
}


/* Contact Page */

.contact-card-box {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: center;
    /* border-radius: 16px;
    background: #FFF;
    box-shadow: 10px 0px 60px 0px rgba(38, 45, 118, 0.08);
    padding: 36px 30px;
    min-height: 180px; */
}

.contact-info-group {
    margin-top: 60px;
}

.contact-card-title {
    color: #000;
    font-size: 22px;
    font-weight: 500;
}

.contact-info {
    color: #616161;
    font-size: 15px;
    font-weight: 400;
}

.contact-icn {
    background: #02E734;
    color: #000;
    padding: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.contact-info {
    margin-top: 3px;
}

.contact-section.contact-page {
    margin-top: 60px;
}

.contact-info a {
    color: #000;
}

.contact-info a:hover {
    color: #02E734;
}

.contact-card-box:hover .contact-icn {
    background: #118DD3;
    color: #ffffff;
}

.contact-page .contact-bg {
    box-shadow: unset;
    border: 1px solid #e7e9eb;
}

/* about Page */

.contant-title h2 {
    color: #012219;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contant-para p {
    color: #616161;
    text-align: justify;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
}

.contant-page {
    margin: 46px 0;
}

.main-title h1 {
    color: #118DD3;
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 14px;
    border-bottom: 1px solid #118DD3;
}




@media (min-width: 992px) and (max-width: 1199.98px) {}

@media (max-width: 991.98px) {
    .contact-info-group {
        margin-top: 40px;
    }

    .contact-card-box {
        margin-bottom: 30px;
    }

    .contact-section.contact-page {
        margin-top: 20px;
    }

}

@media (max-width: 767.98px) {
    .contact-section.contact-page {
        margin-top: 40px;
    }


    .contact-card-box {
        margin-bottom: 24px;
    }

    .contact-card-box {
        justify-content: start;
    }

    .contant-title h2 {
        font-size: 28px;
    }

    .contant-page {
        margin: 30px 0;
    }

    .main-title h1 {
        font-size: 36px;
        margin-bottom: 22px;
    }

}

@media (max-width: 575.98px) {

    .contact-card-title {
        font-size: 20px;
    }

    .contact-card-box {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .contact-card-box {
        margin-bottom: 30px;
        text-align: center;
    }

    .contant-title h2 {
        font-size: 26px;
    }

    .main-title h1 {
        font-size: 32px;
        margin-bottom: 22px;
        padding-bottom: 12px;
    }

}


.form-floating>label {
    color: #666;
}

.loadBtn {
    text-align: center;
    margin: 20px auto;
}


/*  */
.noDataFound {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    justify-content: center;
    margin-block: 40px;
}

.noDataFound h4 {
    color: #000;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    justify-content: center;
}

/*  */

.swal2-popup .swal2-header {
    flex-direction: row;
    padding: 0;
}

.swal2-popup .swal2-title {
    margin: 0 .6em;
    font-size: 1em !important;
    font-weight: 500;
    text-align: left !important;
}

.swal2-header .swal2-icon {
    width: 2rem !important;
    min-width: 2rem !important;
    height: 2rem !important;
    margin: 0 !important;
}

.swal2-popup {
    width: auto !important;
    padding: 14px !important;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
    top: -.8em !important;
    left: -.5em !important;
    transform-origin: 2em 2em !important;
    border-radius: 4em 0 0 4em !important;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
    width: 0 !important;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
    top: 1.125em !important;
    left: .1875em !important;
    width: .75em !important;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
    top: .9375em !important;
    right: .1875em !important;
    width: 1.375em !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
    width: 2em !important;
    height: 2em !important;
}

.swal2-icon.swal2-success .swal2-success-fix {
    width: 0 !important;
}

.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
    top: -.25em !important;
    left: .9375em !important;
    transform-origin: 0 1.5em !important;
    border-radius: 0 4em 4em 0 !important;
}

/*  */

.contryList {
    position: relative;
}
.iti {
	width: 100%;
}

.contryList .form-floating label {
	left: 91px;
}


.contryList .form-floating.activefloat label {
	transform: scale(.85) translateY(-.5rem) translateX(0rem);
	color: rgba(var(--bs-body-color-rgb),.65);
	font-size: 16px;
	padding-block: 10px;
	left: 91px;
}
.iti--allow-dropdown input, .iti--allow-dropdown input[type="text"], .iti--allow-dropdown input[type="tel"], .iti--separate-dial-code input, .iti--separate-dial-code input[type="text"], .iti--separate-dial-code input[type="tel"] {
	padding-left: 100px !important;
}
.iti__country-list {
	z-index: 9 !important;
}
.iti__country {
	font-size: 14px;
}