﻿/*
.ws-page-layout {
    background: linear-gradient(159deg, rgb(23 82 141) 0%, rgb(157 182 221 / 0%) 100%);
    height: 100vh;
    box-sizing: border-box;
    height: 100vh;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
        "ws-header ws-header ws-header"
        "ws-body ws-body ws-body";
    background-color: #f3f6f9;
}

.ws-header {
    color: #1b1d20;
    box-shadow: 2px;
    grid-area: ws-header;
    z-index: 2;
    min-height: 3rem;
    border-bottom: thin;
    padding: 12px
}

.ws-header-row {
    align-items: center !important;
    justify-content: space-between !important;
    display: flex !important;
}

.ws-row span {
    font-size: 16px;
    padding: .5rem;
    color: white;
}

.ws-row {
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 5rem;
    row-gap: 5rem;
}



.ws-body {
    grid-area: ws-body;
    overflow: auto;
    margin: 0 0 1.5rem 1.5rem;
}

.ws-sidebar {
    width: 150px;
    grid-area: ws-sidebar;
    position: static;
    display: flex;
    flex-direction: column;
    color: #1b1d20;
    background-color: #f3f6f9;
}





.mkd-row-fw {
    width: 100%;
}

.mkd-flex-row {
    margin: 32px 0 32px 0;
    display: flex;
    justify-content: space-evenly;
    flex-basis: 100%;
}


.mkd-d-flex {
    display: flex;
}


*/


.ws-page-layout {
    /*    */ /*background: linear-gradient(159deg, rgb(23 82 141) 0%, rgb(157 182 221 / 0%) 100%);*/
    height: 100vh;
    box-sizing: border-box;
    height: 100vh;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
        "ws-header ws-header ws-header"
        "ws-body ws-body ws-body";
    background-color: #b0d9ce;
}

.ws-header {
    /*  color: #1b1d20;*/
    position: fixed;
    width: 100%;
    box-shadow: 2px;
    grid-area: ws-header;
    z-index: 100;
    max-height: 3rem;
    border-bottom: thin;
    /* background: linear-gradient(159deg, rgba(46, 139, 87, 1) 0%, rgb(64 209 224 / 28%) 100%);*/
    backdrop-filter: blur(15px);
    background-color: #1a26232e;
}

.ws-header-row {
    align-items: center !important;
    justify-content: space-between !important;
    display: flex !important;
}

.ws-row {
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 5rem;
    row-gap: 5rem;
}

.tb tr {
    border-right: solid 1px #73b9dbba !important;
    border-right: solid 1px #73b9dbba !important;
}

.ws-body {
    grid-area: ws-body;
    overflow: auto;
 
}

.ws-sidebar {
    width: 150px;
    grid-area: ws-sidebar;
    position: static;
    display: flex;
    flex-direction: column;
    color: #1b1d20;
    background-color: #f3f6f9;
}

.mkd-h-itm {
    font-size: 20px;
    padding: .5rem;
}

tbody tr:nth-child(even) {
    background-color: rgba(23, 82, 141, 0.2);
    /* background-color: #73b9dbba;*/
}

.section-border {
    border-top: 2px solid green !important;
    /*    border-color:green !important;
    border-style:double !important;
    border-width: 2px !important;*/
}







.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


dialog::backdrop {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.on-closing{
    display:block!important;
    animation: slide-further 1s ease normal !important;
}

dialog {
    width: 60%;
    background-color: #1463bf52;
    backdrop-filter: blur(15px);
    /* background-color: white;*/
    border-radius: 16px;
    padding: 1rem;
    
    
}

dialog.on-closing::backdrop{
    opacity: 0;
    transition: all ease revert 3s;
}
    dialog[open] {
        animation: slide-down 1s ease normal
    }

  

.dialog .dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    color: white;
}

.dialog .dialog-body {
    padding: 0.5rem;
}

.dialog .dialog-footer {
    padding: 0.5rem;
}

.dialog-body table {
    color: white;
}

    .dialog-body table thead tr {
        background-color: #498e49cf;
    }

.close {
    height: 40px;
    width: 40px;
    background-color: transparent;
    transition: 0.25s ease;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white
}

    .close:hover {
        background-color: #DDD;
    }


    @keyframes fade-out{
        from{opacity: 1;}
        to {opacity: 0;}
    }



.start-fader {
    opacity: 0.1;
    animation-name: start-fade-out-anim;
    animation-duration: 0.5s;
    animation-timing-function: linear;
}

.app-fadein {
   
   
    animation-name: fade-in;
    animation-duration: 2s;
    animation-timing-function: linear;
}

@keyframes start-fade-out-anim {

    from {
        opacity: 0.2;
    }

    to {
        opacity: 0;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slide-further{
    from{top: 0px;}
    to {
       bottom: -2500px
    }
}

@keyframes slide-down {
    from {
        top: calc(100vh * -1);
    }

    to {
        top: 0px;
    }
}


.slide-in-anim-right{
    position: relative;
    left:0px;
    animation-name: slide-in-right;
    animation-duration: 1s;
    animation-timing-function: ease-in;
}

@keyframes slide-in-right{
    from{
        top:20px;
        left: -100px;
    }
    to {left: 0px; top: 0px}
}

.color-bg {
    background-color: #2aead7;
    background-image: linear-gradient(45deg, #2aead7 0%, #2AF598 24%, #0fd0de 49%, #8bf0d2 75%, #0deab9 100%);
}

.slide-in-anim-left {
    position: relative;
    left: 0px;
    animation-name: slide-in-left;
    animation-duration: 1s;
    animation-timing-function: ease-in;
}

@keyframes slide-in-left {
    from {
        top: 20px;
        right: -100px;
    }

    to {
        right: 0px;
        top: 0px
    }
}