@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

b, strong {
  font-weight: 600;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  /* to block ios safari pull to refresh */
  overflow: hidden;
}

img {
  width: initial;
}

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

i {
  margin: 0;
}

a {
  display: initial;
}

details summary::-webkit-details-marker {
  display: none;
}

ol {
  margin: 0;
  padding-left: 15px;
}

::selection {
  background: #ff1ea4;
  color: #fff;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #959595;
  font-size: 15px;
  opacity: 1; /* Firefox */
  text-transform: none;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #959595;
  font-size: 15px;
  text-transform: none;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #959595;
  font-size: 15px;
  text-transform: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* chrome autofill background colour */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #000 !important;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-center {
  justify-content: center;
}

.flex-vcenter {
  align-items: center;
}

#swi-logo-desktop {
  /* width: 130px;*/
  width: 135px;
}

/* select 2 */

.swi-flag-text {
  vertical-align: middle;
  margin-left: 10px;
}

.swi-flags-icon {
  vertical-align: middle;
  width: 20px;
}

.swi-country-code-text {
  font-weight: 500;
  margin-left: 8px;
}

.swi-flag-text {
  font-size: 14px;
  margin-left: 10px;
}


.tippy-box .swi-info-pages-list {
  list-style: none;
}

.tippy-box .swi-info-pages-list-item {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
  padding-left: 15px;
}

.tippy-box .swi-info-pages-list-item::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #7f1eff;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 8px;
}

/* tippy theme */

.tippy-box[data-theme~='white'] {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.6);
  padding: 15px;
  border: 1px solid #dedede;
}

.tippy-box[data-theme~='pink'] {
  background-color: #ff1ea4;
  color: #fff;
  /* padding: 15px;
  border: 1px solid #dedede; */
}

.tippy-box[data-theme~='pink'][data-placement^='top'] > .tippy-arrow::before {
  border-top-color: #ff1ea4;
}
.tippy-box[data-theme~='pink'][data-placement^='bottom'] > .tippy-arrow::before {
  border-bottom-color: #ff1ea4;
}
.tippy-box[data-theme~='pink'][data-placement^='left'] > .tippy-arrow::before {
  border-left-color: #ff1ea4;
}
.tippy-box[data-theme~='pink'][data-placement^='right'] > .tippy-arrow::before {
  border-right-color: #ff1ea4;
}

.swi-tooltip-header {
  font-weight: 600;
  font-size: 16px;
  color: #000;
  margin-bottom: 15px;
}

.swi-tooltip-lightbulb {
  color: #fbc02d;
  margin-right: 10px;
}

/* helper */

.swi-msf-pink {
  color: #ff1ea4;
}

.swi-light-pink-btn {
  box-shadow: none !important;
  background-color: rgba(255, 30, 164, 0.2) !important;
  color: #ff1ea4 !important;
}

.swi-pink-btn {
  box-shadow: none !important;
  background-color: #ff1ea4 !important;
  color: #fff !important;
}

.swi-msf-alert {
  padding: 20px;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.swi-msf-alert i {
  font-size: 25px;
  width: 25px;
  margin-right: 5px;
}

.swi-msf-alert.swi-msf-alert-pink {
  background-color: rgba(255, 30, 164, 0.07);
  color: #ff1ea4;
}

.swi-msf-alert.swi-msf-alert-pink i {
  color: #ff1ea4;
}

.swi-modals {
  background-color: #fff;
  border-radius: 20px;
  padding: 25px 25px 30px 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  max-height: calc(100% - 40px);
  max-width: 500px;
  /* width: 30%; */
  animation: none !important;
}

.swi-modal-overlay {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity linear 300ms;
}

.swi-modal-overlay.swi-modal-overlay-open {
  opacity: 1;
  pointer-events: all;
}

.swi-modal-title {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.swi-modal-paragraph {
  font-size: 14px;
  color: #808080;
  margin-bottom: 30px;
}

.swi-modal-paragraph > a {
  color: #7f1eff;
}

.swi-modal-img {
  width: 100%;
  margin-bottom: 20px;
}

.swi-modal-btn {
  font-weight: 600;
  background-color: #fff;
  box-shadow: none;
  color: #7f1eff;
}

.swi-modal-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.swi-modal-header-icon {
  font-size: 50px;
  width: 50px;
  color: #ff1ea4;
}

.swi-error-modals {
  text-align: center;
}

.swi-error-modals .swi-modal-title,
.swi-error-modals .swi-modal-paragraph {
  display: block;
}

.swi-overflow-modals {
  position: relative;
  height: 500px;
  padding: 0;
  max-width: 300px;
}



.swi-overflow-modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  border-bottom: 1px solid #dedede;
  padding: 10px 0;
  box-sizing: border-box;
  z-index: 99999;
  width: 100%;
}

.swi-overflow-modal-header-icon {
  font-size: 30px;
  width: 30px;
  color: #ff1ea4;
}

.swi-overflow-modal-header-title {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-top: 0 !important;
}

.swi-modal-info-list {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 430px;
  padding-top: 100px;
  z-index: 99998;
  overflow: auto;
}

.swi-modal-info-list-item {
  display: flex;
  flex-direction: column;
  padding: 15px;
  border-bottom: 1px solid #dedede;
}

.swi-modal-info-list-item:last-child {
  border-bottom: none;
}

.swi-modal-info-list-item-title {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.swi-modal-info-list-item-content {
  font-size: 14px;
  color: #808080;
}
.swi-info-pages-list-item::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #808080;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.swi-overflow-modal-content-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 430px;
  padding: 100px 20px 50px 20px;
  z-index: 99998;
  overflow: auto;
}

.swi-overflow-modal-content-header {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

.swi-overflow-modal-content-para {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
}

.swi-overflow-modal-footer {
  position: absolute;
  width: 100%;
  z-index: 99999;
  bottom: 0;
  left: 0;
}

.swi-overflow-modal-footer.swi-overflow-modal-footer-2-btns {
  display: flex;
}



.swi-overflow-modal-footer-btn {
  background-color: #fff;
  box-shadow: none;
  color: #7f1eff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
  border-top: 1px solid #dedede;
  border-radius: 0;
}

.swi-overflow-modal-footer.swi-overflow-modal-footer-2-btns > .swi-overflow-modal-footer-btn {
  margin: 0;
  width: 50%;
}

/* tab modal */
.swi-overflow-modals.swi-tabs-modals {
  height: 600px;
}

.swi-overflow-modals.swi-tabs-modals .swi-overflow-modal-header {
  overflow-x: auto;
  padding-bottom: 0;
}

.swi-overflow-modals.swi-tabs-modals .swi-overflow-modal-header .tabs {
  width: inherit;
  justify-content: initial;
  border-bottom: none;
}

.swi-overflow-modals.swi-tabs-modals .swi-overflow-modal-header .tabs > a {
  padding-bottom: 10px;
}

.swi-overflow-modals.swi-tabs-modals .swi-overflow-modal-header .tabs > a.active > i {
  color: #ff1ea4;
}

.swi-overflow-modals.swi-tabs-modals .swi-overflow-modal-header .tabs > a.active {
  border-bottom: 2rem solid #ff1ea4;
}

.swi-overflow-modals.swi-tabs-modals .swi-overflow-modal-header .tabs > a.active > span {
  color: #ff1ea4;
}

.swi-overflow-modals.swi-tabs-modals .swi-overflow-modal-header .tabs > a > i {
  color: #959595;
}

.swi-overflow-modals.swi-tabs-modals .swi-overflow-modal-header .tabs > a > span {
  color: #959595;
  text-transform: none;
}

.swi-overflow-modal-tabs-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 530px;
  padding-top: 100px;
  z-index: 99998;
  overflow: auto;
}

.swi-overflow-modal-tabs-container .page {
  padding: 0 30px;
}

.swi-plan-info-item-header {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px !important;
}

.swi-plan-info-item-list > li {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  margin-bottom: 15px;
}

.swi-plan-info-item-list > li > i {
  color: #ff1ea4;
  margin-right: 10px;
  font-size: 15px;
  font-weight: 600;
  width: 15px;
}

.swi-plan-info-item-list > li > sup {
  vertical-align: super;
  font-size: 10px;
}

.swi-plan-info-link {
  font-size: 14px;
  color: #7f1eff;
  font-weight: 500;
  display: block;
  margin: 20px 0;
}

.swi-plan-info-link > i {
  color: #7f1eff;
}

.swi-modal-footer-list {
  margin: 20px 0;
}

.swi-modal-footer-list-item {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}

/* beer css input config */

.field.label.border:not(.fill) > [placeholder]:focus ~ label,
.field.label.border:not(.fill) > [placeholder]:not(:placeholder-shown) ~ label,
.field.label.border:not(.fill) > label.active {
  font-size: 11.5px;
  font-weight: 500;
  color: #ff1ea4;
}

.field.label > label {
  font-size: 15px;
  font-weight: 500;
  color: #959595;
  pointer-events: none;
}

.field.invalid.label.border:not(.fill) > [placeholder]:focus ~ label,
.field.invalid.label.border:not(.fill)
  > [placeholder]:not(:placeholder-shown)
  ~ label,
.field.invalid.label.border:not(.fill) > label.active {
  color: #f00 !important;
}

.field.invalid.label > label {
  color: #959595 !important;
}

.field.border > input,
.field.border > select,
.field.border > textarea {
  border-color: #dfdfdf;
  border-radius: 5rem;
}

.field.border > input.swi-myinfo-biz-highlight,
.field.border > select.swi-myinfo-biz-highlight,
.field.border > textarea.swi-myinfo-biz-highlight {
  border-color: #ff1ea4;
  border-width: 2px;
  border-radius: 5rem;
}

.field.border > input:focus,
.field.border > select:focus,
.field.border > textarea:focus {
  border-color: #ff1ea4;
}

.field.invalid.border > input,
.field.invalid.border > select,
.field.invalid.border > textarea {
  border-color: #f00;
  border-radius: 5rem;
}

.field.invalid.border > input:focus,
.field.invalid.border > select:focus,
.field.invalid.border > textarea:focus {
  border-color: #f00;
}


.checkbox > input {
  width: initial !important;
  height: initial !important;
}

.checkbox > span,
.checkbox > span > a {
  display: inline-block !important;
}

.checkbox > span > a {
  color: #7f1eff;
}

.checkbox > input + span::before,
.radio > input + span::before {
  color: #ff1ea4 !important;
}

.radio > input:checked + span::before {
  color: #ff1ea4;
}

.field.invalid > i {
  color: #f00 !important;
}

.field > .error {
  color: #f00 !important;
}

.toast.active {
  z-index: 9999;
  bottom: 110rem;
}

/* Jquery datepicker styling */

.ui-widget.ui-widget-content {
  border-radius: 5px;
  border-color: #dedede;
}

.ui-datepicker-title {
  display: flex;
  align-items: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-family: 'Poppins', sans-serif;
  border-radius: 3px;
  border: 1px solid #dedede;
  padding: 5px 8px;
  font-size: 14px;
  margin: 0 5px;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
  border-color: transparent;
  background-color: transparent;
  text-align: center;
}

.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover {
  background-color: rbga(0, 0, 0, 0.03);
}

.ui-state-default.ui-state-active {
  background-color: transparent;
  color: #fff;
}

.ui-datepicker-current-day {
  position: relative;
}

.ui-datepicker-current-day::after {
  content: '';
  display: block;
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  z-index: -1;
  background-color: #ff1ea4;
  color: #fff;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}


.ui-datepicker-calendar .ui-state-hover {
  position: relative;
  background-color: transparent;
}

.ui-datepicker-calendar .ui-state-hover::after {
  content: '';
  display: block;
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.03);
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.ui-widget-header {
  background-color: #fff;
  border: 0;
}

.ui-datepicker .ui-datepicker-header {
  padding: 10px 0 5px 0;
}

.ui-widget-header .ui-icon {
  background-image: none;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.ui-datepicker .ui-datepicker-prev.ui-state-hover,
.ui-datepicker .ui-datepicker-next.ui-state-hover {
  border: 0;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.03);
}

.ui-datepicker .ui-datepicker-prev {
  left: 8px;
}

.ui-datepicker .ui-datepicker-next {
  right: 8px;
}

.ui-datepicker .ui-datepicker-prev::after {
  font-family: 'Material Icons';
  content: '\e5de';
  color: #000;
}

.ui-datepicker .ui-datepicker-next::after {
  font-family: 'Material Icons';
  content: '\e5df';
  color: #000;
}

/* preloader */

#swi-preloader-wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  background-color: #fff;
  display: none;
  opacity: 0.5;
  z-index: 999999999;
}

#swi-msf-splash {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(40deg, rgba(255,30,164,1) 0%, rgba(255,223,64,1) 100%);
  z-index: 999999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* animation: swi-splash-animation 2s forwards; */

}

#swi-splash-logo {
  width: 100px;
  /* margin-bottom: 10px; */
  transition: width 1s;
  animation: swi-splash-icon-float-animation 2s infinite alternate;
  transform-origin: center;
}

#swi-splash-logo.swi-splash-logo-scaled {
  width: 100vw;
}

.swi-splash-text {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

@keyframes swi-splash-icon-heartbeat-animation {
  to {
    transform: scale(1.4);
  }
}

@keyframes swi-splash-icon-float-animation {
	0% {
		transform: translateY(-20px);
	}
  25% {
    transform: translateY(0px);
  }
	50% {
		transform: translateY(-20px);
	}
  75% {
    transform: translateY(0px);
  }
	100% {
		transform: translateY(-20px);
	}
}

#swi-splash-loader {
  position: fixed;
  width: 100vw;
  height: 4px;
  background: rgba(255,255,255,0.5);
  top: 0;
  left: 0;
  z-index: 9999999999;
  display: block;
}

.swi-splash-loader-inner {
  background: #fff;
}

.swi-splash-loader-inner::before {
  content: '';
  /* display: block;
  width: 60%;
  height: 4px; */
  height: 4px;
  background: #fff;
  will-change: left, right;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  -webkit-animation: test 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
  animation: test 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;

}

.swi-splash-loader-inner::after {
  content: '';
  /* display: block;
  width: 60%;
  height: 4px; */
  height: 4px;
  background: #fff;
  will-change: left, right;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  -webkit-animation: test2 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  animation: test2 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

.del-price{
  font-weight: normal;
  font-size: 15px;
  margin-right: 10px;
  color: rgba(0,0,0,0.6);
}

@-webkit-keyframes test {
  0% {
    left: -35%;
    right: 100%; }
  60% {
    left: 100%;
    right: -90%; }
  100% {
    left: 100%;
    right: -90%; }
  }


@keyframes test {
  0% {
    left: -35%;
    right: 100%; }
  60% {
    left: 100%;
    right: -90%; }
  100% {
    left: 100%;
    right: -90%; }
  }
  @-webkit-keyframes test2 {

    0% {
      left: -200%;
      right: 100%; }
    60% {
      left: 107%;
      right: -8%; }
    100% {
      left: 107%;
      right: -8%; }
  }
@keyframes test2 {

  0% {
    left: -200%;
    right: 100%; }
  60% {
    left: 107%;
    right: -8%; }
  100% {
    left: 107%;
    right: -8%; }
}



@keyframes swi-splash-animation {
	0%, 85% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes swi-splash-animation {
	0%, 85% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}


/* general */

.swi-msf-wrapper {
  display: flex;
}

.swi-msf-sidebar {
  box-shadow: 0px 0 10px -2px rgba(0, 0, 0, 0.1);
  height: 100vh;
  padding-right: 30px;
  z-index: 9999;
  display: none;
}



/* logo */

.swi-msf-sidebar-logo {
  width: 130px;
  margin: 30px 0 50px 30px;
  padding: 0;
}

/* nav tab */
.swi-msf-sidebar-nav > ul > li > a {
  display: block;
}
.swi-msf-sidebar-nav-tab {
  background-color: #ffffff;
  box-shadow: none;
  color: #dfdfdf;
}

.swi-msf-sidebar-nav-tab > i,
.swi-msf-sidebar-nav-tab-active > i {
  margin-right: 10px;
}

.swi-msf-sidebar-nav-tab-active {
  background-color: rgba(255, 30, 164, 0.07);
  box-shadow: none;
  color: #ff1ea4;
}

.swi-msf-sidebar-nav-tab,
.swi-msf-sidebar-nav-tab-active {
  justify-content: left;
  padding: 0 30px;
  pointer-events: none;
}

/* form area */

.swi-msf-form {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.swi-msf-form-main-content-wrapper {
  height: 100vh;
  padding: 80px 30px 250px 30px;
  overflow: auto;
}

.swi-msf-form-main-content-inner-wrapper {
  width: 100%;
}

.swi-msf-logo-mobile {
  width: 50px;
  margin: 0 15px 0 0;
}

.swi-msf-form-header {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  padding: 20px 30px 20px 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.swi-msf-form-header-title {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  color: #000;
}

.swi-msf-form-header-step {
  padding: 0 15px;
  font-size: 12px;
}

.swi-msf-form-main-header {
  margin-top: 20px;
  margin-bottom: 30px;
}

.swi-msf-form-main-header-wrapper {
  display: flex;
  align-items: center;
  margin: 0;
}

.swi-msf-form-main-header-img {
  width: 45px;
  margin: 0 20px 0 0;
}

.swi-msf-form-main-header-text > * {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.swi-msf-steps {
  display: none;
}

.swi-msf-cart-btn {
  margin-left: auto;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  margin-right: 0;
}

.swi-msf-cart-btn i {
  color: #ff1ea4;
}

.swi-msf-cart-btn span {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  display: none;
}

.swi-msf-form-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9998;
  background-color: #fff;
  width: 100%;
  padding: 0 30px 0 30px;
}

.swi-msf-form-footer-inner-wrapper {
  border-top: 1px solid #dedede;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.swi-msf-step {
  display: flex;
  align-items: center;
}

.swi-msf-step-circle {
  width: 24px;
  height: 24px;
  display: inline-block;
  background-color: #fff;
  outline: 2px solid #dedede;
  border-radius: 50%;
}

.swi-msf-step-circle.swi-msf-step-circle-active {
  background-color: #ff1ea4;
  outline: 2px solid #ff1ea4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
}

.swi-msf-step-circle.swi-msf-step-circle-completed {
  outline: 1px solid #dedede;
  background-color: #dedede;
}

.swi-msf-step-circle.swi-msf-step-circle-completed > i {
  color: #fff;
}

/* non ubo ui */
.swi-msf-step::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #dedede;
  display: inline-block;
}
/* non ubo ui */

.swi-msf-step:last-child::after {
  display: none;
}

/* forms */

.swi-msf-form-rows {
  display: flex;
  flex-direction: column;
}

.swi-msf-form-rows:last-child {
  margin-bottom: 0;
}

.swi-msf-form-rows.swi-msf-form-rows-slider {
  flex-direction: column;
  margin-bottom: 0;
}

.swi-msf-form-rows.swi-msf-form-rows-slider.swi-msf-form-rows-phone {
  flex-direction: row;
}


.swi-msf-form-rows.swi-msf-form-rows-slider > .swi-input-wrapper {
  width: 100%;
}

.swi-msf-form-rows.swi-msf-form-rows-slider > .swi-input-wrapper.swi-input-country-code {
  width: 50%;
  margin-right: 15px;
}

.swi-msf-form-rows.swi-msf-form-rows-slider > .swi-input-wrapper.swi-input-contact-no {
  width: calc(50% - 15px);
}

.swi-msf-form-rows.swi-msf-form-rows-phone {
  flex-direction: row;
}

.swi-input-wrapper {
  margin: 0 0 10px 0 !important;
  width: 100%;
  position: relative;
}

.swi-input-wrapper.swi-input-wrapper-upload-checkbox {
  margin-right: 20px !important;
}

.swi-input-wrapper.swi-input-country-code {
  width: 50%;
  margin-right: 15px !important;
}

.swi-input-wrapper.swi-input-contact-no {
  width: 50%;
}


/* select 2 */

.swi-input-phone {
  position: relative;
}

.swi-input-phone > .select2-container {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 70px !important;
  z-index: 9998;
}

.swi-input-phone > .select2-container .select2-selection {
  border: 0;
  background: transparent;
}

.select2-results__option,
.select2-selection__rendered {
  text-transform: uppercase !important;
}

.select2-selection__rendered {
  padding: 0 !important;
}

.select2-selection__placeholder {
  text-transform: capitalize !important;
}

.swi-input-phone > .select2-container .select2-selection__arrow {
  display: none;
}

.select2-search {
  padding: 10px !important;
}

.select2-search__field {
  border: 1px solid #dfdfdf !important;
  border-radius: 3px;
}

.select2-search__field:focus {
  outline: 0 !important;
  border: 2px solid #ff1ea4 !important;
  border-radius: 3px;
}

.select2-dropdown {
  border: 1px solid #dfdfdf;
  border-top: 1px solid #dfdfdf !important;
  border-bottom: 1px solid #dfdfdf !important;
  border-top-right-radius: 5px !important;
  border-top-left-radius: 5px !important;
  border-radius: 5px;
  z-index: 9999 !important;
}

.select2-results__option--highlighted {
  background: #ff1ea4 !important;
}

.swi-select2-dropdown-class {
  width: 300px !important;
  min-width: 300px !important;
  max-width: 500px !important;
}


.swi-input-phone > .swi-input {
  padding-left: 90px !important;
}

.swi-input-phone > .swi-phone-label {
  left: 90px !important;
}

.swi-input-phone > .swi-phone-label.active {
  left: 16rem !important;
}

.swi-country-code-text {
  padding-left: 5px;
  font-weight: 500;
  font-size: 15px;
}

.swi-select2-select {
  width: 100% !important;
}

.swi-select2-input-wrapper .select2-container {
  width: 100% !important;
}

.swi-select2-input-wrapper .select2-selection {
  height: 56px !important;
  border: 1px solid #dfdfdf !important;
  border-radius: 5rem !important;
}

.swi-select2-input-wrapper .select2-selection.invalid {
  border-color: #f00 !important;
}

.swi-select2-input-wrapper .select2-selection__arrow {
  display: none !important;
}

.swi-select2-input-wrapper .select2-selection__rendered {
  padding: 15px 47px 15px 15px !important;
  font-size: 16px !important;
  color: #000 !important;
  font-weight: 500 !important;
}

.swi-hide-for-sg {
  display: none;
}

.swi-required-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: #ff1ea4;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  z-index: 9998;
}

.swi-required-dot.swi-required-dot-invalid {
  background-color: #f00;
}

.swi-tooltip {
  color: #ff1ea4 !important;
  z-index: 9998 !important;
  padding: 30px;
}

.swi-input {
  width: 100% !important;
  font-weight: 500;
  position: relative;
}

.swi-input-loader {
  width: 20rem;
  height: 20rem;
  border: 2px solid #ff1ea4;
}

.swi-file-input {
  position: absolute !important;
  opacity: 0 !important;
  width: 100%;
  height: 100% !important;
  display: block;
  /* visibility: hidden; */
}

.swi-file-input-wrapper.swi-file-input-disabled::after {
  content: "";
  display: block;
  width: 100%;
  height: 56px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #dedede;
  opacity: 0.5 !important;
  cursor: not-allowed;
}

.swi-file-input-wrapper.swi-file-input-invalid::after {
  content: "";
  display: block;
  width: 100%;
  height: 56px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #f00;
  opacity: 1 !important;
  cursor: pointer;
}

.swi-file-input-wrapper.swi-myinfo-biz-highlight::after {
  content: "";
  display: block;
  width: 100%;
  height: 56px;
  background-color: #fff;
  border-radius: 5px;
  border: 2px solid #ff1ea4;
  opacity: 1 !important;
  cursor: pointer;
}

.swi-file-input-wrapper.swi-file-input-disabled > .swi-file-input {
  cursor: not-allowed;
}

.swi-file-input-wrapper {
  position: relative;
}

.swi-file-input-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  height: 56px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #dedede;
  opacity: 1 !important;
  cursor: pointer;
}


.swi-file-input-label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 500;
  color: #959595;
  pointer-events: all;
  /* z-index: -1; */
}

.swi-file-upload-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ff1ea4;
}

.swi-select {
  font-weight: 500;
}

.swi-radio {
  padding-top: 30px;
  padding-bottom: 30px;
  width: 100%;
}

.swi-radio-wrapper {
  margin-bottom: 30px;
}

.swi-radio-wrapper > .swi-radio {
  width: initial;
  padding: 0;
  margin-bottom: 20px;
  margin-right: 10px;
  margin-left: 0;
}

.swi-radio-wrapper > .swi-radio:last-child {
  margin-left: 0;
}

.swi-radio-text {
  padding-left: 10px !important;
}

.swi-checkbox {
  margin-bottom: 20px;
}

.swi-checkbox-wrapper {
  padding: 0 8px;
  margin-bottom: 20px;
  margin-top: 10px;
}

.swi-checkbox-wrapper .swi-msf-form-rows > .swi-checkbox:first-child {
  margin-right: 30px;
}

.swi-checkbox-wrapper .swi-msf-form-rows > .swi-checkbox {
  margin-left: 0;
}

.swi-checkbox-wrapper.swi-checkbox-wrapper-share-assign {
  margin-bottom: 0;
  margin-top: 0;
}

.swi-checkbox-text {
  padding-left: 10px !important;
  white-space: normal !important;
}

.swi-description-tooltip {
  color: #ff1ea4;
}

/* ubo ui */
/* .swi-add-corp-share-btn, */
/* ubo ui */
.swi-add-dir-share-btn {
  background-color: rgba(238, 238, 238, 0.2);
  margin: 0 0 20px 0;
  width: 100%;
  height: 200px;
  box-sizing: border-box;
  color: #808080;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  border: 1px solid #dedede;
  transition: border linear 100ms;
}

/* ubo ui */
/* .swi-add-corp-share-btn:hover, */
/* ubo ui */
.swi-add-dir-share-btn:hover {
  box-shadow: 0 2rem 2rem 0 rgba(0, 0, 0, 0.07),
    0 1rem 5rem 0 rgba(0, 0, 0, 0.07), 0 3rem 1rem -2rem rgba(0, 0, 0, 0.07);
  border-color: #fff;
}

/* ubo ui */
/* .swi-add-corp-share-btn > i, */
/* ubo ui */
.swi-add-dir-share-btn > i {
  width: initial;
  font-size: 40px;
  margin-bottom: 10px;
}

#swi-myinfo-personal-btn,
#swi-myinfo-business-btn{
  display: inline-block;
  margin-bottom: 30px;
}

#swi-myinfo-personal-btn.swi-myinfo-hidden {
  display: none !important;
}

.swi-hide-for-reupload.swi-reupload-hidden {
  display: none !important;
}

/* ubo ui */
/* .swi-corp-shareholder-table, */
/* ubo ui */
.swi-dir-share-table {
  border: 1px solid #dedede;
  border-radius: 5px;
  background-color: #fff;
  margin-bottom: 20px;
  display: none;
}

/* ubo ui */
/* .swi-corp-shareholder-table.swi-corp-shareholder-table-review, */
/* ubo ui */
.swi-dir-share-table.swi-dir-share-table-review {
  display: block;
}

/* ubo ui */
/* .swi-corp-shareholder-table > .swi-details:last-child, */
/* ubo ui */
.swi-dir-share-table > .swi-details:last-child {
  border-bottom: 0;
}

/* ubo ui */
/* .swi-corp-shareholder-table > .swi-details:hover, */
/* ubo ui */
.swi-dir-share-table > .swi-details:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.swi-details {
  background-color: transparent;
  box-shadow: none;
  margin: 0 !important;
  border-bottom: 1px solid #dedede;
  border-radius: 0;
  cursor: pointer;
}

.swi-summary {
  margin-bottom: 15px;
}

.swi-summary-btns {
  display: flex;
}

.swi-summary-btns > i {
  color: #ff1ea4;
}

.swi-summary-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}


/* ubo ui */
/* .swi-edit-corp-share,
.swi-delete-corp-share, */
/* ubo ui */
.swi-edit-btn,
.swi-delete-btn {
  background-color: transparent;
  box-shadow: none;
  padding: 2px;
}

/* ubo ui */
/* .swi-edit-corp-share, */
/* ubo ui */
.swi-edit-btn {
  color: #808080;
}

/* ubo ui */
/* .swi-delete-corp-share, */
/* ubo ui */
.swi-delete-btn {
  color: #ff1ea4;
}

.swi-company-member-details {
  display: flex;
  flex-direction: column;
}

.swi-company-member-details-item {
  width: 100%;
  margin-bottom: 30px;
}

.swi-company-member-details-icon {
  color: #808080;
  margin-right: 10px;
}

/* ubo ui */
/* .swi-add-more-corp-share-btn-text, */
/* ubo ui */
.swi-add-more-dir-share-btn-text {
  margin-left: 10px !important;
}

.swi-company-member-details-title {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.swi-company-member-details-content {
  font-size: 14px;
  margin: 0;
}

.swi-share-information-table {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 5px;
  margin-bottom: 20px;
}

.swi-msf-share-info-rows {
  padding: 30px 20px;
  border-bottom: 1px solid #dedede;
}

.swi-msf-share-info-rows:last-child {
  border-bottom: 0;
}

.swi-msf-share-info-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}

.swi-msf-share-info-details {
  display: flex;
  flex-direction: column;
}

.swi-msf-share-info-details .swi-checkbox:first-child {
  margin-right: 20px;
  margin-bottom: 10px;
}

.swi-msf-share-info-details .swi-checkbox:last-child {
  margin-bottom: 0;
}

/* ubo ui */
/* .swi-add-more-corp-share-btn, */
/* ubo ui */
.swi-add-more-dir-share-btn {
  background-color: #fff;
  box-shadow: none;
  color: #7f1eff;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.swi-share-info-footer {
  padding: 20px 0;
}

.swi-share-info-total-share {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swi-share-info-total-share-icon {
  color: #808080;
  margin-right: 10px;
}

.swi-share-info-total-share-text {
  color: #808080;
  font-weight: 500;
}

.swi-share-info-total-share.swi-share-info-pass .swi-share-info-total-share-icon {
  color: #4caf50;
}

.swi-share-info-total-share.swi-share-info-pass .swi-share-info-total-share-text {
  color: #4caf50;
}

.swi-share-info-total-share.swi-share-info-error .swi-share-info-total-share-icon {
  color: #e91e63;
}

.swi-share-info-total-share.swi-share-info-error .swi-share-info-total-share-text {
  color: #e91e63;
}

.swi-review-simple-info-table {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #dedede;
  margin-bottom: 30px;
}

.swi-review-simple-info-table-row {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-bottom: 1px solid #dedede;
}

.swi-review-simple-info-table-row:last-child {
  border-bottom: 0;
}

.swi-review-simple-info-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}

.swi-review-simple-info-content {
  margin: 0;
  color: #808080;
}

.swi-msf-form-sub-header {
  font-size: 16px;
  font-weight: 600;
}

.swi-msf-form-sub-header > i {
  margin-left: 0;
  margin-right: 10px;
  color: inherit;
}

.swi-msf-form-description {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 10px;
  margin-top: 0;
}

.swi-msf-form-description.swi-small-text {
  font-size: 10px;
}

.swi-msf-link {
  color: #7f1eff;
  font-weight: 500;
}

.swi-msf-form-back-prev-buttons {
  /* res margin-left: auto; */
  display: flex;
  flex: 1;
}

.swi-msf-form-prev {
  background-color: rgba(255, 30, 164, 0.07);
  box-shadow: none;
  color: #ff1ea4;
  border-radius: 5px;
  /* res width: 70px; */
  width: 50%;
  margin-right: 10px;
  margin-left: 0;
}

.swi-msf-form-next {
  background-color: #ff1ea4;
  box-shadow: none;
  color: #fff;
  border-radius: 5px;
  /* res width: 70px; */
  width: 50%;
  margin-left: 0;
  margin-right: 0;
}

.swi-plan-select-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #dedede;
  width: 100%;
  padding: 0 15px;
  border-radius: 4px;

  margin-bottom: 20px;
}

.swi-plan-select-wrapper.swi-plan-select-wrapper-active {
  border-color: transparent;
  /* border: 2px solid #ff1ea4; */
  border: none;
  background-color: #EFCFD4;
  transform: translateZ(0);
}

.swi-plan-select-price {
  margin-bottom: 0;
  margin-left: auto;
  font-weight: 600;
  font-size: 16px;
}

/* slider */

.swi-msf-overlay {
  position: fixed;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity linear 200ms;
}

.swi-msf-slider {
  background-color: #fff;
  position: fixed;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: transform linear 200ms;
  box-shadow: 0px 0 10px 2px rgba(0, 0, 0, 0.1);
}

.swi-msf-slider.swi-msf-slider-open {
  transform: translateX(0);
}

.swi-msf-slider-header {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  border-bottom: 1px solid #dedede;
  display: flex;
  align-items: center;
  padding: 10px 0 10px 30px;
  z-index: 999999999 !important;
}

.swi-msf-slider-header-text {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.swi-msf-slider-header-text > i {
  color: #ff1ea4;
  margin-right: 10px;
}

.swi-msf-slider-close-btn {
  margin-left: auto;
  background-color: #fff;
  box-shadow: none !important;
  color: #808080;
}

.swi-msf-slider-close-btn:hover {
  background-color: #dedede;
}

.swi-msf-slider-main-content {
  padding: 70px 0 200px 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
}

.swi-cart-item {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid #dedede;
  display: flex;
  flex-direction: column;
}

.swi-cart-item:last-child {
  border-bottom: 0;
}

.swi-cart-item-name {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.swi-cart-item-name > i {
  color: #7f1eff;
  font-size: 25px;
  width: 25px;
  margin-right: 15px;
}

.swi-cart-item-cost {
  color: #808080;
  font-size: 14px;
}

.swi-cart-empty-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.swi-cart-empty-icon {
  font-size: 96px;
  width: 96px;
  color: #959595;
  margin-bottom: 20px;
}

.swi-cart-empty-text {
  font-size: 16px;
  font-weight: 500;
  color: #959595;
}

.swi-msf-slider-main-content {
  padding: 100px 30px 200px 30px;
}

.swi-msf-slider-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  border-top: 1px solid #dedede;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  z-index: 10000;
}

.swi-msf-slider-footer-text {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.swi-msf-slider-footer-text i {
  margin-right: 10px;
  color: #808080;
}

.swi-msf-cart-subtotal {
  margin-left: auto;
  font-weight: 600;
  font-size: 20px;
}

.swi-msf-slider-footer-btns {
  display: flex;
  flex: 1;
}

.swi-msf-slider-footer-btn {
  /* uncomment if need 2 btns */
  /* width: 50%; */
  width: 100%;
  margin: 0;
}

/* uncomment if need 2 btns */

/* .swi-msf-slider-footer-btn:nth-child(odd) {
  margin-right: 15px;
} */

.swi-file-uploaded-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 15px 0;
  border-radius: 5px;
  border: 1px solid #dedede;
  color: #7f1eff;
  font-weight: 500;
  margin-bottom: 20px;
}

.swi-file-uploaded-link::before {
  content: "attach_file";
  font-family: "Material Icons";
  font-size: 22px;
  margin-right: 5px;
}

#swi-file-reupload-btn {
  background-color: #7f1eff;
  border-radius: 5px;
  color: #fff;
  box-shadow: none;
  padding: 5px 0;
}

/* stripe */

.swi-stripe {
  padding: 20px 15px;
  display: block;
  width: 100%;
  background-color: #fff;
  height: 56px !important;
  border-radius: 5px !important;
  border: 1px solid #dfdfdf !important;
  position: relative;
}

.swi-stripe::after {
  content: '';
  display: block;
  position: absolute;
  top: -2px !important;
  left: auto !important;
  right: -2px !important;
  background-color: #ff1ea4;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  z-index: 9998 !important;
}

.swi-stripe.swi-stripe-focused {
  border: 2px solid #ff1ea4 !important;
  outline: 0;
}

#swi-stripe-badge {
  margin-bottom: 20px;
  width: 100%;
  max-width: 388px;
  height: auto;
}

#name,
#company_name,
#primary_ssic_code,
#secondary_ssic_code,
#financial_month,
#financial_year,
#working_hour,
#capital_currency,
#nricno,
#identity_type,
#existing_corp_sec_name,
#existing_nominee_name{
  text-transform: uppercase;
}

#address_line_1 {
  text-transform: uppercase;
}

.swi-payment-success-wrapper {
  background-image: url("../img/swi-payment-success-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.swi-payment-success-inner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 50px 40px;
  width: 90%;
  border-radius: 20px;
  box-shadow: 0px 0 10px -2px rgba(0, 0, 0, 0.3);
}

.swi-payment-success-inner-wrapper img {
  width: 60px;
  margin-bottom: 15px;
}

.swi-payment-success-inner-wrapper h1 {
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 25px;
  text-align: center;
}

.swi-payment-success-inner-wrapper p {
  margin-bottom: 20px;
  margin-top: 0;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}

.swi-payment-success-inner-wrapper a {
  font-size: 16px;
  text-decoration: none;
  color: #7f1eff;
  font-weight: 600;
}

.swi-payment-table {
  width: 100%;
}

.swi-payment-info-row {
  display: flex;
  margin-bottom: 15px;

}

.swi-payment-info-row > h6 {
  font-weight: 500;
  color: #000;
  font-size: 14px;
  margin-bottom: 0;
}

.swi-payment-info-row > span {
  margin-left: auto;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}

.swi-payment-info-footer {
  display: flex;
  align-items: baseline;
  padding-top: 15px;
  border-top: 1px solid #dedede;

}

.swi-payment-info-footer > h6 {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.swi-payment-info-footer > h6 > i {
  margin-right: 10px;
  color: #a5a5a5;
}

.swi-payment-info-footer > h6 > span {
  font-size: 16px;
  font-weight: 300;
}

.swi-payment-info-footer > span {
  font-size: 25px;
  font-weight: 600;
  color: #000;
  margin-left: auto;
}

.swi-promocode-result{
  margin-top: 18px;
}

.swi-demo-photo-btn {
  width: 100%;
  height: 100%;
  position: absolute;
  box-sizing: border-box;
  left: 0;
  top: 0;
  z-index: 9999;
  opacity: 0;
  margin: 0;
}

.swi-msf-grid-list {
  display: flex;
  flex-direction: column;
}

.swi-msf-grid-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;

}

.swi-msf-grid-list-item-text {
  white-space: nowrap;
}

.swi-msf-grid-list-icon {
  background-color: #7f1eff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.swi-msf-grid-list-icon i {
  color: #fff;
  font-size: 18px;
  
}

.swi-msf-grid-list-text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.9)
}

.swi-msf-grid-list-item-tooltip {
  color: #7f1eff;
  margin-left: 5px;
}

.swi-msf-grid-list-item-tooltip {
  font-size: 18px;
}

.swi-msf-grid-list-divider-mobile {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}

.swi-msf-grid-list-divider-text {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}

.swi-msf-grid-list-divider-line {
  margin-left: 10px;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  border: 0;
}

.swi-msf-col-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.swi-msf-col-50 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-between;
  border: 1px solid #DFDFDF;
  border-radius: 5px;
  padding: 15px;
}

.swi-img-header {
  align-items: center;
  margin-bottom: 15px;
}

.swi-img-header-img {
  margin-left: 0;
  margin-right: 15px;
  height: 60px;
}

.swi-img-header-logo {
  height: 14px;
  margin: 0;
  position: relative;
  top: 1px;
}

.swi-img-header-text {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0;
  white-space: nowrap;
  display: inline;
}

.swi-msf-sidebar-nav .step-number {
  border-radius: 50%;
  background-color: #DFDFDF;
  height: 20px;
  width: 20px;
  color: white !important;
}

.swi-msf-sidebar-nav .swi-msf-sidebar-nav-tab-active  .step-number {
  background-color: #FF1EA4;
}

.swi-msf-sidebar-nav-tab-active {
  background-color: #EFCFD4;
}

/* ubo ui */
/* .swi-msf-steps {
  border: 1px solid #F81DA4;
  border-radius: 5px;
  height: 40px;
  padding: 5px;
  width: 100%;
  min-width: 1185px;
  max-width: 1185px;
  margin-right: 20px;
}

.swi-msf-steps .swi-msf-step {
  padding: 0 0 0 10px;
}

.swi-msf-steps .swi-msf-step:last-child {
  width: 100%;
  padding-right: 65px;
}

.swi-msf-steps .swi-msf-step:last-child::after {
  content: "";
  position: absolute;
  display: inline-block;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 14px solid transparent;
  border-right: none;
  border-left: 14px solid #F82D9D;
  border-bottom: 14px solid transparent;
  background-color: transparent;
  width: 14px;
}

.swi-msf-steps .swi-step-text {
  font-size: 15px;
  color: white;
}

.swi-msf-steps .swi-progressbar {
  background-image: linear-gradient(to right, #FAC34E, #F82D9D);
  border-radius: 5px 0 0 5px;
}

.swi-msf-steps .swi-rocket {
  height: 22px;
  position: absolute;
  top: 2px;
  right: 0;
}

.swi-step-text.percentage {
    position: absolute;
    right: 30px;
}

.swi-msf-steps .swi-rocket img {
  object-fit: contain;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.swi-msf-steps .swi-msf-step:not(.swi-msf-steps .swi-msf-step:first-child) {
  padding-left: 40px;
}

.swi-msf-steps .swi-msf-step:not(.swi-msf-steps .swi-msf-step:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  display: inline-block;
  border-right: 6px solid white;
  border-bottom: 6px solid white;
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
} */
/* ubo ui */

@media (max-width: 1200px) {
  .swi-promocode-result{
    margin-top: -10px;
    margin-bottom: 40px;
  }
}

#email{
  text-transform: uppercase;
}

@media (min-width: 576px) {
  .swi-msf-cart-btn span {
    display: block;
  }

  .swi-msf-cart-btn:hover {
    outline: 1px solid #dfdfdf;
  }
  .swi-company-member-details {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .swi-company-member-details-item {
    width: 50%;
  }



  .swi-review-simple-info-table-row {
    flex-direction: row;
    align-items: center;
  }

  .swi-review-simple-info-content {
    margin-left: auto;
    padding-left: 15px;
    text-align: right;
  }

  /* overflow modal */

  .swi-overflow-modals {
   max-width: 400px;
 }

 .swi-overflow-modal-header {
   flex-direction: row;
   padding: 20px;
 }

 .swi-overflow-modal-header-icon {
   font-size: 30px;
   width: 30px;
   color: #ff1ea4;
   margin-right: 10px;
 }

 .swi-overflow-modal-header-title {
   margin-bottom: 0 !important;
 }

 .swi-modal-info-list {
   padding-top: 80px;
 }

 .swi-modal-info-list-item {
   flex-direction: row;
   padding: 15px 20px;
 }

 .swi-modal-info-list-item-content {
   margin-left: auto;
   text-align: right;
 }
}

@media (min-width: 768px) {

  .swi-msf-grid-list-divider-mobile {
    display: none;
  }

  .swi-msf-grid-list {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .swi-msf-grid-list-item {
    margin-right: 20px;
  }

  .swi-msf-grid-list-item-with-divider::after {
    content: '/';
    font-size: 70px;
    color: rgba(0, 0, 0, 0.1);
    font-family: initial;
    margin-left: 20px;
  }


  .swi-msf-slider {
    width: 50%;
  }

  .swi-msf-slider-header,
  .swi-msf-slider-footer {
    position: absolute;
    z-index: 9999999999 !important;
  }

  .swi-company-member-details-item {
    width: 30%;
  }

  .swi-overflow-modals {
   max-width: 500px;
   }

 .swi-payment-success-inner-wrapper {
  width: 60%;
  }

  .swi-msf-col-wrapper {
    flex-direction: row;
  }

  .swi-msf-col-50 {
    width: 50%;
  }

  .swi-msf-col-50:first-child {
    margin-right: 15px;
  }
}

@media (min-width: 992px) {
  .swi-msf-sidebar {
    display: block;
  }

  .swi-msf-form-main-content-wrapper {
    padding: 0 50px 147px 50px;
  }

  .swi-msf-logo-mobile {
    display: none;
  }

  .swi-msf-form-header {
    position: static;
    padding: 10px 30px 0 50px;
  }

  .swi-msf-form-header-title,
  .swi-msf-form-header-step {
    font-size: 14px;
  }

  .swi-msf-form-main-header {
    margin-bottom: 10px;
  }

  .swi-msf-form-main-header-img {
    width: 45px;
  }

  .swi-msf-form-main-header-text > * {
    font-size: 20px;
  }

  .swi-msf-cart-btn {
    padding: 0 16rem;
  }

  .swi-msf-form-footer {
    position: absolute;
    padding-left: 50px;
    padding-right: 50px;
  }

  .swi-msf-slider {
    width: 40%;
  }

  .swi-add-dir-share-btn {
    height: 250px;
  }

  .swi-payment-success-inner-wrapper {
  width: 50%;
  }
}

@media (min-width: 1200px) {

  .swi-msf-share-info-details {
    flex-direction: row;
    align-items: center;
  }

  .swi-msf-share-info-details .swi-input-wrapper {
    margin-bottom: 0 !important;
  }

  .swi-msf-share-info-details .swi-checkbox {
    margin-left: 0;
  }

  .swi-msf-share-info-rows .swi-input-wrapper {
    margin-right: 15px !important;
  }

  .swi-msf-form-main-content-wrapper {
    width: 100%;
  }

  .swi-msf-form-rows .field:first-child,
  .swi-msf-form-rows .swi-input-wrapper:first-child {
    margin-right: 15px !important;
  }

  .swi-msf-form-rows {
    flex-direction: row;
    margin-bottom: 15px;
  }

  .swi-input-wrapper {
    width: 50%;
  }

  .swi-input-wrapper.swi-input-country-code {
    width: 20%;
  }
  .swi-input-wrapper.swi-input-contact-no {
    width: calc(30% - 15px);
  }

  .swi-msf-steps {
    display: flex;
  }

  .swi-msf-form-back-prev-buttons {
    flex: none;
    margin-left: auto;
  }

  .swi-msf-form-prev,
  .swi-msf-form-next {
    width: 80px;
  }

  .swi-msf-slider {
    width: 30%;
  }

  .swi-plan-select-wrapper {
    width: 50%;
  }

  .swi-plan-select-wrapper:first-child {
    margin-right: 15px;
  }

  .swi-plan-select-wrapper:last-child {
    margin-right: -15px;
  }

  .swi-input-wrapper:last-child {
    margin-right: -15px !important;
  }

  .swi-payment-success-inner-wrapper {
    width: 30%;
  }

  .swi-payment-table {
    width: 60%;
  }

}

@media (min-width: 1500px) {
  .swi-msf-form-main-content-wrapper {
    padding-right: 0;
  }
  .swi-msf-form-main-content-inner-wrapper {
    width: 60%;
  }

  .swi-cart-item {
    flex-direction: row;
  }

  .swi-cart-item-name {
    margin-bottom: 0;
  }

  .swi-cart-item-cost {
    font-size: 16px;
    margin-left: auto;
  }

  .swi-payment-success-inner-wrapper {
    width: 25%;
  }
}
