/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */html,body,p,ol,ul,li,dl,dt,dd,blockquote,figure,fieldset,legend,textarea,pre,iframe,hr,h1,h2,h3,h4,h5,h6{margin:0;padding:0}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}ul{list-style:none}button,input,select,textarea{margin:0}html{-webkit-box-sizing:border-box;box-sizing:border-box}*,*::before,*::after{-webkit-box-sizing:inherit;box-sizing:inherit}img,video{height:auto;max-width:100%}iframe{border:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}td:not([align]),th:not([align]){text-align:left}

/*
 * @package SuperLogon
 * 2020, David Block
 */

/*// typo //*/

:root {
  --gap: 20px;
  --col-main: #10ccea;
  --col-main-light: #0ccdea;
  --col-main-dark: #0eb9d5;
  --col-front: #212229;
  --col-front-light: #86898a;
  --col-back: #f8f8fa;
  --col-white: #fff;
  --col-border: #dbdcdf;
  --col-focus: rgba(12, 205, 234, .3);
  font-size: 14px;
}

@media only screen and (min-width: 480px) {
  :root {
    font-size: 16px;
  }
}

* {
  position: relative;
}

body {
  background-color: var(--col-back);
  font-family: BlinkMacSystemFont,-apple-system,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  line-height: 1.4;
}

a {
  color: var(--col-front)
}

.info-notice {
  color: var(--col-front-light)
}

.is-small {
  font-size: .8125em
}

/*// layout //*/
.container {
  display: block;
  margin: 6rem auto;
  max-width: 480px;
  width: 100%;
}

.page-header {
  text-align: center;
}

h1,
h2,
h3,
p,
.register--login-lostpassword {
  margin-bottom: calc(var(--gap) / 2);
}

strong,
b,
.panel--title {
  font-weight: 600;
}

.copyright {
  text-align: center;
}

/*// form //*/
textarea,
input,
button {
  font-size: 1rem;
  line-height: 1.25;
  padding: .667em 1em;
}

button,
.button {
  background-color: var(--col-main);
  border: 0;
  border-radius: .25em;
  color: var(--col-back);
  line-height: 1;
  outline: none;
  text-transform: uppercase;
  -webkit-transition: background-color .125s ease-in;
  transition: background-color .125s ease-in;
}

button:hover,
.button:hover {
  background-color: var(--col-main-light);
  cursor: pointer;
}

textarea,
input[type='text'],
input[type='email'],
input[type='password'] {
  border: 1px solid var(--col-border);
  -webkit-box-shadow: 0;
          box-shadow: 0;
  -webkit-transition: -webkit-box-shadow .125s ease-in;
  transition: -webkit-box-shadow .125s ease-in;
  transition: box-shadow .125s ease-in;
  transition: box-shadow .125s ease-in, -webkit-box-shadow .125s ease-in;
  width: 100%;
}

textarea::-webkit-input-placeholder,
input[type='text']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder {
  color: var(--col-front-light);
}

textarea:-ms-input-placeholder,
input[type='text']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
input[type='password']:-ms-input-placeholder {
  color: var(--col-front-light);
}

textarea::-ms-input-placeholder,
input[type='text']::-ms-input-placeholder,
input[type='email']::-ms-input-placeholder,
input[type='password']::-ms-input-placeholder {
  color: var(--col-front-light);
}

textarea::placeholder,
input[type='text']::placeholder,
input[type='email']::placeholder,
input[type='password']::placeholder {
  color: var(--col-front-light);
}

textarea:focus,
input[type='text']:focus,
input[type='email']:focus,
input[type='password']:focus {
  border-color: var(--col-main-dark);
  -webkit-box-shadow: 0 0 0 .125em var(--col-focus);
          box-shadow: 0 0 0 .125em var(--col-focus);
  outline: none;
}

button,
.button,
input[type='text'],
input[type='email'],
input[type='password'],
select {
  height: 2.5em;
  margin: 0 0 10px;
}

.select-field {
  border: 1px solid var(--col-border);
  margin: 0 0 10px;
  position: relative;
}

select {
	background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  font-size: 1em;
  max-width: 100%;
  outline: 0;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: block;
  line-height: 1.5;
  margin: 0;
  padding: .45em 2.5em .45em 1em;
  position: relative;
  vertical-align: top;
  width: 100%;
}

.select-field::after {
  border: 3px solid var(--col-front-light);
  border-radius: 2px;
  border-right: 0;
  border-top: 0;
  content: '';
  display: block;
  height: .625em;
  margin-top: -.4375em;
  pointer-events: none;
  position: absolute;
  right: 1.125em;
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  width: .625em;
  z-index: 4;
}

input[type="checkbox"] {
  display: inline;
  float: left;
  margin-bottom: calc(var(--gap) / 2);
  top: 3px;
}

input[type='checkbox'] ~ label {
  display: inline-block;
  margin-bottom: calc(var(--gap) / 2);
  padding-left: .5em;
  width: calc(100% - 24px);
}

input[type='checkbox'] ~ label::after {
  clear: both;
  content: '';
  display: table;
}

/*//// form specific ////*/


/*// tabs //*/
.tabbed {
  margin: 20px 0;
}

.tab-navigation {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
}

.tab-navigation label {
  background-color: var(--col-border);
  cursor: pointer;
  display: block;
  line-height: 1;
  margin: 0;
  opacity: 1;
  padding: 20px;
  text-align: center;
  -webkit-transition: opacity .125s ease-in;
  text-transform: uppercase;
  transition: opacity .125s ease-in;
  width: 100%;
}

.tab-navigation label:hover {
  opacity: .75;
}


#tab1:checked ~ nav label[for="tab1"],
#tab2:checked ~ nav label[for="tab2"] {
  background-color: var(--col-white);
}

.tabbed figure {
  display: block;
  margin-left: 0;
  clear: both;
}

.tabbed > input,
.tabbed figure > section { display: none; }

.tabbed figure > section {
  padding: 20px;
  width: 100%;
  background-color: var(--col-white);
}

#tab1:checked ~ figure .tab1,
#tab2:checked ~ figure .tab2 {
  display: block;
}


/*// generell //*/
.is--hidden {
  display: none;
}


/*// specific behavior //*/
#register_billing_shippingAddress:checked ~ .register--shipping {
  display: block;
}
