.woocs__tools-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #dee2e6;

  @media (max-width: 575px) {
    flex-direction: column;
    align-items: flex-start;
  }

  h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2271b1;
  }

}

.woocs_drop_down_view_panel {
  display: flex;

  .woocs-options-valign-top {
    margin-right: .5rem;
  }
}

.woocs__options {
  @include flex-center;

  margin-left: -5px;
  margin-right: -5px;

  > .woocs__button {
    margin-left: 5px;
    margin-right: 5px;

    @media (max-width: 1080px) {
      margin-bottom: 10px;
    }

  }

  i.woocs-uil {
    margin-right: 7px;
  }

}

.woocs-flr-clr {
  display: flex;
  align-items: center;
  align-self: flex-end;
}

.woocs_settings_powered {
  font-family: "Nunito", sans-serif;
  line-height: 1.5;
  font-weight: 600;
  text-align: right;

  h5 {
    font-size: 16px;

    a {
      color: #8492a6;
      text-decoration: none;

      &:hover {
        text-decoration: underline;
      }
    }
  }
}

.woocs-select-all-in-select,
.woocs-clear-all-in-select {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;

  &:hover {
    color: #161c2d;
  }
}

.woocs_settings_hide{
  display: none;
}

.woocs_settings_codes {
  padding: 20px;

  > .woocs__button {
    white-space: normal;
  }
}

.woocs__features-gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -10px;
  margin-right: -10px;

  &:not(:last-child) {
    margin-bottom: 1rem;
  }

  &.woocs__col-3 {

    > li {

      @media (max-width: 767px) {
        margin-bottom: 20px;
      }

      @media (min-width: 576px) {
        flex-basis: 50%;
      }

      @media (min-width: 768px) {
        flex-basis: 33.33333%;
      }

    }

  }

  &.woocs__col-6 {

    > li {

      @media (max-width: 767px) {

        &:not(:last-child) {
          margin-bottom: 20px;
        }

      }

      @media (min-width: 576px) {
        flex-basis: 50%;
      }

      @media (min-width: 768px) {
        flex-basis: 25%;
      }

      @media (min-width: 1400px) {
        flex-basis: 16.666666%;
      }

    }

  }

  > li {
    padding-left: 10px;
    padding-right: 10px;
  }

  a {
    position: relative;
    overflow: hidden;
    display: block;

    img {
      display: block;
    }

    &:before {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      transition: all 0.5s ease;
      background-color: #000;
      opacity: 0;
      border-radius: 6px;
      content: "";
    }

    &:hover:before { opacity: .3; }

  }

}

.woocs__stat-holder {
  display: flex;
  justify-content: space-between;

  @media (max-width: 1279px) {
    flex-direction: column;
    justify-content: flex-start;

      .woocs__stat-col {
        align-items: flex-start;
        padding: .5rem;
      }
  }


}

.woocs__stat-chart {

  &:not(:last-child) {
    margin-bottom: 1rem;
  }

}

.woocs__list {

  li, p {
    &:not(:last-child) {
      margin-bottom: .5rem;
    }

    > input[type="text"] {
        &:not(:last-child) {
          margin-bottom: .5rem;
        }
    }
  }
}