.windows__modal {
    position: absolute;
    z-index: 10000000;
    width: 300px;
    height: 200px;
    /*display: none;*/
    -webkit-box-shadow: 0 0 13px -1px rgba(0, 0, 0, 0.26);
    -moz-box-shadow: 0 0 13px -1px rgba(0, 0, 0, 0.26);
    box-shadow: 0 0 13px -1px rgba(0, 0, 0, 0.26);
}

.modal__header {
    height: 40px;
    background-color: #c3c3c3;
    display: flex;
    align-items: center;
}

.modal__content {
    background-color: #fefefe;
    height: 100%;
    width: 100%;
    padding: 20px;
    /*border: 1px solid #888;*/
}

.modal__controls {
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.modal__controls > * {
    margin-right: 5px;
}

.modal__control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color .1s ease-in;
    animation-direction: reverse;
}

.modal__control:hover{
    transition: background-color .1s ease-out;
}

.modal__close {
    background-color: #ff6464;
}

.modal__hide {
    background-color: #7bff76;
}

.modal__display {
    background-color: #ffea79;
}

.modal__close:hover {
    background-color: #a84242;
}

.modal__hide:hover {
    background-color: #4ea14b;
}

.modal__display:hover {
    background-color: #9a8e4a;
}

.resize-handle {
    width: 15px;
    height: 15px;
    background-color: #ccc;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: se-resize;
}
