﻿/* cesium tk*/
* {
    box-sizing: border-box;
}
#cesium_tk{
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color:rgba(0,0,0,0.5);
    display:none;
}

#cesium_tk .box {
    position: fixed;
    width: 400px;
    height: 240px;
    top: calc(50% - 120px);
    left: calc(50% - 200px);
    background-color: #e6ebee;
    border-radius: 5px;
    padding: 20px;    
}
#cesium_tk .box .title {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 24px;
    font-weight: bold;
    border-bottom:1px solid #ccc;
}
#cesium_tk .box .user {
    height: 36px;
    width: 100%;
    display: flex;
    align-items: center;
    font-size:16px;
}
#cesium_tk .box .user .username {
    color: #fd883e;
}
#cesium_tk .box .con{
    /*border:1px solid #ccc;
    border-left-color:transparent;
    border-right-color:transparent;*/
    width:100%;
    height:calc(100% - 108px);
    text-indent:2rem;
    font-size:16px;
    line-height:36px;
}
#cesium_tk .box .btns{
    display:flex;
    height:36px;
    align-items:center;
    justify-content:space-around;
    width:100%;
}
#cesium_tk .box .btns .btn{
    cursor:pointer;
    padding:5px 15px;
    border-radius:5px;
    letter-spacing:2px;
    color:#fff;
    font-size:16px;
    opacity:0.88;
}
#cesium_tk .box .btns .btn.allow {
    background-color: #5d97fc;
}
#cesium_tk .box .btns .btn.deny {
    background-color: #3b3b3b;
}
#cesium_tk .box .btns .btn:hover{
    opacity:1;
}