@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800");

* {
  margin: 0;
  padding: 0;
}

.__mrkt_page {
  color: black;
  font-family: "Open Sans";
  font-size: 16px;
  line-height: 1.5;
}
.__mrkt_video {
  width: 100% !important;
  height: 100% !important;
}

.__mrkt_page * {
  margin: 0;
  padding: 0;
}

.__mrkt_page h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: normal;
}

.__mrkt_page ul,
.__mrkt_page ol {
  list-style-position: inside;
}

.__mrkt_form_field_group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.__mrkt_form_field {
  padding: 4px;
  border: 1px solid #a9a9a9;
  background: white;
  margin-bottom: 0px !important;
}
.__mrkt_form_field::-webkit-input-placeholder {
  color: var(--placeholder-color) !important;
}

.__mrkt_form_label {
  line-height: 1.5;
  margin-bottom: 0px;
}
.__mrkt_form_checkbox {
  display: inline !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.__mrkt_form_checkboxWrap {
  display: inline;
  vertical-align: middle;
  white-space: normal;
}

.__mrkt_form_submit {
  background: #58b4fe;
  border: none;
  color: white;
  margin-top: 8px;
  padding: 8px;
  text-align: center;
  cursor: pointer;
}

/* .__mrkt_form_submit:hover {
  background-color: var(--hover-color) !important;
} */

.__mrkt_dfform_prev_button:hover {
  background-color: var(--hover-color) !important;
}

.__mrkt_dfform_next_button:hover {
  background-color: var(--hover-color) !important;
}

.__mrkt_lpbutton {
  text-decoration: none;
  cursor: pointer;
  background: #58b4fe;
  color: white;
  padding: 5px;
  text-align: center;
}

.__mrkt_lpbutton > span {
  display: inline-block;
  height: 100%;
}

.__mrkt_lpbutton > span::after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.__mrkt_lpcustomhtml {
  overflow: hidden;
}

.__mrkt_form_disclaimer {
  display: inline;
  vertical-align: middle;
}

.__mrkt_form_tagsAsCheckboxNames {
  display: inline;
  vertical-align: middle;
  padding-left: 4px;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
}

.__mrkt_form_tagsAsCheckboxNamesWrap {
  display: inline;
  vertical-align: middle;
  padding-left: 4px;
  white-space: normal;
  line-height: 1.5;
}

.__mrkt_form_layout {
  display: "grid";
  grid-template-columns: repeat(1, 1fr);
  column-gap: "10px";
}

/*Added specifically to handle the styles of fileName of uploaded File*/
.fileNameDisplay_fileUpload {
  font-style: italic;
  opacity: 0.7;
  max-width: 200px; /* Set the maximum width */
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide overflow text */
  text-overflow: ellipsis; /* Display ellipsis for overflow text */
}

/* Animations */
.__mrkt_animate {
  animation-iteration-count: 1;
  animation-duration: 1000ms;
  animation-delay: 0ms;
  will-change: opacity, transform;
}

.dynamicradioStyles {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #444;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  vertical-align: "middle";
}

.dynamicradioStyles:checked::after {
  content: "";
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 5px;
  height: 10px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: transparent #ffffff #ffffff transparent;
  background-color: var(--radio-checked-color) !important;
}

.__mrkt_form_radioLabel {
  word-wrap: break-word;
  word-break: break-all;
  cursor: pointer;
}

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slide-right {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slide-left {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.Lp-video-background-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #f9f9f9;
}

.Lp-video-background-container div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  color: #93989a;
  font-size: 1rem;
}

.Lp-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* z-index: -1; */
  pointer-events: none;
  border: none;
}
