/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500 &display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins &display=swap'); */
* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Poppins";
    src: url("https://laundrizy.in/fonts/Poppins-Light.woff") format("woff");
}

body {
    font-family: "Poppins", sans-serif !important;
    overflow: auto;
}

.container {
    max-width: 1380px;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    z-index: 9999;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frontdoor {
    position: absolute;
    width: 80px;
    z-index: 1;
}

.waterpool {
    width: 52px;
    animation: spin 2s linear infinite;
}

.spinnerlogo {
    width: 250px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.neomorph {
    /* box-shadow: 6px 6px 12px #b8b9be,-6px -6px 12px #fff!important; */
    /* box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1), -2px -2px 6px rgba(255, 255, 255, 0.8) !important; */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    transition: box-shadow 0.3s ease-in-out;
}

.neomorph:hover {
    /* box-shadow: 6px 6px 12px #b8b9be,-6px -6px 12px #fff!important; */
    box-shadow: inset 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;

    /* box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.1), inset -2px -2px 6px rgba(255, 255, 255, 0.8) !important; */
    transition: box-shadow 0.3s ease-in-out;
}

.hero-container {
    background-color: #ffffff;
    /* height: 100vh; */
}

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

img.company-logos {
    width: 150px;
    /* filter: grayscale(1); */
}

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

img.service-logos {
    width: 60%;
    filter: drop-shadow(5px 5px 0px #888888);
}

/* Navbar custom */
img.brand-img {
    max-width: 25%;
}

.signin-brand-img {
    max-width: 25%;
}

/* desktop */
.desktop-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.desktop-container {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    height: 70px;
    align-items: center;
}

.desktop-header-brand {
    width: 100%;
}

.desktop-menu {
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    /* width: 100%; */
}

.desktop-menu-options {
    margin: 10px;
    cursor: pointer;
    color: #36b8e9;
    font-weight: 500;
    text-decoration: none;
    /* add css */
    text-transform: uppercase;
    font-weight: bold;
    font-size: 15px;
    width: max-content;
}

.desktop-menu-options:hover {
    color: rgba(54, 185, 233, 0.58);
}

.desktop-menu-icons {
    display: flex;
    align-items: center;
}

.desktop-menu-icon {
    margin: 10px;
    position: relative;
    width: max-content;
}

/* mobile */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-container {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    height: 70px;
    align-items: center;
}

img.mobile-brand-img {
    max-width: 20%;
}

.mobile-menu-icons {
    display: flex;
    align-items: center;
}

.mobile-menu-icon {
    display: flex;
    margin: 10px;
}

.mobile-menu-toggle-icon {
    display: flex;
    margin: 22px;
    justify-content: flex-end;
    font-size: 24px;
}

.mobile-menu {
    width: 250px;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    align-items: flex-end;
    padding: 15px;
}

.mobile-menu-options {
    position: relative;
    /* top: 8vh; */
    margin: 10px;
    cursor: pointer;
    color: #36b8e9;
    font-weight: 500;
    text-decoration: none;
}

.mobile-menu-options:hover {
    color: #36b9e994;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: -15px;
    border-radius: 10px;
    background-color: #f9f9f9;
    min-width: 235px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/*[Sidebar ]*/

.wrap-sidebar {
    position: fixed;
    z-index: 1100;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0);
    visibility: hidden;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.sidebar {
    position: fixed;
    z-index: 1100;
    width: 250px;
    max-width: calc(100% - 30px);
    height: 100vh;
    top: 0;
    right: -400px;
    background-color: #ffffff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.34;
    transition: all 0.4s;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.18);
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.18);
    -o-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.18);
    -ms-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.overflow-hidden {
    overflow: hidden;
}

.sidebar-menu-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
}

.show-sidebar {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.6);
}

.show-sidebar .sidebar {
    right: 0;
}

.primarizy {
    background-color: #36b8e9;
    color: #ffffff;
    font-weight: 600;
}

.primarizy:hover {
    border-color: #36b8e9;
    background-color: #ffffff;
    color: #36b8e9;
}

.primarizy-outline {
    border-color: #36b8e9;
    color: #36b8e9;
    font-weight: 600;
}

.primarizy-outline:hover {
    background-color: #36b8e9;
    color: #ffffff;
    font-weight: 600;
}

.dangerizy {
    background-color: #dc3545;
    color: #ffffff;
    font-weight: 600;
}

.dangerizy:hover {
    border-color: #dc3545;
    background-color: #ffffff;
    color: #dc3545;
}

.btn-check:checked+.primarizy-outline {
    color: #fff;
    background-color: #36b8e9;
    border-color: #36b8e9;
}

.special-outline {
    border-color: #fe6280;
    color: #fe6280;
    font-weight: 600;
}

.special-outline:hover {
    background-color: #fe6280;
    color: #ffffff;
    font-weight: 600;
}

/* text colors */
.blue {
    color: #36b8e9;
}

.gold {
    color: #fdcc0d;
}

.special {
    color: #fe6280 !important;
}

.gray {
    color: gray;
}

/* bg colors */
.specialbg {
    background: #fe6280 !important;
}

.primarybg {
    background: #36b8e9 !important;
}

/* text formatting */
.dots3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 200px;
}

/* text size */
.f8 {
    font-size: 10px !important;
}

.f10 {
    font-size: 10px !important;
}

.f12 {
    font-size: 12px !important;
}

.f14 {
    font-size: 14px !important;
}

.f16 {
    font-size: 16px !important;
}

.f18 {
    font-size: 18px !important;
}

.f22 {
    font-size: 22px !important;
}

.f26 {
    font-size: 26px !important;
}

.f30 {
    font-size: 30px !important;
}

.f34 {
    font-size: 34px;
}

/* padding */
.p-lr-65 {
    padding-right: 25px;
    padding-left: 25px;
}

/* text weight */
.fbold {
    font-weight: bold;
}

/* cards */
.slider {
    display: flex;
    overflow-x: scroll;
}

.card {
    border-radius: 15px;
    padding: 15px;
    border: none;
    cursor: pointer;
}

.special-card {
    border-radius: 15px;
    padding: 10px;
    border: 1px solid #fe6280;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
}

.primarizy-card {
    border: 1px solid #36b8e9;
}

/* app intro section */
.app-intro {
    background-color: #36b8e9;
}

.input-container {
    background-color: #ffffff;
    padding: 10px;
    position: relative;
    max-width: fit-content;
    width: 100%;
    border-radius: 10px;
    display: flex;
}

.input-container .form-control {
    width: 58%;
}

.inputtextcontainer {
    padding: 7px;
}

.input-container input {
    border: none;
}

input:focus {
    border: none;
}

.input-neomorph {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1),
        -2px -2px 6px rgba(54, 184, 233, 0.8);
    transition: box-shadow 0.3s ease-in-out;
}

/* service section */

/* benefits section */
.benefits {
    background-color: #ffffff;
}

.h50 {
    max-height: 50vh;
}

/* pricing intro section */
.pricing-section {
    background-color: #ffffff;
}

.rupeesymbol {
    position: relative;
    top: -15px;
}

.piecesymbol {
    position: relative;
    top: 0;
}

.onwards {
    font-weight: 500;
    font-size: 18px;
    color: gray;
    margin-bottom: 10px;
}

.services {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service {
    font-weight: 600;
    color: gray;
}

.speacial-services {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.speacial-service {
    color: #fe6280;
    font-weight: 600;
}

/* contact us */

.contact-form-wrapper {
    padding: 20px 0;
}

.contact-form {
    padding: 30px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 600px;
    max-height: fit-content;
}

.contact-form textarea {
    resize: none;
}

.contact-form .form-input,
.form-text-area {
    background-color: #f0f4f5;
    height: 50px;
    padding-left: 16px;
}

.contact-form .form-text-area {
    background-color: #f0f4f5;
    height: auto;
    padding-left: 16px;
}

.contact-form .form-control::placeholder {
    color: #aeb4b9;
    font-weight: 500;
    opacity: 1;
}

.contact-form .form-control:-ms-input-placeholder {
    color: #aeb4b9;
    font-weight: 500;
}

.contact-form .form-control::-ms-input-placeholder {
    color: #aeb4b9;
    font-weight: 500;
}

.contact-form .form-control:focus {
    border-color: #36b8e9;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07), 0 0 8px #36b8e9;
}

.contact-form .title {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}

.contact-form .description {
    color: #aeb4b9;
    font-size: 14px;
    text-align: center;
}

.contact-form .submit-button-wrapper {
    text-align: center;
}

.contact-form .submit-button-wrapper input {
    border: none;
    border-radius: 4px;
    background-color: #36b8e9;
    color: white;
    text-transform: uppercase;
    padding: 10px 60px;
    font-weight: 500;
    letter-spacing: 2px;
}

.contact-form .submit-button-wrapper input:hover {
    background-color: #36b8e9;
}

/* foorer */
.footer-section {
    background-color: #36b8e9;
}

img.footer-brand-img {
    max-width: 40%;
    filter: grayscale(1);
}

/* custom fontawesome */
.fa-mobile-icon {
    font-size: 18px;
}

/* pricing list page css */

/* book now page css */

.laundriescard {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.laundriescard .laundryimage {
    max-width: 140px;
    border-radius: 15 PX;
}

img.imagelaundry {
    width: 130px;
    height: 160px;
}

.custom-direction {
    flex-direction: row;
}

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

.steps {
    /* margin: 0 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.activestep {
    background: #36b8e9;
    color: #ffffff !important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.count {
    color: #36b8e9;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #36b8e9;
    font-size: 18px;
    font-weight: 600;
}

.horizontal-line {
    height: 3px;
    width: 50px;
    background-color: #36b8e9;
}

/* clothes page css */

.input-number {
    width: 30px;
    padding: 0;
    vertical-align: top;
    text-align: center;
    outline: none;
    font-size: 12px;
}

.input-number,
.input-number-decrement,
.input-number-increment {
    border: 1px solid #ccc;
    height: 25px;
    user-select: none;
}

.input-number-decrement,
.input-number-increment {
    display: inline-block;
    width: 20px;
    line-height: 25px;
    background: #f1f1f1;
    color: #444;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

.input-number-decrement:active,
.input-number-increment:active {
    background: #ddd;
}

.input-number-decrement {
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.input-number-increment {
    border-left: none;
    border-radius: 0 4px 4px 0;
}

/* #goToAddressBtn {
    position: fixed;
    bottom: 20px; 
    right: 20px; 
    display: none;
  } */

/* Address page css */
.input-group-append {
    cursor: pointer;
}

.custom-button {
    display: inline-block;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
}

.hidden-input {
    display: none;
}

/* Hide the radio button */
.custom-button input[type="radio"] {
    display: none;
}

/* Change color when selected or checked */
.custom-button input[type="radio"]:checked+label {
    background-color: #4caf50;
    color: #fff;
}

/* coupon code */
.coupon-card {
    width: 94%;
    margin: 0 auto;
    background: linear-gradient(135deg, #36b8e9, #50c5f1);
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
    position: relative;
}

.logo {
    width: 80px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.coupon-card h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
}

.coupon-card p {
    font-size: 15px;
}

.coupon-row {
    display: flex;
    align-items: center;
    margin: 25px auto;
    width: fit-content;
}

#cpnCode {
    border: 1px dashed #fff;
    padding: 12px;
    border-right: 0;
}

#cpnBtn {
    border: 1px solid #fff;
    background: #fff;
    padding: 12px;
    color: #50c5f1;
    cursor: pointer;
}

.circle1,
.circle2 {
    background: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.circle1 {
    left: -25px;
}

.circle2 {
    right: -25px;
}

.scrollable {
    height: 78vh;
    overflow-x: auto;
}

.servicetagline {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 10px;
    background: #36b8e9;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

/* chat bubble */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* basketcountbadge */

.basketcountbadge,
.notificationcountbadge {
    font-size: 12px;
    color: #fff;
    text-align: center;
    position: absolute;
    top: -5px;
    left: 8px;
    min-width: 18px;
    height: 18px;
    padding: 0 3px;
    background-color: #fe6280;
    border-radius: 15px;
}

/* my profile page */
.myprofileoptions {
    display: block;
    border-radius: 15px;
}

.myprofileoptions a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.myprofileoptions a:hover {
    background-color: #f1f1f1;
    border-radius: 15px;
}

.viewimage_btn {
    cursor: pointer;
}

.image-wrapper {
    position: relative;
    display: inline-block;
}

.image-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
}

.image-wrapper:hover .overlay {
    opacity: 1;
}

.image-wrapper .text {
    color: #fff;
    font-size: 16px;
}

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

img.offer-images {
    width: 95%;
    border-radius: 15px;
    border: dotted;
    border-width: thin;
}

/* Response break points */

/* Extra Small Devices (Mobile phones) */

/* screen size px from 1px to 575px */
@media (max-width: 575px) {
    .horizontal-line {
        width: 30px;
    }

    img.footer-brand-img {
        max-width: 68%;
    }
}

/* screen size px from 576px to 768px */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

}

/* Small Devices (Tablets): */
/* screen size px from 768px to 1024px */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    /* brand image mobile*/
    img.mobile-brand-img {
        max-width: 10%;
    }

    .custom-direction {
        flex-direction: column;
    }

}

/* Medium Devices (Laptops and Desktops): */
/* screen size px from 1024px to 1199px */
@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }

    .desktop-header {
        display: block;
    }

    .mobile-header {
        display: none;
    }

    /* brand image desktop */
    img.brand-img {
        max-width: 80%;
    }
    

    .desktop-header-brand {
        width: 45%;
    }

    .custom-direction {
        flex-direction: row;
    }
}

/* Large Devices (Large Laptops and Desktops): */
/* screen size px from 1199px to 1200px */
@media (min-width: 1199px) {
    .desktop-header {
        display: block;
    }

    .mobile-header {
        display: none;
    }

    /* brand image desktop */
    img.brand-img {
        max-width: 50%;
    }
}

/* Extra Large Devices (Extra Large Laptops and Desktops): */
/* screen size px from 1200px to 1600px */

@media (min-width: 1200px) {
    .container {
        /* max-width: 1200px; */
        max-width: 1380px;
    }

    .desktop-header {
        display: block;
    }

    .mobile-header {
        display: none;
    }

    /* desktop brand width */
    .desktop-header-brand {
        width: 50%;
    }
    
}

/* screen size px from 1600px to above */
@media (max-width: 1600px) {
    .container {
        max-width: 1200px;
    }
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 75px;
    right: 15px;
    /* background-color: #25d366; */
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    /* box-shadow: 2px 2px 3px #999; */
    z-index: 0;
}

.my-float {
    margin-top: 16px;
}

/* auto scroll css */
/* .scroll-right-container {
    animation: logoloop 30s linear infinite;
}


@keyframes logoloop{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
} */