/* Version 003 / 12-01.2023 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}

h1 {
  font-size: 1.6rem;
  margin-top: 0.5rem;
}

h3 {
  font-size: 1.1rem;
  margin-top: 2.5rem;
}

h4 {
  margin-top: 2rem;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* 1px Box around the thre columns // main Layout ------------------------------------------------------------------------------------------------------ */

.content__left,
.content__middle,
.content__right,
.formular__unsubscribe,
.content__unsubscribed {
  border: 1px solid #d8d8d8;
  padding: 2rem;
  flex: 1 1 0;
}

.content__nextLine {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  gap: 2rem;
}

/* Form Section ------------------------------------------------------------------------------------------------------ */

fieldset {
  display: contents;
}

form {
  background-color: white;
  color: black;
  padding: 24px;
  border-radius: 8px;
  margin-top: 40px;
}

input[type="text"],
input[type="email"],
input[type="number"],
select {
  font-family: Lato, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, sans-serif;
  width: 100%;
  padding: 12px 0px;
  margin: 8px 0;
  display: inline-block;
  border: 0px solid black;
  border-bottom: 1px solid #d8d8d8;
  box-sizing: border-box;
  transition: all 250ms ease-in-out;
}

input[type="text"]:focus,
input[type="text"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="number"]:focus,
input[type="number"]:active {
  outline: none;
  border-bottom: 1px solid black;
}

/* Submit Button */

input[type="submit"] {
  cursor: pointer;
  font-family: Lato, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid black;
  color: black;
  padding: 1rem 1rem;
  background-color: white;
}

input[type="submit"]:hover {
  background-color: black;
  color: white;
}

/* Unsubscribe Button */

.formular__submit input[type="submit"] {
  color: white;
  background-color: black;
}

.formular__submit input[type="submit"]:hover {
  background-color: white;
  color: black;
}

label {
  font-size: 1rem;
}

.formular__all {
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
  gap: 2rem;
}

.horizontalruler {
  margin-top: 0;
  color: #d8d8d8;
}

.formular__submit {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.input__left {
  width: 16rem;
}

/* Select Field Custom Styling -------------------------------------------- */

select {
  width: 100%;
  padding: 16px 5px;
  border: none;
  border-radius: 1px;
  background-color: #eee;
}

select:focus,
select:active {
  outline: none;
}

select option {
  margin: 40px;
  background: #eee;
  color: black;
}

/* Radio Buttons and Input fields Custom Styling -------------------------------------------- */

/* The container */
.container {
  font-size: 1rem;
  display: flex;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
}

/* Uikit Override ------------------------------------------------------------------------------------------------------ */

.uk-checkbox,
.uk-radio {
  border: 1px solid black;
}

.uk-input,
.uk-select:not([multiple]):not([size]) {
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

.float-label select {
  background-color: transparent !important;
  background-image: none !important;
  border: 0;
  border-bottom: 1px solid #d8d8d8;
  cursor: pointer;
  font-size: 0.88889rem;
  padding-left: 0;
  padding-right: 30px !important;
}

/* Select Country and Language ------------------------------------------------------------------------------------------------------ */

.select__left--country,
.select__left--language,
.select__left--year,
.select__left--age {
  width: 16rem;
}

/* Hero Section ------------------------------------------------------------------------------------------------------ */

/* .hero__background {
  background-color: #f8f8f8;
  background-image: url("https://image.s10.sfmc-content.com/lib/fe3a157075640575701674/m/1/68e2484c-324e-493b-930c-02b5677ec6eb.jpg");
  display: cover;
  height: 400px;
  background-repeat: no-repeat;
} */

.hero__content {
  display: flex;
  flex-direction: column;
  padding-left: 4rem;
  padding-right: 2rem;
  max-width: 600px;
  text-align: left;
  /* width: clamp(min(10vw, 20rem), 300px, max(90vw, 55rem)); */
}

.hero__headline {
  font-size: 2.5rem;
  margin-top: 6rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 2.8rem;
}

.hero__subheadline {
  font-weight: 200;
  margin-top: 1rem;
  font-size: 1.2rem;
}

/* Utility Classes -------------------------------------------- */

.towa__flex--row {
  flex-direction: row;
  display: flex;
  gap: 3rem;
}

.towa__flex--rowRadio {
  flex-direction: row;
  display: flex;
}

.towa__flex--column {
  flex-direction: column;
  display: flex;
  justify-content: start;
}

.towa__margin--left {
  margin-left: 1rem;
}

.towa__margin--right {
  margin-right: 1rem;
}

.towa__margin--top {
  margin-top: 1rem;
}

.towa__margin--bottom {
  margin-bottom: 1rem;
}

.towa__flex--grow {
  flex-grow: 2.2;
}

.towa__flex--center {
  justify-content: center;
  align-items: center;
}

.towa__hide {
  display: none;
  opacity: 0;
}
.towa__show {
  display: block;
  opacity: 1;
}

.towa__link:hover {
  background-color: black;
  color: white;
}
