
/*#pomodoroDiv{*/
    /*display: none;*/
/*}*/


.hide {
    display: none;
}

.show {
    display: block;
}

.working{
    color: darkseagreen;
}


.break{
    color: #31b0d5;
}

.longBreak{
    color: #337ab7;
}

.none{
    color: #c3c3c3;
}

.pomButtonShow {
    width: 40%;
    margin: 4%;

}

.pomButtonShow:hover {
    width: 40%;
    margin: 4%;
}

#timerDisplay{
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 65%;
    font-size: 2em;
    color: #1B9BAE;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#timerButtons{
    position: absolute;
    display: block;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    text-align: center;
    bottom:0;
}

#stopButton {
    color: white;
    border: none;
    font-family: acme;
    text-transform: uppercase;
    border-radius: 5px;
    width: 80px;
    height: 35px;
    background-color: rgb(149,202,173);
    font-size: 1em;
    margin-bottom: 20px;
    margin-left: 6px;
    -webkit-tap-highlight-color: transparent;
}

#stopButton:disabled{
    background-color: lightgrey;
}

#playPauseButton{
    color: white;
    border: none;
    font-family: acme;
    text-transform: uppercase;
    border-radius: 5px;
    width: 80px;
    height: 35px;
    background-color: rgb(149,202,173);
    font-size: 1em;
    margin-bottom: 20px;
    margin-right: 6px;
}

#playPauseButton:disabled{
    background-color: lightgrey;
}

#minsDiv {
    float: left;
}

#secsDiv {
    float: right;
}

/*//////////////////////////////////NEW HOURGLASS WITH TRIANGLE DIVS///////////////////////////////////////////*/

#topTriangleWork {
    visibility: visible;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 50px solid rgba(0,0,0,0);
    border-right: 50px solid rgba(0,0,0,0);
    border-top: 75px solid rgba(149,202,173,1);
    display: block;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    bottom:0;
}


#bottomTriangleWork {
    visibility: visible;
    position: absolute;
    width: 0;
    height: 0;
    border-left: 0 solid rgba(0,0,0,0);
    border-right: 0 solid rgba(0,0,0,0);
    border-bottom: 0 solid rgba(149,202,173,1);
    display: block;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    bottom:0;
}

#topContainer{
    position: relative;
    height: 80px;
    width: 100px;
    display: block;
    margin: auto;
    margin-top: 75px;
}

#bottomContainer{
    position: relative;
    height: 80px;
    width: 100px;
    display: block;
    margin: auto;
    margin-top: 25px;
}


#backHourglass {
    width: 150px;
    left:0;
    right:0;
    top: 10%;
    margin-left:auto;
    margin-right:auto;
    position: absolute;
}

#frontHourglass {
    width: 150px;
    left:0;
    right:0;
    top: 10%;
    margin-left:auto;
    margin-right:auto;
    position: absolute;
}

/*//////////////////////////////////RUZOS FOR BREAKS/////////////////////////////////////////////////////////*/

#circleBehindBreakRuzo{
    height: 0;
    width: 0;
    display: block;
    border-radius: 50%;
    position: absolute;
    background-color: #B0DFD5;
    left:0;
    right:0;
    top: 50%;
    margin-left:auto;
    margin-right:auto;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

#drinkRuzo{
    display: none;
    position: absolute;
    height: 176px;
    width: 232px;
    left:52px;
    top: 105px;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

#snoozeRuzo{
    display: none;
    position: absolute;
    width: 251px;
    height: 204px;
    top: 80px;
    left: 58px;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

#rugRuzo{
    display: none;
    position: absolute;
    width: 282px;
    height: 225px;
    top: 74px;
    left: 22px;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

#haveABreakText{
    font-family: 'Acme', sans-serif;
    display: none;
    color: #1B9BAE;
    position: absolute;
    top: 26px;
    font-size: 2.2em;
    left: 61px;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}