@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: 'Carlito';
    src: local('Carlito'), url('../fonts/Carlito-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Carlito';
    src: local('Carlito Bold'), url('../fonts/Carlito-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Carlito';
    src: local('Carlito Italic'), url('../fonts/Carlito-Italic.ttf') format('truetype');
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Carlito';
    src: local('Carlito Bold Italic'), url('../fonts/Carlito-BoldItalic.ttf') format('truetype');
    font-style: italic;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Apex New';
    src: local('Apex New Medium'), local('ApexNew-Medium'), url('../fonts/ApexNewMedium.otf') format('opentype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Apex New';
    src: local('Apex New Bold Italic'), local('ApexNew-BoldItalic'), url('../fonts/ApexNew-BoldItalic.woff') format('woff');
    font-style: italic;
    font-weight: 700;
    font-display: swap;
}

:root {
    --font-body: 'Carlito', 'Calibri', 'Segoe UI', Arial, sans-serif;
    --font-display: 'Apex New', 'Arial Narrow', Arial, sans-serif;
    --switchSize: 1.5rem;
    --switchSpace: calc(var(--switchSize)/100*10);
    --profilImageSize: 6vw;
    --borderPointSize: 1.7rem;
    --rightPart: 25%;
    --leftPart: calc(100% - (var(--rightPart)));
    --gutter: 2vw;
    --columns: 24;
    --content-width: calc(1600px - (2 * var(--gutter)));
    --row-size: calc((var(--content-width) - (var(--gutter) * (var(--columns) - 1))) / var(--columns));
    --headerHeight: 76px;
    --footerHeight: 60px;
    --chooseHeight: 120px;
}

html {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    /*height: 100%;*/
    position: relative;
}

body {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
}

button {
    font-family: var(--font-display);
}

input,
select,
textarea {
    font-family: inherit;
}

/* Gemeinsamer Hero für teambezogene App-Seiten. */
.app-team-hero.app-team-hero {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 0 0 50% 50% / 0 0 22% 22%;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--team-color-1, #0046c8) 76%, #000) 0%,
        var(--team-color-1, #0046c8) 62%,
        color-mix(in srgb, var(--team-color-1, #0046c8) 76%, #fff) 100%
    );
    color: var(--team-font-color-1, #fff);
}

.app-team-hero__content.app-team-hero__content {
    position: relative;
    z-index: 1;
    width: min(1140px, calc(100% - 3rem));
    box-sizing: border-box;
    margin: 0 auto;
    padding-top: 4rem;
}

.app-team-hero__kicker.app-team-hero__kicker {
    overflow: hidden;
    margin: 0 0 0.35rem;
    color: inherit;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: normal;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 0.76;
}

.app-team-hero__title.app-team-hero__title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 2em;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 700;
    line-height: 1;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    white-space: normal;
}

.login-hero .app-team-hero__title {
    display: block;
    min-height: 0;
    white-space: nowrap;
}

.login-hero .app-team-hero__subtitle.app-team-hero__subtitle {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

.app-team-hero__subtitle.app-team-hero__subtitle {
    overflow: hidden;
    margin: 0.65rem 0 0;
    font-family: inherit;
    font-size: 1rem;
    line-height: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 0.8;
}

.app-team-hero__logo.app-team-hero__logo {
    position: absolute;
    top: -90px;
    right: -70px;
    width: min(430px, 38vw);
    height: min(390px, 34vw);
    object-fit: contain;
    opacity: 0.25;
    filter: drop-shadow(0 3px 3px rgb(0 0 0 / 100%));
    transform: rotate(-15deg);
    transform-origin: center;
}

select {
    height: 40px !important;
    box-sizing: border-box !important;
    padding: 0 2rem 0 .75rem !important;
    border: 1px solid #ddd9e8 !important;
    border-radius: .6rem !important;
    outline: 0;
    background: #faf9fc !important;
    color: #25233a !important;
    font: inherit !important;
    font-size: .78rem !important;
    text-align: left !important;
    text-align-last: left !important;
}

select option {
    text-align: left;
}

select:focus {
    border-color: var(--team-color-1, #0046c8) !important;
    outline: 0;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--team-color-1, #0046c8) 12%, transparent) !important;
}

main {
    margin: var(--headerHeight) 0 0;
}

#content {
    margin-top: var(--headerHeight);
}

#content > main {
    margin-top: 0;
}

main.headExt {
    margin-top: 140px;
}

main.footExt {
    margin-bottom: 50px;
}

main.fixedChoose .chooseBox {
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    /*height: 13rem;*/
    z-index: 1;
}

/*main.fixedChoose .chooseContent {*/
/*    padding-top: 13rem;*/
/*}*/

.popUpSection {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: fixed;
    top: var(--headerHeight);
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background: rgba(0,0,0,0.3);
    padding-top: 2rem;
}

.popUpSection.extended {
    top: 130px;
}

.popUp {
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
    background: #fff;
    width: 30%;
    height: fit-content;
    padding: 1rem;
    border: 2px solid;
    border-radius: 1rem;
}
.popUp .closePop {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 1rem;
    margin-top: 1rem;
    /*animation: closePop 2s;*/
}

.popUp .popUpContent {
    margin-bottom: 1rem;
    line-height: 1.5rem;
}

.popUp .rememberNote {
    margin: 1rem 0;
}

@keyframes closePop {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.popUp:hover {
    cursor: pointer;
}

.message::before {
    border-radius: 1rem;
    box-sizing: border-box;
    width: 2rem;
    height: 2rem;
    display: inline-block;
    line-height: 1;
    margin-right: 0.5rem;
    font-style: normal;
    padding-top: 0.5rem;
    text-align: center;
}

.success {
    color: #008600;
}

.success::before {
    content: '\2714\fe0e';
    background: #008600;
    color: #ffffff;
}

.message.square.success {
    background: #bcf199;
    border-color: #008600;
}

.warning {
    color: #e7a200;
}

.warning::before {
    content: '\26A0\fe0e';
    background: #e7a200;
    color: #ffffff;
    padding-top: 0.35rem;
    text-align: center;
    font-size: 1.25rem;
}

.message.square.warning {
    background: #f1db8f;
    border-color: #e7a200;
}

.failed {
    color: #860000;
}

.failed::before {
    content: '\2716\fe0e';
    background: #860000;
    color: #ffffff;
}

.message.square.failed {
    background: #f1ae99;
    border-color: #860000;
}

.inputBox {
    margin-top: 3rem;
    --inputFontSize: 1rem
}

.input {
    position:relative;
    margin-bottom:45px;
}

.input input {
    font-size:var(--inputFontSize);
    padding:10px 10px 10px 5px;
    display:block;
    width:100%;
    border:none;
    border-bottom:1px solid #323232;
    background: transparent;
    box-sizing: border-box;
}

.input input:focus {
    outline:none;
}

.input label {
    color:#323232;
    font-size:var(--inputFontSize);
    font-weight:normal;
    position:absolute;
    pointer-events:none;
    left:5px;
    top:10px;
    transition:0.2s ease all;
    -moz-transition:0.2s ease all;
    -webkit-transition:0.2s ease all;
}

.input input:focus ~ label, .input input:valid ~ label {
    top:-20px;
    font-size:var(--inputFontSize);
    color:#0046c8;
}

.input .bar {
    position:relative;
    display:block;
    width:100%;
}

.input .bar:before, .input .bar:after {
    content:'';
    height:2px;
    width:0;
    bottom:0;
    position:absolute;
    background:#0046c8;
    transition:0.2s ease all;
    -moz-transition:0.2s ease all;
    -webkit-transition:0.2s ease all;
}

.input .bar:before {
    left:50%;
}

.input .bar:after {
    right:50%;
}

.input input:focus ~ .bar:before, .input input:focus ~ .bar:after {
    width:50%;
}

.input .highlight {
    position:absolute;
    height:60%;
    width:100px;
    top:25%;
    left:0;
    pointer-events:none;
    opacity:0.5;
}

.input input:focus ~ .highlight {
    -webkit-animation:inputHighlighter 0.3s ease;
    -moz-animation:inputHighlighter 0.3s ease;
    animation:inputHighlighter 0.3s ease;
}

@-webkit-keyframes inputHighlighter {
    from { background:#0046c8; }
    to 	{ width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
    from { background:#0046c8; }
    to 	{ width:0; background:transparent; }
}
@keyframes inputHighlighter {
    from { background:#0046c8; }
    to 	{ width:0; background:transparent; }
}

.shadow {
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}

.square {
    border-radius: 1rem;
    border: 2px solid;
    border-color: #f2f2f2;
}

.last, .next {
    padding: 0 1rem;
}

.last:hover, .next:hover {
    cursor: pointer;
}

.padBox {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 2rem;
    position: absolute;
    flex-wrap: wrap;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.actionBox {
    font-style: italic;
    position: relative;
}

.actionBox a, .actionBox input[type="submit"], .actionBox button {
    display: inline-block;
    /*height: 100%;*/
    /*width: 100%;*/
    border: none;
    color: inherit;
    /*margin: 0 auto;*/
    padding: 0;
    font-size: 1rem;
    /*line-height: 2;*/
    /*text-align: right;*/
    letter-spacing: unset;
    text-transform: uppercase;
}

.actionBox a:hover, .actionBox input[type="submit"]:hover, .actionBox button:hover {
    background: none;
    color: unset;
}

.groupBox {
    grid-column: span 6;
    grid-row: span 3;
}

.groupBox .padBox button[type="submit"] {
    font-size: 1.2rem;
}

/*.group {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;*/
/*}*/

/*.upper-group, .lower-group {*/
/*    width: 100%;*/
/*}*/

/*.upper-group {*/
/*    padding: 12px 24px;*/
/*}*/

/*.lower-group {*/
/*    padding: 12px 24px 24px 24px;*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*    justify-content: flex-end;*/
/*    align-items: flex-end;*/
/*}*/

.groupname {
    font-size: 20px;
    font-weight: bold;
}

.groupinfo {
    font-style: italic;
    margin-top: 0.25rem;
}

.addFacts {
    font-size: 0.9rem;
}

input[type="submit"], button {
    background: none;
    color: #323232;
    border: 1px solid #323232;
    padding: 0.75rem 1.5rem;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border-radius: 0.5rem;
}

input[type="submit"]:hover, button:hover {
    background: #323232;
    color: #fff;
}

.whiteBtn {
    color: #fff;
    border-color: #fff;
}

.whiteBtn:hover {
    background: #fff;
    color: #323232;
}

.invite {
    margin-right: 0.5rem;
}

label {
    font-family: inherit;
    font-weight: 400;
    font-style: normal;
}

a:focus {
    text-decoration: none;
}

#account {
    grid-column: span 6;
    grid-row: span 3;
}

#new_group {
    grid-column: span 6;
    grid-row: span 3;
}



.chooseBox {
    font-size: 1.5rem;
    padding: 1.5rem 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gameBox {
    position: relative;
    padding: 3rem 0;
}

.gameBox .gamePart {
    position: relative;
    width: 100%;
    height: 100%;
    padding-right: var(--rightPart);
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.gameBox .gamePart .result {
    font-size: 3rem;
}

.gameBox .tipPart {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    -webkit-clip-path: polygon(85% 0, 100% 0, 100% 100%, var(--leftPart) 100%);
    clip-path: polygon(85% 0, 100% 0, 100% 100%, var(--leftPart) 100%);
    padding: 0 0 3rem var(--leftPart);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.gameBox .tipPart .content {
    font-size: 3rem;
}

.x-point {
    color: #c1c1c1;
}

.d-point {
    color: #009fff;
}

.e-point {
    color: #008600;
}

.bluegradient {
    background: #0046c8; /* Old browsers */
    background: -moz-linear-gradient(left,  #0046c8 0%, #0078c8 35%, #0078c8 65%, #0046c8 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #0046c8 0%,#0078c8 35%,#0078c8 65%,#0046c8 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #0046c8 0%,#0078c8 35%,#0078c8 65%,#0046c8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0046c8', endColorstr='#0046c8',GradientType=1 ); /* IE6-9 */
    color: #fff;
    border-color: #0078c8;
}

.greengradient {
    background: #008600; /* Old browsers */
    background: -moz-linear-gradient(left,  #008600 0%, #08a908 35%, #08a908 65%, #008600 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #008600 0%,#08a908 35%,#08a908 65%,#008600 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #008600 0%,#08a908 35%,#08a908 65%,#008600 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0046c8', endColorstr='#0046c8',GradientType=1 ); /* IE6-9 */
    color: #fff;
    border-color: #08a908;
}

.graygradient {
    background: #ebebeb; /* Old browsers */
    background: -moz-linear-gradient(left, #ebebeb 0%, #ffffff 30%, #ffffff 70%, #ebebeb 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #ebebeb 0%,#ffffff 30%,#ffffff 70%,#ebebeb 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #ebebeb 0%,#ffffff 30%,#ffffff 70%,#ebebeb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb', endColorstr='#ebebeb',GradientType=1 ); /* IE6-9 */
    border-color: #ffffff;
}

.blackgradient {
    background: #000000; /* Old browsers */
    background: -moz-linear-gradient(left,  #000000 0%, #323232 35%, #323232 65%, #000000 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  #000000 0%,#323232 35%,#323232 65%,#000000 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  #000000 0%,#323232 35%,#323232 65%,#000000 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 ); /* IE6-9 */
    color: #fff;
    border-color: #323232;
}

.bluegradient a, .graygradient a, .blackgradient a {
    text-decoration: none;
    color: inherit;
}

.goldgradient {
    background: #F1DA36; /* Old browsers */
    background: -moz-linear-gradient(left, #F1DA36 0%, #ffffff 30%, #ffffff 70%, #F1DA36 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #F1DA36 0%,#ffffff 30%,#ffffff 70%,#F1DA36 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #F1DA36 0%,#ffffff 30%,#ffffff 70%,#F1DA36 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F1DA36', endColorstr='#F1DA36',GradientType=1 ); /* IE6-9 */
    color: #323232;
}

.orangegradient {
    background: #ff8c00; /* Old browsers */
    background: -moz-linear-gradient(left, #ff8c00 0%, #ffffff 30%, #ffffff 70%, #ff8c00 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #ff8c00 0%,#ffffff 30%,#ffffff 70%,#ff8c00 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #ff8c00 0%,#ffffff 30%,#ffffff 70%,#ff8c00 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8c00', endColorstr='#ff8c00',GradientType=1 ); /* IE6-9 */
    color: #323232;
}

.isdisabled {
    cursor: not-allowed !important;
    text-decoration: none !important;
    background: #ebebeb !important; /* Old browsers */
    background: -moz-linear-gradient(left, #ebebeb 0%, #ffffff 30%, #ffffff 70%, #ebebeb 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #ebebeb 0%,#ffffff 30%,#ffffff 70%,#ebebeb 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #ebebeb 0%,#ffffff 30%,#ffffff 70%,#ebebeb 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb', endColorstr='#ebebeb',GradientType=1 ) !important; /* IE6-9 */
}

.isdisabled .stretchy-wrapper .wrapper-content a {
    color: #e1e1e1 !important;
}

.isdisabled:hover .stretchy-wrapper .wrapper-content a {
    cursor: not-allowed !important;
    text-decoration: none !important;
}

.white {
    background: #fff;
}

.big_nav_point {
    font-size: 2rem;
}

/** NEW CSS */

/** Checkboxen als Schalter */

input.switch {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    clip-path: inset(50%);
    white-space: nowrap;
}

label.switch {
    cursor: pointer;
    text-indent: -9999px;
    width: calc(var(--switchSize)*2);
    height: var(--switchSize);
    background: grey;
    display: block;
    border-radius: var(--switchSize);
    position: relative;
}

label.switch:after {
    content: '';
    position: absolute;
    top: var(--switchSpace);
    left: var(--switchSpace);
    width: calc(var(--switchSize) - 2*var(--switchSpace));
    height: calc(var(--switchSize) - 2*var(--switchSpace));
    background: #fff;
    border-radius: calc(var(--switchSize) - 2*var(--switchSpace));
    transition: 0.3s;
}

input.switch:checked + label.switch {
    background: #008600;
}

input.switch:checked + label.switch:after {
    left: calc(100% - var(--switchSpace));
    transform: translateX(-100%);
}

SquareGrid {
    --gutter: 2vw;
    --columns: 24;
    --content-width: calc(1600px - (2 * var(--gutter)));
    --row-size: calc((var(--content-width) - (var(--gutter) * (var(--columns) - 1))) / var(--columns));
    display: grid;
    margin: 0 auto;
    padding: var(--gutter) 0;
    width: 100%;
    max-width: var(--content-width);
    grid-template-columns: repeat(var(--columns), 1fr);
    grid-auto-rows: var(--row-size);
    grid-column-gap: var(--gutter);
    grid-row-gap: var(--gutter);
    margin-bottom: calc(2 * var(--gutter));
}

.textCenter {
    text-align: center;
}

.icon {
    height: 0;
}

.icon::after {
    content: "";
    top: 0.2rem;
    margin: 0 0.2rem;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.2rem;    /* Adjust these values */
    height: 1.2rem;   /* to fit your icon size */
    display: inline-block;
}

.icon.icon-share::after {
    background-image: url('../images/share-ios.png');
}

.icon.icon-add::after {
    background-image: url('../images/add-ios.png');
}
.team-placeholder-logo{display:inline-block;box-sizing:border-box;width:var(--team-logo-size,44px);height:var(--team-logo-size,44px);flex:0 0 auto;border:2px solid #fff;border-radius:10px 10px 15px 15px;background:conic-gradient(from 210deg,var(--placeholder-color-1) 0 33.333%,var(--placeholder-color-2) 33.333% 66.666%,var(--placeholder-color-3) 66.666% 100%);box-shadow:0 0 0 1px rgba(16,24,40,.18),0 3px 8px rgba(16,24,40,.12)}
