* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
}
.form-control:focus{
  border:none;
  box-shadow: none;
}
:root {
  --sequence-numbers-height: 0px;
  --half-height: 75px;
  --full-height: 150px;
  --linear-gradient: linear-gradient(
    to top,
    var(--linear-gradient-color-1) 0%,
    var(--linear-gradient-color-2) 70%,
    var(--linear-gradient-color-3) 100%
  );
  --linear-gradient-full-height: linear-gradient(
    to top,
    var(--linear-gradient-color-1) 0%,
    var(--linear-gradient-color-2) 10%,
    var(--linear-gradient-full-height-color) 100%
  );
}

.not-draggable {
  width: fit-content;
}
body {
  padding: 0;
  overflow-y: hidden;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none !important;
  outline: 0px;
}
ul {
  list-style: none;
}

header {
  height: 50px;
  padding: 0px 15px;
  background: #fff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  transition: 0.5s ease all;
  z-index: 6;
}

.nav {
  justify-content: space-between;
  align-items: center;
  padding: 6px 0px 5px;
}
.logo {
  display: block;
  /* position: absolute; */
  left: 20px;
  top: 10px;
}

.button-burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 0 #000;
  /* position: absolute; */
}

.button-burger__line {
  width: 100%;
  height: 2px;
  background-color: black;
}

.button-burger__line:first-child {
  width: 100%;
}

.logo img {
  max-width: 132px;
}

.button-burger__line:nth-child(2) {
  width: 60%;
  margin-left: 40%;
}

.right-menu {
  display: flex;
  vertical-align: middle;
  align-items: center;
}

/* Main Section */
.main-section {
  width: 100%;
  margin-top: 50px;
  height: calc(100vh - 50px);
  display: flex;
}

.left-section {
  width: 43%;
  overflow-y: scroll;
}

.scroller {
  /* max-width: 687px; */
  position: relative;
  top: 0px;
}
.right-section {
  width: 57%;
  height: calc(100vh - 50px);
  box-shadow: 0px 1px 3px rgb(0 0 0 / 35%);
  position: relative;
  border: none !important;
}
.map-cont {
  width: 100%;

  height: calc(100vh - 50px);
  position: relative;
  z-index: 2;
  border: none !important;
  box-shadow: 0px 1px 3px rgb(0 0 0 / 35%);
}

.px-30 {
  padding: 0 30px;
}

.white-shadow-box {
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  padding: 15px;
  position: relative;
  /* width: 95%; */
  margin: 1px 1px 20px;
  margin-left: 20px;
  margin-right: 22px;
}

.things-list {
  display: flex;
}
.mt-20 {
  margin-top: 20px;
}

.trip-banner {
  height: auto;
}
.trip-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
  margin-right: 25px;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.warning-info {
  color: red;
  align-items: center;
  display: none;
  font-size: 14px;
  margin-bottom: 0px;
  gap: 4px;
}
.warning-info img {
  height: 14px;
  width: 14px;
}

.select-img-warning {
  justify-content: center;
  font-size: 15px;
  /* margin-bottom: 0px !important; */
}

.text-right {
  text-align: right !important;
}
.grey-btn {
  background: #eaeaea;
  border-radius: 20px;
  padding: 5px 8px 6px;
  display: inline-flex;
  color: #525252;
  font-weight: 900;
  font-size: 11px;
  line-height: 13px;
  /* margin-bottom: 15px; */
  align-items: center;
  border: 1px solid transparent;
  min-height: 27px;
  column-gap: 2px;
  width: fit-content;
  box-shadow: 0px 1px 3px rgb(0 0 0 / 35%);
}
.grey-btn svg {
  /* margin-right: 4px; */
  /* width: 12px;
  height: 12px; */
}

.trip-info-cont {
  display: flex;
  gap: 5px;
  align-items: center;
}

.trip-information-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.trip-info-cont .small-label,
.trip-info-cont h2,
.trip-info-cont p {
  font-size: 14px;
  margin-bottom: 0px;
}
.header-info {
  margin-bottom: 10px;
}
.left-section-nav {
  display: flex;
  width: 42vw;
  gap: 15px;
}
.left-section-nav .select-box div {
  max-width: 120px;
}
.left-section-nav .edit-selection {
  display: flex;
  margin-top: -7px;
  border: none !important;
  width: 100%;
  align-items: center;
  box-shadow: none !important;
  justify-content: space-between;
  height: 50px !important;
}
.nav-actions-btn {
  display: flex;
  gap: 0.5rem;
  position: absolute;
  right: 14px;
  display: flex;
  gap: 0.5rem;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.itinerary-title {
  text-overflow: ellipsis !important;
  overflow: hidden;
  white-space: nowrap;
  width: 300px;
  display: block !important;
}
.edit-selection .grey-btn {
  margin-bottom: 0px;
}
.guests-select {
  margin-left: -45px;
}
.edit-selection .adult-children-input-container,
.edit-selection #dateRangeInput {
  box-shadow: none !important;
  border: none !important;
}
.small-label {
  color: #777777;
  font-size: 11px;
  line-height: 13px;
  margin-bottom: 5px;
  display: block;
}

.custom-arrow {
  overflow: hidden;
  padding-right: 23px;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
.form-control {
  color: #777777;
  font-size: 13px;
  background: #ffffff;
  border: 1px solid #eaeaea !important;
  box-shadow: 0px 1px 1px rgb(0 0 0 / 20%) !important;
  border-radius: 3px;
  height: 30px;
}

.tripFixed {
  /* background-color: #fff; */
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
  /* padding: 25px 30px 0; */
  padding-top: 10px;
}

.tabs {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0px;
  border-bottom: 1px solid #dee2e6;
}

.tabs-section {
  display: flex;
}
.tabs li {
  padding-left: 0px;
  cursor: pointer !important;
}

.tab {
  border-color: transparent;

  border-radius: 0;
  font-weight: 900;
  padding: 10px 0;
  margin-right: 30px;
}

.attractions-list,
.mytrips-attractions-list {
  overflow-x: hidden;
}
.itenaries-list {
  /* padding-bottom: 10%; */
}

/* .mytrips-attractions-list{
  display: none;
} */

.tab-active {
  color: var(--brand-color);
  border-bottom: 3px solid var(--brand-color) !important;
}

.things-list {
  padding: 0 !important;
  /* overflow: hidden; */
  transition: 0.4s ease all;
  cursor: pointer;
}
.white-shadow-box .media > img {
  height: 115px;
  width: 115px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.attractions-list {
  position: relative;
  width: 100%;
  transition: 0s all;

  /* left: 0px; */
}
.toggle-attractions-list {
  position: absolute;
  top: 0px;
  /* left: -1000px; */
  width: 0%;
}
.attractions-list .attraction-card-img,
.mytrips-attractions-list .trip-card-img,
.children-list .attraction-card-img {
  width: 140px !important;
  height: 130px !important;
}

.attractions-list .media-body,
.mytrips-attractions-list .media-body,
.children-list .media-body {
  margin-top: 10px !important;
}

.things-list .media a.thing-title {
  font-size: 16px;
  line-height: 13px;
  margin-bottom: 9px !important;
  display: flex;
  align-items: flex-start;
}

.thing-title {
  /* margin-bottom: 9px !important; */
  text-overflow: ellipsis !important;
  overflow: hidden;
  white-space: nowrap;
  overflow: hidden;
  width: 70%;
  display: block;
}

a {
  color: #333 !important;
  text-decoration: none !important;
  outline: 0px;
}
.attraction {
  font-size: 16px;
  margin-top: 5px;
}
.white-shadow-box .media-body {
  margin-top: 3px;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.attraction a {
  background: #eaeaea;
  border-radius: 4px;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
  line-height: 11px;
  color: #777777 !important;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
}

.attraction a > img {
  width: auto !important;
  max-width: 10px !important;
  height: 10px;
}

.white-shadow-box .attraction img {
  width: 10px;
}

.attraction a img {
  margin-right: 5px;
}

.things-list .media p {
  font-size: 14px;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.media-body p {
  font-size: 14px;
  line-height: 15px;
  margin-bottom: 9px !important;
  display: flex;
  align-items: flex-start;
}

.add-btn,
.remove-trip-btn,
.child-attractions-dropdown {
  background: #eaeaea;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.child-attractions-dropdown:hover {
  /* content:'View' */
}

.child-attractions-dropdown i {
  color: var(--brand-color);
  font-size: 14px;
  /* font-weight: ; */
}
.hidepop {
  font-size: 12px;
}

.add-btn,
.remove-btn {
  overflow: hidden;
}

.add-btn span {
  font-size: 12px;
  margin-left: 5px;
  font-weight: 600;
  white-space: nowrap;
  /* opacity: 0; */
  width: 0;
  transition: all 0.8s;
  display: none;
}

.child-attractions-dropdown span {
  display: none;
  font-size: 12px;
  font-weight: 600;
}
.add-btn:hover {
  border: 1px solid var(--brand-color);
  width: 100px;
  background: #fff;
}
.child-attractions-dropdown:hover {
  border: 1px solid var(--brand-color);
  width: 80px;
  background: #fff;
}

.child-attractions-dropdown:hover span {
  width: 60%;
  display: block;
}
.add-btn:hover span,
.remove-btn:hover span {
  width: 60%;
  display: block;
}

.remove-btn:hover {
  width: auto;
  padding: 0 12px 0px 5px;
}
.remove-btn {
  background-color: var(--brand-color) !important;
  color: #ffffff !important;
  display: none;
}

.things-list:hover {
  box-shadow: 0px 0px 9px rgb(0 0 0 / 30%);
}

.experiences {
  cursor: pointer !important;
}
.experiences label {
  cursor: pointer !important;
}
.tab-content-1 {
  position: relative;
  overflow-x: hidden;
  /* height: calc(100vh - 205px); */
}

.tab-content-1,
.tab-content-2 {
  max-height: calc(100vh - 50px - 161px);
  overflow-y: scroll;
  padding-top: 20px;
  padding-bottom: 100px;
  min-height: 400px;
}

.tab-content-2 {
  padding-bottom: 100px !important;
}

.tab-content-2 {
  display: none;
}

.filter-cont::-webkit-scrollbar,
.additional-info::-webkit-scrollbar,
.tab-content-1::-webkit-scrollbar,
.details-scroller::-webkit-scrollbar,
.tab-content-2::-webkit-scrollbar,
.left-section::-webkit-scrollbar {
  display: none;
}

.thingtodo {
  padding: 15px;
  display: block;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 43%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 255, 255, 80%);
  margin: 0 auto;
  z-index: 99;
}

.big-btn {
  background: darkgrey;
  box-shadow: 0px 0px 9px rgb(0 0 0 / 35%);
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  color: #fff !important;
  padding: 15px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  /* transition: all 0.8s; */
  margin: auto;
  width: 180px;
}

/* 
.unplanned .delete-btn{
  display: none !important;
} */
.view-option-btn {
  display: none;
}

.active-btn {
  background: var(--brand-color);
}
.primary-btn {
  color: var(--brand-color);
  border: 2px solid var(--brand-color);
  background-color: white;
}
.add-to-trip,
.refine-trip-btn,
.my-experiences-btn {
  color: var(--brand-color) !important;
  border: 2px solid var(--brand-color);
  background-color: white;
}

.add-to-trip {
  transition: all 1s;
}

.finalize-trip-btn {
  display: none;
}

.big-btn img {
  /* margin-right: 5px; */
}

.close-select-cont,
.close-trip-planner {
  position: absolute;
  right: 10px;
  top: 8px;
  color: var(--brand-color) !important;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

.dateRangeInput {
  padding: 5px 5px;
  font-size: 13px;
  font-weight: semi-bold;

  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 1px 1px rgb(0 0 0 / 20%) !important;
  color: var(--brand-color);
  background-color: transparent;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5px;
  box-shadow: 0px 1px 1px rgb(0 0 0 / 20%) !important;
  font-size: 13px;
  background: #ffffff;
  border: 1px solid #eaeaea !important;
  box-shadow: 0px 1px 1px rgb(0 0 0 / 20%) !important;
  border-radius: 3px;
  height: 30px;
}

.adult-children-input-container {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5px;
  box-shadow: 0px 1px 1px rgb(0 0 0 / 20%) !important;
  font-size: 13px;
  background: #ffffff;
  border: 1px solid #eaeaea !important;
  box-shadow: 0px 1px 1px rgb(0 0 0 / 20%) !important;
  border-radius: 3px;
  height: 30px;
}

#adult-children-input {
  width: 100%;
  cursor: pointer;
  border: none;
  color: var(--brand-color);
  text-overflow: ellipsis;

  font-weight: semi-bold;
  font-size: 13px;
  outline: none;
}
.active-adult-handler {
  display: grid !important;
}

.adult-children-handler {
  margin-top: 10px;
  border-radius: 5px;
  padding: 15px 20px;
  width: 200px;
  background-color: #fff;
  display: none;
  z-index: 11;
  position: absolute;
  top: 30px;
  grid-template-columns: auto auto;
  row-gap: 20px;
  column-gap: 10px;
  align-items: center;
  box-shadow: 0px 1px 3px rgb(0 0 0 / 15%);
  background-color: #ffffff;
  box-shadow: 0px 1px 3px rgb(0 0 0 / 15%);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.quantity-handler {
  width: 100%;
  display: flex;
  align-items: center;
}

.quantity-handler img {
  width: 12px;
}
.select-box img {
  cursor: pointer;
}

.quantity-handler input {
  color: var(--brand-color);
  background: #ececec;
  border-radius: 5px;
  border: 0;
  text-align: center;
  color: var(--brand-color);
  font-weight: bold;
  font-size: 16px;
}

.adults-quantity,
.children-quantity {
  text-align: center;
  padding: 5px 0;
  width: 40px;
  margin: 0 10px;
}

.action-title {
  font-weight: 900;
  font-size: 15px;
  line-height: 18px;
}
.progress-text {
  color: #f7b618;
}

.trip-status {
  font-size: 11px;
  line-height: 13px;
  color: #525252;
}

.number-text {
  color: #525252;
  font-weight: 900;
  font-size: 15px;
  line-height: 18px;
  display: flex;
  align-items: center;
}

.currency-div {
  cursor: pointer;
  position: relative;
}

.currency-number-text {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.currency-flag {
  /* margin-top: -2px; */
}

.currency-div .switch-currency-link {
  color: #0063be !important;
  font-size: 11px;
  line-height: 13px;
  display: block;
  cursor: pointer;
  display: block;
}

.currency-cont {
  width: 135px;
  position: absolute;
  max-width: 350px;
  display: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  position: absolute;
  background-color: #ffffff;
  z-index: 2000;
  top: 25px;
}

.currency-box {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  cursor: pointer;
  display: flex;
  cursor: pointer;
  align-items: center;
}
.currency-box img {
  margin-left: 5px;
  margin-right: 5px;
}

.currency {
  margin-left: 2px;
  top: 1px;
  color: #212529;
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.white-shadow-box .progress {
  position: relative;
  box-shadow: 0px 1px 2px rgb(0 0 0 / 25%);
  overflow: inherit;
}

.progress {
  margin: 0 -15px -15px;
  border-radius: 0px !important;
  height: 6px !important;
  background-color: #eaeaea !important;
}

.white-shadow-box .tooltip {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0;
  width: 100% !important;
  text-align: left;
  opacity: 1;
}

.tooltip {
  z-index: 1;
}

.progress-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
.progress-bar {
  background: linear-gradient(90deg, #f2e03e 0%, #f7b618 100%), #e9e9e9;
  background-color: rgb(233, 233, 233);
  border-radius: 0px;
  color: #404040;
  font-size: 12px;
  text-align: center;
  font-weight: bold;
}

.search-wrap {
  margin: 20px 0;
}

.trip-added-popup {
  width: 308px;
  display: none;
  /* box-shadow: 0px 2px 10px rgb(0 0 0 / 45%), inset 0px -5px 0px #fb6e4f; */
  margin: 0;
  padding: 15px 15px;
  min-width: 190px;
  min-height: 134px;
  position: absolute;
  z-index: 1001;
  top: 60px;
  left: 105px;
  background: var(--brand-color) !important;
  color: #fff;
  font-size: 15px;
}

.popup-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup-desc {
  width: 98%;
  margin-bottom: 20px;
}

h5 {
  font-size: 15px !important;
  margin-top: 5px !important;
  font-weight: 700 !important;
}

.popup-close {
  color: white;
  height: 17px;
  width: 17px;
  display: block;
  cursor: pointer;
}

.gotit-cont {
  display: flex;
  justify-content: flex-end;
  margin-top: -24px;
}

.trip-added-popup::after {
  content: " ";
  bottom: -12px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 0 !important;
  border-bottom: 14px solid var(--brand-color) !important;
  top: auto;
  position: absolute;
  top: -64px;
  left: -267px;
  right: auto;
  margin-top: 0;
  transform: rotate(0deg);
  z-index: 999;
  bottom: 134px;
  left: 32px;
}

.gotit {
  color: var(--brand-color);
  background: #fff;
  border: none;
  /* margin-top: 8px; */
  position: relative;
  top: 10px;
  padding: 0 15px;
  left: 2px;
  font-size: 14px;
}

.select-err {
  color: red;
  font-size: 14px;
  text-align: center;
  margin-bottom: 0px;
  display: none;
}
.arrow-cont {
  width: auto;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 18px;
  bottom: 49px;
}

.guests-and-dates .date-select {
  margin-right: 28px;
}
.guests-and-dates .options {
  position: relative;
  flex-direction: row-reverse;
}
.next-btn {
  position: absolute;
  right: -13px;
  bottom: 0px;
}
.right-btn {
  width: 30px;
  height: 30px;
  background-color: var(--brand-color);
  border-radius: 100%;
  color: #ffffff;
  display: flex;
  align-items: center;

  justify-content: center;
  font-size: 18px;
  border: 0;
  /* margin-left: 20px; */
  /* top: -2px; */
  /* right: -10px;
  position: absolute; */
}
.right-btn i {
  margin-right: 0px !important;
}
.close-box {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 0%;
  z-index: 100;
  top: 0;
  background-color: #424040;
  opacity: 0.4;
  color: #525252;
  box-shadow: -3px 0px 5px rgba(0, 0, 0, 0.2);
  overflow-x: hidden;
  padding-top: 60px;
  left: 0;
}

.grey-btn:hover {
  /* border: 1px solid; */
  box-shadow: 0px 0px 9px rgb(0 0 0 / 30%);
}

.parent-description {
  font-size: 14px;
  width: 80%;
  max-height: 60px;
  overflow: hidden;
  margin-top: -5px;
  text-overflow: ellipsis;
}
.top-btn {
  display: none;
}
.save-trip-text {
  margin-top: 1.5px;
  font-size: 13px;
}
.closed-cont,
.save-trip-cont {
  position: absolute;
  display: none;
  left: calc((100% - 330px) / 2);
  width: 400px;
  border-radius: 5px;
  background: white;
  color: #525252;
  top: calc((100% - 180px) / 2);
  padding: 10px 20px;
  z-index: 1000;
}
.gm-ui-hover-effect {
  display: none !important;
}
.gm-style-iw-ch {
  padding-top: 10px !important;
}
/* div[title]{
  visibility: hidden !important;
} */

.save {
  cursor: pointer !important;
  display: flex;
  align-items: center;
}

.save .spinner {
  border: 2px solid rgb(175, 172, 172);
  border-top: 2px solid white;
}
.save-close {
  cursor: pointer;
}

.save-info h3 {
  margin-top: 0px;
  font-size: 20px;
  font-weight: bold;
}

.closed-cont h3,
.guests-and-dates h3,
.trip-planner-cont h3 {
  margin-top: 0px;
  font-size: 20px;
  font-weight: bold;
}

.guests-and-dates h3,
.trip-planner-cont h3 {
  text-align: center;
  margin-bottom: 5px;
}

.guests-and-dates .options {
  gap: 10px;
  margin-bottom: 10px;
}

.guests-and-dates i {
  margin-right: 8px;
}
.guests-and-dates .date-select {
  width: 50%;
  margin-right: 0px;
}

.guests-and-dates .adult-children-input-container {
  width: auto;
  margin-right: 25px;
}

.adult-children-handler2 {
  top: 32px;
}
.ok-btn-cont {
  display: flex;
  margin-top: -10px;
  /* flex-direction: column; */
  justify-content: flex-end;
}

.ok {
  padding: 5px 10px;
  border-radius: 1px;
  background: var(--brand-color);
  border: none;
  color: white;
  margin-right: 7px;
}

.save-info {
  display: flex;
  justify-content: space-between;
}
.add-anyway,
.save {
  padding: 5px 10px;
  border-radius: 1px;
  background: #eaeaea;
  border: none;
  /* margin-top: 10px; */
}
.save {
  margin-top: 10px;
}
.save-trip-form {
  margin-bottom: 5px;
}
.itinerary-name {
  border: 1px solid #eaeaea !important;
  padding: 5px 10px;
  margin-left: 5px;
  box-shadow: 0px 1px 1px rgb(0 0 0 / 20%) !important;
  border-radius: 3px;
  outline: none;
}

.add-anyway {
  padding: 5px 10px;
  border-radius: 1px;
  background: #eaeaea;
  border: none;
}

.default {
  background: transparent;
}

.action-packed {
  background: linear-gradient(90deg, #f7b618 0%, #e35d32 100%);
}

.balanced {
  background: linear-gradient(90deg, #f2e03e 0%, #ec930f 100%), #e9e9e9;
}

.relaxed {
  background: linear-gradient(90deg, #f2e03e 0%, #f7b618 100%), #e9e9e9;
}

.action-packed-text {
  color: #da4a40;
}

.default-text {
  color: #f7b618;
}

.balanced-text {
  color: var(--brand-color);
}
.relaxed-text {
  color: #f7b618;
}

.detailed-view-wrap {
  height: 325px;
  height: auto;
  border-radius: 5px;
  background: #fff;
  padding: 20px 0px 20px 20px;
  box-shadow: 0 0 15px rgb(0 0 0 / 20%);
  transition: all 0.5s;
  position: absolute;
  right: 45px;
  bottom: 0;
  left: 29px;
  /* margin-left: 617px; */
  /* display: none; */
  opacity: 0;
  z-index: 10;
  height: 350px;
  width: 91%;
  display: block;
  background: pink;
  opacity: 1;
  bottom: 15px;
  /* max-width: 1095px; */
}
.detail-scroll {
  max-height: 100% !important;
  /* height: 320px; */
  height: auto;
}

.activities-txt {
  background: #eaeaea;
  border-radius: 4px;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
  line-height: 11px;
  color: #777777;
  margin-right: 4px;
  display: inline-flex;
  margin-bottom: 10px;
}

.attraction .added-green {
  background: #74a91e !important;
  color: #fff !important;
}

.attraction-info-popup .added-green {
  background: #74a91e !important;
  color: #fff !important;
  display: inline-flex;
}

.delete-icon {
  width: 14px;
  height: 14px !important;
  display: flex !important;
  transition: all 0.8s;
  margin-left: 0px !important;
  margin-right: -1px;
}

.mytrips-attractions-list .attraction {
  margin: 0px 0px 8px;
}
.mytrips-attractions-list .attraction a {
  margin-bottom: 0px !important;
}

.attraction-type {
  margin: 0px;
}

.attraction-info-popup {
  height: 375px;
  border-radius: 5px;
  background: #fff;
  padding: 15px 0px 15px 15px;
  box-shadow: 0 0 15px rgb(0 0 0 / 20%);
  transition: all 0.5s;
  position: absolute;
  bottom: 14px;
  left: 2.5%;
  width: 95%;

  /* margin-left: 617px; */
  /* display: none; */
  opacity: 1;
  z-index: 5;
  /* max-width: 1095px; */
}

.spinner-loader {
}

.additional-info {
  width: 70%;
  height: 100%;
  padding-bottom: 80px;
  overflow-y: scroll !important;
}
.information-wrapper {
  margin-top: 10px;
  display: flex;
  margin-right: 18px;
  gap: 12px;
}
.guests-info-wrapper {
  width: 65% !important;
}
.guest-info-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.guest-info-header p {
  margin-top: -3px !important;
}
.guest-info-header span {
  font-weight: bold;
  display: inline-block;
  margin-left: 2px;
  font-size: 0.9rem;
}
.attraction-info-wrapper {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 4px;
  width: 35%;
}
.attraction-info-wrapper .trip-title {
  font-size: 1rem;
}
.guest-information {
  background: #eaeaea;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.guest-info-header p {
  display: none;
}
.image-wrapper-mobile {
  display: none;
}
.guest-type-text {
  margin-bottom: 0px;
}
.guest-type-info {
  display: flex;
  flex-basis: 50%;
  color: #777777;
  flex-direction: column;
}
.guest-type {
  color: black;
  margin-bottom: 0px;
  font-size: 1rem;
}
.guest-count-cont {
  align-items: center;
  color: var(--brand-color);
  display: flex;
  background-color: white;
  width: fit-content;
  gap: 9px;
  padding: 0px 7px;
}
.guest-count-cont {
  cursor: pointer;
}
.guests-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guest-count {
  outline: none;
  color: black;
  cursor: pointer;
  border: none;
}
.close-details-popup {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 1;
}

.details-wrapper {
  display: flex;
  height: 100%;
}

.attraction-info-popup .details-wrapper .remove-trip {
  display: flex;
  background: transparent;
  border-radius: 2px;
  border: 2px solid #da4a40;
  align-items: center;
  gap: 5px;
  color: #da4a40 !important;
  background: #fff !important;
}

.attraction-info-popup .details-wrapper .remove-trip i {
  font-size: 10px;
  margin-top: 1px;
}
.details-scroller {
  height: 100% !important;
  /* overflow-y: scroll; */
}
.image-wrapper {
  width: 30%;
  padding-right: 1rem;
  height: 100%;
  position: relative;
}

.image-wrapper img {
  height: 100%;
  border-radius: 3px;
  width: 100%;
  object-fit: cover;
}

.activities-txt {
  background: #eaeaea;
  border-radius: 4px;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
  line-height: 11px;
  color: #777777;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
}

.activities-txt img {
  max-width: 10px;
  margin-right: 5px;
  height: 10px;
}

.adult-cost {
  /* float: left; */
  margin-right: 23px;
  display: inline-block;
  color: #000000;
  font-size: 14px;
}

.cost-img {
  fill: #525252;
  width: 14px;
  height: 14px;
  /* margin-right: 3px; */
}

.popupdetail .cost-img {
  margin-right: 5px !important;
}

.kids-cost {
  clear: both;
  display: inline-block;
  color: #000000;
  font-size: 14px;
}

.big-btn i {
  /* margin: 0px 7px; */
  font-size: 14px;
}

.guest-costing {
  display: none;
  margin-bottom: 10px;
}

.attraction-per-guest-cost {
  margin-bottom: 10px;
  display: flex;
  gap: 3px;
  align-items: center;
}

.guest-cost {
  display: none !important;
}
.duration,
.opening-hours {
  display: flex;
  align-items: center;
  color: #000000;
  font-size: 14px;
}

.duration i,
.opening-hours i,
.popupdetail i {
  color: #525252;
  font-size: 12px;
  margin-right: 5px;
}

.grey-title {
  margin: 17px 0px 13px 0px;
  font-size: 14px;
}

.discription-txt {
  /* margin-left: 18px; */
  font-size: 14px;
  color: #525252;
}

.visit-web-txt {
  color: #0063be !important;
  font-size: 14px;
  line-height: 13px;
  margin-left: 2px;
  display: inline-block;
  /* margin-bottom: 20px; */
}

.visit-web-txt i {
  margin-right: 5px;
  font-size: 12px;
}

.add-del-cont {
  position: fixed;
  right: 20px;
  bottom: 20px;
  right: 37px;
  bottom: 32px;
}

.details-wrapper .add-trip-btn,
.details-wrapper .remove-trip {
  background: #74a91e;
  box-shadow: 0px 1px 1px rgb(0 0 0 / 20%);
  border-radius: 50px;
  padding: 15px 20px;
  font-weight: 900;
  font-size: 13px;
  line-height: 16px;
  color: #fff !important;
  display: inline-block;
  outline: none;
  border: none;
  /* margin-right: 20px; */
}

.add-trip-btn img,
.remove-trip img {
  margin-right: 7px;
  vertical-align: middle;
  height: 12px;
  margin-top: 2px;
  width: 12px;
}

.details-wrapper .remove-trip {
  display: none;
}

.add-del-cont a:hover {
  background-color: var(--brand-color) !important;
}

.trip-description .discription-txt {
  margin-left: 0px;
  margin-right: 10px;
}

.trip-description {
  margin-top: 10px;
  max-width: 100% !important;
  width: 100% !important;
}

.remove-trip img {
  height: 12px;
  width: 12px;
}

.remove-trip-btn:hover {
  border: 1px solid #da4a40;
  background: #fff;
}

/* .delete-icon img:hover {
  background: #eaeaea;
  border: 1px solid #da4a40;
} */

.no-activities-wrap {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.no-activities-wrap img {
  margin-bottom: 20px;
}

.no-activities-wrap h3 {
  font-weight: 900;
  font-size: 15px;
  line-height: 18px;
  color: #525252;
}

.no-activities-wrap p {
  text-align: center;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  margin-bottom: 10px;
}

.empty-cont-1 {
  display: none;
}

.create-trip {
  display: none;
  position: relative;
  /* margin-top: 20px; */
  background: #fff;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.back-btn {
  background: #eaeaea;
  border-radius: 20px;
  padding: 5px 8px 6px;
  color: #525252;
  font-weight: 900;
  font-size: 11px;
  line-height: 13px;
  margin-bottom: 10px;
  display: none !important;
  align-items: center;
  justify-content: center;
  width: 180px;
  box-shadow: 0px 1px 3px rgb(0 0 0 / 35%);
}

.back-btn:hover {
  box-shadow: 0px 0px 9px rgb(0 0 0 / 30%);
}

.back-view {
  position: absolute;
  z-index: 5;
  position: absolute;
  z-index: 5;
  top: 10px;
  display: none;
  left: 10px;
  background: #eaeaea;
  border-radius: 20px;
  padding: 5px 8px 6px;
  color: #525252;
  font-weight: 900;
  font-size: 11px;
  line-height: 13px;
  margin-bottom: 20px;
  margin-top: 4px;
  align-items: center;
  justify-content: center;
  width: 77px;
  height: 30px;
  box-shadow: 0px 1px 3px rgb(0 0 0 / 35%);
}

.back-view:hover {
  box-shadow: 0px 0px 9px rgb(0 0 0 / 30%);
}

.children-list {
  display: block;
  position: relative;
  background-color: white;
  width: 0px;
  overflow-x: hidden;
  max-width: 100%;
  transition: 0.5s all;
  height: 100%;
 
}

.active-children-list {
  width: 100%;
  /* display: block; */
}

.backToAllAttractions {
  position: fixed;
  display: none;
  margin-left: 19px;
  margin-bottom: 20px;
  background: #eaeaea;
  border-radius: 20px;
  padding: 5px 8px 6px;
  color: #525252;
  font-weight: 900;
  font-size: 11px;
  line-height: 13px;
  margin-bottom: 20px;
  margin-top: 7px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  width: 77px;
  height: 30px;
  box-shadow: 0px 1px 3px rgb(0 0 0 / 35%);
  z-index: 1000;
  /* margin-top: 10px; */
}

/* #backToAllAttractions-min{
  width: fit-content;
  z-index: 1000;
} */
/* #backToAllAttractions-min img{
  margin-right: 0px !important;
} */
.backToAllAttractions:hover {
  /* border: 1px solid; */
  box-shadow: 0px 0px 9px rgb(0 0 0 / 30%);

  /* transition: all 0.8s; */
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

#createTripAjaxCount1 {
  float: right !important;
  margin: -32px 0px 0px !important;
  width: 300px;
  max-width: 58%;
  margin-right: 20px !important;
}

.create-trip .big-btnre {
  background: var(--brand-color);
  box-shadow: 0px 2px 10px rgb(0 0 0 / 80%);
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  line-height: 16px;
  color: #fff !important;
  width: 365px;
  padding: 15px;
  outline: none;
  transform: scale(1);
  transition: all 0.8s;
}

.big-btnre img {
  margin-right: 5px;
}
.big-btn:hover {
  box-shadow: 0px 0px 9px rgb(0 0 0 /50%);
}

.your-attr-title {
  font-weight: 900;
  font-size: 13px;
  line-height: 16px;
  color: #525252;
}

.create-trip p {
  color: #525252;
  font-size: 11px;
  line-height: 13px;
  margin-bottom: 8px;
}

.learn-more-txt {
  color: var(--brand-color);
  font-size: 11px;
  line-height: 13px;
  color: #0063be !important;
  font-weight: 800;
  display: flex;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.learn-more-txt img {
  margin-right: 5px;
  display: inline-block;
}

.unplanned-group-trips,
.planned-grouped-trips {
  padding: 0.6rem 1.25rem;
}

.date-txt {
  font-size: 16px;
  line-height: 16px;
  color: var(--text-color);
  /* margin-top: 36px; */
}

.date-txt p {
  font-size: 16px;
  line-height: 16px;
  color: var(--text-color);
  width: 15%;
  float: left;
}

.date-txt .grey-txt {
  color: #777777;
  font-size: 14px;
  line-height: 16px;
  display: inline-block;
}

hr {
  color:#000;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.sortable-area {
  min-height: 30px;
}

.cost-cont {
  background: #eaeaea;
  padding: 3px;
  gap: 3px;
  width: auto;
  display: flex;
  border-radius: 11px;
  align-items: center;
  color: var(--brand-color);
}
.itenaries-list {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  display: none;
  /* margin-bottom: 100px !important; */
}

.itinerary {
  width: 100%;
  margin-left: 0px;
  margin-right: 0px;
}

.media {
  display: flex;
}

.itinerary .media > img {
  height: 85px;
  width: 100px;
}

.small-numbers {
  /* background: var(--sequence-color); */
  box-shadow: 0px 1px 2px rgb(0 0 0 / 20%);
  border-radius: 50px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  line-height: 11px;
  position: absolute;
  top: 35%;
  left: -30px;
}

.time-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.time-pickr {
  color: var(--brand-color) !important;
  border: 1px solid #eaeaea;
  box-shadow: 0px 1px 1px rgb(0 0 0 / 20%) !important;
  cursor: pointer;
  width: 65px !important;
  /* text-align: center; */
  font-weight: 400 !important;
  font-size: 13px !important;
  padding: 5px !important;
  display: flex;
  justify-content: center;
  height: 25px;
  outline: none;
}

.start-time,
.end-time {
  position: relative;
  display: flex !important;
}

.start-time i,
.end-time i{
  position: absolute;
  right: 3px;
  pointer-events: none;
  top: 6px;
  bottom: 0;
  margin: auto;
}

.time-spinner {
  position: absolute;
  right: 0px;
  pointer-events: none;
  bottom: 0;
  display: none;
  margin: auto;
  border: 2px solid var(--brand-color) !important;
  border-top: 1px solid white !important;
  top: 1px !important;
}

.time-wrapper span {
  color: #777777;
  font-size: 12px;
  line-height: 13px;
  margin: 0 5px;
}

.delete-ajax {
  background: #eaeaea;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.delete-ajax .delete-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  transition: all 0.8s;
  margin-right: 0px;
}

.delete-ajax:hover {
  background: #eaeaea;
  border: 1px solid #da4a40;
}

.listing {
  display: flex;
  justify-content: flex-end;
}
.commute-way {
  /* max-width: 45% !important; */
  width: fit-content;
  display: flex;
  background: var(--brand-color);
  padding: 5px 10px;
  outline: none !important;
  font-size: 12px;
  color: white;
  align-items: center;
  font-weight: 600;
  /* margin-left: 26px; */
  margin-top: -9px;
  /* position: absolute; */
  top: 40%;
  border: none !important;
  /* margin-bottom: 1px; */
  border-radius: 20px;
  outline: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

.commute-options-container {
  margin-top: 10px;
  display: none;
  position: absolute;
  z-index: 11;
  cursor: pointer;
  width: auto;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

.commute-options {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  font-size: 12px;
  padding: 5px 10px;
}

.itinerary-card {
  position: relative;
  margin-top: 15px;
  user-select: none;
}

.itinerary-price-desktop {
  position: absolute;
  right: 53px;
  top: 50%;
  font-size: 14px;
  transform: translateY(-50%);
  font-weight: bold;
  color: #212529;
  display: flex;
  text-transform: uppercase;
  /* display: none !important; */
}
.form-control:disabled,
.form-control[readonly] {
  background-color: white !important;
  opacity: 1;
}

.itinerary-price-mobile {
  margin-left: 10px;
  display: inline-block;
}
.unplanned-itinerary {
  user-select: none;
}

.itinerary-card i {
  margin-right: 5px;
}
.down-icon {
  margin-left: 5px;
}
.mobile-time-price {
  display: none;
}

.small-numbers:after {
  content: "";
  background: var(--sequence-color);
  width: 1px;
  display: block;
  height: 145px;
  top: 78px;
  position: relative;
  left: -3px;
}
/* 
.parent-attraction>div{
  margin-left: 39px;
}
.parent-attraction>div:first-child{
  margin-left: 20px;
}

.parent-attraction > div:before{
  content: "";
  background: rgba(0, 0, 0, 0.25);
  width: 1.3px;
  display: block;
  height: var(--full-height);
  bottom: 65px;
  position: absolute;
  left: -19px;
}
.parent-attraction > div:nth-child(2):before{
  content: "";
  background: rgba(0, 0, 0, 0.25);
  width: 1.3px;
  display: block;
  height: var(--half-height);
  bottom: 65px;
  position: absolute;
  left: -19px;
}
.parent-attraction > div:after{
  content: "";
  background: rgba(0, 0, 0, 0.25);
  width: 19px;
  display: block;
  height: 1.5px;
  bottom: 65px;
  position: absolute;
  left: -18px;
}

.parent-attraction>div:first-child:before{
  display: none;
}
.parent-attraction>div:first-child:after{
  display: none;
} */
.itinerary-card:last-child .small-numbers::after {
  height: 0px !important;
}
.loading-cont {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 0;
  z-index: 10000000000;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: -3px 0px 5px rgba(0, 0, 0, 0.2);
  overflow-x: hidden;
  /* padding-top: 60px; */
  transition: 0.5s;
  left: 0;
}

.spinner-loader {
  height: 100px;
  width: 100px;
}

.loader-info {
  margin-top: 5px;
}

.time-5 {
  --c1: #673b14;
  --c2: #f8b13b;
  width: 40px;
  height: 80px;
  border-top: 4px solid var(--c1);
  border-bottom: 4px solid var(--c1);
  background: linear-gradient(
      90deg,
      var(--c1) 2px,
      var(--c2) 0 5px,
      var(--c1) 0
    )
    center/7px 8px no-repeat;
  display: grid;
  overflow: hidden;
  animation: t5-0 2s infinite linear;
}

.time-5::before,
.time-5::after {
  content: "";
  grid-area: 1/1;
  width: 75%;
  height: calc(50% - 4px);
  margin: 0 auto;
  border: 2px solid var(--c1);
  border-top: 0;
  border-radius: 0 0 40% 40%;
  -webkit-mask: linear-gradient(#000 0 0) bottom/4px 2px no-repeat,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  background: linear-gradient(var(--d, 0deg), var(--c2) 50%, #0000 0) bottom /
      100% 205%,
    linear-gradient(var(--c2) 0 0) center/0 100%;
  background-repeat: no-repeat;
  animation: inherit;
  animation-name: t5-1;
}

.time-5::after {
  transform-origin: 50% calc(100% + 2px);
  transform: scaleY(-1);
  --s: 3px;
  --d: 180deg;
}

@keyframes t5-0 {
  80% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(0.5turn);
  }
}

@keyframes t5-1 {
  10%,
  70% {
    background-size: 100% 205%, var(--s, 0) 100%;
  }

  70%,
  100% {
    background-position: top, center;
  }
}

.planned {
  margin-left: 5px;
}

.selected {
  background: var(--brand-color) !important;
  color: white !important;
  border: none !important;
}

.selected i {
  color: white;
}
.search-filter-container {
  display: grid;
  /* width: 95%; */
  position: sticky;
  top: 0px;
  z-index: 4;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  margin: 0px 10px 20px 20px;
}

.filter-container {
  position: relative;
  display: flex;
}

.filter-cont {
  position: absolute;
  overflow-y: scroll;
  height: 260px;
  display: none;
  padding: 10px 0px;
  right: 20px;
  margin-top: 3px;
  width: 230px !important;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid #eaeaea !important;
  box-shadow: 0px 1px 1px rgb(0 0 0 / 20%) !important;
  background: white;
  z-index: 2;
}

.filters-style-cont {
  margin: 15px;
}

.filters-head {
  display: flex;
  justify-content: space-between;
}

.filters {
  font-weight: 900;
  font-size: 13px !important;
  line-height: 16px !important;
  color: #525252 !important;
  margin-bottom: 3px;
}

.filter {
  display: flex;
  /* margin-bottom: 10px; */
  cursor: pointer;
  vertical-align: middle;
  font-size: 13px;
  padding: 5px;
  line-height: 13px;
  align-items: center;
  color: #525252 !important;
  background-color: #eaeaea;
  font-weight: 500;
  outline: none;
  border: none;
  border-radius: 4px;

  /* display: flex;
  margin-bottom: 10px;
  vertical-align: middle;
  font-size: 11px;
  line-height: 13px;
  align-items: center;
  color: #212529 !important; */
}

.filter:hover {
  background-color: lightgray;
}

.selected-filter {
  background-color: #33a1aa !important;
  color: white !important;
}

.selected-filter img {
  filter: brightness(0) invert(1);
}
.filter input {
  width: 18px !important;
  height: 18px;
  margin-right: 10px;
}

.filter img {
  width: 10px;
  height: 10px;
  margin-right: 5px;
}

.clear-search {
  cursor: pointer;
}
.clear-filters {
  text-align: right !important;
  color: #0063be !important;
  margin-right: 35px;
  position: relative;
  cursor: pointer;
  background-color: transparent !important;
  z-index: 1;
  padding: 0;
  text-decoration: underline;
  font-size: 13px;
  line-height: 13px;
  margin-bottom: 10px;
  /* text-align: right !important;
  color: #525252 !important;
  position: relative;
  cursor: pointer;
  background-color: transparent !important;
  z-index: 1;
  padding: 0;
  text-decoration: underline;
  font-size: 11px;
  line-height: 13px; */
}

.close-filters {
  text-align: right !important;
  position: absolute;
  cursor: pointer;
  background-color: transparent !important;
  z-index: 1;
  padding: 0;
  text-decoration: underline;
  font-size: 13px;
  line-height: 13px;
  margin-bottom: 10px;
  top: 10px;
  right: 11px;
  font-size: 21px;
  text-decoration: none;
  color: #525252;
  font-weight: bold;
}

.search-input-container {
  display: flex;
  background: white;
  align-items: center;
  justify-content: space-between;
  border-radius: 3px;
  font-size: 14px;
  padding: 6px 5px;
  width: 16vw;
  box-shadow: 0px 1px 3px rgb(0 0 0 / 35%);
  height: 30px;
}

.search-input-container i {
  margin-right: 5px;
  color: #777777;
  margin-left: 5px;
  width: 17px;
  height: 16px;
}
.search-min i {
  color: #777777;
}

.search-close {
  color: var(--brand-color) !important;
  cursor: pointer;
  font-size: 17px;
}

.search-icon {
  max-height: 15px;
}

.search-input-container input {
  border: none;
  width: 100%;
}

.search-input-container input:focus {
  outline: none;
}

.Filter-Attraction,
.Personnas {
  display: flex;
  width: fit-content;
  column-gap: 5px;
  align-items: center;
  background-color: #eee;
  color: #4a4a4a;
  border-radius: 30px;
  border: 1px solid transparent;
  font-weight: 700;
  /* position: relative; */
  padding: 5px 10px;
  font-size: 13px;
  margin-right: 13px;
  box-shadow: 0px 1px 3px rgb(0 0 0 / 35%);
}

.Filter-Attraction:hover,
.Personnas:hover {
  box-shadow: 0px 0px 9px rgb(0 0 0 / 30%);
}
.search-min {
  background-color: #eee;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
  height: 25px;
  width: 25px;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #eee;
  border-radius: 50%;
  padding: 18px;
  box-shadow: 0px 6px 4px rgb(0 0 0 / 50%);
}

.border-style {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
}

.week-schedule-popup {
  display: block;
}

.trip-description p {
  font-size: 16px;
}

.right-menu {
  display: flex;
  column-gap: 5px;
  vertical-align: middle;
  align-items: center;
}

.login-btn {
  box-sizing: border-box;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  width: 90px;
  height: 40px;
  border: 1px solid #ffffff;
  background-color: transparent;
  outline: none !important;
  letter-spacing: 0.1em;
  margin-right: 30px;
  text-transform: uppercase;
  transition: 0.2s ease all;
}

.logout-btn {
  display: none;
}

.sidenav .logout-link {
  display: none;
}

.login-btn:hover {
  background-color: #ffde33 !important;
  border: none;
  color: #33a1aa !important;
}

.user-cont {
  background: rgb(255, 222, 51);
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  padding: 5px;
  justify-content: center;
  border: 50%;
  border-radius: 50%;
  padding: 14px;
  margin-left: 7px;
  color: #33a1aa;
}

.greet-user {
  color: #33a1aa !important;
}

.greet-user:hover {
  color: #33a1aa;
}

.selection-box {
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  border-radius: 0px;
  margin-bottom: 0px;
  /* padding-bottom: 0px; */
  height: 60px;
  border: 1px solid #eaeaea !important;
}

.tripFixed {
  padding-top: 0px;
  height: 98px;
}
.trip-activity-box {
  height: fit-content;
  margin-top: 0px;
  /* margin-bottom: 10px; */
}

.select-icon {
  color: var(--brand-color);
  display: inline-block;
  margin-right: 4px;
  margin-top: 2px;
  font-size: 11px !important;
  cursor: pointer;
}

.select-cont {
  display: flex;
  align-items: center;
}

.select-container {
  display: flex;
  align-items: center;
}

.options {
  display: flex;
  flex-direction: row-reverse;
  gap: 9px;
  align-items: center;
}

.date-select {
  margin-left: 2px;
}

.adult-children-input-container,
.dateRangeInput {
  width: 90%;
  text-overflow: ellipsis;
}

.unplanned .grey-txt {
  margin-left: 5px;
}

.unplanned .date-txt p {
  width: fit-content;
}

.loader-info {
  font-size: 21px;
  margin-top: 5px;
}

.sub-text{
  font-size: 16px;
  margin-top: 5px;
}

.content {
  position: relative;
}

/* .view-options-buttons{
  display: none;
} */

.action-btn-wrapper {
  /* margin-right: 25px; */
}
.view-option-btn {
  display: none;
  align-items: center;
  padding: 6px 10px;
  border-radius: 20px;
  background-color: rgb(233, 233, 233);
  box-shadow: 0px 1px 3px rgb(0 0 0 / 35%) !important;
}

.view-option-btn:hover {
  box-shadow: 0px 0px 9px rgb(0 0 0 / 30%) !important;
}

.view-option-btn p {
  margin-bottom: 0px;
  margin-left: 5px;
  font-size: 14px;
  font-weight: bold;
}

.border-box {
  height: 1px;
  background: rgb(0 0 0 / 35%);
}

.unplanned .itinerary {
  margin-top: 15px;
}

.start-time,
.end-time {
  position: relative;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  width: auto;
}

.timepicker-picker table td a span,
.timepicker-picker table td,
.timepicker-picker table td span {
  height: 20px !important;
  line-height: 20px !important;
  vertical-align: middle;
  width: 20px !important;
  padding: 0px !important;
}

.planned-head,
.unplanned-head {
  pointer-events: none;
}

.delete-trip-icon {
  color: #777777;
  font-size: 11px;
  display: inline-block;
  transition: all 0.8s;
  margin-right: 0px !important;
}

.close-pop img {
  margin-right: 10px;
}
/* .delete-itinerary-icon:hover{
  background: url('../../assets/RemoveRed.png');

} */

.close-label {
  width: 61px;
  height: 18px;
  background: #828282;
  border-radius: 2px;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 5px;
  margin-bottom: 4px;
}

.tooltiptext {
  display: none;
  width: 350px;
  min-height: 100px;
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 45%;
  margin-left: -90px;
}

.tooltiptext {
  font-weight: 400 !important;
  color: #222 !important;
  text-transform: inherit !important;
  text-align: left;
  box-shadow: 0px 0px 30px rgb(0 0 0 / 30%);
  border-radius: 5px;
  background: #fff !important;
  padding: 10px 10px 15px 15px !important;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 45%), inset 0px -5px 0px #fb6e4f;
  font-size: 16px;
  line-height: 19px;
  text-shadow: 0px 10px 50px rgb(0 0 0 / 25%);
}

.closed-attraction .mb-0 {
  margin-bottom: 0px !important;
}
.close-pop img {
  height: 35px !important;
  width: auto !important;
}

.closed-attraction {
  color: #525252;
}

.gm-style iframe + div {
  border: none !important;
}

.commute-options:hover {
  color: var(--brand-color);
  background-color: #ececec;
  font-weight: 700;
}

.close-additional-popup {
  color: grey !important;
  font-size: 20px;
}

.things-to-do-action-btns {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 10px;
}
.my-trips-action-btns {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 10px;
}
.not-active {
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.active-action {
  opacity: 1;
}

.add-to-trip {
  transition: opacity 0.4s ease-in-out;
  margin-right: -10px !important;
}
.my-experiences-btn {
  transition: opacity 0.4s ease-in-out;
}
.refine-trip-btn {
  display: none;
}
.replan-trip {
  position: absolute;
  right: 20px;
  color: var(--brand-color);
  cursor: pointer;
  font-size: 18px;
  visibility: hidden;
  transition: all 1s;
}

.second-save-btn svg {
  margin-right: 0px;
}
.second-save-btn {
  display: none;
}

.edit-dates {
  display: none;

  margin-right: 10px;
  align-items: center;
}

.edit-dates i {
  font-size: 14px;
  margin-right: 5px;
  color: var(--brand-color);
  padding-bottom: 1px;
}

.add-symbol {
  color: var(--brand-color);
  font-size: 14px;
}

.clear-search {
  color: var(--brand-color) !important;
  font-size: 16px;
}

.down-arrow {
  color: var(--brand-color) !important;
  font-size: 12px;
}
.edit-date-text {
  font-weight: 500;
  color: var(--brand-color);
  text-decoration: underline;
  font-size: 14px;
  margin-bottom: 0px !important;
}

.only-tab {
  display: flex;
}

.close-selection-box {
  position: absolute;
  display: none;
  left: 90.5%;
  top: 10px;
}
.close-select-btn {
  color: grey !important;
  font-size: 20px;
}

.disabled-section {
  /* background: rgba(100, 100, 100,0.8) !important;
  opacity: 0.5;
  height: 100vh;
  position: absolute;
  top: 200px;
  width: 100%; */
  display: none;
  width: 100%;
  height: calc(100vh - 50px - 123px);
  position: absolute;
  overflow: hidden;
  left: 0px;
  top: 133px;
  background: rgb(201 200 200) !important;
  opacity: 0.3;
  z-index: 5;
}

.guests-and-dates {
  position: absolute;
  display: none;
  left: 50%;
  width: 50vw;
  border-radius: 5px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  color: #525252;
  height: auto;
  transform: translate(-50%, -50%);
  top: 50%;
  padding: 20px 30px;
  z-index: 1000;
  flex-direction: column;
}
.trip-planner-cont {
  position: absolute;
  display: none;
  width: 50vw;
  border-radius: 5px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  color: #525252;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  padding: 20px 30px;
  z-index: 1000;
  flex-direction: column;
}

.travel-dates-cont {
  margin: 0px auto;
  position: relative;
  display: flex;
  justify-content: center;
}

.guests-and-dates .info {
  font-size: 12px;
  margin: 10px 0px;
  text-align: center;
}
.guests-and-dates .info span {
  color: var(--brand-color);
}

.plan-trip-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0px;
}
.agnes-trip-actions,
.coast-trip-actions {
  flex-direction: column-reverse !important;
  align-items: center;
  margin: 20px auto;
  gap: 10px;
}

.agnes-trip-actions .plan-for-me,
.coast-trip-actions .plan-for-me {
  background-color: #b42454;
  border: none !important;
  padding: 9px 20px;
}
.coast-trip-actions .plan-for-me {
  background: var(--brand-color) !important;
}
.agnes-trip-actions .let-me-plan,
.coast-trip-actions .let-me-plan {
  border: none !important;
  background: none;
  box-shadow: none;
  text-decoration: underline;
  padding: 0px;
  font-weight: 500;
}
.agnes-trip-actions,
.coast-trip-actions {
  width: fit-content;
}
.plan-action {
  padding: 9px 12px;
  background-color: transparent;
  font-weight: bold;
  outline: none;
  border-radius: 40px;
  border: none;
}

.let-me-plan {
  color: var(--brand-color);
  border: 2px solid var(--brand-color);
}

.agnes-trip-actions .let-me-plan:hover,
.coast-trip-actions .let-me-plan:hover {
  box-shadow: none;
  font-weight: 700;
}
.mobile-time-price {
  color: #777777;
  font-size: 12px;
  line-height: 13px;
  margin: 0 5px;
  margin-top: 5px;
}
.plan-for-me {
  background: var(--brand-color);
  color: white;
}
.travel-dates {
  margin: auto;
  flex-direction: column;
  display: flex;
  justify-content: center;
}

.date-cont {
  background: #ffffff;
  border: 1px solid #eaeaea !important;
  box-shadow: 0px 1px 1px rgb(0 0 0 / 20%) !important;
  border-radius: 3px;
  color: var(--brand-color);
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.travel-dates label {
  font-size: 14px;
  margin-bottom: 4px;
}
.dateRangeInput2 {
  color: var(--brand-color);
  outline: none;
  cursor: pointer;
  border: none;
}
.guests-and-dates p,
.trip-planner-cont p {
  text-align: center;
  margin: 0px;
  margin-bottom: 20px;
}

.filters-cont {
  position: absolute;
  height: auto;
  display: none;
  padding: 10px 0px;
  right: 12px;
  margin-top: 3px;
  width: 320px !important;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background: white;
  z-index: 2;
  top: 35px;
}

.all-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0px 10px;
}

.shimmer {
  /* background-color: gray; */
  margin: 15px 30px 15px 20px;
  height: 130px;
  display: flex;
}

.my-trip-cont .shimmer{
  height: 100px;
  margin: 20px 0px;
}

.my-trip-cont .shimmer .shimmer-img{
  height: 100%;
  width: 110px;
}

.my-trip-cont .shimmer .shimmer-desc{
  margin-top: 10px !important;
}

.shimmer-img {
  width: 140px;
  height: 130px;
  background-color: #9e9e9b;
  opacity: 0.4;
  border-radius: 6px;
  animation: placeholder-glow 2s ease-in-out infinite;
}

.shimmer .shimmer-desc {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
  margin-top: 20px !important;
}
.shimmer p {
  height: 15px;
  width: 98%;
  margin-bottom: 12px;
  background-color: #9e9e9b;
  opacity: 0.4;
  animation: placeholder-glow 2s ease-in-out infinite;
}
.mobile-time-price i {
  margin-right: 0px;
}
@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
  /* 100%{
    opacity: 1;
  } */
}
