/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
button, input[type="text"] {
    padding: 5px;
}
button:hover {
    cursor: pointer;
}
.hidden {
    display: none;
}
#shopping-list-item {
    width: 250px;
}
.container {
    max-width: 600px;
    margin: 0 auto;
}
.shopping-list {
    list-style: none;
    padding-left: 0;
    border:none;
}
.shopping-list > li {
    margin-bottom: 0px;
    padding: 0px;
}
.shopping-item {
    font-family:"Poppins";
    border:none;
    font-size: 20px;
}
.shopping-item__checked {
    text-decoration: line-through;
}

.shopping-item_notChecked {
    text-decoration: none;
}

*{
    padding:0;
    margin:0;
}

body {
    height:100vh;
    background:linear-gradient(
        to right, 
        #fff9d0 0%,
        #fff9d0 40%,
        #d2ebea 40%,
        #d2ebea 100%
    );
    margin:0;
}

th, td {
    text-align: left;
    padding: 12px;
}

.myTable {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid black;
}

.myTd {
  border: 1px solid #f6ecac;
  background-color:#f6ecac;
  text-align: left;
  padding: 8px;
  width:800px;
}

.js-shopping-list-entry {
    border-radius: 10px;
    border:none;
    height:40px;
    font-family:"Poppins";
    font-size: 15px;
    outline:none;
}

.addbtn {
    border-radius:10px;
    border:none;
    background-color:#d2ebea;
    font-family:"Poppins";
    width:40px;
    height:40px;
    font-size:15px;
}

.myInput {
    background-color: #d2ebea00;
    border:none;
    outline:none;
    width:100px;
}

.shopping-item-toggle {
    background-color: #d2ebea00;
    border:none;
    margin-left:100px;
}

.shopping-item-delete {
    background-color: #d2ebea00;
    border:none;
}