a,
button {
    transition: all ease-in-out 0.4s;
}
.addNewTrip {
    margin-bottom: 2rem;
}
.addNewTrip a {
    display: block;
    background: var(--primary);
    border-radius: 8px;
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-white);
}
.addNewTrip a i {
    margin-right: 1rem;
}
.filterBox li label {
    line-height: 1.3;
    font-weight: 500;
    font-size: 15px;
    color: var(--color-light-1);
}
.filterBox li:not(:last-child) {
    margin-bottom: 1.25rem;
}
.filterBox h5 {
    margin-bottom: 1rem;
}
.filterBox:not(:last-child) {
    margin-bottom: 3rem;
}
/* .filterBox .form-checkbox:hover input ~ .form-checkbox__mark {
    background-color: var(--primary);
}*/
.filterBox .form-checkbox input:checked ~ .form-checkbox__mark {
    /* background-color: var(--primary); */
    /* border-color: var(--primary); */
}

.filterBox .form-checkbox__mark {
    width: 18px;
    height: 18px;
    border: 1px solid var(--primary);
}

.forMrRight li:not(:last-child) {
    margin-right: 12px;
}
.tdImgContainer {
    flex: 0 0 60px;
    max-width: 60px;
}
.tdMame {
    flex: 1 0 0%;
    padding-left: 16px;
    font-weight: 600;
}
.listTable tr td {
    vertical-align: middle;
}
.w-100 {
    width: 100%;
}

.usreIcon {
    position: relative;
}
.usreIcon > a > span {
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}
.logoutDd {
    position: absolute;
    background: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.2) 0 5px 10px -5px;
    border-radius: 10px;
    right: 0;
    width: 150px;
    top: 100%;
    max-height: 0;
    transition: all ease-in-out 0.8s;
    visibility: hidden;
    overflow: hidden;
}
.logoutDd.forlang {
    width: 100px;
}
.logoutDd.forCurency {
    width: 90px;
}
.usreIcon:hover .logoutDd {
    max-height: 350px;
    opacity: 1;
    visibility: visible;
}
.logoutDd:before {
    content: "";
    position: absolute;
    top: 0;
    right: 17px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent var(--primary) transparent;
    transform: rotate(0deg);
}
.logoutDd li:not(:last-child) {
    border-bottom: var(--color-light-2) 1px solid;
}
.logoutDd li a {
    display: block;
    padding: 5px 20px;
    /* border-radius: 10px; */
    transition: all ease-in-out 0.4s;
}
.logoutDd li a:hover {
    background: var(--primary);
    color: var(--color-white);
}

.addNewTrip {
    position: relative;
}
.addNewTripDd {
    position: absolute;
    background: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.2) 0 5px 10px -5px;
    border-radius: 10px;
    right: 0;
    width: 100%;
    top: 100%;
    max-height: 0;
    transition: all ease-in-out 0.8s;
    visibility: hidden;
    overflow: hidden;
    z-index: 2;
}

.addNewTrip:hover .addNewTripDd {
    max-height: 350px;
    opacity: 1;
    visibility: visible;
}

.addNewTripDd li:not(:last-child) {
    border-bottom: var(--color-light-2) 1px solid;
}
.addNewTripDd li a {
    display: block;
    padding: 5px 20px;
    border-radius: 10px;
    transition: all ease-in-out 0.4s;
    background-color: var(--color-white);
    color: var(--color-light-1);
}
.addNewTripDd li a:hover {
    background: var(--color-light-2);
}

.angleDown {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 8px 9.5px 0 9.5px;
    border-color: var(--color-light-1) transparent transparent transparent;
    transform: rotate(0deg);
}
.minH-100 {
    min-height: 80vh;
}
.bdFooter {
    position: fixed;
    bottom: 0;
    right: 0;
    width: calc(100% - var(--dashboard-width));
    padding: 0 60px;
    background-color: var(--color-white);
    z-index: 999;
}

.categoriesFormWrap {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 0;
}
.categoriesForm + .categoriesForm {
    margin-top: 1.5rem;
}
/* .categoriesForm:not(:last-child) {
  margin: 1.5rem;
} */

/* imageUpload */
.uploadArea label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.uploadArea input {
    opacity: 0;
    width: 0px;
}

.uploadArea img {
    max-width: 250px;
    border-radius: 999px;
    outline: 3px solid var(--primary);
    cursor: pointer;
    transition: 200ms ease-in-out;

    /* prevents uploaded image from distortion: */
    aspect-ratio: 1;
    object-fit: cover;
}

.uploadArea img:hover {
    outline: 8px solid var(--primary);
}

#toast {
    visibility: hidden;
    min-width: 100px;
    margin-left: -125px;
    background-color: var(--primary);
    color: whitesmoke;
    text-align: center;
    border-radius: 8px;
    padding: 12px;
    position: fixed;
    z-index: 1;
    right: 5%;
    top: 30px;
}

#toast.show {
    visibility: visible;
    -webkit-animation:
        fadein 0.5s,
        fadeout 0.5s 2.5s;
    animation:
        fadein 0.5s,
        fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 30px;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }
    to {
        top: 30px;
        opacity: 0;
    }
}
/* imageUpload */

.submitBtn {
    background: var(--primary);
    color: var(--color-white);
    padding: 16px 50px;
    text-transform: uppercase;
}

.innerNav ul {
    display: flex;
    flex-wrap: wrap;
}

.innerNav ul li:not(:last-child) {
    margin-right: 10px;
}
.innerNav ul li a {
    display: block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid;
}
.innerNav ul li a.settings {
    border-color: #ffcaca;
    color: #d15656;
}
.innerNav ul li a.settings:hover {
    border-color: #d15656;
    color: #fff;
    background: #d15656;
}
.innerNav ul li a.people {
    border-color: #cae0fa;
    color: #5588ca;
}
.innerNav ul li a.people:hover {
    border-color: #5588ca;
    color: #fff;
    background: #5588ca;
}
.innerNav ul li a.embed {
    border-color: #fdeb98;
    color: #ceb237;
}
.innerNav ul li a.embed:hover {
    border-color: #ceb237;
    color: #fff;
    background: #ceb237;
}
.innerNav ul li a.pdf {
    border-color: #f9d0fa;
    color: #c045c0;
}
.innerNav ul li a.pdf:hover {
    border-color: #c045c0;
    color: #fff;
    background: #c045c0;
}
.innerNav ul li a.preview {
    border-color: #94f587;
    color: #61ca51;
}
.innerNav ul li a.preview:hover {
    border-color: #61ca51;
    color: #fff;
    background: #61ca51;
}
.innerNav ul li a.send {
    border-color: fff#64e6d0;
    color: var(--primary);
}
.innerNav ul li a.send:hover {
    border-color: var(--primary);
    color: #fff;
    background: var(--primary);
}

.backBtn {
    margin-left: 2rem;
    display: block;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    background: var(--color-info-2);
    color: var(--color-white);
}
.backBtn:hover {
    background: var(--secondery);
    color: var(--color-white);
}

.backBtn i {
    margin-right: 5px;
}

/* Pagination */
.pagination {
    display: flex;
}
.pagination li {
    margin: 0 4px;
}
.pagination li button {
    display: block;
    background: var(--color-light-2);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    padding: 0 0.75rem;
}

.pagination li.active button {
    background: var(--primary);
    color: var(--color-white);
}
/* Pagination */
.addNewDateArea {
    position: relative;
}
.textLabel:not(:last-child) {
    margin-right: 5px;
}
.textLabel > a {
    display: block;
    line-height: 36px;
    padding: 0 10px;
    box-shadow: rgba(0, 0, 0, 0.4) 0 0 5px -2px;
    color: var(--primary);
    border-radius: 5px;
    text-align: center;
}
.textLabel > a.done,
.textLabel > a.addNewDay {
    background: var(--primary);
    color: var(--color-white);
}
.textLabelDd {
    position: absolute;
    background: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.2) 0 5px 10px -5px;
    border-radius: 10px;
    right: 0;
    width: 100%;
    top: 100%;
    max-height: 0;
    transition: all ease-in-out 0.8s;
    visibility: hidden;
    overflow: hidden;
    z-index: 9;
}

.textLabel:hover .textLabelDd {
    max-height: 350px;
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
}
.textLabelDd ul li:not(:last-child) {
    margin-bottom: 1px;
}
.textLabelDd ul li a {
    display: block;
    padding: 5px 15px;
}

.textLabelDd ul li.deleteDay a {
    border-top: var(--color-blue-2) 1px solid;
}
.infoAndDiscount ul li:not(:last-child) {
    margin-bottom: 2px;
}

.infDocLable {
    line-height: 1;
    font-weight: 600;
    padding: 14px 10px;
    background: var(--color-blue-2);
    border-radius: 5px;
}

.dayLable {
    line-height: 1;
    font-weight: 600;
    padding: 14px 10px;
    border-radius: 5px;
}
.dayCheck {
    margin-top: 10px;
}
.dayCheck ul li:not(:last-child) {
    border-bottom: var(--color-green-1) 1px solid;
}

.dayCheck ul li.active .dayLable,
.dayCheck ul li:hover .dayLable {
    background: var(--color-green-1);
}
.eachDate {
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
}
.eachDate:hover,
.active.eachDate {
    background-color: var(--color-green-1);
    /* color: var(--color-white); */
}
.eachDate a {
    color: var(--color-black);
}
.eachDate a h5,
.eachDate a p {
    font-size: 0.875rem;
    line-height: 1;
}
.infoAndDiscount {
    margin-top: 20px;
}

.bann {
    height: 400px;
    background-size: cover !important;
    /* border-radius: 10px; */
    position: relative;
}
.bannBtm {
    width: 100%;
    padding: 30px;
    position: absolute;
    bottom: 0;
}
.yourItinerary a {
    background: var(--color-white);
    display: block;
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--color-dark-1);
    font-weight: 600;
}
.yourItinerary a:hover {
    background: var(--color-info-1);
}
.yourItinerary a .eye {
    color: var(--primary);
}
.yourItinerary a .pen {
    color: var(--color-blue-1);
}

.changeCover a {
    background: var(--primary);
    display: block;
    padding: 10px 20px;
    border-radius: 10px;
    color: var(--color-white);
    font-weight: 600;
}
.changeCover a:hover {
    background: var(--secondery);
}

.input-1 {
    border: 1px solid var(--color-border) !important;
    border-radius: 4px;
    padding: 0 15px;
    min-height: 50px;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.setDateBox,
.buildItineraryBox {
    padding: 3rem;
    box-shadow: rgba(0, 0, 0, 0.2) 0 -10px 29px -10px;
    max-width: 400px;
    width: 100%;
    margin-top: 30px;
    position: relative;
    background: var(--color-white);
    border-radius: 10px;
}

.setDateBox::before,
.buildItineraryBox::before {
    content: "";
    position: absolute;
    top: -7px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 9.5px 8px 9.5px;
    border-color: transparent transparent var(--color-white) transparent;
    transform: rotate(0deg);
}
.setDateBox::before {
    left: 30px;
}
.buildItineraryBox::before {
    right: 30px;
}
.dnelRight h2 {
    text-align: left;
}
.addEventTop {
    margin-top: 20px;
}
.dayNewEvent {
    /* background: var(--color-blue-2); */
    padding: 10px 0;
    /* border-radius: 10px; */
    margin-top: 20px;
    border-bottom: var(--color-border) 1px dashed;
}
.dnelLeft {
    text-align: center;
    background: var(--color-info-2);
    padding: 10px 30px;
    color: var(--color-white);
    border-radius: 6px;
    font-weight: 600;
    line-height: 1;
}
.dnelLeft span {
    display: block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 0;
    margin-top: 3px;
}
.dnelRight {
    padding: 0 15px;
}

.dayNewEventRight {
    position: relative;
}
.newEventDd {
    position: absolute;
    background: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.2) 0 5px 10px -5px;
    border-radius: 10px;
    right: 0;
    width: 200px;
    top: 100%;
    max-height: 0;
    transition: all ease-in-out 0.8s;
    visibility: hidden;
    overflow: hidden;
    z-index: 2;
}

.dayNewEventRight:hover .newEventDd {
    max-height: 250px;
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
    overflow-y: auto;
}
.newEventRight .newEventDd {
    top: auto;
    bottom: 100%;
}

.newEventDd li a {
    padding: 5px 15px;
    display: block;
}
.newEventDd li a:hover {
    background: var(--color-light-2);
    color: var(--primary);
}
.newEventDd li a i {
    margin-right: 5px;
}
.newEventDd li a img {
    margin-right: 5px;
    display: inline-block;
    width: 16px;
    transition: all ease-in-out 0.4s;
}
.newEventDd li a:hover img {
    filter: invert(100%);
}

.activityModalBox {
}
.activityModalBox:not(:last-child) {
    border-bottom: var(--color-border) 1px solid;
}
.ambLeft {
    padding: 0 30px;
    flex: 0 0 150px;
    max-width: 150px;
    font-weight: 600;
    line-height: 1.3;
}
.ambLeftLabel {
    flex: 0 0 auto;
    padding: 0 30px;
    width: 365px;
    font-weight: 600;
    line-height: 1.3;
}
.ambRightTextArea {
    padding: 16px 30px;
    border-left: var(--color-border) 1px solid;
}

.ambRight .select__button {
    height: 50px;
}
.ambRight {
    padding: 16px 30px;
    border-left: var(--color-border) 1px solid;
}
.ambRight .form-radio:not(:last-child) {
    margin-right: 20px;
}
.activityNav ul li:not(:last-child) {
    margin-right: 3px;
}
.activityNav ul li a {
    display: block;
    padding: 3px 10px;
    border: var(--color-border) 1px solid;
    transition: all ease-in-out 0.4s;
    font-size: 13px;
    border-radius: 5px;
    background-color: #7886e7;
    color: #fff;
}
.activityNav ul li a.active,
.activityNav ul li a.sub_active,
.activityNav ul li a:hover {
    background: var(--primary);
    color: var(--color-white);
    border-color: var(--primary);
}
.activityModalBody {
    overflow: auto;
    max-height: 70vh;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
}

.activityModalBody::-webkit-scrollbar {
    display: none;
}

/* imgUpload */
.upload__box {
    /* padding: 40px; */
}
.upload__inputfile,
.upload_cover_file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.upload__btn {
    display: inline-block;
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
    width: 100%;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid;
    background-color: transparent;
    border: var(--color-blue-2) 2px dashed;
    border-radius: 10px;
    line-height: 26px;
    font-size: 16px;
}
.upload__btn:hover {
    background-color: var(--color-blue-2);
    color: #4045ba;
    transition: all 0.3s ease;
}
.upload__btn-box {
    margin-bottom: 10px;
}
.upload__img-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}
.upload__img-box {
    width: 100%;
    padding: 0 3px;
    margin-bottom: 6px;
}
.upload__img-close,
.upload__img-close-edit {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}
.upload__img-close:after,
.upload__img-close-edit:after {
    content: "✖";
    font-size: 14px;
    color: var(--color-white);
}

.img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
    border-radius: 5px;
}

/* imgUpload */

/* atachmentUpload */

.file-uploader {
    /* background-color: #dbefe9;
  border-radius: 3px;
  color: #242424; */
}

.file-uploader__message-area {
    font-size: 18px;
    /* padding: 1em; */
    text-align: left;
    color: var(--primary);
    border-bottom: #eee 1px dashed;
    font-weight: 700;
    margin-bottom: 10px;
}

.file-list {
    font-size: 16px;
}

.file-list__name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-list li,
.file-list-edit li {
    border: none;
    overflow: hidden;
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 5px;
    margin: 5px 0;
}

.flInner {
    background: var(--color-light-2);
    height: 50px;
    line-height: 50px;
    display: flex;
    justify-content: space-between;
}

.removal-button,
.remove-edit-attachment {
    width: 20%;
    border: none;
    background-color: var(--color-info-2);
    color: white;
}
.removal-button::before,
.remove-edit-attachment:before {
    content: "X";
}
.removal-button:focus,
.remove-edit-attachment:focus {
    outline: 0;
}

.file-chooser {
    /* padding: 1em; */
    transition:
        background-color 1s,
        height 1s;
}
.file-chooser p {
    font-size: 18px;
    padding-top: 1em;
}

.file-uploader {
}

.file-uploader input[type="submit"] {
    margin-top: 2em;
    float: right;
}

.file-list {
    margin: 0 -5px;
    display: flex;
    flex-wrap: wrap;
}

.file-list__name {
    flex: 1 0 0%;
    padding: 0 15px;
}

.removal-button {
    display: inline-block;
    height: 100%;
    float: right;
}

.file-chooser {
    /* width: 90%; */
    margin: 0.5em auto;
}

.file-chooser__input {
    margin: 0 auto;
}

.file-uploader__submit-button {
    width: 100%;
    border: none;
    font-size: 1.5em;
    padding: 1em;
    background-color: #72bfa7;
    color: white;
}
.file-uploader__submit-button:hover {
    background-color: #a7d7c8;
}

.file-list li:after,
.file-uploader:after,
.file-list-edit li:after {
    content: "";
    display: table;
    clear: both;
}

.hidden {
    display: none;
}
.hidden input {
    display: none;
}

.error {
    background-color: #d65d38;
    color: white;
}

/* atachmentUpload */
.automaticDd h6 {
    line-height: 1;
}
.automaticDd small {
    font-size: 11px;
}
.cbCont {
    line-height: 1;
}
.cbCont small {
    margin-top: 3px;
    margin-left: 10px;
    font-weight: 400;
    color: var(--color-light-1);
}

.ambRight .form-checkbox {
    margin-bottom: 15px;
    color: var(--color-dark-1);
    font-weight: 600;
}

.tripEventListBox {
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 20px -10px;
    border-radius: 10px;
}

.editIcon,
.deleteIcon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: var(--color-blue-2) 1px solid;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.editIcon:hover,
.deleteIcon:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--color-white);
}

.tripEventImage,
.attachmentItemWrap {
    margin-top: 2rem;
}
.tripEventImage ul li {
    flex: 0 1 10rem;
    padding: 0 0.5rem;
    position: relative;
    margin-bottom: 1rem;
}
.tripEventImage ul li span {
    display: block;
}

.tripEventImage ul li span img {
    display: block;
    width: 100%;
    border-radius: 6px;
}

.managerTripBackend ul li span img {
    height: 80px;
    object-fit: cover;
}

.attachmentBox {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0.5rem;
    position: relative;
    margin-bottom: 1rem;
}
.attachmentBox a {
    display: inline-block;
}
.attachmentBox span {
    width: 10rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.attachmentBox span img {
    width: 100%;
    border-radius: 6px;
}

.attachmentBox a {
    border: var(--color-border) 1px solid;
    padding: 0.5rem;
    border-radius: 6px;
}
.attachmentBox p {
    border-bottom: var(--primary) 1px solid;
    display: inline-block;
    color: var(--color-dark-3);
    margin-top: 0.5rem;
    font-weight: 500;
    font-size: 1.25rem;
}
.attachmentBox h5 {
    font-size: 1rem;
    font-weight: 600;
}
.attachmentBox p i {
    font-size: 1rem;
    color: var(--primary);
}

.telbHeader {
    border-bottom: #eee 1px solid;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.upload__img-box-edit {
    width: 100px;
    padding: 0 3px;
    margin-bottom: 6px;
    position: relative;
}

.upload__img-box-edit img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.dashboard__content {
    /* height: calc(100vh - 90px);
  overflow-y: auto; */
}

.eventDisplayDescription ul li {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 0.5rem;
    margin-bottom: 0.8rem;
}
.eventDisplayDescription ul li h5 {
    font-size: 1rem;
}

.attachmentBox {
    flex: 0 0 auto;
    max-width: 100%;
    padding: 0 0.5rem;
    position: relative;
    margin-bottom: 1rem;
}
.attachmentBox a {
    display: inline-block;
}
.attachmentBox span {
    width: 10rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.attachmentBox span img {
    width: 100%;
    border-radius: 6px;
}

.attachmentBox a {
    border: var(--color-border) 1px solid;
    padding: 0.5rem;
    border-radius: 6px;
}
.attachmentBox p {
    border-bottom: var(--primary) 1px solid;
    display: inline-block;
    color: var(--color-dark-3);
    margin-top: 0.5rem;
    font-weight: 500;
    font-size: 1.25rem;
}
.attachmentBox h5 {
    font-size: 1rem;
    font-weight: 600;
}
.attachmentBox p i {
    font-size: 1rem;
    color: var(--primary);
}

.telbHeader {
    border-bottom: #eee 1px solid;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.dayPlan {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 20px;
    transition: all ease-in-out 0.4s;
    overflow-y: auto;
    max-height: 84%;
}
.dayPlan a {
    display: block;
    padding: 5px 0 !important;
    font-weight: 600;
    border: none !important;
    background-color: transparent;
    line-height: 1.3;
}
.dayPlan ul {
    padding-left: 20px;
    position: relative;
}
.dayPlan ul li {
    position: relative;
    border: none !important;
    background-color: transparent;
    padding: 0 !important;
}
.dayPlan ul li:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--color-dark-1);
    left: -23px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}
.dayPlan ul li:not(:last-child) {
    margin-bottom: 3px;
}

.dayPlan ul:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    border-left: 1px dashed var(--primary);
}

.dayPlan ul li.active a:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--primary);
    left: -23px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}
.dayPlan ul li.active a {
    color: var(--primary);
    background-color: transparent;
}

.note-editable {
    height: 250px !important;
}

.telbHeaderRight {
    position: absolute;
    top: 9px;
    right: 1rem;
}

.sidebarInner .form-checkbox input {
    cursor: pointer;
    z-index: 5;
    position: absolute;
    top: 14px;
    left: 9px;
    height: 16px;
    width: 16px;
    opacity: 0;
}
.sidebarInner .form-checkbox a {
    margin: 0;
    margin-left: 9px;
    font-size: 14px;
    flex: 1 0 0;
}

.liberySideBar {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    width: var(--dashboard-width);
    height: calc(100% - 90px);
    will-change: transform;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.liberySideBarInner {
    overflow-y: scroll;
    position: relative;
    height: 100%;
    padding: 25px 20px 40px;
}

span.pullSidebar {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    background: var(--primary);
    height: 50px;
    width: 30px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    border-radius: 5px 0 0 5px;
}
.input-1 {
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 0 60px 0 15px;
    min-height: 42px;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lsbTop {
    margin-bottom: 1.25rem;
}
.lsbTop button {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    line-height: 42px;
    text-align: center;
}
.srcArea {
    flex-grow: 1;
    position: relative;
    margin-right: 10px;
}
.filterSrc {
    position: relative;
}
.filterSrc > a {
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: var(--primary);
    color: var(--color-white);
    display: block;
    border-radius: 6px;
}
.filterSrc:hover .newEventDd {
    max-height: 350px;
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
}

.filterSrc .newEventDd ul li a {
    position: relative;
    padding-left: 40px;
}
.filterSrc .newEventDd ul li a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: var(--color-blue-1) 1px solid;
    border-radius: 50%;
    transition: all ease-in-out 0.5s;
}
.filterSrc .newEventDd ul li a.active:before,
.filterSrc .newEventDd ul li a:hover:before {
    background: var(--color-blue-1);
}
.lsbItemBox {
    /* box-shadow: rgba(0, 0, 0, 0.1) 0 10px 10px -5px; */
    border: #e5e4e4 1px solid;
    padding: 10px;
    border-radius: 10px;
}
.lsbItemBox:not(:last-child) {
    margin-bottom: 0.5rem;
}
.lsbItemBoxLeft {
    flex: 0 0 40px;
}
.lsbItemBoxLeft span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.lsbItemBoxRight {
    flex: 1 0 0%;
    padding-left: 0.6rem;
}
.itemIcon .lsbItemBoxLeft span {
    display: flex;
    justify-content: center;
    align-items: center;
}
.itemIcon .lsbItemBoxLeft span img {
    width: 24px;
}

.itemImg .lsbItemBoxLeft span img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: cover;
}
.lsbItemBoxRight h5 {
    font-size: 16px;
}

.singleMenu.sticky {
    opacity: 1;
    pointer-events: unset;
}

.itemBox:not(:last-child) {
    margin-bottom: 1.25rem;
}

.bg-blue {
    background-color: #29b4cc;
    padding: 78px 0;
}

.bg-gray {
    background-color: #f6f6f6;
    padding: 40px 0;
}

.list-group .scrollspy-link {
    /*   width: 124px; */

    position: fixed;
    top: 73px;
    /*   margin-top: -28%; */
    padding: 20px;
    background-color: #fff;
    border-radius: 7px;
}

h4 {
    color: #a7275c;
}

.list-group-item.active,
.list-group-item:hover {
    color: #a7275c;
    background-color: unset;
    border-color: #a7275c;
    border-left: 5px solid #a7275c;
}

.list-group-item:first-child {
    border-top-left-radius: unset;
    border-top-right-radius: unset;
}

.list-group-item:last-child {
    border-bottom-right-radius: unset;
    border-bottom-left-radius: unset;
}
/* .list-group-item.active {
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
} */

.list-group-item {
    border: unset;
}
.eventBox {
    border: 1px solid var(--color-border);
    margin-bottom: 20px;
    padding: 30px;
}
.date_name {
    display: block;
    font-size: 14px;
    color: #808080;
    font-weight: 600;
}

.isUserLoggedIn .dropdown-toggle {
    background-color: var(--primary);
    border: none;
    box-shadow: none;
}
.isUserLoggedIn .dropdown-menu .dropdown-item {
    color: var(--color-dark-1);
}
.isUserLoggedIn .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary);
    color: var(--color-white);
}
.galleryGrid.-type-single img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.-type-2 img,
.-type-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event_map iframe {
    width: 100% !important;
    height: 300px;
}
.event_front_map iframe {
    width: 100%;
}
.banner-img-box {
    display: block;
    height: 100%;
    width: 100%;
}
.banner-img-box img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* 03.01.2025 Start */
.edit-pagesection {
    display: block;
    width: 100%;
}
.edit-pagesection .dashboard__main {
    padding-right: 0;
}
.btn-list > ul {
    margin: -0.25rem;
    display: flex;
}
.btn-list > ul > li {
    padding: 0.25rem;
}
.btn-list .bg-orrange-btn,
.btn-list .bg-blue-btn {
    padding: 0 30px;
    height: 48px;
}
.bg_orrange {
    background-color: var(--primary) !important;
}
.bg_blue {
    background-color: var(--color-dark-4) !important;
}
.icon-badge {
    position: absolute;
    left: -15px;
    top: 15px;
    z-index: 1;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon-badge-img {
    display: block;
    height: 14px;
    width: 14px;
}
.icon-badge-img img {
    display: block;
}
.icon-box-list ul {
    margin: -0.25rem;
    display: flex;
    flex-wrap: wrap;
}
.icon-box-list ul li {
    padding: 0.25rem;
    display: flex;
}
.icon-box {
    height: 20px;
    width: 20px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon-box-img {
    display: block;
    height: 10px;
    width: 10px;
}
.icon-box-img img {
    display: block;
}
/* Dropdown Start */
.dropdown-div {
    position: relative;
    display: inline-block;
}
.dropdown-div-list {
    position: absolute;
    background: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.2) 0 5px 10px -5px;
    left: 0;
    width: 140px;
    top: 100%;
    max-height: 0;
    transition: all ease-in-out 0.8s;
    visibility: hidden;
    overflow-y: auto;
    z-index: 2;
    opacity: 0;
}

.dropdown-div:hover .dropdown-div-list {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
    padding: 10px 0;
}

.dropdown-div-list li a {
    padding: 5px 15px;
    display: block;
    color: #fff;
}
.dropdown-div-list li a:hover {
    background: var(--color-light-2);
    color: var(--primary);
}
.dropdown-div-list li a img {
    margin-right: 5px;
    width: 20px;
}
.selected-option {
    border: 1px solid var(--primary);
    border-radius: 6px;
    padding: 0.25px 1.27rem;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.selected-option img {
    margin-right: 5px;
    width: 20px;
}
/* &::-webkit-scrollbar-track-piece:end {
  margin-bottom: 20px;
}
&::-webkit-scrollbar-track-piece:start {
  margin-top: 20px;
} */
.dropdown-div-list::-webkit-scrollbar-track {
    background-color: transparent;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.dropdown-div-list::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: transparent;
}

.dropdown-div-list::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.dropdown-div-list::-webkit-scrollbar-track-piece:end {
    margin-bottom: 20px;
}
.dropdown-div-list::-webkit-scrollbar-track-piece:start {
    margin-top: 20px;
}
html[dir="rtl"] .dropdown-div-list {
    left: auto;
    right: 0;
}
html[dir="rtl"] .dropdown-div-list li a img {
    margin-right: 0;
    margin-left: 5px;
}
html[dir="rtl"] .selected-option img {
    margin-right: 0;
    margin-left: 5px;
}
/* Dropdown End */

.catInputArea select {
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0 15px;
    min-height: 70px;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.saveOrDuplicateDate .textLabel {
    position: relative;
}

.saveOrDuplicateDate .textLabelDd {
    width: 200px;
    left: 0;
    right: auto;
    top: auto;
    bottom: 100%;
}

.saveOrDuplicateDate .textLabel > a {
    line-height: 46px;
    padding: 0 18px;
}

.saveOrDuplicateDate .textLabel:not(:last-child) {
    margin-right: 14px;
}

/* 03.01.2025 End */
.scrollbar::-webkit-scrollbar-track {
    background-color: transparent;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: transparent;
}

.scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.scrollbar::-webkit-scrollbar-track-piece:end {
    margin-bottom: 20px;
}
.scrollbar::-webkit-scrollbar-track-piece:start {
    margin-top: 20px;
}
.search-section {
    position: relative;
}
.autocomplete-results {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    padding: 0.5rem 0.25rem;
    max-height: 200px;
    overflow-y: auto;
}
.autocomplete-results li {
    line-height: 1.3;
    font-size: 0.875rem;
    padding: 0.25rem;
    cursor: pointer;
}
.autocomplete-results li:hover {
    background-color: #dfe4ef;
    transition: all ease-in-out 0.4s;
    padding: 0 20px;
}
.view-file-box {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem;
    background: #f9f9f9;
    border-radius: 0.5rem;
}
.view-file-box-lft {
    flex: 0 0 200px;
    max-width: 200px;
}
.inputArea {
    line-height: 1.3;
}
.view-file-box-rgt {
    flex-grow: 1;
    padding-left: 1rem;
}
.file-box-img {
    display: block;
    border-radius: 0.25rem;
}
.file-box-img img {
    display: block;
    width: 100%;
}
.view-file-box-rgt-lft {
    flex: 0 0 auto;
    width: calc(100% - 20px);
}
.view-file-box-rgt-rgt {
    flex: 0 0 auto;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.file-delete-btn {
    display: block;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f00;
    color: #fff;
}
.view-file-box-rgt-lft h4 {
    font-size: 1rem;
    line-height: 1.2;
}
.view-file-box-rgt-lft a {
    font-size: 0.875rem;
}
.view-file-box-rgt-lft a:hover {
    color: var(--primary);
}
html[dir="rtl"] .view-file-box-rgt {
    padding-left: 0;
    padding-right: 0.5rem;
}

.loader-wrap {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lds-dual-ring {
    box-sizing: border-box;
    display: inline-block;
    width: 80px;
    height: 80px;
}
.lds-dual-ring::after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6.4px solid #e51010;
    border-color: #e51010 transparent #e51010 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
    box-sizing: border-box;
}
.bg_orange {
    background-color: rgb(247, 205, 127) !important;
}
.formError {
    border: 3px solid #fbbebe !important;
}
.note-link-btn {
    color: #fff !important;
    background-color: #0b5ed7 !important;
    border-color: #0a58ca !important;
}
.customer_assign_loader_wrap {
    display: none;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
    z-index: 1001;
    left: 0;
    top: 0;
}
.customer_assign_loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid #f07f7f;
    border-top: 5px solid #de1805;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1000;
    /* background: #ffffff; */
}

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

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ------------------- */

/* Necessary styles */
.rtl-slider-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}
.rtl-slider-flex .rtl-slider {
    width: 80%;
    margin-right: 1%;
}
.rtl-slider-flex .rtl-slider-nav {
    width: 19%;
    margin-top: -2px;
}

.rtl-slider-flex .thumb-prev,
.rtl-slider-flex .thumb-next {
    position: absolute;
    top: 50%;
    bottom: 4px;
    height: 88px;
    width: 9.5%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}
.rtl-slider-flex .thumb-prev {
    right: 9.5%;
}

.rtl-slider-flex {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
}
.rtl-slider-flex .rtl-slider {
    width: 80%;
    margin-left: 1%;
    margin-right: 0;
}
.rtl-slider-flex .rtl-slider-nav {
    width: 19%;
    margin-top: -2px;
}
.rtl-slider-flex .rtl-slider-nav .rtl-slider-slide {
    padding-top: 78%;
    margin-bottom: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.rtl-slider-nav .slick-current .rtl-slider-slide:after {
    opacity: 0;
}

.rtl-slider-flex .rtl-slider-nav .rtl-slider-slide:after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
}

.rtl-slider-flex .rtl-slider-slide {
    background: #0b69b7 url("") no-repeat center/cover;
    padding-top: 80%;
    background-size: cover !important;
    border-radius: 20px;
}
.rtl-slider-flex .thumb-prev {
    /* right: calc(19% + 15px); */
    right: 20px;
    height: 30px;
    width: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 50%;
    transform: rotate(90deg);
}
.rtl-slider-flex .thumb-next {
    top: 50%;
    /* right: calc(100% - 38px); */
    left: calc(28% - 38px);
    height: 30px;
    width: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 50%;
    transform: rotate(90deg);
}

.purAttSlider {
    direction: rtl;
}

.slick-prev,
.slick-next {
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* ------------------- */

@media screen and (min-width: 768px) {
    /*   .list-group .scrollspy-link {
    width: 25%;
  } */
}

@media screen and (min-width: 768px) {
    /*   .list-group .scrollspy-link {
    width: 25%;
  } */
}

/* .customer_assign_loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 5px solid #f07f7f;
  border-top: 5px solid #de1805;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1000;
  background: #ffffff;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */

.showGal,
.showGalBtn {
    flex: 0 0 20%;
    max-width: 20%;
}
.showGal img {
    border-radius: 10px;
    height: 100px;
    width: 100%;
    object-fit: cover;
}
.showGalBtn a {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border: #eee 2px dashed;
    color: #666;
    font-weight: 300;
    border-radius: 10px;
    height: 100px;
}

.galModalImg a {
    display: block;
    border-radius: 10px;
}
.galModalImg a img {
    display: block;
    border-radius: 10px;
    height: 120px;
    width: 100%;
}

.rightThumb li a {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.rightThumb li a span {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    line-height: 3;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.attachmentDownload a {
    background-color: #f9f9f9;
    border: #e3dada 1px dashed;
    border-radius: 6px;
    padding: 10px;
}
.atcImg {
    flex: 0 0 60px;
    max-width: 60px;
}
.atcCont {
    flex-grow: 1;
    padding: 0 1rem;
}
.atcCont h5 {
    font-size: 1.125rem;
}
.highlight {
    background-color: #b7f8c7;
}
div.dt-container div.dt-search input {
    border: 1px solid #000;
}
.sidebar_loader_wrap {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
    z-index: 100;
    left: 0;
    top: 0;
    display: none;
    justify-content: center;
}
.sidebar_loader {
    position: absolute;
    top: 7%;
    width: 50px;
    height: 50px;
    border: 5px solid #f07f7f;
    border-top: 5px solid #de1805;
    border-radius: 50%;
    animation: spin2 1s linear infinite;
    z-index: 1000;
}
@keyframes spin2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.tripSingleImage > img {
    max-width: 100%;
    border-radius: 20px;
    display: inline-block;
}
.icon-badge-front {
    top: -12px;
}

.tripTwoImg > img {
    border-radius: 20px;
    width: 100%;
    display: inline-block;
    height: 200px;
    object-fit: cover;
}
.removeMediaImg {
    top: 6px;
    right: 16px;
}

.addInputArea {
    padding: 0 20px;
}

.addInputArea:not(:last-child) {
    margin-bottom: 10px;
    border-bottom: #eee 1px solid;
    padding-bottom: 10px;
}
.addInputArea .inputArea {
    padding-right: 20px;
}
.addInputArea .inputArea:not(:last-child) {
    margin-bottom: 10px;
}

.addTripInfoBtn,
.removeTripInfoBtn {
    display: block;
    padding: 6px 20px;
    border-radius: 6px;
    font-weight: 600;

    position: relative;
    bottom: 5px;
}
.addTripInfoBtn {
    background: var(--color-info-2);
    color: var(--color-white);
}
.removeTripInfoBtn {
    background: var(--bs-red);
    color: var(--color-white);
}

.tripCheckBox ul li:not(:last-child) {
    margin-right: 10px;
    flex: 0 0 auto;
    max-width: 100%;
}
.tripCheckBox {
    padding: 0 20px;
}
.tripCheckBox .form-checkbox a {
    margin: 0;
    margin-left: 9px;
    font-size: 14px;
    flex: 1 0 0;
}

.checkNav ul li:not(:last-child) {
    margin-right: 12px;
}
.checkNav ul li a {
    background: var(--color-blue-2);
    padding: 5px 15px;
    border-radius: 6px;
    color: var(--color-dark-1);
    display: block;
    font-weight: bold;
}
.checkNav ul li a.active {
    background: var(--primary);
    color: var(--color-white);
}

.checkNavDetails {
    position: relative;
}
.checkNavDetails .scrollTop {
    background: var(--color-blue-2);
    padding: 5px 15px;
    border-radius: 6px;
    color: var(--color-dark-1);
    display: none;
    font-weight: bold;
    position: fixed;
    right: 30px;
    bottom: 30px;
    font-size: 20px;
}
.checkNavDetails .scrollTop:hover {
    background: var(--primary);
    color: var(--color-white);
}
.highlightInfo > h3:first-of-type {
    font-weight: bold;
}
.tripInfoBox h3 {
    font-weight: normal;
}
.pdf-loader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.8);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 03.02.2025 Start kartik */
.src-input-wrap .input-1 {
    padding: 0px 15px;
}
.src-input-wrap .modal-btn {
    padding: 0 10px;
    border-radius: 0;
    height: 42px;
    line-height: 40px;
}
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group
    > .input-group-prepend:first-child
    > .input-group-text:not(:first-child),
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.lbl-style {
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
}
.heading-title {
    font-weight: 600;
    line-height: 1.3;
}
.or-title {
    font-weight: 600;
    line-height: 1.3;
    border-top: 1px solid var(--color-border);
    margin-top: 15px;
    padding-top: 15px;
}
.or-title a {
    color: var(--primary);
}
.list > ul {
    margin: -0.25rem;
    display: flex;
    flex-wrap: wrap;
}
.gap {
    padding: 0 20px;
}
.list > ul > li {
    padding: 0.25rem;
}
.lbl-title {
    margin-inline-start: 9px;
    font-size: 14px;
}
.box-wrap {
    padding: 0 20px;
    margin-top: 15px;
}
.add-btn-box {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 6px;
    font-weight: 600;
    background: var(--color-info-2);
    color: var(--color-white);
}
/* 03.02.2025 End */

/* 06.02.2025 start */
.dropdownFlights {
    border: var(--color-border) 1px solid;
    border-radius: 10px;
    margin-top: 10px;
}
.dropdownFlights li {
    padding: 8px 20px;
}
.dropdownFlights li:not(:last-child) {
    border-bottom: var(--color-border) 1px solid;
}

.bold {
    font-weight: bold;
}

.flightRemove {
    color: var(--bs-red);
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1;
}

.flightRemove:hover {
    color: var(--bs-white);
    background-color: var(--bs-red);
}

/* 06.02.2025 end */

/* 12.02.2025 start */
.fromWrap {
    border: var(--color-border) 1px solid;
    border-radius: 6px;
}
.forForm .inputArea label {
    margin-bottom: 5px;
    font-weight: 500;
}

.forForm .inputArea .input-1 {
    min-height: 50px;
    padding: 0 15px;
}

.sidebar h5 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}
.sidebar__item {
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}
.sidebar__item:hover,
.sidebar__item.active {
    color: var(--color-blue-1);
}
.sidebar__item img {
    display: inline-block;
    width: 18px;
}
.sidebar__item:not(:last-child) {
    margin-bottom: 0.5rem;
}

.sidebar.-dashboard:not(:last-child) {
    margin-bottom: 1.5rem;
}

.heightVh {
    height: calc(100vh - 220px);
}
.titleArea {
    padding: 1.5rem;
    border-bottom: var(--color-border) 1px solid;
}
.titleArea .title {
    flex: 0 0 50%;
    max-width: 50%;
}

.faqBody {
    padding: 1.5rem;
}

.faqBody .row:not(:last-child) {
    margin-bottom: 1rem;
}
.planBox {
    padding: 0 1.5rem;
}
.forPlanBox {
    padding: 1.5rem 0;
}
.planBox:not(:last-child) {
    margin-bottom: 1.5rem;
}
.planBox h4 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--color-dark-1);
}
/* 12.02.2025 end */

/* 13.02.2025 Start */
.pagination-style .pagination .page-item .page-link {
    height: 36px;
    width: 36px;
    padding: 0;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}
.pagination-style .pagination .page-item.disabled .page-link {
    color: #b7b7b7;
    opacity: 0.5;
}
.pagination-style .pagination .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
/* 13.02.2025 end */

/* 19.02.2025 start */
.tripPasswordFront {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 99;
}
.tripInput {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    border: #f3f2f2 1px solid;
    border-radius: 10px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 0 40px -20px;
}
.tripInput input {
    flex-grow: 1;
    padding: 0 10px;
}
.tripInput button {
    border: none;
    background-color: var(--primary);
    color: var(--bs-white);
    border-radius: 6px;
    padding: 8px 15px;
    font-weight: bold;
    text-transform: uppercase;
}

/* 21.02.2025 start */

.uploadArea img {
    width: 100%;
}
.uploadLogo .uploadArea {
    /* max-width: 100px; */
}
.uploadLogo .uploadArea label {
    width: 100%;
    justify-content: left;
    flex-direction: row;
    cursor: pointer;
}
.uploadLogo .uploadArea label img {
    width: 80px;
}
.uploadLogo {
    margin: 20px 0 10px;
    border: #eee 1px solid;
    border-radius: 6px;
    padding: 15px 15px 15px 10px;
    background: #f9f9f9;
}
.uploadLogo .uploadArea label p {
    font-weight: bold;
    font-size: 20px;
}
.uploadLogo .uploadArea label:hover p {
    color: #333;
}
.uploadLogo .input-1 {
    background-color: var(--bs-white);
    min-height: 50px;
}

.uploadLogo .inputArea {
    flex: 0 0 35%;
    max-width: 35%;
}
/* 21.02.2025 end */

/* 26.02.2025 start */
.agentLogo img {
    max-width: 200px;
    max-height: 80px;
}
.agentSingleMenuLogo {
    position: absolute;
    left: 0;
    width: 100%;
    max-width: 00px;
    top: 50%;
    transform: translateY(-50%);
}
.agentSingleMenuLogo img {
    max-width: 200px;
    max-height: 80px;
}

.float-download-a {
    position: fixed;
    bottom: -100px; /* Hide initially */
    left: 50%;
    transform: scale(0) translateX(-50%);
    transition: all 0.4s linear;
    z-index: 1000; /* Ensure it's above other elements */
}
.float-download-a .download-container {
    position: relative;
    width: 680px;
    height: 72px;
    padding: 12px 32px;
}
.float-download-a .download-container .bg-layer {
    position: absolute;
    width: 64px;
    height: 64px;
    top: 0;
    left: 50%;
    transform-style: preserve-3d;
    transform: translateX(-50%);
}
.float-download-a .download-container .bg-layer::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 12px;
    background: linear-gradient(
        90deg,
        rgba(221, 250, 244, 0.65) 0%,
        rgba(219, 244, 250, 0.65) 57.5%,
        rgba(212, 253, 248, 0.65) 100%
    );
    border-radius: 12px;
    box-shadow: 0px 0px 6px 0px #ffffff1a inset;
    z-index: 1;
    backdrop-filter: blur(7.5px);
}
.float-download-a .download-container .download-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.float-download-a .download-container .content-logo {
    opacity: 0;
    flex: 0 0 202px;
    max-width: 202px;
}
.float-download-a .download-container .change-item {
    display: flex;
    align-items: center;
    flex: 1 0 0;
}
.float-download-a .download-container .content-text {
    opacity: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-wrap: nowrap;
    color: #17161f;
    font-size: 27px;
    line-height: 22px;
    font-weight: 800;
    margin-left: 20px;
}
.float-download-a .download-container .content-text small {
    font-size: 60%;
}
.float-download-a .download-container .content-button {
    opacity: 0;
}
.float-download-a .download-container .content-button a {
    width: 160px;
    height: 48px;
    background-color: #fff;
    background-image:
        linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 50%),
        linear-gradient(
            83.36deg,
            #83ffe9 -7.87%,
            #58ffda 41.34%,
            #00f0ff 89.57%
        );
    background-size: 100% 96px;
    background-position: 0 -48px;
    transition: all 0.15s linear;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    color: #000;
    border-radius: 8px;
    text-decoration: none;
    border: none;
}
.float-download-a .download-container .close-download {
    opacity: 0;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC4zIj4KPHBhdGggZD0iTTEwIDJMMiAxMCIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0yIDJMMTAgMTAiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L2c+Cjwvc3ZnPgo=");

    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -6px;
    right: -12px;
    transform: translateX(100%);
    cursor: pointer;
}
.float-download-a .download-container .content-button a:hover {
    background-position: 0 48px;
    background-color: #fff;
}

.float-download-a.show {
    bottom: 12px;
    transform: scale(1) translateX(-50%);
    transform-origin: left bottom;
    transition: all 0.4s linear;
}
.float-download-a.show .download-container .bg-layer {
    max-width: 680px;
    width: 100%;
    height: 72px;
    transition: all 0.4s 0.3s linear;
}
.float-download-a.show .download-container .content-logo {
    transition: all 0.4s 0.7s linear;
    opacity: 1;
}
.float-download-a.show .download-container .content-text {
    transition: all 0.4s 0.7s linear;
    opacity: 1;
    flex: 1 0 0%;
}
.float-download-a.show .download-container .content-button {
    transition: all 0.4s 0.7s linear;
    opacity: 1;
}
.float-download-a.show .download-container .close-download {
    transition: all 0.3s 0.7s linear;
    opacity: 1;
}

.float-download-a.leave {
    transform: scale(0) translateX(-50%);
    transition: all 0.4s 0.5s linear;
}
.float-download-a.leave .download-container .bg-layer {
    width: 64px;
    height: 64px;
    transition: all 0.4s linear;
}

/* 26.02.2025 end */

/* 28.02.2025 start */

.activitiesModal .modal-content {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.activitiesModal .modal-header {
    border-bottom: none;
    text-align: center;
}

.activitiesModal .modal-footer {
    border-top: none;
}

/* 🌈 Stylish Tabs */
.activitiesModal .nav-tabs {
    border: none;
    justify-content: center;
}

.activitiesModal .nav-tabs .nav-link {
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 18px;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
    background: linear-gradient(135deg, #2f94ff, #843ef5);
    margin: 5px;
    box-shadow: 0px 4px 8px rgba(0, 123, 255, 0.3);
}

.activitiesModal .nav-tabs .nav-link:hover {
    background: linear-gradient(135deg, #863cfc, #278dfa);
    transform: translateY(-3px);
}

.activitiesModal .nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    box-shadow: 0px 6px 12px rgba(255, 65, 108, 0.4);
}

/* 🟠 Tab Content */
.activitiesModal .tab-content {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

/* 🌟 Button Style */
.activitiesModal .btn-primary {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0px 5px 15px rgba(255, 65, 108, 0.3);
}

.activitiesModal .btn-primary:hover {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    transform: scale(1.05);
}

/* Smooth Hover Animation */
.activitiesModal .btn,
.activitiesModal .nav-link {
    transition: all 0.3s ease-in-out;
}

.activitiesModal table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}
.activitiesModal th,
td {
    border: 1px solid #ddd !important;
    padding: 10px;
    text-align: left;
}
.activitiesModal th {
    background-color: #f4f4f4;
}
.activitiesModal .highlight {
    color: #ee5454;
    font-weight: bold;
    background-color: transparent;
}

.activitiesModal .section {
    /* border: 1px solid #ddd;
    padding: 15px; */
    margin-bottom: 10px;
    /* background-color: #f9f9f9;
    border-radius: 5px; */
}
.activitiesModal .popSecTitle {
    font-weight: bold;
    margin-bottom: 5px;
    /* background-color: #f4f4f4; */
    /* padding: 10px; */
    /* border-bottom: 1px solid #ddd; */
}
.section ul {
    padding-left: 25px;
}
.section ul li {
    list-style: circle;
}

/* 28.02.2025 end */
.adltChild:not(:last-child) {
    margin-right: 10px;
}
.adltChild {
    flex-grow: 1;
}
.adltChild select {
    background-color: #fff;
    height: 34px;
    padding: 0 10px;
    border: #ddd 1px solid;
    border-radius: 5px;
}

/* File multiple product select 05-03-2025 Start */
.file-head-text {
    font-size: 1rem;
}
.file-input {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 0.25rem;
    height: 120px;
}
.file-input .file-input-style {
    opacity: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.file-input-lbl {
    position: absolute;
    color: var(--color-black);
    cursor: pointer;
    font-weight: 500;
}
.select-img-btn {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: var(--color-border) !important;
}
.view-img-list {
    margin: -0.25rem;
    display: flex;
    flex-wrap: wrap;
}
.view-img-list li {
    padding: 0.25rem;
    display: flex;
    flex: 0 0 auto;
    width: 25%;
}
.view-img-box {
    height: 60px;
    width: 100%;
    object-fit: contain;
    border: 1px solid var(--color-border);
    border-radius: 0.25rem;
    overflow: hidden;
}
.view-img-box img {
    display: block;
    width: 100%;
    height: 100%;
}
/* File End */
/* 10.03.2025 Start */
.add-input-location {
    position: relative;
}
.add-input-location input {
    padding-right: 40px;
}
.remove-location {
    position: absolute;
    right: 0;
    height: 100%;
    color: #dc3545;
}
/* 10.03.2025 End */

/* 11.03.25 Start */
.trip-events-box {
    flex: 0 0 auto;
    width: calc(100% - 300px);
}
.day-plan-sidebar {
    flex: 0 0 auto;
    width: 300px;
}
.for-mobile-plan,
.close-sidebar {
    display: none;
}
.close-sidebar-btn {
    color: red;
    padding: 0 8px;
}
.for-mobile-btn {
    background-color: var(--primary);
    padding: 5px 15px;
    border-radius: 6px;
    color: var(--color-white);
    display: block;
    font-weight: bold;
}
/* 11.03.25 End */

/* Start 27-03-2025 */
.trip_password_submit {
    flex: 0 0 auto;
}

.uploadImgMd {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 12px 18px -5px;
    padding: 5px;
    border: #fff 3px solid;
}
.uploadImgMd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* End 27-03-2025 */

/* Start 02-04-2025 for social share button */

.shareBtn {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 5px 12px;
    background: var(--primary);
    border-radius: 6px;
    color: var(--bs-white);
    text-transform: uppercase;
    font-weight: bold;
}

.shareBtn ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    padding-bottom: 10px;
}

.shareBtn:hover ul {
    opacity: 1;
    visibility: visible;
}

.shareBtn ul li {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
}

.shareBtn:hover ul li {
    animation: fadeInUp 0.4s forwards;
}

.shareBtn:hover ul li:nth-child(1) {
    animation-delay: 0s;
}
.shareBtn:hover ul li:nth-child(2) {
    animation-delay: 0.1s;
}
.shareBtn:hover ul li:nth-child(3) {
    animation-delay: 0.2s;
}
.shareBtn:hover ul li:nth-child(4) {
    animation-delay: 0.3s;
}
.shareBtn ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
}
.shareBtn ul li a:hover {
    transform: scale(1.1);
}

.fb {
    background: #1877f2;
}
.twr {
    background: #000000;
}
.ldn {
    background: #0077b5;
}
.wAp {
    background: #028146;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* End 02-04-2025 for social share button */

/*Wizard */

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
}
.step-indicator:before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 1;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}
.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    font-size: 20px;
}
.step-label {
    font-size: 16px;
    color: #666;
    text-align: center;
    font-weight: 500;
}
.step.active .step-icon {
    background-color: var(--primary) !important;
}
.step.completed .step-icon {
    background-color: var(--color-dark-3) !important;
}
.step.active .step-label {
    color: var(--primary) !important;
    font-weight: bold;
}
.step.completed .step-label {
    color: var(--color-dark-3) !important;
}
.progress-bar-custom {
    position: absolute;
    top: 30px;
    left: 0;
    height: 4px;
    background-color: var(--primary) !important;
    z-index: 2;
    transition: width 0.3s ease;
}
.season-card {
    border-left: 4px solid var(--primary) !important;
}
.form-step {
    display: none;
    width: 100%;
    max-width: 700px;
    margin: 3rem auto;
    border: #eee 1px solid;
    padding: 2rem;
    border-radius: 1.25rem;
}
.form-step.active {
    display: block;
}
.tripCalculatorFormSection h4 {
    color: var(--color-dark-1);
}

.tripCalculatorFormSection select,
.tripCalculatorFormSection input:not([type="range"]),
.tripCalculatorFormSection input:not([type="checkbox"]),
.tripCalculatorFormSection textarea {
    border: #dee2e6 1px solid;

    width: 100%;
    background-color: transparent;
}

.tripCalculatorFormSection .form-check-input {
    /* --bs-form-check-bg: var(--bs-form-control-bg); */
    width: 1em !important;
    /* height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact; */
}
.tripCalculatorFormSection .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.tripCalculatorFormSection .shadow {
    box-shadow: 0 1rem 28px -10px rgba(0, 0, 0, 0.1) !important;
    border-radius: 16px;
    border-color: #f9f9f9;
    padding: 30px;
}
/*Wizard */

/*-------------------- Triprouteframe -------------------- */

.layout-pt-240 {
    padding-top: 240px;
}
.flag {
    color: var(--primary);
    font-weight: bold;
    flex: 0 0 50px;
    max-width: 50px;
}

.flagTitle {
    flex: 0 0 calc(100% - 50px);
    max-width: calc(100% - 50px);
}
.flag span {
    background: var(--primary);
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
}

.cityDaysBodyLeft,
.interCityLeft {
    flex: 0 0 170px;
    max-width: 170px;
    padding-left: 50px;
    color: var(--primary);
    font-size: 20px;
    font-weight: bold;
}
.cityDaysBodyRight {
    flex: 0 0 calc(100% - 170px);
    max-width: calc(100% - 170px);
    padding-left: 20px;
}

.cityDaysBodyWrapper:before {
    content: "";
    width: 1px;
    height: 100%;
    border: #8a8a8b 1px dashed;
    position: absolute;
    top: 0;
    left: 20px;
    z-index: -1;
}

.mt-20 {
    margin-top: 20px !important;
}

.cityDaysBody .owl-theme .owl-nav [class*="owl-"] {
    position: absolute;
    top: 50%;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    background-color: var(--color-white);
    border-radius: 50%;
}
.cityDaysBody .owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: var(--primary);
}
.cityDaysBody .owl-theme .owl-nav .owl-prev {
    left: -30px;
}
.cityDaysBody .owl-theme .owl-nav .owl-next {
    right: -30px;
}
.cityDaysBody h3 {
    color: var(--color-black);
}

.cityDaysBody {
    margin-bottom: 20px;
}
.cityDaysBodyLeft {
    position: relative;
}
.cityDaysBodyLeft:before {
    content: "";
    position: absolute;
    left: 12px;
    top: 10px;
    height: 17px;
    width: 17px;
    background: #051040;
    border-radius: 50%;
}
.interCity {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 10px;
}
.interCity li {
    padding-left: 20px;
    position: relative;
    font-size: 18px;
}
.interCity li span {
    font-weight: bold;
}
.interCity li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 13px;
    background: url(../img/icons/r-arrowsvg.svg) 0 0 no-repeat;
    background-size: contain;
}
.interCity h4 {
    color: #051040;
    font-size: 27px;
}
.interCity p {
    font-size: 18px;
    color: #051040;
    margin-bottom: 10px;
}

.cityDaysBodyWrapper:not(:first-child) {
    margin-top: 40px;
}
.cityDaysHeader {
    position: relative;
    top: -3px;
}
/*-------------------- Triprouteframe -------------------- */

/*-------------------- Start 07-04-2025 -------------------- */
.rightSign,
.crossSign {
    position: relative;
}

.rightSign p,
.crossSign p {
    position: relative; /* Needed for absolute :after inside p */
    padding-left: 22px; /* So text doesn't overlap the icon */
}

.rightSign p:before,
.rightSign ul li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00c";
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 16px;
    color: green;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crossSign p:before,
.crossSign ul li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f00d";
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 16px;
    color: red;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crossSign ul li,
.rightSign ul li {
    position: relative;
    padding-left: 30px;
}

/*-------------------- End 07-04-2025 -------------------- */

.js-pin-content {
    transition: margin-top 0.3s ease;
}

.forPhone .iti--allow-dropdown .iti__flag-container,
.forPhone .iti--show-selected-dial-code .iti__flag-container {
    right: auto;
    left: 7px;
    height: 32px;
    bottom: 6px;
}

.forPhone.form-input label {
    top: 16px;
}

.forPhone .iti {
    width: 100%;
}

/* ======================= */
.srcBox {
    position: relative;
}
.srcBox input {
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    border: 2px solid #6a6969;
    border-radius: 50%;
    background: none;
    color: #777;
    font-size: 16px;
    font-weight: 400;
    font-family: Roboto;
    outline: 0;
    -webkit-transition:
        width 0.4s ease-in-out,
        border-radius 0.8s ease-in-out,
        padding 0.2s;
    transition:
        width 0.4s ease-in-out,
        border-radius 0.8s ease-in-out,
        padding 0.2s;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.srcBox .search {
    background: none;
    position: absolute;
    top: 0px;
    right: 1px;
    height: 30px;
    width: 30px;
    padding: 0;
    border-radius: 100%;
    outline: 0;
    border: 0;
    color: inherit;
    cursor: pointer;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
.srcBox .search:before {
    content: "";
    position: absolute;
    width: 13px;
    height: 2px;
    background-color: #6a6969;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: 16px;
    margin-left: 10px;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.srcBox .close {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.srcBox .close:before {
    content: "";
    position: absolute;
    width: 27px;
    height: 2px;
    margin-top: 8px;
    margin-left: -17px;
    background-color: #6a6969;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.srcBox .close:after {
    content: "";
    position: absolute;
    width: 27px;
    height: 2px;
    background-color: #6a6969;
    margin-top: 9px;
    margin-left: -18px;
    cursor: pointer;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.srcBox .square {
    box-sizing: border-box;
    padding: 0 40px 0 10px;
    width: 300px;
    height: 50px;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    background: none;
    color: #777777;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    outline: 0;
    -webkit-transition:
        width 0.4s ease-in-out,
        border-radius 0.4s ease-in-out,
        padding 0.2s;
    transition:
        width 0.4s ease-in-out,
        border-radius 0.4s ease-in-out,
        padding 0.2s;
    -webkit-transition-delay: 0.4s, 0s, 0.4s;
    transition-delay: 0.4s, 0s, 0.4s;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

/* ======================= */

.text-shadow {
    text-shadow: 2px 7px 10px rgba(0, 0, 0, 0.5);
}
.main_date {
    position: relative;
    top: -15px;
}
.loader_icon {
    display: block;
    max-width: 50px;
    height: 40px;
}
.loader_icon img {
    object-fit: cover;
    height: 100%;
}

/*-------------------- start 18-04-2025 -------------------- */

.searchMenu-loc__field {
    margin-top: 15px;
    max-height: 350px;
    overflow-y: auto;
}

.js-results button {
    text-align: left;
}

/*-------------------- End 18-04-2025 -------------------- */

.map_select select {
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 0 60px 0 15px;
    min-height: 42px;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.direction_place_list,
.add_more_direction_place_list {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: #eee 1px solid;
}
.direction_place_list li,
.add_more_direction_place_list li {
    transition: all ease-in-out 0.4s;
}
.direction_place_list li:hover,
.add_more_direction_place_list li:hover {
    cursor: pointer;
    color: #000000;
    background-color: #dfe4ef;
    padding: 0 20px;
}

/* Add CSS 25-04-2025 */
.mapImg {
    padding: 10px;
    border: #ebebeb 1px solid;
    border-radius: 10px;
    display: inline-block;
}
.mapImg img {
    display: block;
    width: 100%;
    border-radius: 10px;
}
.hotelNameGradient {
    width: 100%;
    height: 100%;
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
}
.hotelNameGradient span {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, 0);
    color: #fff;
    z-index: 1;
    font-weight: 900;
    font-size: 0.938rem;
    transition: all ease-in-out 0.6s;
    animation-delay: 0.4s;
    width: 100%;
    line-height: 1;
    padding: 0 15px;
}
.hotelNameGradient::after {
    content: "";
    height: 70%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all ease-in-out 0.4s;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(16, 44, 103, 0.88) 83%,
        rgba(19, 53, 123, 0.88) 99%
    );
}
.-type-2:hover .hotelNameGradient::after {
    /* background: linear-gradient(
    to bottom,
    rgba(19, 53, 123, 0.7) 0%,
    rgba(19, 53, 123, 0.7) 100%
    ); */
    transition-delay: 0.4s;
    height: 100%;
}
.-type-2:hover .hotelNameGradient span {
    transform: translate(-50%, -20px);
}

/* END - 25-04-2025 */

/* stert - 06-05-2025 */
.ribbon {
    width: 165px;
    height: 165px;
    overflow: hidden;
    position: absolute;
    z-index: 1;
    display: none;
    left: 0;
    top: 0;
}
/* .ribbon span::before,
.ribbon span::after {
    position: absolute;
    z-index: -1;
    content: "";
    display: block;
    border: 5px solid #cd6404;
}
.ribbon.classname::before,
.ribbon.classname::after {
    border-color: #cd6404;
} */
.ribbon span {
    display: block;
    width: 200px;
    background-color: var(--primary);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 14px !important;
    transform: rotate(-45deg);
    transform-origin: 46% 368%;
    position: relative;
}

.ribbon-top-right {
    top: -10px;
    right: -10px;
}
.ribbon-top-right::before,
.ribbon-top-right::after {
    border-top-color: transparent;
    border-right-color: transparent;
}
.ribbon-top-right::before {
    top: 0;
    left: 0;
}
.ribbon-top-right::after {
    bottom: 0;
    right: 0;
}
.ribbon-top-right span {
    left: -17px;
    top: 13px;
    transform: rotate(45deg);
}

.cityDaysBody .item {
    padding: 10px 0;
}

.showRibbon .ribbon {
    display: block;
}

/* top left*/
.ribbon-top-left2 {
    top: -9px;
    left: -10px;
}
.ribbon-top-left2::before,
.ribbon-top-left2::after {
    border-top-color: transparent;
    border-left-color: transparent;
}
.ribbon-top-left2::before {
    top: -1px;
    right: 0;
}
.ribbon-top-left2::after {
    bottom: 0;
    left: 0;
}
.ribbon-top-left2 span {
    right: -32px;
    top: 28px;
    transform: rotate(-45deg);
}
.ribbon.ribBlock {
    display: block;
}
.trpCostContainer .card {
    margin-bottom: 15px;
}
/* END - 06-05-2025 */

/* start - 07-05-2025 */
.bannContent h1 {
    font-size: 125px;
}
.bannContent p {
    font-size: 38px;
    line-height: 1.2;
}

@media (min-width: 1920px) {
    .header .header-menu .menu a {
        font-size: 24px;
    }
    .text-14 {
        font-size: 18px !important;
    }
    .text-15 {
        font-size: 20px !important;
    }
    .text-16 {
        font-size: 21px !important;
    }
    .text-17 {
        font-size: 22px !important;
    }
    .text-18 {
        font-size: 24px !important;
    }
    .text-19 {
        font-size: 25px !important;
    }
    .text-20 {
        font-size: 27px !important;
    }
    .text-21 {
        font-size: 28px !important;
    }
    .text-22 {
        font-size: 29px !important;
    }
    .text-23 {
        font-size: 30px !important;
    }
    .text-24 {
        font-size: 31px !important;
    }
    .text-25 {
        font-size: 32px !important;
    }
    .text-26 {
        font-size: 33px !important;
    }
}
/* END - 07-05-2025 */

/* Start - 12-05-2025 */
.mainSearch.-w-900 {
    margin: 0 auto;
}

/* END - 12-05-2025 */

/* Start - 13-05-2025 */
.fb-color {
    border-color: #1877f2;
}

.fb-color:hover {
    background-color: #1877f2;
    color: #fff;
}

/* END - 13-05-2025 */

.activityCard.-type-1 .activityCard__title span,
.tourCard.-type-1 .tourCard__title span,
.hotelsCard.-type-1 .hotelsCard__title span,
.rentalCard.-type-1 .rentalCard__title span,
.rentalCard.-type-2 .rentalCard__title span,
.cruiseCard.-type-1 .cruiseCard__title span {
    background-image: linear-gradient(transparent 33px, black 20px);
}

.icon-heart-selected {
    border-color: var(--primary);
    background-color: var(--primary) !important;
    color: white !important;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c > * {
    line-height: 1;
}

.nowrap {
    white-space: nowrap;
}
.cursor-pointer {
    cursor: pointer;
}

/* Notification Top Start - 05-06-2025 */
.noti-i {
    position: relative;
}
.noti-count {
    position: absolute;
    height: 20px;
    width: 20px;
    display: block;
    inset-inline-end: 0px;
    inset-block-start: 4px;
}
.notificationlist-wrap {
    position: relative;
}
.notification-list {
    position: absolute;
    inset-inline-end: 0;
    background: var(--color-white);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    max-height: 320px;
    /* width: 220px; */
    width: 370px;
    overflow-y: auto;
}
.notification-list li a {
    padding: 0.25rem 1.5rem;
    display: block;
}
.notification-list li a h6 {
    font-size: 0.7rem;
}
.new-notify-style li a {
    padding: 0.25rem 0;
}
.new-notify-style li a:hover {
    color: var(--primary);
}
.notification-list li:not(:last-child) a {
    border-block-end: 1px dashed var(--color-border);
}
.notification-list li a h6 {
    margin-block-end: 0.25rem;
    transition: all ease-in-out 0.4s;
}
.notification-list li a p {
    font-size: 0.75rem;
    line-height: 1.2;
}
.notification-list li a:hover h6 {
    color: var(--primary);
}
.noti-text {
    flex: 0 0 auto;
    width: calc(100% - 30px);
}
.delete-noti {
    flex: 0 0 auto;
    inline-size: 30px;
    block-size: 30px;
}
.delete-notification {
    font-size: 14px;
    cursor: pointer;
    height: 30px;
    width: 30px;
}
.bell {
    font-size: 1rem;
    -webkit-animation: ring 4s 0.7s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 4s 0.7s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: ring 4s 0.7s ease-in-out infinite;
    transform-origin: 50% 4px;
}
@keyframes ring {
    0% {
        transform: rotate(0);
    }
    1% {
        transform: rotate(30deg);
    }
    3% {
        transform: rotate(-28deg);
    }
    5% {
        transform: rotate(34deg);
    }
    7% {
        transform: rotate(-32deg);
    }
    9% {
        transform: rotate(30deg);
    }
    11% {
        transform: rotate(-28deg);
    }
    13% {
        transform: rotate(26deg);
    }
    15% {
        transform: rotate(-24deg);
    }
    17% {
        transform: rotate(22deg);
    }
    19% {
        transform: rotate(-20deg);
    }
    21% {
        transform: rotate(18deg);
    }
    23% {
        transform: rotate(-16deg);
    }
    25% {
        transform: rotate(14deg);
    }
    27% {
        transform: rotate(-12deg);
    }
    29% {
        transform: rotate(10deg);
    }
    31% {
        transform: rotate(-8deg);
    }
    33% {
        transform: rotate(6deg);
    }
    35% {
        transform: rotate(-4deg);
    }
    37% {
        transform: rotate(2deg);
    }
    39% {
        transform: rotate(-1deg);
    }
    41% {
        transform: rotate(1deg);
    }
    43% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(0);
    }
}
/* Notification Top End */

/* Affiliat Top Start */
.affiliate-banner-sec {
    position: relative;
    z-index: 0;
    height: 500px;
}
.affiliate-banner-sec::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 54, 99, 0.42);
}
.affiliate-banner-text h3 {
    margin-block-end: 1rem;
}
.why-choose-box .why-choose-img {
    height: 70px;
    width: 70px;
    margin: 0 auto;
    display: block;
    margin-block-end: 2rem;
}
.why-choose-box h3 {
    color: #0a0101;
    margin-block-end: 1rem;
}
.why-choose-box p {
    color: #0a0101;
    line-height: 1.5;
}
.sect-title {
    margin-block-end: 2rem;
    color: #0a0101;
}
.program-benefits h2 {
    color: #0a0101;
    margin-block-end: 1rem;
}

.program-benefits {
    margin-block-start: 2rem;
}
.register-banner-sec {
    position: relative;
    z-index: 0;
}
.register-banner-sec::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 54, 99, 0.42);
}
.form-input-style .input-style-0 {
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.5 1rem;
    min-height: 50px;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: transparent !important;
    color: #fff;
}
.form-input-style + .form-input-style {
    margin-block-start: 1rem;
}
.form-input-style .textare-style-0 {
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.5 1rem;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: transparent !important;
    color: #fff;
}
.reg-submit-btn {
    margin-block-start: 1.5rem;
}
/* Affiliat Top End */
.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #f39c12;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* 23-06-2025 */

.accom-form-chk {
    display: flex;
}
.accom-form-chk-label {
    flex: 1 0 0%;
    padding-left: 15px;
}

/* END 23-06-2025 */
.social-select ul {
    display: flex;
    margin: -0.25rem;
}
.social-select ul li {
    padding: 0.25rem;
}
.social-selected-btn {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    border: 0px solid var(--primary);
    border-radius: 4px;
}
.social-selected-btn:hover {
    border: 1px solid var(--primary);
}
.social-selected-btn.active {
    background-color: var(--primary);
}
.form-input-style .iti {
    width: 100%;
}

.alert {
    padding: 12px 18px;
    border-radius: 4px;
    position: relative;
    margin-bottom: 15px;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
}
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}
.alert .close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    color: inherit;
    cursor: pointer;
}
.trip-cost-box {
    display: flex;
}
.trip-cost-img {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: block;
}
.trip-cost-dtls {
    flex: 0 0 auto;
    width: calc(100% - 40px);
    padding-inline-start: 1rem;
}
.trip-cost-img img {
    display: block;
    height: 100%;
}
.trip-cost-dtls p {
    line-height: 1.5;
}
.shareBtnArea > *:not(:last-child) {
    margin-right: 0.768rem;
}

/* ====================Amit page a likhe rekhechilo tai ami akhane rakhlam Start========================= */
/* Filter Card */
.filter-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}
.filter-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}
/* Grid Layout */
.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.filter-item label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    color: #555;
}
/* Inputs & Selects */
.filter-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    background: #f9f9f9;
}
.filter-input:focus {
    border-color: #ff7a00;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.2);
    outline: none;
}
/* Search Box */
.search-input-group {
    display: flex;
    align-items: center;
}
.search-input {
    border-start-end-radius: 0;
    border-end-end-radius: 0;
    /* border-top-right-radius: 0;
            border-bottom-right-radius: 0; */
    border: 1px solid #e2e2e2 !important;
}
.btn-search {
    background: #ff7a00;
    color: #fff;
    border: none;
    padding: 10px 18px;
    /* border-radius: 0 30px 30px 0; */
    border-start-end-radius: 30px;
    border-end-end-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    /* transition: background 0.2s; */
}
.btn-search:hover {
    background: #e56b00;
}
/* Reset Button */
.filter-reset {
    margin-top: 15px;
}
.btn-reset {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    background: #f8d7da;
    color: #a94442;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-reset:hover {
    background: #f1b0b7;
}
#filterForm #from_date,
#to_date {
    border: 1px solid #d2cccc;
    background: #f9f9f9;
}

/* Export buttons container */
.export-buttons {
    /* margin: 20px 0; */
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Base button style */
.btn-export {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

/* CSV button */
.btn-export.csv {
    background: linear-gradient(135deg, #28a745, #218838);
}

.btn-export.csv:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
    transform: translateY(-2px);
    color: #000 !important;
}

/* PDF button */
.btn-export.pdf {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.btn-export.pdf:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-2px);
    color: #000 !important;
}
/* ====================Amit page a likhe rekhechilo tai ami akhane rakhlam End========================= */

.modal-header-orange {
    background: #ff7a00 !important;
    border: none !important;
    color: #fff !important;
}
/* ====================Start Thank you page css========================= */
.payment-success-panel {
    margin-top: 50px;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.payment-success-panel .icon {
    font-size: 70px;
    color: #28a745;
}
.payment-success-panel h2 {
    color: #333;
    font-weight: bold;
    margin-top: 15px;
}
.payment-success-panel p {
    font-size: 17px;
    color: #666;
}
.btn-custom {
    background-color: #28a745;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 17px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
}
.btn-custom2 {
    background-color: rgb(255, 122, 0);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 17px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
}
.btn-custom:hover {
    background-color: #218838;
    color: white;
}
/* ====================End Thank you page css========================= */

/* ====================Map popup Fixing Start========================= */

.hotelMapViewFilter {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.hotelMapViewFilter .mapFilter__grid {
    padding-left: 375px;
}
.hotelMapViewFilter .mapFilter__grid.-filters-hidden {
    padding-left: 120px;
}
.hotelMapViewFilter .hotelFliterHeading {
    margin-block-end: 1rem;
}
.hotelMapViewFilter .text-15 {
    font-size: 15px !important;
}
.hotelMapViewFilter .text-18 {
    font-size: 18px !important;
}
.hotelMapViewFilter .mapFilter__close {
    top: 55px;
}
/* .hotelMapViewFilter .hotelFliterHeading {
    direction: ltr;
} */

/* =============== CSS 14-10-2025 =============== */
#mapBooking-data .activityCard__content .text-18 {
    font-size: 14px !important;
}
#mapBooking-data .activityCard__content .text-14 {
    font-size: 14px !important;
}
#mapBooking-data .activityCard__content .pt-10 {
    padding-top: 5px !important;
}
#mapBooking-data .activityCard__content .text-16 {
    font-size: 16px !important;
}
#mapBooking-data .pagination .y-gap-20 {
    margin-top: -5px;
    margin-bottom: -5px;
}
#mapBooking-data .pagination .x-gap-20 {
    margin-left: -5px;
    margin-right: -5px;
}
#mapBooking-data .pagination .y-gap-20 > * {
    padding-top: 5px;
    padding-bottom: 5px;
}
#mapBooking-data .pagination .x-gap-20 > * {
    padding-left: 5px;
    padding-right: 5px;
}
#mapBooking-data .pagination .flex-center {
    font-size: 12px;
}
#mapBooking-data .pagination .size-40 {
    width: 26px;
    height: 26px;
}
#mapBooking-data .pagination .text-14 {
    font-size: 14px !important;
}
/* =============== CSS 14-10-2025 END =============== */

/* =============== CSS 16-10-2025 =============== */
#booking-data .icon-star {
    color: #ff7a00;
}
#mapBooking-data .icon-star {
    color: #ff7a00;
}
.text-yellow-1 {
    color: #ff7a00;
}
/* =============== CSS 16-10-2025 END =============== */

/* ====================Map popup Fixing End========================= */

/* =============== CSS 29-10-2025 END =============== */
.titleWrap {
    margin-bottom: 2rem;
}
.titleWrap h4 {
    font-size: 2.25rem;
}
.align-center {
    align-items: center;
}
.next-step {
    border-radius: 0.625rem;
    padding: 0.625rem 2rem;
}

.tripCalculatorFormSection .btn.btn-outline-secondary {
    border-radius: 0.6rem;
    padding: 0.625rem 2rem;
}
.counter-card {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 20px 15px;
    margin-bottom: 15px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.icon-circle {
    flex: 0 0 2.75rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 10px;
}
.counter-group {
    display: flex;
    align-items: center;
    gap: 5px;
}
.counter-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #6c757d;
}
.counter-btn:hover {
    background-color: #f8f9fa;
}
.counter-btn:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.counter-value {
    font-weight: 500;
    min-width: 20px;
    text-align: center;
    font-size: 14px;
    padding: 0 5px;
}
.info-tooltip {
    position: relative;
    margin-left: 5px;
    line-height: 1;
}
.category-info h6 {
    line-height: 1.2;
}
.info-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: 150px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -75px;
    transition: opacity 0.3s;
    font-size: 12px;
}
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}
.category-info {
    /* display: flex;
    align-items: center;*/
}
.subtext {
    font-size: 12px;
    color: #6c757d;
    margin-left: 5px;
}
@media (max-width: 576px) {
}

.bg-adult {
    background-color: #dbeafe;
}
.bg-adult i {
    color: #316ceb;
}
.bg-child {
    background-color: #dcfce7;
}
.bg-child i {
    color: #17a34a;
}
.bg-toddlers {
    background-color: #f3e7ff;
}
.bg-toddlers i {
    color: #9332ea;
}
.text-toddlers {
    color: #9332ea;
}
.text-child {
    color: #17a34a;
}
.text-adult {
    color: #316ceb;
}
/* =============== CSS 29-10-2025 END =============== */

/* =============== CSS step 2 END =============== */
.seasonCol {
    flex: 0 0 25%;
    max-width: 25%;
}
.season-btn {
    border: 2px solid #e0e0e0;
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.season-btn.active {
    border-color: #dfdcfc;
    background: #f5f4ff;
    color: #ff4fa2;
}
.season-btn i {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
}

.month-btn {
    border: 1px solid #ccc;
    background: #fff;
    padding: 5px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 2px;
}
.month-btn:not(:last-child) {
    margin-right: 2px;
}
.month-btn.active {
    background: #ff8c1a;
    color: #fff;
    border-color: #ff8c1a;
}
.monthAndDayBox {
    flex: 0 0 auto;
    max-width: 100%;
}
.monthAndDayBox h6 {
    margin-bottom: 1rem;
}
.days-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    /* height: 60px; */
    padding: 0.875rem 2rem;
}
.days-box button {
    background: none;
    /* border: none; */
    border: #eee 1px solid;
    border-radius: 8px;
    font-size: 15px;
    width: 40px;
    height: 40px;
    line-height: 1;
    color: #333;
}
.days-box span {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 1.5rem;
    text-align: center;
    display: inline-block;
    line-height: 1;
}
.days-box span span {
    display: block;
    margin: 0;
}
.season-content {
    display: none;
    margin-top: 2rem;
}

/* =============== CSS Step 2 END =============== */

/* =============== CSS Step 3 =============== */

.option-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    min-width: 150px;
    background-color: #fff;
}

.flight-type {
    display: flex;
    align-items: center;
}

.option-card i {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 10px;
    background-color: #f1f1f1;
    padding: 12px;
    border-radius: 10px;
    width: 3rem;
    height: 3rem;
}
.flight-type i {
    margin: 0 1rem 0 0;
}
.option-card h6 {
    margin: 0;
    font-weight: 600;
    color: #1e1e1e;
}

.option-card.active {
    border-color: #dfdcfc;
    background: #f5f4ff;
}

.option-card.active i {
    color: #fff;
    background-color: #6c63ff;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.options-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
/* =============== CSS Step 3 END =============== */

/* =============== CSS Step 4 =============== */

.accommodation-card {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fff;
    height: 100%;
    position: relative;
    width: 100%;
}

.accommodation-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* transform: translateY(-2px); */
}

.accommodation-card.selected {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.accommodation-card .icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #6c757d;
}

.accommodation-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #212529;
    font-size: 26px;
}
.accommodation-card h6 {
    font-weight: 400;
    margin-bottom: 8px;
    color: #212529;
    font-size: 16px;
}
.accommodation-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 24px;
}

.accommodation-card .info-icon {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    color: #adb5bd;
}

/* Radio Group Styling */
/* input[type="radio"] {
    display: none;
}

input[type="radio"]:checked + .accommodation-card {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
} */

.form-step input[type="checkbox"] {
    display: none;
}

.form-step input[type="checkbox"]:checked + .accommodation-card,
.form-step input[type="checkbox"]:checked ~ .accommodation-card {
    border-color: #dfdcfc;
    background: #f5f4ff;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

/* Rating Star Widgets Style */
.rating-stars ul {
    list-style-type: none;
    padding: 0;

    -moz-user-select: none;
    -webkit-user-select: none;
}
.rating-stars ul > li.star {
    display: inline-block;
}

/* Idle State of the stars */
.rating-stars ul > li.star > i.fa {
    font-size: 1.25rem;
    color: #ccc;
}

/* Hover state of the stars */
.rating-stars ul > li.star.hover > i.fa {
    color: #ffcc36;
}

/* Selected state of the stars */
.rating-stars ul > li.star.selected > i.fa {
    color: #ff912c;
}

/* Responsive */
@media (max-width: 576px) {
    .accommodation-card {
        padding: 16px;
    }
    .accommodation-card .icon {
        font-size: 1.8rem;
    }
}

/* =============== CSS Step 4 END =============== */

/* =============== CSS Step 5 =============== */
.food-card,
.diet-card {
    border: 2px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.food-card:hover,
.diet-card:hover {
    border-color: #dfdcfc;
}
.food-card.selected,
.diet-card.selected {
    border-color: #dfdcfc;
    background: #f5f4ff;
}
.food-card .icon,
.diet-card .icon {
    font-size: 1.5rem;
    color: #6c757d;
}

.diet-card span {
    flex-grow: 1;
}
.food-card .icon i:not(:last-child) {
    margin-right: 10px;
}

.food-card.selected .icon,
.diet-card.selected .icon {
    color: #0d6efd;
}
.food-card .title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}
.food-card .desc {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}
.diet-card {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}
.diet-card .icon {
    font-size: 1.25rem;
}
.diet-card .text {
    padding: 0 0.5rem;
}
.diet-card .form-check-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* =============== CSS Step 5 END =============== */

/* =============== CSS Step 6 =============== */
.activity-card {
    cursor: pointer;
    transition: all 0.2s ease;
}
.activity-card.active {
    background-color: #f5f4ff !important;
    border-color: #dfdcfc !important;
}
.boxPad {
    padding: 1rem 0.5rem;
    height: 100%;
}
/* =============== CSS Step 6 END =============== */

/* =============== CSS Step 7 =============== */

.hero-banner {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-banner h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.hero-banner p {
    font-size: 1.25rem;
    margin-top: 0.75rem;
    opacity: 0.95;
    color: #fff;
}

.section-title {
    /* text-align: center; */
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1f2937;
}

.style-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem 2rem; /* Extra top padding for ribbon */
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: visible;
    border: 2px solid transparent;
    overflow: hidden;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.style-card.active {
    border: 2px solid #dfdcfc;
    background-color: #f5f4ff;
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.15);
}

.style-card .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.group .icon-circle {
    background: linear-gradient(135deg, #fed7aa, #fdba74);
}

.personal .icon-circle {
    background: linear-gradient(135deg, #bfdbfe, #93c5fd);
}

.style-card h3 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.style-card p {
    color: #9b9b9b;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.3;
}

.style-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.style-card ul li {
    color: #374151;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.125rem;
}

.style-card ul li:before {
    content: "\f00c"; /* Unicode for fa-check (solid) */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* Required for solid icons */
    color: #dc2626;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    line-height: 1;
}

/* Updated Ribbon: Top-Left Inside Card */
.ribbon-top-left2 {
    position: absolute;
    top: 32px;
    left: -57px;
    background: #dc2626;
    color: white;
    padding: 0.6rem 4rem;
    font-weight: bold;
    font-size: 1rem;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
    white-space: nowrap;
}

/* Free Ribbon (still diagonal top-right) */
.ribbon-free {
    position: absolute;
    top: 32px;
    left: -45px;
    background: #dc2626;
    color: white;
    padding: 0.5rem 4rem;
    font-weight: bold;
    font-size: 2rem;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
    white-space: nowrap;
    line-height: 1;
}

/* =============== CSS Step 7 END =============== */

/* =============== CSS 05-11-2025 START =============== */
#step2 .season-btn i,
#step6 .card i {
    color: #6c757d;
}
.form-check-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.icon_type {
    height: 20px;
    max-width: 20px;
    flex: 0 0 20px;
    margin-right: 10px;
}
#calculateBtn {
    border-radius: 0.6rem;
}
/* =============== CSS 05-11-2025 END =============== */

/* =============== CSS 13-11-2025 START =============== */
.activeStar {
    border-color: #dfdcfc;
    background: #f5f4ff;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

#showPersonalTrip,
#showGroupTrip {
    border-radius: 1rem;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 20px;
}
#showPersonalTrip {
    background-color: #f5f4ff;
}
#showGroupTrip {
    background-color: #fcf5ed;
}

#showProducts,
#showGroupTrip {
    border-radius: 1rem;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 20px;
}
#showProducts {
    background-color: #f5f4ff;
}

/* =============== CSS 13-11-2025 END =============== */

/* =============== Start CSS 19-11-2025 =============== */
table.table td {
    padding: 20px 20px;
}

table.table tr td {
    vertical-align: middle;
}

/* =============== CSS 19-11-2025 END =============== */

/* =============== CSS 26-11-2025 =============== */

.cityDaysBodyRightInner {
    display: none;
}

.line-height1 {
    line-height: 1.3;
}
.autoAdjust {
    min-height: 150px;
}

/* =============== CSS 26-11-2025 END =============== */

/* =============== CSS 01-12-2025 Edit Trip Route Frame Admin =============== */
.oldRouteImg {
    position: relative;
}
.oldRouteImg span {
    position: absolute;
    inset-block-start: 10px;
    inset-inline-end: 10px;
    color: #c51a1a;
    cursor: pointer;
    background: #fff;
    padding: 5px;
    line-height: 1;
    border-radius: 3px;
    font-size: 14px;
}
.select-gallery-image {
    position: relative;
    border: 2px solid transparent;
    cursor: pointer;
}

.select-gallery-image.selected {
    border: 3px solid #007bff; /* Highlight selected image */
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.8);
    position: relative;
}

.selected-check {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #007bff;
    color: white;
    font-size: 16px;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.catInputArea .select2-container--default .select2-selection--multiple {
    border: 1px solid var(--color-border) !important;
    /* height: 50px; */
}
.catInputArea
    .select2-container
    .select2-search--inline
    .select2-search__field {
    height: 23px;
}
.form-input input {
    padding: 0 15px;
}
.form-input {
    margin-bottom: 10px;
}
button.add-itinerary-btn,
button.add-city-btn,
button.add-new-days-btn {
    background: #ff7a00;
    padding: 10px 10px;
    color: #fff;
}
.remove-itinerary-btn,
.remove-existing-day-btn,
.remove-new-day-btn {
    color: red;
    font-weight: bold;
    margin-bottom: 5px;
}
/* Custom styling for the dynamic day sections */
.itinerary-item {
    padding: 20px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

.itinerary-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.remove-itinerary-btn {
    color: red;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
}

.image-preview-container {
    margin-top: 10px;
}

.view-img-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.view-img-list li {
    list-style: none;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.view-img-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
h5._cityHeading {
    color: #a7275c;
    margin-bottom: 6px;
}
button.remove-city-btn {
    margin-top: 12px;
    font-weight: 600;
}
.itinerary-sections-container {
    margin-top: 10px;
    padding: 0px 0px 0px 30px;
}
.itinerary-sections {
    margin-top: 10px;
    padding: 0px 0px 0px 30px;
}
.fa-plus {
    font-size: 24px;
}
.add-days-fa-plus {
    margin-left: 6px;
}
.old_destination_img {
    width: 185px;
}
.city-sections {
    margin-top: 25px;
}
.city-sections ._cityHeading {
    color: black;
}
.daysImages_sec ul {
    margin: 16px -8px 0;
}
.daysImages_sec li {
    flex: 0 0 12.5%;
    max-width: 12.5%;
    padding: 0 8px;
    position: relative;
}
.daysImages_sec li span {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.daysImages_sec li img {
    width: 100%;
    display: block;
}
.daysImages_sec li span {
    display: block;
    overflow: hidden;
}
a.closeImg {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50% !important;
    font-size: 13px;
    line-height: 26px;
    cursor: pointer;
    display: block;
}
#tripRouteForm .is_skeleton_checkbox {
    margin-right: 5px;
    width: 20px;
}

/* =============== CSS 01-12-2025 END =============== */

/* =============== CSS 17-12-2025 START =============== */
:root {
    --loading-grey: #ededed;
}

.searchMenu-guests__field {
    position: absolute;
    top: 58% !important;
    left: -156px !important;
}

.elCalendar__sell.disabled {
    pointer-events: none;
    /* Prevent clicking */
    opacity: 0.5;
    color: gray;
}

.cardPackage {
    width: 100%;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.12);
}

.cardContent {
    padding: 2rem 1.8rem;
}

.cardheading {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
}

.cardescription {
    font-size: 1rem;
    line-height: 1.4rem;
}

.loading .cardheading,
.loading .cardescription {
    background-color: var(--loading-grey);
    background: linear-gradient(
            100deg,
            rgba(182, 47, 47, 0) 40%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 60%
        )
        var(--loading-grey);
    background-size: 200% 100%;
    background-position-x: 180%;
    animation: 1s loading ease-in-out infinite;
}

@keyframes loading {
    to {
        background-position-x: -20%;
    }
}

.loading .cardheading {
    min-height: 1.6rem;
    border-radius: 4px;
    animation-delay: 0.05s;
}

.loading .cardescription {
    min-height: 4rem;
    border-radius: 4px;
    animation-delay: 0.06s;
}
#totalSelectPrice,
#totalTourSelectPrice {
    text-align: right;
    font-size: 24px;
    font-weight: bold;
}
/* =============== CSS 17-12-2025 END =============== */

/* =============== CSS 23-12-2025 START =============== */
.ticket-card {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}
.badge-custom {
    background-color: #f0f0f0;
    color: #555;
    font-weight: 500;
    border-radius: 10px;
    padding: 5px 10px;
    margin-right: 5px;
}
.price-section {
    font-size: 1.5rem;
    font-weight: bold;
}
.select-btn {
    background-color: #ff6600;
    color: white;
    font-weight: bold;
    border-radius: 10px;
    padding: 10px 20px;
    border: none;
}
.select-btn:hover {
    background-color: #e65c00;
}
.link-custom {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}
.link-custom:hover {
    text-decoration: underline;
}
.package-title {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
}
.package-title::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 25px;
    background-color: #ff6600;
    border-radius: 5px;
    margin-right: 10px;
}
.btn-option {
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 10px 20px;
    margin-right: 10px;
    background-color: white;
    color: #000;
    font-weight: 500;
}
.btn-option.active {
    background-color: #ff6600;
    color: white;
    border-color: #ff6600;
}
.btn-option i {
    margin-right: 5px;
}
.package-card {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}
.package-card h4 {
    font-weight: bold;
}
.badge-custom {
    background-color: #f1f1f1;
    color: #333;
    padding: 5px 10px;
    border-radius: 10px;
    margin-right: 10px;
}
.price-button {
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
}
.date-button {
    border-radius: 15px;
    margin-right: 10px;
    padding: 10px 20px;
}
.date-button.active {
    background-color: #ff6600;
    color: white;
    border: none;
}
.calendar-panel,
.quantity-panel {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}
.btn-custom {
    background-color: #ff6600;
    color: white;
    border-radius: 10px;
}
.quantity-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.quantity-buttons {
    display: flex;
    align-items: center;
}
.quantity-buttons button {
    width: 35px;
    height: 35px;
}
.quantity-display {
    width: 60px !important;
    text-align: center;
    font-size: 1.2rem;
}
.divider {
    border-bottom: 1px solid #eee;
}
.unitItemPrice {
    margin-right: 4px;
}

.price-label {
    position: absolute;
    top: 11px;
    left: 7px;
}
/* =============== CSS 23-12-2025 END =============== */
/* =============== CSS 05-01-2026 Start =============== */
.youtube-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 50px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.youtube-play-btn i {
    color: #fff;
    font-size: 22px;
    margin-left: 3px;
}

/* optional hover effect */
.video-thumb:hover .youtube-play-btn {
    background: rgb(255, 0, 0);
}

.form-input textarea:focus ~ label,
.form-input textarea:valid ~ label,
.form-input input:focus ~ label,
.form-input input:valid ~ label {
    transform: translateY(-20px);
}

.error-input {
    border: 2px solid red;
    background-color: #ffe6e6;
}
.participant-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.participant-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.participant-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.participant-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mb-3 label {
    font-weight: bold;
    margin-bottom: 5px;
}

.mb-3 input,
.mb-3 select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

/* =============== CSS 05-01-2026 END =============== */

.phoneNumberTelIn {
    min-height: auto !important;
    border: none !important;
}
.forPhone {
    border: 1px solid var(--color-border);
    border-radius: 4px;
    min-height: 70px;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block !important;
}
.phoneLevel {
    position: static !important;
}

.form-input textarea:focus,
.form-input input:focus {
    border-width: 1px !important;
}

.form-input input.phoneNumberTelIn:focus {
    border: none !important;
}
/* ====================Map popup Fixing Start========================= */
.tripPreviewLogo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.tripPreviewLogo img {
    width: 200px;
    display: block;
}

.currnetSelectedDate .current-section {
    margin-bottom: 0;
}
.activityModalBody .activityModalBox .select2-container {
    width: 100% !important;
}

/* ====================New View File Box========================= */

.new-view-file-box {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
}
.new-view-file-box-lft {
    flex: 0 0 100%;
    max-inline-size: 240px;
}
.new-view-file-box-rgt {
    flex: 0 0 100%;
    max-inline-size: calc(100% - 240px);
    padding-inline-start: 1rem;
}
.new-file-box-img {
    display: block;
    border-radius: 1rem;
    overflow: clip;
    inline-size: 240px;
    block-size: 240px;
}
.new-file-box-img img {
    display: block;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
}
.new-view-file-box-rgt-top h4 {
    font-size: 1.5rem;
    line-height: 1.2;
    color: #000;
}
.new-view-file-box-rgt-top p i {
    margin-inline-end: 0.25rem;
}
.new-remark {
    background-color: #f7f7f7;
    border-radius: 1rem;
    padding: 0.75rem;
    margin-block-start: 1rem;
}
.new-remark p i {
    margin-inline-end: 0.25rem;
}
.navigate-btn {
    display: flex;
    margin-block-start: 1rem;
}
.navigate-btn i {
    margin-inline-end: 0.5rem;
}

/* =============== CSS 20-01-2026 START For Read More Button TripPreview =============== */

.event-description-wrapper {
    position: relative;
    /* direction: rtl; */
}

.eventDescription {
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.eventDescription.collapsed {
    max-height: 280px;
    position: relative;
}

.eventDescription.collapsed::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff);
    pointer-events: none;
}

.eventDescription img {
    max-width: 100%;
    height: auto;
    display: block;
}

.show-more-wrapper {
    text-align: center;
    margin-top: -25px;
    position: relative;
    z-index: 10;
}

.show-more-btn {
    background: #1f2a44;
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* =============== CSS 20-01-2026 END For Read More Button TripPreview =============== */
/* =============== CSS 21-01-2026 Trip Preview Product Carousel Start =============== */
.trip-preview-product {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
}
.trip-preview-product-lft {
    flex: 0 0 100%;
    max-inline-size: 280px;
}
.trip-preview-product-rgt {
    flex: 0 0 100%;
    max-inline-size: calc(100% - 280px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-inline-start: 1rem;
}
.trip-preview-product-img {
    display: block;
    border-radius: 1rem;
    overflow: clip;
    inline-size: 100%;
    block-size: 240px;
}
.trip-preview-product-img img {
    display: block;
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
    transform: scale(1);
}
.trip-preview-product-img:hover img {
    transform: scale(1.15);
}
.add-to-cart-btn {
    border-radius: 1.5rem;
    border-color: var(--color-dark-1);
    color: var(--color-dark-1);
}
.add-to-cart-btn:hover {
    background-color: var(--color-dark-1);
    color: #fff;
}
.add-to-cart-btn i {
    padding-inline-end: 0.25rem;
}
.multiple {
    padding: 0;
    overflow: clip;
}
.multiple .trip-preview-product-lft {
    max-inline-size: 100%;
}
.multiple .trip-preview-product-rgt {
    max-inline-size: 100%;
    padding: 1rem;
}
.multiple .trip-preview-product-img {
    border-radius: 0;
    block-size: 240px;
}
.multiple .add-to-cart-btn {
    margin-block-start: 1rem;
}
.multiple .trip-preview-product-rgt-btm {
    margin-block-start: 1rem;
}
.owl-carouselArea .owl-stage {
    display: flex;
    padding-block: 1rem;
}
.owl-carouselArea .owl-stage .item,
.owl-carouselArea .owl-stage .item .trip-preview-product.multiple {
    height: 100%;
}
/* =============== CSS 21-01-2026 Trip Preview Product Carousel End =============== */

.trip-library-products-section {
    display: block;
    position: relative;
}
.trip-library-close {
    position: absolute;
    inset-inline-end: 0.25rem;
    inset-block-start: 0.25rem;
    block-size: 2rem;
    inline-size: 2rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 11px rgba(255, 255, 255, 0.9);
    color: #f00;
    transition: all 0.3s ease;
    z-index: 10;
}
.trip-event-products-section {
    display: block;
    position: relative;
}

.toggle-password{
    position:absolute;
    inset-inline-end: 15px;
    top:50%;
    transform:translateY(-50%);
    cursor:pointer;
}

.vacancy-count {
    display: block;
    font-size: 10px;
    color: orange;
    font-weight: bold;
    position: absolute;
    top: 11px;
    left: 16px;
}
.policy-list li {
    margin-inline-start: 1.25rem;
}
.policy-list li {
    list-style: disc;
    list-style-position: inside;
    font-size: 0.875rem;
    color: #2e2e2e;
}
.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    font-weight: 600;
}
.note-image-url {
    border: 1px solid #ededef !important;
}

.page_content_section a{
    color: #fc0d32;
}
.home-banner {
    padding-top: 0 !important;
    padding-bottom: 80px !important;
    block-size: 650px;
    display: flex;
    align-items: end;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-banner::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(5, 16, 54, 0.5) 0%, #051036 72.43%);
    opacity: 0.85;
}
.home-banner .bannContent h1 {
    font-size: 60px;
}
.japan-header{
    margin-inline-start: 30px;
}

.fileUploadPd {
    padding: 0.375rem 0.75rem !important;
}
.src-wrap{
    position: relative;
    margin-inline-end: 1rem;
}
.srcbar-btn{
    height: 50px;
    width: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.src-input{
    padding-inline-start: 0.5rem;
}
.src-wrap-box {
    position: absolute;
    inline-size: 350px;
    inset-inline-end: 0;
    padding: 0.75rem;
    border-radius: 4px;
    display: none;
    box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.25);
}
.organizePhone .iti--allow-dropdown .iti__flag-container, .organizePhone .iti--show-selected-dial-code .iti__flag-container {
    height: 70px;
}
.form-input.forPhoneTwo {
    display: block;
    border: 1px solid var(--color-border);
    min-height: 70px;
}

.forPhoneTwo .iti.iti--allow-dropdown {
    width: 100%;
    display: flex;
    align-items: center;
}

.forPhoneTwo .iti__flag-container{
    position: static;
}

.forPhoneTwo .phoneNumberTelIn {
    padding-left: 0 !important;
}