* {
  text-decoration: none;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
*:focus-visible {
  outline: none;
}
::selection {
  background-color: #656eea;
  color: white;
}
body {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -ms-user-select: none;
  overflow-x: hidden;
}
#formMessage {
  position: absolute;
  top: 12%;
  right: 50%;
  transform: translateX(50%);
}
#formMessage .green {
  background-color: #a1ec67;
  color: white;
  margin-top: 10px;
  width: 100%;
  border-radius: 4px;
  padding: 10px;
}
#formMessage .red {
  background-color: #df5f58;
  color: white;
  margin-top: 10px;
  width: 100%;
  border-radius: 4px;
  padding: 10px;
}

/* Generic */
.inline-flex {
  display: inline-flex;
}
.outer-my-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}
.justify-space-between {
  justify-content: space-between;
}
.justify-flex-end {
  justify-content: flex-end;
}
.justify-space-around {
  justify-content: space-around;
}
.justify-center {
  justify-content: center;
}
.align-items-center {
  align-items: center;
}
.align-flex-start {
  align-items: flex-start;
}
.align-flex-end {
  align-items: flex-end;
}
.align-center {
  align-items: center;
}
.my-btn {
  background-color: transparent;
  font-size: 14px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
  font-weight: 600;
}
.mr-20 {
  margin-right: 20px;
}

.flex-wrap {
  flex-wrap: wrap;
}
.bold {
  font-weight: bold;
}
.flex-no-wrap {
  flex-wrap: nowrap;
}

@media screen and (min-width: 600px) {
  .my-container {
    width: 500px;
  }
}

@media screen and (min-width: 700px) and (max-width: 800px) {
  .my-container {
    width: 550px;
  }
}
@media screen and (min-width: 800px) {
  .my-container {
    width: 650px;
  }
}

@media screen and (min-width: 900px) {
  .my-container {
    width: 750px;
  }
}

@media screen and (min-width: 1000px) {
  .my-container {
    width: 850px;
  }
}

@media screen and (min-width: 1100px) {
  .my-container {
    width: 1000px;
  }
}

@media screen and (min-width: 1200px) {
  .my-container {
    width: 1100px;
  }
}

@media screen and (min-width: 1400px) {
  .my-container {
    width: 1300px;
  }
}

@media screen and (min-width: 1700px) {
  .my-container {
    width: 1520px;
  }
  .my-btn {
    font-size: 16px;
    line-height: 35px;
  }
}

/* CSS FOR MOBILE */
/* 320 480 768 1024 */
@media screen and (max-width: 600px) {
  .my-container {
    width: 100%;
  }
  .my-btn {
    font-size: 12px;
    border-radius: 5px;
  }
  #formMessage .green {
    font-size: 13px;
    line-height: 24px;
    padding: 7px;
  }
  #formMessage .red {
    font-size: 13px;
    line-height: 24px;
    padding: 7px;
  }
}
@media screen and (max-width: 800px) {
  .display-none-mobile {
    display: none;
  }
}

/*---------------------- modal start ----------------------- */
.modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 3;
  padding: 20px 0px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.close img {
  width: 15px;
  height: 20px;
}

/* Modal Content */
.modal-content {
  background-color: white;
  border-radius: 10px;
  margin: auto;
  width: 40%;
}
.modal-content p {
  color: black;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.modal_header {
  padding: 20px 30px;
  border-radius: 10px 10px 0px 0px;
  background-color: #e3e5ff;
}

/* contact form  */
.contact-form {
  padding: 20px 30px;
}

#contact-form input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 8px;
  border: none;
  border-bottom: 1px solid rgb(163, 163, 163);
  box-sizing: border-box;
  margin: 15px 0px;
  resize: vertical;
  outline: none;
  font-size: 14px;
  color: rgb(59, 59, 59) !important;
}
#role {
  margin-top: 15px !important;
}
#contact-form input::placeholder,
select,
textarea::placeholder {
  color: rgb(146, 146, 146);
  background-color: white;
}

#contact-form input[type="submit"] {
  background-color: #04aa6d;
  color: rgb(255, 255, 255);
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#contact-form input[type="submit"]:hover {
  background-color: #45a049;
}
#contact-form label {
  font-size: 14px;
  color: #282828;
  font-weight: 500;
  padding: 0px 10px;
}
#contact-form .form_fields {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#contact-form .name_lastName {
  margin-right: 20px;
  width: 50%;
}
#contact-form .email_Mobile {
  width: 50%;
}

#contact-form .recaptcha {
  width: fit-content;
}
#contact-form .g-recaptcha {
  transform: scale(0.88);
  -webkit-transform: scale(0.88);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
}
#contact-form .g-recaptcha {
  width: 100%;
}

#contact-form .contact-btn-submit {
  background-color: #656eea;
  color: white;
  border: none;
  font-size: 16px;
  padding: 12px 0px;
  margin: 10px 0px;
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease-in-out;
}
#contact-form .contact-btn-submit:hover {
  background-color: #6069f0;
}
#contact-form .contact-btn-submit:active {
  background-color: #ffa12e;
}

@media screen and (max-width: 800px) {
  .modal-content {
    width: 90%;
  }
  .contact-form {
    padding: 25px;
  }
  #contact-form label {
    font-size: 14px;
  }
  #contact-form input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 13px;
  }
  .contact-btn-submit {
    font-size: 14px;
    margin: 0px;
  }
}
@media screen and (min-width: 1700px) {
  .modal-content {
    width: 35%;
  }
}
@media screen and (min-width: 1600px) and (max-width: 1700px) {
  #subject {
    height: 120px !important;
  }
  .modal {
    padding: 0px;
  }
}

.ContactFormPrivacyText h6 {
  color: black;
  font-weight: 400;
  font-size: 13px;
  margin: 10px 0px;
}

.ContactFormPrivacyText a {
  color: blue;
  text-decoration: none;
}
.ContactFormPrivacyText a:hover {
  color: #ffa12e;
}

.business-portal-sign-in-href, .customer-portal-sign-in-href{
    margin: 0 4px;
}