body {
    font-family: 'Poppins', sans-serif;
}

#input {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #2c8fff;
    border-radius: 5px;
    width: fit-content;
    margin-top: 100px;
}

#inp {
    width: 650px;
    height: 45px;
    border: none;
    padding: 0px;
    font-family: 'Poppins', sans-serif;
    padding-left: 5px;
}

#inp:focus {
    outline: none;
}

#ok {
    display: flex;
    align-items: center;
    height: 45px;
    padding: 0px 7px;
    border-left: 1px solid #2c8fff;
    background-color: #0077ff;
    color: #ffffff;
}

#ok:hover {
    cursor: pointer;
}

article {
    width: 590px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    height: 45px;
    list-style: none;
    margin-left: -50px;
    border-bottom: 1px solid gray;
}

#rOnly {
    background-color: transparent;
    outline: none;
    width: 80%;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}
.local{
    color: rgb(72, 72, 72);
    font-size: 10px;
    margin-right: 5px;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    opacity: 0;
}
article:hover .divRight .local{
    opacity: 1;
}

#edit,
#x {
    display: flex;
    justify-content: center;
    background-color: red;
    width: 20px;
    height: 20px;
    color: white;
    border-radius: 6px;
    margin-left: 7px;
    border: none;
}

#edit {
    background-color: #0077ff;
    padding: 2.5px;
    box-sizing: border-box;
}

#edit,
#x:hover {
    cursor: pointer;
}

input[type="checkbox"] {
    width: 25px;
    height: 25px;
}

input[type="checkbox"]:hover {
    cursor: pointer;
}

.divRight {
    width: 170px;
    display: flex;
    align-items: center;
}

@media screen and (max-width : 790px) {
    #inp {
        width: 450px;
        height: 35px;
    }

    #hh {
        font-size: 26px;
    }

    article {
        width: 490px;
        height: 35px;
        margin-left: -0px;
        margin-top: 12px;
    }
}

@media screen and (max-width : 580px) {
    #inp {
        width: 250px;
        height: 25px;
    }

    #hh {
        font-size: 22px;
    }

    #ok {
        height: 25px;
        padding: 0px 5px;
        font-size: 12px;
    }

    article {
        width: 275px;
        height: 25px;
        list-style: none;
        margin-left: -15px;
        margin-top: 15px;
    }

    #edit,
    #x {
        width: 15px;
        height: 15px;
        color: white;
        border-radius: 4px;
        margin-left: 7px;
        border: none;
        font-size: 11px;
    }

    #edit {
        background-color: #0077ff;
        padding: 2.5px;
    }

    input[type="checkbox"] {
        width: 14px;
        height: 14px;
        margin-top: -0.1px;
    }
}