#callback-modal-bg {
  --primary-text-color: #00939d;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.callback-modal {
  display: flex;
  flex-direction: column;
  gap: 20px;

  margin-top: 10px;

  padding: 20px 20px;
  background-color: white;
  border-radius: 22px;

  width: 550px;
}
.callTitle {
  color: var(--primary-text-color);
  font-size: 34px;
  align-self: center;
}

.callFormContainer {
  margin-top: 10px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
  column-gap: 20px;
  row-gap: 10px;
  width: 100%;
}

.callFormField {
  box-shadow: 0 0 0 1px var(--primary-text-color);
  border-color: transparent;
  border-radius: 18px;
  height: 36px;
  width: 100%;
  text-indent: 10px;
  font-family: sans-serif;
}

.callFormField::placeholder {
  font-size: 12px;
}
.callFormField:focus {
  box-shadow: 0 0 0 2px var(--primary-text-color);
  outline: none;
  border-color: transparent;
}

#callCommentArea {
  margin-top: 30px;
  width: 100%;
  height: 100px;
  padding: 5px 0;
  font-family: sans-serif;
  text-indent: 10px;
  resize: none;
  border: none;
  border-radius: 14px;
  box-shadow:
    2px 2px 4px grey inset,
    0 0 0 1px #6e7581;
}

#callCommentArea:focus {
  box-shadow:
    2px 2px 4px grey inset,
    0 0 0 2px var(--primary-text-color);
  outline: none;
}

.callSubmitContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}

#callSubmitBtn {
  display: flex;
  justify-content: center;
  align-items: center;

  color: white;
  background-color: var(--primary-text-color);
  border: none;
  border-radius: 4px;
  width: 130px;
  height: 40px;
  font-size: 18px;
  transition: background-color 0.1s ease;
}

#callSubmitBtn:hover {
  cursor: pointer;
  background-color: color-mix(in srgb, var(--primary-text-color), black 20%);
}

#callSubmitBtn:disabled {
  background-color: #91babc;
  cursor: unset;
}

#callStatusTxt {
  font-family: sans-serif !important;
  text-align: center !important;
  font-size: 15px;
  color: #00939d !important;
  min-width: 100px;
  min-height: 30px;
  padding: 0;
  margin-right: 0;
}

.callSubmitStatus {
  display: flex;
  align-items: center;
  gap: 20px;
}

.callSubmitStatus > div {
  padding: 20px;
  background-color: #d8f3e7;
  border-radius: 12px;
}
.callSubmitStatus > div > div {
  background-image: url("../img/icons/cartSuccessIco.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
}

@media (max-width: 550px) {
  .callback-modal {
    width: 100vw;
  }
}
@media (max-width: 430px) {
  .callTitle {
    font-size: 26px;
  }
}
