﻿body {
    margin: 0;
    background-color: #EBB;
}

.lightbox {
    display: none;
}

.toolbarLB {
    text-align: right;
    padding: 3px;
}

.closeLB {
    color: red;
    cursor: pointer;
}

.lightbox .lightboxContainer {
    scrollbar-color: var(--secondary-color) white;
    vertical-align: middle;
    background: #ffffff;
    padding: 2px;
    height: 80%;
    width: 80%;
    overflow: auto;
    border-radius: 10px;
}

.lightboxAcceptButtonWrapper {
    text-align:center;
}

.lightboxAcceptButton {
    cursor: pointer;
    color: white;
    border-radius: 10px;
    background-color: rgb(0, 54, 86);
    font-size: 16px;
    font-family: inherit;
}

.lightbox.opened {
    z-index:3;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5)
}

.lightbox .lightboxContainer::-webkit-scrollbar {
    width: 12px;
}