:root {
    --white-color: #fff;
    --gray-1: #888;
    --gray-2: #dee2e6;
    --gray-3: #ccc;
    --gray-4: #ddd;
    --gray-5: #eee;
    --gray-6: #f4f4f4;
    --heading-color: #333;
    --btn-hover: #05964A;
    --yellow-color: #ffd800;
    --green-color: #198754;
    /* Bootstrap Overrides */
    --bs-primary: #00AA51;
    --bs-body-color: #666;
    --bs-text-color: #666;
    --bs-font-size-base: 15px;
    --bs-emphasis-color: #666;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-size: var(--bs-font-size-base);
    color: var(--bs-text-color);
    font-family: "Roboto", sans-serif;
}
a, img, button, i,
input[type="submit"] {
    transition: all 0.3s ease-in-out;
}
img{
	max-width: 100% !important;
	height: auto !important;
}
a{
    color: var(--bs-primary);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
a strong{
    color: var(--bs-text-color);
    transition: all 0.3s ease-in-out;
}
a:hover{
    color: var(--btn-hover);
}
a:hover strong{
    color: var(--bs-primary);
}
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}
h1 {
    font-size: 2rem;
}
h2,
.font-28 {
    font-size: 1.75rem;
}
h3,
.font-24 {
    font-size: 1.5rem;
}
h4,
.font-20 {
    font-size: 1.25rem;
}
h5,
.font-16 {
    font-size: 1rem;
}
h6,
.font-14{
    font-size: 0.75rem;
}
hr{
    margin: 1.5rem 0;
    background-color: #bbb;
}
.clearfix{
    clear: both;
}
.padding-sm-sec{
    padding: 60px 0;
}
.padding-sec{
    padding: 80px 0;
}
.padding-lg-sec{
    padding: 100px 0;
}
.pt-sec{
    padding-top: 80px;
}
.pb-sec{
    padding-bottom: 80px;
}
.txt-white,
.txt-white p, .txt-white a,
.txt-white h1, .txt-white h2,
.txt-white h3, .txt-white h4,
.txt-white h5, .txt-white h6{
    color: var(--white-color) !important;
}
.txt-white hr{
    border-color:var(--white-color) !important;
}
.img-wrap{
    border-radius: 20px;
    border: 8px solid var(--white-color);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.container-sm{
    max-width: 1000px;
}

/**** Owl Carousel ****/

.owl-carousel {
    /*margin-bottom: 40px;*/
    position: relative;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    width: 46px;
    height: 46px;
    color: var(--white-color) !important;
    background-color: var(--bs-primary) !important;
    border-radius: 50%;
    font-size: 42px !important;
    font-weight: 500 !important;
    line-height: 42px !important;
    transition: all 0.3s ease 0s;
    margin: 0;
    position: absolute;
    top: calc(50% - 23px);
    box-shadow: rgba(0, 0, 0, 0.075) 0px 0.125rem 0.25rem;
    display: inline-block;
}

.owl-carousel .owl-nav button.owl-next {
    right: -30px;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -30px;
}

.owl-carousel .owl-nav button.owl-next span,
.owl-carousel .owl-nav button.owl-prev span {
    display: inline-block;
    position: relative;
    line-height: 46px;
    font-family: 'Exo', sans-serif;
    top: -2px;
}

.owl-carousel .owl-nav button.owl-next span {
    right: -1px;
}

.owl-carousel .owl-nav button.owl-prev span {
    left: -1px;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    color: var(--white-color);
    background: var(--btn-hover);
}

.owl-carousel .owl-dots {
    text-align: center;
    /* position: absolute;
    bottom: -46px;
    left: 0;
    right: 0; */
    margin-top: 12px;
}

.owl-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    background: var(--heading-color);
    border: none;
    border-radius: 50%;
    position: relative;
    z-index: 9;
    margin: 0 6px;
}

.video-gallery-sec .owl-carousel .owl-dots .owl-dot {
    background: var(--heading-color) !important;
    border: 1px solid var(--heading-color) !important;
}

.txt-white .owl-carousel .owl-dots .owl-dot {
    background: transparent;
    border: 1px solid var(--white-color);
}

.owl-carousel .owl-dots .owl-dot.active {
    background: var(--bs-primary);
}

.video-gallery-sec .owl-carousel .owl-dots .owl-dot.active {
    background: var(--bs-primary) !important;
    border: 1px solid var(--bs-primary) !important;
}

.txt-white .owl-carousel .owl-dots .owl-dot.active {
    background: var(--white-color);
}

/* Bootstrap Overrides */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: none;
}
.btn {
    min-width: 70px;
    padding: .5rem .75rem;
    font-size: 15px;
}
.btn-primary {
    font-weight: 500;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    border-radius: 8px;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: var(--btn-hover);
    border-color: var(--btn-hover);
}
.btn-primary.disabled, .btn-primary:disabled {
    background-color: var(--gray-5);
    border-color: var(--gray-5);
}
.btn-outline-primary{
    font-weight: 500;
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    border-radius: 8px;
}
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-outline-secondary {
    font-weight: 500;
    color: var(--bs-text-color);
    border-color: var(--gray-4);
    border-radius: 8px;
}
.btn-outline-secondary svg{
    margin-right: 8px;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:active,
.btn-outline-secondary:focus {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    background-color: transparent;
}

.btn-link {
    color: var(--bs-text-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.btn-link:hover {
    color: var(--bs-primary);
}
.btn-link svg{
    margin-top: -2px;
    margin-right: 6px;
}
.btn-link:hover svg path {
    stroke: var(--bs-primary);
}
.form-label{
    font-weight: 500;
    margin-bottom: 4px;
}
.form-control,
.form-select {
    color: var(--bs-text-color);
    font-size: 15px;
    padding: .5rem .75rem;
    border-radius: 8px;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--bs-text-color);
    box-shadow: none;
}
.form-check-label a {
    color: var(--bs-text-color);
    font-weight: bold;
    text-decoration: underline;
}
.form-check-label a:hover {
    color: var(--bs-primary);
}
.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}
.input-group>.form-control,
.input-group>.form-select{
    border-left: none;
    padding-left: 0;
}
.input-group-text {
    color: var(--gray-1);
    background: none;
    border-right: none;
    font-size: 15px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.alert-secondary{
    display: flex;
    padding: 12px 1rem;
    border-radius: 10px;
    background-color: #e8e7ec;
    border-color: #e8e7ec;
}
.alert-secondary .far{
    color: var(--bs-primary);
    font-size: 18px;
    margin-right: 10px;
    margin-top: 2px;
}
.navbar-collapse{
    flex-grow: 0;
}

.badge {
    font-weight: 500 !important;
}
.bg-secondary {
    background-color: #999 !important; 
}
.text-primary {
    color: var(--bs-primary) !important;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: var(--bs-primary) !important;
}

#wrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

main {
    min-height: calc(100vh - 125px);
}

/* Header */
#header .container-fluid{
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-2);
}
#header #logo,
#header .navbar {
    position: relative;
    z-index: 9;
}
#header .container-fluid .nav-item {
    margin-left: 24px;
}
#header .container-fluid .nav-item:first-child{
    margin-left: 0;
}
#header .container-fluid .nav-item .nav-link{
    line-height: 1;
}
#header .dropdown-lang{
    line-height: 1;
    margin-left: 32px;
}
#header .dropdown-lang > a > i{
    margin-right: 4px;
}
#header .dropdown-lang > a{
    color: var(--bs-text-color);
}
#header .dropdown-lang > a:hover{
    color: var(--bs-primary);
}
#header nav > .btn {
    font-size: 14px;
    line-height: 1.3;
    margin-left: 24px;
}
#header .dropdown-menubar{
    margin-left: 20px;
}
#header .dropdown-menubar > a::after{
    display: none;
}
#header .dropdown .dropdown-menu {
    min-width: 140px;
    top: 30px;
    padding: 8px;
    border-radius: 10px;
    border: none;
    box-shadow: rgba(18, 18, 20, 0.05) 0px 0px 2px, rgba(18, 18, 20, 0.15) 0px 2px 6px;
}
#header .d-flex .dropdown.dropdown-lang .dropdown-menu {
    top: 14px !important;
}
#header .d-flex .dropdown.dropdown-menubar .dropdown-menu {
    top: 4px !important;
}
#header .dropdown-menubar .dropdown-menu {
    min-width: 240px;
    top: 42px;
    left: auto;
    right: 0;
}
#header .dropdown-item {
    font-size: var(--bs-font-size-base);
    border-radius: 6px;
    padding: 8px 12px;
}
#header .dropdown-menubar .dropdown-menu .dropdown-item {
    font-size: 16px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
}
#header .dropdown-item:hover {
    color: var(--bs-text-color);
    background-color: var(--gray-6);
}
#header .dropdown-item svg {
    margin-right: 6px;
}
.dropdown-mb{
    display: none;
}
#header .btn.dropdown-toggle {
    border-radius: 10px;
    padding: 6px 8px;
}
#header .btn.dropdown-toggle:hover {
    background-color: var(--gray-6);
}
#header .btn.dropdown-toggle.show,
#header .btn.dropdown-toggle:active {
    background-color: var(--gray-6);
    border-color: var(--gray-4) !important;
}
.dropdown-divider {
    border-color: var(--gray-4) !important;
}
/* Sticky Header */
.header-wrap {
    top: -72px;
}
#header.sticky .header-wrap {
    width: 100%;
    border: none;
    background-color: #fff;
    position: fixed;
    top: 0;
    transition-property: top;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    z-index: 99;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
}
#header.sticky .header-wrap .container-fluid {
    position: relative;
}
#header.sticky.hd-page .header-wrap .container-fluid {
    border: none;
}
/* Home Search Section */
.home-search-sec {
    max-width: 1024px;
    padding: 70px 0 80px;
    margin: 0 auto;
}
.home-search-sec h1 {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    /*max-width: 670px;*/
    margin: 0 auto 8px;
}
.home-search-sec h2 {
    font-size: 24px;
    text-align: center;
    font-weight: normal;
    /*max-width: 670px;*/
    margin: 0 auto 36px;
}

.hd-search {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 15px;
}
#header.hd-home .hd-search {
    display: none;
}
#header.sticky.hd-home .hd-search {
    display: flex;
}
/* Home Search Form */
.search-field-wrap {
    display: flex;
    height: 56px;
    padding: 8px 24px;
    background-color: #F5F5F5;
    border-radius: 30px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    position: relative;
}
#header .search-field-wrap {
    width: 440px;
    height: auto;
}
.search-field-wrap > div:nth-child(1) {
    width: 30%;
}
#header .search-field-wrap > div:nth-child(1) {
    width: 22%;
}
.search-field-wrap > div:nth-child(2){
    width: 23%;
}
#header .search-field-wrap > div:nth-child(2) {
    width: 22%;
}
.search-field-wrap > div:nth-child(3){
    width: 20%;
}
#header .search-field-wrap > div:nth-child(3) {
    width: 28%;
}
.search-field-wrap > div:nth-child(4){
    width: 25%;
}
#header .search-field-wrap > div:nth-child(4) {
    width: 28%;
}
.search-field-wrap .form-field label{
    color: var(--heading-color);
    font-weight: 600;
    display: block;
    margin-bottom: -3px;
}
.search-field-wrap .form-field input,
.search-field-wrap .form-field select{
    width: 100%;
    color: var(--bs-text-color);
    background: none;
    border: none;
    padding: 0 12px 0 0;
    border: none;
    outline: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    overflow: hidden;
}
.search-field-wrap button[type="submit"]{
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;  
    border-radius: 50%;
    padding: 0;
    position: absolute;
    top: 8px;
    right: 8px;
}
#header .search-field-wrap button[type="submit"] {
    width: 30px;
    min-width: 30px;
    height: 30px;
    top: 5px;
    right: 5px;
}
.search-field-wrap button[type="submit"] span{
    display: none;
}
/* Home How it Works */
.howitworks-sec{
    background-color: var(--bs-primary);
}
.howitworks-sec .block-txt{
    display: flex;
    position: relative;
    margin-bottom: 8px;
}
.howitworks-sec .block-step{
    font-size: 46px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 70px;
    min-width: 70px;
    height: 70px;
    border: 2px solid var(--white-color);
    border-radius: 50%;
    margin-right: 24px;
}
/* Title Section */
.title-block{
    max-width: 560px;
    text-align: center;
    margin: 0 auto 40px;
}
.title-sec{
    font-size: 40px;
    position: relative;
    margin-bottom: 24px;
}
.title-sec:after{
    display: block;
    content: "";
    width: 60px;
    height: 4px;
    background-color: var(--bs-primary);
    border-radius: 30px;
    margin: 12px auto 0;
}
.txt-white .title-sec:after {
    background-color: var(--white-color);
    margin: 12px 0 0;
}

/* Browse By Categories */
.card-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 12px 12px;
    border-radius: 15px;
    background-color: var(--white-color);
    border: 1px solid var(--gray-5);
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 16px;
}
.card-block:hover{
    /* transform: translateY(-5px); */
}
.card-block i{
    color: var(--bs-text-color);
    font-size: 48px;
    margin-bottom: 12px;
    
    /* display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100px;
    height: 100px;
    border: 2px solid var(--gray-5);
    border-radius: 50%;
    margin: 0 auto 12px; */
}
.card-block img{
    width: 110px !important;
    max-width: 110px !important;
    margin-bottom: 14px;
}
.card-block h5{
    font-size: 16px;
    font-weight: 600;
}
/* Browse By Location */
.location-sec{
    background-color: #F4F4F4;
}
/* Customer Reviews */
.review-block{
    padding: 24px 24px 16px;
    border-radius: 15px;
    background-color: var(--white-color);
    border: 1px solid var(--gray-5);
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 16px;
}
.review-block .review-rating{
    margin-bottom: 12px;
}
.review-block .review-rating i{
    color: var(--yellow-color);
    margin-right: 2px;
}
.review-block h5{
    font-size: 18px;
    margin-bottom: 12px;
}
.review-block h6{
    font-size: 15px;
    color: var(--bs-text-color);
}

/* Signup ProgressBar */
.progress-custom{
    background-color: #e3f4ff; 
}
.progress-custom .progress-bar{
    background-color: var(--bs-primary); 
}
.signin-wrap {
    max-width: 540px;
    padding: 40px 0;
    margin: 0 auto;
}
/* Singup Steps */
.signup-wrap {
    max-width: 640px;
    padding: 40px 0;
    margin: 0 auto;
}
.step-hd-wrap{
    text-align: center;
    margin-bottom: 32px;
}
.step-hd-wrap p{
    font-size: 16px;
}
.step1 {
    /*display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;*/
}
.step1-card {
    border-radius: 12px;
    cursor: pointer;
}
.step1-card.selected-opt{
    border-color: var(--bs-primary);
}
.step1-card:hover {
    border-color: var(--bs-primary);
}
.step1-card .card-body {
    display: grid;
    justify-items: center;
}
.step1-card label,
.step1-card .form-check-input{
    cursor: pointer;
    box-shadow: none;
}
.step1-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.step1-btn .btn-primary {
    width: 100px;
}
.step-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.step-btn-wrap a {
    color: var(--gray-1);   
    font-weight: 500;
}
.step-btn-wrap a:hover {
    color: var(--bs-primary);
}
.verifycode-wrap{
    width: 120px;
    margin: 0 auto 1rem;
}
.exact-location-sec .form-switch{
    float: right;
}
.form-check-wrap{
    margin-bottom: 30px;
}
.form-check-wrap .form-check{
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, .125);
    margin-bottom: 12px;
}
.form-check-wrap .form-check.selected-opt{
    border-color: var(--bs-primary);
}
.form-check-wrap .form-check .form-check-input{
    margin-top: 0.2em;
    margin-left: 0;
    margin-right: 8px;
}

/* Product Categories Nav */
.product-cat-nav{
    display: flex;
    margin-bottom: 12px;
    overflow-y: hidden;
    position: relative;
    z-index: 2;
}
#header .product-cat-nav,
body.sticky .product-cat-nav {
    display: none;
}
#header.sticky .product-cat-nav {
    display: block;
}
#header .product-cat-nav,
.product-cat-nav .nav-underline,
.product-cat-nav .nav-underline .nav-link {
    margin: 0 !important;
}
#header .product-cat-nav {
    padding: 12px 16px !important;
}
.product-cat-nav .nav-underline {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 0;
}
#header .product-cat-nav .nav-underline {
    justify-content: space-around;
}
.product-cat-nav .nav-underline .nav-link{
    display: flex;
    align-items: center;
    flex-direction: column;
    color: var(--gray-1);
    position: relative;
    /* border-bottom: 3px solid var(--gray-5); */
    padding: 2px 0;
    margin: 0 0 8px 30px;
    text-align: center;
}
.product-cat-nav .nav-underline .nav-link:first-child{
    margin-left: 0;
}
.product-cat-nav .nav-underline .nav-link img{
    min-width: 54px;
    margin-bottom: 4px;
}
#header .product-cat-nav .nav-underline .nav-link img {
    min-width: 40px;
}
.product-cat-nav .nav-underline .nav-link i{
    display: block;
    font-size: 28px;
    margin-bottom: 4px;
}
.product-cat-nav .nav-underline .nav-link:hover,
.product-cat-nav .nav-underline .nav-link.active {
    color: var(--heading-color);
    border-color: var(--heading-color);
}

.search-form{
    display: flex;
}
.search-form-fields{
    width: 100%;
}
.search-form-btn{
    min-width: 86px;
    padding-left: 16px;
}
.search-form-btn button{
    height: 100%;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px;
}
.pd-block{
    border: none;
    margin: 20px 0;
}
.pd-block .card-img-wrap {
    display: block;
    border-radius: 15px;
    border: 1px solid var(--gray-5);
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.pd-block .card-img-top{
    height: 220px !important;
    object-fit: cover;
    border-radius: 0;
}
.pd-block:hover img{
    transform: scale(1.2);
}
.pd-block .card-body{
    padding: 0;
}
.pd-block .pd-title,
.pd-block .pd-price {
    display: flex;
    justify-content: space-between;
}
.pd-block .pd-title h5 {
    font-size: 15px;
    margin-bottom: 8px;
}
.pd-block .pd-title h5 a {
    color: var(--bs-text-color);
}
.pd-block .pd-title h5 a:hover {
    color: var(--bs-primary);
}
.pd-block .pd-rating {
    min-width: 100px;
    text-align: right;
}
.pd-rating .fas {
    margin-right: 2px;
}
.pd-block .pd-rating .fa-star {
    color: var(--bs-text-color);
}
.pd-block .pd-size {
    margin-bottom: 8px;
}

/* Product Details Page */
.pd-gallery img {
    border-radius: 15px;
}
.pd-featured-img {
    margin-bottom: 16px;
}
.pd-thumbs {
    display: flex;
    margin: 0 -6px;
}
.pd-thumbs > div {
    width: calc(100% / 4);
    padding: 0 6px;
}
.pd-details .pd-rating {
    color: var(--gray-1);
    font-size: 12px;
    margin-bottom: 8px;
}
.pd-details .pd-rating svg {
    margin-top: -2px;
    margin-right: 1px;
}
.pd-details .pd-title {
    font-size: 36px;
    margin-bottom: 20px;
}
.pd-details .pd-price {
    font-size: 24px;
    color: var(--bs-text-color);
    margin-bottom: 20px;
}
.pd-details .pd-price strong {
    color: var(--heading-color);
}
.pd-details p {
    margin-bottom: 20px;
}
.pd-details .form-control {
    padding: .75rem;
}
.pd-details .btn {
    font-size: 18px;
    border-radius: 10px !important;
}
.pd-desc {
    
}
.pd-desc .container {
    border-bottom: 1px solid var(--gray-4);
    padding-bottom: 80px;
}
.pd-desc .nav-underline {
    gap: 2rem;
    border-bottom: 1px solid var(--gray-5);
}
.pd-desc .nav-underline .nav-link {
    color: var(--bs-text-color);
    text-transform: uppercase;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}
.pd-desc .nav-underline .nav-link:hover,
.pd-desc .nav-underline .nav-underline .nav-link.active,
.pd-desc .nav-underline .nav-underline .show > .nav-link {
    color: var(--heading-color);
}
/* Sign In */
.text-divider {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}
.text-divider:before {
    content: "";
    display: block;
    border-bottom: 1px solid var(--gray-3);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}
.text-divider span {
    color: var(--gray-4);
    display: inline-block;
    background-color: var(--white-color);
    padding: 0 10px;
    position: relative;
}
/* Search Page */
.search-grid {
    padding: 24px 24px 24px 12px;
}
.search-page-sec iframe {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    margin-right: -12px;
}
.search-filters {
    padding: 13px 12px 12px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
/* Payment Page */
.payment-page-sec h3{
    margin-bottom: 24px;
}
.payment-page-sec h3.d-flex {
    align-items: center;
    justify-content: space-between;
}
.btn-link {
    float: right;
    font-weight: bold;
    text-decoration: underline;
}
.form-group .form-check {
    border-radius: 0;
    margin-bottom: 0;
}

.form-group > input {
    padding: 15px;
    border-radius: 0;
}
.form-group > input:first-child,
.form-group .form-check:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.form-group .form-check:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
.form-group .row > div:first-child input {
    padding: 15px;
    border-radius: 0;
    border-bottom-left-radius: 8px;
}
.form-group .row > div:last-child input {
    padding: 15px;
    border-radius: 0;
    border-bottom-right-radius: 8px;
}
.payment-page-sec select {
    padding: 15px;
}
.payment-page-sec .btn {
    width: 100%;
    font-size: 18px;
    border-radius: 10px;
    padding: 10px;
}
.pd-list-wrap {
    padding: 24px 24px 8px;
    border: 1px solid var(--gray-5);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 10px;
}
.pd-list-wrap .pd-list-item{
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.pd-list-item .pd-list-img {
    margin-right: 16px;
}
.pd-list-item .pd-list-img img {
    display: block;
    width: 105px !important;
    height: 105px !important;
    object-fit: cover;
    border-radius: 15px;
}
.pd-list-item h5,
.pd-list-item p {
    margin-bottom: 8px;
}
.pd-list-item p:last-child {
    margin-bottom: 4px;
}
.pd-list-wrap p.d-flex{
    justify-content: space-between;
}

/* Table and Datatable CSS */
table.dataTable th, table.dataTable td {
    vertical-align: middle;
}
.table > thead > tr > th {
    border-top: 1px solid #e9ecef !important;
    border-bottom: 2px solid #e9ecef !important;
}

table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) > * {
    box-shadow: inset 0 0 0 9999px #FBFBFC !important;
}

.filter-wrap {
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.filter-wrap .status-filter {
    width: 200px;
}
.filter-wrap .status-filter .input-group-text {
    background: var(--bs-tertiary-bg);
}
.filter-wrap .status-filter .form-select {
    padding-left: .75rem;
    border-left: 1px solid var(--bs-border-color);
}
.filter-wrap .search-filter {
    width: 100%;
    max-width: 420px;
}


div.dt-container div.dt-footer-left {
    display: flex;
    align-items: center;
}
div.dt-container div.dt-footer-left .form-select {
    padding: .375rem 2.25rem .375rem .5rem !important;
}
div.dt-container div.dt-footer-left label,
div.dt-container div.dt-footer-left div.dt-info {
    padding: 0;
    margin: 0;
}
div.dt-container div.dt-paging {
    display: flex;
    justify-content: flex-end
}
.dropstart > a {
    font-size: 15px;
    color: var(--gray-1);
    padding: 0 2px;
}
.dropstart > a:hover {
    color: var(--bs-body-color);
}
.dropstart li {
    font-size: 15px;
}

/* Page Title and Breadcrumbs */
.page-title-box .page-title {
    font-size: 24px;
}
.page-title-box .breadcrumb {
    padding: 0;
}
.breadcrumb-item {
    font-size: 13px;
}
.breadcrumb-item > a {
    color: var(--bs-body-color);
}
.breadcrumb-item > a:hover {
    color: var(--bs-primary);
}
.breadcrumb-item.active {
    color: var(--gray-1) !important;
}

.w100 {
    min-width: 100px;
}
.w120 {
    min-width: 120px;
}
.w150 {
    min-width: 150px;
}
.w170 {
    min-width: 170px;
}

/* Footer Section */
#footer {
    background-color: #F4F4F4;
}
#footer h4{
    font-size: 18px;
    font-weight: 600;
    margin: 4px 0 16px;
}
#footer .ft-menu{
    list-style: none;
    margin: 0;
    padding: 0;
}
#footer .ft-menu li{
    margin-bottom: 8px;
}
#footer .ft-menu li a{
    color: var(--bs-text-color);
}
#footer .ft-menu li a:hover{
    color: var(--bs-primary);
}
/* Social Media */
.ft-socialmedia{
    list-style: none;
    padding: 0;
    margin: 0;
}
.ft-socialmedia li{
    font-size: 16px;
    /* font-weight: 500; */
    line-height: 1.3;
    margin-bottom: 18px;
    padding-left: 36px;
    position: relative;
}
.ft-socialmedia li a{
    color: var(--bs-text-color);
}
.ft-socialmedia li a:hover{
    color: var(--bs-primary);
}
.ft-socialmedia li:last-child a,
.ft-socialmedia-links a{
    display: inline-block;
    margin-right: 10px;
}
.ft-socialmedia li i{
    width: 24px;
    font-size: 20px;
    color: var(--bs-text-color);
    text-align: center;
    position: absolute;
    top: 0;
    left: 2px;
    transition: none;
}
.ft-socialmedia li a:hover i{
    color: var(--bs-primary);
}
.ft-socialmedia-links{
    display: flex;
    align-items: center;
    margin-top: 24px;
}
.ft-socialmedia-links a i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 18px;
    color: var(--white-color);
    background-color: var(--bs-text-color);
    /*border: 1px solid rgba(255,255,255,.3);*/
    border-radius: 50%;
    margin-right: 16px;
    position: static;
}

.ft-socialmedia-links a i{
    margin: 0;
}

.ft-socialmedia-links a:hover i{
    color: var(--white-color);
    background-color: var(--bs-primary);
}
.copyrights {
    border-top: 1px solid var(--gray-2);
}
.copyrights .container{
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyrights p{
    margin: 0;
}
.copyrights ul{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.copyrights ul li{
    margin-left: 24px;
}
.copyrights ul li:first-child{
    margin-left: 0;
}
.copyrights ul li a{
    color: var(--bs-text-color);
}
.copyrights ul li a:hover{
    color: var(--bs-primary);
}
/* Responsive CSS */
@media screen and (max-width: 1599px) {	

}
@media screen and (max-width: 1279px) {	
    .container{
		max-width: 100% !important;
	}
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (max-width: 1199px) {
    .search-field-wrap > div:nth-child(1){
        width: 28%;
    }
    .search-field-wrap > div:nth-child(2){
        width: 20%;
    }
    .search-field-wrap > div:nth-child(3){
        width: 25%;
    }

    .pd-block .card-img-top{
        height: 200px !important;
    }
    .pd-block .pd-title {
        display: block;
        position: relative;
    }
    .pd-block .pd-rating {
        position: absolute;
        top: 100%;
        right: 0;
    }
    .howitworks-sec .row > div:first-child{
        text-align: center;
    }
}
@media screen and (max-width: 991px) {
    .pb-sec{
        padding-bottom: 50px;
    }
    .padding-sec,
    .padding-sm-sec{
        padding: 50px 0;
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #header .navbar-nav{
        display: none;
    }
    #header .dropdown-mb{
        display: block;
    }

    .home-search-sec{
        padding: 50px 0 60px;
    }
    .home-search-sec h1{
        font-size: 42px;
        max-width: 590px;
    }
    .search-field-wrap{
        display: block;
        height: auto;
        padding: 24px;
        border-radius: 10px;
    }
    .search-field-wrap > div{
        width: 100% !important;
        margin-bottom: 16px;
    }
    .search-field-wrap .form-field label{
        margin-bottom: 2px;
    }
    .search-field-wrap .form-field input, 
    .search-field-wrap .form-field select{
        display: block;
        width: 100%;
        padding: .375rem .75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: var(--white-color);
        background-clip: padding-box;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: var(--bs-border-radius);
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }
    .search-field-wrap button[type="submit"]{
        font-size: 15px;
        display: block;
        position: static;
        width: auto;
        min-width: 120px;
        height: 40px;
        margin-top: 24px;
    }
    .search-field-wrap button[type="submit"] span{
        display: inline-block;
    }
    .product-cat-nav{
        margin-bottom: 8px;
    }

    .ft-widgets .row > div{
        width: 50%;
        /* text-align: center; */
        margin-bottom: 40px;
    }
    .ft-widgets .row > div:nth-child(3),
    .ft-widgets .row > div:nth-child(4){
        margin-bottom: 0;
    }
}
@media screen and (max-width: 767px) {
    .search-field-wrap{
        padding: 16px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-search-sec h1{
        font-size: 38px;
    }
    .home-search-sec h2{
        font-size: 20px;
    }
    .ft-widgets{
        padding-top: 40px !important;
        padding-bottom: 0 !important;
    }
    .ft-widgets .row > div{
        width: 100%;
        text-align: center;
    }
    .ft-socialmedia{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ft-socialmedia-links{
        justify-content: center;
    }

    .ft-widgets .row > div{
        margin-bottom: 36px !important;
    }
    /* .ft-widgets .row > div:last-child{
        margin-bottom: 0;
    } */
    .copyrights{
        border: none;
        padding-bottom: 36px;
    }
    .copyrights .container{
        display: block;
        text-align: center;
        height: auto;
    }
    .copyrights p{
        margin-bottom: 16px;
    }
    .copyrights ul{
        justify-content: center;
    }
}
@media screen and (max-width: 567px) {
    h2{
        font-size: 2rem;
    }
    .home-search-sec h1{
        font-size: 34px;
    }
    .home-search-sec h2{
        font-size: 18px;
    }
}
@media screen and (max-width: 479px) {
	.product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    #header .container-fluid{
        height: 60px;
    }
    #header #logo img{
        width: 160px !important;
    }
    #header .dropdown-lang{
        margin: 0;
    }
    #header .btn,
    #header .dropdown-menubar{
        margin-left: 16px;
    }
    .home-search-sec{
        padding: 40px 0 50px;
    }
    .home-search-sec h1{
        width: 100%;
        font-size: 26px;
    }
    .howitworks-sec .block-step{
        width: 60px;
        min-width: 60px;
        height: 60px;
        font-size: 36px;
    }
}
@media screen and (max-width: 374px) {
	#header #logo img{
        width: 100px !important;
    }
    #header .btn,
    #header .dropdown-menubar{
        margin-left: 10px;
    }
    #header .btn{
        min-width: 64px;
    }
    .home-search-sec h1{
        font-size: 29px;
    }
    .copyrights p{
        font-size: 13px;
        margin-bottom: 8px;
    }
    .copyrights ul{
        /* display: block; */
    }
    .copyrights ul li{
        font-size: 13px;
        margin: 0 0 0 10px;
    }
}
@media screen and (max-width: 320px) {
    .container{
		width: 320px !important;
		max-width: 320px !important;
	}

}

.admin-product-list-image{
    width: 200px;    
}

.admin-product-list-image-default {
    display: block;
    width: 400px;
}

.btn-dash {
    width: 90%;
    display: block;
    padding: 40px;
    font-size: 3em;
    margin-bottom: 30px;
}