:root {
    --primaryColor: #D6A156;
    --blackColor: #000;
    --textColor: #747474;
    --whiteColor: #fff;
    --smPadding: 2rem 1.5rem;
    --lgPadding: 4rem 0
}

@font-face {
    font-family: gilroyRegular;
    src: url('../font/gilroy/Gilroy-Regular.ttf');
}

@font-face {
    font-family: gilroyMedium;
    src: url('../font/gilroy/Gilroy-Medium.ttf');
}

@font-face {
    font-family: gilroySemiBold;
    src: url('../font/gilroy/Gilroy-SemiBold.ttf');
}

@font-face {
    font-family: gilroyBold;
    src: url('../font/gilroy/Gilroy-Bold.ttf');
}

@font-face {
    font-family: gilroyBlack;
    src: url('../font/gilroy/Gilroy-Black.ttf');
}

@font-face {
    font-family: gilroyHeavy;
    src: url('../font/gilroy/Gilroy-Heavy.ttf');
}

.font-bold {
    font-family: gilroyBold;
}

.font-semiBold {
    font-family: gilroySemiBold;
}

.font-heavy {
    font-family: gilroyHeavy;
}

.font-medium {
    font-family: gilroyMedium;
}

.font-black {
    font-family: gilroyBlack;
}

/* start btn css */

.btn-primary {
    background-color: var(--primaryColor);
    border: 0;
    color: var(--whiteColor);
    /* width: 170px; */
    font-size: 15px;
    font-family: gilroyMedium;
    /* padding: 4px 1rem; */
    border-radius: 7px;
}

.btn-primary:hover {
    background-color: #212529;
    border-color: #212529;
}

.features .closet-list p {
    font-size: 15px;
}

.features .closet-list h5 {
    font-size: 1.2rem;
}

.ads .ads-box h3 {
    font-size: 20px;
}

.btn-dark {
    background-color: var(--blackColor);
    color: var(--whiteColor);
}

.btn-diable {
    background-color: #585858 !important;
    cursor: no-drop;
}


/* end btn css */

/* start common css section */

/* scroll */
::-webkit-scrollbar {
    width: 5px;
    height: 3px;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background: var(--whiteColor);
}

::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primaryColor);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

ul,
li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: inherit;
}

.text-primary {
    color: var(--primaryColor) !important;
}

.heading h2 {
    font-size: 20px;
}

section,
footer {
    padding: var(--smPadding);
}

/* .availLocation-name {
    background: var(--primaryColor);
    width: 240px;
    padding: 0.5rem 1rem;
    text-align: center;
    font-weight: bold;
    margin: 0 10px 15px;
    color: var(--blackColor);
    cursor: pointer;
} */

.cursor-pointer {
    cursor: pointer;
}

.fs-25 {
    font-size: 25px !important;
}

.border-primary {
    border: 1px solid var(--primaryColor) !important;
    border-radius: 7px;
}

.border-bottom {
    border-bottom: 1px solid rgb(255 255 255 / 25%) !important;
    padding-bottom: 1.5rem;
}

.border-white {
    border: 1px solid var(--whiteColor) !important;
    border-radius: 7px;
}


input[type="checkbox"]:checked:before {
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #000000;
    font-weight: 700;
}

input[type="checkbox"]:checked:before {
    content: '\2713';
}

input[type="checkbox"] {
    -webkit-appearance: none;
    height: 15px;
    width: 15px;
    padding: 7px;
    outline: none;
    cursor: pointer;
    position: relative;
    /* background-color: var(--primaryColor);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.18); */
    margin-left: 0;
    border: 1px solid var(--primaryColor);
}

.input-radio .checkmark {
    position: absolute;
    top: 9px;
    right: 21px;
    height: 21px;
    width: 21px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 50% !important;
    border: 2px solid var(--primaryColor);
    transition: all 0.3s;
}

.input-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.input-radio input:checked~.checkmark {
    background-color: rgba(0, 0, 0, 0);
    border-color: var(--primaryColor);
}

.input-radio .checkmark:after {
    content: "";
    position: relative;
    display: none;
}

.input-radio input:checked~.checkmark:after {
    display: block;
}

.input-radio .checkmark:after {
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primaryColor);
}

section.ads.pt-0.other-ads {
    margin-top: 50px;
}

section.features.pt-0 {
    background-color: #f2f2f2;
}

.head-btn.d-flex.flex-wrap.justify-content-md-between.align-items-end.mb-2 {
    padding-top: 40px;
}

/* end common css section */

/* start modal css */
.modal .modal-body form .form-control {
    border-radius: 7px !important;
    padding: 10px 15px;
    border: 1px solid #ccc;
}

.modal .modal-body form .btn-add {
    padding: 6px 10px;
    font-size: 20px;
    width: 140px;
    border-radius: 7px;
}

#selectAddress form .input-group {
    background: #f2f2f2;
    padding: 10px;
    border-radius: 10px;
}

#selectAddress form .input-group p {
    font-size: 15px;
}

/* end modal css */

/* start pagination css */

.page-link {
    background-color: transparent;
    color: var(--blackColor);
    font-family: gilroyMedium;
    border: 1px solid var(--primaryColor);
}

/* end pagination css */

/* start nav css */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: #d6a156;
    color: black;
    font-weight: bold;
}

.nav-pills .nav-link {
    background: #505050;
    color: white;
    border-radius: 50px;
}

/* end nav css */

/* start header css */

header .logo-container .logo {
    max-width: 80px;
}

header .logo-container .right-header .login-btn {
    border: 1px solid var(--primaryColor);
    border-radius: 10px;
    padding: 7px 14px;
    width: fit-content;
}

header .logo-container .right-header .service-icon {
    gap: 20px;
}

header .logo-container .menu-links .download-icon img {
    width: 130px;
}

.header-bg {
    background: url('../img/banner-bg.png') no-repeat center;
    background-size: cover;
    background-position: top;
}

/* end header css */


/* start login css */

.login-bg {
    background: url('../img/banner-bg.png') no-repeat;
    background-size: cover;
    background-position: center;
    height: 200px;
}

.login-form form .form-control,
.form-label {
    font-size: 16px;
}

div#closet-tab-pane input {
    font-size: 15px;
}

.login-form .heading h3 {
    font-size: 30px;
    margin-bottom: 0;
}

.login-form form {
    padding: 1rem;
    box-shadow: 0 3px 10px #cacaca;
    border-radius: 9px;
    border-bottom: 5px solid #d6a156;
}

.login-form form .form-control {
    border-radius: 10px;
    font-size: 16px;
    padding: 5px 1rem;
    border-radius: 3px !important;
    border: 1px solid #ddd;
    box-shadow: none;
    font-family: gilroyMedium;
}

.login-form form .otp {
    width: 50px;
    height: 50px;
    text-align: center;
    border: 1px solid #ddd;
}

/* end login css */

/* start banner section */
.banner {
    background: url('../img/banner-bg.png') no-repeat center;
    background-size: cover;
}

.banner .banner-content h1 {
    font-size: 25px;
    font-family: gilroyMedium;
}

.location-list.d-flex.flex-wrap p {
    font-size: 16px;
    font-family: 'gilroyBold';
}

.near-closet h4 {
    font-size: 1.2rem;
}

.banner .banner-content form {
    background-color: var(--whiteColor);
    padding: 6px 10px;
    border-radius: 10px;
}

.banner .banner-content form input {
    outline: 0;
}

/* end banner section */

/* start available-closet */

.available-closet .location-list,
.location-detail-list .location-list {
    gap: 15px;
}

.available-closet .location-list .location,
.location-detail-list .location-list .location {
    box-shadow: 0 2px 7px #bab9b9;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(to right, #d4a256 60px, transparent 15%);
    font-size: 18px;
    width: 100%;
}

.available-closet .location-list .location i,
.location-detail-list .location-list .location i {
    color: white;
    margin-right: 36px;
    margin-left: 11px;
    font-size: 21px;
}

/* end available-closet */

/* start ads section */
.ads .ads-box {
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 12px;
    padding: 25px 20px;
    background-position: center;
    position: relative;
}

.other-ads .ads-box .ads-btn {
    position: absolute;
    top: 20px;
    right: 20px;
}

.ads .ads-box .ads-btn,
.ads .ads-box .book-btn {
    background-color: var(--primaryColor);
    padding: 3px 10px;
    color: var(--whiteColor);
    border-radius: 5px;
    width: 62px;
    font-size: 14px;
}

.available-location.mx-auto h2 {
    font-size: 1.4rem;
}

.ads .ads-box .book-btn {
    padding: 7px 14px;
    width: 95px;
}

.ads .ads-box .play-icon {
    margin: 5rem auto 0;
    width: 90px;
}

.ads .ads-box .ads-btn {
    width: 45px;
    font-size: 14px;
}

h4.text-primary.mt-3 {
    font-size: 1.1rem;
}

ul.text-light li a {
    font-size: 14px;
}

/* end ads section */

/* start features section */
.features .closet-list .card {
    border-radius: 10px;
    box-shadow: 0 5px 5px #bdbdbd;
    border: 0;
    border-bottom: 5px solid var(--primaryColor);
}

.features .closet-list .card img {
    height: 260px;
    object-fit: cover;
    transition: transform .2s;
}

.features .closet-list .card-img {
    overflow: hidden;
}

.features .closet-list .card img:hover {
    transform: scale(1.1);
    transition: .5s ease-in-out;
}

.features .closet-list {
    gap: 21px;
}

/* end features section */

/* start footer section */
footer {
    background: url('../img/footer-bg.png') no-repeat;
    background-size: cover;
}

footer .footer-logo .logo {
    width: 80px;
}

.footer-logo h3 {
    font-size: 22px;
}

footer .payment-icon {
    width: 150px;
}

footer .copyright {
    border-top: 3px solid #d6a15645;
}

footer .copyright .payment {
    width: 150px;
}

/* end footer section */

/* start detail-description section */
.detail-description .closet-name {
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
}

.detail-description .closet-name h5,
.detail-description .closet-name h6 {
    font-size: 20px;
}

.detail-description .detail-form-container .detail-form-content .dimension-box h5 {
    font-size: 23px;
}

.detail-description .detail-form-container .detail-form-content .dimension-box p {
    font-size: 17px;
}

.detail-description .detail-form-container .detail-form {
    padding: 1rem 1.5rem;
    box-shadow: 0 6px 6px #d6d6d6;
    border-radius: 10px;
}

.detail-description .detail-form-container .detail-form-content .dimensions {
    border-bottom: 2px solid #d6a1563d;
}

.detail-description .detail-form-container .detail-form form .input-container input {
    border: 1px solid #b7b7b7;
    padding: 4px 15px;
    border-radius: 5px;
    font-size: 17px;
}

.detail-description .detail-form-container .detail-form h3 {
    border-bottom: 0.5px solid #ccc;
    font-size: 21px;
}

.detail-description .detail-form-container .detail-form .input-container,
.detail-description .detail-form-container .detail-form .price {
    font-size: 20px;
}

.detail-description .detail-form-container .detail-form button {
    background: #D6A156;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    box-shadow: none;
    border-radius: 5px;
    min-width: 180px;
    padding: 6px 18px;
    margin-top: 2.5rem;
    font-weight: bold;
}

.breadcrumbs li {
    font-size: 14px;
}

/* end detail-description section */

/* start location-detail-list section */
.location-detail-list .location-detail-container .location-detail .details,
.location-detail-list .location-detail-container .location-detail .hours,
.location-detail-list .location-detail-container .location-detail .map {
    border: 3px solid var(--primaryColor);
}

.location-detail-list .location-detail-container .location-detail .hours ul li {
    padding-bottom: 5px;
}

.location-detail-list .location-detail-container .location-detail .hours ul li span:nth-child(1) {
    min-width: 33px;
}

.location-detail-list .location-detail-container .near-closet .closet-list .closet-box,
.outer-container .main-wrapper .closet-list .closet-box {
    padding: 1.6rem 1.2rem;
    box-shadow: 0 3px 10px #cacaca;
    border-radius: 9px;
    border-bottom: 5px solid var(--primaryColor);
    /* margin-right:5%; */
}

.location-detail-list .location-detail-container .near-closet .closet-list .closet-box .closet-content img,
.outer-container .main-wrapper .closet-list .closet-box .closet-content img {
    object-fit: cover;
    height: 80px;
    border-radius: 5px;
    margin-right: 10px;
    width: 120px;
}

.location-detail-list .location-detail-container .near-closet .closet-list .closet-box .closet-content .content p {
    font-size: 14px;
}

.location-detail-list .location-detail-container .near-closet .closet-list .closet-box .closet-name {
    font-size: 18px;
}

.location-detail-list .location-detail-container .near-closet .closet-list .closet-box .hotel-btn {
    border: 1px dashed #ddd;
    color: #7F7F7F;
    padding: 0px 11px;
    font-size: 14px;
    border-radius: 3px;
    position: absolute;
    top: 9px;
    right: 9px;
}

.location-detail-list .location-detail-container .near-closet .closet-list .closet-box .view-btn,
.outer-container .main-wrapper .closet-list .closet-box .view-btn {
    background-color: var(--primaryColor);
    color: #fff;
    width: 90px;
    padding: 5px 16px;
    border-radius: 5px;
    box-shadow: none;
    border: 0;
    font-family: gilroysemiBold;
    font-size: 15px;
    display: block;
    text-transform: uppercase;
}

.service-box h3 {
  font-size: 18px;
}

.location-detail-list .location-detail-container .location-detail .details .details-list .ratings img {
    display: flex;
    width: 130px;
    object-fit: contain;
    margin-top: .5rem;
}

.location-detail-list .location-detail-container .location-detail .details .details-list button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    border-radius: 10px;
    padding: 6px 14px;
    min-width: 150px;
    margin-top: 2rem;
}

.location-detail-list .location-detail-container .near-closet .closet-list .closet-box .closet-content .content i {
    font-size: 15px;
}

.location-detail-list .location-detail-container .near-closet .closet-list .closet-box .closet-content .content p,
.location-detail-list .location-detail-container .near-closet .closet-list .closet-box .closet-content .content span,
.location-detail-list .location-detail-container .near-closet .closet-list .closet-box .closet-content .content a {
    font-size: 14px;
    margin-left: 5px;
}

/* end location-detail-list section */

/* start closet location section */
.location-detail-list .location-detail-container .info .map {
    border: 1px dashed #ccc;
    padding: 1rem;
    border-radius: 10px;
}

.location-detail-list .location-detail-container .info .info-box {
    padding: 1rem 1.2rem;
    box-shadow: 0 3px 10px #cacaca;
    border-radius: 9px;
}

.location-detail-list .location-detail-container .info .info-box h5 {
    border-bottom: .5px solid #ccc;
    padding-bottom: .5rem;
    margin-bottom: .5rem;
}

.location-detail-list .location-detail-container .info .info-box .stars {
    width: 140px;
}

.location-detail-list .location-detail-container .info .info-box .label.close {
    background-color: red;
}

.location-detail-list .location-detail-container .info .info-box .label {
    background-color: green;
    color: white;
    padding: 3px 7px;
    border-radius: 4px;
    font-family: gilroyBold;
}

.location-detail-list .location-detail-container .service {
    border: 1px dashed #ccc;
    padding: 1rem 2rem;
    border-radius: 10px;
}

.location-detail-list .location-detail-container .service-box h5 {
    position: absolute;
    top: -17px;
    background-color: var(--whiteColor);
    padding: 0 10px;
    font-size: 21px;
}

.location-detail-list .location-detail-container .service-box .service-nav {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 17px;
    margin-top: 7px;
}

/* end closet location section */

/* start billing page */
.billing .card {
    border: 1px solid var(--primaryColor);
    border-radius: 8px;
}

.billing .rental-card {
    border: 1px solid var(--primaryColor);
}

.billing .card .card-header {
    border-bottom: 1px solid #f5deb359;
}

.billing .card .card-footer {
    border-top: 1px solid #f5deb359;
}

.billing .card .card-body h4,
.billing .card .card-body p {
    font-size: 16px;
}

.billing .card .card-body span img {
    object-fit: cover;
}

.billing .card .card-body .payment-form span {
    width: 70px;
    height: 100%;
}

.billing .card .card-body .payment-form label {
    font-size: 20px;
}

.billing .card .card-body .payment-form input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.billing .card .card-body .payment-form .input-group {
    border: 1px solid var(--primaryColor);
    width: fit-content;
    padding: 12px 21px;
    border-radius: 10px;
}

.billing .card .card-body .payment-form .btn {
    width: 250px;
}

.billing .card .card-body .payment-form .checkmark {
    /* position: absolute; */
    top: 9px;
    left: 21px;
    height: 21px;
    width: 21px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 50% !important;
    border: 2px solid var(--primaryColor);
    transition: all 0.3s;
}

.billing .card .card-body .payment-form input:checked~.checkmark {
    background-color: rgba(0, 0, 0, 0);
    border-color: var(--primaryColor);
}

.billing .card .card-body .payment-form .checkmark:after {
    content: "";
    position: relative;
    display: none;
}

.billing .card .card-body .payment-form input:checked~.checkmark:after {
    display: block;
}

.billing .card .card-body .payment-form .checkmark:after {
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primaryColor);
}


/* end billing page */

/* start billing-inventory page */

.billing .billing-box span {
    height: 130px;
}

.billing .billing-box span img {
    object-fit: cover;
    border-radius: 15px;
}

.billing .billing-details .locate-name {
    border-bottom: .5px solid #ccc;
}

.billing .billing-details ul li h4 {
    font-size: 20px;
}

.billing .billing-details ul li p {
    font-size: 18px;
}


.billing .billing-box,
.billing .payment-box {
    border-radius: 10px;
    border: 1px dashed #ccc;
    padding: 1rem;
}

.billing .payment-box .payment {
    border-bottom: .5px solid #CCCCCC;
}

.billing .price h5 {
    font-size: 21px;
}

.billing .btn-lg {
    width: 250px;
}

.billing .card .card-body:last-child .details-list {
    border: 0 !important;
}

.billing .payment-form input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.billing .payment-form .input-group {
    border: 1px solid var(--whiteColor);
    width: fit-content;
    padding: 12px 21px;
    border-radius: 10px;
}

.billing .payment-form .btn {
    width: 250px;
}

.billing .payment-form .checkmark {
    /* position: absolute; */
    top: 9px;
    left: 21px;
    height: 21px;
    width: 21px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 50% !important;
    border: 2px solid var(--primaryColor);
    transition: all 0.3s;
}

.billing .payment-form .pay-icon {
    width: 100px;
}

.billing .payment-form input:checked~.checkmark {
    background-color: rgba(0, 0, 0, 0);
    border-color: var(--primaryColor);
}

.billing .payment-form .checkmark:after {
    content: "";
    position: relative;
    display: none;
}

.billing .payment-form input:checked~.checkmark:after {
    display: block;
}

.billing .payment-form .checkmark:after {
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primaryColor);
}

/* end billing-inventory page */


/* start main-wrapper */

.outer-container {
    margin: 7rem 0 3rem;
}

.main-wrapper .input-group {
    width: 25%;
    margin-left: auto;
}

.main-wrapper .input-group input {
    box-shadow: none;
}

.main-wrapper .input-group .form-control:focus {
    border-color: #ccc;
}

.main-wrapper .manage-closet-list .closet-list {
    gap: 15px;
}

.main-wrapper .main-inventory-list form .box .invent-img {
    width: 150px;
    height: 150px;
}

.main-wrapper .main-inventory-list form .box .invent-img img {
    object-fit: cover;
}

.main-wrapper .main-inventory-list form {
    gap: 20px;
}

.main-wrapper .main-inventory-list form .box {
    border: 1px solid #ccc;
    padding: 1rem 1rem;
    border-radius: 11px;
    position: relative;
}

.main-wrapper .main-inventory-list form .box p {
    font-size: 15px;
    width: 100%;
    text-align: center;
}

.main-wrapper .main-inventory-list form .box .content .verify-icon {
    width: 14px !important;
    height: fit-content !important;
    margin-left: 7px;
}

.main-wrapper .main-inventory-list form .box input {
    /* padding: 0; */
    height: initial;
    width: initial;
    margin-bottom: 0;
    /* display: none; */
    cursor: pointer;
}

.main-wrapper .main-inventory-list form .box label {
    position: relative;
    cursor: pointer;
    top: -13px;
    right: 0;
    margin-left: auto;
}

.main-wrapper .main-inventory-list form .box label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #ffffff66;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.main-wrapper .main-inventory-list form .box input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 3px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid var(--primaryColor);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.main-wrapper .main-inventory-list form .box .btn {
    font-size: 1rem;
    border-radius: 7px;
    padding: 6px 12px;
}

.main-wrapper .main-inventory-list form .btn-request {
    width: 210px;
    margin: 12px auto 0;
}

.main-wrapper .main-inventory-list .add-invent {
    border: 1px solid var(--primaryColor);
    background-color: transparent;
    width: fit-content;
    display: flex;
    margin: 10px 0;
}

.main-wrapper .main-dashboard-list .dash-box-list .dash-box {
    border: 1px dashed #ccc;
    padding: 10px 1rem;
    border-radius: 10px;
    width: 100%;
}

.main-wrapper .main-dashboard-list .dash-box-list .dash-box p {
    font-size: 15px;
}

.main-wrapper .main-dashboard-list .dash-box-list .dash-box .icon .icon-bg {
    background: var(--primaryColor);
    width: 60px;
    border-radius: 5px;
    font-size: 25px;
    color: var(--blackColor);
    padding: 10px;
}

.main-wrapper .main-dashboard-list .dash-box-list .dash-box .icon h4 {
    width: 150px;
    font-size: 15px;
    font-weight: 700;
    width: 100%;
}

.main-wrapper .main-ser-invent-list form {
    gap: 30px;
}

.main-wrapper .main-ser-invent-list form .box {
    border: 1px solid #ccc;
    padding: 1rem 1rem;
    border-radius: 11px;
    width: 100%;
}

.insurance.mt-2.ms-2 label {
    padding-bottom: 10px;
}

.main-wrapper .main-ser-invent-list form .box .invent-detail {
    border-bottom: 1px dashed #ffffff66;
    padding-bottom: 10px;
}

.main-wrapper .main-ser-invent-list form .box .invent-img,
.main-wrapper .history-closet .closet-details .inventory-info-list .inventory .invent-detail .invent-img {
    width: 80px;
    height: 65px;
    margin-right: 10px;
}

/* .main-wrapper .main-ser-invent-list form .box p, */
/* .main-wrapper .history-closet .closet-details .inventory-info-list .inventory .content p { */
/* font-size: 18px; */
/* width: 50%; */
/* } */

.main-wrapper .main-ser-invent-list form .box .service-list {
    width: 100%;
}

.main-wrapper .main-ser-invent-list form .box .service-list .service {
    width: 50%;
}

.main-wrapper .main-ser-invent-list form .box .service-list .service .address {
    font-size: 14px;
}

.main-wrapper .main-ser-invent-list form .button .btn {
    width: 260px;
    margin: auto;
    display: flex;
}

.main-wrapper .main-dashboard-list .add-address {
    background: #d6a156;
    width: 120px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    border-radius: 8px;
    margin-left: auto;
    cursor: pointer;
}

.main-wrapper .booking-histroy-list .nav-tabs {
    border-bottom: 1px dotted wheat;
    /* width: fit-content; */
}

table#example td {
    font-size: 12px;
}

.main-wrapper .booking-histroy-list .nav-link,
.nav-tabs .nav-link {
    font-family: gilroyBold;
    color: var(--blackColor);
    border-radius: 20px;

}

.main-wrapper .booking-histroy-list .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    /* color: var(--primaryColor); */
    background: var(--primaryColor);
    border: 3px solid var(--primaryColor);
    border-bottom: 0;
    font-weight: bold;
    border-radius: 20px;
    margin-right: 10px;
}

.main-wrapper .booking-histroy-list .closet-img {
    width: 50px;
    object-fit: cover;
    height: 50px;
}

table#example p {
    margin-bottom: 2px;
    font-family: 'gilroyMedium';
    font-size: 12px;
}

.main-wrapper .history-closet .closet-details {
    /* border: 1px solid #ccc;
    padding: 1rem 1.5rem; */
}

.main-wrapper .history-closet .closet-details .closet-img {
    width: 100%;
    height: 200px;
}

.main-wrapper .history-closet .closet-details .closet-img img {
    object-fit: cover;
    border-radius: 10px;
}

/* .main-wrapper .history-closet .closet-details .content p, */
/* .main-wrapper .history-closet .closet-details .content a { */
/* font-size: 14px; */
/* } */

.main-wrapper .history-closet .closet-details .dimension {
    border-top: 1px dashed #ffffff66;
}

.main-wrapper .history-closet .closet-details .booking-info h4 {
    border-bottom: 1px dashed #ffffff66;
    font-size: 18px;
}

.main-wrapper .history-closet .closet-details .inventory-info .dimension {
    border-top: 0;
}

.main-wrapper .history-closet .closet-details .inventory-info-list {
    border: 1px dashed #ffffff66;
    padding: 1rem;
    border-radius: 10px;
    gap: 20px;
}

.main-wrapper .history-closet .closet-details .inventory-info-list h6 {
    border-bottom: 1px dashed #ffffff66;
    font-size: 20px;
}

.main-wrapper .history-closet .closet-details .inventory-info-list .inventory {
    border-bottom: 1px dashed #ffffff66;
    padding-bottom: 10px;
    width: 100%;
}

.main-wrapper .history-closet .closet-details .inventory-info-list .inventory:last-child {
    border-bottom: 0;
    padding-bottom: 0px;
}

.main-wrapper .history-closet .closet-details .inventory-info-list .inventory .service-list .service .status {
    color: var(--whiteColor);
    padding: 3px 7px;
    border-radius: 6px;
    font-size: 14px;
}

.main-wrapper .history-closet .closet-details .inventory-info-list .inventory .service-list .complete {
    background-color: #27ae60;
}

.main-wrapper .history-closet .closet-details .inventory-info-list .inventory .service-list .ongoing {
    background-color: #e67e22;
}

.main-wrapper .history-closet .closet-details .inventory-info-list .inventory .service-list .pending {
    background-color: #b2afab;
}


/* end main-wrapper */
.payment-boxx .boxx {
    padding: 1.6rem 1.2rem 5rem;
    /* / box-shadow: 0 3px 10px #cacaca; / */
    border-radius: 9px;
    border: 1px solid var(--primaryColor);
    border-bottom: 5px solid var(--primaryColor);
}

.payment-boxx .boxx .gpay-btn {
    width: 50%;
    background-color: #f8f8f8;
    color: var(--whiteColor);
    padding: 7px 10px;
    border-radius: 5px;
    border: 1px solid #f8f8f8;
}

.payment-boxx .boxx .gpay-btn img {
    height: 35px;
    width: 70px;
}

.payment-boxx .boxx .pay-line {
    font-family: auto;
    background-color: var(--primaryColor);
    width: 22%;
    height: 1px;
}

.payment-boxx .boxx .pay-line h5 {
    width: 100%;
}

.payment-boxx .card-boxx {
    padding: 1rem;
    border-radius: 9px;
    border: 1px dashed #d0d0d0;
}

.payment-boxx .card-boxx .master-card {
    width: 70px;
}

.payment-boxx .card-boxx.selected-card {
    border: 1px solid var(--primaryColor);
    background-color: #f5f5f5;
}

.payment-boxx .card-boxx .card-check-bottom {
    position: absolute;
    bottom: 13px;
    right: 13px;
    width: 25px;
    height: 25px;
}


/* .payment-boxx .card-boxx .input-container i { */
.card_user_icon {
    position: absolute;
    top: 43px;
    right: 10px;
}

.payment-boxx .card-boxx .card-number {
    margin-top: 14px;
}

.main-wrapper .main-ser-invent-list form .box-service .service-list .service {
    border: 1px solid #ccc;
    border-radius: 7px;
    position: relative;
    display: flex;
    font-size: 15px;
    width: 49%;
}


.main-wrapper .main-ser-invent-list form .box-service .service-list .service-img {
    width: 43px;
}

.main-wrapper .main-ser-invent-list form .box .service-list .service .service-checkbox {
    position: absolute;
    right: 10px;
    top: 7px;
    background-color: transparent;
    border: 1px solid #ccc;
}

.main-wrapper .main-ser-invent-list .form-gap {
    gap: 28px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .location-detail-list .location-detail-container .location-detail {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .location-detail-list .location-detail-container .location-detail .details,
    .location-detail-list .location-detail-container .location-detail .hours {
        width: 48%;
    }

    .location-detail-list .location-detail-container .location-list {
        width: 100%;
    }
}

/* .checkout-item-list .invent-detail .int-service-list p, */
/* .checkout-item-list .content p, */
/* .billing-details div p { */
/* font-size: 14px !important; */
/* } */

.checkout-item-list .box {
    border: 0 !important;
    border-bottom: 1px dashed #ccc !important;
    border-radius: 0 !important;
    padding-bottom: 10px !important;
    margin-bottom: 2%;
}

.checkout-item-list .box:last-child {
    border-bottom: 0 !important;
}

.checkout-item-list {
    border: 1px solid #ccc;
    border-radius: 11px;
    padding-right: 10px solid #ccc;
    overflow-y: scroll;
    height: 350px;
}

.city-closets a {
    font-size: 14px !important;
}

.city-closets .location-list,
.location-detail-list .location-list {
    gap: 15px !important;

}

.content p {
    margin-bottom: 0;
}

/* .info.d-flex.flex-column p { */
/* font-size: 14px; */
/* } */
.service label {
    font-size: 14px;
}

.int-service-list {
    position: relative;
}

.int-service-list p .service_status {
    float: right !important;
    padding: 6px;
    margin-bottom: 7px;
    right: 0;
}

.button.mx-auto.w-100 {
    margin-top: 20px;
}

.info.flex-column {
    width: 27%;
    display: inline-block;
}

/* washing services */

.minus,
.plus {
    width: 30px;
    height: 30px;
    background: var(--primaryColor);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    cursor: pointer;
    text-align: center;
    padding-left: 1px;
}

.number input {
    width: 30px;
    text-align: center;
    border: 0;
}

.hotel-view .info {
    display: flex;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #ccc;
    /* width: 60px; */
    /* font-size: 20px; */
    padding-right: 6px;
}

.btn-cnt {
    font-size: 14px;
    padding: 7px 10px;
    width: fit-content;
}

.location-detail-list .invent-list {
    height: 400px;
    overflow: scroll;
}

.location-detail-list .invent-list .closet-box {
    width: 95%;
    margin: auto;
}

.right-inner-addon {
    position: relative;
}

.right-inner-addon input {
    padding-right: 35px !important;
}

.right-inner-addon i {
    position: absolute;
    right: 0px;
    padding: 12px 12px;
    pointer-events: none;
    top: 30px;
}

.in-process-status {
    background-color: #d6a156 !important;
}

.ads .carousel-inner {
    box-shadow: -3px 5px 15px #000;
    border-radius: 16px;
}

.closet_results {
    padding: 2px 40px;
}

.service_filter {
    padding: 2px 40px;

}

.faq_collapsed_div {
    margin-left: 2%;
    margin-right: 2%
}
