﻿
#draggable-div, #draggable-layout-div {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.2);
    border-radius: 14px;
    background-color: whitesmoke;
    width: 309.9px;
    padding: 10px 10px 10px 10px;
    z-index: 99;
    cursor: move;
    position: fixed;
}

.barra-titulo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}

#close-button {
    background-color: transparent;
    border-color: transparent;
    border-radius: 50%;
    font-size: 30px;
}

.calculator {
    background-color: whitesmoke;
    border-radius: 14px;
    padding-bottom: 10px;
    width: 100%;
    height: 100%;
}

#display {
    border-color: transparent;
    text-align: right;
    color: white;
    font-size: 34px;
    width: 100%;
    height: 60px;    
}

.btn-calc {
    width: 50px;
    height: 50px;
    float: left;
    padding: 0;
    box-sizing: border-box;
    background: #ecedef;
    border: none;
    font-size: 26px;
    line-height: 30px;
    border-radius: 50%;
    font-weight: 700;
    color: #5E5858;
    cursor: pointer;
}