/* SIDEPANELS */
#si-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 1
}
#si-overlay.active {
  opacity: 1
}
#si-container {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: -1
}
#si-container.active {
  z-index: 701
}
.si-panel {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s,-webkit-transform 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  -webkit-transform: translate3d(-480px,0,0);
  transform: translate3d(-480px,0,0)
}
.si-panel.active {
  z-index: 3;
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}
.si-panel.si-panel-right {
  left: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}
.si-panel.si-panel-right.active {
  -webkit-transform: translate3d(-480px,0,0);
  transform: translate3d(-480px,0,0)
}
.si-header {
  margin: 20px 25px 0;
  border-bottom: 1px solid #f6f6f6;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  margin: 20px 20px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
.si-close {
  float: right;
  color: #3e3e3e
}
.si-close i {
  font-size: 30px
}
.si-header-content {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 15px
}
.si-content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow: auto;
  overflow-x: hidden;
  padding: 0 25px;
  -webkit-overflow-scrolling: touch
}
.si-content .si-inner {
  margin: 0px -15px
}
.si-content .btn {
  display: inline-block;
}

@media (max-width: 767px) {
  .si-panel {
      right:100%;
      width: 100%;
      -webkit-transform: none!important;
      transform: none!important;
      -webkit-transition: all 300ms ease-in;
      transition: all 300ms ease-in
  }
  .si-panel.active {
      z-index: 3;
      right: 0px
  }
  .si-panel.si-panel-right {
      left: 100%;
      right: auto
  }
  .si-panel.si-panel-right.active {
      left: 0px
  }
}
.si-panel .card {
    position: relative;
    width: 100%;
    max-height: 100%;
    display: inline-block;
    -webkit-box-shadow: 0 3px 1px -2px rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12);
    box-shadow: 0 3px 1px -2px rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12);
    overflow: hidden
}
.si-panel .card-image {
    width: 100%
}
.si-panel .card-image img {
    display: block;
    width: 100%;
    background: rgba(0,0,0,0.2)
}
.si-panel .card-title {
    position: absolute;
    bottom: -120px;
    left: 0px;
    width: 100%;
    display: block;
    background: rgba(255,255,255,0.87);
    font-size: 1em;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-transition: bottom 200ms ease-in;
    transition: bottom 200ms ease-in;
    margin-bottom: 0;
}
.si-panel .card-title a {
    color: inherit;
    text-decoration: none!important;
    display: block;
    padding: 22px
}
.si-panel .card-title a:hover {
    cursor: pointer
}
.si-panel .card:hover .card-title {
    bottom: 0px
}
.si-panel .remove-item {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 34px;
  height: 34px;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 300ms ease-in;
  transition: opacity 300ms ease-in;
  line-height: 48px;
  padding: 0px;
  background: #FFF;
  text-align: center;
  border-radius: 100%;
  -webkit-box-shadow: 0 3px 1px -2px rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12);
  box-shadow: 0 3px 1px -2px rgba(0,0,0,0.2),0 2px 2px 0 rgba(0,0,0,0.14),0 1px 5px 0 rgba(0,0,0,0.12)
}
.si-panel .card:hover .remove-item {
  z-index: 2;
  opacity: 1
}
.si-panel [class^=col-] {
  padding-left: 5px;
  padding-right: 5px
}
.si-empty-state {
  margin-top: 50px;
  text-align: center;
  position: relative
}
.si-empty-state .arrow-brown {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -180px;
  opacity: 0.6;
  width: 30px
}
.si-empty-state i {
  font-size: 175px;
  color: rgba(0,0,0,0.1)
}
.si-empty-state .empty-message {
  margin-bottom: 2rem;
}
.si-footer {
    border-top: 1px solid #f6f6f6;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    margin: 0 20px 10px;
    padding-top: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}