.render_area {
    position: absolute;
    /*background: linear-gradient(-90deg, red, yellow);*/
    top: 0;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: left .35s;
    transition: left .35s;
}

.cesiumContainer {

    position: absolute;
    width: 100%;
    height: 100%;
    /* background-color: green; */
}

.annotation {
    position: absolute;
    padding: 10px;
    opacity: 1 !important;
    transform: translate(-50%, -30px);
    will-change: left, top;
}

.annotation-titlebar {
    /* color:			white; */
    /* background-color:	black;
   border-radius:	1.5em;
   border:			1px solid rgba(255, 255, 255, 0.7); */
    box-shadow: none !important;
    font-size: 1em;
    opacity: 1;
    margin: auto;
    display: table;
    padding: 1px 8px;
    cursor: pointer;
}

.annotation-expand {
    color: white;
    font-size: 0.6em;
    opacity: 1;
}

.annotation-action-icon {
    /* width:			20px;
   height:			20px; */
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5em;
    text-align: center;
    font-family: Arial;
    font-weight: bold;
    cursor: pointer;
}

.annotation-action-icon:hover {
    /* filter:			drop-shadow(0px 0px 1px white); */
    /* width:			24px;
   height:			24px; */
    cursor: pointer;

}

.annotation-item {
    color: white;
    background-color: black;
    opacity: 0.5;
    border-radius: 1.5em;
    font-size: 1em;
    line-height: 1.5em;
    padding: 1px 8px 0px 8px;
    font-weight: bold;
    display: flex;
    cursor: default;
}

.annotation-item:hover {
    opacity: 1.0;
    /* box-shadow: 0 0 5px #ffffff; */
}

.annotation-main {
    display: flex;
    flex-grow: 1;
}

.annotation-label {
    display: inline-block;
    height: 100%;
    flex-grow: 1;
    user-select: none;
    -moz-user-select: none;
    z-index: 100;
    vertical-align: middle;
    line-height: 1.5em;
    font-family: Arial;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}

.annotation-description {
    position: relative;
    color: white;
    background-color: black;
    padding: 10px;
    margin: 5px 0px 0px 0px;
    border-radius: 4px;
    display: none;
    max-width: 500px;
    width: 500px;
}

.annotation-description-close {
    filter: invert(100%);
    float: right;
    opacity: 0.5;
    margin: 0px 0px 8px 8px;
}


.annotation-description-content {
    color: white;
}

.annotation-icon {
    width: 20px;
    height: 20px;
    /* filter: invert(100%); */
    margin: 2px 2px;
    opacity: 0.5;
}