﻿
.dialog {
    position: fixed;
    height: 100%;
    background: #a09c9c6b;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    flex: 1;
    display: flex;
    align-items: center;
    z-index: 9999;
}



.dialog-content {
    padding: 10px;
    background-color: #0808081f;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 10px rgba(0,0,0,0.23);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 400px;
    width: 500px;
    background-color: white;
}

    .dialog-content:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.3), 0 6px 10px rgba(0,0,0,0.23);
    }

.dialog-content-title {
    font-size: 28px;
    background-color: white;
    cursor: pointer;
    margin-left: -2px;
    margin-top: -4px;
    color: #ffffff;
    font-weight: 300;
    background: #205e7c;
    border-radius: 9px;
    padding-left: 7px;
    box-shadow: 0 4px 3px rgb(0 0 0 / 10%);
}




.dialog-content-close {
    height: 27px;
    width: 30px;
    cursor: pointer;
    float: right;
    margin-top: -7px;
    font-size: 27px;
    margin-right: 3px;
    color: #e6e6e6;
}

    .dialog-content-close:hover {
        color: white;
    }











/* customize scrollbar css */
.dialog-content ::-webkit-scrollbar {
    width: 13px;
    background-color: #ffffff;
    border: 1px solid white;
    cursor: pointer !important;
}

.dialog-content ::-webkit-scrollbar-track {
    border: 1px #ffffff solid;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 6px #c8c8c8 inset;
    cursor: pointer !important;
}

.dialog-content ::-webkit-scrollbar-thumb {
    background-color: #999999;
    border-radius: 16px;
    cursor: pointer !important;
}

    .dialog-content ::-webkit-scrollbar-thumb:hover {
        background-color: #999999;
        border: 1px solid #ffffff;
        cursor: pointer !important;
    }

    .dialog-content ::-webkit-scrollbar-thumb:active {
        background-color: #999999;
        border: 1px solid #ffffff;
        cursor: pointer !important;
    }

.dialog-content ::-webkit-scrollbar-button:start:decrement {
    background-color: white;
    cursor: pointer !important;
}

.dialog-content ::-webkit-scrollbar-button:end:increment {
    background-color: white;
    cursor: pointer !important;
}

.dialog-content ::-webkit-scrollbar-track-piece {
    background-color: #d4d4d4;
    border: 1px solid white;
    border-radius: 10px;
    cursor: pointer !important;
}*/
