/* Forms */
.input {
  border: 2px solid var(--color-text);
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--color-white);
  border-radius: 4px;
}
.input label {
  pointer-events: none;
  position: absolute;
  top: 14px;
  left: 14px;
  display: block;
  font-size: 16px;
  line-height: 21px;
  font-family: "Securitas Pro";
  font-weight: 400;
  color: var(--color-muted);
  transition: 0.3s ease;
  padding: 2px 6px;
  background-color: var(--color-white);
}
.input label.top {
  top: 0;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 18px;
  color: var(--color-text);
}
.input input {
  padding: 16px 18px;
  height: 100%;
  width: 100%;
  font-size: 17px;
  line-height: 20px;
  color: var(--color-text);
  font-family: "Securitas Pro";
  font-weight: 400;
}
.input input:focus + label {
  top: 0;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 18px;
  color: var(--color-text);
}

.textarea-field {
  border: 2px solid var(--color-text);
  border-radius: 4px;
  position: relative;
}
.textarea-field label {
  pointer-events: none;
  position: absolute;
  top: 14px;
  left: 14px;
  display: block;
  font-size: 16px;
  line-height: 21px;
  font-family: "Securitas Pro";
  font-weight: 400;
  color: var(--color-muted);
  transition: 0.3s ease;
  padding: 2px 6px;
  background-color: var(--color-white);
}
.textarea-field label.top {
  top: 0;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 18px;
  color: var(--color-text);
}
.textarea-field textarea {
  resize: none;
  width: 100%;
  padding: 16px 18px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 21px;
  font-family: "Securitas Pro";
  font-weight: 400;
  color: var(--color-muted);
  text-align: left;
  color: var(--color-text);
}
.textarea-field textarea:focus + label {
  top: 0;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 18px;
  color: var(--color-text);
}

.select {
  width: calc(50% - 5px);
  position: relative;
  border: 2px solid var(--color-text);
  border-radius: 4px;
  max-width: 305px;
}
.select:focus label {
  top: 0;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 18px;
  color: var(--color-text);
}
.select.active .select__options {
  display: flex;
  padding: 10px 0;
}
.select.active .select__selected::before {
  transform: translateY(-80%) rotate(-180deg);
}
.select__selected {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  cursor: pointer;
  text-align: start;
  color: var(--color-muted);
}
.select__selected::before {
  border-radius: 3px;
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: var(--color-text) transparent transparent transparent;
}
.select__selected h5 {
  color: var(--color-text);
}
.select__options {
  overflow-y: auto;
  position: absolute;
  top: calc(100% - 2px);
  left: -2px;
  width: calc(100% + 4px);
  z-index: 4;
  background-color: var(--color-white);
  overflow-y: auto;
  max-height: 220px;
  border: 2px solid var(--color-text);
  display: none;
  flex-direction: column;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.select__options li {
  transition: 0.3s ease;
  cursor: pointer;
  text-align: start;
  padding: 5px 14px;
  background-color: var(--color-white);
  border-top: unset;
  margin-bottom: 0 !important;
  margin: 2px 0;
  transition: 0.3s ease;
}
.select__options li:hover {
  color: var(--color-accent);
}
.select__options::-webkit-scrollbar {
  width: 3px;
}
.select__options::-webkit-scrollbar-thumb {
  background: var(--color-accent);
}
.select h5 {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
}
.select h5.is-placeholder {
  opacity: 0;
}
.select label {
  pointer-events: none;
  position: absolute;
  top: 14px;
  left: 14px;
  display: block;
  font-size: 16px;
  line-height: 21px;
  font-family: "Securitas Pro";
  font-weight: 400;
  color: var(--color-muted);
  transition: 0.3s ease;
  padding: 2px 6px;
  background-color: var(--color-white);
}
.select label.top {
  top: 0;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 18px;
  color: var(--color-text);
}

.progress {
  position: relative;
  margin: 4px;
  text-align: center;
  pointer-events: none;
}
.progress span.hide {
  display: none;
}

.bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-sizing: border-box;
  border: 7px solid var(--color-border);
  border-bottom-color: var(--color-accent);
  border-right-color: var(--color-accent);
}

.security-icon {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  fill: white;
}

.products h2 {
  margin-bottom: 20px;
}

.container-products {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding-top: 50px;
  gap: 8px;
}
.container-products > div {
  flex: 1;
  border: 1px solid var(--color-border);
}
.container-products p {
  padding: 0 25px 25px 25px;
}

.container-products img {
  max-width: 150px;
}

