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;
}
.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;
}
.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: 350px;
  opacity: 1;
  visibility: visible;
  padding: 10px 0;
}
.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;
}
.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;
  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 {
  overflow-y: scroll;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  width: var(--dashboard-width);
  height: calc(100% - 90px);
  padding: 30px 20px;
  padding-top: 25px;
  padding-bottom: 40px;
  will-change: transform;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.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);
}

.activityNav ul li {
  background-color: #7886e7;
  color: #fff;
}

.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;
}
.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: block;
  font-weight: bold;
  position: absolute;
  right: 30px;
  bottom: 0;
  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-left: 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;
}
@media screen and (max-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 100% !important;
  }

  .eventDescription iframe {
    width: 100% !important;
    min-width: auto !important;
  }

  .itemBox.px-30 {
    padding: 0 !important;
    border: none !important;
  }
  .icon-badge {
    right: -10px !important;
  }

  .eventBox {
    /* border: none; */
    margin-bottom: 20px;
    padding: 12px;
  }
  .text-30 {
    font-size: var(--text-20) !important;
  }
  .dayPlan {
    padding: 10px 0;
  }
  .dayPlan ul {
    padding-right: 10px;
  }
  .inputArea.mt-10 {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 600px) {
  .view-file-box-lft {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 575px) {
  .tripInput {
    max-width: 86%;
  }
  .triptranslation_desc_front .col-sm-3 {
    flex: 110px !important;
    width: 110px !important;
  }
  .triptranslation_desc_front .col-sm-9 {
    flex: calc(100% - 110px);
    max-width: calc(100% - 110px);
  }
  .dayPlan a {
    font-size: 12px;
  }
  .date_name {
    font-size: 11px;
  }
  .dayPlan .text-22 {
    font-size: var(--text-16) !important;
    padding: 0 10px;
    margin-bottom: 5px !important;
  }
  .eventDisplayDescription ul li h5 {
    font-size: 0.875rem;
  }
  .eventDisplayDescription ul li {
    padding: 0 0.313rem;
    margin-bottom: 0.5rem;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .eventDisplayDescription ul li p {
    font-size: 0.775rem;
  }
  .eventDisplayDescription ul {
    align-items: baseline !important;
  }
  .atcImg {
    flex: 0 0 28px;
    max-width: 28px;
  }
  .pt-30 {
    padding-top: 15px !important;
  }
}

/* 19.02.2025 end */
