@font-face {
    font-family: Oswald;
    src: url("fonts/Oswald/Oswald-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Oswald;
    src: url("fonts/Oswald/Oswald-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

:root {
    --darktextcolor: #000000;
    --lighttextcolor: #ffffff;
    --textcolor: #000000;
    --invtextcolor: #ffffff;
    --backgroundcolor: #b2b2b2;
    --elementcolor: #dddddd;
    --separatorcolor: #e9e9e9;
    --linkcolor: #4677a9;
    --highlightcolor: #ffffff;
    --signalcolor: #970E53;
    --greensignal: #99f083;
    --dimmsignalcolor: #2e2e2e;
}

html, body {
    font-family: Helvetica, Arial, sans-serif;
    color: var(--textcolor);
    padding: 0%;
    margin: 0%;
    background-color: var(--backgroundcolor);
}

a {
    text-decoration: none;
    color: var(--linkcolor);
}

section h1, section h2, section h3, section h4 {
    color: var(--textcolor);
    font-weight: bold;
    font-family: Oswald;
    line-height: 1.2;
}

.redbg {
    background-color: rgb(182, 97, 89);
}

.bluebg {
    background-color: rgb(45, 113, 158);
}

.greenbg {
    background-color: rgb(40, 126, 97);
}

.yellowbg {
    background-color: rgb(210, 168, 60);
}

.whitebg {
    background-color: rgb(255, 255, 255);
}

.purplebg {
    background-color: rgb(133, 72, 144);
}

.greybg1 {
    background-color: rgb(111, 111, 111);
}

.greybg2 {
    background-color: rgb(54, 54, 54);
    color: var(--lighttextcolor);
}

.greybg3 {
    background-color: rgb(134, 134, 134);
    color: var(--lighttextcolor);
}

.greybg2 h2 {
    color: var(--lighttextcolor);
}

.tips {
    padding-top: 80px;
}

.tips section {
    border-bottom: 1px solid var(--separatorcolor);
}

.bluelink {
    color: var(--linkcolor) !important;
}

a:hover {
    cursor: pointer;
}

form {
    padding: 10px 40px;
}

.content {
    padding: 0px;
    scroll-margin-top: 40px;
}

section {
    display: flex;
    flex-wrap: wrap;
    scroll-margin-top: 40px;
    justify-content: center;
    padding-bottom: 18px;
}

select {
    background: linear-gradient(45deg, transparent 50%, gray 50%) calc(100% - 15px) calc(1em - 2px) / 5px 5px no-repeat, linear-gradient(135deg, gray 50%, transparent 50%) calc(100% - 10px) calc(1em - 2px) / 5px 5px, linear-gradient(to right, rgb(204, 204, 204), rgb(204, 204, 204)) calc(100% + 2.5em) 0.5em / 1px 1.5em black;
    color: rgb(230, 230, 230);
    appearance: none;
    border: medium;
    padding: 0px 7px 0px 9px;
    height: 2em;
    font-weight: 400;
    font-size: 1em;
    cursor: pointer;
    margin-right: 300px;
    width: 70%;
}

select:focus {
    outline: currentcolor;
}

button {
    border-radius: 5px;
    border: medium;
    padding: 5px 9px;
    background-color: rgb(230, 230, 230);
    font-size: 12px;
    height: 27px;
    font-weight: 500;
    cursor: pointer;
}

input[type="submit"], input[type="reset"] {
    border-radius: 5px;
    border: medium;
    padding: 5px 9px;
    font-size: 1em;
    height: 2em;
    font-weight: 500;
    cursor: pointer;
    color: rgb(230, 230, 230);
    background-color: black;
}

::placeholder {
    color: rgb(0, 0, 0);
}

input[type="search"]::placeholder {
    color: rgb(0, 0, 0);
}

.header {
    position: fixed;
    width: 100%;
    z-index: 3;
    display: flex;
    background-color: var(--highlightcolor);
    height: 40px;
    align-items: center;
}

.headerdm {
    position: fixed;
    width: 100%;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    background-color: var(--highlightcolor);
    height: 40px;
    align-items: center;
}

#scrolling-div {
    height: 40px;
}

.header ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    overflow: hidden;
    background-color: var(--highlightcolor);
}

.header li a {
    display: block;
    padding: 15px 20px;
    border-left: 1px solid var(--separatorcolor);
    text-decoration: none;
    font-size: 0.7em;
    height: 10px;
    color: var(--textcolor);
}

.header .language {
    background-color: var(--elementcolor);
}

.header li a:hover, .header .menu-btn:hover {
    background-color: var(--signalcolor);
}

.header .logo {
    float: left;
    text-decoration: none;
}

.header .menu {
    clear: both;
    max-height: 0px;
    transition: max-height 0.2s ease-out;
}

.here {
    background-color: var(--signalcolor);
    color: var(--invtextcolor) !important;
}

.activelanguage {
    font-weight: bold;
    background-color: var(--dimmsignalcolor) !important;
    color: var(--invtextcolor) !important;
}

.activelanguage a {
    font-weight: bold;
    color: var(--invtextcolor);
    background-color: var(--dimmsignalcolor) !important;
}

.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    padding: 19px;
    position: absolute;
    -webkit-user-select: none;
    right: 7px;
}

.header .menu-icon .navicon {
    background: var(--textcolor);
    display: block;
    height: 2px;
    position: relative;
    transition: background 0.2s ease-out;
    width: 22px;

}

.header .menu-icon .navicon::before, .header .menu-icon .navicon::after {
    background: var(--textcolor);
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    transition: 0.2s ease-out;
    width: 100%;
}

.header .menu-icon .navicon::before {
    top: 5px;
}

.header .menu-icon .navicon::after {
    top: -5px;
}

#menubtn {
    z-index: -3;
}

@media (min-width: 768px) {
    .header li {
        float: left;
    }

    .header .menu {
        clear: none;
        float: right;
        max-height: none;
        margin-left: auto;
    }

    .header .menu-icon {
        display: none;
    }

    #menu-btn {
        z-index: 100;
        display: none;
    }
}

.hero {
    width: 100%;
    position: relative;
    text-align: center;
}

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

.heroimg {
    filter: blur(var(--value, 1rem));
    --value: 4px;
}

.hero-text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 60%;
}

.herolead {
    padding-bottom: 30px;
    color: var(--lighttextcolor);
}

.heroblock {
    text-align: start;
    color: var(--lighttextcolor);
}

.first {
    color: var(--highlightcolor);
    padding-top: 80px;
    padding-bottom: 80px;
    font-family: Oswald;
    font-size: 1.5em;
}

.hero-text h1 {
    font-family: Oswald;
    font-size: 2em;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 0px 5px;
    color: var(--lighttextcolor);
}

.badgescontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.badges {
    flex-wrap: nowrap;
    width: 80%;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.badgeimg {
    height: 60px !important;
    width: auto !important;
}

.bigscreen {
    display: inline;
}

.smallscreen {
    display: none;
}

.titlerow {
    display: flex;
    flex-flow: row-reverse wrap-reverse;
    padding-bottom: 30px;
    padding-top: 40px;
}

.titlerowlanding {
    display: flex;
    flex-flow: row-reverse wrap-reverse;
    padding-bottom: 30px;
    padding-top: 0px;
}

.square {
    flex: 1 0 350px;
    min-width: 330px;
    max-width: 100%;
    height: 300px;
    position: relative;
    color: var(--lighttextcolor);
}

.smallsquare {
    flex: 1 0 350px;
    min-width: 330px;
    max-width: 100%;
    height: 80px;
    position: relative;
    color: var(--lighttextcolor);
}

.square:nth-child(1) {
    flex-grow: 4;
    order: 6;
}

.square:nth-child(2) {
    flex-grow: 4;
    order: 5;
}

.square:nth-child(3) {
    flex-grow: 3;
    order: 4;
}

.square:nth-child(4) {
    flex-grow: 2;
    order: 3;
}

.square:nth-child(5) {
    flex-grow: 2;
    order: 2;
}

.square:nth-child(6) {
    flex-grow: 2;
    order: 1;
}

.support .square {
    flex: 1 0 300px;
    min-width: 300px;
    max-width: 100%;
    height: 130px;
    position: relative;
}

.support .titlerow {
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
}

.square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.square .inner {
    position: absolute;
    top: 9px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    color: var(--lighttextcolor);
    font-size: 24px;
    flex-direction: column;
    justify-content: start;
}

.inner h3 {
    font-family: Oswald;
    margin: 0px;
    padding: 9px;
    line-height: 1.2em;
}

.inner span {
    margin: 0px;
    padding: 20px 9px 9px;
}

.mainbox-text {
    padding-top: 3em;
}

.mainbox-text h1 {
    font-family: Oswald;
    font-size: 2em;
}

.box {
    scroll-margin-top: 40px;
    margin: 12px;
}

.block {
    margin: 9px;
}

.blocktext {
    width: 100%;
}

.bigimage {
    height: 260px;
}

.topbox h3 {
    margin: 0px 0px 10px;
}

.bottombox p {
    margin: 0px 0px 10px;
    font-size: 0.8em;
}

.linebreaktitle {
    width: 100%;
    padding: 9px 9px 9px 50px;
    color: var(--textcolor);
    font-size: 24px;
}

#coverage .linebreaktitle {
    padding: 40px 9px 9px 50px;
    color: var(--highlightcolor);
    background-color: color(srgb 0.6431 0.0902 0.0745);
}

.textpartcoverage {
    padding: 9px;
}

.imagepartcoverage {
    text-align: center;
}

.coverageimage {
    width: 500px;
}

.gettheapp {
    padding: 9px 50px;
    color: var(--textcolor);
    background-color: var(--highlightcolor);
}

.linebreak {
    flex-basis: 100%;
    height: 1px;
}

#gettheapp {
    gap: 25px;
    flex-wrap: wrap;
}

.support .linebreaktitle {
    width: calc(-54px + 100vw);
    padding: 9px 9px 9px 45px;
    color: var(--lighttextcolor);
    margin: 27px 0px 18px;
}

.tips .linebreaktitle {
    width: 100%;
    padding: 9px 9px 9px 27px;
    color: var(--textcolor);
}

.bottombox {
    display: flex;
    align-items: stretch;
    justify-content: start;
    background-color: var(--highlightcolor);
}

.videobox {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    background-color: var(--highlightcolor);
}

.bottombox h3 {
    margin: 0px 0px 10px;
    font-size: 1em;
}

.tips .textpart {
    padding: 9px;
    background: var(--highlightcolor);
}

.tips .imagepart {
    width: auto;
    text-align: center;
}

.pushtoright {
    margin-left: auto;
}

.imagepart {
    height: 260px;
    width: 260px;
}

.textpart {
    padding: 19px;
    background: var(--highlightcolor);
    width: 260px;
}

.bottompart {
    padding: 0px 19px;
    background: var(--highlightcolor);
}

.bottompartvideo {
    padding: 7px 0px 0px;
    background: var(--backgroundcolor);
    text-align: end;
    font-size: 0.8em;
}

.widetextpart {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 19px;
    background: var(--highlightcolor);
    width: 260px;
}

.largetextpart {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 19px;
    background: var(--highlightcolor);
    width: 557px;
}

.line-break {
    width: 100%;
}

.note {
    color: var(--signalcolor);
}

.logo {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.tipslogo {
    height: 100px;
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.logoschrift {
    height: 40px;
}

.tipslogoschrift {
    height: 100px;
}

.width {
    width: 100%;
}

.tipsimage {
    width: 120px;
}

.search {
    width: 300px;
    display: inline-block;
}

.copy {
    background-color: transparent;
    float: right;
    margin-top: -20px;
    margin-right: -18px;
}

.copy img {
    width: 20px;
    opacity: 0.2;
}

.copyallert {
    background-color: var(--greensignal);
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 5px;
}

.notification {
    padding-top: 0.5em;
    padding-bottom: 2em;
    text-align: center;
    font-weight: 700;
}

.support h2 {
    padding-top: 52px;
    font-weight: bold;
    font-family: Oswald;
    border-top: 1px solid var(--highlightcolor);
}

.support h2:first-child {
    border-top-width: medium;
    border-top-style: none;
    border-top-color: currentcolor;
}

#objects, #nomaps, #abo {
    scroll-margin: 40px;
}

.thankscontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#thankslogo {
    width: 60%;
    max-width: 480px;
    padding: 27px;
}

.thanks {
    margin-top: 2em;
    font-size: 2em;
    font-family: Oswald;
}

.verysmallimage {
    height: 13px;
    width: 13px;
    vertical-align: middle;
    display: inline-block;
    background-size: cover;
}

.smallimage {
    height: 20px;
    width: 20px;
    vertical-align: middle;
    display: inline-block;
    background-size: cover;
}

.midimage {
    height: 30px;
    width: 30px;
    vertical-align: middle;
    display: inline-block;
    background-size: cover;
    margin-right: 5px;
}

.message {
    padding: 10px 40px;
}

.message-header {
    cursor: pointer;
    background-color: var(--highlightcolor);
    padding: 10px 30px 10px 10px;
    box-shadow: rgba(59, 59, 59, 0.36) 6px 7px 21px -10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    font-weight: bold;
    font-family: Oswald;
}

.is-closed .message-body {
    overflow: hidden;
    height: 0px;
}

.is-open .message-body {
    overflow: hidden;
    padding: 20px 10px 10px;
    line-height: 1.4;
    background-color: var(--highlightcolor);
}

.is-closed .arrowimg {
    height: 30px;
    width: 30px;
    background: url("support/right.png") 0% 0% / contain no-repeat;
    margin-right: 20px;
    flex-shrink: 0;
}

.is-open .arrowimg {
    height: 30px;
    width: 30px;
    background: url("support/down.png") 0% 0% / contain no-repeat;
    margin-right: 20px;
    flex-shrink: 0;
}

.is-open .subarrowimg {
    height: 30px;
    width: 30px;
    background: url("support/down.png") 0% 0% / contain no-repeat;
    margin-right: 20px;
    flex-shrink: 0;
}

.is-closed .subarrowimg {
    height: 30px;
    width: 30px;
    background: url("support/right.png") 0% 0% / contain no-repeat;
    margin-right: 20px;
    flex-shrink: 0;
}

.submessage {
    padding: 10px 40px;
    scroll-margin-top: 40px;
}

.submessage-header {
    cursor: pointer;
    background-color: var(--highlightcolor);
    padding: 10px 30px 10px 10px;
    box-shadow: rgba(17, 17, 17, 0.53) -3px -3px 21px -10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    font-weight: bold;
    font-family: Oswald;
}

.is-open .submessage-body {
    overflow: hidden;
    padding: 20px 10px 10px;
    line-height: 1.4;
    background-color: var(--highlightcolor);
}

.is-closed .submessage-body {
    overflow: hidden;
    height: 0px;
    padding: 0px;
}

.submessage-content {
    padding: 20px;
}

.slidecontainer {
    width: 100%;
}

.slider {
    appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: var(--elementcolor);
    outline: currentcolor;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--textcolor);
    cursor: pointer;
}

.slidertext {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1em;
}

.checkcontainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    -webkit-user-select: none;
}

.checkcontainer:first-child {
    margin-left: 0px;
}

.checklabel {
    padding-top: 3px;
}

.checkcontainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0px;
    width: 0px;
}

.checkmark {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 25px;
    width: 25px;
    background-color: rgb(226, 226, 226);
    border-radius: 5px;
}

.checkcontainer:hover input ~ .checkmark {
    background-color: rgb(204, 200, 200);
}

.checkcontainer input:checked ~ .checkmark {
    background-color: rgb(0, 0, 0);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.checkcontainer input:checked ~ .checkmark::after {
    display: block;
}

.checkcontainer .checkmark::after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border-style: solid;
    border-color: white;
    border-image: none;
    border-width: 0px 3px 3px 0px;
    transform: rotate(45deg);
}

.checkboxes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.menulink {
    padding: 10px 10px 10px 40px;
    right: 0px;
    top: 40px;
}

.biglink {
    color: var(--linkcolor);
    font-size: 1.5em;
    font-weight: bold;
    font-family: Oswald;
    cursor: pointer;
}

.submitbutton {
    margin-top: 2em;
}

.thanks {
    margin-top: 1.5em;
    font-size: 2.5em;
}

.textfield {
    border-radius: 5px;
    border: 1px solid var(--textcolor);
    padding: 5px 9px;
    background-color: var(--highlightcolor);
    font-size: 12px;
    height: 32px;
    width: 100%;
}

.field {
    padding-top: 5px;
    padding-bottom: 7px;
}

.mapimg {
    height: 20px;
    vertical-align: middle;
    border-radius: 5px;
}

.buttonimg {
    height: 20px;
    vertical-align: middle;
}

.illu {
    margin: 20px 0px;
    width: 50%;
}

.footercenter {
    text-align: center;
}

.footer {
    font-size: 11px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer p {
    padding: 1px 12px;
    margin-bottom: 1px;
    max-width: 7500px;
}

video {
    background-color: rgb(178, 178, 178);
}

.video-container {
    width: auto;
}

.gif-container {
    width: auto;
    text-align: center;
}

.img-container {
    width: auto;
    text-align: center;
}

.image-container {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.image-container1 {
    display: flex;
    width: 100%;
    background-color: white;
    justify-content: center;
}

.gif-container img {
    width: 250px;
}

.image-container img {
    width: 250px;
}

.image-container1 img {
    width: 250px;
}

.logoimage {
    background-image: url("images/logoschrift.png");
    width: 223px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.supportlogoimage {
    background-image: url("images/logoschrift.png");
    width: 223px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

#m3nu {
    background-image: url("support/images/m3nu.png");
}

#showimg {
    background-image: url("support/images/show.png");
}

#showinfo_iscream {
    background-image: url("support/images/showinfo_iscream.png");
}

#showinfo_droidinator {
    background-image: url("support/images/showinfo_droidinator.png");
}

#droidinator_loc1 {
    background-image: url("support/images/droidinator_loc1.png");
}

#droidinator_loc2 {
    background-image: url("support/images/droidinator_loc2.png");
}

#droidinator_loc3 {
    background-image: url("support/images/droidinator_loc3.png");
}

#android_loc3 {
    background-image: url("support/images/droidinator_loc3.png");
}

#android_loc2 {
    background-image: url("support/images/droidinator_loc2.png");
}

#android_loc3 {
    background-image: url("support/images/droidinator_loc3.png");
}

#iscream_loc1 {
    background-image: url("support/images/iscream_loc1.png");
}

#iscream_loc2 {
    background-image: url("support/images/iscream_loc2.png");
}

#iscream_loc3 {
    background-image: url("support/images/iscream_loc3.png");
}

#maps {
    background-image: url("support/images/maps.png");
}

#download {
    background-image: url("support/images/download.png");
}

#actions {
    background-image: url("support/images/actions.png");
}

#maps {
    background-image: url("support/images/maps.png");
}

#mark3 {
    background-image: url("support/images/mark3.png");
}

#m345u23 {
    background-image: url("support/images/m345u23.png");
}

#searchbut {
    background-image: url("support/images/searchbut.png");
}

#settings {
    background-image: url("support/images/settings.png");
}

#sm {
    background-image: url("support/images/sm.png");
}

#t24ck5 {
    background-image: url("support/images/t24ck5.png");
}

#t24ck5man {
    background-image: url("support/images/t24ck5man.png");
}

#w4nd3rw363 {
    background-image: url("support/images/w4nd3rw363.png");
}

#rec {
    background-image: url("support/images/rec.png");
}

#redrecbut {
    background-image: url("support/images/redrecbut.png");
}

#sn0wh3igh7 {
    background-image: url("support/images/sn0wh3igh7.png");
}

#r357r1c7 {
    background-image: url("support/images/r357r1c7.png");
}

#weatherclearday {
    background-image: url("support/images/icn_clearday.png");
}

#weatherclearnight {
    background-image: url("support/images/icn_clearnight.png");
}

#weatherclouds {
    background-image: url("support/images/icn_clouds.png");
}

#weatherfog {
    background-image: url("support/images/icn_fog.png");
}

#weatherrain1 {
    background-image: url("support/images/icn_percepitation1.png");
}

#weatherrain2 {
    background-image: url("support/images/icn_percepitation2.png");
}

#weathersnow1 {
    background-image: url("support/images/icn_lilsnow.png");
}

#weathersnow2 {
    background-image: url("support/images/icn_snow.png");
}

#weatherlightning {
    background-image: url("support/images/icn_storm.png");
}

#weatherstorm {
    background-image: url("support/images/icn_thunderstorm.png");
}

#weatherwind {
    background-image: url("support/images/icn_wind1.png");
}

#weathergust {
    background-image: url("support/images/icn_wind2.png");
}

#weatherwatertemperature {
    background-image: url("support/images/icn_watertemperature.png");
}

#weathersnowdepth {
    background-image: url("support/images/icn_snowdepth.png");
}

#weather_uncertain {
    background-image: url("support/images/weather_uncertain.png");
}

#weather_veryuncertain {
    background-image: url("support/images/weather_veryuncertain.png");
}

.scroll-down {
    position: absolute;
    bottom: 5%;
    display: block;
    text-align: center;
    font-size: 40px;
    text-decoration: none;
    width: 20px;
    height: 20px;
    border-bottom: 5px solid var(--highlightcolor);
    border-right: 5px solid var(--highlightcolor);
    z-index: 9;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    animation: 4s ease-in-out infinite fade_move_down;
}

@keyframes fade_move_down {
    0% {
        transform: translate(0px, -10px) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0px, 10px) rotate(45deg);
        opacity: 0;
    }
}

@keyframes fade_move_down {
    0% {
        transform: translate(0px, -10px) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(0px, 10px) rotate(45deg);
        opacity: 0;
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --textcolor: #ececec;
        --invtextcolor: #ffffff;
        --backgroundcolor: #303030;
        --elementcolor: #7d7d7d;
        --separatorcolor: #191919;
        --linkcolor: #75abe1;
        --highlightcolor: #000000;
        --signalcolor: #970E53;
        --greensignal: #99f083;
        --dimmsignalcolor: #2e2e2e;
    }

    .titlesquare {
        box-shadow: rgba(17, 17, 17, 0.36) 5px 8px 12px -10px;
    }

    .submessage-header {
        box-shadow: rgba(17, 17, 17, 0.36) 5px 8px 12px -10px;
    }

    .message-header {
        box-shadow: rgba(17, 17, 17, 0.36) 5px 8px 12px -10px;
    }

    .greybg2 {
        background-color: rgb(14, 14, 14);
    }

    .logoimage {
        background-image: url("images/logoschrift_dark.png");
    }

    ::placeholder {
        color: rgb(51, 51, 51);
    }

    input[type="search"] {
        background-color: color(srgb 0.765 0.765 0.765);
    }

    input[type="search"]::placeholder {
        color: rgb(51, 51, 51);
    }

    #m3nu {
        background-image: url("support/images/m3nu_dark.png");
    }

    #showinfo_iscream {
        background-image: url("support/images/showinfo_iscream_dark.png");
    }

    #showinfo_droidinator {
        background-image: url("support/images/showinfo_droidinator_dark.png");
    }

    #droidinator_loc1 {
        background-image: url("support/images/droidinator_loc1_dark.png");
    }

    #droidinator_loc2 {
        background-image: url("support/images/droidinator_loc2_dark.png");
    }

    #droidinator_loc3 {
        background-image: url("support/images/droidinator_loc3_dark.png");
    }

    #iscream_loc1 {
        background-image: url("support/images/iscream_loc1_dark.png");
    }

    #showimg {
        background-image: url("support/images/show_dark.png");
    }

    #iscream_loc2 {
        background-image: url("support/images/iscream_loc2_dark.png");
    }

    #iscream_loc3 {
        background-image: url("support/images/iscream_loc3_dark.png");
    }

    #iscreamdroidinator_loc3 {
        background-image: url("support/images/iscream_loc3_dark.png");
    }

    #maps {
        background-image: url("support/images/maps_dark.png");
    }

    #download {
        background-image: url("support/images/download_dark.png");
    }

    #actions {
        background-image: url("support/images/actions_dark.png");
    }

    #maps {
        background-image: url("support/images/maps_dark.png");
    }

    #mark3 {
        background-image: url("support/images/mark3_dark.png");
    }

    #m345u23 {
        background-image: url("support/images/m345u23_dark.png");
    }

    #searchbut {
        background-image: url("support/images/searchbut_dark.png");
    }

    #settings {
        background-image: url("support/images/settings_dark.png");
    }

    #sm {
        background-image: url("support/images/sm_dark.png");
    }

    #t24ck5man {
        background-image: url("support/images/t24ck5man_dark.png");
    }

    #t24ck5 {
        background-image: url("support/images/t24ck5_dark.png");
    }

    #w4nd3rw363 {
        background-image: url("support/images/w4nd3rw363_dark.png");
    }

    #rec {
        background-image: url("support/images/rec_dark.png");
    }

    #sn0wh3igh7 {
        background-image: url("support/images/sn0wh3igh7_dark.png");
    }

    #redrecbut {
        background-image: url("support/images/redrecbut_dark.png");
    }

    #r357r1c7 {
        background-image: url("support/images/r357r1c7_dark.png");
    }
}

@media screen and (max-width: 1200px) {
    .hero {
        width: 100%;
        position: relative;
        text-align: center;
    }

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

    .heroimg {
        filter: blur(var(--value, 1rem));
        --value: 4px;
    }

    .hero-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        width: 90%;
    }

    .herolead {
        padding-bottom: 0px;
    }

    .heroblock {
        text-align: start;
    }

    .first {
        font-size: 1.5em;
    }

    .hero-text h1 {
        font-size: 2em;
        padding-top: 0px;
    }

    .badgescontainer {
        padding-top: 10px;
    }

    .badges {
        flex-wrap: nowrap;
        width: 80%;
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .badgeimg {
        height: 30px !important;
        width: auto !important;
    }

    .search {
        width: 250px;
    }

    .supportlogoimage {
        background-image: url("images/logosmall.png");
        width: 40px;
        height: 40px;
        background-position: left center;
    }
}

@media screen and (max-width: 900px) {
    form {
        padding: 10px;
    }

    section {
        flex-wrap: wrap;
        width: 100%;
        padding: 0px;
    }

    .content {
        padding: 0px;
    }

    .message {
        padding: 10px;
    }

    #logoschrift {
        height: 50px;
    }

    .illu {
        margin: 10px 0px;
        width: 90%;
    }


    .search {
        width: 250px;
    }

    .hero-text {
        font-size: 0.9em;
    }
}

@media screen and (max-width: 770px) {
    .inner span {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        height: 70vh;
        position: relative;
        text-align: center;
    }

    .header li a {
        padding: 19px 20px 29px 19px;
        font-size: 1.15em;
        border-left: 0px;
        border-bottom: 1px solid var(--separatorcolor);
        border-right: 0px;
    
    }

    .hero img {
        height: 100%;
    }

    .heroimg {
        filter: blur(var(--value, 1rem));
        --value: 4px;
    }

    .hero-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        width: 90%;
    }

    .scroll-down {
        display: none;
    }

    .bigscreen {
        display: none;
    }

    .smallscreen {
        display: inline;
    }

    .video-container {
        position: relative;
        text-align: center;
    }

    .ourvideos {
        background-color: black;
    }

    .menu {
        display: inline-block;
    }

    .box {
        width: 100%;
    }

    .header .menu-btn {
        display: none;
    }

    .header .menu-btn:checked ~ .menu {
        max-height: 550px;
        top: 40px;
        right: 0px;
        position: absolute;
    
    }

    .header .menu-btn:checked ~ .menu-icon .navicon {
        background: none;
    }

    .header .menu-btn:checked ~ .menu-icon .navicon::before {
        transform: rotate(-45deg);
    }

    .header .menu-btn:checked ~ .menu-icon .navicon::after {
        transform: rotate(45deg);
    }

    .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon::before, .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon::after {
        top: 0px;
    }

    .titlerow {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .submessage {
        padding: 10px 10px;
        scroll-margin-top: 40px;
    
    }

    .top {
        padding: 10px;
    }

    #landingslogan {
        padding: 10px;
    }

    #tipsslogan {
        padding: 10px;
    }

    .bottombox {
        display: flex;
        flex-direction: column;
    }

    .bottompartvideo {
        padding: 7px 7px 12px;
    }

    .tips .bottombox {
        display: inline;
    }

    .textpart {
        width: auto;
    }

    .tips .textpart {
        margin-top: 7px;
    }

    .widetextpart {
        width: auto;
    }

    .largetextpart {
        width: auto;
    }

    .imagepart {
        display: flex;
        justify-content: center;
        height: auto;
        width: auto;
    }

    .tipslogoschrift {
        height: 70px;
    }

    .bigimage {
        margin-bottom: 9px;
    }

    .square {
        flex: 1 0 30px;
        width: 100%;
        position: relative;
        height: 50px;
    }

    .square:nth-child(1) {
        flex-grow: 1;
        order: 6;
    }

    .square:nth-child(2) {
        flex-grow: 1;
        order: 5;
    }

    .square:nth-child(3) {
        flex-grow: 1;
        order: 4;
    }

    .square:nth-child(4) {
        flex-grow: 1;
        order: 3;
    }

    .square:nth-child(5) {
        flex-grow: 1;
        order: 2;
    }

    .square:nth-child(6) {
        flex-grow: 1;
        order: 1;
    }

    .support .square:nth-child(1) {
        flex-grow: 1;
        order: 1;
    }

    .support .square:nth-child(2) {
        flex-grow: 1;
        order: 2;
    }

    .support .square:nth-child(3) {
        flex-grow: 1;
        order: 3;
    }

    .support.square:nth-child(4) {
        flex-grow: 1;
        order: 4;
    }

    .support .square:nth-child(5) {
        flex-grow: 1;
        order: 5;
    }

    .support .square:nth-child(6) {
        flex-grow: 1;
        order: 6;
    }

    .support .linebreaktitle {
        width: calc(-16px + 100vw);
        padding: 9px;
        color: white;
        margin: 5px 0px;
        scroll-margin: 90px;
    }

    .support h2 {
        padding-top: 0px;
        margin: 0px;
        font-size: 0.7em;
    }

    .support .square {
        flex: 1 0 30px;
        width: 100%;
        position: relative;
        height: 70px;
    }

   .textfield {
        border-radius: 5px;
        border: 1px solid var(--textcolor);
        padding: 5px 9px;
        font-size: 1em;
        height: 32px;
        width: calc(100vw - 115px);
    
    }

    .square img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .square .inner {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        display: flex;
        color: white;
        font-size: 24px;
        flex-wrap: wrap;
    }

    .inner h3 {
        font-family: Oswald;
        margin: 0px;
        padding: 0px 0px 0px 9px;
        font-size: 24px;
    }

    .hero-text h1 {
        font-size: 1.4em;
    }

    #titles {
        display: flex;
        flex-flow: column wrap;
        justify-content: center;
        gap: 10px;
        padding: 0px 15px 15px;
    }

    .squares {
        display: flex;
        flex-flow: column wrap;
        justify-content: center;
        gap: 10px;
        padding: 0px 15px 15px;
    }

    .titlesquare {
        min-height: initial;
        height: initial;
        text-align: center;
        padding: 10px;
        flex: 0 0 0px;
        margin: 3px;
    }

    .blocksquare {
        min-height: initial;
        height: initial;
        text-align: center;
        padding: 10px;
        flex: 0 0 0px;
        margin: 3px;
    }

    .lightsquare {
        min-height: initial;
        height: initial;
        text-align: center;
        padding: 10px;
        flex: 0 0 0px;
        margin: 3px;
    }

    .checkboxes {
        flex-flow: column;
    }

    select {
        margin-right: auto;
        width: 100%;
    }

    .checkcontainer:first-child {
        margin-left: 30px;
    }

    section {
        padding: 0px;
    }

    .accordions {
        padding: 10px 0px;
    }

    .message {
        padding: 10px 0px;
    }

    .linebreaktitle {
        padding: 9px;
    }

    .gettheapp {
        padding: 9px;
    }
}

@media screen and (max-width: 600px) {
    .first p {
        font-size: 0.75em;
    }

    .hero-text h1 {
        font-size: 0.5em;
    }

    .search {
        width: 200px;
    }

    .logo {
        margin-right: 10px;
    }

    .logoimage {
        background-image: url("images/logoschriftklein.png");
        width: 185px;
        height: 40px;
    }

    .hero-text h1 {
        font-size: 1em;
    }

    .coverageimage {
        width: 90%;
    }

    .ourvideos {
        background-color: rgb(227, 14, 202);
        width: 100vw;
        height: auto;
    }

    .is-open .message-body {
        padding: 4px 1px 1px 1px;
    }

    .is-open .submessage-body {
        padding: 5px 10px 0px 10px;
    }

    .copy {
        margin-top: -20px;
        margin-right: -18px;
    }
    .submessage-header {
        padding: 10px 30px 10px 10px;
        box-shadow: -2px -3px 50px -1px rgba(115, 115, 115, 0.28);
        border-radius: 2px;
}



}

@media screen and (max-width: 415px) {
    .titlesquare {
        min-height: 30px;
        padding: 10px 2px;
    }

    .blocksquare {
        min-height: 30px;
        padding: 10px 2px;
    }

    .hero-text {
        position: absolute;
        top: 55%;
        width: 100vw;
    }
}
