.drag-box{
    background-color: rgba(120, 120, 120, 0.5);
    min-height: 3rem;
    width: 100%;


}
.result{
    border: 1px solid lightgrey;
    padding: 1rem;
    border-radius: 1rem 1rem !important;
}
.hideNext{
    display: none;
}
.correct{
    color: #42A948;
    font-size: 2rem;
}
.wrong{
    color: red;
    font-size: 2rem;
}
.nav-icon{
    margin: 2rem;
    color: tomato;
}
.drag-button{
    background-color: tomato !important;
}
.sentence-item{
    font-size: 1.2rem !important;

}
.lamp-box{
    text-align: center;
}
.progress-sen{
    color: tomato;
    font-size: 1.5rem;
}
.md-progress-bar{

    margin: 0.5rem;
}
.tip-box{
    padding: 1rem;
    margin: 1rem;
}
.md-progress-bar-fill{
    background-color: #ff6347 !important;
}
.md-progress-bar-buffer{
    background-color: rgba(255, 99, 71 , 0.2); !important;
}
.md-card{
    border-radius: 1rem 1rem !important;
}

.tip-dialog{
    padding: 1rem;
    border-radius: 1rem;
}

.result-box{
    background-color: beige;
    padding: 0.5rem;
    border-radius: 1rem 1rem;
    color: black;
    text-shadow: 2px 2px 4px #ffffff;
}
.result-score{
    letter-spacing: 3px;
    font-size: 1.5rem;
}
.result-descr{
    padding: 1rem;
    font-size: 1.2rem;
}
.title-box{
    background-color: rgba(120, 120, 120, 0.8);
    padding: 0.5rem;
    border-radius: 1rem 1rem;
    color: white;
    text-shadow: 2px 2px 4px #000000;
}
.list-group-item{
    border-radius: 1rem 1rem !important;
    margin: 0.5rem;
}
.source-box{
    /*background-color: rgba(120, 120, 120, 0.5);*/
    /*border: 1px solid black;*/
    min-height: 2rem;
}

.drag-button{
    cursor: move;
}

button:hover{
    cursor: move;
}
.tip-lamp{
    margin: 1rem;
    font-size: 5rem;
    color: yellow;
    animation:turnOn 1s;
    -moz-animation:turnOn 1s infinite; /* Firefox */
    -webkit-animation:turnOn 1s infinite; /* Safari and Chrome */
}
.next-question{
    bottom: 1rem;
}

@-moz-keyframes turnOn /* Firefox */ {
    0% {color:yellow;}
    100% {color:black;}
}

@-webkit-keyframes turnOn /* Safari and Chrome */ {
    0% {color:yellow;}
    100% {color: black;}
}