.talk_app {
    width: 100%;
    height: 100%;
    background-color: white;
}

#talk_app_container {
    position: fixed;

    bottom: 40px;
    right: 17%;

    display: none;
    z-index: 25;

    width: 360px;
    height: 480px;
    padding: 20px 2px 2px 2px;

    background-color: #5780ab;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);

    cursor: move;
}

#talk_app_page_container {
    width: 100%;
    height: 600px;
}

#talk_app_container .close-classic {
    position: absolute;
    top: 0;
    right: 5px;

    width: 20px;
    height: 20px;

    color: white;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 0 1px white;

    cursor: pointer;
}

#talk_app_container .close-classic:after {
    content: '\2716'; /* \2716 */
}

#talk_app_container .close-classic:hover {
    color: rgba(34, 34, 34, 0.10);
}

.ui-resizable-helper {
    border: 2px solid #5780ab;
    z-index: 55;
}

.actionOverlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 1000;

    width: 100%;
    height: 100%;

    background: rgba(34, 34, 34, 0.10);

    cursor: move;
}