#counterBg{
    background-color: black;
    z-index: 1.5;
    opacity: 0.4;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
}

#countInterface{
    position: fixed;
    padding: 15px;
    left: 35%;
    top: 15%;
    width: 30%;
    min-width: 300px;
    z-index: 2;
    border: 2px solid;
    background-color: whitesmoke;
    box-shadow: 2px 2px 10px black;
    animation: showCounterWizzard 0.2s ease-in-out;
} @keyframes showCounterWizzard{ 0% {transform: scale(0)} 60% {transform: scale(1.1)} 100% {transform: scale(1)}}

#countInterface h2{
    color:lightgoldenrodyellow;
    text-shadow: 1px 1px 2px black, 2px 2px 4px black, 2px 2px 6px black;
    margin: 15px;
    text-align: center
}

#countInterface h4{
    text-align: center;
}

#countInterface h5{
    text-align: center;
}


#countInterface img{
    width: 100%;
    max-width: 250px;
    display: block;
    margin: 0px auto;
}

#countInterface #counterInputsWrapper{
    display: block;
    margin: 5px auto;
}

#countInterface #counterInputsWrapper input{
    width: 32%;
    padding: 1px;
    font-size: 1.5em;
}

#countInterface #counterInputsWrapper input[type="number"]{
    border: none;
    outline: none;
    text-align: center;
    background-color: whitesmoke;
}

#countInterface #counterInputsWrapper input[type="number"]::-webkit-outer-spin-button,
#countInterface #counterInputsWrapper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#countInterface #counterInputsWrapper input[type="number"] {
    -moz-appearance: textfield;
}

body #countInterface .countInterfaceOkCancelButtons{
    display: inline-block;
    margin: 15px auto;
    width: 49%;
    
}

@media only screen and (max-width: 576px) {
    #countInterface{
        left: 7%;
        right: 7%;
        top: 15%;
        width: 86%;
        }
}