
/* ===== Actual Styles ===== */

/* ===== Horizontal Rule ===== */
/* ===== Select Box ===== */
.sel {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 20px;
  width: 304px;
  background-color: transparent;
  position: relative;
  cursor: pointer;
}

.sel:before {
  position: absolute;
  content: '\f063';
  font-family: 'FontAwesome';
  font-size: 16px;
  color: #5f6368;
  right: 20px;
  margin-top: 5px;
}

.sel.active:before {
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}

.sel__placeholder {
  display: block;
  font-size: 16px;
  color: #5f6368;
  padding: 0.2em 0.5em;
  text-align: left;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  visibility: visible;
}

.sel.active .sel__placeholder {
  visibility: hidden;
}

.sel__placeholder:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.2em 0.5em;
  content: attr(data-placeholder);
  visibility: hidden;
}

.sel.active .sel__placeholder:before {
  visibility: visible;
}

.sel__box {
  position: absolute;
  left: -4px;
  display: none;
  list-style-type: none;
  text-align: left;
  font-size: 1em;
  background-color: #FFF;
  width: 101%;
  box-sizing: border-box;
}

.sel.active .sel__box {
  z-index: 1;
  display: block;
  -webkit-animation: fadeInUp 500ms;
          animation: fadeInUp 500ms;
}

.sel__box__options, .sel__box__options__tid {
  display: list-item;
  font-size: 16px;
  background: #f4f4f4;
  color: #5f6368;
  padding: 0.5em 1em;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.sel__box__options:after, .sel__box__options__tid:after {
  content: '\f00c';
  font-family: 'FontAwesome';
  font-size: 16px;
  margin-left: 5px;
  color: #5f6368;
  display: none;
}

.sel__box__options.selected:after, .sel__box__options__tid.selected:after {
  display: inline;
}

.sel__box__options:hover, .sel__box__options__tid:hover {
  background-color: #ebedef;
}

/* ----- Select Box Black Panther ----- */
.sel {
  border-bottom: 4px solid rgba(0, 0, 0, 0.3);
}


/* ----- Select Box Superman ----- */
.sel--cantines {
  z-index: 2;
}

/* ===== Keyframes ===== */

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}