/* Common CSS  */

img {
    display: inline-block;
    max-width: 100%;
}



ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

li {
    display: inline-block;
}

table,
th,
tr,
td {
    border: 25px solid #9b1414;
}

/*Form Style CSS */
input,
textarea,
select {
    width: 100%;
    background: transparent;
    border: 1px solid #615d5d;
    padding: 13px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

textarea {
    height: 100px;
}

input[type=submit],
button[type=submit] {
    border: none;
    border-radius: 0;
    display: inline-block;
    background: #c5a110;
    padding: 15px 30px;
    width: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}

input::placeholder,
textarea::placeholder {
    font-size: 15px;
    font-weight: 300;
    color: #777;
}

.main-btn {
    background: #D81324;
    padding: 15px;
    color: #fff;
}

.main-btn:hover {
    background: #333;
    color: #fff;
}

/*Margin & Padding */

.section-padding {
    padding: 100px 0;
}

.pt-0 {
    padding-top: 0;
}

.pb-0 {
    padding-bottom: 0;
}

.pt-20 {
    padding-top: 20px;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 85px;
    left: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.btn-whatsapp-pulse {
    background: #e63839;
    color: white;
    position: fixed;
    bottom: 85px;
    right: 15px;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 28px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 999;
    transform: rotate(90deg);
}

.pb-20 {
    padding-bottom: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pt-100 {
    padding-top: 100px;
}

@media (max-width: 767px) {
    .pt-100 {
        padding-top: 50px;
    }
}

.pb-100 {
    padding-bottom: 100px;
}

@media (max-width: 767px) {
    .pb-100 {
        padding-bottom: 50px;
    }
}

.pt-150 {
    padding-top: 150px;
}

.pb-150 {
    padding-bottom: 150px;
}

.pt-200 {
    padding-top: 200px;
}

.pb-200 {
    padding-bottom: 200px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-30 {
    margin-bottom: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mt-120 {
    margin-top: 120px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mt-150 {
    margin-top: 150px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-50 {
    margin-left: 50px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-50 {
    margin-right: 50px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pl-50 {
    padding-left: 50px;
}

.pr-50 {
    padding-right: 50px;
}

.ml-auto {
    margin-left: auto !important;
}

.mr-auto {
    margin-right: auto !important;
}



/********** Template CSS **********/
:root {
    --primary: #D81324;
    --secondary: #0B2154;
    --light: #F2F2F2;
    --dark: #111111;
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .navbar-light .navbar-brand,
    .navbar-light a.btn {
        padding: 0 !important;
        margin: 0 10px;
    }
}

@media (max-width: 767px) {

    .navbar-light .navbar-brand,
    .navbar-light a.btn {
        padding: 0 !important;
        margin: 0 10px;
    }
}

@media (max-width: 1160px) {
    .navbar-light a.btn {
        display: none !important;
    }
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(0, 0, 0, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/titelbild.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Service ***/
.service .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.service .nav .nav-link.active {
    background: var(--primary);
}

.service .nav .nav-link.active h4 {
    color: #d4cece !important;
}

.service .nav .nav-link.active h2 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h1 {
    color: #FFFFFF !important;
}
/*** Booking ***/


.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/
.team-item .team-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transform: scale(0);
    transition: .5s;
}

.team-item:hover .team-overlay {
    transform: scale(1);
}

.team-item .team-overlay .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-overlay .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../img/home-appliance-service.jpg) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #f4eaea;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Product List  */

.sidebar-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    border-radius: 5px;
    border: 1px solid #eee;
    color: #333E38;
    font-size: 16px;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease 0s;
}

.sidebar-search-box button {
    position: absolute;
    top: -10px;
    right: 0;
    background: none;
}

.sidebar-search-box button i:before {
    font-size: 22px;
    padding-right: 15px;
}

.single-sidebar h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1160px) {
    .single-sidebar h3 {
        margin: 15px 0;
    }
}


.categories-box {
    border: 1px solid #ddd;
    padding: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1160px) {
    .filter-price-text {
        padding: 20px;
    }
}

.categories-box ul li {
    display: block;
    position: relative;
    padding: 15px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1160px) {
    .categories-box ul li {
        display: block;
        position: relative;
        padding: 10px 0;
    }
}

.categories-box ul li a {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.categories-box ul li a {
    position: relative;
    z-index: 1;
    transition: .3s;
}

.categories-box ul li a:before {
    position: absolute;
    content: "";
    top: 50%;
    left: -20px;
    width: 25px;
    height: 2px;
    background: #D81324;
    margin-top: 0;
    visibility: hidden;
    opacity: 0;
}

.categories-box ul li a:hover::before {
    visibility: visible;
    opacity: 1;
}

.categories-box ul li a:hover {
    padding-left: 25px;
}

ul.categories.clearfix {
    padding-left: 20px;
}

.categories-box ul li a.active {
    color: #D81324;
}

.categories-box ul li a:hover {
    color: #D81324;
}

select.selectpicker {
    width: 250px;
    float: right;
}

select.selectpicker option {
    color: #333E38;
}

.bootstrap-select .dropdown-menu > li.selected > a {
    background: #87C03D;
    color: #fff;
}

.all_product_item_image {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    display: block;
    margin-top: 30px;
}

.related-products .all_product_item_image {
    margin-top: 0;
}

.all_product_item_image img {
    width: 100%;
    border-radius: 5px;
}

.all_product_hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    bottom: 0;
    z-index: 1;
}

.all_product_hover:before {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a2a3624;
    content: "";
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    transform: translate3d(-100%, 0px, 0px);
    z-index: -1;
}

.all_products_single h4 {
    font-size: 24px;
    color: #333E38;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    line-height: 30px;
    margin-top: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.all_products_single h4 a {
    font-size: 17px;
    font-weight: 500;
    color: #000;
    transition: 500ms;
}

.all_products_single h4 a:hover {
    color: #000;
}

.all_products_single p {
    font-size: 16px;
    font-weight: 500;
    color: #D81324;
    margin-bottom: 10px;
    line-height: 28px;
}

.all_products_single:hover .all_product_hover:before {
    transform: translate3d(0px, 0px, 0px);
}

.all_products_single:hover .all_product_icon i {
    transform: scale(1);
}

select.selectpicker {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
}

.showing-result-shorting {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.showing-result-shorting .showing p {
    margin: 0;
}

.single-sidebar {
    margin-bottom: 50px;
}

.single-sidebar h6 {
    font-size: 20px;
    font-weight: 400;
}

ul.categories.clearfix {
    padding-left: 20px;
}

.sidebar-search-box {
    position: relative;
    z-index: 1;
}

form.search-form button {
    border: none;
    position: absolute;
    top: 5px;
    right: -20px;
}

.all_products_thumb_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 9;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
    list-style: none;
    padding: 0;
}

.all_products_thumb_icon .icon-list .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 48px;
    border-radius: 5px;
    background: #fff;
    color: #D81324;
    font-size: 24px;
    box-shadow: 0 0 5px rgba(221, 221, 221, 0.2);
    transition: all 0.3s;
}

.all_products_thumb_icon .icon-list .icon:hover {
    background: #D81324;
    color: #fff;
}

.all_products_single:hover .all_products_thumb_icon {
    visibility: visible;
    opacity: 1;
    bottom: 20px;
}

.tag-box {
    border: 1px solid #ddd;
    padding: 15px 20px 20px 25px;
}

ul.tags li a {
    color: #333;
    padding: 10px;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

ul.tags li a:hover {
    color: #D81324;
}

ul.tags li a:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    width: 2px;
    height: 16px;
    background: #D81324;
    margin-top: -8px;
}

.product-area .pagination {
    margin-top: 50px;
    justify-content: center;
}

/* Product Details  */

.detail-gallery .product-image-slider {
    background-color: #fff;
    margin-bottom: 30px;
    overflow: hidden;
}

.detail-gallery .product-image-slider img {
    opacity: 1;
    max-width: 100%;
}

.detail-gallery .product-image-slider.slider-nav-thumbnails {
    background: none;
    border-radius: 0;
}

.detail-gallery .product-image-slider button.slick-arrow {
    background: none;
    border: 0;
    padding: 0;
    font-size: 14px;
}

.detail-gallery .product-image-slider button.slick-arrow i {
    color: #adadad;
}

.slider-nav-thumbnails img {
    background: #ddd;
    width: 90%;
    margin: 5%;
}

.slider-nav-thumbnails img:hover {
    border: 2px solid #D81324;
    cursor: pointer;
}

.related-products {
    border-top: 1px solid #eee;
}



/* Product Tab  */

.nav-tabs .nav-link {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin-right: 40px;
}

.nav-tabs {
    border-bottom: 2px solid #ddd;
}

#nav-tab .nav-link.active {
    border-bottom: 3px solid #D81324;
}

#nav-tab .nav-link {
    border: none;
    padding: 15px;
}

@media (max-width: 768px) {
    #nav-tab .nav-link {
        padding-left: 0;
    }
}

.product-details-wrap h1 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .product-details-wrap h1 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 10px;
        margin-top: 20px;
    }
}

.pro-tab-descrip {
    margin-top: 40px;
}

.product-details-wrap p {
    font-size: 24px;
    font-weight: 500;
}

.product-review ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-review ul li {
    color: #FF4D24;
    font-size: 20px;
    display: inline-block;
    margin: 0 2px;
}

.product-review {
    display: flex;
    align-items: center;
}

.product-review span {
    font-size: 18px;
    color: #7777;
    padding-left: 15px;
}

.product-summary {
    font-size: 16px;
    line-height: 26px;
    margin: 35px 0;
}

.product-btn {
    display: flex;
}

.product-btn button {
    background: #D81324;
    border: 0;
    color: #fff;
    padding: 7px 17px;
    border-radius: 0;
}

.product-btn input {
    padding: 5px 0;
    width: 50px;
    border: 1px solid #eee;
    text-align: center;
}

button#increment,
button#decrement {
    font-size: 20px;
}

.product-details-cart {
    display: flex;
}

.add_to_cart-btn .main-btn {
    padding: 8px 15px;
    margin-left: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    transition: .3s;
}

.add_to_cart-btn i {
    font-size: 22px;
    margin-right: 7px;
}

.add_to_cart-btn .main-btn:hover {
    background: #D81324;
}

.product-meta h6 {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    margin-bottom: 15px;
}

.product-meta h6 span {
    color: #9a9a9a;
}

.product-wishlist a {
    color: #333;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    margin: 25px 0 0;
    display: block;
}

.product-wishlist a:hover {
    color: #B8101F;
}

.product-wishlist i {
    padding-right: 15px;
}

.product-price a.btn.btn-outline {
    border: 1px solid;
}

/* Product Tab */

.review-list {
    margin-bottom: 50px;
}

.review-item {
    display: flex;
    align-items: flex-start;
    justify-content: start;
    padding: 30px 0px;
    border-bottom: 1px solid #eee;
}

.reviewer-img {
    margin-right: 30px;
}

.reviewer-img a img {
    width: 100px;
    border-radius: 8px;
}


.reviewer-meta a {
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
}

.reviewer-meta a span {
    color: #777;
    font-weight: 400;
    padding-left: 15px;
}

.reviewer-quote {
    margin-top: 5px;
}

.reviewer-meta p {
    font-size: 15px;
}

.reviewer-rating {
    display: flex;
    margin-bottom: 5px;
}

.reviewer-rating li {
    margin-right: 5px;
}

.reviewer-rating li i {
    font-size: 16px;
    color: #bbbbbb;
}

.reviewer-rating li .active {
    color: #FF4D24;
}

.reviewer-descrip {
    width: 100%;
}

.review-form h3 {
    margin-bottom: 15px;
}

.review-form .btn {
    border: 2px solid;
}

.review-form .btn:hover {
    background: #D81324;
    color: #fff;
    border-color: #D81324;
}

.review-rating {
    margin: 0px 15px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.review-rating li {
    margin-right: 15px;
}

.review-rating li i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #555555;
    font-size: 14px;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.review-rating li i:hover {
    color: #ffffff;
    background: #FF4D24;
}

.star-rating input {
    display: none;
}

.star-rating input:checked ~ label::after {
    opacity: 1;
}

.star-rating label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-right: 5px;
}

.star-rating {
    margin-bottom: 15px;
}

.review-form p {
    margin: 10px 0px;
}

p.prod-rating {
    font-weight: 500;
}

.star-rating label:hover::after {
    opacity: 1;
}

.star-rating label:hover:hover ~ label::after {
    opacity: 1;
}

.star-rating label::before {
    content: "\f005";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    display: block;
    color: #dfdfdf;
}

.star-rating label::after {
    content: "\f005";
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    color: #FF4D24;
    opacity: 0;
}

.pro-tab-addition-info {
    margin-top: 20px;
}

.pro-tab-addition-info h6 {
    font-size: 16px;
    color: #333;
    margin: 14px 0;
}

.pro-tab-addition-info h6 span {
    color: #777;
}

.pro-tab-addition-info {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

/* Cart Page 
============== */
.table-content table {
    background: #fff;
    border: 1px solid #e5e5e5;
    text-align: center;
    width: 100%;
    color: #444;
}

.table-content table th {
    font-weight: 500;
    padding: 20px 10px;
    text-align: center;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
    font-size: 15px;
}

.table-content table th,
.table-content table td {
    border-bottom: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
}

.table-content table td {
    padding: 25px 10px;
    vertical-align: middle;
    font-size: 14px;
}

.prod_thum {
    display: table-cell;
}

.prod_thum img {
    width: 60px;
    height: auto;
}

.prod_title {
    display: table-cell;
    padding-left: 20px;
}

.table-content table td.product-name a,
.product-stock-status span {
    font-size: 15px;
    font-weight: 500;
    margin-left: 10px;
    text-transform: capitalize;
    color: #000;
}

.product-stock-status span {
    color: #21b3fa;
    font-weight: 500;
}

.table-content table td.product-name {
    width: 270px;
}

.table-content table td.product-remove a {
    display: inline-block;
    font-size: 18px;
    color: #444;
    text-align: center;
    -webkit-transition: all 0.3s ease-in;
}

.table-content table .product-price .amount {
    font-size: 15px;
    font-weight: 600;
}

.table-content table td.product-remove i:hover,
.table-content table td.product-remove a:hover i {
    color: #FF6900;
}

.table-content table td.product-name a:hover {
    color: #444;
}

.table-content table td.product-quantity {
    width: 180px;
}

.table-content table td.product-remove {
    width: 150px;
}

.table-content table td.product-price {
    width: 130px;
}

.proceed-to-checkout {
    display: block;
    margin-top: 40px;
}

.proceed-to-checkout .main-btn {
    width: 100%;
}

.mini-shop-cart {
    border: 1px solid #ddd;
}

.single-cart-item {
    border-bottom: 1px solid #ddd;
    padding: 20px;
}

.single-cart-item h6 {
    color: green;
    position: relative;
}

.single-cart-item i {
    float: right;
    color: #444;
}

.single-cart-item p {
    margin: 0;
}

.single-cart-item p.price b {
    font-size: 17px;
    color: #444;
    margin-right: 30px;
}

.calculation-area span {
    float: right;
}

.calculation-area {
    padding: 20px;
}

@media (max-width: 767px) {
    .calculation-area {
        margin-top: 30px;
    }
}

p.total_amount {
    color: #000;
    font-weight: 500;
}

span.blu-color {
    color: #47D194;
}

.calculation-area b p {
    border-top: 1px solid #ddd;
    margin-top: 25px;
    color: #444;
    font-size: 16px;
}

.buttons-cart input {
    width: 170px;
    margin-right: 15px;
    height: 50px;
}

/* Checkout Page
  ========================*/

.billing-details-wrap h5 {
    padding: 34px;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    padding-top: 0;
}

.billing-details-wrap h5:nth-child(1) {
    border-top: none;
}

.billing-details-wrap form {
    padding: 30px 0;
}

.mini-shop-cart {
    border: 1px solid #ddd;
}

.single-cart-item {
    border-bottom: 1px solid #ddd;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.single-cart-item h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
    color: #000;
}

.single-cart-item i {
    float: right;
    color: #444;
}

.single-cart-item p {
    margin: 0;
}

.single-cart-item p.price b {
    font-size: 16px;
    color: #333;
    margin-right: 30px;
}

.prod_desc {
    padding-left: 15px;
}

.calculation-area span {
    float: right;
}

.calculation-area {
    padding: 20px;
}

span.blu-color {
    color: #47D194;
}

.calculation-area b p {
    border-top: 1px solid #ddd;
    margin-top: 25px;
    color: #444;
    font-size: 16px;
}

.showing-result-shorting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 20px;
}

.showing-result-shorting p {
    margin: 0;
}


.product-remove a i {
    color: red;
}

.nice-select.form-dropdown {
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 7px;
}

.billing-details-wrap input,
.billing-details-wrap select {
    margin-bottom: 34px;
}

.order-wrap h6 {
    font-size: 20px;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 1px;
    padding: 25px;
    padding-top: 0;
}

.payment-method input {
    width: inherit;
}

.payment-method-wrap p {
    font-size: 18px;
    font-weight: 500;
    margin-top: 20px;
}

.payment-method-wrap .main-btn {
    margin-top: 35px;
    display: block;
    text-align: center;
}

table .product-name {
    width: 180px !important;
}

table .product-price {
    width: 100px !important;
}

table .product-status {
    width: 60px !important;
}

table .product-action {
    width: 200px !important;
}

table .product-remove {
    width: 40px !important;
}

span.status.text-success,
span.status.text-danger {
    font-size: 16px;
    font-weight: 500;
}

.single-cart-item .cart-cross-btn {
    font-size: 18px;
    color: #D81324;
    display: block;
    position: absolute;
    right: 25px;
    bottom: 45px;
    font-weight: 400;
    cursor: pointer;
}

/* Plus & Minus  */

.qty-plus-minus {
    width: 125px;
    height: 40px;
    border: 1px solid #eee;
    display: inline-block;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.qty-plus-minus input.qty-input {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    color: #4b5966;
    float: left;
    font-size: 15px;
    height: auto;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 40px;
    outline: none;
    font-weight: 500;
}

.dec.gi-qtybtn {
    background: #D81324;
    color: #fff;
    padding: 8px 16px;
}

.inc.gi-qtybtn {
    background: #D81324;
    color: #fff;
    padding: 8px 16px;
}

.dec.gi-qtybtn:hover,
.inc.gi-qtybtn:hover {
    cursor: pointer;
}

.filter-price-text {
    margin: 35px 0;

}

@media only screen and (min-width: 992px) and (max-width: 1160px) {
    .filter-price-text {
        margin: 20px 0;
    }
}

/* Header Right Area  */

.header-right-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-right-area {
        justify-content: flex-start;
        display: none;
    }
}

@media (max-width: 767px) {
    .header-right-area {
        margin: 18px 0;
        display: none;
    }
}

.header-right-area.mobile-view {
    display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-right-area.mobile-view {
        display: flex;
    }
}


@media (max-width: 767px) {
    .header-right-area.mobile-view {
        display: flex;
    }
}

.header-icon {
    position: relative;
    z-index: 1;
    margin-right: 30px;
    color: #333;
    display: flex;
}

.header-icon i {
    font-size: 30px;
}

@media (max-width: 767px) {
    .header-icon i {
        font-size: 26px;
    }
}

.header-icon i:hover {
    color: #D81324;
}

.icon-notify {
    width: 20px;
    height: 20px;
    background: #D81324;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -10px;
}

.header-three .icon-notify {
    display: none;
}

.authentication-area a {
    color: #333;
    margin: 10px;
}

.authentication-area a:hover {
    color: #D81324;
}

.authentication-area i {
    font-size: 18px;
    color: #D81324;
    margin-right: 5px;
}

/* Mini Cart  */


.mini-cart {
    margin-right: 8px;
    margin-top: 5px;
    float: left;
}


.mini-cart .cart-count {
    line-height: 22px;
    font-size: 13px;
    color: #FF6900;
}

.mini-cart-content {
    background: #fff;
    width: 300px;
    z-index: 10;
    position: absolute;
    right: 0;
    top: 75px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-shadow: 0px 15px 60px -19px black;
    box-shadow: 0px 15px 60px -19px black;
    visibility: hidden;
    opacity: 0;
}

.mini-cart-content-toggle {
    opacity: 1;
    visibility: visible;
}


.mini-cart-content .mini-cart-items {
    padding: 20px;
    padding-bottom: 0;
}

.mini-cart-content .mini-cart-item {
    border-bottom: 1px solid #efefef;
}

.mini-cart-content .mini-cart-item:first-child {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}


.mini-cart-content .mini-cart-item-image {
    width: 50px;
    height: 50px;
    border: 2px solid #f3f3f3;
    float: left;
    margin-right: 15px;
}

.mini-cart-content .mini-cart-item-image a {
    display: block;
    width: 46px;
    height: 46px;
}


.mini-cart-content .mini-cart-item-des {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.mini-cart-content .mini-cart-item-des a {
    text-transform: uppercase;
    display: block;
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    color: #0B2154;
}

.mini-cart-content .mini-cart-item-des .mini-cart-item-price {
    font-size: 13px;
    font-size: 0.8125rem;
    color: #888;
    display: block;
    margin-top: 3px;
    float: left;
}


.mini-cart-content .mini-cart-item-des .mini-cart-item-price b {
    color: #222;
    font-size: 15px;
    margin-right: 25px;
}

.mini-cart-content .mini-cart-item-des .mini-cart-item-quantity {
    font-size: 15px;
    line-height: 1;
    color: #777;
}

.mini-cart-content .mini-cart-item-des .cart-cross-btn {
    font-size: 18px;
    color: #D81324;
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.mini-cart-content .mini-cart-item {
    margin-bottom: 25px;
}

.mini-cart-content .mini-cart-action {
    padding: 15px;
    text-align: center;
    padding-top: 0;
}

.mini-cart-content .mini-cart-action .mini-checkout-price {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    display: inline-block;
}

.mini-checkout-price b {
    margin-right: 20px;
}

.cart-action-btn .main-btn {
    display: inline-flex;
    padding: 7px 20px;
    justify-content: center;
    margin: 16px 10px;
    align-items: center;
}

.social-icons span {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.social-icons a i {
    font-size: 18px;
    margin: 0 8px;
    color: #777;
}

.social-icons {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

/* sign up  */

.main-wrapper {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
}

.image-holder img {
    width: 485px;
    height: auto;
    border-radius: 12px 0 0 12px;
}

.form-inner {
    background: rgb(255, 255, 255);
    width: 480px;
    height: auto;
    padding: 50px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 3px 14px 0 rgb(0 11 40 / 6%);
}

.form-group .main-btn {
    text-align: center;
    margin: 20px 0;
    padding: 10px 30px;
    display: inline-block;

}

.form-group label {
    text-transform: uppercase;
    font-weight: 500;
    color: #333;
    margin: 10px 0;
}

.check-box input {
    margin: 20px 8px;
}

.form-group label {
    text-transform: uppercase;
    font-weight: 500;
    color: #333;
    margin: 10px 0;
}

.check-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.check-box input {
    width: inherit;
}

p.form-meta a {
    color: #4f4d4d;
    font-weight: 500;
}

p.form-meta a:hover {
    text-decoration: underline;
    color: #B8101F;
}

.image-holder.sign-in img {
    width: 500px;
}

hr:not([size]) {
    height: 2px !important;
    color: #B8101F !important;
}

.payment-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.payment-method img {
    padding-left: 20px;
}
.btn-whatsapp-pulse i.fa.fa-phone {
    transform: rotate(90deg);
}
.btn.btn-secondary.w-100.py-3 a {
    color: #fff;
}

h4, .h4 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

h1, .h1 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #e639ec;
}

h2, .h2 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #a50a26;
}
.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

a {
    color: #77d87f;
    text-decoration: none;
}

a:hover {
    color: #e02828;
}

.footer-oll-now {
    bottom: 0px;
    color: #fff !important;
    font-size: 22px !important;
    cursor: pointer;
    display: inline-block;
    font-size: 30px;
    font-weight: normal;
    line-height: 56px;
    width: 100%;
    position: fixed;
    z-index: 1;
    text-align: center;
    background-color: #b40f1d;
}

.btn-primary {
    color: #fff;
    background-color: #ef0193;
    border-color: #ffffff;
}