/* PARAGRAPHS*/
p {
}

/* HEADERS */
h1 {
}

h2 {
}

h3 {
  font-weight: 600;
}

h4 {
  font-weight: 900;
}

h5 {
  font-weight: 900;
}

h6 {
  font-weight: 900;
}

/* TABLES */
table {
  border-collapse: collapse;
}

/* LISTS */
ul {
  list-style-position: inside;
  text-indent: -1em;
  padding-left: 1em;
}

li {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

/* LINKS */
a {
  color: inherit;
}

/* BUTTONS */
button {
  position: relative;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border: 1px solid var(--rule);
  border-radius: 0.3rem;
  font-weight: normal;
  font-size: 0.8rem;
  background-color: var(--gradient-light);
  color: var(--accent);
  min-height: 2rem;
}
button:hover {
  cursor: pointer;
}

button.loading {
  pointer-events: none;
  opacity: 0.7;
}
button.loading:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.75rem;
  margin-left: -0.75rem;
  border: 5px solid transparent;
  border-top: 5px solid var(--gray-2);
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  animation: button-spin 1s linear infinite;
}

@keyframes button-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* FORMS */
input {
  accent-color: var(--gray-3);
}

input[type="email"],
[type="text"],
[type="number"],
[type="date"],
[type="password"] {
  box-shadow: none;
  border: 1px solid var(--rule);
  border-radius: 0.3rem;
  min-height: 2rem;
  outline: none;
  padding-left: 0.5rem;
  color: var(--text-light);
}

input[type="email"]:focus,
[type="text"]:focus,
[type="number"]:focus,
[type="password"]:focus {
  border: 1px solid var(--accent);
  box-shadow: none;
}

input[type="email"]:disabled,
[type="text"]:disabled,
[type="number"]:disabled,
[type="date"]:disabled,
[type="password"]:disabled {
  color: var(--gray-3);
  border: 1px solid var(--gray-4);
  background-color: white;
}

input[type="file"] {
  min-height: 2rem;
}

textarea {
  box-shadow: none;
  border: 1px solid var(--rule);
  border-radius: 0.3rem;
  min-height: 2rem;
  outline: none;
  padding: 0.5rem;
  color: var(--text-light);
}

textarea:focus {
  border: 1px solid var(--accent);
  box-shadow: none;
}

input[type="email"]:disabled,
[type="text"]:disabled,
[type="number"]:disabled,
[type="date"]:disabled,
[type="password"]:disabled {
  color: var(--gray-3);
  border: 1px solid var(--gray-4);
  background-color: white;
}

form input::placeholder {
  font-weight: 200;
}

form button {
  height: 100%;
}

select {
  box-shadow: none;
  background-color: white;
  border: 1px solid var(--gray-3);
  padding: 0.3rem;
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

select:disabled {
  color: var(--gray-3);
  border: 1px solid var(--gray-4);
  background-color: white;
}

/*******************/
/* NEW WINDOW ICON */
/*******************/
.new-window-icon {
  width: 1rem;
  height: auto;
  margin-left: 0.2rem;
}

/****************************************/
/* STICKY CONTACT ON LOWER RIGHT CORNER */
/****************************************/
#sticky-contact {
  position: fixed;
  bottom: 0;
  right: 0;
  display: grid;
  padding: 1rem;
  margin: 0.5rem;
  font-size: 12pt;
}

#sticky-title {
  color: var(--accent);
}
