﻿
.Pages {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 800;
    background-color: #ffffff;
    opacity: 0.9;
    transition: all 0.9s ease-out;
}


.PagesBox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 350px;
    height: auto;
    max-height: 70vh;
    border: solid 0px #ffff00;
    z-index: 800;
    background-color: var(--backgroundBy);
    background: linear-gradient(var(--backgroundDeg), var(--backgroundFrom) 0%, var(--backgroundBy) 45%, var(--backgroundTo) 100%);
    border: solid 1px #e4e4e4;
    transition: all 0.7s ease-out;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    justify-items: start;
    align-items: start;
    align-content:start;
    padding: 20px;
    border: solid 1px var(--mainColor);
    border-radius: 3px;
}

    .PagesBox span {
        margin-left: 4px;
    }

    .PagesBox input[type=text], input[type=password] {
        margin-top: -5px;
        margin-bottom: 8px;
    }

    .PagesBoxMini {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        height: auto;
        border: solid 0px #ffff00;
        z-index: 800;
        background-color: var(--backgroundBy);
        background: linear-gradient(var(--backgroundDeg), var(--backgroundFrom) 0%, var(--backgroundBy) 45%, var(--backgroundTo) 100%);
        border: solid 1px #e4e4e4;
        transition: all 0.7s ease-out;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        padding: 30px;
        padding-left: 50px;
        padding-right: 50px;
        row-gap: 0px;
    }

.PagesBox-center {
    justify-items: center;
    align-items: center;
    align-content: center;
    height:400px;
}


.WebPageContainer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: solid 0px #ffff00;
    z-index: 800;
    border: solid 1px #e4e4e4;
    transition: all 0.7s ease-out;
}

.SecondActionButton {
    display: flex;
    flex-direction: row;
    justify-content: end;
    font-size: 0.9em;
    margin-top: 5px;
    color: var(--secondaryColor);
}

    .SecondActionButton:hover, .SecondActionButton:active {
        opacity: 0.5;
        cursor: pointer;
    }