/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    background-color:#E4E4E4;
    background-image:linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-webkit-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-ms-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #A7A7A7),
        color-stop(0.51, #E4E4E4)
    );
    background-attachment:fixed;
    font-family:'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
    font-size:12px;
    height:100%;
    margin:0px;
    padding:0px;
    text-transform:uppercase;
    width:100%;
}

/* Portrait layout (default) */
.app {
    background:url(../img/logo.png) no-repeat center top; /* 170px x 200px */
    position:absolute;             /* position in the center of the screen */
    left:50%;
    top:50%;
    height:50px;                   /* text area height */
    width:225px;                   /* text area width */
    text-align:center;
    padding:180px 0px 0px 0px;     /* image height is 200px (bottom 20px are overlapped with text) */
    margin:-115px 0px 0px -112px;  /* offset vertical: half of image height and text area height */
                                   /* offset horizontal: half of text area width */
}

/* Landscape layout (with min-width) */
@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
    .app {
        background-position:left center;
        padding:75px 0px 75px 170px;  /* padding-top + padding-bottom + text area = image height */
        margin:-90px 0px 0px -198px;  /* offset vertical: half of image height */
                                      /* offset horizontal: half of image width and text area width */
    }
}

h1 {
    font-size:24px;
    font-weight:normal;
    margin:0px;
    overflow:visible;
    padding:0px;
    text-align:center;
}

.event {
    border-radius:4px;
    -webkit-border-radius:4px;
    color:#FFFFFF;
    font-size:12px;
    margin:0px 30px;
    padding:2px 0px;
}

.event.listening {
    background-color:#333333;
    display:block;
}

.event.received {
    background-color:#4B946A;
    display:none;
}

@keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
 
@-webkit-keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
 
.blink {
    animation:fade 3000ms infinite;
    -webkit-animation:fade 3000ms infinite;
}

.tab-nav{
    height: 60px !important;
    background-color: #ffffff !important;
}

.tab-item{
    padding-top: 7px !important;
}

.menuBar{
    display: inline-block;
}

.pane[hide-nav-bar="true"] .has-tabs-top {
    top: 0px !important;
    bottom: 60px;
}

.nav-bar-tabs-top.hide ~ .view-container .tabs-top .tabs {
    top: calc(100% - 60px);
}

.view-container {
    position: unset !important;
}

a:not([href]):not([tabindex]):hover {
    color: rgba(68, 68, 68, 0.4);;
    text-decoration: none;
}

.item{
    white-space: unset;
}

.scroll{
    height: 100%;
}


.platform-cordova{
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.manual-ios-statusbar-padding {
    padding-top: 0 !important;
}

.has-tabs {
    bottom: 60px;
}

/*------------------STRONA-STARTOWA------------------------------*/
.firstPageLogo{
    background-color: white;
    height: 80px;
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    /* margin-right: 15px; */
    z-index: 3;
    box-shadow: 0px 6px 5px rgba(212, 212, 212, 0.5);
}

.firstPageLogoImg{
    height: 80px;
    padding: 10px;
}

.firstPageContent{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.firstPageBackground{
    width: 100%;
    height: 60vh;
    filter: brightness(0.3);
}

.firstPageBackgroundImg{
    height: 100%;
    width: 100%;
    background-image: url(http://systemeg.net/wp-content/uploads/2017/07/PARKING.jpg);
    background-attachment: fixed;
    background-position-x: center;
    background-size: cover;
}

.firstPageTextArea{
    width: 100%;
    height: 36vh;
    background-color: white;
    z-index: 2;
    padding: 4vh;
    min-height: 240px;
}

.textAreaContent{
    float: left;
    width: 50%;
}

.contentTitle{
    vertical-align: middle;
    text-transform: none;
    font-size: calc(10px + 3vw);
    padding: calc(10px + 1vw) 0;
    font-family: sans-serif;
    font-weight: bold;
    color: #3C4858;
    width: fit-content;
    margin-bottom: 15px;
}

.contentText{
    text-transform: none;
    font-size: calc(8px + 0.5vw);
    text-align: justify;
    color: #3C4858;
}

.contentImg{
    width: 50%;
    float: left;
    margin-top: 3vh;
    text-align: center;
}

.firstPageTextArea_p2_main {
    width: 100%;
    height: 55vh;
    position: relative;
}

.firstPageTextArea_p2{
    background-image: url(http://systemeg.net/wp-content/uploads/egnet.png);
    background-position-x: center;
    background-position-y: 6vh;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    filter: brightness(0.3);
}

.firstPageFooter{
    height: 6vh;
    background-color: #323437;
}

.contactFirstPage{
    position: absolute;
    bottom: 13vh;
    width: 100%;
    text-align: center;
}

.companyData{
    text-align: left;
    width: fit-content;
    text-transform: none;
    color: #ffffff;
    font-size: 20px;
    line-height: 25px;
    margin-left: 20%;
    margin-right: auto;
}

.firstPageFooterContent{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    padding-top: 2vh;
    text-transform: none;
    font-weight: bold;
    padding-left: 10px;
}

.formGoApp{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    margin-top: 10px;
}

.formSubmit{
    background-color: #42a5f5;
    padding: 10px;
    border: none;
    border-radius: 5px;
    color: #ffffff;
}

@media only screen and (max-width: 900px) {
    .firstPageTextArea{
        height: 40vh;
    }
    .contentImg{
        display: none;
    }
    .textAreaContent{
        width: 100%;
    }
    .firstPageBackground{
        height: 48vh;;
    }
    .firstPageTextArea_p2_main {
        height: 50vh;
    }
    .firstPageBackgroundImg {
        background-position-x: inherit;
    }
    .contentTitle {
        font-size: calc(20px + 3vw);
    }
    .contactLogo{
        float: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: unset !important;
    }
    .contactText{
        float: none !important;
        margin-left: auto;
        margin-right: auto;
    }
    .contactFirstPage{
        bottom: 8vh;
    }
    .companyData{
        margin-left: auto;
        font-size: 14px;
    }
}

@media only screen and (max-height: 800px) {
    .firstPageTextArea{
        height: 280px;
    }
    .firstPageTextArea_p2_main{
        height: 400px;
    }
    .firstPageTextArea_p2{
        background-position-y: center;
    }
    .contactFirstPage{
        bottom: 40px;
    }
}

@media only screen and (max-height: 450px) {
    .contactFirstPage{
        bottom: 50px;
    }
}

.contactLogo{
    float: left;
    width: 50%;
    margin: 5vh 0;
}

.contactText{
    float: left;
    width: 50%;
}