﻿.w-wait-curtain {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.5); /* Black with opacity */
    display: flex; /* Center the content */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    flex-direction: column;
    display: none;
 
}
    .w-wait-curtain.open {
        display: flex;
    }
/*.curtain-1,*/
.curtain-2 {
    background-color: silver;
    background-image: url('/assets1/cards/subsystem/card-6.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.w-spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.w-wait-curtain p {
    color: white;
    margin-top: 10px;
    font-size: 18px;
}

.w-guide-message-panel,
.w-message-panel {
    position: fixed;
    width: calc(100vw - 45px);
    bottom: 0px;
    left: 0px;
    text-align: center;
    /*    background-color: rgb(30, 136, 229);
*/ color: white;
    z-index: 99000;
    padding-right: 3px;
    padding-left: 10px;
    margin: 0px 15px 0px 15px;
    border-radius: 3px ;
    padding-top: 15px;
    border-radius: 10px;
    background: linear-gradient(127.09deg, rgb(29 78 85 / 94%) 19.41%, rgba(10, 14, 35, 0.49) 76.65%) border-box;
    /*    box-sizing: border-box;
*/
    /*    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
*/;
}

/*.w-message-box {
    max-height: 250px;
    min-height: 30px;
    overflow-y: auto;*/
/*    scrollbar-color: white rgb(30, 136, 229);
*/    /*scrollbar-width: thin;
    ;*/
    /*    scrollbar-color: white white;
*/ /*    scrollbar-color: white;
*/ /*    scrollbar-width: thin;
    scrollbar-color:white red;*/
    /* padding:5px;*/
/*}*/
.w-message-box {
    max-height: 30px;
    min-height: 39px;
    overflow-y: auto;
    scrollbar-width: thin;
}
.w-message-box:hover {
    max-height:80vh;
}
    .w--guide-message-panel {
        display: flex;
        justify-content: center;
        align-items: center;
    }

.w-guide-message-panel{
     position: fixed;
    width: 100vw;
    bottom: 0px;
    left: 0px;
    text-align: center;
    background-color: green;
    z-index: 8000;
    padding-right: 15px;
    box-sizing: border-box;
    padding-left: 10px;
}

.w-site .w-message-panel-close {
    position: absolute;
    right: 4px;
    font-size: 9px;
    top: 4px;
    border-radius: 3px;
    background-color: white;
    /*    color: rgb(21, 101, 192);background-color: white;
*/
}
    .w-site .w-message-panel-close .fa-stack-1x {
        color: rgb(21, 101, 192);
    }

.w-guide-message-panel,
.w-message-panel {
    display: none;
}
.w-guide-message-panel.open,
.w-message-panel.open {
    display: block;
    animation: flyIn 1s ease-out forwards;
}
@keyframes flyIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}





