@font-face {
  font-family: 'Source Sans Pro';
  src: url('/themes/custom/sanarena/fonts/SourceSansPro-Regular.eot');
  src: url('/themes/custom/sanarena/fonts/SourceSansPro-Regular.eot?#iefix') format('embedded-opentype'),
       url('/themes/custom/sanarena/fonts/SourceSansPro-Regular.woff2') format('woff2'),
       url('/themes/custom/sanarena/fonts/SourceSansPro-Regular.woff') format('woff'),
       url('/themes/custom/sanarena/fonts/SourceSansPro-Regular.svg#SourceSansPro-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Source Sans Pro Bold';
  src: url('/themes/custom/sanarena/fonts/SourceSansPro-Bold.eot');
  src: url('/themes/custom/sanarena/fonts/SourceSansPro-Bold.eot?#iefix') format('embedded-opentype'),
       url('/themes/custom/sanarena/fonts/SourceSansPro-Bold.woff2') format('woff2'),
       url('/themes/custom/sanarena/fonts/SourceSansPro-Bold.woff') format('woff'),
       url('/themes/custom/sanarena/fonts/SourceSansPro-Bold.svg#SourceSansPro-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Source Sans Pro Bold Italic';
  src: url('/themes/custom/sanarena/fonts/SourceSansPro-BoldIt.eot');
  src: url('/themes/custom/sanarena/fonts/SourceSansPro-BoldIt.eot?#iefix') format('embedded-opentype'),
       url('/themes/custom/sanarena/fonts/SourceSansPro-BoldIt.woff2') format('woff2'),
       url('/themes/custom/sanarena/fonts/SourceSansPro-BoldIt.woff') format('woff'),
       url('/themes/custom/sanarena/fonts/SourceSansPro-BoldIt.svg#SourceSansPro-BoldIt') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Source Sans Pro Italic';
  src: url('/themes/custom/sanarena/fonts/SourceSansPro-It.eot');
  src: url('/themes/custom/sanarena/fonts/SourceSansPro-It.eot?#iefix') format('embedded-opentype'),
  url('/themes/custom/sanarena/fonts/SourceSansPro-It.woff2') format('woff2'),
  url('/themes/custom/sanarena/fonts/SourceSansPro-It.woff') format('woff'),
  url('/themes/custom/sanarena/fonts/SourceSansPro-It.svg#SourceSansPro-It') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Source Sans Pro Light';
  src: url('/themes/custom/sanarena/fonts/SourceSansPro-Light.eot');
  src: url('/themes/custom/sanarena/fonts/SourceSansPro-Light.eot?#iefix') format('embedded-opentype'),
  url('/themes/custom/sanarena/fonts/SourceSansPro-Light.woff2') format('woff2'),
  url('/themes/custom/sanarena/fonts/SourceSansPro-Light.woff') format('woff'),
  url('/themes/custom/sanarena/fonts/SourceSansPro-Light.svg#SourceSansPro-Light') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Source Sans Pro Light Italic';
  src: url('/themes/custom/sanarena/fonts/SourceSansPro-LightIt.eot');
  src: url('/themes/custom/sanarena/fonts/SourceSansPro-LightIt.eot?#iefix') format('embedded-opentype'),
  url('/themes/custom/sanarena/fonts/SourceSansPro-LightIt.woff2') format('woff2'),
  url('/themes/custom/sanarena/fonts/SourceSansPro-LightIt.woff') format('woff'),
  url('/themes/custom/sanarena/fonts/SourceSansPro-LightIt.svg#SourceSansPro-LightIt') format('svg');
  font-weight: normal;
  font-style: normal;
}

:root {
  --mainColor: #242424;
  --accentColor: #0067a5;
  --colorGreen: #52C554;
  --colorGrey: #A7A7A7;
  --colorRed: #F36565;
  --colorRedLight: #FFD0D0;
  --fontRegular: 'Source Sans Pro', sans-serif;
  --fontBold: 'Source Sans Pro Bold', sans-serif;
  --lightGrey: #eaeaea;
  --mainFont: 'Source Sans Pro Light', sans-serif;
  --mainSize: 24px;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
  overflow: hidden auto;
}

body {
  font-family: 'Source Sans Pro Light', sans-serif;
  font-family: var(--mainFont);
  font-size: 24px;
  font-size: var(--mainSize);
  color: #242424;
  color: var(--mainColor);
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

.layout-container {
  overflow: hidden;
}

main {
  margin-top: 170px;
  display: block;
}

main h1 {
    font-size: 90px;
    color: #242424;
    color: var(--mainColor);
    font-weight: 300;
    padding: 90px 0 55px 0;
    margin: 0;
  }

main h1::after {
      width: 75px;
      display: block;
      content: ' ';
      border-bottom: 3px solid #242424;
      border-bottom: 3px solid var(--mainColor);
      margin-top: 11px;
    }

main h2 {
    font-size: 42px;
    color: #242424;
    color: var(--mainColor);
    font-weight: normal;
  }

main h2 a {
      color: #242424;
      color: var(--mainColor);
    }

main h3 {
    font-size: 36px;
    color: #242424;
    color: var(--mainColor);
    font-weight: normal;
  }

main h4 {
    font-size: 24px;
    color: #242424;
    color: var(--mainColor);
    font-weight: 600;
  }

main ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
  }

main ul li {
      padding-left: 20px;
      text-indent: -20px;
    }

main ul li::before {
        content: "-";
        margin-right: 12px;
      }

main a {
    color: #0067a5;
    color: var(--accentColor);
    -webkit-text-decoration: none;
    text-decoration: none;
  }

main select {
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
  }

main iframe {
    width: 100%;
  }

select {
  -webkit-appearance: none !important;
  -webkit-border-radius: 0px !important;
  background-image: url("/themes/custom/sanarena/images/icons/svg/dropdown.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 22px;
}

@media screen and (max-width: 1300px) {
    main h1 {
      font-size: 80px;
    }
}

@media screen and (max-width: 970px) {
  main {
    margin-top: 0px;
  }
    main h1 {
      font-size: 65px;
      padding: 65px 0 35px 0;
    }
      main h1::after {
        width: 70px;
        border-bottom: 3px solid #242424;
        border-bottom: 3px solid var(--mainColor);
      }

}

@media screen and (max-width: 768px) {
  :root {
    --mainSize: 20px;
  }
    main h1 {
      font-size: 60px;
      padding: 50px 0 25px 0;
    }
      main h1::after {
        border-bottom: 2px solid #242424;
        border-bottom: 2px solid var(--mainColor);
      }
    main h2 {
      font-size: 36px;
    }

}

@media screen and (max-width: 480px) {
    main h1 {
      font-size: 45px;
      padding: 35px 0 15px 0;
    }
      main h1::after {
        width: 55px;
      }
    main h2 {
      font-size: 32px;
    }
    main h4 {
      font-size: 20px;
    }
    main p {
      font-size: 18px;
      line-height: 28px;
    }
}

.headerwrapper {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  height: 170px;
  top: 0;
  z-index: 400;
  background-color: white;
}

.headerwrapper.small {
    border-bottom: 1px solid #F4F4F4;
  }

header {
  width: 1300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.head {
  width: 320px;
  height: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

@media screen and (max-width: 1300px) {
  header {
    width: 100%;
  }

  .head {
    padding-left: 20px;
  }

  .menus {
    padding-right: 20px;
  }
}

@media screen and (max-width: 970px) {
  .headerwrapper {
    height: auto;
    position: relative;
  }
  .head {
    height: 140px;
    width: 220px;
  }
}

@media screen and (max-width: 768px) {
  header {
    display: block;
    position: relative;
  }

  .head {
    width: 100%;
    height: 85px;
    background-color: #fff;
  }

  .menus {
    width: 100%;
    display: none;
    background-color: #fff;
    padding-right: 0;
  }
}

footer {
  width: 100%;
  background-color: #242424;
  background-color: var(--mainColor);
  margin-top: 120px;
}

.block--branding {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: relative;
}

.block--branding img {
    padding-bottom: 30px;
  }

/*
.block--search {
  text-align: right;
  margin-top: auto;

  &::before {
    width: 22px;
    height: 23px;
    display: block;
    content: '';
    background-image: url("/themes/custom/sanarena/images/icons/png/search.png");
    background-size: cover;
    margin-bottom: 33px;
  }
}

.block--search .form-actions {
  display: none;
}

.block--search .js-form-item.form-item {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  left: 0;
  top: 0;
}

.block--search .js-form-item .form-search {
  width: 450px;
  height: 50px;
  position: absolute;
  font-size: 18px;
  color: var(--accentColor);
  font-weight: 300;
  left: 50%;
  margin-top: 100px;
  margin-left: -225px;
  padding: 0 20px;
  border: 1px solid var(--accentColor);
  border-radius: 50px;
}
*/

.block--footer {
  width: 1300px;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding-top: 60px;
}

@media screen and (max-width: 1300px) {
  .block--footer {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 970px) {
  .block--branding {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
  }
}

@media screen and (max-width: 768px) {
  .block--branding {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 135px;
            flex: 0 0 135px;
    -ms-flex-item-align: center;
        align-self: center;
  }
    .block--branding img {
      padding-bottom: 0px;
    }

  .block--search {
    display: none;
  }

  .block--footer {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .block--footer {
    display: table;
  }
}

.paragraph {
  margin: 0 auto;
}

.paragraph img {
    width: 100%;
    height: auto;
  }

.paragraph button {
    width: 360px;
    font-family: 'Source Sans Pro Light', sans-serif;
    font-family: var(--mainFont);
    font-size: 24px;
    font-size: var(--mainSize);
    color: #0067a5;
    color: var(--accentColor);
    background-color: #fff;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 52px;
    letter-spacing: 1.5px;
    margin-bottom: 80px;
    padding: 0px 30px 0px 30px;
    border: 0px;
    border-radius: 50px;
    cursor: pointer;
  }

.paragraph--type--accordion a {
    color: #fff;
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

.paragraph--type--accordion a:hover {
    font-style: italic;
    -webkit-text-decoration: none;
    text-decoration: none;
  }

.paragraph--type--accordion {
  border-bottom: 1px solid #0067a5;
  border-bottom: 1px solid var(--accentColor);
  border-top: 1px solid #0067a5;
  border-top: 1px solid var(--accentColor);
  margin-top: -1px;
}

.paragraph--type--accordion .accordion__btn {
    color: #0067a5;
    color: var(--accentColor);
  }

.paragraph--type--accordion .accordion__btn::before {
    //width: 23px;
      display: inline-block;
      position: absolute;
      margin-left: -45px;
    //margin-top: -3px;
    //content:url("/themes/custom/sanarena/images/icons/svg/icon_plus.svg");
      width: 23px;
      margin-top: 1px;
      content: url('/themes/custom/sanarena/images/icons/svg/icon_plus.svg');
    }

.paragraph--type--accordion.accordion__active {
    background-color: #0067a5;
    background-color: var(--accentColor);
    border-top: 1px solid #0067a5;
    border-top: 1px solid var(--accentColor);
    border-bottom: 1px solid #0067a5;
    border-bottom: 1px solid var(--accentColor);
  }

.paragraph--type--accordion.accordion__active .paragraph--type--title h2 {
        color: #fff;
        font-weight: 300;
      }

.paragraph--type--accordion.accordion__active .accordion__btn {
      color: #fff;
    }

.paragraph--type--accordion.accordion__active .accordion__btn::before {
      //width: 23px;
        display: inline-block;
        position: absolute;
        margin-left: -45px;
      //margin-top: -3px;
      //content:url("/themes/custom/sanarena/images/icons/svg/icon_plus.svg");
        width: 22px;
        margin-top: -10px;
        content: url('/themes/custom/sanarena/images/icons/svg/icon_minus.svg');
      }

.paragraph--type--accordion.accordion__active .field--accordion {
      margin-bottom: 60px;
    }

.paragraph--type--special {
  width: 1300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #0067a5;
}

.paragraph--type--special div h1 {
      color: #fff;
      padding-top: 55px;
      padding-bottom: 30px;
      padding-right: 20px;
      margin: 0px;
    }

.paragraph--type--special div h1::after {
        content: none;
      }

.paragraph--type--special p {
    -ms-flex-item-align: center;
        align-self: center;
  }

.paragraph--type--special input {
      width: 337px;
      background-color: #0067a5;
      background-color: var(--accentColor);
      font-family: 'Source Sans Pro Light', sans-serif;
      font-family: var(--mainFont);
      font-size: 24px;
      font-size: var(--mainSize);
      font-weight: 300;
      color: #fff;
      margin-bottom: 35px;
      padding: 0px 10px 8px 13px;
      border: none;
      border-bottom: 1px solid #fff;
    }

.paragraph--type--special select {
    width: 360px;
    background-color: #0067a5;
    background-color: var(--accentColor);
    font-family: 'Source Sans Pro Light', sans-serif;
    font-family: var(--mainFont);
    font-size: 24px;
    font-size: var(--mainSize);
    font-weight: 300;
    color: #fff;
    margin-bottom: 35px;
    border: none;
    border-bottom: 1px solid #fff;
    -moz-appearance: window;
    -webkit-appearance: none;
    background-image: url("/themes/custom/sanarena/images/icons/svg/dropdown_white.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 22px;
  }

.paragraph--type--special select:-moz-focusring {
       color: transparent;
       text-shadow: 0 0 0 #fff;
     }

.paragraph--widthfix {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1100px;
}

.paragraph--icongroup {
  display: none;
}

.paragraph--inconsingle img {
    width: 12px;
    margin-right: 18px;
    margin-left: 9px;
  }

.paragraph--singlecourses-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.paragraph--singlecourses {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
  padding-left: 100px;
  -ms-flex-item-align: center;
      align-self: center;
}

.paragraph--singlecourses button {
    margin-bottom: 20px;
  }

.paragraph--singlecourses-img {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  padding-right: 100px;
  -ms-flex-item-align: center;
      align-self: center;
}

.paragraph--type--special .paragraph--groupcourses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 580px;
}

.paragraph--type--special .paragraph--groupcourses h1 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    -ms-flex-item-align: center;
        align-self: center;
    padding: 0px;
    margin-left: 100px;
  }

.paragraph--type--special .paragraph--groupcourses form {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    -ms-flex-item-align: center;
        align-self: center;
    margin-left: 100px;
  }

.paragraph--type--special .paragraph--groupcourses button {
    margin-bottom: 20px;
  }

.paragraph--type--accordion p {
    margin-top: 0px;
  }

.paragraph--type--accordion h4 {
    color: #fff;
    margin-bottom: 0px;
    font-weight: 500;
  }

.paragraph--type--accordion img {
    width: 150px;
  }

.paragraph--type--title,
.paragraph--type--text,
.paragraph--type--media {
  width: 970px;
}

.paragraph--type--boxes.paragraph--view-mode--default {
  width: 1180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 100px;
}

.paragraph.paragraph--type--box {
  width: 370px;
  margin-bottom: 65px;
  margin-left: 0;
  margin-right: 0;
  -webkit-box-shadow: 0 0 21px 0px rgba(83, 83, 83, 0.15);
          box-shadow: 0 0 21px 0px rgba(83, 83, 83, 0.15);
}

.paragraph.paragraph--type--box h3 {
    width: 310px;
    font-size: 26px;
    font-weight: 600;
    text-align: left;
    margin: 30px auto;
  }

.paragraph--type--logos {
  width: 970px;
}

.paragraph--type--footer {
  margin: 0;
}

@media screen and (max-width: 1300px) {
    .paragraph input {
    }
  .paragraph--type--special {
    width: 100%;
  }

  .paragraph--widthfix {
    width: 100%;
    padding-left: 20px;
  }

  .paragraph--type--boxes.paragraph--view-mode--default {
    width: 100%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .paragraph--type--title,
  .paragraph--type--text,
  .paragraph--type--media {
    width: 970px;
    padding: 0px 22px 0px 22px;
  }
    .paragraph--type--special p {
      -webkit-box-flex: 1;
          -ms-flex: 1 1 50%;
              flex: 1 1 50%;
      padding-left: 20px;
      padding-right: 20px;
    }

  .paragraph.paragraph--type--box {
  }
    .paragraph--type--special .paragraph--groupcourses form {
      text-align: right;
      margin-right: 100px;
    }
}

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

}

@media screen and (max-width: 970px) {
    .paragraph select {
      width: 100%;
    }

    .paragraph button {
      width: 100%;
    }

    .paragraph input {
      width: 100%;
    }

  .paragraph--type--title,
  .paragraph--type--text,
  .paragraph--type--media {
    width: auto;
    padding: 0 19px 0 19px;
  }
    .paragraph--type--special .paragraph--groupcourses form {
      overflow: hidden;
      margin-right: 20px;
      margin-left: 20px;
    }
    .paragraph--type--special .paragraph--groupcourses h1 {
        margin-left: 0;
      }

  .paragraph--singlecourses,
  .paragraph--singlecourses-img {
    padding-left: 0px;
    padding-right: 0px;
  }

  .paragraph--type--boxes.paragraph--view-mode--default {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .paragraph--type--logos {
    width: auto;
    padding: 0px 22px 0px 22px;
  }
}

@media screen and (max-width: 768px) {
  .block--footer {
    height: 300px;
  }
    .paragraph button {
      width: 250px;
      font-size: 18px;
      line-height: 40px;
      text-align: center;
      -ms-flex-item-align: center;
          align-self: center;
    }
    .paragraph--singlecourses select {
      width: 350px;
    }
    .paragraph--type--special .paragraph--groupcourses form {
      text-align: center;
    }

  .paragraph.paragraph--type--box {
    width: 340px;
    margin-left: 16px;
    margin-right: 16px;
  }
    .paragraph.paragraph--type--box h3 {
      width: 270px;
    }

  .paragraph--type--boxes.paragraph--view-mode--default {
    margin-top: 70px;
  }

  .paragraph--type--footer {
    width: 50%;
    float: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
    .paragraph--type--footer:nth-child(3) {
      position: relative;
      padding-right: 0;
    }
    .paragraph--type--footer:nth-child(4) {
       display: none;
    }
}

@media screen and (max-width: 668px) {
    .paragraph--type--special .paragraph--groupcourses form {
    }
}

@media screen and (max-width: 610px) {
    .paragraph--type--special p {
      display: none;
    }
    .paragraph--type--special h1 {
      margin-top: 0px;
    }

  .paragraph--singlecourses-img {
    display: none;
  }

  .paragraph--type--special .paragraph--groupcourses {
    height: 480px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 60px;
  }
    .paragraph--type--special .paragraph--groupcourses form {
      margin-left: 0px;
      margin-top: -60px;
    }
}

@media screen and (max-width: 480px) {
  .paragraph--type--special {
    display: block;
    margin-bottom: 30px;
  }

  .paragraph--type--title,
  .paragraph--type--text,
  .paragraph--type--media {
    padding: 0 10px 0 10px;
  }

  .paragraph--widthfix {
    display: block;
    padding-left: 0;
  }

  .paragraph--singlecourses {
    margin-left: 20px;
    margin-top: 50px;
  }
    .paragraph--singlecourses form {
      margin-right: 20px;
      margin-top: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    .paragraph--singlecourses select {
      width: 100%;
      margin-right: 20px;
      background-size: 20px;
    }

  .paragraph--groupcourses {
    margin-left: 20px;
  }

  .paragraph--type--special .paragraph--groupcourses {
    display: block;
    height: auto;
    padding-top: 0px;
  }
    .paragraph--type--special .paragraph--groupcourses form {
      margin-right: 20px;
      margin-top: 0;
    }
    .paragraph--type--special .paragraph--groupcourses h1 {
      padding: 55px 20px 30px 0px;
    }

    .paragraph--type--special .paragraph--groupcourses button {
      margin-bottom: 20px;
    }

  .paragraph--type--boxes.paragraph--view-mode--default {
    margin-top: 50px;
  }

  .paragraph--type--footer {
    width: 100%;
    float: none;
    padding-right: 0;
  }
    .paragraph--type--footer:nth-child(1) {
      display: table-footer-group;
    }
    .paragraph--type--footer:nth-child(2) {
      display: table-header-group;
    }
    .paragraph--type--footer:nth-child(3) {
      position: relative;
      margin-left: 0;
      margin-top: 0;
      padding-right: 0;
      display: table-header-group;
    }
    .paragraph--type--footer:nth-child(4) {
      display: none;
    }
}

header {
  font-family: 'Source Sans Pro', sans-serif;
  font-family: var(--fontRegular);
}

header nav {
    text-align: right;
  }

header nav ul li {
        display: inline;
      }

header nav ul li a {
          font-size: 22px;
          color: #242424;
          color: var(--mainColor);
          text-transform: uppercase;
          -webkit-text-decoration: none;
          text-decoration: none;
          letter-spacing: 0.55px;
        }

header nav ul li a:hover {
            color: #0067a5;
            color: var(--accentColor);
          }

.nav--sub {
  font-family: 'Source Sans Pro Light', sans-serif;
  font-family: var(--mainFont);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.nav--sub h2 {
    display: none;
  }

.nav--sub ul {
    margin: 18px 0 0 0;
  }

.nav--sub ul li {
      padding: 0 5px;
    }

.nav--sub ul li::before {
        content: none;
      }

.nav--sub ul li a {
        font-size: 18px;
        color: #767676;
        font-weight: 300;
        text-transform: none;
      }

.nav--sub ul li a:hover {
          color: #0067a5;
          color: var(--accentColor);
        }

.nav--sub ul li .login--external::before {
          width: 6px;
          height: 13px;
          display: inline-block;
          margin-right: 5px;
          content: url('/themes/custom/sanarena/images/icons/svg/login_kunden.svg');
        }

.nav--main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 80%;
          flex: 1 1 80%;
  margin-top: auto;
  display: -ms-grid;
  align-self: baseline;
}

.nav--main ul {
    list-style: none;
    margin: 0;
    padding-bottom: 30px;
  }

.nav--main ul li {
      list-style: none;
      padding: 0 20px;
    }

.nav--main ul li::before {
        content: none;
      }

@media screen and (max-width: 970px) {
          header nav ul li a {
            font-size: 18px;
          }
    .nav--main ul {
      padding-bottom: 33px;
    }
      .nav--main ul li {
        padding: 0 9px;
      }
        .nav--sub ul li a {
          font-size: 16px;
        }
}

@media screen and (max-width: 860px) {
          header nav ul li a {
            font-size: 18px;
            letter-spacing: 0;
          }
    .nav--main ul {
      padding-bottom: 33px;
    }
      .nav--main ul li {
        padding: 0 3px;
      }
}

@media screen and (max-width: 768px) {
    header nav {
      text-align: center;
    }
        header nav ul li {
          display: block;
        }
          header nav ul li a {
            font-size: 20px;
          }
    .nav--main ul {
      padding-bottom: 10px;
      margin-top: 20px;
    }

  .nav--sub {
    display: table-footer-group;
  }
    .nav--sub ul {
      padding-left: 0px;
      padding-bottom: 30px;
    }
      .nav--sub ul li {
        padding: 5px 0;
      }
        .nav--sub ul li a {
          font-size: 20px;
        }
          .nav--sub ul li a[title~="English"] {
            display: block;
            position: absolute;
            top: 30px;
            right: 110px;
          }
    .nav--main ul {
      padding-left: 0px;
    }
      .nav--main ul li {
        padding: 5px 0;
      }
}

/**
 * This file only exists because the @media rules in `nav.css`
 * were initially written in using only `max-width` for each breakpoint.
 * So, you can't add styles applying by a `min-width` and greater,
 * without breaking the "semantic concept" of the code.

 * Because of that, this file keeps all `min-width` rules separated.
 */

@media screen and (max-width: 768px) {
  #mobile-nav-icon {
    height: 85px;
    width: 85px;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(/themes/custom/sanarena/images/icons/svg/burgernav.svg);
    background-repeat: no-repeat;
    background-position: center;
  }

  #mobile-nav-icon.open {
    color: yellow;
    background-image: url(/themes/custom/sanarena/images/icons/svg/closenav.svg);
    background-repeat: no-repeat;
    background-position: center;
  }

  #menus.open {
    display: table;
    border-bottom: 1px solid #F4F4F4;
  }
    #menus.open .nav--main {
      display: table-header-group;
    }
}

@media screen and (min-width: 769px) {
  #headerwrapper,
  #menus,
  #head {
    -webkit-transition: height 200ms linear;
    transition: height 200ms linear;
  }

  .head.small {
    width: 150px;
  }

  #headerwrapper.small,
  #menus.small,
  #head.small {
    height: 75px;
    -webkit-transition: height 200ms linear;
    transition: height 200ms linear;
  }

    #headerwrapper.small .block--branding, #menus.small .block--branding, #head.small .block--branding {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 145px;
              flex: 0 0 145px;
      -ms-flex-item-align: center;
          align-self: center;
    }

      #headerwrapper.small .block--branding img, #menus.small .block--branding img, #head.small .block--branding img {
        padding-bottom: 0px;
        padding-top: 5px;
      }
    #headerwrapper.small .block--search, #menus.small .block--search, #head.small .block--search {
      padding-left: 10px;
    }
      #headerwrapper.small .block--search::before, #menus.small .block--search::before, #head.small .block--search::before {
        margin-bottom: 25px;
      }
      #headerwrapper.small .nav--main ul, #menus.small .nav--main ul, #head.small .nav--main ul {
        padding-bottom: 23px;
      }
        #headerwrapper.small .nav--main ul li, #menus.small .nav--main ul li, #head.small .nav--main ul li {
          padding: 0 6px;
        }
}

.form--user--login {
  width: 300px;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 78px;
}

.form--user--login input {
    width: 300px;
    height: 35px;
    font-size: 18px;
    font-weight: 300;
    color: #0067a5;
    color: var(--accentColor);
    padding: 0 20px 0 20px;
    border: 1px solid #0067a5;
    border: 1px solid var(--accentColor);
    border-radius: 50px;
  }

.form--user--login .form-item-name {
  margin-bottom: 40px;
}

.form--user--login .form-required {
  display: block;
  margin-bottom: 10px;
}

.form--user--login .form-actions.form-wrapper {
  width: 175px;
  margin: 30px auto 70px auto
}

.form--user--login .form-actions .button.form-submit {
  width: 100%;
  height: 51px;
  background-color: #0067a5;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  cursor: pointer;
}

.field--media--single {
  height: 220px;
  overflow: hidden;
}

.field--media--single img {
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
  }

.field--text--html {
  font-size: 16px;
  color: #0067a5;
  color: var(--accentColor);
  text-align: left;
  margin: 8px 30px 0px 30px;
}

.field--text--html p {
    margin-top: 0px;
  }

.field--course--info {
  width: 310px;
  height: 45px;
  text-align: right;
  margin: 0 auto;
  border-bottom: 1px solid #d8d8d8;
}

.field--course--info span {
    font-size: 28px;
    font-weight: 300;
    color: #979797;
  }

.field--button {
  margin-top: 40px;
  margin-bottom: 30px;
}

.field__field__button__link {
  width: 210px;
  background-color: #0067a5;
  background-color: var(--accentColor);
  text-align: center;
  margin: 0 auto;
  border-radius: 50px;
}

.field__field__button__link a {
    display: block;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    -webkit-text-decoration: none;
    text-decoration: none;
    letter-spacing: 2.5px;
    line-height: 50px;
    cursor: pointer;
  }

.field__int__duration {
  position: relative;
  float: left;
  top: 7px;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #242424 !important;
  color: var(--mainColor) !important;
  line-height: 25px;
}

.field__int__duration::before {
    width: 25px;
    float: left;
    content: url('/themes/custom/sanarena/images/icons/svg/clock.svg');
    line-height: 25px;
    margin-right: 10px;
  }

.field__course__type__single {
  width: 12px;
  display: inline-block;
  padding-right: 4px;
}

.field__course__type__single::after {
    position: relative;
    top: 3px;
    content: url('/themes/custom/sanarena/images/icons/svg/icon_single.svg');
  }

.field__course__type__group {
  width: 30px;
  display: inline-block;
}

.field__course__type__group::after {
    position: relative;
    top: 3px;
    content: url('/themes/custom/sanarena/images/icons/svg/icon_group.svg');
  }

.field-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.field-logos div {
    width: 21%;
    padding-right: 5.33%;
  }

.field-logos div:nth-child(4n + 0) {
      padding-right: 0;
    }

.field--plain.accordion__btn {
    width: 970px;
    font-size: 40px;
    font-weight: 300;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    //color: #0067a5;
    //color: var(--accentColor);
    margin: 0 auto;
    margin-bottom: 0px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #fff;
    cursor: pointer;
  }

.field--accordion {
  /* values of accordion (js) animation */
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
  /* - - - */

  color: #fff;
  font-weight: 300;
}

.field--accordion ul {
    margin-top: 0;
    padding-top: 15px;
  }

.field--accordion ul li {
      padding-top: 1px;
      padding-bottom: 1px;
    }

.field--block--footer p {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    margin: 5px 0;
  }

.field--block--footer img {
    width: 230px;
    height: auto;
    margin-bottom: 20px;
  }

.field--block--footer a {
    color: #fff;
    -webkit-text-decoration: none;
    text-decoration: none;
  }

@media screen and (max-width: 970px) {
    .field--plain.accordion__btn {
       width: 100%;
       padding-left: 64px;
       padding-right: 19px;
    }

}

@media screen and (max-width: 768px) {
  .field--media--single {
    height: 200px;
  }
    .field--media--single img {
      height: 200px;
    }

  .field--course--info {
    width: 270px;
  }

  .field--text--html {
    width: 270px;
    margin: 0 auto;
  }
  .field--plain.accordion__btn {
     font-size: 30px;
   }

}

@media screen and (max-width: 480px) {
    .field-logos div {
      width: 30%;
      padding-right: 5%;
    }
      .field-logos div:nth-child(3n + 0) {
        padding-right: 0;
      }
      .field-logos div:nth-child(4n + 0) {
        padding-right: 5%;
      }
  .field--plain.accordion__btn {
     width: 100%;
     padding-left: 55px;
     padding-right: 10px;
   }
  .field--plain.accordion__btn {
     font-size: 24px;
   }
}

.fullsize {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #0067a5;
  background-color: var(--accentColor);
  color: #fff;
  margin-top: 70px;
  margin-bottom: 70px;
}

.fullsize .fullsize__media {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 0;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.fullsize .fullsize__media figure {
    overflow: hidden;
    width: 340px !important;
    height: 340px !important;
  }

.fullsize .fullsize__media figure img {
      width: 100%;
      height: 100%;
      border-radius: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }

.fullsize .fullsize__media figcaption {
    position: absolute;
    text-align: center;
    width: 340px;
    bottom: 70px;
    background-color: #0067a5;
    background-color: var(--accentColor);
    padding: 1.1rem 0;
    font-size: 1rem;
  }

.fullsize__text {
  width: 970px;
  margin: 0 auto;
}

.fullsize__text div p {
      font-size: 46px;
      font-weight: 300;
      padding: 20px 0;
    }

.fullsize__text div p::before {
        width: 42px;
        height: 100px;
        float: left;
        background-image: url('/themes/custom/sanarena/images/icons/png/zitat_open.png');
        background-size: 28px auto;
        background-repeat: no-repeat;
        display: inline-block;
        content: "";
        margin-top: 13px;
      }

.fullsize__text div p::after {
        width: 30px;
        height: 34px;
        background-image: url('/themes/custom/sanarena/images/icons/png/zitat_close.png');
        background-size: 28px auto;
        background-repeat: no-repeat;
        display: inline-block;
        content: "";
        margin-left: 14px;
      }

@media screen and (max-width: 1300px) {
  .fullsize .tns-outer {
    width: 100% !important;
  }
}

@media screen and (max-width: 970px) {
      .fullsize__text div p {
        font-size: 35px;
        padding: 10px 19px;
      }

        .fullsize__text div p::before {
          width: 35px;
          background-size: 22px auto;
          margin-top: 10px;
        }
        .fullsize__text div p::after {
          height: 27px;
          background-size: 22px auto;
        }
}

@media screen and (max-width: 768px) {
  .fullsize {
    margin: 50px 0;
  }
}

@media screen and (max-width: 480px) {
    .fullsize .fullsize__media figure {
      width: 250px !important;
      height: 250px !important;
    }
      .fullsize .fullsize__media figure figcaption {
        width: inherit;
      }
      .fullsize__text div p {
        font-size: 28px;
        padding: 10px 19px;
        text-align: center;
        line-height: 36px;
      }

        .fullsize__text div p::before {
          width: 18px;
          height: 21px;
          background-size: 18px auto;
          margin-right: 12px;
          float: none;
        }
        .fullsize__text div p::after {
          height: 23px;
          background-size: 18px auto;
          margin-left: 12px;
        }
}

.shop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 970px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}

.nav--shop {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 225px;
          flex: 0 0 225px;
  margin-right: 50px;
}

.nav--shop .bef-links div {
        border-bottom: 1px solid #eaeaea;
        border-bottom: 1px solid var(--lightGrey);
        }

.nav--shop .bef-links div a {
            font-size: 20px;
            color: #242424;
            color: var(--mainColor);
            padding-left: 5px;
            line-height: 50px;
          }

.nav--shop .bef-links div a.bef-link-active {
            color: #0067a5;
            color: var(--accentColor);
          }

.shop__overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.shop__overview .views-field-field-previewimage a {
      display: block;
      height: 220px;
      overflow: hidden;
  }

.shop__overview .views-field-field-previewimage a img {
      width: 100% !important;
      height: 100% !important;
      -o-object-fit: cover;
         object-fit: cover;
    }

.shop__overview .views-field-title a {
    color: #242424;
    color: var(--mainColor);
    font-weight: 300;
    font-size: 26px;
    margin-top: 10px;
    display: block;
  }

.shop__overview .views-row {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 49%;
          flex: 0 0 49%;
  margin-bottom: 35px;
}

.shop__wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 49%;
          flex: 1 1 49%;
  margin-bottom: 35px;
}

.shop {
  width: 970px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;

}

.shop .paragraph--type--text {
      width: 100% !important;
  }

.shop .paragraph--type--media {
      width: 100% !important;
    }

.shop .paragraph--type--title {
      width: 100% !important;
    }

.shop img {
      width: 100% !important;
      height: auto !important;
  }

.block--products .paragraph--type--text{
      padding: 0;
    }

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

}

@media screen and (max-width: 970px) {
  .shop {
    width: 100%;
    padding-left: 19px;
    padding-right: 19px;
  }

  .nav--shop {
    margin-bottom: 20px;
  }

  .shop__wrapper {
    width: 100%;
  }
    .shop__wrapper .paragraph--type--title {
       -webkit-box-sizing: border-box;
       box-sizing: border-box;
    }
    .shop__wrapper .paragraph--type--text {
        padding: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .shop__wrapper .paragraph--type--media {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .shop__wrapper img {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
      .shop__wrapper .imgwrapper img {
          padding: 0;
        }
      .shop__overview .views-field-field-previewimage a {
        height: 250px;
      }
    .shop__overview img {
        padding: 0px;
    }
}

@media screen and (max-width: 768px) {
      .shop__overview .views-field-field-previewimage a {
        height: 200px;
      }

  .shop__wrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }

}

@media screen and (max-width: 620px) {
      .shop__overview .views-field-field-previewimage a {
        height: 170px;
      }
      .shop__overview .views-field-title a {
        font-size: 22px;
      }
}

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

}

.paragraph--type--slider {
  width: 1300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background-color: #0067a5;
  background-color: var(--accentColor);
  margin-top: 45px;
  margin-bottom: 45px;
}

.paragraph--type--slider .slider__images div {
        height: 640px;
        overflow: hidden;
    }

.paragraph--type--slider .slider__images div img {
          height: 640px;
          -o-object-fit: cover;
             object-fit: cover;
      }

.paragraph--type--slider button {
    width: 280px !important;
  }

.paragraph--type--slider .prev {
      margin-right: 20px;
  }

.slider__blue {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33%;
          flex: 0 0 33%;
  text-align: center;
  -ms-flex-item-align: center;
      align-self: center;
  color: #fff;
}

.slider__blue h2 {
    font-size: 40px;
    font-weight: 300;
    color: #fff;
    padding: 0 50px;
  }

.slider__blue button {
    width: 280px;
  }

.slider--blue--mobile {
  display: none;
}

.slider__controls {
  position: absolute;
  bottom: 55px;
  right: 55px;
}

.prev {
  display: inline-block;
  background-image: url(/themes/custom/sanarena/images/icons/svg/arrow_left.svg);
  background-repeat: no-repeat;
  height: 55px;
  width: 55px;
}

.next {
  display: inline-block;
  background-image: url(/themes/custom/sanarena/images/icons/svg/arrow_right.svg);
  background-repeat: no-repeat;
  height: 55px;
  width: 55px;
}

.slider__special__controls {
  color: transparent;
}

.slider__special__controls .prev {
    display: none;
  }

.slider__special__controls .prev.active {
      display: block;
      position: absolute;
      left: 0px;
      top: 50%;
      margin-top: -27.5px;
      background-image: url(/themes/custom/sanarena/images/icons/svg/icon_group_white.svg);
      background-repeat: no-repeat;
      height: 55px;
      width: 55px;
    }

.slider__special__controls .next {
    display: none;
  }

.slider__special__controls .next.active{
      display: block;
      position: absolute;
      right: 0px;
      top: 50%;
      margin-top: -27.5px;
      background-image: url(/themes/custom/sanarena/images/icons/svg/icon_single_white.svg);
      background-repeat: no-repeat;
      height: 55px;
      width: 55px;
    }

.slider__special__mobile__controls {
  display: none;
}

.field--dateline {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.fullsize__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 99;
}

.fullsize__controls .prev {
      position: absolute;
      left: 20px;
      -ms-flex-item-align: center;
          align-self: center;
  }

.fullsize__controls .next {
      position: absolute;
      right: 20px;
      -ms-flex-item-align: center;
          align-self: center;
  }

@media screen and (min-width: 1301px) {
    .paragraph--type--special .tns-outer {
        width: 1300px;
        position: relative;
    }
}

@media screen and (max-width: 1300px) {
    .paragraph--type--special .tns-outer, .paragraph--type--fullsize .tns-outer {
      width: 100%;
    }

  .slider__special__controls {
    display: none;
  }

  .slider__special__mobile__controls {
    display: block;
    background-color: transparent;
    height: 55px;
    width: 360px;
    border-radius: 50px;
    margin-bottom: 80px;
    position: relative;
  }
    .slider__special__mobile__controls:after {
      content: url('/themes/custom/sanarena/images/icons/svg/arrow_right_exclusive.svg');
      width: 25px;
      height: 25px;
      position: absolute;
      padding-top: 14px;
      top: 0;
      right: 0;
    }
    .slider__special__mobile__controls:before {
      content: url('/themes/custom/sanarena/images/icons/svg/arrow_left_exclusive.svg');
      width: 25px;
      height: 25px;
      position: absolute;
      padding-top: 14px;
      top: 0;
      left: 0;
    }
      .slider__special__mobile__controls .prev.active {
        background-image: url(/themes/custom/sanarena/images/icons/svg/icon_group_white_transparent.svg);
        height: 55px;
        width: 55px;
        display: block;
        padding-left: 50px;
        font-weight: lighter;
        color: #fff;
        text-transform: uppercase;
        line-height: 55px;
        letter-spacing: 1.5px;
        margin-left: 50px;
      }
      .slider__special__mobile__controls .next.active {
        background-image: url(/themes/custom/sanarena/images/icons/svg/icon_single_white_transparent.svg);
        height: 55px;
        width: 55px;
        display: block;
        padding-left: 50px;
        font-weight: lighter;
        color: #fff;
        text-transform: uppercase;
        line-height: 55px;
        letter-spacing: 1.5px;
        margin-left: 50px;
      }

}

@media screen and (max-width: 1170px) {
  .paragraph--type--slider {
    width: 100%;
    display: block;
  }
  .slider__blue {
    display: none;
  }

    .slider__blue.slider--blue--mobile {
      display: block;
    }

  .field--dateline {
    margin-bottom: 10px;
  }
    .paragraph--type--slider .tns-outer {
      display: table-header-group;
    }

  .slider__controls {
    top: 540px;
  }
}

@media screen and (max-width: 970px) {
      .paragraph--type--slider .slider__images div {
          height: 480px;
      }
        .paragraph--type--slider .slider__images div img {
            height: 480px;
        }

  .slider__controls {
    top: 380px;
  }

  .slider__special__mobile__controls {
    width: 100%;
  }
      .slider__special__mobile__controls .prev.active {
        width: 205px;
        margin: 0 auto;
      }
      .slider__special__mobile__controls .next.active {
        width: 205px;
        margin: 0 auto;
      }

}

@media screen and (max-width: 768px) {
      .paragraph--type--slider .slider__images div {
        height: 400px;
        overflow: hidden;
      }
        .paragraph--type--slider .slider__images div img {
            height: 400px;
            -o-object-fit: cover;
               object-fit: cover;
        }

  .slider__controls {
    top: 300px;
  }

  .slider__special__mobile__controls {
    width: 250px;
  }
    .slider__special__mobile__controls:after {
      padding-top: 7px;
    }
    .slider__special__mobile__controls:before {
      padding-top: 7px;
    }
      .slider__special__mobile__controls .prev.active {
        line-height: 40px;
        font-size: 18px;
        height: 40px;
        margin-left: 28px;
        padding-left: 40px;
      }
    .slider__special__mobile__controls.exception {
      margin: 0 auto;
    }
      .slider__special__mobile__controls .next.active {
        line-height: 40px;
        font-size: 18px;
        height: 40px;
        margin-left: 20px;
        padding-left: 20px;
      }
}

@media screen and (max-width: 668px) {
    .paragraph--type--slider .slider__images {
      height: 350px;
    }
        .paragraph--type--slider .slider__images div img {
            height: 350px;
        }
  .paragraph--type--slider .prev {
    position: absolute;
    left: 20px;
  }
  .paragraph--type--slider .next {
    position: absolute;
    right: 20px;
  }

  .slider__controls {
    top: 153px;
    right: 0;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
    .paragraph--type--slider .slider__images {
        height: 250px;
    }
      .paragraph--type--slider .slider__images div img {
          height: 250px;
        }
    .slider__blue h2 {
      font-size: 28px;
    }

  .slider__controls {
    top: 102px;
  }
    .slider--blue--mobile p {
      padding-bottom: 30px;
    }
      .slider--blue--mobile p.field--dateline {
        padding-bottom: 0;
      }
  .slider__special__mobile__controls {
    width: 200px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
    .slider__special__mobile__controls:after {
      padding-top: 7px;
      margin-right: -35px;
    }
    .slider__special__mobile__controls:before {
      padding-top: 7px;
      margin-left: -35px;
    }
    .slider__special__mobile__controls.exception {
      margin-bottom: 30px;
    }
    .slider__special__mobile__controls .prev.active {
      width: auto !important;
      margin-left: 0px;
      padding-left: 45px;
    }
    .slider__special__mobile__controls .next.active {
      width: auto !important;
      margin-left: 0px;
      padding-left: 45px;
    }


}

.contextual-region {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.contextual-region h1 {
    max-width: 970px;
    margin: 0 auto;
    padding: 90px 0 55px 0;
  }

.contextual-region iframe {
    width: 100% !important;
  }

::-webkit-input-placeholder {
  color: #599ec9;
}

::-moz-placeholder {
  color: #599ec9;
}

:-ms-input-placeholder {
  color: #599ec9;
}

::-ms-input-placeholder {
  color: #599ec9;
}

::placeholder {
  color: #599ec9;
}

.webform-submission-form {
  width: 970px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.webform-submission-form input {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

.webform-submission-form input.form-text {
      width: 100% !important;
      margin-top: 30px;
      padding-top: 10px;
    }

.webform-submission-form input.form-email {
      width: 100% !important;
      margin-top: 30px;
      padding-top: 10px;
    }

.webform-submission-form input.form-tel {
      width: 100% !important;
      margin-top: 30px;
      padding-top: 10px;
    }

.webform-submission-form select {
    width: 100%;
    font-size: 24px;
    color: #0067a5;
    color: var(--accentColor);
    background-color: transparent;
    margin-top: 30px;
    padding: 10px 16px 10px;
    border: none;
    border-bottom: 1px solid #0067a5;
    border-bottom: 1px solid var(--accentColor);
    font-family: 'Source Sans Pro Light', sans-serif;
    font-family: var(--mainFont);
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    -moz-appearance: window;
    }

.webform-submission-form.form-select {
      width: 100% !important;
      margin-top: 30px;
      padding-top: 10px;
    }

.webform-submission-form select::-ms-expand {
    display: none;
  }

.webform-submission-form option {
    font-weight: normal;
  }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  opacity: 1;
}

::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
}

:-ms-input-placeholder {
  /* IE 10+ */
  opacity: 1;
}

:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
}

.js-form-item-bemerkungen-remarks {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 100% !important;
          flex: 1 1 100% !important;
}

.webform-submission-form .js-form-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.webform-submission-form .js-form-item input {
    font-size: 24px;
    color: #0067a5;
    color: var(--accentColor);
    padding-left: 16px;
    padding-bottom: 10px;
    border: none;
    border-bottom: 1px solid #0067a5;
    border-bottom: 1px solid var(--accentColor);
    font-family: 'Source Sans Pro Light', sans-serif;
    font-family: var(--mainFont);
  }

.webform-submission-form .js-form-item .option {
    font-size: 24px;
    color: #0067a5;
    color: var(--accentColor);
  }

.webform-submission-form .js-form-item legend {
    margin-top: 30px;
    color: #0067a5;
    color: var(--accentColor);
  }

.form-textarea {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 30px;
  padding-left: 16px;
  border: none;
  border-bottom: 1px solid #0067a5;
  border-bottom: 1px solid var(--accentColor);
  font-size: 24px;
  font-family: 'Source Sans Pro Light', sans-serif;
  font-family: var(--mainFont);
  color: #0067a5;
  color: var(--accentColor);
  opacity: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.webform-button--submit {
  width: 165px;
  font-family: 'Source Sans Pro Light', sans-serif;
  font-family: var(--mainFont);
  font-size: 20px;
  color: #fff;
  background-color: #0067a5;
  background-color: var(--accentColor);
  border: 2px solid #0067a5;
  border: 2px solid var(--accentColor);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 50px;
  letter-spacing: 1.5px;
  margin-top: 70px;
  padding: 0px 30px 0px 30px;
  border-radius: 50px;
  cursor: pointer;
}

.webform-button--submit:hover {
    border: 2px solid #0067a5;
    border: 2px solid var(--accentColor);
    background-color: #fff;
    color: #0067a5;
    color: var(--accentColor);
  }

.js-form-type-checkbox {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 100% !important;
          flex: 1 1 100% !important;
  margin: 10px 0;
}

.radios--wrapper {
  width: 100% !important;
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 100% !important;
          flex: 1 100% !important;
}

.js-webform-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* Custom Radio Buttons */

.js-form-type-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

[type='radio']:checked,
[type='radio']:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type='radio']:checked + label,
[type='radio']:not(:checked) + label {
  position: relative;
  padding-left: 48px;
  cursor: pointer;
  line-height: 30px;
  display: inline-block;
  color: #0067a5;
  color: var(--accentColor);
}

[type='radio']:checked + label:before,
[type='radio']:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  border: 1px solid #0067a5;
  border: 1px solid var(--accentColor);
  border-radius: 100%;
  background: #fff;
}

[type='radio']:checked + label:after,
[type='radio']:not(:checked) + label:after {
  content: '';
  width: 16px;
  height: 16px;
  background: #0067a5;
  background: var(--accentColor);
  position: absolute;
  top: 7px;
  left: 7px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type='radio']:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type='radio']:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

div[role='contentinfo'] {
  width: 100%;
}

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

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

@media screen and (max-width: 970px) {
  .webform-submission-form {
    width: 100%;
    padding: 0 19px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 768px) {
  .js-webform-radios {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .js-form-type-radio {
    margin-top: 20px;
  }
    .webform-submission-form .js-form-item {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
    }
      .webform-submission-form .js-form-item input {
        font-size: 20px;
      }
      .webform-submission-form .js-form-item select {
        font-size: 20px;
      }
      .webform-submission-form .js-form-item textarea {
        font-size: 20px;
      }
      .webform-submission-form .js-form-item .option {
        font-size: 20px;
      }

  .form-textarea {
    font-size: 20px;
  }

  iframe {
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .webform-button--submit {
    margin-top: 45px;
  }
}

.paragraph--type--crm {
  width: 970px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.crm-root p img {
        display: none;
      }

.cist_view {
  font-size: 18px;
  width: 100%;
  border-collapse: collapse;
}

.cist_view thead {
      display: none;
    }

.cist_view tbody tr td {
          border-bottom: 1px solid #F5F5F5;
          padding: 28px 0 28px;
        }

.cist_view .course-occupancy-green {
    border-left: 7px solid greenyellow;
  }

.cist_view .course-occupancy-green td:first-child {
      padding-left: 2rem;
    }

.cist_view .course-occupancy-red {
    border-left: 7px solid orangered;
  }

.cist_view .course-occupancy-red td:first-child {
      padding-left: 2rem;
    }

.cist_view .link {
    width: 155px;
    display: block;
    float: right;
    font-family: 'Source Sans Pro Light', sans-serif;
    font-family: var(--mainFont);
    color: #fff;
    background-color: #0067a5;
    background-color: var(--accentColor);
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    line-height: 42px;
    letter-spacing: 1.5px;
    border: 0px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.8rem;
  }

/* Form */

.new_participant_registration fieldset {
    border: none;
    padding: 0;
    margin: 0;
  }

.new_participant_registration fieldset tr {
      width: 50%;
      display: block;
      float: left;
    }

.new_participant_registration fieldset tr th {
          display: none;
        }

.new_participant_registration fieldset tr td {
        width: 100%;
        display: block;
      }

.new_participant_registration fieldset tr td:nth-child(3) {
           display: none;
         }

.new_participant_registration fieldset tr td input {
          width: 100%;
          font-family: 'Source Sans Pro Light', sans-serif;
          font-family: var(--mainFont);
          font-size: 24px;
          font-size: var(--mainSize);
          font-weight: 300;
          color: #0067a5;
          color: var(--accentColor);
          margin-bottom: 35px;
          padding: 0px 10px 8px 13px;
          border: 0;
          border-bottom: 1px solid #0067a5;
          border-bottom: 1px solid var(--accentColor);
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

.new_participant_registration fieldset tr td select {
            width: 100%;
            font-family: 'Source Sans Pro Light', sans-serif;
            font-family: var(--mainFont);
            font-size: 24px;
            font-size: var(--mainSize);
            font-weight: 300;
            color: #0067a5;
            color: var(--accentColor);
            margin-bottom: 35px;
            padding: 0px 10px 8px 13px;
            border: 0;
            border-bottom: 1px solid #0067a5;
            border-bottom: 1px solid var(--accentColor);
            border-radius: 0px;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
          }

@media screen and (max-width: 970px) {
  .paragraph--type--crm {
    width: 100%;
    padding: 0 19px;
  }

  .cist_view .course-occupancy-green td:first-child {
    padding-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .cist_view .link {
    width: 26px;
    height: 26px;
    color: transparent;
    background-image: url('/themes/custom/sanarena/images/icons/svg/arrow_kurse.svg');
    border-radius: 0;
    border-radius: initial;
    background-color: transparent;
    background-position: right;
    background-repeat: no-repeat
  }

  .cist_view {
    font-size: 14px;
  }
    .cist_view td:frist-child {
      padding-left: 4px;
    }
}

@media screen and (max-width: 480px) {
  .paragraph--type--crm {
    padding: 0 10px;
  }

  .kurs_web_kursliste {
    font-size: 16px;
  }

  .cist_view {
    font-size: 12px;
  }
        .cist_view tbody tr td {
          padding-left: 2px;
          padding-right: 2px;
        }
}

.paragraph--type--text table .inline--thumbnail img {
        display: inline-block;
        width: 1.25rem;
        height: auto;
      }

.messages {
  border-top: 1px solid #0067a5;
  border-top: 1px solid var(--accentColor);
  border-bottom: 1px solid #0067a5;
  border-bottom: 1px solid var(--accentColor);
  padding: 2rem 0.5rem;
  width: 100%;

  /*
   * Other Breakpoints
   *

  @media screen and (min-width: 668px) {
    color: red;
  }

  @media screen and (min-width: 668px) {
    color: green;
  }

  @media screen and (min-width: 970px) {
    color: blue;
  }

  @media screen and (min-width: 1170px) {
    color: orange;
  }

  */
}

@media screen and (min-width: 1300px) {

.messages {
    width: 1300px;
    padding: 2rem 0;
    margin: 0 auto
}
  }

.search--active {
  display: block !important;
}

.searchresults {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.searchresults ul li {
      padding: 20px 0;
      text-indent: 0;
    }

.searchresults ul li:before {
        display: none;
        margin-right: 0;
      }

.searchresults .form-wrapper {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 50px;
    width: 100%;
    -webkit-box-shadow: 0px 0px 5px #eaeaea;
            box-shadow: 0px 0px 5px #eaeaea;
    -webkit-box-shadow: 0px 0px 5px var(--lightGrey);
            box-shadow: 0px 0px 5px var(--lightGrey);
  }

.searchresults .form-wrapper .js-form-type-search {
      float: left;
      -webkit-box-flex: 1;
          -ms-flex: 1 1 auto;
              flex: 1 1 auto;
    }

.searchresults .form-wrapper .js-form-type-search input.form-search {
        width: 100%;
        font-size: 26px;
        padding: 20px;
        border: 0;
        font-family: 'Source Sans Pro Light', sans-serif;
        font-family: var(--mainFont);
      }

.searchresults .form-wrapper .js-form-submit {
      width: 80px;
      background-color: #fff;
      border: 0;
      cursor: pointer;
      background-image: url("/themes/custom/sanarena/images/icons/png/search.png");
      background-size: 30px;
      background-repeat: no-repeat;
      background-position: center;
      color: transparent;
    }

@media screen and (max-width: 768px) {
  .block--mobilesearch {
    margin: 0 auto;
    width: 150px;
  }
      .block--mobilesearch form div {
        float: left;
      }
      .menus.open .block--search form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-line-pack: center;
            align-content: center;
        margin: 0 auto;
        width: 250px;
      }
        .menus.open .block--search form .js-form-type-search {
          -webkit-box-flex: 1;
              -ms-flex: 1 1 100%;
                  flex: 1 1 100%;
        }
          .menus.open .block--search form .js-form-type-search input {
            width: 100%;
            border: none;
            font-size: 16px;
            padding: 10px;
            border-bottom: 1px solid black;
            font-family: 'Source Sans Pro Light', sans-serif;
            font-family: var(--mainFont);
          }
          .menus.open .block--search form .js-form-wrapper .js-form-submit {
            width: 50px;
            height: 44px;
            background-color: #fff;
            border: 0;
            cursor: pointer;
            background-image: url("/themes/custom/sanarena/images/icons/png/search.png");
            background-size: 23px;
            background-repeat: no-repeat;
            background-position: center;
            color: transparent;
          }

  .searchresults {
    width: 100%;
    padding: 0 20px;
  }
    .searchresults h2 {
      margin-bottom: 0px;
    }
      .searchresults ul li {
        padding: 5px 0;
      }
    .searchresults .form-wrapper {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      margin-top: 30px;
    }
        .searchresults .form-wrapper .js-form-type-search input.form-search {
          font-size: 20px;
        }
      .searchresults .form-wrapper .js-form-submit {
        width: 60px;
        background-size: 25px;
      }
}

@media screen and (min-width: 769px) {
  .block--mobilesearch {
    display: none;
  }

  .search {
    bottom: 18px;
    display: block;
    position: relative;
    width: 55px;
    z-index: 100;
    top: 0px;
  }

  .search.small {
    top: 3px !important;
  }

  .search__placeholder {
    background-image: url("/themes/custom/sanarena/images/icons/png/search.png");
    height: 63px;
    position: relative;
    right: 0;
    width: 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
  }

  .search__placeholder--close {
    background-image: url("/themes/custom/sanarena/images/icons/svg/closenav.svg") !important;
    z-index: 101;
  }

  .block--search {
    display: none;
    position: absolute;
    right: 0;
    top: 0px;
    width: 500px;
    background-color: #fff;
    -webkit-box-shadow: 5px 5px 20px lightgray;
            box-shadow: 5px 5px 20px lightgray;
    padding-left: 0 !important;
  }

    .block--search form {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin-right: 40px;
    }
      .block--search form div {
        -webkit-box-flex: 1;
            -ms-flex: 1 1 100%;
                flex: 1 1 100%;
      }
      .block--search form .form-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto;
        border: none;
      }
        .block--search form .form-wrapper .js-form-submit {
          width: 50px;
          background-color: #fff;
          border: 0;
          cursor: pointer;
          background-image: url("/themes/custom/sanarena/images/icons/png/search.png");
          background-size: 23px;
          background-repeat: no-repeat;
          background-position: center;
          color: transparent;
        }
      .block--search form .form-search {
        width: 100%;
        font-size: 18px;
        font-family: 'Source Sans Pro Light', sans-serif;
        font-family: var(--mainFont);
        border: none;
        padding: 20px;
      }
  .searchresults {
    width: 100%;
    padding: 0 20px;
  }
}

/* end of 769*/

@media screen and (min-width: 970px) {
  .searchresults {
    width: 970px;
    margin: 0 auto;
  }

  .search {
    width: 50px;
    bottom: 9px;
    top: 17px;
  }

  .search__placeholder {
    background-image: url("/themes/custom/sanarena/images/icons/png/search.png");
    height: 69px;
    position: relative;
    right: 0;
    width: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 26px;
  }
    .block--search form {
      margin-right: 60px;
    }
        .block--search form .form-wrapper .js-form-submit {
          background-size: 25px;
        }
      .block--search form .form-search {
        font-size: 22px;
      }


}

@media screen and (min-width: 1300px) {

}

/* @import 'crm.css'; */

.sliding-popup-bottom {
  background-color: #0067a5;
  border-top: 1px solid #ffffff;
  color: #ffffff;
  font-size: 1rem;
  width: 100%;
}

.eu-cookie-compliance-banner {
  width: 100%;
}

.eu-cookie-compliance-buttons {
  margin-bottom: 1.5rem;
}

.eu-cookie-compliance-buttons button {
    border: none;
    background-color: #ffffff;
    padding: 6px 12px;
  }

.eu-cookie-compliance-content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 970px;
  padding: 1rem 2rem 0 2rem;
}

.eu-cookie-compliance-categories details[open=""] > div {
    border-top: 1px solid #ffffff;
  }

.eu-cookie-compliance-categories details {
    border-bottom: 1px solid #ffffff;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }

.eu-cookie-compliance-categories details > div:first-of-type {
    margin-top: 0.5rem;
  }

.eu-cookie-compliance-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;

}

.eu-cookie-compliance-category div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
    margin: 1rem 1rem 1rem 0;
  }

.eu-cookie-compliance-category div.eu-cookie-compliance-category-description {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    margin-right: 0;
    margin-right: initial;
  }

.eu-cookie-compliance-message {
  float: none;
  float: initial;
  -ms-hyphens: auto;
      hyphens: auto;
  max-width: none;
  max-width: initial;
}

.sanarena-crm-wrapper #course-type-title {
    padding: 1.5rem 0;
    font-family: 'Source Sans Pro Bold', sans-serif;
  }

/* stylelint-disable-line unit-whitelist */

.sanarena-crm-wrapper,
.sanarena-crm-error {
  max-width: 1180px;
  margin: 1rem auto;
  padding: 0 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sanarena-crm-error,
.sanarena-crm-wrapper ul.errors {
  padding: 0.5rem;
  border: 1px solid red;
  border-radius: 5px;
  border-left: 3px solid red;
  background-color: rgba(255,0,0,0.1);
  color: red;
}

.sanarena-crm-form-entry {
  max-width: 970px;
  margin: 0 auto;
}

.sanarena-crm-form-entry b {
  font-weight: bold;
}

.sanarena-crm-form-entry div.zkbcustomer label.customertext::after {
  display: none !important;
}

.sanarena-crm-form-entry form,
.sanarena-crm-form-entry input,
.sanarena-crm-form-entry select {
  font-size: 18px;
  font-weight: 300;
}

.sanarena-crm-form-entry h2#title-billing-address.active::after {
  content: url('/themes/custom/sanarena/images/icons/svg/dropdown.svg');
  width: 35px;
  display: inline-block;
  text-align: left;
  padding-left: 20px;
  cursor: pointer;
}

.sanarena-crm-form-entry hr.divider {
  visibility: hidden;
}

.sanarena-crm-form-entry input,
.sanarena-crm-form-entry select {
  border: 0;
  border-bottom: 1px solid #0067a5;
  margin: 0 5px 18px;
  height: 48px;
}

.sanarena-crm-form-entry input[type="text"] {
  color: #0067a5;
  padding-left: 5px;
  display: block;
}

.sanarena-crm-form-entry input[type="checkbox"] {
  height: 18px;
}

.sanarena-crm-form-entry input.button {
  width: auto;
  margin-top: 25px;
  border-radius: 50px;
  border: 2px solid #0067a5;
  background-color: #0067a5;
  color: #fff !important;
  text-transform: uppercase;
  font-weight: 300;
  padding: 0 30px !important;
  font-size: 20px !important;
  letter-spacing: 3px;
  height: 50px;
}

.sanarena-crm-form-entry input.button:hover {
  background-color: white;
  color: #0067a5 !important;
}

.sanarena-crm-form-entry select {
  color: #0067a5;
  padding-right: 28px;
  background: none;
  background-image: url("/themes/custom/sanarena/images/icons/svg/dropdown.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px;
  margin-top: 3px;
}

.sanarena-crm-form-entry table.table {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding: 6px 0;
}

.sanarena-crm-form-entry table.table tr {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 750px) {
  display: table;
}

.sanarena-crm-form-entry table.table tr th,
.sanarena-crm-form-entry table tr td {
  text-align: left;
}

.sanarena-crm-form-entry textarea {
  width: 100%;
  min-height: 170px;
  background-color: #fbfbfb;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #0067a5;
  color: #0067a5;
  padding-left: 15px;
  padding-top: 15px;
  margin-bottom: 25px;
}

.sanarena-crm-form-entry .cist_view.kurs_web_kursliste {}

@media screen and (max-width: 910px) {
  .sanarena-crm-form-entry .cist_view.kurs_web_kursliste tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .sanarena-crm-form-entry .cist_view.kurs_web_kursliste td {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 400px;
            flex: 1 1 400px;
    padding-left: 10px;
  }
}

.sanarena-crm-form-entry .enrollment {
  height: 50vh;
}

.sanarena-crm-form-entry .hidden-label {
  /* position: absolute !important;
  top: -9999px !important;
  left: -9999px !important; */
  display: none;
}

.sanarena-crm-form-entry .form__cols--one {}

.sanarena-crm-form-entry .form__cols--one select,
.sanarena-crm-form-entry .form__cols--three {
  width: 49.9%;
}

@media screen and (max-width: 800px) {
  .sanarena-crm-form-entry .form__cols--three {
    width: 100%;
  }
}

.sanarena-crm-form-entry .form__cols--two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sanarena-crm-form-entry .form__cols--two > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 300px;
          flex: 1 0 300px;
}

.sanarena-crm-form-entry .form__cols--three select {
  width: 30%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sanarena-crm-form-entry .formdescription.desczkb {
  padding-left: 51%;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 2rem;
}

@media screen and (max-width: 645px) {
  .sanarena-crm-form-entry .formdescription.desczkb {
    padding-left: 0;
  }
}

.sanarena-crm-form-entry .formnote {
  margin: 1rem 0;
}

.sanarena-crm-form-entry input#company_request_department,
.sanarena-crm-form-entry input#company_request_billing_address_department,
.sanarena-crm-form-entry input#company_F_ID,
.sanarena-crm-form-entry input#company_registration_order_number {
  width: 48.7%;
}

.sanarena-crm-form-entry select#company_request_form_of_address,
.sanarena-crm-form-entry select#participant_registration_form_of_address {
  width: 49.2%;
}

@media screen and (max-width: 645px) {
  .sanarena-crm-form-entry input#company_request_department,
  .sanarena-crm-form-entry input#company_request_billing_address_department,
  .sanarena-crm-form-entry input#company_F_ID,
  .sanarena-crm-form-entry input#company_registration_order_number,
  .sanarena-crm-form-entry select#company_request_form_of_address,
  .sanarena-crm-form-entry select#participant_registration_form_of_address {
    width: 97%;
  }
}

.sanarenars-course-list-load {
  display: block;
  max-width: 970px;
  margin: 0 auto;
}

.sanarena-crm-form-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3rem;
}

.sanarena-crm-form-list-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 21px 0 rgba(83, 83, 83, 0.15);
          box-shadow: 0 0 21px 0 rgba(83, 83, 83, 0.15);
  margin: 0.8rem 1rem;
  padding: 1.2rem 1.5rem 1.2rem;
  border-radius: 5px;
}

.sanarena-crm-form-list-item h3 {
    color: #0067a5;
    color: var(--accentColor);
    font-size: 1.5rem;
    font-family: 'Source Sans Pro Bold', sans-serif;
    font-family: var(--fontBold);
  }

.sanarena-crm-form-list-item p {
    margin-top: 0;
    margin-bottom: 0;
  }

.sanarena-crm-form-list-item--empty {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.sanarena-crm-form-list-item-closed h3 {
    color: #A7A7A7;
    color: var(--colorGrey);
  }

.sanarena-crm-form-list-item-closed p,
  .sanarena-crm-form-list-item-closed p.sanarena-crm-forum-list-item-detail {
    color: #A7A7A7;
    color: var(--colorGrey);
  }

.sanarena-crm-form-list-item-action {
  width: 210px;
  background-color: #0067a5;
  background-color: var(--accentColor);
  text-align: center;
  margin: 2rem 0 0.2rem !important;
  border-radius: 50px;
}

.sanarena-crm-form-list-item-action a {
    color: #FFFFFF;
    -webkit-text-decoration: none;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

.sanarena-crm-form-list-item-action-closed {
  background-color: #A7A7A7;
  background-color: var(--colorGrey);
}

.sanarena-crm-form-list-item-city {
  font-family: 'Source Sans Pro Bold', sans-serif;
  font-family: var(--fontBold);
  font-size: 0.9rem;
  padding-top: 0.5rem;
}

.sanarena-crm-forum-list-item-detail {
  padding: 0;
}

.sanarena-crm-form-list-item-spots {
  font-family: 'Source Sans Pro Bold', sans-serif;
  font-family: var(--fontBold);
  font-size: 0.9rem;
  margin: 0;
  padding-top: 1rem;
}

.sanarena-crm-form-list-item-spots-closed {
  color: #FFD0D0;
  color: var(--colorRedLight);
  border-top: 3px solid #FFD0D0;
  border-top: 3px solid var(--colorRedLight);
}

.sanarena-crm-form-list-item-spots-closed:before {
  content: url(../../images/icons/svg/user_blocked.svg);
}

.sanarena-crm-form-list-item-spots-open {
  color: #52C554;
  color: var(--colorGreen);
  border-top: 3px solid #52C554;
  border-top: 3px solid var(--colorGreen);
}

.sanarena-crm-form-list-item-spots-open:before {
  content: url(../../images/icons/svg/user_available.svg);
}

.sanarena-crm-form-list-search-controls {
  text-align: center;
  margin-bottom: 2rem;
}

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

.sanarena-crm-form-list-search-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap
}
  }

.sanarena-crm-form-list-search-controls > * {
  margin: 0.5rem;
}

.sanarena-crm-form-list-search-controls input,
.sanarena-crm-form-list-search-controls select,
.sanarena-crm-form-list-search-controls button {
  font-size: 1.3rem;
  font-family: 'Source Sans Pro Light', sans-serif;
  font-family: var(--mainFont);
  padding: 0.3rem 1rem 0.3rem 0.3rem;
  -webkit-appearance: auto !important;
     -moz-appearance: auto !important;
          appearance: auto !important;
  border: 1px solid #A7A7A7;
  border: 1px solid var(--colorGrey);
  border-radius: 5px !important;
}

.sanarena-crm-form-list-search-controls button {
  padding: 0.3rem 0.5rem;
}

.sanarena-crm-form-list-search-controls input,
.sanarena-crm-form-list-search-controls select {
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
  background: initial;
}

@media screen and (max-width: 750px) {
  .sanarena-crm-form-list-search-controls input,
  .sanarena-crm-form-list-search-controls select,
  .sanarena-crm-form-list-search-controls button {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 95%;
            flex: 1 0 95%;
  }

  input.sanarena-crm-form-list-search-date {
    padding-right: 0;
  }
}

#edit-actions--2 {
  display: none;
}

.description {
  font-size: 16px;
  color: #0067a5;
  margin-top: 10px;
  width: 342px;
}

.file.file--application-pdf {
    background: url("/themes/custom/sanarena/images/icons/svg/icon_pdf.svg") no-repeat;
  background-size: 30px 40px;
  height: 40px;
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.file.file--application-pdf a {
  -webkit-text-decoration: none;
  text-decoration: none;
  border-bottom: 2px solid #ffffff;
}

.file.file--application-pdf a:hover {

    font-style: normal;
  }


/*# sourceMappingURL=main.bundle.css.map*/