:root {
  --blue-color: rgb(10, 16, 79);
  --pink-color: rgb(190, 0, 128);
  --primary-gray-color: rgb(192, 195, 202);
  --secondary-gray-color: rgb(154, 159, 170);
  --tertiary-gray-color: rgb(50, 63, 87);
  --navy-blue-gray-color: rgb(0, 15, 45);
  --gradient: linear-gradient(45deg, var(--pink-color) 0%, var(--blue-color) 100%);
  --official-gradient: linear-gradient(
    to right,
    rgb(50, 63, 87) 80%,
    rgb(102, 111, 130) 60%,
    rgb(154, 159, 170) 40%,
    rgb(192, 195, 202) 15%
  );
  --primary-gradient: linear-gradient(
    243deg,
    rgba(25, 25, 139, 0.7175245098039216) 0%,
    rgba(179, 26, 173, 0.6587009803921569) 100%
  );
}

/*---------------------------------------------*/
button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

iframe {
  border: none !important;
}

/*==================================================================
[ Form ]*/

.contact100-form-title {
  display: block;
  width: 100%;
  font-size: 39px;
  color: var(--tertiary-gray-color);
  line-height: 1.2;
  text-align: left;
  padding-bottom: 2rem;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 2rem;
}

.label-input100 {
  font-size: 18px;
  line-height: 1.2;
  padding-left: 2px;
}
.input100 {
  display: block;
  width: 100%;
  background: transparent;
  font-size: 22px;
  color: var(--tertiary-gray-color);
  line-height: 1.2;
  padding: 0 2px;
}

.copy-clip-board {
  font-size: 1.5rem;
  padding-right: 1rem;
}
.copy-clip-board button {
  color: var(--blue-color);
}

.copy-clip-board:hover {
  cursor: pointer;
  color: var(--blue-color);
}

.password-input {
  display: flex;
  margin-bottom: 0.25rem;
  align-items: center;
}

.password-input .eye-icon {
  margin-left: 1rem;
  font-size: 1.2rem;
}

.password-input .eye-icon-apiReset {
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

.password-input .eye-icon:hover {
  cursor: pointer;
  color: var(--blue-color);
}

.resetApiKeyandPass.input100 {
  width: auto !important;
  color: var(--pink-color);
}

.resetApiKeyandPass.input100:hover {
  color: var(--pink-color);
}

.apiKeyModal {
  right: unset !important;
}
.focus-input100 {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: var(--pink-color);
  background: -webkit-linear-gradient(45deg, #327c8e, #366b7c);
  background: -o-linear-gradient(45deg, #327c8e, #366b7c);
  background: -moz-linear-gradient(45deg, #327c8e, #366b7c);
  background: linear-gradient(45deg, #327c8e, #366b7c);
}

.warning-label-form {
  color: var(--pink-color);
}

.input-validation-error {
  color: var(--pink-color);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  margin-top: -1rem;
}

/*---------------------------------------------*/
input.input100 {
  height: 40px;
}

textarea.input100 {
  min-height: 140px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

/*------------------------------------------------------------------
[ Button ]*/
.container-contact100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.wrap-contact100-form-btn {
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 25px;
  overflow: hidden;
}

.contact100-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background-image: linear-gradient(45deg, rgb(190, 0, 128) 15%, rgb(10, 16, 79) 85%);
  top: 0;
  left: -100%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.contact100-form-btn,
a.contact100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-width: 244px;
  height: 50px;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
}

.contact100-form-btn:disabled,
contact100-form-btn[disabled] {
  background-color: #cccccc;
  color: var(--tertiary-gray-color);
}

.wrap-contact100-form-btn:hover .contact100-form-bgbtn {
  left: 0;
}

/*------------------------------------------------------------------
[ Form error ]*/
.form-error {
  color: rgb(173, 37, 37);
  font-weight: 600;
  font-size: 12px;
  text-align: center;
}
.form-sucess {
  font-weight: 600;
  font-size: 1rem;
  background-image: var(--gradient);
  color: transparent !important;
  background-clip: text;
  -webkit-background-clip: text;
  text-align: center;
}
/*------------------------------------------------------------------
[ Form sent message ]*/
.sent-message-info {
  font-size: 2rem;
  margin-top: -1.5rem;
  background-image: var(--gradient);
  color: transparent !important;
  background-clip: text;
  -webkit-background-clip: text;
  text-align: center;
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  z-index: 1;
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid var(--pink-color);
  border-radius: 2px;
  padding: 4px 30px 4px 10px;
  bottom: calc((100% - 25px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 2px;
  pointer-events: none;
  color: var(--pink-color);
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: '\f06a';
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: var(--pink-color);
  font-size: 18px;
  bottom: calc((100% - 25px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 8px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
  .contact100-form-title {
    font-size: 28px;
    color: var(--tertiary-gray-color);
    line-height: 1.2;
    text-align: left;
    padding-bottom: 2rem;
  }
}

.true-validate::after {
  content: '\f00c';
  font-family: FontAwesome;
  font-size: 22px;
  color: var(--blue-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: calc((100% - 25px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 5px;
}

@media (max-width: 992px) {
  .contact100-form-title {
    font-size: 28px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .label-input100 {
    font-size: 16px;
    color: var(--secondary-gray-color);
    line-height: 1;
  }
  input.input100 {
    height: 30px;
  }
  .input100 {
    font-size: 18px;
  }
  .wrap-input100 {
    margin-bottom: 1rem;
  }

  .sent-message-info {
    font-size: 1.5rem;
    margin-top: -1.5rem;
  }
}

/* CONTACT US POPUP */

.popup-contact {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-inner-contact {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 500px; /* Maximum width of the popup */
  width: 100%; /* Full width up to max-width */
  text-align: center;
}

.popup-inner-contact button {
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 0.5em 1.5em;
  background-image: linear-gradient(45deg, rgb(190, 0, 128), rgb(10, 16, 79));
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s,
    background-position 1s;
  border-radius: 50px;
}

.popup-inner-contact a {
  color: rgb(190, 0, 128);
  text-decoration: none;
}

.popup-inner-contact a:hover {
  text-decoration: underline;
}
