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%);
    font-family: system-ui, -apple-system, -apple-system-font, 'Segoe UI', 'Roboto', sans-serif;
    font-size:12px;    
    margin:0px;
    padding:0px;
    /* Padding to avoid the "unsafe" areas behind notches in the screen */
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-right, 0px);    
    width:100%;
}


.button {
    font-family: Helvetica;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #4472b9;
    color: white;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    height: 26px;
    vertical-align: middle;
    border: 2px solid #4472b9;
    -o-transition: color,background 0.2s ease-in-out;
    -webkit-transition: color,background 0.2s ease-in-out;
    -moz-transition: color,background 0.2s ease-in-out;
}

    .button:hover {
        background: white;
        color: #4472b9;
        border: 2px solid #4472b9;
    }

.calButton {
    font-family: Helvetica;
    padding-top: 8px;
    padding-left: 4px;
    padding-right: 4px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    border: 1px solid #3b70df;
    cursor: pointer;
    color: #3b70df;
    font-size: 24px;
    text-align: center;
    vertical-align: middle;
    height: 40px;
    width: 40px;
    -o-transition: background,color 0.2s ease-in-out;
    -webkit-transition: background,color 0.2s ease-in-out;
    -moz-transition: background,color 0.2s ease-in-out;
}


.hTab td {
    text-align: center;
    color: White;
    background: #3b70df;
    font-family: Arial, sans-serif;
    border-right: 1px solid white;
}

    .hTab td div {
        width: 150px;
        height: 25px;
        vertical-align: middle;
        text-align: center;
        padding-top: 5px;
        font-weight: bold;
        cursor: pointer;
        font-size: 14px;
    }

.searchBox {
    background: #ececec;
    border-bottom: 1px solid #ccc;
    height: 42px;
    padding-left: 10px;
    text-align: center;
}

    .searchBox input {
        background: #ececec;
    }

.dbTable_header {
    width: 100%;
    height: 50px;
    background: #3b70df;
    color: #fffffb;
    text-align: left;
    font-size: 20px;
    text-align: center;
}


.buttonBlue {
    font-family: Helvetica;
    padding: 4px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid black;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #0063B7;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

    .buttonBlue:hover {
        background: #64B1F2;
        color: Black;
    }

.clsList tr:hover {
    background: #3b70df;
    cursor: pointer;
    color: White;
}

    .clsList tr:hover td {
        color: White;
        background: #3b70df;
    }


.clsList td:hover {
    color: White;
}



.clsList td {
    font-family: Arial, sans-serif;
    color: #666;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    padding-left: 10px;
    width: 100%;
    height: 42px;
    vertical-align: top;
    text-align: left;
    line-height: 24px;
}

.clsList tr:nth-child(even) {
    background-color: #e0e0ee;
}

.clsList tr:nth-child(odd) {
    background-color: #f0f0ff;
}
 


.clsList span {
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

.clsList td:hover span {
    color: White;
}


.clsFormList td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

td .formList_Label {
    color: #777;
    font-size: 14px;
}

.formList_Label input {
    color: Black;
    font-size: 18px;
}

.clsFormList td .header {
    color: #777;
}

.clsFormList td td {
    padding-top: 5px;
    padding-bottom: 0px;
    padding-left: 20px;
    border: 0px;
    text-align: center;
}


td.IOSForm_Header {
    background: #3b70df;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    height: 40px;
    text-align: center;
}

div.IOSForm_body {
    padding: 5px;
    color: Black;
    background: white;
}

div.IOSForm {
    border: 0px;
    animation:IOSFormNew 0.5s ease-out;
}

@keyframes IOSFormNew {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.IOSForm_button {
    text-align: center;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    padding: 10px;
    font-size: 24px;
    color: #f1f5fd;
    background: #4a7be1;
    font-family: Arial, sans-serif;
}

    .IOSForm_button:hover {
        cursor: pointer;
        color: #4a7be1;
        background: #f1f5fd;
    }


.blur {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    filter: blur(5px);
}


.buttonRed {
    font-family: Helvetica;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #b94472;
    color: white;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    height: 26px;
    vertical-align: middle;
    border: 2px solid #b94472;
    -o-transition: color,background 0.2s ease-in-out;
    -webkit-transition: color,background 0.2s ease-in-out;
    -moz-transition: color,background 0.2s ease-in-out;
}

    .buttonRed:hover {
        background: white;
        color: #b94472;
        border: 2px solid #b94472;
    }



.mainMenu td {
    padding-left: 10px;
    color: #fffffb;
    height: 50px;
    background: #3b70df;
    font-family: Arial;
    font-size: 18px;
    border-bottom: 1px solid #4a7be1;
}


.mainMenu div {
    background: #222;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    width: 20px;
    height: 20px;
}

.mainMenu img {
    padding-left: 6px;
    padding-top: 4px;
    height: 12px;
}

.mainMenu tr:first-child img {
    padding-left: 4px;
    padding-top: 4px;
    height: 12px;
}

table.mainMenu {
    width: 270px;
}

.mainMenu tr:hover td {
    background: #315dc5;
    cursor: pointer;
}

#divMainMenu {
    background: #3b70df;
    -o-transition: width 0.5s,left 0.3s ease-in-out;
    -webkit-transition: width 0.5s,left 0.3s ease-in-out;
    -moz-transition: width 0.5s,left 0.3s ease-in-out;
    overflow: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 270px;
    border: 0px;
    height: 300px;
}

.animSlide {
    -o-transition: width 0.5s,left 0.3s ease-in-out;
    -webkit-transition: width 0.5s,left 0.3s ease-in-out;
    -moz-transition: width 0.5s,left 0.3s ease-in-out;
    animation:newform 0.5s ease-out;
}

.tarot {
    -o-transition: width 0.5s,height 0.5s ease-in-out;
    -webkit-transition: width 0.5s,height 0.5s ease-in-out;
    -moz-transition: width 0.5s,height 0.5s ease-in-out;
    animation: newform 0.5s ease-out;
}


#rightFrameHeader {
    width: 100%;
    height: 50px;
    background: #3b70df;
    color: #fffffb;
    text-align: left;
    font-size: 20px;
    padding-left: 60px;
}

#rightFrame {
    overflow: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    background: White;
}

#rightFrame_button {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 40px;
    height: 40px;
    padding: 5px;
    overflow: hidden;
}

    








ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    background-color: #fff;
    border-bottom: solid 1px #ACACAC;
    padding: 10px;
}


.switch {
    float: right;
    height: 28px;
    width: 77px;
    border: 1px solid #979797;
    border-radius: 20px;
    margin-top: -5px;
    cursor: pointer;
    overflow: hidden;
}

    .switch.on {
        background: #4472b9;
    }

    .switch input[type=checkbox] {
        display: none;
    }

    .switch > .thumb {
        display: block;
        width: 26px;
        height: 26px;
        position: relative;
        top: 0;
        border: solid 1px #919191;
        border-radius: 28px;
        box-shadow: inset 0 2px 1px white, inset 0 -2px 1px white;
        background-color: #4472b9;
        background-image: -webkit-linear-gradient(#CECECE, #FBFBFB);
        background-image: -moz-linear-gradient(#CECECE, #FBFBFB);
        background-image: -o-linear-gradient(#CECECE, #FBFBFB);
        -o-transition: all 0.125s ease-in-out;
        -webkit-transition: all 0.125s ease-in-out;
        -moz-transition: all 0.125s ease-in-out;
        -o-transform: translateX(0px);
        -webkit-transform: translate3d(0,0,0);
        -moz-transform: translateX(0px);
    }

    .switch.on > .thumb {
        -webkit-transform: translate3d(49px,0,0);
        -o-transform: translateX(49px);
        -moz-transform: translateX(49px);
    }

    .switch:hover > .thumb {
        box-shadow: inset 0 2px 1px #fff, inset 0 -2px 1px #fff;
        background-image: none;
    }

    .switch > .thumb::before {
        content: "";
        display: block;
        height: 14px;
        width: 2px;
        background-color: white;
        box-shadow: 0px -1px 1px #666;
        border: none;
        position: absolute;
        top: 6px;
        left: -24px;
    }

    .switch > .thumb::after {
        content: "";
        display: block;
        height: 10px;
        width: 10px;
        border-radius: 10px;
        border: solid 2px #777;
        position: absolute;
        right: -32px;
        top: 6px;
    }

.clsListHeader td {
    background: #3d8d6a;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    color: White;
    font-weight: bold;
}

.login {
    outline: 0;
    background: #bbd;
    border: 0px;
    font-size: 26px;
    border-bottom: 1px solid #6c93e5;
    width: 100%;
}

.burger div {
    width: 35px;
    height: 5px;
    background-color: white;
    margin: 6px 0;
}

.burger div:hover {
    background-color: #3b70df;
 }

.button2 {
    font-size: 30px;
    color: #f1f5fd;
    background: #4a7be1;
    font-family: Arial, sans-serif;
    padding: 5px;
    border: 0px;
}

.button2:hover {
    color: #4a7be1;
    background: #f1f5fd;
    cursor: pointer
}

@keyframes newform {
    from {
        opacity: 0;
        left:-300px;
    }

    to {
        opacity: 1;
        left:0px;
    }
}
