/*
 * 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.

*   3/2016  Original from PhoneGap
*   7/2018  Google Material Icon styles added
*   10/2018 Toggle switch added from https://www.w3schools.com/howto/howto_css_switch.asp
*   8/14/22 Changed default font to Helvetica to get a better ipad font.
*
 */
* {
    -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:white;
    /*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-family: Helvetica, Arial, sans-serif;
    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:5%;*/
    /*height:50px; */                  /* text area height */
    /*width:325px; */                  /* text area width 225*/
    text-align:left; /*left;*/
    /*padding:0px 0px 0px 0px;  */   /* image height is 200px (bottom 20px are overlapped with text) was  padding:180px 0px 0px 0px;  */
    /*margin:0px 0px 0px -150px;*/  /* offset vertical: half of image height and text area height */
                                   /* offset horizontal: half of text area width margin:-115px 0px 0px -150px;*/
    padding:0px;
    /*text-transform:uppercase;*/
    width:100%;

}

/* Landscape layout (with min-enn 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:18px; /*24px;*/
    font-weight:normal;
    overflow:visible;
    padding:8px;
    margin: 0px;
    text-align:center;
    background-color: blue;
    color:white;
}

.event {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;
}

/* Google MaterialIcons font, included with app in css directory so it doesnt need to be downloaded. https://google.github.io/material-design-icons */
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: local('Material Icons'), local('MaterialIcons-Regular'), url(MaterialIcons-Regular.woff) format('woff'), url(MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    /*font-size: 36px; Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
}
.f36 {font-size: 36px; }
.f24 {font-size: 24px;}
.f18 {font-size: 18px;}
.mpicon { font-size:36px;}
.mptext {font-size: 15px;}
.bizicon {font-size: 24px;}
/* hanging indent for events */
.hi{padding-left:15px; text-indent:-15px;}  

/* TOGGLE Switches from wc3*/

/* The switch - the box around the slider.  was w60,h34 */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;  
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
/* was h26*/
    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 22px;
}

    .slider.round:before {
        border-radius: 50%;
    }