@import url('fonts.css');

/*
 Theme Name:   THERASPORT Heidelberg
 Description:  Template for THERASPORT Heidelberg
 Author:       HAAS DIGITALAGENTUR
 Author URI:   https://www.haasdigital.de
 Version:      1.0.0.0
*/

:root {
  
  /* colors */  
  --orange-600: #E5702A;
  --orange-500: rgba(229, 112, 42, 0.9);
  --orange-100: rgba(229, 112, 42, 0.05);
  
  --blue-600: #07284A;
  --blue-300: rgba(7, 40, 74, 0.35);
  --blue-200: rgba(7, 40, 74, 0.25);
  --blue-100: rgba(7, 40, 74, 0.05);
  
  --grey-100: #ffffff;
  --grey-200: #f4f4f4;
  --grey-300: #dddddd;
  --grey-400: #999999;
  --grey-500: #666666;
  --grey-600: #000000;
  
  --green-600: #00b068;
  --red-600: #ff1e56;
  --yellow-600: #f9b02d;
  
  /* sizes */
  --h1-font-size: 64px;
  --h2-font-size: 48px;
  --h3-font-size: 36px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 20px;
  --body1-font-size: 24px;
  --body2-font-size: 20px;
  --body3-font-size: 16px;
  --body4-font-size: 14px;
  --body5-font-size: 12px;
  
  /* weights */
  --light-weight: 300;
  --regular-weight: 400;
  --bold-weight: 700;
  
  /* settings */
  --border-radius: 0;
  --border-radius-min: 8px;
  --border-radius-max: 25px;
  --border-size: 1px;
  
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

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

html,
body {
  height: 100%;
  position: relative;
}

body.login {
  margin: 0 auto;
  padding: 0;
  background-color: var(--grey-100);
  font-family: 'Manrope', 'Helvetica', arial, sans-serif;
  font-size: 20px;
  font-weight: var(--regular-weight);
  color: var(--grey-500);
  overflow: auto;
}

/* texts */
h1,
.h1 {
  margin-bottom: 50px;
  font-size: var(--h1-font-size);
  font-weight: var(--bold-weight);
  color: var(--blue-600);
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

h1 span,
.h1 span {
  font-weight: var(--light-weight);
}

h2,
.h2 {
  margin-bottom: 40px;
  font-size: var(--h2-font-size);
  font-weight: var(--bold-weight);
  color: var(--orange-600);
  line-height: 1.25;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  position: relative;
  display: block;
}

h3,
.h3 {
  margin-bottom: 30px;
  font-size: var(--h3-font-size);
  font-weight: var(--regular-weight);
  color: var(--blue-600);
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

h4,
.h4 {
  margin-bottom: 20px;
  font-size: var(--h4-font-size);
  font-weight: var(--bold-weight);
  color: var(--blue-600);
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

h5,
.h5 {
  margin-bottom: 20px;
  font-size: var(--h5-font-size);
  font-weight: var(--bold-weight);
  color: var(--blue-600);
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

h6,
.h6 {
  margin-bottom: 20px;
  font-size: var(--h6-font-size);
  font-weight: var(--bold-weight);
  color: var(--blue-600);
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: uppercase;
}

p, 
address, 
.p {
  margin-bottom: 40px;
  font-size: var(--body1-font-size);
  font-weight: var(--light-weight);
  color: var(--blue-600);
  letter-spacing: 0;
  line-height: 1.5;
}

p:last-child, 
address:last-child {
  margin: 0;
}

p.small,
p.small a {
  font-size: var(--body2-font-size) !important;
}

strong,
.bold {
  font-weight: var(--bold-weight);
}

p mark {
  background-color: var(--grey-500);
  padding: 10px 20px;
  font-weight: var(--regular-weight);
  color: var(--grey-100);
  line-height: 200%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

p mark:hover {
  background-color: var(--orange-600);
  color: var(--grey-100);
}

@media only screen and (max-width: 768px) {
  
  h1, .h1 {
    font-size: var(--h2-font-size);
  }
  
  h2, .h2 {
    font-size: var(--h3-font-size);
  }
  
  h3, .h3 {
    font-size: var(--h4-font-size);
  }
  
  h4, .h4 {
    font-size: var(--h5-font-size);
  }
  
  p, address {
    font-size: var(--body1-font-size);
  }
  
}

@media only screen and (max-width: 575px) {
  
  p, address {
    font-size: var(--body2-font-size);
  }
  
}

/* links */
a,
a:link,
a:active,
a:visited {
  font-weight: var(--regular-weight);
  color: var(--orange-600);
  text-decoration: none;
  outline: 0;
  -webkit-transition: background-color 0.4s ease 0s, border 0s ease 0s, color 0.4s ease 0s, opacity 0.4s ease-in-out 0s;
  -moz-transition: background-color 0.4s ease 0s, border 0s ease 0s, color 0.4s ease 0s, opacity 0.4s ease-in-out 0s;
  -o-transition: background-color 0.4s ease 0s, border 0s ease 0s, color 0.4s ease 0s, opacity 0.4s ease-in-out 0s;
  transition: background-color 0.4s ease 0s, border 0s ease 0s, color 0.4s ease 0s, opacity 0.4s ease-in-out 0s;
  transition: all 0.2s ease-in-out;
  transition-duration: 0.5s;
}

a:hover {
  color: var(--blue-600);
  text-decoration: none;
}

.wpcf7-list-item-label a {
  padding-bottom: 6px;
  color: var(--orange-600);
}

.wpcf7-list-item-label a:hover {
  color: var(--orange-600);
}

[data-bs-toggle="modal"] {
  cursor: pointer;
}

a.ext::before {
  content: '';
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0v-5z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  text-decoration: none;
  border: 0 !important;
}

a img {
  vertical-align: top;
}

p a img {
  border: none !important;
}

@media only screen and (max-width: 768px) {
  
  p a:hover,
  address a:hover {
    color: var(--grey-500) !important;
  }
  
}

/* images */
img, picture {
  width: 100%;
  height: auto;
  display: block;
}

/* login */

.login #login_error, .login .message, .login .success {
  margin: 0 0 40px 0;
  padding: 20px 16px;
  font-size: var(--body1-font-size);
  font-weight: var(--regular-weight);
  color: var(--blue-600);
  letter-spacing: 0;
  line-height: 1.5;
  box-shadow: none;
}

.login .forgetmenot label, .login .pw-weak label {
  font-size: var(--body2-font-size);
}

.login #backtoblog a, .login #nav a {
  font-size: var(--body2-font-size);
  color: var(--orange-600);
}

.login #backtoblog a:hover, .login #nav a:hover {
  color: var(--blue-600);
}

.login .privacy-policy-page-link a {
  font-size: var(--body2-font-size);
}

.login form{
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  margin: 0 auto;
  padding: 40px 30px;
  border: 0;
  border-radius: var(--border-radius-min);
  -moz-border-radius: var(--border-radius-min);
  -webkit-border-radius: var(--border-radius-min);
}

#login {
  background-color: var(--grey-100);
  margin: 0 auto 50px auto;
  width: 90%;
  max-width: 480px;
}

#login h1 a, .login h1 a {
  background-image: url('/wp-content/uploads/logo-therasport-heidelberg.svg') !important;
  width: 100%;
  height: 90px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-bottom: 40px;
  outline: none !important;
  content: '' !important;
  border: 0;
}

#login h1 a:hover, .login h1 a:hover {
  border: 0;
}

.login #backtoblog a:focus, .login #nav a:focus, .login h1 a:focus {
  color: var(--orange-600);
}

.login label {
  font-size: var(--body2-font-size);
  color: var(--blue-600);
  width: 100%;
}

.login form .forgetmenot{
	
}

.login .button-primary {
  float: none;
}

#login form p.submit{
  margin-top:15px;
}

/* buttons */
.login.wp-core-ui .button-primary {
  padding: 20px 32px !important;
  background-color: var(--orange-600) !important;
  font-size: var(--body2-font-size) !important;
  font-weight: var(--regular-weight) !important;
  color: var(--grey-100) !important;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1.5;
  border: var(--border-size) solid var(--orange-600) !important;
  border-radius: var(--border-radius-min) !important;
  -webkit-border-radius: var(--border-radius-min) !important;
  display: inline-block;
  transition: all 0.25s;
  text-align: center;
  vertical-align: middle;
  /*white-space: nowrap;*/
  cursor: pointer;
}

.login.wp-core-ui .button-primary:hover {
  background-color: var(--blue-600) !important;
  color: var(--grey-100) !important;
  border: var(--border-size) solid var(--blue-600) !important;
}

.wp-core-ui .button-primary.focus, 
.wp-core-ui .button-primary:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

@media screen and (max-width:575px) {

  .login.wp-core-ui .button-primary {
    padding: 8px 20px;
    line-height: 1.25;
  }

}

.login form .input, .login input[type=password], .login input[type=text], input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], select, textarea {
  width: 100%;
  padding: 12px 20px !important;
  background-color: var(--grey-100) !important;
  font-size: var(--body2-font-size);
  letter-spacing: 0;
  color: var(--blue-600) !important;
  line-height: 24px;
  border-radius: var(--border-radius-min);
  -webkit-border-radius: var(--border-radius-min);
  -moz-border-radius: var(--border-radius-min);
  border: 1px solid var(--blue-300);
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

input[type=checkbox], input[type=radio] {
  border-radius: var(--border-radius-min);
  -moz-border-radius: var(--border-radius-min);
  -webkit-border-radius: var(--border-radius-min);
  height: 32px;
  width: 32px;
  background-color: var(--grey-100);
  border: var(--border-size) solid var(--blue-300);
}

input[type=checkbox]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime-local]:focus, input[type=datetime]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=password]:focus, input[type=radio]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus,
input[type=checkbox]:hover, input[type=color]:hover, input[type=date]:hover, input[type=datetime-local]:hover, input[type=datetime]:hover, input[type=email]:hover, input[type=month]:hover, input[type=number]:hover, input[type=password]:hover, input[type=radio]:hover, input[type=search]:hover, input[type=tel]:hover, input[type=text]:hover, input[type=time]:hover, input[type=url]:hover, input[type=week]:hover, select:hover, textarea:hover {
  border: 1px solid var(--blue-600);
  box-shadow: none;
  outline: 0;
}

input[type=checkbox]:checked::before {
  height: 2rem;
  width: 2rem;
  color: var(--blue-600);
}

a, a img {
  outline: none;
}