﻿
/* COMMON SETTINGS */
:root {
    --HideDepth: 0;
    --BaseDepth: 1;
    --ViewDepth: 10;
    --ModalDepth: 20;
    --PopupDepth: 30;
    --PreloadDepth: 100;
    --CurrentQuantity:0.33;
    --PartialFulfilledColor: #66D011;
    --TotalFulfillColor: #D2A611;
}



* {
    box-sizing: border-box;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    margin: 0 auto;
    width: 100svw;
    height: 100svh;
    overflow: hidden;
}

body {
    margin: 0 auto;
    width: 100svw;
    height: 100svh;
    font-size: 1.0em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.0em;
    color: var(--FontColor);
    background-color: var(--BackgroundColor);
    overflow: hidden;
}

a {
    text-decoration: none;
}

    a:hover {
    }

    a:active {
    }








input::-ms-reveal {
    display: none;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--PlaceholderColor);
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--PlaceholderColor);
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--PlaceholderColor);
}

input:focus {
    outline: none;
}

input {
    font-size:1.1em;
}


    input[type=text], input[type=password], input[type=number] {
        padding-left: 5px;
        padding-right: 5px;
        height: 45px;
        text-align: center;
        border: var(--Border);
        border-radius: 1px;
        color: var(--FontColor);
        background-color: var(--GlassColor);
        backdrop-filter: var(--GlassBlur);
        -webkit-backdrop-filter: var(--GlassBlur);
    }

    input[type=text]:hover, input[type=password]:hover,
    input[type=text]:active, input[type=password]:active,
    input[type=number]:active, input[type=number]:active {
        opacity: 1;
    }

input[type=button], input[type=submit] {
    width: 100%;
    height: 45px;
    cursor: pointer;
    background-color: var(--ThemeColor);
    border:none;
}

    input[type=button]:active, input[type=button]:hover,
    input[type=submit]:active, input[type=submit]:hover {
        opacity: 0.6;
    }


    button:active, button:hover {
        opacity: 0.6;
    }

button {
    border: none;
    padding: 10px;
    height: 45px;
    background-color: var(--ThemeColor);
    cursor: pointer;
}