/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2016-10-29, 21:31:34
    Author     : Radosław
*/




.window-application-frame
{
    width: 800px;
    height: 560px;
    position: fixed;
    top: 200px;
    left: 350px;
    border: 1px #000 solid;
    -webkit-box-shadow: 0px 0px 8px #000000;
    -moz-box-shadow: 0px 0px 8px #000000;
    box-shadow: 0px 0px 8px #000000;
    z-index: 10;
}

/*    .window-application-frame:hover > .handle
    {
        background: #333333;
        
    }*/

.handle
{
    transition-duration: 0.3s;
    width: 100%;
    height: 30px;
    background: #00000099;
    cursor: move;
    padding: 5px;
    backdrop-filter: blur(10px);
}

.application-content-box
{
    height: calc(100% - 70px);
}

.icon
{
    color: #000;
    float: left;
}

.title
{
    font-size: 12px;
    color: #fff;
}
/*
.buttons-app
{
    float: right;
    position: relative;
    top: -5px;
    right: -5px;
}*/

.buttons-app{
    float: right;
    position: absolute;
    top: 0px;
    right: 0;
}

.icon-window-button {
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 7px;
    float: left;
    margin-left: 1px;
    padding-left: 16px;
    padding-right: 16px;
    cursor: pointer;
    transition-duration: 0.2s;
}

.icon-window-button:hover
{
    background: #ddd;
}

.icon-window-button-minimize
{
    position: relative;
    top: 6px;
}

.icon-window-button-close:hover
{
    background: #e42727;
    color: #fff;
}


.menu-options-box
{
    backdrop-filter: blur(5px);
    width: 0px;
    height: calc(100% - 2px);
    background: transparent;
    float: left;
    position: relative;
    top: -9px;
    z-index: 2;
}

.menu-btn {
    color: #000;
    font-size: 28px;
    cursor: pointer;
    background: #ffffff;
}

.menu-btn-close
{
    display: none;
}


.application-menu-switchs {
    background: transparent;
    width: auto;
}


.application-menu-standard {
    width: 100%;
    padding: 5px;
    height: 41px;
    color: #fff;
    z-index: 1;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
}
.application-home-screen {
    color: #323232;
    font-size: 28px;
    cursor: pointer;
    background: #ffffff;
    float: left;
    padding-right: 5px;
    height: 41px;
    width: 42px;
}

/*.application-home-screen:hover
{
    background: #333;
}*/

.menu-options-content
{
    height: 100%;
    padding: 10px;
    width: auto;
    background: #ffffffbd;
    opacity: 0;
    overflow-y: scroll;
    position: relative;

}


.application-content {
    width: 100%;
    height: calc(100% - 76px)!important;
    background: rgba(255 255 255 / 96%);
    overflow-y: auto;
    position: absolute;
    left: 0px;
    z-index: 0;
    margin-top: -5px;
    padding: 0px;
}


.menus-box {
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: start;
    height: 46px;
}

.desktop
{
    position: fixed;
    z-index: -20;
    top: 0px;
    left: 0px;
    height: calc(100% - 40px);
    width: 100%;
}


.win-subCtx {
    background: white;
    width: 0px;
    height: calc(100% - 35px);
    position: absolute;
    top: 35px;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    z-index: 9999;
}


.win-subCtx > .win-subCtx-content{
    background: white;
    height: calc(100% - 49px);
    width: 100%;
    position: absolute;
    left: 0;
    top: 49px;
    overflow-y: auto;
}

.win-subCtx-ctrl{
    position: absolute;
    left: 0px;
    background: #e7e7e7;
    width: 100%;
    padding: 4px;
    top: 0px;
}

.win-subCtx-ctrl-back{
    font-size: 29px;
    background: white;
    padding: 5px;
    border-radius: 6px;
    box-shadow: 0px 2px 10px #777;
    cursor: pointer;
    width: 70px;
    text-align: center;
    transition-duration: 0.3s;
}

.win-subCtx-ctrl-back:hover{
    font-size: 29px;
    background: #2b3c84;
    padding: 5px;
    border-radius: 6px;
    box-shadow: 0px 2px 10px #777;
    cursor: pointer;
    text-align: left;
    color: #fff;
}

.win-subCtx-label {
    position: absolute;
    margin-left: 20px;
    font-size: 1.1rem;
    font-weight: 400;
    top: 12px;
    color: #333;
}


.window-alerts-ctx-multimodalbox{
    z-index: 9999999!important;

}





.window-alert-ctx {
    position: absolute;
    z-index: 555;
    height: calc(100% - 35px);
    background: linear-gradient(180deg, #000000, #15151570);
    left: 0;
    width: 100%;
    top: 35px;
    padding: 20px;
    padding-left: 10px;
    padding-right: 10px;
    overflow-y: auto;
    backdrop-filter: blur(2px);
    overflow-y: hidden;
}

.window-alert-ctx-title {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    font-weight: 500;
}


.window-alert-ctx-content {
    background: #ffffff00;
    max-height: calc(100% - 114px);
    height: max-content;
    padding: 10px;
    border-radius: 8px;
    overflow-y: auto;
}

.window-alert-ctx-buttons{
    position: relative;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 6px;
    display: flex;
    justify-content: center;
}


.window-alert-ctx-buttons > button {
    padding: 10px;
    border: none;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0px 2px 20px #000000;
    width: auto;
}






.win-searcher {
    position: absolute;
    z-index: 555;
    height: calc(100% - 35px);
    background: linear-gradient(180deg, #000000, #15151570);
    left: 0;
    width: 100%;
    top: 35px;
    padding: 20px;
    padding-left: 10px;
    padding-right: 10px;
    overflow-y: auto;
    display: none;
    backdrop-filter: blur(2px);
}

.win-searcher-close {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding-bottom: 10px;
    padding-top: 10px;
    position: sticky;
    top: 0;
    background: #fff;
    width: 80px;
    float: right;
    border-radius: 12px;
    box-shadow: 0px 2px 20px #000;
    z-index: 5;
}

.win-searcher-close > span.material-icons {
    color: #3F51B5;
    font-size: 2.5rem;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0px 2px 20px #000;
    cursor: pointer;
}

















/* --------------------- TOAST ----------------------- */



.toast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 380ms ease;
    z-index: 999;
}
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1000;
    transition: transform 380ms ease;
    display: block;
    width: -webkit-fill-available;
    display: block;
    text-wrap-mode: wrap;
}
.toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}
.toast-content {
    margin-top: 8px;
}
.toast-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;

}
.toast-progress {
    height: 4px;
    background: #2196F3;
    width: 0;
    margin-top: 10px;
}
.toast-warn {
    background: #FFA726;
}
.toast-error {
    background: #EF5350;
}
.toast-info {
    background: #42A5F5;
}
.toast-success {
    background: #66BB6A;
}


.toast-buttons {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

button.toast-button {
    border: none;
    border-radius: 12px;
    padding: 8px;
    background: #fff;
    color: #000;
    font-weight: 500;
}

button.toast-button:hover {
    border: none;
    border-radius: 12px;
    padding: 8px;
    background: #000;
    color: #fff;
    font-weight: 500;
}



.ui-icon-gripsmall-diagonal-se {

    z-index: 99999999!important;
}
