@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap");
:root {
  --primary-btn: #6c41bf;
  --red: #c53030;
  --green: #b5f4a5;
  --seo-font: "Josefin Sans", sans-serif;
}

.wrap {
  font-family: var(--seo-font);
}
.show-response {
  position: relative;
}

.response-list-ul {
  position: absolute;
  z-index: 2;
  min-width: 200px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding-inline: 0;
  text-align: left;
  top: -10px;
}

.response-list {
  list-style: none;
  background: #fff;
  margin-bottom: 0;
  font-size: 1rem;
}

.response-list a {
  padding: 8px;
  background: #fff;
  display: block;
  text-decoration: none;
  color: #000;
}

.response-list a:hover {
  cursor: pointer;
  background-color: #e4e4e4;
}

.form-group {
  max-width: 100%;
  margin-top: 1rem;
}
input,
textarea {
  width: 100%;
  font-size: 18px;
  padding: 0.4rem 1rem !important;
}

textarea {
  min-height: 200px;
}
label {
  font-size: 1rem;
  padding-bottom: 3px;
}

#submit-btn,
.btn-next,
.btn-back,
#modal-preview {
  outline: none;
  background-color: var(--primary-btn);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  transition: all 300ms ease-out;
  letter-spacing: 1.1px;
  border-radius: 4px;
  padding: 0.8rem 2rem;
  border: 1px solid transparent;
}

#submit-btn:hover,
.btn-next:hover {
  background-color: rgb(76, 46, 138);
}
.btn-next {
  margin-top: 0.5rem;
}
.btn-back {
  background-color: rgb(150, 150, 150);
}
.btn-back:hover {
  background-color: rgb(100, 100, 100);
}
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.alert {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}
.alert-danger {
  border: 1px solid var(--red);
  color: var(--red);
  background-color: #ff838313;
}
.alert-success {
  border: 1px solid #008000;
  color: #008000;
  background-color: var(--green);
}

.modal {
  /* display: none; Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999999; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  visibility: hidden;
  opacity: 0;
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  border-radius: 4px;
  max-width: 1000px;
}

/* The Close Button */
.close-modal {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close-modal:hover,
.close-modal:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.site-url {
  padding-bottom: 2px;
}
.site-url cite {
  color: #202124;
  font-style: normal;
  font-size: 14px;
  line-height: 1.3;
}
.site-title-wrapper {
  padding-bottom: 2px;
  max-width: 600px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-title {
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  color: #1a0dab;
  overflow: hidden;
}
.site-meta-description-wrapper {
  max-width: 600px;
  line-height: 1.58;
  font-weight: 400;
  font-size: 14px;
  color: #4d5156;
}
.site-meta-description {
  word-wrap: break-word;
}
#modal-preview {
  margin-right: 16px;
  background-color: rgb(80, 80, 80);
}
#modal-preview:hover {
  background-color: rgb(40, 40, 40);
}
.clear-fix::after {
  content: "";
  clear: both;
  display: table;
}
.meta-btn-container {
  float: right;
}
