* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header {
  text-align: center;
  color: white;
  background-color: #525564;
  background-image: url(../images/Listly.png);
  height: 400px;
  background-repeat: no-repeat;
  padding: 10px 0;
  width: 100vw;
  max-width: 100%;
  background-size: 100%;
  background-position: center;
}

/* css for the main content of the page */
main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 90vh;
  width: 100vw;
  max-width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 5px;
}

.toolbar {
  background-color: #66697e;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.toolbar form {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-left: 5px;
}

.toolbar p {
  margin: 5px;
}

.toolbar #delete-ico:hover {
  color: red;
  cursor: pointer;
}

.toolbar #edit-ico:hover {
  color: blue;
  cursor: pointer;
}

.edit-tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.modal-header {
  /* background-color: $list-bg-color; */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#a2cfdf), to(#69bbda));
  background-image: linear-gradient(#a2cfdf, #69bbda);
  -webkit-box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.modal-body {
  background-color: #f8f2e9;
}

.modal-footer {
  background-color: #f8f2e9;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-footer button {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.modal-content {
  border: 2px solid #C25B56;
}

.form {
  border: 2px solid #C25B56;
  background-color: #f8f2e9;
  margin-bottom: 5px;
  position: static;
  -webkit-box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  border-radius: calc(.3rem - 1px);
  background-clip: padding-box;
}

.form h2 {
  text-align: center;
  padding: 5px;
  /* background-color: $list-bg-color; */
  background-image: -webkit-gradient(linear, left top, left bottom, from(#a2cfdf), to(#69bbda));
  background-image: linear-gradient(#a2cfdf, #69bbda);
  -webkit-box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.form form {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.form .center {
  text-align: center;
}

.enter {
  background-color: #f89257;
  border: 1px solid #b64c0e;
  border-radius: 5px;
}

.enter:hover {
  background-color: #fa6611;
}

.warning {
  color: red;
  text-align: center;
  padding: 5px;
}

.border-red {
  border-color: red;
}

/* css to handle elements that need to appear on one line */
.oneline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.oneline label {
  margin-right: 10px;
}

.oneline input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.oneline select {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

input {
  padding: 1px 3px;
}

.lists {
  display: -ms-grid;
  display: grid;
  width: 60%;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  position: static;
}

.list {
  background-color: #f8f2e9;
  border: 2px solid #C25B56;
  min-height: 15rem;
  -webkit-box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: calc(.3rem - 1px);
  background-clip: padding-box;
}

.list h3 {
  padding: 5px;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#a2cfdf), to(#69bbda));
  background-image: linear-gradient(#a2cfdf, #69bbda);
  -webkit-box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.2);
}

.list ul {
  padding-left: 2em;
  padding-right: 1em;
}

.list li {
  border-bottom: 1px solid black;
}

.list i {
  display: none;
}

.list #close {
  color: red;
}

.list #close:hover {
  color: #9c0303;
  cursor: pointer;
}

.list #edit {
  color: blue;
}

.list #edit:hover {
  color: #0000ad;
  cursor: pointer;
}

.list h3 input {
  width: 200px;
  text-align: center;
}

.showIco {
  display: inline-block !important;
  position: absolute;
  right: 10px;
  padding-top: 2px;
}

/* media queries */
@media (max-width: 950px) {
  .lists {
    -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
  }
  header {
    height: 350px;
  }
}

@media (max-width: 780px) {
  .lists {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
  header {
    height: 250px;
  }
}

/* small media */
@media (max-width: 600px) {
  main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
  }
  .form {
    width: 90%;
    height: auto;
  }
  .form-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lists {
    -ms-grid-columns: 90%;
        grid-template-columns: 90%;
    width: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .list {
    min-height: 10px !important;
  }
  .list ul {
    display: none;
  }
  .list h3 {
    margin-bottom: 0;
  }
  .list:hover {
    background-color: #69bbda;
  }
  .list .fa-window-minimize {
    display: inline-block;
    position: absolute;
    right: 13%;
  }
  .list i:hover {
    color: #c9c4c4;
  }
  .open {
    display: block !important;
    min-height: 100px;
    padding: 5px;
  }
  header {
    height: 150px;
  }
}
/*# sourceMappingURL=main.css.map */