/*

=============================================
GLOBAL STYLING
=============================================

*/

@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;
  outline: none;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

input,
select,
textarea {
  -webkit-appearance: none;
}

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

/* Change the white to any color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  box-shadow: 0 0 0 30px white inset !important;
}

/* Chrome, Safari, Edge, Opera */
/* HIDE NUMBER INPUT ARROW */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Firefox  */
/* HIDE NUMBER INPUT ARROW */
input[type="number"] {
  -moz-appearance: textfield;
}

/* cs comment added this to keep all Name and Address inpiit Capital letter*/
input[type="text"] {
  text-transform: uppercase;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(0, 0, 0, 0.3);
  opacity: 1; /* Firefox */
  text-transform: inital;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(0, 0, 0, 0.3);
  text-transform: inital;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(0, 0, 0, 0.3);
  text-transform: inital;
}

::-webkit-input-placeholder {
  /* Microsoft Edge */
  color: rgba(0, 0, 0, 0.3);
  text-transform: inital;
}

option[disabled] {
  color: rgba(0, 0, 0, 0.2);
}

.swi-txt-blue {
  color: #1c7eff !important;
}

.swi-bg-blue {
  background: #1c7eff;
}

.swi-txt-grey-60 {
  color: rgba(0, 0, 0, 0.6);
}

.swi-txt-grey-30 {
  color: rgba(0, 0, 0, 0.3);
}

.swi-txt-grey-13 {
  color: rgba(0, 0, 0, 0.13);
}

.swi-cursor-normal {
  cursor: default;
}

label.error {
  color: #f00;
  padding-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 400;
  display: block;
}

label.error.swi-checkbox-error {
  position: static;
}

.swi-required {
  color: #1c7eff;
}

#swi-pre-loader {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  pointer-events: none;
}

#swi-pre-loader.swi-pre-loader-visible {
  opacity: 0.5;
  transition: opacity 300ms linear;
  pointer-events: initial;
}

#swi-pre-loader-progress {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}

#swi-pre-loader-progress.swi-pre-loader-progress-visible {
  opacity: 1;
  transition: opacity 300ms linear;
  pointer-events: initial;
}

.swi-pre-loader-progress-inner-wrapper {
  position: relative;
  height: 3px;
  display: block;
  width: 100%;
  background-color: #e7f2ff;
  border-radius: 2px;
  background-clip: padding-box;
  overflow: hidden;
}

.swi-pre-loader-progress-inner {
  background-color: #1c7eff;
}

.swi-pre-loader-progress-inner::before{
  content: '';
  position: absolute;
  background-color: inherit;
  top: 0;
  left: 0;
  bottom: 0;
  will-change: left, right;
  -webkit-animation: swi-pre-loader-progress 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
          animation: swi-pre-loader-progress 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.swi-pre-loader-progress-inner::after {
  content: '';
position: absolute;
background-color: inherit;
top: 0;
left: 0;
bottom: 0;
will-change: left, right;
-webkit-animation: swi-pre-loader-progress-2 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
        animation: swi-pre-loader-progress-2 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
-webkit-animation-delay: 1.15s;
        animation-delay: 1.15s;
}

@-webkit-keyframes swi-pre-loader-progress {
  0% {
    left: -35%;
    right: 100%; }
  60% {
    left: 100%;
    right: -90%; }
  100% {
    left: 100%;
    right: -90%; }
}
@keyframes swi-pre-loader-progress {
  0% {
    left: -35%;
    right: 100%; }
  60% {
    left: 100%;
    right: -90%; }
  100% {
    left: 100%;
    right: -90%; }
}
@-webkit-keyframes swi-pre-loader-progress-2 {
  0% {
    left: -200%;
    right: 100%; }
  60% {
    left: 107%;
    right: -8%; }
  100% {
    left: 107%;
    right: -8%; }
}
@keyframes swi-pre-loader-progress-2 {
  0% {
    left: -200%;
    right: 100%; }
  60% {
    left: 107%;
    right: -8%; }
  100% {
    left: 107%;
    right: -8%; }
}

/*

=============================================
TOASTR NOTI STYLE
=============================================

*/

#toast-container.toast-bottom-center > div,
#toast-container.toast-top-center > div {
  width: 100% !important;
}

/*

=============================================
MODAL STYLING
=============================================

*/

.swi-modal-header {
  font-size: 0.875rem;
  font-weight: 600;
}

.swi-modal-line-list > li{
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
  padding: 1rem 0;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.13);
}

.swi-modal-line-list > li > sup {
  padding-left: 0.3125rem;
}

.swi-modal-footnote > li {
  color: rgba(0, 0, 0, 0.3);
  font-size: 0.75rem;
}

.swi-modal-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.modal-backdrop {
  background: #fff !important;
}

.swi-modals p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
}

/*

=============================================
MSF WRAPPER
=============================================

*/

.swi-msf-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.swi-msf-wrapper p,
.swi-msf-wrapper ol > li {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.625rem;
}

/*

=============================================
MSF HEADER
=============================================

*/
.swi-msf-header {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.13);
  position: relative;
  z-index: 999;
}

.swi-logo-wrapper {
  display: flex;
  align-items: center;
}

.swi-logo {
  width: 3rem;
}

.swi-logo-header {
  font-weight: 600;
  font-size: 1.2rem;
  margin-left: 0.625rem;
  position: relative;
}

.swi-msf-plan-txt {
  font-weight: 400;
  font-size: 0.75rem;
  color: #1c7eff;
  position: absolute;
  top: -0.3125rem;
  left: 102%;
  /* right: -2.3rem; */
}

/*

=============================================
MSF HEADER CART
=============================================

*/

.swi-msf-cart-btn {
  border-style: none;
  background-color: transparent;
  margin-left: auto;
  display: flex;
  align-items: center;
  border-radius: 30.1875rem;
}

.swi-msf-cart-btn span {
  font-weight: 600;
  margin-left: 0.3125rem;
}

.swi-msf-cart-btn:focus {
  outline: none;
}

.swi-msf-cart-btn:hover img {
  transform: scale(1.15, 1.15);
  -webkit-animation: jiggle 0.5s infinite linear;
  animation: jiggle 0.5s infinite linear;
}

.swi-msf-cart-overlay-wrapper {
  position: absolute;
  top: 78.42px;
  left: 0;
  z-index: 999;
  width: 100%;
  height: calc(100vh - 78.42px);
  pointer-events: none;
}

.swi-msf-cart-overlay-wrapper.swi-enable-pointer-event {
  pointer-events: initial;
}

.swi-msf-cart-overlay {
  position: fixed;
  top: 78.42px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 78.42px);
  background-color: #000;
  z-index: -1;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

.swi-msf-cart-overlay.swi-msf-cart-overlay-open {
  opacity: 0.1;
}

.swi-msf-cart-sidebar {
  width: 18.75rem;
  height: inherit;
  background-color: #fff;
  position: fixed;
  top: 78.42px;
  right: -18.75rem;
  overflow: auto;
  -webkit-overflow-scrolling: auto;
  transition: right 300ms ease-in-out;
}

.swi-msf-cart-sidebar.swi-msf-cart-open {
  right: 0;
}

.swi-msf-cart-sidebar h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.swi-msf-cart-details h4 {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.625rem;
}

.swi-msf-cart-details p {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}

.swi-msf-cart-total-wrapper {
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.13);
  padding-top: 1.25rem;
  display: flex;
}

.swi-msf-cart-total-wrapper h5 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
}

.swi-msf-cart-total {
  margin-left: auto;
  font-size: 1.25rem;
  font-weight: 600;
}

.swi-cart-summary-payment {
  padding: 1.875rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.13);
  border-radius: 0.1875rem;
}

.swi-cart-summary-payment-total-wrapper {
  padding-top: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  padding-top: 1.875rem;
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.13);
}

.swi-cart-summary-payment-total-wrapper h4 {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  font-size: 0.75rem;
}

.swi-cart-summary-payment-total {
  font-size: 1.8rem;
  font-weight: 600;
  margin-left: auto;
  line-height: 1.8rem;
}

.swi-msf-payment-method {
  width: 9.375rem;
}

@-webkit-keyframes jiggle {
  0% {
    transform: rotate(0deg) scale(1.15, 1.15);
  }

  50% {
    transform: rotate(4deg) scale(1.15, 1.15);
  }

  100% {
    transform: rotate(-4deg) scale(1.15, 1.15);
  }
}

@keyframes jiggle {
  0% {
    transform: rotate(0deg) scale(1.15, 1.15);
  }

  50% {
    transform: rotate(4deg) scale(1.15, 1.15);
  }

  100% {
    transform: rotate(-4deg) scale(1.15, 1.15);
  }
}

/*

=============================================
MSF PROGRESS BAR
=============================================

*/

.swi-msf-progress {
  display: block;
  height: 0.125rem;
  background: rgb(141, 255, 192);
  background: linear-gradient(
    90deg,
    rgba(141, 255, 192, 1) 0%,
    rgba(28, 126, 255, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8dffc0",endColorstr="#1c7eff",GradientType=1);
  position: absolute;
  bottom: -0.0625rem;
  left: 0;
}

/*

=============================================
MSF SIDEBAR
=============================================

*/

.swi-msf-sidebar {
  border-right: 0.0625rem solid rgba(0, 0, 0, 0.13);
  height: 100vh;
}

.swi-msf-steps li {
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.swi-msf-steps li.active {
  color: #000;
  font-weight: 600;
  position: relative;
}

.swi-msf-steps li.done {
  color: #1c7eff;
  font-weight: 500;
  position: relative;
}

.swi-msf-steps li.done::before {
  content: "";
  background-image: url("../img/2021/msf-done.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 11px;
  height: 11px;
  left: -1.2rem;
  top: 8px;
}

.swi-msf-steps li.active::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  background-color: #1c7eff;
  position: absolute;
  left: -1rem;
  top: 0.625rem;
  border-radius: 50%;
}

.swi-msf-links li a {
  font-size: 0.875rem;
  display: inline-block;
  margin-bottom: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.swi-msf-links li a:hover {
  color: #1c7eff;
  text-decoration: none;
}

/*

=============================================
MSF CONTENT AREA
=============================================

*/

.swi-msf-form {
  width: 100%;
  height: calc(100vh - 78.42px);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 996;
}

.swi-msf-step-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.875rem;
}

.swi-msf-header-num {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #000;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swi-msf-step-header h2 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  margin-left: 1rem;
}

.swi-input-header {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.swi-details-header {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.swi-msf-form-grp {
  margin-bottom: 3rem;
  position: relatve;
}

.swi-tooltip {
  visibility: hidden;
}

.swi-input-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  margin-bottom: 0.625rem;
}

.swi-input {
  display: block;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
  width: 100%;
  border-style: none;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.13);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-bottom: 0.625rem;
  padding-top: 0.625rem;
  -webkit-transition: border-color 0.2s ease-in-out;
  -o-transition: border-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out;
}

.swi-input.input-disabled,
.swi-select select.input-disabled {
  background-color: rgba(204, 204, 204, 0.15);
  color: rgba(0, 0, 0, 0.4);
  padding-left: 0.625rem;
}

.swi-input.input-disabled.hasDatepicker {
  background-color: #fff;
  padding-left: 0;
}

.swi-input.input-disabled.hasDatepicker:disabled {
  background-color: rgba(204, 204, 204, 0.15);
  color: rgba(0, 0, 0, 0.4);
  padding-left: 0.625rem;
}

.swi-input.input-disabled:focus {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.13);
}

.swi-input:focus,
.swi-select select:focus {
  border-bottom: 0.0625rem solid #1c7eff;
}

.swi-input-tooltip-txt {
  visibility: visible;
  text-transform: none;
  display: block;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 1rem;
  pointer-events: none;
}

.swi-input-tooltip-txt::before {
  content: "*";
  border-radius: 50%;
  color: #1c7eff;
  font-size: 1.875rem;
  font-weight: 400;
  display: inline-block;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  vertical-align: middle;
  line-height: 0;
  padding: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: none;
  box-shadow: none;
}

.custom-file-input:disabled ~ .custom-file-label {
  background-color: rgba(0, 0, 0, 0.03);
  padding-top: 0.3125rem;
  padding-left: 0.625rem;
  color: rgba(0, 0, 0, 0.4);
  cursor: default;
}

.custom-file-label {
  border-radius: 0;
  border-style: none;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.13);
  padding: 0 10px 0 0;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  z-index: 3;
}

.custom-file-label::after {
  display: none;
}

.swi-input-upload::after {
  content: url("../img/2021/msf-swi-file-upload.svg");
  position: absolute;
  right: 0.625rem;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
}

.swi-select {
  position: relative;
}

.swi-select select {
  border-style: none;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.13);
  border-radius: 0;
  padding-bottom: 0.625rem;
  padding-top: 0.625rem;
  text-align: left;
  width: 100%;
  color: rgba(0, 0, 0, 0.6);
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: relative;
  -webkit-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
  word-wrap: break-word;
  background-color: #fff;
}

.swi-select select:disabled {
  background-color: rgba(0, 0, 0, 0.03);
  padding-left: 0.625rem;
}

.swi-select select option {
  padding-left: 20px;
}

.swi-select-arrow {
  background-color: transparent;
  position: absolute;
  display: block;
  right: 10px;
  bottom: 30px;
  pointer-events: none;
}

.swi-select select.input-disabled ~ .swi-select-arrow::after,
.swi-select select:disabled ~ .swi-select-arrow::after {
  border-color: rgb(194, 194, 194) !important;
}

.swi-select-arrow::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 0.125rem solid;
  border-right: 0.125rem solid;
  border-color: #1c7eff;
  transform: rotate(45deg);
  top: 50%;
  right: 50%;
}

.swi-radio {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  pointer-events: all;
}

.swi-radio-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  border: 0.0625rem solid rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  -webkit-transition: background 0.2s ease-in-out;
  -o-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.swi-radio-label .swi-radio[disabled] + .swi-radio-checkmark::after {
  background: #ccc;
}

.swi-radio-label {
  position: relative;
  padding-left: 2rem;
  margin-right: 1.25rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  pointer-events: none;
}
/* .swi-radio-label .swi-radio[disabled]:hover {
  cursor: default;
  background: #fff;
} */
.swi-radio-label:hover .swi-radio ~ .swi-radio-checkmark {
  background-color: rgba(0, 0, 0, 0.1);
}

.swi-radio-label:hover .swi-radio[disabled] ~ .swi-radio-checkmark {
  background-color: #fff;
  cursor: default;
}

.swi-radio-label .swi-radio[disabled]:hover {
  cursor: default;
}

.swi-radio-checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.swi-radio:checked ~ .swi-radio-checkmark::after {
  display: block;
}

.swi-radio-label .swi-radio-checkmark::after {
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: black;
}

.swi-checkbox {
  position: relative;
  padding-left: 2.1875rem;
  margin-bottom: 0.75rem;
  margin-right: 1.25rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  pointer-events: none;
}

.swi-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  pointer-events: all;
}

.swi-checkbox-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.13);
  z-index: 4;
  pointer-events: all;
}

.swi-checkbox:hover input ~ .swi-checkbox-checkmark {
  background-color: #ccc;
}

.swi-checkbox input:checked ~ .swi-checkbox-checkmark {
  background-color: #000;
}

.swi-checkbox input:disabled {
  cursor: default;
}

.swi-checkbox input:disabled ~ .swi-checkbox-checkmark {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: transparent;
  cursor: default;
}

.swi-checkbox input:disabled ~ span.swi-checkbox-label-text {
  opacity: 0;
}

.swi-checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.swi-checkbox input:checked ~ .swi-checkbox-checkmark:after {
  display: block;
}

.swi-checkbox .swi-checkbox-checkmark:after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0.1875rem;
  top: -0.0625rem;
  width: 0.375rem;
  height: 0.625rem;
  border-width: 0 0.125rem 0.125rem 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg);
  border-color: #fff;
}

.swi-msf-name-check {
  display: block;
  border: 0.0625rem solid rgba(0, 0, 0, 0.13);
  padding: 0.75rem;
  border-radius: 0.25rem;
  background-color: #fff;
  font-weight: 500;
  color: #000;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
  display: flex;
  cursor: pointer;
}

.swi-msf-name-check:focus,
.swi-msf-name-check:hover {
  color: #000;
}

/* .swi-check-availability-icon {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  transform: scale(0.8);
  width: 16px;
  height: 16px;
  border: 2px solid;
  border-radius: 100%;
  margin-left: -4px;
  margin-top: -4px;
  margin-right: 5px;
}

.swi-check-availability-icon::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-radius: 3px;
  width: 2px;
  height: 8px;
  background: #000;
  transform: rotate(-45deg);
  top: 10px;
  left: 12px;
} */

.swi-check-availability-icon {
  width: 0.875rem;
  margin-right: 0.3125rem;
}

.swi-details summary {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.13);
  position: relative;
  padding: 1rem 0;
}

.swi-details summary::marker {
  color: transparent;
  width: 0;
  height: 0;
  margin: 0;
}

.swi-details .cursor-default {
  cursor: default;
}

.swi-msf-summary-arrow {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 0.125rem solid;
  border-right: 0.125rem solid;
  border-color: #1c7eff;
  transform: rotate(45deg);
  vertical-align: middle;
  margin-left: 0.3125rem;
}

.swi-msf-badge {
  background: #fff;
  color: rgba(0, 0, 0, 0.6);
  border-radius: 0.1875rem;
  font-size: 0.625rem;
  font-weight: 500;
  vertical-align: middle;
  padding: 0.125rem 0.3125rem;
  margin-left: 0.3125rem;
  border: 0.0625rem solid rgba(0, 0, 0, 0.3);
}

/* .swi-details summary > img {
  width: 2rem;
  margin-right: 0.3125rem;
} */

.swi-details summary h3 {
  font-size: 1rem;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}

.swi-details-content h4 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

.swi-details-content p {
  display: block;
  text-transform: uppercase;
  /* word-break: break-all; */
}
.swi-details-content p > a {
  display: block;
}

.swi-details[open] summary ~ * {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.13);
}

.swi-msf-summary-modify {
  display: flex;
  margin-top: 1rem;
  padding: 0.625rem 0;
  border: 0.0625rem solid rgba(0, 0, 0, 0.13);
  border-radius: 3px;
  font-size: 0.875rem;
  position: relative;
}

.swi-msf-summary-modify::before {
  content: "";
  width: 1px;
  height: 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.13);
  position: absolute;
  left: 50%;
}

.swi-msf-summary-modify .swi-msf-edit,
.swi-msf-summary-modify .swi-msf-remove {
  width: 50%;
  text-align: center;
  position: relative;
}

.swi-msf-summary-modify .swi-msf-edit img,
.swi-msf-summary-modify .swi-msf-remove img {
  width: 1rem;
  margin-right: 0.3125rem;
  vertical-align: middle;
}

.swi-msf-summary-modify .swi-msf-remove {
  color: #f00;
}

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

.swi-msf-share-counter-wrapper .swi-msf-share-counter {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-left: auto;
}

.swi-msf-share-counter-no {
  font-weight: 600;
  color: #000;
}

.swi-msf-share-counter-no.shares-completed {
  color: #20c997;
}

.swi-msf-share-counter-txt {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  color: rgba(0, 0, 0, 0.6);
  display: block;
}

.swi-review-wrapper {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.13);
}

.swi-review-wrapper h4 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

.swi-review-wrapper p {
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  /* word-break: break-all; */
}

.swi-review-wrapper p > a {
  text-transform: none !important;
}

/*

=============================================
MSF BUTTONS
=============================================

*/

/* test */

/* .swi-input-label::after {
  content: "*";
  color: rgba(28, 126, 255, 1);
  font-size: 0.75rem;
  font-weight: 500;
} */

.swi-btn {
  width: 100%;
  font-size: 1rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
  text-align: center;
  display: block;
  cursor: pointer;
}

.swi-btn:hover {
  text-decoration: none;
}

.swi-btn-sm {
  width: 50%;
  font-size: 1rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
}

.swi-btn-white {
  border: 0.0625rem solid rgba(0, 0, 0, 0.13);
  background-color: #fff;
  font-weight: 600;
  color: #000;
}

.swi-btn-white:hover {
  color: #000;
}

.swi-btn-link {
  background: transparent;
  border: 0;
  color: #1c7eff;
  padding: 0;
  display: block;
  font-size: 0.875rem;
}

.swi-btn-link:focus {
  outline: none;
}

.swi-btn-black {
  border: 0;
  background-color: #000;
  font-weight: 400;
  color: #fff;
}

.swi-btn-black:hover {
  color: #fff;
}

.swi-btn-gradient,
a.swi-btn-gradient {
  border: 0;
  color: #fff;
  font-weight: 400;
  background: rgb(79, 184, 227);
  background: linear-gradient(
    90deg,
    rgba(79, 184, 227, 1) 8%,
    rgba(28, 126, 255, 1) 38%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4fb8e3",endColorstr="#1c7eff",GradientType=1);
}

.swi-two-btn-grp {
  display: flex;
}

.swi-two-btn-grp .swi-btn-sm:first-child ~ .swi-btn-sm {
  margin-left: 0.9375rem;
}

.swi-btn-view-existing-doc {
  width: 100%;
}

/*

=============================================
MEDIA QUERIES
=============================================

*/

@media (min-width: 576px) {
  .swi-btn {
    width: initial;
    min-width: 9rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    display: inline-block;
    margin-right: 0.625rem;
  }

  .swi-btn-sm {
    width: 7.5rem;
  }

  #company-name {
    padding-right: 9.375rem;
  }

  .swi-msf-summary-modify {
    margin-top: 0;
    padding: 0.625rem 0;
    border: 0;
    border-radius: 0;
    position: absolute;
    top: 0.625rem;
    right: 0;
  }

  .swi-msf-summary-modify::before {
    display: none;
  }

  .swi-msf-summary-modify .swi-msf-edit {
    margin-right: 1.25rem;
  }

  .swi-msf-summary-modify .swi-msf-edit,
  .swi-msf-summary-modify .swi-msf-remove {
    width: initial;
  }
}

@media (min-width: 768px) {
  /*

=============================================
TOASTR NOTI STYLE
=============================================

*/

  /* #toast-container.toast-bottom-center > div,
  #toast-container.toast-top-center > div {
    width: 500px !important;
  } */
}

@media (min-width: 992px) {
  .swi-input-header {
    position: relative;
  }

  .swi-input-label {
    position: relative;
    overflow: visible;
  }

  .swi-tooltip {
    font-size: 0.625rem;
    font-weight: 400;
    text-transform: initial;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.0625rem solid rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: -1.875rem;
    visibility: visible;
    transition: background-color 0.3s linear, color 0.3s linear;
  }

  .swi-tooltip:hover {
    background-color: rgba(0, 0, 0, 1);
    color: #fff;
  }

  /* ZY COMMENT - DISABLE OLD TOOLTIP HOVER EFFECT */

  /* .swi-tooltip:hover .swi-input-tooltip-txt {
    visibility: visible;
    z-index: 4;
  } */

  .tooltip-inner {
    text-align: left !important;
    padding: 0.875rem !important;
  }

  .swi-input-tooltip-txt {
    min-width: 31.25rem;
    max-width: 37.5rem;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 0.75rem;
    padding: 1.25rem;
    color: #fff;
    position: absolute;
    left: 2rem;
    bottom: 0;
  }

  .swi-input-tooltip-txt::before {
    display: none;
  }

  .swi-review-wrapper {
    border: 0;
  }

  .swi-review-wrapper p {
    margin-bottom: 0;
  }

  .swi-summary-modify {
    position: absolute;
    right: 0;
    bottom: 1.25rem;
  }

  .swi-company-name-check-wrapper {
    display: flex;
  }

  .swi-input-name-check {
    width: 75%;
    margin-right: 10px;
  }

  .swi-msf-name-check {
    font-size: 0.75rem;
    width: 25%;
  }
}

/*

  =============================================
  IOS SPECIFIC MEDIA QUERY
  =============================================

  */

@media (min-height: 635px) {
  .swi-msf-form,
  .swi-msf-cart-sidebar {
    padding-bottom: 9.375rem;
  }
}
