.inactiveWindows {
    display: none;
}

.btnPrevious {
    margin-right: 30px;
}

.executeButton{
    margin-bottom: 30px;
}

.operationButton{
    width: 25%;
}

.cssBtn{
    width: 100px;
}

.originalSize{
    font-size: 15px;
}

.mediumSize{
    font-size: 25px;
}

.largeSize{
    font-size: 50px;
}

.originalFont{
     font-family: Verdana,sans-serif;
}

.alternativeFont1{
    font-family: "Brush Script MT", cursive;
}

.alternativeFont2{
    font-family: Impact, Charcoal, sans-serif;
}

.effect1{


    animation-name: example;
    animation-duration: 4s;
}

.effect2{


    animation-name: example2;
    animation-duration: 4s;
}

@keyframes example {
    from {color: red;}
    to {color: yellow;}
}

@keyframes example2 {
    from {color: green;}
    to {color: blue;}
}


.operationButtonSize{
    width: 44px;
    height: 38.5px;
}



* { margin: 0; padding: 0; }
.terminal {
    border-radius: 5px 5px 0 0;
    position: relative;
}
.terminal .top {
    background: #E8E6E8;
    color: black;
    padding: 5px;
    border-radius: 5px 5px 0 0;
}
.terminal .btns {
    position: absolute;
    top: 7px;
    left: 5px;
}
.terminal .circle {
    width: 12px;
    height: 12px;
    display: inline-block;
    border-radius: 15px;
    margin-left: 2px;
    border-width: 1px;
    border-style: solid;
}
.title{
    text-align: center;
}
.red { background: #EC6A5F; border-color: #D04E42; }
.green { background: #64CC57; border-color: #4EA73B; }
.yellow{ background: #F5C04F; border-color: #D6A13D; }
.clear{clear: both;}
.terminal .body {
    background: black;
    color: #7AFB4C;
    padding: 8px;
    overflow: auto;
}
.space {
    margin: 25px;
}
.shadow { box-shadow: 0px 0px 10px rgba(0,0,0,.4)}