/* Start Globle Rules */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    font-family: "Open Sans", sans-serif;
    background-color: #222;
    color: #fff;
}
/* Media Queries */
/* Small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
/* Medium */
@media (min-width: 992px) {
    .container {
        width: 978px;
    }
}
/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
/* End Globle Rules */
/* Start Header */
.crud {
    width: 80%;
    margin: auto;
}
.head {
    text-align: center;
    text-transform: uppercase;
    margin: 10px 0;
}
.head h2 {
    padding: 0 0 5px;
}
/* End Header */
/* Start Input */
input {
    width: 100%;
    height: 30px;
    outline: none;
    border: none;
    border-radius: 5px;
    margin: 5px 0;
    padding: 5px;
    background-color: #111;
    color: #fff;
}
input:focus {
    background-color: #000;
    transform: scale(1.1)
}
.price_block input {
    width: 20%;
}
#total {
    background-color: #a00d02;
    padding: 5px 2px;
    border-radius: 5px;
}
#total::before {
    content: "total: ";
}
button:not(#up_home) {
    width: 100%;
    height: 30px;
    outline: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background-color: #2e0c7e;
    color: #fff;
    transition: 0.3s;
}
button:not(#up_home):hover {
    background-color: #320564;
    letter-spacing: 1px;
}
/* End Input */
/* Start Output */
.btn_search button{
    width: 45%;
}
.btn_search {
    display: flex;
    justify-content: space-between;
}
#delete_all {
    margin: 20px 0;
}
table {
    width: 100%;
    text-align: center;
    margin: 10px 0;
}
table th {
    text-transform: uppercase;
}
th,td {
    padding: 5px 0;
}
/* End Output */
#up_home {
    width: 80%;
    display: block;
    margin: 20px auto;
    padding: 10px 0;
    outline: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background-color: #2e0c7e;
    color: #fff;
    text-transform: uppercase;
    transition: 0.3s;
    display: none;
}
#up_home:hover {
    background-color: #320564;
    letter-spacing: 1px;
}