﻿
*.hidden
{
	transition: all ease 0.5s;
	opacity: 0.0 !important;
	visibility:hidden !important;
	z-index:-1 !important;
}

*.shown
{
	transition: all ease 0.5s;
	opacity: 1.0;
	visibility: visible;
/*	z-index: 10;*/
}

*.Collapsed
{
    max-height: 0;
    padding-top: 0 !important;
	padding-bottom: 0 !important;
	margin-top: 0 !important;
	overflow: hidden;
	transition:  all 0.25s;
	margin-bottom: 0 !important;
    border: none !important;
	opacity: 0;
}

*.Expanded
{
 /*   max-height:fit-content;*/
	transition:  max-height ease 0.25s;
}

input:-webkit-autofill
{ 
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
}

body {
    margin: 0;
}

body,
html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: none;
    outline: none;
    user-select: none;
}

div.WDO_Loader
{
	position: absolute !important;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.8) !important;
	opacity: 0.0;
	z-index: 10;
	background-image: url(ux/img/spin.svg);
	background-position: center center;
	background-repeat: no-repeat;
	transition: opacity linear 0.5s;
	margin: 0 !important;
	background-size: auto clamp(20px, 80%, 80px);
	border-radius: inherit;
}

div.WDO_Loader.Shown
{
	opacity: 1.0;
	transition: opacity linear 0.5s;
}

span.WDO_RefreshSign
{
	display: block;
	height: 100px;
	width: 100%;
	background-image: url(ux/img/spin.svg);
	background-position: center center;
	background-repeat: no-repeat;
}


div.WDO_Scrollable.Horiz span.WDO_RefreshSign
{
	display: inline-block;
	vertical-align: top;
	height: 100%;
	width: 100px;
}

div.WDO_Scrollable
{
	overflow: hidden;
	position: relative;
}

div.WDO_Scrollable > div
{
	position: relative;
	overflow: hidden;
	height: 100%;
	width: 100%;
}

div.WDO_Scrollable > div > div
{
/*	position: relative;*/
}

div.WDO_Scrollable.Vert > div > div
{
	width: 100%;
}

div.WDO_Scrollable.Horiz > div > div
{
	white-space: nowrap;
	height: 100%;
}

div.WDO_Scrollable > div > div.horiz > div
{
	display: inline-block;
}

div.WDO_Scrollbar
{
	top: 0px;
	right: 10px;
	width: 6px !important;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 3px;
	position: absolute !important;
	padding: 0 !important;
	opacity: 0.5;
	transition: opacity 0.5s;
}

div.WDO_Scrollbut
{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 3px;
	cursor: pointer;
	transition: none;
}

div.WDO_Scrollbar.Horiz
{
	top: auto;
	bottom: 0px;
	right: auto;
	left: 0;
	width: 100% !important;
	height: 6px;
}

div.WDO_Scrollbut.Horiz
{
	top: 0px;
	width: 6px;
	height: 100%;
}

div:hover > div.WDO_Scrollbar
{
	opacity: 1.0;
	width: 12px !important;
}



div#WDO_Scrollable.Fullscreen
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	z-index: 10;
}
