input {
    height: 70px;
    font-size: 50px;
    width: 40%;
    font-family: inherit;
    text-align: center;
    background-color: rgb(50, 50, 50);
    border: 1px solid rgb(50, 60, 50);
    border-radius: 5px;
    color: white;
}

.unsichtbar {
    display: none;
}

main {
    padding-left: 10%;
    padding-top: 10%;
}


.icon {
    width: 60px;
    margin-left: 20px;
    cursor: pointer;
    vertical-align: bottom;
    border-radius: 10px;
    user-select: none;
}

.icon:hover {
    background-color: rgb(60, 60, 60);
}

.disabled {
    pointer-events: none;
    user-select: none;
}

#sounds {
    position: absolute;
    margin-top: 20px;
    background-color: rgb(40, 40, 40);
    border-radius: 10px;
    box-shadow: 0px 13px 13px 5px #000000;
}

main p{
    padding: 20px;
    margin: 0;
    user-select: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 20px;
}

main p:hover {
    background-color: rgb(90, 90, 90);
}

.active {
    background-color: rgb(80, 80, 80);
}

#savedTimers {
    background-color: rgb(40, 40, 40);
    position: absolute;
    top: 70px;
    height: 83%;
    width: 60%;
    border-radius: 10px;
    box-shadow: 0px 13px 13px 5px #000000;
}

.close {
    text-align: right;
    position: absolute;
    margin-bottom: 30px;
    right: 0px;
    font-size: 22pt;
    top: 0;
}

.close:hover {
    color: red;
    background-color: inherit;
}

#boxContent {
    margin-left: 10px;
    overflow-y: auto;
    height: 75%;
}

#closeBar {
    border-bottom: 3px solid rgb(10, 10, 10);
}

#savedTimers h2 {
    padding: 20px;
}

.remove{
    height: 30px;
    padding: 5px;
    margin-left: 80%;
}

.remove:hover{
    color: red;
}

#deleteAll{
    border-top: 3px solid rgb(10, 10, 10);
    height: 40px;
}

.delete{
    width: 30px;
    vertical-align: middle;
    padding: 5px;
    border-radius: 10px;
}

.delete:hover{
    background-color: rgb(60, 60, 60);
}

@media(max-width: 770px) {
    #savedTimers{
        width: 80%;
        left: 10%;
    }
}

@media(max-width: 580px) {
    #savedTimers{
        width: 100%;
        left: 0;
    }
}

@media(max-width: 464px) {
    .remove{
        margin-left: 70%;
    }

    #savedTimers h2{
        font-size: 16pt;
    }

    .close{
        font-size: 20pt;
    }

    input{
        width: 46%;
    }
}

@media(max-width: 384px) {
    .remove{
        margin-left: 70%;
    }

    #savedTimers h2{
        font-size: 14pt;
    }

    .close{
        font-size: 16pt;
        padding-right: 5px;
    }
}

@media(max-width: 340px) {
    .remove{
        margin-left: 60%;
    }

    #savedTimers h2{
        font-size: 14pt;
        padding-left: 10px;
    }
}