﻿.dialogMask {
    background-color: #000;
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index:100;
}
.dialogHolder {
    position: fixed;
    border-radius: 20px;
    background-color: #fff;
    width: 800px;
    height: 800px;
    left: 50%;
    top: 50%;
    margin-left: -400px;
    margin-top: -400px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    z-index:101;
    max-width:100%;
    max-height: 100%;
    overflow-y: auto;
}
.dialog-title {
    position: relative;
    height: 55px;
    text-align: center;
    overflow: hidden;
    line-height: 55px;
    font-weight: 700;
    font-size: 16px;
    border-bottom: solid 1px #B8B8B8;
}
.dialog-content{
    flex:1;
    overflow:auto;
     display: flex;
    flex-direction: column;
    padding:16px;
}


.dialog-title-right
{
    position: absolute;
    top:0px;
    right:15px;
    margin:0;
    padding:0;
    display: flex;
}

.dialog-title-left {
    position: absolute;
    top: 0px;
    left: 15px;
    margin: 0;
    padding: 0;
}

.dialog-title-right li
{
    margin-right:10px;

}
.dialog-title-right li:last-of-type
{
    margin-right:0px;
}

.dialog-title-right, .dialog-title-left, .dialog-title-right a, .dialog-title-left a
{
    font-weight: 500;
    text-decoration: none;
    color:#0000D8;
}


    .dialog-title-right li, .dialog-title-left li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .dialog-title-right li
{
    margin-right:10px;
}
.dialog-title-right li:last-of-type
{
    margin-right:0px;
}

    .dialog-menu .itm
{
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    padding:10px 10px;
    display: flex;
    align-items: center;
    border-bottom: solid 1px #B8B8B8;
    text-decoration: none;
    color: #000;
}

.dialog-menu .itm .icon
{
    width: 55px;
    font-size: 22px;
    text-align: center;
}
@media(max-width:800px),(max-height:800px)
{
    .dialogHolder
    {
        top:0px;
        left:0px;
       margin:0px;
       margin-top:10px;
       margin-left:10px;
       margin-right:10px;
       width:calc(100% - 20px);
       height:calc(100% - 20px);
    }
}