#contactFormFragment {
  max-width: 1200px;
  margin-top: 80px;
}

#contactFormFragment .form-group {
  flex: 1;
}

#contactFormFragment .form-control {
  height: 60px;
  border-radius: 8px;
  background: #000;
  border-color: #646464;
  color: #fff;
  font-size: 16px;
}
#contactFormFragment .form-control#email {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#contactFormFragment textarea.form-control {
  min-height: 240px;
}

#contactFormFragment .one-line {
  gap: 80px;
}

#contactFormFragment label {
  font-size: 16px;
}

#contactFormFragment .require-icon {
  color: #e90000;
}

#contactFormFragment .submit {
  background: #fff;
  min-width: 480px;
  height: 60px;
  margin: 100px auto 0;
  border-radius: 100px;
  font-family: roboto-bold;
  position: relative;
}

@-webkit-keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#contactFormFragment .submit:disabled {
  background: rgba(255, 255, 255, 0.8) !important;
  padding-left: 26px;
  color: transparent !important;
}

#contactFormFragment .submit:disabled:before {
  content: '';
  position: absolute;
  left: calc(50% - 11px);
  width: 22px;
  height: 22px;
  border: 2px solid #00ce7a;
  border-bottom-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
}

#contactFormFragment .sendCountDown,
#contactFormFragment .verifisend {
  background: #fff;
  color: #000;
  border-radius: 0 8px 8px 0;
  text-align: center;
  font-size: 16px;
  padding: 18px 38px;
  cursor: pointer;
  margin: auto 0;
  white-space: nowrap;
  min-width: 60px;
  user-select: none;
  font-family: 'roboto-bold';
  display: flex;
  justify-content: center;
  align-items: center;
}

#contactFormFragment .dropdown-toggle.placeholder {
  color: #757575;
}

#contactFormFragment a {
  color: #0064ff;
  border-bottom: 1px solid #0064ff;
}

#contactFormFragment a:hover {
  color: #0064ff;
  text-decoration: none;
}

#contactFormFragment .opacity {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

#contactFormFragment .dropdown-toggle {
  height: 60px;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 16px;
  border: 1px solid #646464;
  position: relative;
  padding: 0.375rem 0.75rem;
}

#contactFormFragment .dropdown-toggle::after {
  position: absolute;
  right: 8px;
}

#contactFormFragment .dropdown-menu {
  z-index: 999;
  overflow: auto;
  min-width: 100%;
  max-height: 500px;
  background: #fff;
}

#contactFormFragment .dropdown-menu ul {
  list-style: none;
  padding: 5px;
}

#contactFormFragment .dropdown-menu a {
  color: #000;
  border: none;
}

#contactFormFragment .search-input {
  width: 90%;
  margin-top: 10px;
  margin-left: 10px;
  position: relative;
  border-radius: 4px;
  padding: 4px 12px;
  box-shadow: 0 0 0 1px #dcdfe6 inset;
}

#contactFormFragment .search-input img {
  width: 16px;
  height: 16px;
}

#contactFormFragment .search-input input {
  width: 88% !important;
  font-size: 14px;
  font-family: 'Roboto-Regular';
  border: none;
}

#contactForm .dropdown-title {
  padding: 10px 10px;
  width: 100%;
  display: block;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  #contactFormFragment {
    margin-top: 40px;
  }
  #contactFormFragment .one-line {
    gap: 0;
    flex-direction: column;
  }
  #contactFormFragment .form-control {
    font-size: 14px;
    height: 45px;
  }
  #contactFormFragment .sendCountDown,
  #contactFormFragment .sendCountDown, #contactFormFragment .verifisend {
    font-size: 14px;
    padding: 0px 20px;
    height: 45px;
  }
  #contactFormFragment .submit {
    min-width: 100%;
    margin-top: 50px;
  }
  #contactFormFragment .dropdown-toggle {
    height: 45px;
    font-size: 14px;
  }
}
