@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
/* ============= */
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea {
	margin: 0;
	padding: 0;
}
* {
	margin: 0;
	padding: 0;
}
a, a:hover {
	text-decoration: none;
}
a:focus {c
	text-decoration: none;
}
body {
    overflow-x: hidden;
    font-family: "Nunito-Regular", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    background: url("../img/background.png") #000000e8;
    font-family: 'Nunito-Regular';
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.d_flexCenter{
	display: flex;
	align-items: center;
    gap: 10px;
}
.d_flexCenterGap{
	display: flex;
	align-items: center;
	gap: 20px;
}
.d_flexSpacebetween{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.d_flexSpacebetween.chat-btn-sec {
    justify-content: flex-start;
    gap: 20px;
}
img {
    object-fit: cover;
    object-position: center;
}
/*scroll bar css Starts*/
::-webkit-scrollbar-track{
	-webkit-box-shadow: inset 0 0 6px #00000055; 
	border-radius: 10px;
	background-color: #00000055; 
}

::-webkit-scrollbar{
	width: 0px;
    height: 2px;
    border-radius: 12px;
	background-color: #ff8900;
}
::-webkit-scrollbar-thumb{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px #ff8900; 
	background-color: #ff8900;
}
.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#000000cf;
    background-size: cover;
    background-position: center;
    z-index: 9999;
}
.splash_logo {
    animation: zoomIn 1s ease-out forwards; /* Adjust duration and timing function as needed */
}
@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@font-face {
    font-family: 'Jones-Black';
    src: url('../fonts/Jones-Black.otf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'Jones-Bold';
    src: url('../fonts/Jones-Bold.otf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'Jones-Light';
    src: url('../fonts/Jones-Light.otf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'Jones-Medium';
    src: url('../fonts/Jones-Medium.otf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'Nunito-Black';
    src: url('../fonts/Nunito-Black.ttf') format('woff2');
         /* url('../fonts/n') format('woff'); */
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'Nunito-BlackItalic';
    src: url('../fonts/Nunito-BlackItalic.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'Nunito-Bold';
    src: url('../fonts/Nunito-Bold.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'Nunito-ExtraBold';
    src: url('../fonts/Nunito-ExtraBold.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'Nunito-ExtraLight';
    src: url('../fonts/Nunito-ExtraLight.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'Nunito-Light';
    src: url('../fonts/Nunito-Light.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'Nunito-LightItalic';
    src: url('../fonts/Nunito-LightItalic.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'Nunito-Regular';
    src: url('../fonts/Nunito-Regular.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'Nunito-SemiBold';
    src: url('../fonts/Nunito-SemiBold.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;

}
@media screen and (-webkit-min-device-pixel-ratio:0) { 
    .loginfield input[type="date"]::-webkit-calendar-picker-indicator {
        color: rgba(0, 0, 0, 0);
        opacity: 1;
        display: block;
        background: url('../img/calendar.png') no-repeat;
        background-position: right 10px center !important;
        width: 30px;
        height: 30px;
        border-width: thin;
    }
    .loginfield input[type="time"]::-webkit-calendar-picker-indicator {
        color: rgba(0, 0, 0, 0);
        opacity: 1;
        display: block;
        background: url('../img/timeclock.png') no-repeat;
        background-position: center;
        width: 30px;
        height: 30px;
        border-width: thin;
    }
input[type="date"], 
input[type="time"] {
        display: block;
        -webkit-appearance:none;
        -moz-appearance: none;
        min-height: 1.2em;
        min-width: 100%;
        line-height: inherit !important;
        padding:15px 10px !important;
        
    }
}
 input[type="time"],
 input[type="date"]{
  display:block;
  position:relative;
  font-size:1rem;
  cursor:pointer;

}
input[type="time"]:focus,
input[type="date"]:focus{
  outline:none;
  border-color:#ff8f3a;
  box-shadow:0 0 0 0.25rem rgba(0, 120, 250, 0.1);
}
::-webkit-datetime-edit {}
::-webkit-datetime-edit-fields-wrapper {}
::-webkit-datetime-edit-month-field:hover,
::-webkit-datetime-edit-day-field:hover,
::-webkit-datetime-edit-year-field:hover {
  background:rgba(0, 120, 250, 0.1);
}
::-webkit-datetime-edit-text {
  opacity:0;
}
::-webkit-clear-button,
::-webkit-inner-spin-button {
  display:none;
}
::-webkit-calendar-picker-indicator {
  position:absolute;
  width:100%;
  height:100%;
  top:10px;
  right:0;
  bottom:0;
  opacity:0;
  cursor:pointer;
  color:rgb(0 0 0);
  background:rgb(0 0 0);
}

input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity:0.7;}
input[type="date"]:hover::-webkit-calendar-picker-indicator:hover { opacity:0.7;}
input[type="time"]:hover::-webkit-calendar-picker-indicator { opacity:0.05;}
input[type="time"]:hover::-webkit-calendar-picker-indicator:hover { opacity:0.15;}
/******************** Pre Login Css Starts here *************/
.LoginPage {
    background-image: url("../img/login_background.png");
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.loginWrapper {
    width: 1150px;
    height: 850px;
    background: transparent;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #A07127;
    border-radius: 50px;
    position: relative;
    overflow-y: scroll;
    overflow-x: hidden;
}
.loginForm {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.loginSect_logo img {
    height: 210px;
    width: 280px;
}
.cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF8900 !important;
    height: 60px;
    border-radius: 32px;
    color: #fff !important;
    font-size: 20px;
	gap: 10px;
    cursor:pointer;
}
.loginForm .cta img {
    max-width: 24px;
}
.blue{
        background: #03BDE4;
}
.red {
    background: #F21827;
}
.black {
    background: #fff;
    color: #000 !important;
}
.login_links:hover {
    color: #ff8900;
}
.link:hover {
    color: #ff8900;
}
.signin-links {
    position: absolute;
    width: 100%;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    right: 0%;
    text-align: center;
    bottom: -7%;
}
.selection-btns {
    margin: 60px 0;
}
.login_links {
    color: #fff;
    text-decoration: underline;
}
.LoginPage .bg_wrapper {
    background: #161616;
    height: fit-content;
    text-align: center;
    width: 750px;
    height: 785px;
    position: relative;
}
/******************** Pre Login Css Ends here *************/
/********************  Terms and Condition  Css Starts here *************/
.TermsCondition .loginForm {
    width: 1620px;
    display: block;
    height: 830px;
    overflow-y: scroll;
}
.loginheading {
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    margin: 16px auto;
    font-family: 'Nunito-Bold';
}
.loginForm .para {
    line-height: 30px;
} 
.para {
    font-size: 16px;
    font-weight: 400;
}
.backBtn {
    background: linear-gradient(45deg, #F74900, #FFD501);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
}
.LoginPage .title {
    font-size: 20px;
    color: #fff;
    justify-content: center;
    font-weight: 500;
    margin-bottom: 16px;
}
/********************  Terms and Condition  Css Ends here *************/
/********************  Login Css Starts here *************/
.loginfield {
    text-align: start;
    position: relative;
}
.loginfield  label {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}
.loginfield input {
    height: 65px;
    border-radius: 50px;
    padding: 18px;
    border: 1px solid #ffffff;
    background: transparent;    outline: none;
    width: 100%;
    color: #fff;
    position: relative;
    padding-left: 45px;
}
.icon_end {
    position: absolute;
    right: 18px;
    bottom: 18px;
}
.icon_end img {
    max-width: 26px;
}
.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.form-check input {
    width: 20px;
    height: 20px;
    padding: 0 !important;
    border: 2px solid #FF8900;
    background-color: transparent;
    border-radius: 4px;
}
.form-check input:checked {
    background-color: transparent;
    border-color: #FF8900;
    background-image: url('../img/check.png') !important;
    background-size: 10px;
    background-repeat: no-repeat !important;
    background-position:center !important;

}
.form-check label {
    color: #fff;
    font-size: 18px;
}
.link {
    font-size: 18px;
    color: #fff;
    text-decoration: underline;
}
/********************  Login Css Ends here *************/
/********************  Otp Css Starts here *************/
.digit-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    gap: 20px;
}
.digit-group input {
    width: 60px;
    height: 60px;
    padding: 0px;
    text-align: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    outline: none;
    border: 1px solid #ffff;
    font-size: 20px;
    background: transparent;
    color: #fff;
}
.loginForm .item {
    position: relative;
    max-width: 150px;
    margin: 0 auto;
    margin-top: 40px;
    background: #f48a30;
    border-radius: 50%;
}
.loginForm .item h2 {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    font-weight: 500;
    color: #fff;
    z-index: 9999;
}

.loginForm .circle_animation {
    stroke-dasharray: 414;
    stroke-dashoffset: 414;
    transition: stroke-dashoffset 1s linear;
    filter: sepia(1.5);
}

.loginForm svg {
    transform: rotate(-90deg);
    border-radius: 100%;
    width: 150px;
    height: 150px;
}

.otpform .title {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}
.otpform input {
    padding-left: 0 !important;
}
/********************  Otp Css Ends here *************/
/******************** Select Preferences Css Starts here *************/
.select_category {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 32px;
}
.preference {
    position: relative;
    width: 190px;
    height: 190px;
    border-radius: 50px;
    border: 1px solid #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
}
.preference.active {
    transform: scale(1.02);
    border-color: #FF8900;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.preference::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 210, 158, 0.2), #ff8900a6);
    z-index: 1;
    border-radius: inherit;
    transition: background-color 0.3s;
}
.preference.active::before {
    background: linear-gradient(to bottom, rgba(255, 165, 0, 0.4), #ff8a5f);
}
.preference img {
    width: 190px;
    height: 190px;
    object-fit: none;
    position: relative;
    z-index: 0;
}
.preference .title {
    position: absolute;
    top: 40%;
    left: 10%;
    width: 155px;
    text-align: center;
    font-family: 'Nunito-Bold';
    z-index: 2;
    color: #fff;
    text-shadow: 0px 0px 6px #b3b3b361;
}
.preferencesWrapper .loginWrapper {
    justify-content: flex-start;
    text-align: center;
}
.preferencesWrapper .cta {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
/******************** Select Preferences Css Ends here *************/
/******************** Subscription Plan Css Starts here *************/
.card_header {
    background: #FF8900;
    height: 95px;
    border-radius: 12px 12px 0px 0px;
    text-align: center;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card_body {
    background: #fff;
    color: #000;
    height: 550px;
    overflow-y: scroll;
    border-radius: 0px 0px 18px 18px;
    border: 2px solid #ff8900;
    padding: 12px 24px ;
}
.card_body .para {
    text-align: start;
    font-size: 16px;
    color: #000;
    line-height: 25px;
    margin-bottom: 10px;
}
.subscription_card {
    position: relative;
    margin: 20px 5px;
}
.subscription_card .cta {
    position: absolute;
    max-width: fit-content;
    height: 50px;
    border-radius: 10px;
    right: 32%;
    bottom: -4%;
    padding: 16px;
}
.preferencesWrapper .row {
    margin: 0px 18px 16px;
}
.subscription_card .title {
    margin: 0;
}
.subscription_card .loginheading {
    margin: 0;
}
/******************** Subscription Plan Css Ends here *************/
/********************  Create Profile Css Starts here *************/
.avatar-upload {
    position: relative;
    max-width: 180px;
    margin: 40px auto;
}
.avatar-upload .avatar-edit {
    position: absolute;
    bottom: -7px;
    left: 52px;
    z-index: 1;
}
.avatar-upload .avatar-edit input {
    display: none;
}
.avatar-upload .avatar-edit input + label {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background: #ffffff;
    /* border: 2px solid #fff; */
    position: absolute;
    left: 65px;
    bottom: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.avatar-upload .avatar-preview {
    width: 170px;
    height: 170px;
    margin: 15px auto;
    position: relative;
    border-radius: 100%;
    border: 2px solid #ffffff;
    box-shadow: 0px 0px 10px 4px #00000029;
}
#imagePreview {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/********************  Create Profile Css Ends here *************/
/********************  Phone Number Css Starts here *************/
.flag-sec {
    display: flex;
    justify-content: center;
    position: relative;
}
.phoneNumber .signin-links {
    bottom: 18%;
}
.flag-sec .iti {
    position: relative;
    display: inline-block;
    padding: 20px 0;
}
.flag-input {
    height: 70px;
    background: white;
}
.flag-input input {
    border: 0;
    display: none;
}
 .flag-sec .logInput {
    margin-left: 105px;
} 
.flag-input .iti--separate-dial-code .iti__selected-flag {
    background-color: transparent;
    width: 100px;
    height: 65px;
    border-radius: 40px !important;
    border: 1px solid #fff;
    color: #fff;
}
.loginForm .iti__arrow {
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #ffffff;
    border-bottom: 0;
}
.iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 1px;
}
#iti-0__country-listbox {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: white;
    border: 1px solid #CCC;
    white-space: pre-wrap;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: #fff !important;
}
.flag-sec .loginfield  {
    margin-left: 105px;
    width: 100%;
}
.icon_start {
    position: absolute;
    left: 15px;
    top: 20px;
}
.icon_start img {
    max-width: 22px;
}
input::placeholder{
    color: #fff !important;
}
/********************  Phone Number Css Ends here *************/
/*************** MODAL Css Starts here *************/
.modal {
    /* background-color: #f1f1f124; */
    z-index: 111111;
    backdrop-filter: blur(8px);
}
.modal-content {
    border-radius: 16px;
    border: 0;
    border-radius: 16px;
    background-color: #fff;
}
.btn-termsModal {
    background-image: url("../img/close.png");
    background-size: 15px;
    background-color: #fff;
    opacity: 2;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.modal-header {
    background: #ff8900;
    height: 60px;
    border-radius: 16px 16px 0px 0px;
}
.modal-title {
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-family: 'Jones-Medium';
}
.termsModal{
    max-width: calc(100% - 200px) !important;
}
.termsModal .para {
    max-width: 100% !important;
}
.termsModal  .modal-header {
    background: #fff;
    border-bottom: none;
    height: 80px;
}
.termsModal  .modal-title {
    color: #191919;
}
.termsModal .btn-close {
    background-image: url("../img/close2.png");
    background-color: #ff8900;
}
.btn-close {
    background-image: url("../img/close.png");
    background-color: #fff;
    opacity: 2;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}
.termsModal .para {
    margin-bottom: 10px !important; 
}
.termsModal .modal-body {
    overflow-y: scroll;
    height: 750px;
}
#privacyPolicy_Modal h3 {
    text-align: left;
    font-size: 24px;
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
    padding: 10px 0;
}
#privacyPolicy_Modal ul {
    margin-left: 20px;
}
#terms_Modal h3 {
    text-align: left;
    font-size: 24px;
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
    padding: 10px 0;
}
#terms_Modal ul {
    margin-left: 20px;
}
.successfull_img {
    width: 115px;
    height: 115px;
    background-color: #ff8900;
    border-radius: 50%;
    justify-content: center;
    display: flex;
    align-items: center;
    margin: 10px auto 25px;
}
.successfull {
    text-align: center;
}
.successfull_img img {
    max-width: 45px;
}
.successfull .para {
    max-width: 300px;
    margin:0 auto;
    color: #000;
    font-size: 16px;
    line-height: 28px;
    text-align: left;
}
.btn_sec {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.modal .loginfield input {
    height: 60px;
    border: none;
    box-shadow: 0px 0px 8px 0px #d7d7d7a3;
    color: #000 !important;
}
.modal .loginfield input::placeholder {
    color: #000 !important;;
}
.rating {
    display: flex;
    justify-content: center;
    gap: 12px;
}
.ratings span {
    font-size: 34px;
}
.star.selected {
    color: #FF8900 !important;
}
.star {
    cursor: pointer;
    font-size: 45px;
    font-weight: 700;
    padding: 0 0px;
    color: #8b8a89;
}
textarea {
    box-shadow: 0px 0px 8px 0px #d7d7d7a3;
    color: #000 !important;
    height: 175px;
    border: none;
    border-radius: 16px !important;
    outline: none;
    resize: none;
    background: transparent;
    width: 100%;
    padding: 16px;
}
.Create-group .wrapper-thumb img {
    width: 40px;
    height: 40px;
    border: 2px solid #ff8900;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.Create-group .remove-btn {
    background: #ff8900;
    width: 18px;
    height: 18px;
    top: 0;
    left: 24px;
    font-size: 10px;
}
.Create-group .wrapper-thumb {
    position: relative;
    width: 20px;
    height: 20px;
}
.upload_box .para {
    color: #191919;
}
.addProperty_image {
    position: relative;
}
.upload_box {
    position: absolute;
    width: 100%;
    height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin-top: 10px;
    top: 10px;
    border: 1px dashed #191919;
    background: #fff;
}
.addProperty_image .form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer;
    opacity: 0;
    width: 100%;
    height: 125px;
    position: relative;
    border-radius: 20px;
    border: 1px solid #707070;
}
.img-thumbs {
    height: fit-content;
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}
.member {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    height: 60px;
    box-shadow: 0px 0px 8px 0px #ccc;
    border-radius: 32px;
    margin-bottom: 15px;
}
.member label {
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}
.member label img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ff8900;
}
.member input {
    border-radius: 50% !important;
    padding: 6px;
}
.member input:checked {
    background-image: url("../img/radio-checked.png") !important;
    background-size: 12px;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.participants_list {
    height: 325px;
    overflow-y: scroll;
    padding: 5px;
}
.share_options {
    flex-wrap: wrap;
    margin: 12px 0;
    justify-content: center;
}
.share_options a img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.modal-body .title {
    color: #191919;
    justify-content: center;
}
#time-range p {
    font-size: 16px;
    color: #191919;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sliders_step1 {
    padding: 10px;
}
.ui-slider-horizontal {
    height: 5px;
    background: #a3a3a3;
    clear: both;
    margin: 8px 0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 12px;
}
.ui-slider {
    position: relative;
    text-align: left;
}
.ui-slider-horizontal .ui-slider-range {
    top: -1px;
    height: 100%;
}
.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    height: 6px;
    display: block;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    border-radius: 12px;
    background: #ff8900;
    background-size: 100%;
}
.ui-slider .ui-slider-handle {
    border-radius: 50%;
    background: #ff8900;
    background-size: 100%;
    width: 22px;
    height: 22px;
}
.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 18px;
    height: 18px;
    cursor: default;
    border: none;
    cursor: pointer;
}
.ui-slider-horizontal .ui-slider-handle {
    top: -16px;
    margin-left: -.6em;
}
#slider-range {
  width: 100%;
  margin: 0 auto;
}
#time-range {
  width: 100%;
}
.left-border {
    border-left: 1px dashed #191919;
    padding: 0px 0px 0px 24px;
    margin-left: 8px;
}
.left-border .loginfield::before {
    position: absolute;
    background-color: #ffffff;
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50px;
    left: -36px;
    top: 0px;
    border: 2px solid #ff8900;
    padding: 6px !important;
    background-image: url("../img/radio-checked.png");
    background-repeat: no-repeat;
    background-position: center;
}
.left-border .drop_location::before {
    border: none;
    padding: 0px !important;
    background-image: url("../img/drop_location.png");

}
.location_modal .loginfield input {
    border-radius: 12px;
}
.form-switch {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-left: 0;
    align-items: center;
    color: #000;
    font-size: 20px;
}
.form-switch input {
    background-color: #fff;
    border: 2px solid #ff8900;
}
.form-switch input:checked {
    background-color: #ff8900;
    border-color: #fff;
}
.notificationModal .modal-header {
    background: #fff;
    height: 55px;
    border-radius: 12px 12px 0px 0px;
    display: flex;
    justify-content: end;
    border: none;
    font-family: 'Nunito-Bold';
}
.notificationModal .btn-close {
    background-image: url("../img/close2.png");
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    background-color: #ff8900;
    width: 35px;
    height: 35px;
    opacity: 1;
    top: -9%;
    right: -4%;
    opacity: 1;
}
#notification_Modal .modal-dialog {
    margin-right: 16rem;
    margin-top: 20px;
}
.switch .form-check-input {
    width: 34px !important;
    height: 20px;
    background-color: #7bc043;
    border-color: #fff !important;
}
.chat_box {
    height: 550px;
    overflow-y: scroll;
    padding: 0px 10px;
    background: #fff;
}
.chat_box .searchInput {
    background: transparent;
    margin: 10px;
    width: calc(100% - 20px);
    border: 1px solid #000;
    border-radius: 12px;
}
.chat_box .searchInput input {
    color: #000 !important;
    width: 100%;

}
.participants_list .chat_box {
    height: fit-content;
    padding: 0;
}
.participants_list .searchInput {
    margin: 10px 0;
    width: 100%;
    border-radius: 32px;
}
.chat_box .searchInput input::placeholder{
    color: #000 !important;
}
.chat-title  .heading {
    font-size: 16px;
    font-family: 'NUNITO-BOLD';
}
.chat-title  .time {
    font-size: 14px;
    font-weight: 600;
}
.chats .para {
    width: 100%;
}
.chats {
    background: #e3e3e3;
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}
.notificationModal .modal-body {
    padding: 10px;
}
.modal .chat-inbox {
    height: 600px;
    overflow-y: scroll;
}
.modal .loginfield input {
    padding-left: 10px;
}
/*************** MODAL Css Ends here *************/
/* ================== Aside Css Start Here =================== */
.aside {
    position: fixed;
    top: 0;
    width: 300px;
    height: 100vh;
    background: transparent;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-right: 2px solid #A07127;
}
.logoSect {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}
.logoSect img {
    width: 175px;
    height: 130px;
}
.nav__links {
    /* padding: 20px; */
    height: calc(100vh - 250px);
    overflow-y: scroll;
}
.nav__links li {
    list-style: none;
    margin-bottom: 15px;
    padding-right: 25px;
}
.nav__links li a {
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 60px;
    padding: 0px 0px 0px 32px;
    border-radius: 0px 32px 32px 0px;
    transition: all 0.3s ease-in-out;
    font-family: 'Nunito-Bold';
}
.nav__links li .active {
    background: #ff8900;
    width: 100%;
}
.logout_btn {
    height: 170px;
    display: flex;
    align-items: end;
}
.schedul_vendor_timings .para {
    display: flex;
    gap: 10px;
}
.nav__links li a:hover {
    background: #ff8900;
    color: #ffffff;
}
.all_navLinks li a .icons {
    width: 30px;
    object-fit: cover;
    object-position: center;
}
.icons img {
    max-width: 24px;
}
.menuSect {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 30px;
    display: none;
}
.menuSect img {
    width: 40px;
    height: 40px;
}
.menuSection {
    position: relative;
}
.menuSect a {
    cursor: pointer;
    transition: transform 1.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff8900;
    border-radius: 50%;
    font-size: 30px;
}
.aside.active .aside_btn .cta {
    width: 80px;
}
.aside.active .aside_btn .cta .txt {
    display: none;
}
.menuclose {
    position: absolute;
    top: 6px;
    right: 12px;
    font-size: 24px;
    display: none;
    color: #ff8900;
}
/* ================== Aside Css Ends Here =================== */
/* ================ Header Css Starts Here ================ */
header {
    position: fixed;
    z-index: 9;
    width: 100%;
}
.header__content {
    width: calc(100% - 300px);
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: transparent;
    backdrop-filter: blur(5px);
    border-bottom: 2px solid #A07127;
    position: relative;
    height: 115px;
}
.header_rightSect {
    display: flex;
    align-items: center;
    gap: 20px;
}
.notification {
    width: 50px;
    height: 50px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    box-shadow: 0px 0px 6px 0px #cccccc70;
}
.notification img {
    max-width: 50px;
    border-radius: 50%;
}
.searchInput {
    width: 450px;
    position: relative;
    background: #070606;
    border: none;
    border-radius: 32px;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid #fff;
    position: relative;
}
.searchInput select{
    position: relative;
}
.slct{
    color: #fff;
    font-size: 18px;
}
.searchInput select::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 70%;
    background-color: #fff;
    right: 45%;
}
.searchInput input {
    border: 0;
    outline: none;
    background: transparent;
    width: calc(100% - 65px);
    margin-left: 38px;
    color: #fff;
}
#search_type {
    display: flex;
    align-items: center;
    gap: 20px;
}
.searchInput select#place_type {
    border: 0;
    width: 180px;
    filter: invert(1);
}
.searchInput .icon_end {
    right: 14px;
    bottom: 18px;
}
.searchInput .icon_start {
    top: 16px;
}
.header_leftSect {
    display: flex;
    gap: 20px;
    align-items: center;
}
.header_leftSect2 {
    flex-direction: column;
    gap: 0;
}
.dropdown button {
    background: transparent;
    color: #fff;
    width: 200px;
    text-align: end;
    height: 65px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-family: 'Nunito-Bold';
}
.profileImage img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #F48630;
}
.dropdown-menu {
    background: #fff;
    border: 1px solid #ff8900;
    border-radius: 8px;
    width: 100%;
    /* z-index: 111111; */
    margin-top: 8px !important;
  }
.dropdown-item {
    color: #000000;
    display: flex;
    gap: 8px;
    align-items: center;
    height: 45px;
    font-size: 16px;
    font-family: 'Nunito-Bold';
  }

  .dropdown-toggle::after {
    margin-left: 2px;
    border-top: 8px solid;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}
.dropdown-item img {
    width: 22px;
    height: 22px;
}
.notification_icon img {
    height: 45px;
    width: 40px;

}
#toggleIcon {
    display: none;
    cursor: pointer;
}
/* ================ Header Css Ends Here ================ */
/*======== Home Page Css Ends HERE ========*/
.content_section {
    position: relative;
    width: calc(100% - 300px);
    margin: 0 0 0 auto;
    padding: 40px 20px 30px 20px;
    background: transparent;
    top: 100px;
}
.title {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 16px;
    font-size: 30px;
    font-family: 'Jones-Medium';
    margin-bottom: 10px;
}
.cta2 {
    border: 1px solid #000;
    background: #ffffff;
    color: #000 !important;
}
.cta2:hover {
    background: transparent !important;
    border-color: #ff8900 !important;
    color: #ff8900 !important;
}
.category_section {
    width: 100%;
    max-width: 75%;
}
.categorySwiper {
    margin-top: 20px;
}
.categorySwiper .btn-group {
    width: 85px;
    height: 90px;
    border-radius: 12px;
    border: 1px solid #fff;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.categorySwiper .btn-group .btn-outline-primary {
    width: 100%;
    height: 100%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    color: #323643;
}
/*.swiper-slide {*/
/*    width: fit-content !important;*/
/*}*/
.swiper-wrapper {
    gap: 10px;
}
.categorySwiper .btn-group .btn-group-vertical>.btn-check:checked+.btn, .btn-group-vertical>.btn-check:focus+.btn, .btn-group-vertical>.btn.active, .btn-group-vertical>.btn:active, .btn-group-vertical>.btn:focus, .btn-group-vertical>.btn:hover, .btn-group>.btn-check:checked+.btn, .btn-group>.btn-check:focus+.btn, .btn-group>.btn.active, .btn-group>.btn:active, .btn-group>.btn:focus, .btn-group>.btn:hover {
    background: linear-gradient(180deg, rgba(39, 163, 255, 1) 0%, rgba(1, 103, 178, 1) 100%);
}
.categorySwiper .btn-group .btn-outline-primary span img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding-bottom: 5px;
}
.category {
    color: #fff;
    font-size: 16px;
    text-align: center;
    margin-top: 5px;
    font-family: 'Nunito-Bold';
}
.places_box {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 0 6px 0 #a9a8a861;
    height: fit-content;
    width: 235px;
    padding: 10px;
}
.places_box:hover {
    box-shadow: 0px 0px 6px 0px #ff6700 inset;
}
.cta:hover {
    border: 1px solid #ff8900;
    background: #ffffff !important;
    color: #ff8900 !important;
}
.d-flex.vacation-btn {
    padding-top: 10px;
}
/*input:hover {*/
/*    background: transparent !important;*/
/*}*/
.spot__image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to bottom, rgb(255 210 158 / 20%), #FF8900);*/
    z-index: 1;
    border-radius: inherit;
}
.spot__image img {
    width: 100%;
    height: 125px;
    border-radius: 8px;
}
.spot__image {
    position: relative;
}
.places_box .title {
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
}
.details {
    margin: 8px 0px;
}
.places_box  .para {
    font-size: 14px;
    color: #000;
}
.spot__image span {
    position: absolute;
    width: 100%;
    bottom: 0px;
    padding: 5px;
}
.spot__image span img {
    width: 10px;
    height: 15px;
    object-fit: contain;
}
.spot__image span .para {
    color: #fff;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}
.places_box button {
    border: none;
    background: transparent;
    color: #ff8900;
    text-decoration: underline;
    font-family: 'Nunito-Bold';
}
.feature__restaurant__slider .title {
    font-size: 20px;
}
.feature__restaurant__slider{
    margin: 20px 0;
}
.vacationPlan {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 25%;
    height: 100%;
    background: transparent;
    backdrop-filter: blur(5px);
    border-left: 2px solid #A07127;
    padding: 28px;
}
.newPlan textarea::placeholder {
    color: #fff;
}
.delete-plan {
    background: none !important;
    border: none;
}
.delete-plan i {
    font-size: 28px;
    color: #ff8900;
}
.edit-btn {
    background: none !important;
    border: none;
}
.edit-btn i {
    font-size: 28px;
    color: #ff8900;
}
.vacationWrapper .d_flexSpacebetween {
    flex-direction: column;
    align-items: start;
}
.newPlan textarea {
    height: 100px;
    resize: auto;
    background: transparent;
    color: #fff !important;
}
.edit-btn img {
    width: 24px;
    height: 24px;
}
.form-control:focus{
    background-color: transparent !important ;
    color: #fff !important;
}
.delete-plan img {
    width: 40px;
    height: 40px;
}
#planDetailsRow_1 {
    gap: 20px;
    flex-wrap: wrap;
}
.location_modal i {
    font-size: 20px;
    color: #ff8900;
}
.vacationPlan .places_box {
    width: calc(100% - 20px);
}
.vacationPlan .places_box .loginfield input {
    border: none;
}
.vacationPlan .places_box .loginfield input::placeholder {
    color: #000 !important;
}
.vacationPlan .places_box .loginfield input {
    height: 30px;
    padding-left: 10px;
}
.vacationPlan .places_box .title {
    font-size: 20px;
    margin: 8px 0;
    justify-content: center;
}
.heading {
    color: #ff8900;
    font-size: 20px;
}
.calendar {
    width: calc(100% - 20px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
    margin: 16px 0;
}
th {
    color: #000;
    font-size: 14px;
    text-align: center;
}
.close-icon {
  display: none;
}
.ui-datepicker-header {
    height: 40px;
    line-height: 50px;
    color: #ff8900;
    background: transparent;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}
.ui-datepicker-prev, .ui-datepicker-next {
    width: 30px;
    height: 30px;
    text-indent: 9999px;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
    margin-top: 12px;
}
.ui-datepicker-prev {
    float: left;
    margin-left: 12px;
}
.ui-datepicker-prev:after {
    transform: rotate(90deg);
    margin: -43px 0px 0px 8px;
}
.ui-datepicker-next {
     float: right;
    margin-right: 12px;
}
.ui-datepicker-next:after {
    transform: rotate(-92deg);
    margin: -43px 0px 0px 6px;
}
.ui-datepicker-prev:after, .ui-datepicker-next:after {
    content: '';
    position: absolute;
    display: block;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    margin-left: 2px;
    border-top: 8px solid #ff8900;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}
.ui-datepicker-title {
    text-align: center;
}
.ui-datepicker-calEndsar {
    width: 100%;
    text-align: center;
}
.ui-datepicker-calEndsar thead tr th span {
    display: block;
    width: 40px;
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}
.ui-state-default {
    text-decoration: none;
    line-height: 40px;
    margin: 8px;
    width: 28px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    color: #000;
    /* transition: 0.2s ease-in-out; */
}
.ui-datepicker-calendar {
    width: 100%;
}
.ui-state-default:hover {
    color: #ff8900;
}
.ui-state-active {
    color: #fff;
    background: #ff8900 !important;
}
.ui-datepicker-unselectable .ui-state-default {
    color: #eee;
    border: 2px solid transparent;
}
/*======== Home Page Css Ends HERE ========*/
/*======== Map Css Starts HERE ========*/
iframe {
    width: 100%;
    height: 700px;
    border-radius: 12px;
}
.map-container{
    position: relative;
}
.map-container a{
    position: absolute;
}
.map-container a img {
    max-width: 42px;
}
.img1 {
    top: 17%;
    left: 4%;
}
.img2 {
    top: 4%;
    left: 24%;
}
.img3 {
    top: 34%;
    left: 44%;
}
.img4 {
    top: 50%;
    left: 23%;
}
.img5 {
    bottom: 35%;
    right: 12%;
}
.img6 {
    bottom: 88%;
    right: 5%;
}
.img7 {
    bottom: 50%;
    right: 28%;
}
.map_details .chats .heading {
    font-size: 28px;
}
.map_details .chat-title {
    width: 100%;
}
.d_flexSpacebetween .cta {
    width: fit-content;
    position: unset;
    padding: 25px;
    height: 0;
}
.d_flexSpacebetween .title{
    margin-bottom: 0;
}
.title2 {
    font-size: 22px;
}
.map_details .para {
    width: 92%;
}
.map_details .chats img {
    width: 70px;
    height: 70px;
    border: 1px solid #ff8900;
    border-radius: 50%;
}
.map_details {
    max-width: calc(100% - 65px);
    bottom: 40px;
    margin: 0 auto;
    right: 35px;
    height: fit-content; 
    background: transparent;
    backdrop-filter: blur(5px);
    border: 2px solid #A07127;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    padding: 10px;
}
.map-container .map_details {
    position: absolute;
}
.map_details .chats {
    background: transparent;
    backdrop-filter: blur(5px);
    display: flex;
    gap: 5px;
    flex-direction: column;
}
.viewMap .map_details {
    position: unset;
    max-width: 100%;
}
.viewMap .map_details .title2 {
    color: #fff;
}
.viewMap .map_details .para {
    color: #fff;
}
.viewMap .map_details {
    position: unset;
    max-width: 100%;
}
.viewMap .map_details .title2 {
    color: #fff;
}
.viewMap .map_details .para {
    color: #fff;
}
.img8 {
    left: 5%;
    top: 24%;
}
.img8 img {
    max-width: 100% !important;
}
.img9 {
    left: 43%;
    top: 53%;
}
.img9 img {
    max-width: 55px !important;
}
/*======== Map Css Ends HERE ========*/
/*======== Setting Css Starts HERE ========*/
.settingWrapper .cta {
    justify-content: center;
    padding: 0 25px;
    margin-bottom: 10px;
    font-family: 'Nunito-Bold';
    
}
.settingWrapper .cta i {
    font-size: 20px;
}
.settingWrapper .deleteAcc {
    justify-content: center;
}
.cardWrapper input{
    padding-left: 10px;
}
.locationDistance .map_details {
    max-width: 650px;
    right: 32%;
    height: 180px;
    padding: 50px;
}
.locationDistance .map_details img {
    max-width: 80px;
    border-radius: 50%;
}
.locationDistance .map_details span {
    text-align: center;
}
.locationDistance .map_details .heading {
    font-size: 36px;
    font-family: 'Nunito-Bold';
}
/*======== Setting Css Ends HERE ========*/
/*======== Profile Css Starts HERE ========*/
.profileWrapper {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
}
.profileWrapper .places_box {
    width: 100%;
}
.profileWrapper .avatar-upload .avatar-preview {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    border: 2px solid #ff8900;
    box-shadow: none;
}
.profileWrapper .avatar-upload .avatar-edit input + label {
    background: #ff8900;
}
.profileWrapper .title2 {
    font-size: 20px;
    font-family: 'Nunito-Bold';
    color: #191919;
}
.text {
    font-size: 18px;
    color: #191919;
}
.profileWrapper .avatar-upload {
    margin: 16px auto;
}
.profileWrapper .avatar-upload .avatar-edit input + label {
    left: 55px;
    bottom: 10px;
}
.profileWrapper ul li .text {
    color: #ff8900;
    font-family: 'Nunito-Bold';
}

.profileWrapper ul li {
    border-top: 1px solid #ccc;
    padding: 12px 0;
}
.profileWrapper ul {
    padding: 12px 20px;
}
.profileWrapper ul li .para {
    width: 180px;
    text-align: end;
    font-weight: 500;
    font-size: 16px;
    color:#000;
}
.wrapper-thumb {
    position: relative;
    width: 150px;
    height: 150px;
}
.remove-btn {
    position: absolute;
    background: #ff8900;
    /*background: #FF4D00;*/
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10px;
    right: 10px;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.wrapper-thumb img {
    width: 145px;
    height: 145px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}
/*======== Profile Css Ends HERE ========*/
/* ============= Journey Css Starts Here =============== */
h5 {
    font-size: 20px !important;
}
.card_header .para {
    color: #fff;
}
.journeyWrapper .subscription_card .cta {
    border-radius: 32px;
    right: 35%;
}
.journeyWrapper .text {
    font-size: 16px;
    font-family: 'Nunito-Bold';
    text-align: center;
    width: 50%;
}
.journeyWrapper .card_body .para {
    margin-bottom: 0px;
    text-align: center;
    width: 50%;
}
.journeyWrapper li {
    border-bottom: 1px solid #bbbbbb;
    padding: 2px;
}
.journeyWrapper .card_body {
    padding: 10px 0;
    height: 525px;
    overflow-y: scroll;
}
.last{
    border: none !important;
}
.cardheading {
    padding: 5px 20px;
    font-family: 'Nunito-ExtraBold';
}
.cardheading .title2 {
    text-align: center;
    width: 50%;
}
/* ============= Journey Css Ends Here =============== */
/* ============= Vacation Plan Css Starts Here =============== */
.left-border .vacation_details::before {
    position: absolute;
    background-color: #ffffff;
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50px;
    left: -36px;
    top: 0px;
    border: 2px solid #ff8900;
    padding: 6px !important;
    background-image: url("../img/radio-checked.png");
    background-repeat: no-repeat;
    background-position: center;
}
.vacation_details{
    position: relative;
}
.vacationWrapper .places_box {
    width: 100%;
    padding: 20px;
    margin-bottom: 10px;
}
.vacationWrapper .places_box .title2 {
    font-family: 'Jones-Bold';
    color: #000;
}
.vacationWrapper .places_box .para {
    font-size: 16px;
}
.vacationWrapper .left-border {
    border-left: 2px solid #919191;
}
/* ============= Vacation Plan Css Ends Here =============== */
/* ============= Details Css Starts Here =============== */
.detailsWrapper .swiper-slide {
    width: 100% !important;
}
.detailsWrapper .swiper-slide .detail_slider_img img {
    width: 100%;
    height: 400px;
    border-radius: 16px;
}
.detail_slider_img{
    position: relative;
}
.detail_slider_img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to bottom, rgb(255 210 158 / 20%), #FF8900);*/
    z-index: 1;
    border-radius: 20px;
}
.detailsWrapper .swiper-pagination-bullet {
    width: 12px;
    height: 4px;
    border-radius: 8px;
    background-color: #fff;
    opacity: 1;
}
.detailsWrapper .swiper-pagination-bullet-active {
    width: 32px;
}
.spotDetails .para {
    line-height: 42px;
}
.spotDetails {
    height: 100%;
    color: #fff !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.spotDetails .text {
    font-size: 24px;
    color: #fff;
    font-family: 'Nunito-Bold';
}
.spotDetails .para img {
    max-width: 18px;
}
.spotDetails .cta {
    height: 70px;
}
.spotDetails .cta2 {
    background: transparent;
    border-color: #fff;
    color: #fff !important;
}
.detailsWrapper .title2 {
    color: #fff;
}
.detailsWrapper .map_details {
    max-width: 100%;
    margin: 15px 0;
    color: #fff;
    flex-direction: column;
}
.detailsWrapper .map_details .rating {
    justify-content: flex-start;
    gap: 10px;
}
.detailsWrapper .map_details .rating .star {
    font-size: 20px;
}
.detailsWrapper .map_details .heading {
    color: #fff;
}
.detailsWrapper .map_details .d_flexCenter img {
    width: 140px;
    height: 130px;
    border-radius: 20px;
}
.detailsWrapper .map_details .d_flexCenter {
    flex-wrap: wrap;
    margin-top: 10px;
}
.detailImage{
    position: relative;
}
.detailImage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgb(255 210 158 / 20%), #FF8900);
    z-index: 1;
    border-radius: 20px;
}
/* ============= Details Css Ends Here =============== */
/* ============= New Plan Css Starts Here =============== */
.newPlan .loginfield input {
    padding-left: 15px;
}
.add_plan {
    position: absolute;
    right: 30px;
    bottom: 14%;
}
.add_plan a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size:20px;
}
.schedule_plan {
    position: relative;
    margin-bottom: 35px;
}
.schedule_plan .loginfield label {
    font-size: 20px;
}
.add_plan a img {
    height: 35px;
    background: #fff;
    padding: 6px;
    width: 35px;
    border-radius: 50%;
}
/* ============= New Plan Css Ends Here =============== */
/* ============= Chat Css Starts Here =============== */
.chat {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    align-items: center;
    transition: background 0.3s, color 0.3s; /* Smooth transition */
}
.chat-img img {
    border: 1px solid #ff8900;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.chat-head-person {
    display: flex;
    align-items: center;
    gap: 8px;
}
.message-sent .para {
    font-size: 16px;
    background: #EBEBEB;
    color: #000000;
    height: auto;
    width: 100%;
    min-width: 100px;
    max-width: fit-content;
    border-radius: 0px 8px 8px 8px;
    padding: 10px 14px;
}
.message-recieve {
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin: 20px 0px;
    gap: 12px;
}
.message-recieve .para {
    font-size: 16px;
    background: #EBEBEB;
    color: #000;
    height: auto;
    width: 100%;
    max-width: fit-content;
    border-radius: 8px 9px 0px 8px;
    padding: 10px 14px;
}
.message-sent {
    display: flex;
    justify-content: flex-start;
    position: relative;
    margin: 20px 0px;
    gap: 12px;
}
.chat-body {
    background: #fff;
    padding: 10px 20px;
    height: 455px;
    overflow-y: scroll;
    margin: 10px 0;
}
.send-icons img {
    max-width: 35px;
}
.chat-section .chat_box {
    height: 675px;
    border-radius: 20px;
    padding: 0;
}
.chat-footer-sect {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    max-width: 95%;
    margin: 0 auto;
    background: #dddd;
    height: 80px;
    border-radius: 12px;
    padding: 0 10px;
    border: 1px solid #e6e6e6;
}
.chat-footer-sect input {
    width: calc(100% - 80px);
    height: 100%;
    border: 0;
    background: transparent !important;
    outline: none;
}
.chat-footer-sect input::placeholder {
    color: #000 !important;
}
.message_notification {
    color: #fff;
    background: #FF8900;
    width: 29px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}
.chat-head-person img {
    width: 45px;
    height: 45px;
    border: 1px solid #ff8900;
    border-radius: 50%;
}
.msg-sent-img img {
    width: 50px;
    height: 50px;
    border: 1px solid #ff8900;
    border-radius: 50%;
}
.swiper-button-lock {
    display: flex !important;
    opacity: 1 !important;
    color: #ff8900 !important;
}
.filter_modal .form-check {
    width: 100%;
    padding: 20px;
    display: flex;
    color: #000;
    border: 1px solid #ff8900;
    border-radius: 12px;
    height: 60px;
    justify-content: space-between;
}
.filter_modal .form-check label {
    color: #000;
}
.filter_modal .form-check input {
    width: 30px;
    height: 30px !important;
    background-size:16px
}
    
    
    
.spot__slider .swiper-wrapper {
    max-width: calc(100% - 90px);
    margin: 0 auto;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled ,.swiper-button-next, .swiper-button-prev{
    display: flex !important;
    opacity: 1 !important;
    color: #ff8900 !important;
}
.userdesc {
    width: 100%;
}
.chat-section .title2 {
    font-size: 16px;
    font-weight: 600;
}
.chat-section .chat:hover {
    background: #FF8900;
    color: #fff;
}
.chat.active {
    background: #FF8900;
    color: #fff;
}
.chat.active .message_notification {
    background: #fff;
    color: #ff8900;
}
.chat.active img {
    border: 1px solid #fff;
    border-radius: 50%;
}
.chat-head .title2 {
    color: #000000;
    display: flex;
    flex-direction: column;
}
.message_box .chat-head {
    height: 95px;
    display: flex;
    align-items: center;
    margin: 0 15px;
    border-bottom: 2px solid #ccc;
}
.send-icons {
    gap: 20px;
}
.message_box .light_text {
    font-size: 14px;
}
.message-sent .light_text {
    justify-content: flex-end;
    display: flex;
}
.chat_day .cta {
    background: #ebebeb;
    width: fit-content;
    height: 40px;
    font-size: 16px;
    margin: 20px auto;
    font-weight: 500;
    padding: 20px;
    color: #000 !important;
}
.group_participants {
    display: flex;
    align-items: center;
    gap: -5px;
}
.group_participants img {
    margin-left: -10px;
}
.group_participants img:first-child {
    margin-left: 0;
}
.back-to-chats {
    display: none;
}
.btn:hover {
    color: #ffffff;
}
.upload_box a img {
    max-width: 36px;
}
/* ============= Chat Css Ends Here =============== */
/* ============= Payment Method Css Starts Here =============== */
.payment_card {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 20px;
    height: 60px;
    border-radius: 32px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    position: relative;
    color: #000;
    width: 100%;
    overflow: hidden;
    transition: transform 0.5s ease, width 0.5s ease;
}
.payment_card label {
    color: #000;
    gap: 10px;
    display: flex;
    align-items: center;
}
.method {
    position: relative;
    padding-left: 0;
}
.payment_card img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 6px;
}
.payment_card:hover {
    transform: translateX(-0%);
    width: 90%;
}
.method:hover .delete-btn {
    display: block;
}
.paymentWrapper .upload_box {
    height: 135px;
    border-radius: 32px;
    margin-top: 0px;
    top: 0;
    border: 1px dashed #ffffff;
    background: transparent;
}
.paymentWrapper .upload_box .para {
    color: #fff;
}
.method .delete-btn {
    display: none;
    position: absolute;
    top: 0;
    right: 0px;
    z-index: 1;
    transition: opacity 0.3s ease;
}
.method:hover .delete-btn {
    display: block;
    opacity: 1;
}
input[type="radio"]:checked ~ .delete-btn {
    display: block !important;
    opacity: 1;
    transition: opacity 0.3s ease;
}
/* ============= Payment Method Css Ends Here =============== */
.swal2-container{ z-index: 999999; }
.flatpickr-calendar.animate.open{
    z-index: 999999;
}
.date-input {
    background-color: transparent !important;
}
.time-input {
    background-color: transparent !important;
}
.date-input[readonly] {
    background-color: #f7f9fb1f !important;
}
.time-input[readonly] {
    background-color: #f7f9fb1f !important;
}
.message-recieve .msg-sent-img {
    width: 140px;
}


