/* LF Front-end Default CSS Styles */
.lf-form-container {
  display: grid;
  gap: 10px;
  position: relative;
  border-radius: 6px;
  border: solid 1px #e8e8e8;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: white;
}
@media only screen and (max-width: 675px) {
  .lf-form-container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}


.lf-header {
  width: 70%;
  position: relative;
  margin: 0 auto;
  border-bottom: solid 1px #e3e3e3;
  margin-bottom: 6%;
  padding-bottom: 20px;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (max-width: 675px) {
  .lf-header {
    width: 90%;
    padding-top: 18px;
    margin-bottom: 9%;
    gap: 5px;
  }
}


.lf-header-icon {
  height: 56px;
  width: 56px;
  position: relative;
  margin: 0 auto;
  border: solid 1px #efefef;
  border-radius: 6px;
  padding: 6px;
  box-sizing: border-box;
}
@media only screen and (max-width: 675px) {
  .lf-header-icon {
    margin-bottom: 5px;
  }
}


.lf-form-title {
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0px;
  font-size: 23px;
  font-weight: 700;
  color: #000;
  text-align: center;
  width: 100%;
  font-family: proxima-soft-1,proxima-soft-2,proxima-nova-1,proxima-nova-2,Helvetica,Arial,sans-serif;
}
@media only screen and (max-width: 675px) {
  .lf-form-title {
    font-size: 16px;
  }
}


.lf-form-description {
  margin: 0px;
  font-size: 12px;
  color: #1a1a1ab3;
  text-align: center;
  font-family: proxima-soft-1,proxima-soft-2,proxima-nova-1,proxima-nova-2,Helvetica,Arial,sans-serif;
}
@media only screen and (max-width: 675px) {
  .lf-form-description {
    font-size: 14px;
  }
}


.lf-field-container {
  display: grid;
  width: 70%;
  position: relative;
  margin: 0 auto;
}
@media only screen and (max-width: 675px) {
  .lf-field-container {
    width: 90%;
  }
}


.lf-flex-label-container {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  flex-direction: row;
  position: relative;
  top: -2px;
}


.lf-field-label {
  font-weight: 400;
  font-family: proxima-soft-1,proxima-soft-2,proxima-nova-1,proxima-nova-2,Helvetica,Arial,sans-serif;
  background-color: #fff0;
  z-index: 1;
  width: fit-content;
  color: #1a1a1ad6;
  font-size: 14px;
  outline: none;
  padding: 0!important;
  margin: 0px;
}
@media only screen and (max-width: 675px) {
  .lf-field-label {
	  font-size: 14px !important;
	}
}


.lf-editing-text {
  visibility: hidden;
  color: #38ff00;
  font-style: italic;
  margin: 0px !important;
  width: fit-content;
  display: inline-block;
  font-size: 12px;
}
@media only screen and (max-width: 675px) {
  .lf-editing-text {
    padding-left: 5px;
  }
}
.lf-editing-text.lf-editing-active {
  visibility: visible !important;
}


.lf-required {
  font-size: 10px;
  color: #1743f3;
  margin: auto 0;
}


.lf-input {
  border: solid 1px #e8e8e8;
  color: #000 !important;
  line-height: 1.5;
  padding: 8px 12px !important;
  position: relative;
  border-radius: 6px !important;
  font-size: 13px !important;
  font-weight: 500;
  transition: box-shadow .08s ease-in,color .08s ease-in,filter 50000s;
  font-family: proxima-soft-1,proxima-soft-2,proxima-nova-1,proxima-nova-2,Helvetica,Arial,sans-serif;
}
.lf-input:focus {
  outline: none;
  border-color: #e8e8e8 !important;
  background: #fcfcfc;
  box-shadow: 0 0 0 1px rgb(0 112 255 / 27%), 0 1px 1px 0 rgb(0 0 0 / 7%), 0 0 0 4px rgb(0 140 255 / 53%);
  transition: box-shadow 0.3s ease-in-out;
}
.lf-input:focus-visible {
  outline: none;
}
@media only screen and (max-width: 675px) {
  .lf-input {
    font-size: 16px !important;
  }
}


.lf-field-description {
  visibility: hidden;
  width: fit-content;
  display: inline-block;
  line-height: 21px;
  text-align: left;
  height: 21px;
  position: relative;
  font-family: proxima-soft-1, proxima-soft-2, proxima-nova-1, proxima-nova-2, Helvetica, Arial, sans-serif;
  padding: 0px;
  margin: 0px;
  color: #b0b0b0;
  font-size: 12px;
}
.lf-field-description.lf-description-active {
  visibility: visible !important;
  height: fit-content !important;
}


/* Radio */
input[type="radio"]+label {
  display: inline;
}


.lf-input-radio-ul {
  margin: 0px;
  display: inline-grid;
  gap: 1.5rem;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 0px;
}


.lf-input-radio-li {
  list-style-type: none;
  margin: 0px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border: dashed 1px #e8e8e8;
  border-radius: 6px;
  padding-left: 10px;
  padding-right: 10px;
  height: 36px;
  cursor: pointer;
}


.lf-input-radio {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  display: inline-block;
  cursor: pointer;
  margin: 0rem !important;
  -webkit-appearance: none;
  border: solid 1px #818181;
  border-radius: 50%;
  position: relative;
  box-shadow: none !important;
}

.lf-input-radio:checked {
  border: solid 1px #1643f3;
  box-shadow: none !important;
}
.lf-input-radio:checked::before {
  content: "";
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #1743f3 !important;
  display: block;
  margin: 0px !important;
  appearance: none;
  transform: translate(24%, 22%);
}


.lf-radio-label {
  line-height: 20px;
  border: solid 1px #28e14200;
  background-color: #dfe1e600;
  position: relative;
  bottom: 0px;
  color: #1a1a1ab3;
  font-size: 11px;
  width: fit-content;
  border-radius: 4px;
  cursor: pointer;
  margin: 0px !important;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: proxima-soft-1,proxima-soft-2,proxima-nova-1,proxima-nova-2,Helvetica,Arial,sans-serif;
}
@media only screen and (max-width: 675px) {
  .lf-radio-label {
    font-size: 14px;
  }
}


/* Checkbox */
input[type="checkbox"]+label {
  display: inline;
}


.lf-input-checkbox-ul {
  margin: 0px;
  display: inline-grid;
  gap: 1.5rem;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 0px;
}


.lf-input-checkbox-li {
  list-style-type: none;
  margin: 0px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border: dashed 1px #e8e8e8;
  border-radius: 6px;
  padding-left: 10px;
  padding-right: 10px;
  height: 36px;
  cursor: pointer;
}


.lf-checkbox-label {
  line-height: 20px;
  border: solid 1px #28e14200;
  background-color: #dfe1e600;
  position: relative;
  bottom: 0px;
  color: #1a1a1ab3;
  font-size: 11px;
  width: fit-content;
  border-radius: 4px;
  cursor: pointer;
  margin: 0px !important;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: proxima-soft-1,proxima-soft-2,proxima-nova-1,proxima-nova-2,Helvetica,Arial,sans-serif;
}
@media only screen and (max-width: 675px) {
  .lf-checkbox-label {
    font-size: 14px;
  }
}

input[type=checkbox] {
  -webkit-appearance: none;
}
.lf-input-checkbox {
  border-radius: 4px !important;
  top: 0px !important;
  width: 13px !important;
  height: 13px !important;
  min-width: 13px !important;
  min-height: 13px !important;
  max-width: 13px !important;
  max-height: 13px !important;
  cursor: pointer;
  margin: 0rem !important;
  -webkit-appearance: none;
  position: relative;
  border: solid 1px #818181 !important;
  box-shadow: none !important;
}
.lf-input-checkbox:checked {
  border: solid 1px #1743f3 !important;
  box-shadow: none !important;
}
.lf-input-checkbox:checked::before { 
  color: #ffffff;
  content: '\2713' !important;
  font-weight: bold;
  border-radius: 2px;
  background: #1643f3 !important;
  position: absolute;
  border: solid 1px #b5b53f00;
  font-size: 9.8px;
  padding-left: 2px;
  padding-right: 2px;
  width: 15px !important;
  height: 15px !important;
  font-family: sans-serif;
  transform: translate(-15%, -15%);
  box-sizing: border-box;
  display: block !important;
  line-height: 13px;
  margin: 0px !important;
}
@media only screen and (max-width: 675px){
  .lf-input-checkbox:checked::before {
    text-align: center;
    line-height: 11px;
  }
}



/* File upload */ 
input[type=file].lf-input {
  border: 1px dashed #e8e8e8 !important;
  display: inline-flex;
  height: 146px;
  min-height: 146px;
  max-height: 146px;
  font-size: 11px !important;
  background-size: 42px 30px;
  background-repeat: no-repeat;
  background-position-y: 26px;
  background-position-x: calc(50% - 1px);
  color: transparent !important;
  cursor: pointer;
  -webkit-appearance: none;
  padding: 0px !important;
}
input[type=file].lf-input:focus {
  border: solid 1px #e8e8e8 !important;
}
input[type='file']:before {
  content: "Drag & drop here";
  position: absolute;
  top: 65px;
  color: #050505;
  font-weight: 700;
  width: fit-content;
  left: calc(50% - 45px);
  white-space: nowrap;
}
@media only screen and (max-width: 675px) {
  input[type='file']:before {
    content: "Tap to upload";
    font-size: 14px;
    position: relative;
    top: 61px;
    left: calc(50% - 45px);
  }
}
input[type='file']:after {
  content: "Choose File";
  line-height: 20px;
  border: solid 1px #e5e6eb;
  background-color: #e5e6eb;
  color: #050505;
  font-size: 11px;
  width: fit-content;
  border-radius: 4px;
  padding-left: 10px;
  padding-right: 10px;
  cursor: pointer;
  position: absolute;
  left: calc(50% - 42px)!important;
  top: 93px;
}
@media only screen and (max-width: 675px) {
  input[type='file']:after {
    top: 95px;
  }
}
::-webkit-file-upload-button {
  display: none;
}
.lf-file-upload-container {
  padding: 0px;
  display: inline-flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  min-height: 21px;
}
.lf-file-uploaded-text {
  font-size: 12px;
  margin: 0px;
  color: #1a1a1ad6;
}
.lf-file-upload-delete {
  font-size: 10px;
  color: red;
  margin: 0px;
  cursor: pointer;
}


/* Date Field */
input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}
@media only screen and (max-width: 675px) {
  input::-webkit-date-and-time-value {
    text-align: left;
    padding-left: 0px!important;
  }
}
@media only screen and (max-width: 675px){
  input[type="date"] {
    -webkit-appearance: none;
    border: solid 1px #e8e8e8;
    color: #000 !important;
    line-height: 1.5;
    padding: 8px 12px !important;
    text-align: left !important;
    position: relative;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 500;
    transition: box-shadow .08s ease-in,color .08s ease-in,filter 50000s;
    font-family: proxima-soft-1,proxima-soft-2,proxima-nova-1,proxima-nova-2,Helvetica,Arial,sans-serif;
    background-color: transparent !important;
    min-height: 26px;
  }
}


/* Dropdown */
.lf-select-ul {
  display: none;
  background: #fff;
  z-index: 9;
  position: absolute;
  width: 100%;
  list-style: none;
  top: 53px;
  border-radius: 6px;
  padding: 0px;
  margin: 0px;
  border: 1px dashed #e8e8e8;
  box-shadow: 0 0 0 1px #e0e0e000, 0 2px 4px 0 rgb(0 0 0 / 7%), 0 1px 1.5px 0 rgb(0 0 0 / 5%);
}
@media only screen and (max-width: 675px) {
  .lf-select-ul {
    top: 60px;
  }
}


.lf-select-option {
  margin: 0px;
  border-left-style: solid;
  border-left-width: 3px;
  border-left-color: #0000;
  text-align: left;
  padding: 5px;
  font-size: 13px;
  cursor: pointer;
  padding-left: 12px;
  padding-right: 12px;
  color: #050505;
}


.lf-select-option:hover {
  color: #fff;
  background-color: #2843e1;
  box-shadow: 0 0 0 1px #e0e0e000, 0 2px 4px 0 rgb(0 0 0 / 7%), 0 1px 1.5px 0 rgb(0 0 0 / 5%);
  border-radius: 4px;
}


/* Number */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button, 
input::-webkit-inner-spin-button { 
  -webkit-appearance: none;
  margin: 0;
}


/* Textarea */ 
textarea.lf-input {
  height: 149px;
  resize: vertical;
}



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


/* Single Product */
.lf-input-single-product-ul {
  margin: 0px;
  display: inline-flex;
  gap: 12px;
  margin-top: 5px;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0px;
}
@media only screen and (max-width: 675px) {
  .lf-input-single-product-ul {
    overflow: scroll;
    flex-wrap: nowrap;
  }
}
.lf-input-single-product-ul {
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}
.lf-input-single-product-ul::-webkit-scrollbar { 
  display: none;  /* Safari and Chrome */
}


.lf-input-single-product-li {
  list-style-type: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: dashed 1px #e8e8e8;
  border-radius: 6px;
  cursor: pointer;
  min-height: 208px;
  max-height: fit-content;
  width: 164px;
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  background-size: 130px 90px !important;
  background-repeat: no-repeat;
  background-position-y: 57.5px;
  background-position-x: 50%;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0px;
}
.lf-input-single-product-li:hover {
  border: solid 1px #1a1a1a08;
}
@media only screen and (max-width: 675px) {
  .lf-input-single-product-li {
    min-width: 140px;
  }
}


.lf-input-single-product-radio {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  display: inline-block;
  cursor: pointer;
  margin: 0rem !important;
  -webkit-appearance: none;
  position: relative;
  border: solid 1px #818181 !important;
  border-radius: 50%;
  top: 13px;
  left: 15px;
  box-shadow: none !important;
}
.lf-input-single-product-radio:checked {
  border: solid 1px #002dff !important;
  box-shadow: none !important;
}
.lf-input-single-product-radio:checked::before {
  content: "";
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #1743f3 !important;
  display: block;
  margin: 0px !important;
  appearance: none;
  transform: translate(24%, 22%);
}


.lf-single-product-label {
  height: 208px;
  line-height: 20px;
  border: solid 1px #28e14200;
  background-color: #dfe1e600;
  color: #050505;
  font-size: 11px;
  cursor: pointer;
  margin: 0px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  text-align: center;
  border-radius: 6px;
  max-height: 100%;
  z-index: 9;
}


.lf-single-product-price {
  position: absolute;
  top: 10px;
  right: 15px;
  margin: 0px;
  color: #1a1a1ab3;
  font-size: 12px;
}


.lf-single-product-product-name {
  position: relative;
  margin: 0px;
  font-size: 12px;
  color: #1a1a1ab3;
  height: 100%;
  text-align: center;
  width: 100%;
  padding-top: calc(203px - 23px);
  position: relative;
  left: -12px;
}


/* Multi Products */
.lf-input-multiple-products-ul {
  margin: 0px;
  display: inline-flex;
  gap: 12px;
  margin-top: 5px;
  margin-bottom: 26px;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0px;
}
@media only screen and (max-width: 675px) {
  .lf-input-multiple-products-ul {
    overflow: scroll;
    flex-wrap: nowrap;
  }
}
.lf-input-multiple-products-ul {
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}
.lf-input-multiple-products-ul::-webkit-scrollbar { 
  display: none;  /* Safari and Chrome */
}


.lf-input-multiple-products-li {
  list-style-type: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: dashed 1px #e8e8e8;
  border-radius: 6px;
  cursor: pointer;
  min-height: 208px;
  max-height: fit-content;
  width: 164px;
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  background-size: 130px 90px !important;
  background-repeat: no-repeat;
  background-position-y: 57.5px;
  background-position-x: 50%;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0px;
}
.lf-input-multiple-products-li:hover {
  border: solid 1px #1a1a1a08;
}
@media only screen and (max-width: 675px) {
  .lf-input-multiple-products-li {
    min-width: 140px;
  }
}


/* Multiple Choice Checkbox Button */
.lf-input-multiple-products-checkbox {
  border-radius: 4px !important;
  top: 0px !important;
  width: 13px !important;
  height: 13px !important;
  min-width: 13px !important;
  min-height: 13px !important;
  max-width: 13px !important;
  max-height: 13px !important;
  cursor: pointer;
  margin: 0rem !important;
  -webkit-appearance: none;
  position: relative;
  border: solid 1px #818181 !important;
  top: 13px !important;
  left: 15px;
  box-shadow: none !important;
}
.lf-input-multiple-products-checkbox::checked {
  border: solid 1px #1743f3 !important;
  box-shadow: none !important;
}
.lf-input-multiple-products-checkbox:checked::before {
  color: #ffffff;
  content: '\2713' !important;
  font-weight: bold;
  border-radius: 2px;
  background: #1643f3 !important;
  position: absolute;
  border: solid 1px #b5b53f00;
  font-size: 9.8px;
  padding-left: 2px;
  padding-right: 2px;
  width: 15px !important;
  height: 15px !important;
  font-family: sans-serif;
  transform: translate(-15%, -15%);
  box-sizing: border-box;
  display: block !important;
  line-height: 13px;
  margin: 0px !important;
}
@media only screen and (max-width: 675px){
  .lf-input-multiple-products-checkbox::before {
    text-align: center;
    line-height: 11px;
  }
}


.lf-multiple-products-label {
  height: 208px;
  line-height: 20px;
  border: solid 1px #28e14200;
  background-color: #dfe1e600;
  color: #050505;
  font-size: 11px;
  cursor: pointer;
  margin: 0px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  text-align: center;
  border-radius: 6px;
  max-height: 100%;
  z-index: 9;
}


.lf-multiple-products-price {
  position: absolute;
  top: 10px;
  right: 15px;
  margin: 0px;
  color: #1a1a1ab3;
  font-size: 12px;
}


.lf-multiple-products-product-name {
  position: relative;
  margin: 0px;
  font-size: 12px;
  color: #1a1a1ab3;
  height: 100%;
  text-align: center;
  width: 100%;
  padding-top: calc(203px - 23px);
  position: relative;
  left: -12px;
}


/* LF Footer */
.lf-footer {
  width: 70%;
  position: relative;
  margin: 0 auto;
  margin-top: 6%;
  padding-top: 5px;
}
@media only screen and (max-width: 675px) {
  .lf-footer {
    width: 90%;
    position: relative;
    margin: 0 auto;
    padding-bottom: 18px;
    margin-top: 9% !important;
  }
}


.lf-submit-button {
  height: 50px;
  min-height: 50px !important;
  line-height: 0px !important;
  background-color: rgb(23, 67, 243) !important;
  color: #fff !important;
  border-radius: 6px !important;
  text-transform: capitalize !important;
  width: 100%;
  border: solid 1px rgb(23, 67, 243) !important;
  text-align: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow: 0 0 0 1px #e0e0e000, 0 2px 4px 0 rgb(0 0 0 / 7%), 0 1px 1.5px 0 rgb(0 0 0 / 5%);
  font-weight: bold !important;
  margin: 0 auto !important;
  font-size: 16px;
  font-family: proxima-soft-1,proxima-soft-2,proxima-nova-1,proxima-nova-2,Helvetica,Arial,sans-serif;
}
@media only screen and (max-width: 675px) {
  .lf-submit-button {
    width: 100%;
  }
}
.lf-submitted {
  opacity: 0.3 !important;
  transition: 1s !important; 
  transition-timing-function: ease-in-out !important;
}


/* LF Submitting Loader */
.lf-saving-container {
  background: #fff;
  border-radius: 10px;
  height: 42px;
  width: 291px;
  position: fixed;
  bottom: 7px;
  right: 7px;
  border: dashed 1px #e3e3e3;
  box-shadow: 0 0 0 1px #e0e0e000, 0 2px 4px 0 rgb(0 0 0 / 7%), 0 1px 1.5px 0 rgb(0 0 0 / 5%);
}
@media only screen and (max-width: 675px) {
  .lf-saving-container {
    width: 90%;
    left: 5%;
  }
}


/* Saving Loader */
.lf-saving-bar {
  position: fixed;
  width: 241px;
  height: 4px;
  background: #76fb4d;
  overflow: hidden;
  right: 32px;
  bottom: 26px;
}
@media only screen and (max-width: 675px) {
  .lf-saving-bar {
    left: 12.5%;
    width: 75%;
  }
}


.lf-saving-bar div:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  background: #e5e6eb;
  animation: progress-saving-bar-1 2100ms cubic-bezier(0.65, 0.81, 0.73, 0.4) infinite;
}


.lf-saving-bar div:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  background: #fff;
  animation: progress-saving-bar-2 2100ms cubic-bezier(0.16, 0.84, 0.44, 1) infinite;
  animation-delay: 1150ms;
}


@keyframes progress-saving-bar-1 {
  0% {
    left: -35%;
    right: 100%;
  }

  60%,
  100% {
    left: 100%;
    right: -90%;
  }
}

@keyframes progress-saving-bar-2 {
  0% {
    left: -200%;
    right: 100%;
  }

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


/* Success Message Toast */
.lf-alert-container {
  display: inline-grid;
  background-color: #fff;
  border-style: dashed;
  border-width: 1px;
  border-color: #539e37;
  padding: 11px;
  position: fixed;
  bottom: 7px;
  right: 7px;
  width: 291px;
  padding-left: 15px;
  text-align: left;
  padding-right: 15px;
  z-index: 2147483647;
  animation: alert 1s ease-in-out 0s 1 normal forwards;
  overflow: hidden;
  border: dashed 1px #e8e8e8;
  border-radius: 10px;
  box-shadow: 0 0 0 1px #e0e0e000, 0 2px 4px 0 rgb(0 0 0 / 7%), 0 1px 1.5px 0 rgb(0 0 0 / 5%);
}

@keyframes alert {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes alertOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(250px);
  }
}

@media only screen and (max-width: 675px) {
  .lf-alert-container {
    width: 90%;
    left: 5%;
  }
}
.lf-alert-container-show {
  display: inline-grid !important;
}
.lf-alert-container-hide {
  display: none;
}



.lf-alert-text {
  color: #1a1a1ab3;
  font-size: 12px;
  font-family: proxima-soft-1, proxima-soft-2, proxima-nova-1, proxima-nova-2, Helvetica, Arial, sans-serif;
  margin: 0px;
}



/* Browser autofill */
input:autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  box-shadow: 0 0 0px 1000px white inset !important;
}


input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  box-shadow: 0 0 0px 1000px white inset !important;
}