/* CSS Document */

body {
  font-size:14px; 
  background-color: white;
}
html {
  -webkit-font-smoothing: antialiased;
}
* {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}
h1 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 15px;
}
h1 span {
  font-size: 1.4em;
  color: #f94877;
  font-weight: 700;
  font-style: italic;
}
h2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1em;
  margin-top: 8px;
  margin-bottom: 2px;
}
p {
  text-align: center;
  color: #949494;
  margin-top: 0;
  margin-bottom: 0;
}
.tag-wrapper {
  background: #F1F1F1;
  width: 100%;
  margin: 0 auto;
  margin-top: 0px;
  padding: 1px 5px;
  padding-bottom: 1px;
  text-align: center;
  border-radius: 5px;
   box-shadow: 0px 1px 1px 0px rgba(50, 50, 50, 0.4);
}
.tag {
  display: inline-block;
  position: relative;
  margin: 5px 5px 5px 0px;
}
/* changed font weight here to change txt size */
.saved {
  display: inline-block;
  position: relative;
  margin: 5px 5px 5px 0px;
  font-weight: 300;
}
.selected {
  display: inline-block;
  position: relative;
  margin: 5px 5px 5px 0px;
  font-weight: 300;
}
.suggested {
  display: inline-block;
  position: relative;
  margin: 5px 5px 5px 0px;
  font-weight: 300;
}
/* remove items and others */
.tag input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: 300;
  cursor: pointer;
  left: 0;
  width: 100%;
  height: 100%;
}
.saved input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: 300;
  cursor: pointer;
  left: 0;
  width: 100%;
  height: 100%;
}
.selected input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: 300;
  cursor: pointer;
  left: 0;
  width: 100%;
  height: 100%;
}
.suggested input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: 300;
  cursor: pointer;
  left: 0;
  width: 100%;
  height: 100%;
}
.tag input[type=checkbox]:hover + label {
  background: #4f73e7;
  /* z-index: 300; */
}
.saved input[type=checkbox]:hover + label {
  background: #FF5A5A;
  /* z-index: 300; */
}
.selected input[type=checkbox]:hover + label {
  background: #00A690;
  /* z-index: 300; */
}
.suggested input[type=checkbox]:hover + label {
  background: #00A690;
  /* z-index: 300; */
}
/* green - remove items */
.tag label {
  padding: 6px 18px 6px 18px;
  position: relative;
  /* z-index: 200; */
  color: white;
  display: block;
  border-radius: 16px;
  background: #00A690;
  -webkit-transition: all 0.08s ease-in;
          transition: all 0.08s ease-in;
}
/* green - saved */
.saved label {
  padding: 6px 18px 6px 18px;
  position: relative;
  /* z-index: 200; */
  color: white;
  display: block;
  border-radius: 16px;
  background: #00A690;
  -webkit-transition: all 0.08s ease-in;
          transition: all 0.08s ease-in;
}
/* red - selected */
.selected label {
  padding: 6px 18px 6px 18px;
  position: relative;
  /* z-index: 200; */
  color: white;
  display: block;
  border-radius: 16px;
  background: #FF5A5A;
  -webkit-transition: all 0.08s ease-in;
          transition: all 0.08s ease-in;
}
/* black - suggested */
.suggested label {
  padding: 6px 18px 6px 18px;
  position: relative;
  /* z-index: 200; */
  color: white;
  display: block;
  border-radius: 16px;
  background: #484848;
  -webkit-transition: all 0.08s ease-in;
          transition: all 0.08s ease-in;
}
.tag .fa {
  position: absolute;
  /* z-index: 250; */
  right: 11px;
  top: 9px;
  color: white;
  line-height: 0.95;
}
.tag .fa-check {
  display: none;
  top: 8px;
  right: 10px;
  -webkit-transition: all 0.08s ease-in;
          transition: all 0.08s ease-in;
}
/* chocolate - select */
.tag input[type=checkbox]:checked + label {
  background: #D16713;
  -webkit-animation: flick 0.08s;
          animation: flick 0.08s;
}
/* chocolate - logged out - select */
.suggested input[type=checkbox]:checked + label {
  background: #D16713;
  -webkit-animation: flick 0.08s;
          animation: flick 0.08s;
}
.tag input[type=checkbox]:checked ~ .fa-plus {
  display: none;
}
.tag input[type=checkbox]:checked ~ .fa-check {
  -webkit-animation: flick 0.08s;
          animation: flick 0.08s;
  display: block;
}
@-webkit-keyframes flick {
  60% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes flick {
  60% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}