﻿
.form-field {
  margin-bottom: 25px;
}

label {
  font-weight: bold;
  display: block;
  line-height: 1.5;
  margin-bottom: 5px;
  cursor: pointer;
}

.hint-text {
  font-size: 0.8rem;
  color: #777575;
}

.styled-button {
  color: #083e3b;
  font-weight: bold;
  background-color: lightseagreen;
  border: 3px solid #188781;
  padding: 0.5rem;
}
.styled-button:hover, .styled-button:active, .styled-button:focus {
  background-color: #24c8bf;
  cursor: pointer;
  -webkit-transform: translate(1px, 1px);
          transform: translate(1px, 1px);
}
.styled-button:focus {
  outline: 3px solid orange;
}

.styled-list {
  list-style-type: initial;
  margin-left: 2rem;
}
.styled-list li {
  line-height: 1.25;
}
.styled-list ul {
  list-style-type: circle;
  margin-left: 1.25rem;
}

.expand-button {
cursor: pointer;
    display: block;
    width: 36%;
    margin-top: 11px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #b96538;
    border-radius: 8px;
    background-color: darkcyan;
    color: #000000;
    font-size: 16px;
    padding: 6px;
}
.expand-button:hover, .expand-button:active, .expand-button:focus {
  background-color: #007272;
}

.special-text {
  position: relative;
  max-height: 260px;
  overflow: hidden;
  padding:5px;
  -webkit-transition: max-height 1s ease;
  transition: max-height 1s ease;
}
.special-text.-expanded {
  max-height: 160vh;
}

.special-text:not(.-expanded)::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(white));
  background: linear-gradient(rgba(255, 255, 255, 0), #d30bff00);
}