@charset "utf-8";
.calculator{
	padding: 30px;
    width: 500px;
    margin: 0 auto; 
	background: #646464;
	border-radius: 10px;
	box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
	margin-bottom: 20px;
}
.button-calculator {
    margin: 1px auto;
    width: 70px;
    height: 60px;
    font-size: 30px;
    border-radius: 4px;
    background-color: white;
    color: black;
    text-align: center;
}
.button-calculator > sup{
	font-size: 20px;
}
.button-calculator.binary-operations{
    background-color: #E1A22B;
}
.button-calculator.unary-operations{
    background-color: #D5D5D5;
}
.button-calculator.big-button{
    background-color: #D5D5D5;
	width: 144px;
}
.input-calculator{
    width: 220px;
    height: 75px;
    border-radius: 4px;
    background-color: #363636;
    color: white;
    cursor: default;
    text-align: right;
    font-size: 30px;
    margin-bottom: 5px;
     overflow: hidden;
     text-overflow: ellipsis;
     padding: 15px;
}
.memory-button{
    width: 218px;
    font-size: 20px;
    height: 40px;
}
.memory-box{
    margin-left: 18px;
    width: 200px;
    height: 75px;
    font-size: 30px;
    border-radius: 4px;
    background-color: #E1A22B;
    color: white;
    cursor: default;
    text-align: right;
}
#memoryValue{
     overflow: hidden;
     text-overflow: ellipsis;
     padding: 15px;
}