/* Grundeinstellungen */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

::selection,
::-moz-selection {
    color: #cfffe5;
    background-color: #327f8e;
}

:root {
    --text-color: #327f8e;
    --hover-color: crimson;
    --bg-color: #cfffe5;
    --sec-bg-color: #0da780;
    --big-font: 2.5rem;
    --norm-font: 2rem;
    --h2-font: 3rem;
    --clr: #cfffe5;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #081b29;
}

.wrapper {
    position: relative;
    width: 500px;
    height: 820px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.wrapper .form-box {
    position: absolute;
    top: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wrapper .menu-box {
    position: absolute;
    top: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.wrapper .form-box.login {
    left: 0;
    padding: 0 40px;
}

.img-box {
    text-align: center;
}

.img-box img {
    width: 150px;
    height: auto;
}

.form-box .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 25px 0;
}

.input-box input[type=text],
.input-box input[type=number],
.input-box input[type=password] {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 2px solid #fff;
    font-size: 16px;
    color: #fff;
    padding-right: 23px;
    font-weight: 500;
    transition: .5s;
}

.input-box input:focus,
.input-box input:valid {
    border-bottom-color: #0ef;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}

.input-box input:focus~label,
.input-box input:valid~label {
    top: -5px;
    color: #0ef;
}

.input-box i {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 18px;
    color: #fff;
    transition: .5s;
}

.input-box input:focus~i,
.input-box input:valid~i {
    color: #0ef;
}

.btn {
    position: relative;
    width: 100%;
    height: 45px;
    background: transparent;
    border: 2px solid #0ef;
    outline: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    z-index: 1;
    overflow: hidden;
    margin: 5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 300%;
    background: linear-gradient(#081b29, #0ef, #081b29, #0ef);
    z-index: -1;
    transition: .5s;

}

.btn:hover::before {
    top: 0;
}


.not-allowed {
    cursor: not-allowed;
}

[disabled] {
    opacity: .6;
    cursor: not-allowed;
}

.form-box h2 {
    font-size: 32px;
    color: #fff;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}

.form-box img {
    width: 150px;
    height: auto;
}

.form-box h3 {
    font-size: 24px;
    color: #fff;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

.form-box p {
    font-size: 16px;
    color: #fff;
    text-align: center;
}

.menu-box h2 {
    font-size: 32px;
    color: #fff;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
}

.menu-box img {
    width: 150px;
    height: auto;
}

.menu-box h3 {
    font-size: 24px;
    color: #fff;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
}

.menu_buttons {
    position: relative;
    /* margin-left: auto;
    margin-right: auto; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* width: 100%; */
}

.canvas-box {
    background: #ebebeb;
    margin: 10px;
    border-radius: 10px;
    padding: 8px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

#fila {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

#fila td, #fila th {
    border: 1px solid #ddd;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    color: #fff;
}

#fila tr:nth-child(even) {
    background-color: #123b58;
}

#fila tr:hover {
    background-color: #17e0c6;
}

#fila th {
    text-align: left;
    background-color: #327f8e;
    font-weight: bold;
}

#fila .td_right {
    text-align: right;
}

#tankstellen {
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

#tankstellen td, #tankstellen th {
    border: 1px solid #ddd;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    color: #fff;
}

#tankstellen tr:nth-child(even) {
    background-color: #123b58;
}

#tankstellen tr:hover {
    background-color: #17e0c6;
}

#tankstellen th {
    text-align: left;
    background-color: #327f8e;
    font-weight: bold;
}

#tankstellen .td_right {
    text-align: right;
}

.table_resp {
    overflow-x: auto;
}
.table_tankstellen  {
    overflow-x: auto;
    padding: 10px;
}

b, strong {
    font-weight: 700;
}

#content {
    padding: 25px 0;
}
.checker {
    display: flex;
    justify-content: center;
    align-items: center;

}
.checker label {
    position: relative;
    width: 150px;
    height: 75px;
    background: #838383;
    box-shadow: 0 0 0 4px #222;
    border-radius: 75px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.checker label input {
    appearance: none;
}
.checker label span {
    position: absolute;
    left: 70px;
    width: 87px;
    height: 75px;
    background: url(/images/1chf.png);
    background-size: 87px 75px;
    z-index: 10000;
    transition: 1.5s;
    transform: rotate(360deg);
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.5));
    -webkit-transition: 1.5s;
    -moz-transition: 1.5s;
    -ms-transition: 1.5s;
    -o-transition: 1.5s;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}
.checker label input:checked ~ span {
    left: -5px;
    transform: rotate(720deg);
    /* transform-origin: 75px; */
    background: url(/images/1euro.png);
    background-size: 87px 75px;
    
}
.checker label b {
    position: absolute;
    inset: 0;
    background: url(/images/bg_ch.png);
    border-radius: 75px;
    transition: 1.5s;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.75);
    opacity: 0.75;
    
}
.checker label input:checked ~ b {
    background: url(/images/bg_eu.png);
}
.checker h5 {
    text-align: left;
    align-items: center;
    color: #fff;
}
[data-tooltip] {
    position: relative;
    cursor: pointer;
  }
  [data-tooltip]:before,
  [data-tooltip]:after {
    line-height: 1;
    font-size: .9em;
    pointer-events: none;
    position: absolute;
    box-sizing: border-box;
    display: none;
    opacity: 0;
    filter: drop-shadow(2px 2px 4px #17e0c6);
  }
  [data-tooltip]:before {
    content: "";
    border: 5px solid transparent;
    z-index: 100;
  }
  [data-tooltip]:after {
    content: attr(data-tooltip);
    text-align: center;
    min-width: 3em;
    max-width: 21em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 6px 8px;
    border-radius: 3px;
    background: #17E0C6;
    color: #000000;
    z-index: 99;
  }
  [data-tooltip]:hover:before,
  [data-tooltip]:hover:after {
    display: block;
    opacity: 1;
  }
  [data-tooltip]:not([data-flow])::before,
  [data-tooltip][data-flow="top"]::before {
    bottom: 100%;
    border-bottom-width: 0;
    border-top-color: #17E0C6;
  }
  [data-tooltip]:not([data-flow])::after,
  [data-tooltip][data-flow="top"]::after {
    bottom: calc(100% + 5px);
  }
  [data-tooltip]:not([data-flow])::before, [tooltip]:not([data-flow])::after,
  [data-tooltip][data-flow="top"]::before,
  [data-tooltip][data-flow="top"]::after {
    left: 50%;
    -webkit-transform: translate(-50%, -4px);
            transform: translate(-50%, -4px);
  }
  [data-tooltip][data-flow="bottom"]::before {
    top: 100%;
    border-top-width: 0;
    border-bottom-color: #17E0C6;
  }
  [data-tooltip][data-flow="bottom"]::after {
    top: calc(100% + 5px);
  }
  [data-tooltip][data-flow="bottom"]::before, [data-tooltip][data-flow="bottom"]::after {
    left: 50%;
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
  [data-tooltip][data-flow="left"]::before {
    top: 50%;
    border-right-width: 0;
    border-left-color: #17E0C6;
    left: calc(0em - 5px);
    -webkit-transform: translate(-8px, -50%);
            transform: translate(-8px, -50%);
  }
  [data-tooltip][data-flow="left"]::after {
    top: 50%;
    right: calc(100% + 5px);
    -webkit-transform: translate(-8px, -50%);
            transform: translate(-8px, -50%);
  }
  [data-tooltip][data-flow="right"]::before {
    top: 50%;
    border-left-width: 0;
    border-right-color: #17E0C6;
    right: calc(0em - 5px);
    -webkit-transform: translate(8px, -50%);
            transform: translate(8px, -50%);
  }
  [data-tooltip][data-flow="right"]::after {
    top: 50%;
    left: calc(100% + 5px);
    -webkit-transform: translate(8px, -50%);
            transform: translate(8px, -50%);
  }
  [data-tooltip=""]::after, [data-tooltip=""]::before {
    display: none !important;
  }
  
  
@media (min-width:992px) {
    #content {
        padding: 60px 0;
    }
}

/* footer {
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 25px 0;
} */

footer a {
    color: var(--hover-color);
}

@media (min-width:992px) {
    footer {
        padding: 45px 0;
    }
}

.heart {
    width: 16px;
    height: 14px;
    transform: translate(0px, 2px);
    color: crimson;
}


/* Grundeinstellungen Ende */

/* Font Awesome */

/*    */

/* Font Urbanist */
@font-face {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Urbanist-Regular.ttf');
}

@font-face {
    font-family: 'Urbanist';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/Urbanist-Italic.ttf');
}

@font-face {
    font-family: 'Urbanist';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Urbanist-Bold.ttf');
}

@font-face {
    font-family: 'Urbanist';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/Urbanist-BoldItalic.ttf');
}