﻿button {
    overflow: visible;
    cursor: pointer;
}

[hidden], router-outlet {
    display: none !important;
}

input[disabled] {
    -ms-opacity: 0.9;
    opacity: 0.9;
}

button[disabled] {
    -ms-opacity: 0.5;
    opacity: 0.5;
}

a {
    cursor: pointer;
}

a:active, a:hover, *:focus {
    outline: 0;
}

img {
    border: 0;
}

input [disabled], button[disabled] {
    cursor: not-allowed !important;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

.disable-selection, button {
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer */
    -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
    -webkit-user-select: none; /* Chrome, Safari, and Opera */
    -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}

.shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 120vh;
    border-radius: 0 !important;
}

body, html {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

app-main > ng-component {
    height: 100vh;
    min-height: -webkit-fill-available;
    height: calc(var(--vh, 1vh) * 100);
    margin: 0 auto;
    overflow: auto;
}

*, *:after, *:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}