body {
  color: #333;
  font-family: Lato, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 36px;
}

.magic {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
}

.edit-content {
  max-width: 100%;
  padding: 40px;
  position: relative;
}

.setion {
  justify-content: flex-start;
  align-items: flex-start;
  height: 100vh;
  padding: 25px;
  display: flex;
  position: relative;
}

.color-wrap {
  align-items: center;
  display: flex;
}

.color {
  border-radius: 5px;
  width: 50px;
  height: 50px;
  margin-left: 20px;
}

.color.color-1 {
  background-color: #2f55fd;
}

.color.color-2 {
  background-color: #a3a607;
}

.color.color-3 {
  background-color: #ea5a5c;
}

.color.color-bg {
  background-color: #262626;
}

.edit-content-wrap {
  background-color: #fff;
  border-radius: 40px;
  width: 380px;
  max-height: 370px;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 1px 20px #00000080;
}

.edit-trigger {
  z-index: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-size: 40px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.input-text {
  border: 1px solid #3898eb;
  border-radius: 5px;
  flex: 1;
  min-width: 300px;
  max-width: 300px;
  max-height: 130px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 1.3;
}

.heading {
  border-bottom: 1px solid #dfdfdf;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 22px;
  line-height: 1.2;
}

.submit-button {
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  font-size: 18px;
  font-weight: 700;
  transition: background-color .2s;
}

.submit-button:hover {
  background-color: #2983d2;
}

.close-icon {
  display: none;
  transform: rotate(45deg);
}

.field-label {
  font-size: 16px;
}

.form-block {
  margin-bottom: 0;
}

.load-cover {
  z-index: 10;
  background-color: #000;
  height: 100vh;
  position: fixed;
  inset: auto 0% 0%;
}

.credits {
  color: #555;
  border: 1px solid #555;
  border-radius: 8px;
  padding: 8px 20px 9px;
  font-size: 16px;
  text-decoration: none;
  transition: color .2s, background-color .2s;
  position: fixed;
  inset: auto 20px 20px auto;
}

.credits:hover {
  color: #fff;
  background-color: #555;
}

.body {
  background-color: #000;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-wrap-2 {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/TPCT.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content-2 {
  grid-column-gap: 1.1vw;
  grid-row-gap: 1.1vw;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 22.22vw;
  display: flex;
}

.utilities-image {
  border-radius: 100%;
  min-width: 11.11vw;
  max-width: 11.11vw;
  min-height: 11.11vw;
  max-height: 11.11vw;
}

.utilities-image.invert {
  filter: invert();
}

.font-white {
  color: #f5f5f5;
}

.button {
  color: #050505;
  background-color: #f5f5f5;
  border-radius: .25rem;
  font-size: 16px;
  font-weight: 900;
  transition: background-color .25s;
}

.button:hover {
  color: #f5f5f5;
  background-color: #1c1c1c;
}

@media screen and (max-width: 991px) {
  .utility-page-content-2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    width: 16.25rem;
  }

  .utilities-image {
    min-width: 10rem;
    max-width: 10rem;
    min-height: 10rem;
    max-height: 10rem;
  }
}


