/*================ 1. Google Fonts =================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Space+Grotesk:wght@300..700&display=swap");
/*================ End Google Fonts =================*/
:root {
  --global-font-family: "Space Grotesk", sans-serif;
  --inter-font-family: "Inter", sans-serif;
  /* cursor: none; */
}
/*================ Basic Styles =================*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*,
::before,
::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
:focus-visible {
  outline: none;
}
html {
  font-family: var(--global-font-family);
    scroll-behavior: smooth;
}
body {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #171717;
  font-family: var(--global-font-family);
  margin: 0;
  padding: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
iframe {
  border: 0;
  width: 100%;
}
svg:not(:root) {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: inline-block;
  margin: 0;
}
.clearfix:before,
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
i {
  display: flex;
}
i::before {
  content: "";
  display: inline-block;
  background-size: cover;
  mask-size: cover;
  -webkit-mask-size: cover;
  background-repeat: no-repeat;
}
/*body.searchbar-is-here {
  padding-bottom: 58px;
}*/
.container {
  max-width: 1140px;
  padding-left: 0;
  padding-right: 0;
}
.font-inter {
  font-family: var(--inter-font-family);
}
/* cursor design */
.cursor-box {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  opacity: 0.4;
  -webkit-filter: url("#filter-name");
  -moz-filter: url("#filter-name"); /* Adding Firefox compatibility */
  filter: url("#filter-name");
}

/* Dot */
.dot {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
  background: #eeeeee;
  border-radius: 40px;
  transition: ease 0.1s;
  pointer-events: none;
  z-index: 99999;
  transition: left 0.25s ease-out, top 0.25s ease-out, transform 0.25s linear;
}
.dot:nth-child(5) {
  background: #d252a7;
  transition: ease 0.1s;
  transform: scale(1);
}
.dot:nth-child(4) {
  background: #d252a7;
  transition: ease 0.12s;
  transform: scale(0.8);
}
.dot:nth-child(3) {
  background: #e35fa4;
  transition: ease 0.14s;
  transform: scale(0.6);
}
.dot:nth-child(2) {
  background: #d252a7;
  transition: ease 0.16s;
  transform: scale(0.4);
}
.dot:nth-child(1) {
  background: #dfc1ff;
  /* transition: ease 0.18s;
  transform: scale(0.2); */
  transition: left 0.25s ease-out, top 0.25s ease-out, transform 0.25s linear;
  transform: translate(-50%, -50%) scale(0.2);
}
.dot.hover {
  transform: translate(-50%, -50%) scale(2.5);
  animation: liquid 2.5s linear infinite;
}
@keyframes liquid {
  0%,
  100% {
    border-radius: 28% 72% 46% 54% / 22% 50% 50% 78%;
  }
  25% {
    border-radius: 73% 27% 41% 59% / 49% 20% 80% 51%;
  }
  50% {
    border-radius: 47% 53% 28% 72% / 49% 76% 24% 51%;
  }
  75% {
    border-radius: 48% 52% 68% 32% / 78% 54% 46% 22%;
  }
}
/*================ End Basic Styles =================*/

/*================ 3. Typography =================*/
h1,
.heading-one {
  font-size: 64px;
  line-height: 74px;
  letter-spacing: -0.03em;
  font-family: var(--inter-font-family);
}
h2,
.heading-two {
  font-size: 40px;
  font-weight: 600;
  line-height: 46px;
  letter-spacing: -0.03em;
  font-family: var(--inter-font-family);
}
h3,
.heading-three {
  font-size: 28px;
  font-weight: 600;
  line-height: 34px;
  font-family: var(--inter-font-family);
}
h4,
.heading-four {
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  font-family: var(--inter-font-family);
}
h5,
.heading-five {
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
}
h6,
.heading-six {
  font-size: 20px;
  line-height: 24px;
  font-family: var(--inter-font-family);
}
h1,
.heading-one {
  font-weight: 800;
}
h2,
h3,
h4,
h5,
h6,
.heading-two,
.heading-three,
.heading-four,
.heading-five,
.heading-six {
  font-weight: 600;
}
h1,
h2,
h3,
h4,
h5,
h6,
.heading-one,
.heading-two,
.heading-three,
.heading-four,
.heading-five,
.heading-six {
  color: #202020;
}
p,
a {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #525252;
}

h1,
h2,
h3,
h4,
h5,
h6,
address,
p,
pre,
blockquote,
dl,
dd,
menu,
ol,
ul,
table,
caption,
hr {
  margin: 0 0 16px 0;
}
p:last-child {
  margin-bottom: 0;
}
dl,
ol,
ul {
  list-style-type: none;
  padding: 0;
}
.site-list {
  list-style-type: disc;
  padding-left: 20px;
}
.site-list li {
  font-size: 16px;
  line-height: 19px;
  color: #000;
}
.site-list li.text-purple {
  color: #772bcb;
}
.site-list li::marker {
  font-size: 12px;
}
.fw-medium {
  font-weight: 500;
}
.fw-bold {
  font-weight: 700;
}
.site-table td {
  background-color: transparent;
  padding: 20px;
  font-size: 16px;
  line-height: 19px;
  color: #000;
}
.site-table td p {
  color: #000;
  margin-bottom: 0;
}
/*================ End Typography =================*/

/*================ Color Style =================*/
.text-pink {
  color: #d9226f;
}
.text-black {
  color: #171717;
}
.text-purple {
  color: #772bcb;
}

.text-grey {
  color: #525252;
}
.text-light-grey {
  color: #919191;
}
.text-outline-grey {
  color: #383838;
}

.bg-pink {
  background: #d9226f;
}
.bg-purple {
  background: #772bcb;
}
.bg-light-pink {
  background: #f2e6ff;
}
.bg-grey {
  background: #f7f7f7;
}
/*================ End Color Style =================*/

/*================ 4. Anchor Tag Style =================*/
a {
  display: inline-block;
  color: #171717;
  text-decoration: none;
  transition: all 0.4s;
}
a:focus,
a:hover {
  color: #d9226f;
  transition: all 0.4s;
}
/*================ End Anchor Tag Style =================*/

/*================ 5. Button Style =================*/
button {
  transition: all 0.4s;
}
button:hover,
button:focus {
  transition: all 0.4s;
}
.solid-btn,
.line-btn {
  display: inline-flex;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  color: #fff;
  background: #d9226f;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 17px;
  border-radius: 28px;
  position: relative;
  border: 1px solid #d9226f;
  transition: all 0.35s;
  overflow: hidden;
  white-space: nowrap;
}
.small-btn {
  padding: 8px 24px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}
.line-btn {
  color: #171717;
  border-color: #171717;
  background: transparent;
}
.solid-btn.bg-purple {
  background: #772bcb;
  border-color: #772bcb;
}
.line-btn.white {
  color: #fff;
  border-color: #fff;
}
.solid-btn.bg-site-black {
  background-color: #000;
  border-color: #000;
}
.solid-btn::before,
.solid-btn::after,
.line-btn::before,
.line-btn::after {
  width: 0%;
  height: 0%;
  content: "";
  position: absolute;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.solid-btn::after,
.line-btn::after {
  transition: all 0.5s ease;
}
.solid-btn::before,
.line-btn::before,
.solid-btn:hover span,
.line-btn:hover span {
  transition: all 0.5s ease-out;
}
.solid-btn span,
.line-btn span {
  z-index: 1;
  transition: all 0.3s ease-out;
}
.solid-btn.bg-white span {
  color: #171717;
}
.solid-btn:hover::before,
.solid-btn:hover::after,
.line-btn:hover::after,
.line-btn:hover::before,
.solid-btn:focus::before,
.solid-btn:focus::after,
.line-btn:focus::after,
.line-btn:focus::before {
  width: 300px;
  height: 300px;
  border-radius: 4px;
}
.solid-btn.w-100:hover::before,
.solid-btn.w-100:hover::after,
.line-btn.w-100:hover::after,
.line-btn.w-100:hover::before,
.solid-btn.w-100:focus::before,
.solid-btn.w-100:focus::after,
.line-btn.w-100:focus::after,
.line-btn.w-100:focus::before {
  width: 100%;
  height: 1000px;
}
.solid-btn:hover::after,
.line-btn:hover::after {
  transition: all 0.7s ease-in;
}
.solid-btn:hover::before,
.line-btn:hover::after {
  transition: all 0.5s ease-in;
}
.on-hover-white::after {
  background: white;
}
.on-hover-white-black::after {
  background: white;
}
.on-hover-white::before,
.on-hover-pink::before {
  background: #f53d8b;
}
.on-hover-white.bg-purple::before,
.on-hover-purple::before {
  background: #9340ef;
}
.on-hover-white:hover span,
.on-hover-white:focus span {
  color: #d9226f;
}

.on-hover-white.bg-purple:hover span,
.on-hover-white.bg-purple:focus span {
  color: #772bcb;
}
.on-hover-white-black:hover span,
.on-hover-white-black:focus span {
  color: #171717;
}
.on-hover-white-black:hover,
.on-hover-white-black:focus {
  border: 1px solid #171717;
}
.on-hover-pink:hover {
  border-color: #d9226f;
}
.on-hover-pink::after {
  background: #d9226f;
}
.on-hover-pink:hover span,
.on-hover-purple:hover span,
.on-hover-purple:focus span,
.on-hover-pink:focus span {
  color: #fff;
}
.on-hover-purple::after {
  background: #772bcb;
}
.on-hover-purple:hover {
  border-color: #772bcb;
}
.on-hover-white-black:hover {
  border-color: #171717;
}
.solid-btn:disabled,
.line-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.text-link:hover i {
  transform: translateX(4px);
  transition: all 0.4s ease-in-out;
}
.text-link i {
  transition: all 0.4s ease-in-out;
}
.text-link:hover i:before {
  background-color: #d9226f;
}
/*================ End Button Style =================*/

/*================ 7. Form Style =================*/
.form-group {
  position: relative;
}
input,
select,
textarea {
  font-family: var(--global-font-family);
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: 0em;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  box-shadow: none;
  border: 0;
  padding: 16px 20px;
  -webkit-box-shadow: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  margin-bottom: 15px;
  color: #171717;
}
textarea {
  resize: none;
}
input::placeholder,
textarea::placeholder {
  color: #171717;
}
input:disabled,
select:disabled,
textarea:disabled {
  background: #f6f6f6;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right center;
  background-image: url("../images/icon_dropdown.svg") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 16px !important;
  text-indent: 0.01px;
  text-overflow: "";
  cursor: pointer;
  padding-right: 40px;
}
label {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  margin: 0 0 8px;
}
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  height: auto;
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: 0;
  box-shadow: none;
}
.check-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.check-group label {
  font-weight: 400;
  margin: 0;
  cursor: pointer;
}
.form-check-input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid #772bcb;
  background-color: #fff;
  margin: 0;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: none;
  border-radius: 0;
  cursor: pointer;
}
.form-check-input[type="checkbox"]:checked {
  background-color: #772bcb;
  background-image: url("../images/icon_check_box_right.svg");
  background-repeat: no-repeat;
  background-size: 20px 9px;
  background-position: center;
  transition: none;
}
.form-check-input[type="checkbox"]:disabled {
  background-color: #772bcb;
  opacity: 0.4;
}
.form-check-input.error[type="checkbox"]:checked {
  background-color: #bf0a30;
  border: 1px solid #bf0a30;
}
.form-check-input[type="radio"] {
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: 1px solid #171717;
  transition: all 0.5s;
  cursor: pointer;
}
.form-check-input[type="radio"]:checked {
  background-color: #fff;
  border: 6px solid #772bcb;
}
.form-check-input.error[type="radio"]:checked {
  background-color: #fff;
  border: 5px solid #bf0a30;
}
.form-check-input[type="radio"]:disabled {
  background-color: #fff;
  border: 5px solid #919191;
}
.form-password {
  position: relative;
}
.form-password input {
  padding-right: 44px;
}
.toggle-password {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
}
.show-password,
.hide-password {
  padding: 0;
  border: none;
  width: 24px;
  height: 24px;
  display: block;
}
.show-password {
  background: url("../images/icon_eye.svg") no-repeat center;
}
.hide-password {
  display: none;
  background: url("../images/icon_eye_hide.svg") no-repeat center;
}
.show-hide-password .hide-password {
  display: block;
}
.show-hide-password .show-password {
  display: none;
}

/* upload file progressbar */
.upload-file-label {
  width: 100%;
  cursor: pointer;
  position: relative;
}
.upload-file-label input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
}
.upload-file-box {
  position: relative;
  background: #fff;
  border: 1px solid #919191;
  border-radius: 15px;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.upload-process .dropzone.dz-clickable {
  position: relative;
  cursor: pointer;
  border: 0;
  padding: 0;
  min-height: auto;
}
.upload-process .dropzone.dz-clickable p {
  color: #171717;
  font-weight: 600;
  line-height: 19px;
}
.upload-process .dropzone .camera-img {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 15px;
  position: absolute;
  left: 0;
}
.upload-process .dropzone .camera-img img {
  width: 100%;
  height: 100%;
  display: block;
}
.upload-process .dropzone .camera-img i::before {
  width: 33px;
  height: 37px;
}
.upload-process .dropzone .dz-message {
  margin: 0 0 16px;
}
.upload-process .dropzone.dz-started .dz-message {
  display: block;
}
.upload-process .dropzone .dz-preview .dz-details .dz-size {
  display: none;
}
.upload-process .dropzone .dz-preview .dz-details {
  padding: 0 24px 0 0;
  text-align: left;
  display: flex;
  align-items: center;
  opacity: 1;
  justify-content: space-between;
  position: static;
}
.upload-process .dropzone .dz-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: auto;
  margin: 0;
  background: #fff !important;
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #919191;
}
.upload-process .dropzone .dz-preview.dz-complete .file-data,
.upload-process .dropzone .dz-preview.dz-complete .dz-progress {
  display: none !important;
}
.upload-process .dropzone .dz-preview .dz-progress {
  margin: 0;
  height: 4px;
  width: auto;
  position: static;
  background: #d9d9d9;
}
.upload-process .dropzone .file-data span {
  font-weight: normal;
}
.upload-process .dropzone .dz-preview .dz-image {
  height: auto;
  width: auto;
  border-radius: 0 !important;
  /* display: none; */
}
.upload-process .dropzone .dz-preview .dz-details .dz-filename {
  display: flex;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span,
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 0;
  font-size: 16px;
  line-height: 19px;
  color: #000;
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 280px;
}
.upload-process .dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  -webkit-filter: none;
  filter: none;
}
.upload-process .dropzone .dz-preview .dz-image img {
  height: 100%;
  width: 100%;
}
.upload-process .dropzone .dz-preview .dz-progress .dz-upload {
  background: #0070ff;
}
.upload-process .dropzone .dz-preview .dz-error-message {
  top: auto;
  left: 0;
  background: linear-gradient(to bottom, #ff0000, #ff0000);
  background: #ff0000;
}
.upload-process .dropzone .dz-preview .dz-error-message:after {
  border-bottom: 6px solid #ff0000;
}
.upload-process .dropzone .dz-preview .dz-remove {
  background: url(../images/icon_cancel_round_purple.svg);
  background-size: cover;
  font-size: 0;
  line-height: 0;
  width: 19px;
  height: 19px;
  text-decoration: none;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 16px;
  z-index: 8;
}
.upload-process .dropzone .dz-preview.image__open .dz-image {
  display: block;
}
.upload-process .dropzone .dz-preview.image__open .uploading {
  display: none;
}
.form-check-input.error.disabled[type="checkbox"]:checked ~ label {
  color: #bf0a30;
  text-decoration: line-through;
}
.form-check-input.error.grey.disabled[type="checkbox"]:checked ~ label {
  color: #96999c;
}
.input-group input {
  position: relative;
  flex: 1 1;
}
.input-group
  > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(
    .valid-feedback
  ):not(.invalid-tooltip):not(.invalid-feedback) {
  border-left: 0;
}
.select-option-icon {
  max-width: 31px;
  border: 5px solid #dfc1ff;
  border-radius: 100%;
}
/*input[type="date"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  background-image: url(../images/icon_calendar.svg);
  width: 17px;
  height: 17px;
  padding: 0;
  cursor: pointer;
}*/
.scheduler-date {
  width: auto;
  padding: 0;
  border: 0;
  gap: 4px;
  color: #96999c;
  font-weight: 600;
  margin: 0;
}
.scheduler-date::-webkit-datetime-edit {
  order: 2;
}
.scheduler-date::-webkit-calendar-picker-indicator {
  order: 1;
}
.switch-toggle input[type="checkbox"].toggle {
  display: none;
}
.switch-toggle input[type="checkbox"].toggle + label {
  height: auto;
  background-color: #fff;
  padding: 6px;
  border-radius: 50px;
  border: 1px solid #b4d1ff;
  display: block;
  position: relative;
  cursor: pointer;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  margin: 0;
  width: 48px;
  height: 24px;
}
.switch-toggle [type="checkbox"].toggle:checked + label,
.switch-toggle input[type="checkbox"].toggle:focus:checked + label {
  background-color: #d9226f;
  transition: all 0.4s ease-in-out;
}
.switch-toggle [type="checkbox"].toggle + label:hover:before,
.switch-toggle input[type="checkbox"].toggle + label:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #d9226f;
  z-index: 2;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.switch-toggle input[type="checkbox"].toggle:checked + label:before,
.switch-toggle input[type="checkbox"].toggle:checked + label:hover:before,
.switch-toggle input[type="checkbox"].toggle:focus:checked + label:before,
[type="checkbox"].toggle:focus:checked + label:hover:before {
  background-color: #fff;
  background-position: 0 0;
  top: 2px;
  left: 100%;
  margin-left: -20px;
  transition: all 0.4s ease-in-out;
}
/* search style */
.searchbar {
  border: 2px solid #d9226f;
  border-radius: 50px;
  width: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
}
.searchbar input[type="search"] {
  border-radius: 50px;
  margin: 0;
  padding: 10px;
  font-size: 22px;
  line-height: 28px;
  padding-right: 0;
  background: #fff;
}
input[type="search"]::placeholder {
  color: #919191;
  width: 100%;
}
.searchbar .solid-btn {
  width: 43px;
  height: 43px;
  padding: 12px 20px;
}
.searchbar-wrap {
  position: relative;
}
.searchbar-wrap .destination-list-group {
  display: none;
  position: absolute;
  width: 366px;
  background-color: #f2e6ff;
  padding: 16px;
  border-radius: 16px;
  z-index: 1;
  max-height: 170px;
  overflow-y: auto;
/*  top: 68px;*/
}
.searchbar-wrap .destination-list-group li:first-child {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 19px;
}
.searchbar-wrap .destination-list-group li,
.searchbar-wrap .destination-list-group li a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.searchbar-wrap .destination-list-group li:not(:last-child) {
  margin-bottom: 12px;
}
.searchbar-wrap a img {
  width: 30px;
  height: 30px;
}
.contact-sec .help-block{
  display: inline-block;
  margin-bottom: 10px;
}
/*================ End Form Style =================*/

/*================ Spacing Style =================*/
.mb-12 {
  margin-bottom: 12px;
}
.mt-12 {
  margin-top: 12px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mr-20 {
  margin-right: 20px;
}
.mt-20 {
  margin-top: 20px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mt-60 {
  margin-top: 60px;
}
.mb-100 {
  margin-bottom: 100px;
}
.mt-100 {
  margin-top: 100px;
}
.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}
.pb-80 {
  padding-bottom: 80px;
}
.pt-80 {
  padding-top: 80px;
}
.pb-40 {
  padding-bottom: 40px;
}
.pt-40 {
  padding-top: 40px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pt-30 {
  padding-top: 30px;
}
.p-40 {
  padding: 40px;
}
.p-20 {
  padding: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-10 {
  padding-top: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pt-50 {
  padding-top: 50px;
}
.py-60 {
  padding: 60px 0;
}
.py-100 {
  padding: 100px 0;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.p-30 {
  padding: 30px;
}
/*================ End Spacing Style =================*/

/*================ Modal Style =================*/
.modal-content {
  padding: 30px;
  background: #ffffff;
  border-radius: 15px;
  border: none;
}
.modal-dialog {
  max-width: 590px;
}
.large-modal .modal-dialog {
  max-width: 870px;
}
.modal-backdrop.show {
  opacity: 0.3;
}
.modal-dialog {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.modal-header {
  padding: 0 0 12px;
  border-bottom: 1px solid #efefef;
}
.modal-body {
  padding-top: 30px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-x: hidden;
}
.modal-header .btn-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  opacity: 1;
  box-shadow: none !important;
  background: url("../images/icon_cross.svg");
  z-index: 9;
}
.modal-header .btn-close:hover {
  filter: brightness(0.5);
}
.modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  margin: 0 auto 20px;
}
.modal-icon .icon-logout::before {
  width: 30px;
  height: 30px;
  background-color: #002868;
}
/*================ End Modal Style =================*/

/*================ Off canvas Style =================*/
.cart-offcanvas.offcanvas.offcanvas-end {
  width: 30%;
}
.offcanvas-header {
  position: relative;
  padding: 15px 32px;
  border-bottom: 1px solid #f7f7f7;
  justify-content: center;
  font-family: var(--inter-font-family);
}
.offcanvas-header .btn-close {
  position: absolute;
  left: 32px;
  padding: 0;
  width: 24px;
  height: 24px;
  opacity: 1;
}
.offcanvas-footer {
  padding: 30px 32px;
  border-top: 1px solid #f7f7f7;
}
.offcanvas-body {
  height: calc(100vh - 286px);
  overflow: auto;
}
/*================ End Off canvas Style =================*/

/* =============== Custom Scroll style =================== */
.select2-container
  .select2-selection--multiple
  .select2-selection__rendered::-webkit-scrollbar-thumb,
.sidebar-body::-webkit-scrollbar-thumb,
.offcanvas-body::-webkit-scrollbar-thumb,
.searchbar-wrap .destination-list-group::-webkit-scrollbar-thumb,
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb,
.order-summery-list::-webkit-scrollbar-thumb,
.avail-network .network-list::-webkit-scrollbar-thumb {
  background: #dfc1ff;
  border-radius: 4px;
}
.sidebar-body::-webkit-scrollbar,
.offcanvas-body::-webkit-scrollbar,
.searchbar-wrap .destination-list-group::-webkit-scrollbar,
.modal-dialog-scrollable .modal-body::-webkit-scrollbar,
.order-summery-list::-webkit-scrollbar,
.avail-network .network-list::-webkit-scrollbar {
  width: 4px;
  background: transparent;
}


/* =============== End Custom Scroll style =================== */

/*================ Loader Style =================*/
.loader-container {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
/*================ End Loader Style =================*/

/*================ Site Icon Class Style =================*/
.icon-arrow-right::before {
  mask-image: url(../images/icon_right_arrow.svg);
  -webkit-mask-image: url(../images/icon_right_arrow.svg);
  width: 24px;
  height: 24px;
  background-color: #772bcb;
}
.icon-chevron-right::before {
  mask-image: url(../images/icon_dropdown.svg);
  -webkit-mask-image: url(../images/icon_dropdown.svg);
  width: 24px;
  height: 24px;
  background-color: #772bcb;
  transform: rotate(-90deg);
}
.icon-search::before {
  mask-image: url(../images/icon_search.svg);
  width: 17px;
  height: 17px;
  background-color: #fff;
}
.icon-globe::before {
  mask-image: url(../images/icon_globe.svg);
  width: 24px;
  height: 24px;
  background-color: #171717;
}
.icon-star::before {
  mask-image: url(../images/icon_star.svg);
  width: 21px;
  height: 21px;
  background-color: #d9226f;
}
.icon-done::before {
  mask-image: url(../images/icon_done.svg);
  width: 21px;
  height: 11px;
  background-color: #575757;
}
.icon-ee::before {
  background-image: url(../images/icon_ee.svg);
  width: 21px;
  height: 38px;
}
.icon-three-sim::before {
  background-image: url(../images/icon_three_sim.svg);
  width: 29px;
  height: 38px;
}
.icon-o2-sim::before {
  background-image: url(../images/icon_o2.svg);
  width: 32px;
  height: 35px;
}
.icon-warning::before {
  background-image: url(../images/icon_warning.svg);
  width: 20px;
  height: 20px;
}
.icon-amigo::before {
  background-image: url(../images/icon_amigo.png);
  width: 20px;
  height: 20px;
}
.icon-plus::before {
  mask-image: url(../images/icon_add.svg);
  width: 13px;
  height: 13px;
  background-color: #000;
}
.icon-minus::before {
  mask-image: url(../images/icon_minus.svg);
  width: 11px;
  height: 2px;
  background-color: #000;
}
.icon-lock-open::before {
  background-image: url(../images/icon_lock_open.svg);
  width: 26px;
  height: 26px;
}
.icon-wifi::before {
  background-image: url(../images/icon_wifi.svg);
  width: 26px;
  height: 26px;
}
.icon-address::before {
  background-image: url(../images/icon_address.svg);
  width: 26px;
  height: 26px;
}
.icon-mail::before {
  background-image: url(../images/icon_mail.svg);
  width: 26px;
  height: 26px;
}
.icon-call::before {
  background-image: url(../images/icon_call.svg);
  width: 26px;
  height: 26px;
}
.icon-delete::before {
  background-image: url(../images/icon_delete.svg);
  width: 24px;
  height: 24px;
}
.icon-upload::before {
  background-image: url(../images/icon_upload.svg);
  width: 24px;
  height: 24px;
}
.icon-copy::before {
  background-image: url(../images/icon_copy.svg);
  width: 20px;
  height: 20px;
}
.icon-download::before {
  background-image: url(../images/icon_download.svg);
  width: 20px;
  height: 20px;
}
.icon-info::before {
  background-image: url(../images/icon_info.svg);
  width: 16px;
  height: 16px;
}
.icon-ratings-green::before {
  background-image: url(../images/ratings_green.svg);
  width: 27px;
  height: 27px;
}
.icon-check-circle-purple::before {
  background-image: url(../images/icon_check_circle_purple.svg);
  width: 25px;
  height: 25px;
}
.icon_close_purple::before {
  background-image: url(../images/Icon_close_purple.svg);
  width: 26px;
  height: 26px;
}
.icon-arrow-forward::before {
  mask-image: url(../images/icon_arrow_forward.svg);
  width: 24px;
  height: 24px;
  background-color: #fff;
}

.icon-delivery::before {
  mask-image: url(../images/icon_delivery.svg);
  width: 40px;
  height: 40px;
  background-color: #171717;
}

.icon-support::before {
  mask-image: url(../images/icon_support.svg);
  width: 40px;
  height: 40px;
  background-color: #171717;
}

.icon-connection::before {
  mask-image: url(../images/icon_connection.svg);
  width: 40px;
  height: 40px;
  background-color: #171717;
}

.icon-cost-effective::before {
  mask-image: url(../images/icon_cost_effective.svg);
  width: 40px;
  height: 40px;
  background-color: #171717;
}

.icon-primary-number::before {
  mask-image: url(../images/icon_primary_number.svg);
  width: 40px;
  height: 40px;
  background-color: #171717;
}

.icon-share-data::before {
  mask-image: url(../images/icon_share_data.svg);
  width: 40px;
  height: 40px;
  background-color: #171717;
}

.icon-whatsapp::before {
  background-image: url(../images/icon_whatsapp.svg);
  width: 40px;
  height: 40px;
}

.icon-instagram::before {
  background-image: url(../images/icon_instagram.svg);
  width: 40px;
  height: 40px;
}

.icon-tiktok::before {
  background-image: url(../images/icon_tiktok.svg);
  width: 40px;
  height: 40px;
}

.icon-twitter::before {
  background-image: url(../images/icon_twitter.svg);
  width: 40px;
  height: 40px;
}

.icon-map::before {
  background-image: url(../images/icon_map.svg);
  width: 40px;
  height: 40px;
}

.icon-twitch::before {
  background-image: url(../images/icon_twitch.svg);
  width: 40px;
  height: 40px;
}
.white-icon::before {
  background-color: #fff;
}
.pink-icon::before {
  background-color: #d9226f;
}
i.w-16::before{
  width: 16px;
  height: 16px;
  
}
.icon-network::before {
  background-image: url(../images/icon_network.svg);
  width: 30px;
  height: 30px;
}

.icon-hotspot::before {
  background-image: url(../images/icon_hotspot.svg);
  width: 30px;
  height: 30px;
}

.icon-notes::before {
  background-image: url(../images/icon_notes.svg);
  width: 30px;
  height: 30px;
}
.icon-play::before {
  background-image: url(../images/icon-play.svg);
  width: 50px;
  height: 50px;
}
/*================ End Site Icon Class Style =================*/

/*================ Diff. Animation Styles =================*/
/* Dot Typing */
.loading-icon {
  width: 74px;
  height: 60px;
  background: #f6f8fa;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.dot-typing {
  position: relative;
  left: -9999px;
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background-color: #7a869a;
  color: #7a869a;
  box-shadow: 9988px 0 0 0 #7a869a, 9999px 0 0 0 #7a869a, 10010px 0 0 0 #7a869a;
  animation: dotTyping 1.5s infinite linear;
}
@keyframes dotTyping {
  0% {
    box-shadow: 9988px 0 0 0 #7a869a, 9999px 0 0 0 #7a869a,
      10010px 0 0 0 #7a869a;
  }
  16.667% {
    box-shadow: 9988px -10px 0 0 #7a869a, 9999px 0 0 0 #7a869a,
      10010px 0 0 0 #7a869a;
  }
  33.333% {
    box-shadow: 9988px 0 0 0 #7a869a, 9999px 0 0 0 #7a869a,
      10010px 0 0 0 #7a869a;
  }
  50% {
    box-shadow: 9988px 0 0 0 #7a869a, 9999px -10px 0 0 #7a869a,
      10010px 0 0 0 #7a869a;
  }
  66.667% {
    box-shadow: 9988px 0 0 0 #7a869a, 9999px 0 0 0 #7a869a,
      10010px 0 0 0 #7a869a;
  }
  83.333% {
    box-shadow: 9988px 0 0 0 #7a869a, 9999px 0 0 0 #7a869a,
      10010px -10px 0 0 #7a869a;
  }
  100% {
    box-shadow: 9988px 0 0 0 #7a869a, 9999px 0 0 0 #7a869a,
      10010px 0 0 0 #7a869a;
  }
}
.hithere {
  animation: hithere 4s ease infinite;
  animation-delay: 2s;
}
@keyframes hithere {
  5% {
    transform: scale(1.2);
  }
  10%,
  20% {
    transform: rotate(-20deg) scale(1.2);
  }
  25% {
    transform: rotate(20deg) scale(1.2);
  }
  30% {
    transform: rotate(0deg) scale(1.2);
  }
  40% {
    transform: scale(1);
  }
}
/*================ End Diff. Animation Styles =================*/

/*================ Start Accordion Style =================*/
.accordion-flush .accordion-item {
  padding: 20px;
  background: #f2e6ff;
  border: 0.5px solid #f5f5f5;
  border-radius: 15px;
  margin-bottom: 20px;
}
.accordion-flush .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-button {
  padding: 0;
  background: transparent;
  gap: 8px;
}
.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  background-image: url(../images/icon_dropdown.svg);
}
.accordion-button:focus {
  border: 0;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: transparent;
  color: inherit;
  box-shadow: none;
}
.accordion-body {
  padding: 12px 0 0;
  color: #121212;
  font-size: 16px;
  line-height: 19px;
}
.accordion-body p,
.accordion-body ol > li,
.accordion-body ul > li {
  color: #121212;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 12px;
}

.accordion-body ol {
  counter-reset: ol-counter;
  margin-bottom: 0;
}

.accordion-body ol > li {
  counter-increment: ol-counter;
  padding-left: 24px;
  position: relative;
  margin-bottom: 16px;
}

.accordion-body ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(ol-counter) ".";
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
}

.accordion-body ol > li p:first-child {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
}

.accordion-body ul {
  margin-bottom: 0;
}

.accordion-body ul > li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.accordion-body ul > li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 8px;
  width: 4px;
  height: 4px;
  background-color: #121212;
  border-radius: 100%;
}
/*================ End Accordion Style =================*/

/*================ Start Tab Style =================*/
.nav-pills {
  gap: 4px;
}
.nav-pills .nav-link {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: #171717;
  padding: 8px 12px;
  border-radius: 11px;
}
.site-header .navbar-nav .nav-link.unique-color {
  color: #d252a7;
}
.nav-pills .nav-link.active {
  background-color: #772bcb;
}
/*================ End Tab Style =================*/

/*================ Start Header Style =================*/
.site-header {
  width: 100%;
  z-index: 8;
  top: 0;
  left: 0;
  position: fixed;
  padding: 20px 100px;
  transition: all ease 0.4s;
  background-color: #fff;
}
.site-header.sticky {
  position: fixed;
  width: 100%;
  z-index: 8;
  top: 0;
  left: 0;
  box-shadow: 0 0 10px rgba(0 0 0 / 10%);
  transition: all ease 0.4s;
}
.site-header .navbar {
  justify-content: flex-end;
  gap: 18px;
}
.site-header .header-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header .navbar .navbar-nav {
  flex-direction: row;
  gap: 4px;
}
.site-header .navbar-nav .nav-link {
  padding: 10px 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #171717;
}
.site-header .navbar-nav .nav-link.active {
  color: #d252a7;
}
.site-header .navbar-nav .nav-link.active,
.site-header .navbar-nav .nav-link.show {
  color: #d252a7;
}
.dropdown-toggle::after {
  mask-image: url(../images/icon_dropdown.svg);
  -webkit-mask-image: url(../images/icon_dropdown.svg);
  background-color: #171717;
  border: 0;
  width: 13px;
  height: 13px;
  vertical-align: -2px;
  transition: all 0.4s ease-in-out;
}
.dropdown-toggle.show::after {
  background-color: #d9226f;
  transform: rotate(180deg);
  transition: all 0.4s ease-in-out;
}
.navbar-nav .dropdown-menu,
.account-info .dropdown-menu {
  position: absolute;
  margin-top: 0;
  background: #f3edf7;
  border: 0;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0px 4px 4px 0px #00000040;
}


.account-info .dropdown-menu {

  border-radius: 15px;

}
/*.dropdown-toggle.show {
  background: #f2e6ff;
  border-radius: 15px 15px 0px 0px;
}*/
.dropdown-item {
  color: #171717;
  font-size: 16px;
  line-height: 17px;
  padding: 4px 10px;
  margin-bottom: 10px;
}
.dropdown-menu li:last-child .dropdown-item {
  margin-bottom: 0;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active,
.dropdown-item:active {
  background-color: #f2e6ff;
  color: #d9226f;
  transition: 0.2s ease-in-out;
}
.site-header .select2-container {
  margin-bottom: 0;
  width: max-content !important;
}
.site-header .select2-container--default .select2-selection--single {
  border: 0;
  height: auto;
}
.site-header
  .select2-container
  .select2-selection--single
  .select2-selection__rendered,
.currency-dropdown .select2-results__option {
  padding: 0 16px 0 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  color: #171717;
}
.site-header .select2-container--default .select2-selection--single::before {
  width: 13px;
  height: 13px;
  right: 0;
}
.site-header .sidebar-header {
  display: none;
}
.account-info {
  position: relative;
  padding-left: 10px;
}
.account-info::before {
  content: "";
  width: 1px;
  height: 13px;
  background: #919191;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.site-header .language-select .select2-container--default.select2::before {
  display: none;
}
.site-header .language-select .select2-container--default.select2 {
  pointer-events: none;
}
.site-header
  .language-select
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  padding-right: 0;
}
.cart-btn{
  position: relative;
}
.cart-btn span{
  position: absolute;
  top: -8px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background-color: #d9226f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 12px;
}
.cart-list .list-item {
  padding: 30px 32px;
  border-bottom: 1px solid #f7f7f7;
}
.cart-list .list-item .item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.cart-list .item-header .item-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cart-list .item-title span {
  display: block;
  font-size: 16px;
  line-height: 19px;
}
.cart-list .flag-icon img {
  height: auto;
}
.cart-list .flag-icon {
  flex-shrink: 0;
}
.cart-list .item-title span.text-small {
  font-size: 12px;
  line-height: 15px;
  font-family: var(--inter-font-family);
}
.cart-list .delete-btn {
  background: transparent;
  border: 0;
  padding: 0;
}
.price-block,
.footer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.price-block .count-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.price-block .count-block button {
  border: 1px solid rgba(23, 23, 23, 0.5);
  border-radius: 3px;
  background: transparent;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 24px;
}
.price-block .count-block span {
  font-size: 16px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
  padding: 2px 4px;
}
.price-block .plan-price {
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
}
.site-logo img {
  height: auto;
  max-width: 200px;
}
.footer-total p {
  font-family: var(--inter-font-family);
  font-size: 22px;
  font-weight: 600;
  line-height: 27.72px;
  color: #000;
}
.site-content {
  margin-top: 98px;
  min-height: calc(100vh - 348px);
}
.navbar-nav .dropdown-menu.dropdown-menu-destination {
  background: transparent;
  box-shadow: none;
}

.destination-main-menu {
  background: #f3edf7;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0px 4px 4px 0px #00000040;
  position: relative;
}

.dropdown-menu-destination .nav-pills {
  width: 128px;
}

.dropdown-menu-destination .dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-menu.dropdown-menu-destination li:not(:last-child) .dropdown-item {
  margin-bottom: 2px;
}

.dropdown-menu-destination .dropdown-item .icon-chevron-right::before {
  width: 13px;
  height: 13px;
  background: #171717;
}

.dropdown-menu-destination .dropdown-item:hover .icon-chevron-right::before,
.dropdown-menu-destination .dropdown-item.active .icon-chevron-right::before {
  background: #d9226f;
}

.destination-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  max-height: 403px;
  min-width: 164px;
  overflow-y: auto;
  background: #f3edf7;
  border-radius: 8px;
  padding: 10px 13px 10px 0;
  box-shadow: 0px 4px 4px 0px #00000040;
  display: none;
}

.destination-sub-menu::-webkit-scrollbar-thumb {
  background: #dfc1ff;
  border-radius: 4px;
}

.destination-sub-menu::-webkit-scrollbar {
  width: 4px;
  background: transparent;
}

.get-the-app {
  display: none;
}

.get-the-app p {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #171717;
}
.header-left-wrapper {
  gap: 30px;
}
/*================ End Header Style =================*/

/*================ Start Footer Style =================*/
.site-footer {
  padding: 52px 100px;
  border-radius: 28px 28px 0 0;
}
.site-footer .site-logo img {
  max-width: 192px;
  height: auto;
  margin-bottom: 24px;
}
.site-footer a.mailto {
  text-decoration: underline;
}
.site-footer ul {
  margin-bottom: 0;
}
.site-footer ul li:not(:last-child) {
  margin-bottom: 20px;
}
.site-footer a.active {
  color: #d9226f;
}
/*================ End Footer Style =================*/

/*================ Start Breadcrumb Style =================*/
.breadcrumb-box {
  border-radius: 28px;
}
.breadcrumb-item.active,
.breadcrumb-item {
  font-size: 16px;
  line-height: 19px;
  color: #171717;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  font-size: 16px;
  line-height: 19px;
}
/*================ End Breadcrumb Style =================*/

/*================ Start Titlebar Style =================*/
.titlebar-box {
  border-radius: 28px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.titlebar-box .searchbar {
  background-color: #fff;
}
.titlebar-box .searchbar input[type="search"] {
  padding: 7px 10px;
}
/*================ End Titlebar Style =================*/
.order-list {
  list-style: decimal;
  margin-left: 17px;
}
.order-list li {
  font-size: 16px;
  line-height: 19px;
  color: #171717;
}
.order-list li a {
  font-size: 14px;
  line-height: 16px;
}
.payment-fail-sec{
  min-height: calc(100vh - 350px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-fail-sec h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 48px;
  letter-spacing: -0.02em;
}
.payment-fail-sec p {
  font-size: 22px;
  font-weight: 400;
  line-height: 27.72px;
  text-align: center;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  color: #171717;
}
.searchbar-wrap.fixed-search-bar {
  background: #d9226f;
  padding: 10px;
}
.searchbar-wrap.fixed-search-bar .searchbar {
  margin: 0;
}
.searchbar-wrap.fixed-search-bar .destination-list-group{
  top: inherit;
/*  bottom: 60px;*/
}
.fixed-search-bar .searchbar {
  background-color: #fff;
  max-width: 100%;
  margin: 0;
  width: 100%;
}
.filter-list button.active {
    background-color: #d9226f;
    color: #fff;
    border: 3px solid;
    border-color: lightpink;
}
.logout-modal .modal-content, .delete-account-modal .modal-content {
  background: #f2e6ff;
  padding: 40px;
}
.logout-modal button {
  width: -webkit-fill-available;
  width: -moz-available;
}
.swiper-nav {
  gap: 16px;
}
.swiper-button-next,
.swiper-button-prev {
  position: static;
  z-index: 0;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  margin: 0;
}
.swiper-button-next .icon-arrow-right::before,
.swiper-button-prev .icon-arrow-right::before {
  width: 24px;
  height: 24px;
  background: #d9226f;
}
.swiper-button-prev .icon-arrow-right {
  transform: rotate(180deg);
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}
.filter-list button.active:hover { 
  color: #fff;
}
.logout-modal .button-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logout-modal .text-lg {
  font-size: 18px;
  line-height: 20px;
}
.validate{
  position: absolute;
  left: 12px;
  bottom: -6px;
}
.contact-sec .is-invalid{
  margin-bottom: 16px !important;
}
.select2-search--dropdown .select2-search__field{
padding: 4px 6px;
border-radius: 8px;
}

.select2-container--default .select2-results__option--selectable.select2-results__option--selected{
  color: #772bcb;

}
.cookie-box {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 9;
  box-shadow: 0 0 10px rgba(0 0 0 / 10%);
}
.border-20 {
  border-radius: 20px;
}
/*Strong password*/
.strength-container {
  display: flex;
  align-items: center; 
}

.strength-bar {
  width: 95%;
  height: 5px;
  background-color: rgb(235, 232, 232);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.filled-bar {
  height: 5px; 
  border-radius: 10px; 
  position: absolute; 
  top: 0;
  left: 0;
}
#reset-strength-bar {
  display: none;
}
 
#change-strength-bar {
  display: none;
}
#password-message {
  font-family: "Inter", sans-serif;
}

/* Steps Section */
.progress-bar-wrapper ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}
.checkout-form .progress-bar-wrapper ul { 
  margin-bottom: 40px;
}
.progress-bar-wrapper ul.active::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 70px;
  right: 0;
  border-top: 2px solid #D9226F;
  width: 100%;
  max-width: 276px;
  z-index: -1;
}
.progress-bar-wrapper ul::after {
  content: '';
  position: absolute;
  top: 11px;
  left: auto;
  right: 41px;
  border-top: 2px solid #E4E2E2;
  width: 100%;
  max-width: 245px;
  z-index: -1;
}
.checkout-form .progress-bar-wrapper ul.active::after {
  border-top: 2px solid #D9226F;
}
.radio-block {
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #D9226F;
  border-radius: 50%;
  margin: 0 auto 10px;
  position: relative;
  background: #fff;
}
.progress-bar-wrapper ul li .radio-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: transparent;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.progress-bar-wrapper li.active .radio-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-color: #D9226F;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.progress-bar-wrapper li.completed .radio-block { 
  background-color: #D9226F;
}
.progress-bar-wrapper li.completed .radio-block::before { 
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background-image: url(../images/icon_box_check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.radio-text {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #171717;
}
.progress-bar-wrapper li.active .radio-text,
.progress-bar-wrapper li.completed .radio-text {
  color: #D9226F;
}
.progress-bar-wrapper .progress-nav.completed::after {
  border-color: #D9226F;
}
.progress-bar-wrapper {
  max-width: 658px;
  margin: 0 auto;
}
.payment-success .progress-bar-wrapper {
  margin-top: 40px;
  margin-bottom: 80px;
}
/* Steps Section End */