﻿.categories-wrapper {
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}


  .categories-wrapper .browse-by-categories-title
  {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    text-align: left;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.2s color ease;
    color: #000000;
    text-decoration: none;
    margin-bottom: 0;
  }

  .categories-wrapper .title-dropdown {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: 0.2s color ease;
    text-decoration: none;
    margin-bottom: 0;
    white-space: nowrap;
  }

.browse-by-categories-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 25px;
}

.categories-wrapper .title-dropdown-wrapper {
  color: #E90C00;
  display: flex;
  align-items: center;
  /*justify-content: flex-start;*/
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.title-dropdown-wrapper {
  background-color: white;
  border: 1px solid #CCCCCC;
  padding: 7px 14px;
  min-width: 190px;
}


@media only screen and (min-width: 1100px) {
  .categories-wrapper {
    padding: 30px 90px 30px 90px;
    flex-direction: row;
    /*max-width: 450px;*/
  }

    .categories-wrapper .browse-by-categories-title {
      font-weight: 700;
      font-size: 24px;
      line-height: 120%;
      text-transform: uppercase;
      color: #000000;
      max-width: 350px;
      text-align: left;
      flex-shrink: 0;
      flex-grow: 3;
      width: 350px;
    }

    .categories-wrapper .title-dropdown {
      color: #E90C00;
      font-weight: 700;
      font-size: 24px;
      line-height: 120%;
      text-transform: uppercase;
      max-width: 350px;
      padding-bottom: 0;
      margin-bottom: 0;
      border-bottom: 2px solid transparent;
    }


    .categories-wrapper .title-dropdown-wrapper {
      background-color: unset;
      border: 0;
      padding: 0;
      min-width: unset;
      justify-content: flex-start;
    }



  .browse-by-categories-wrapper {
      display: block;
      width: 350px;
  }
}







  .categories-wrapper .title-dropdown:hover {
    border-bottom-color: #E90C00;
  }

.categories-wrapper .title-dropdown-wrapper i {
  background-color: #FFFFFF;
  padding: 2px;
}

.categories-wrapper .title-dropdown-wrapper .dropdown-toggle::after {
    display: none;
}

.categories-wrapper .browse-event-type-dropdown{
 text-transform: uppercase;
}

  .categories-wrapper .browse-event-type-dropdown .dropdown-item {
    padding: 1rem 2rem;
    letter-spacing: .1em
  }

@media only screen and (min-width: 1000px) {
 /* .categories-wrapper .browse-by-categories-title {
    display: block;
  }
*/
  .categories-wrapper {
    /*padding: 30px 90px 30px 90px;*/
    gap: 48px;
  }
}


@media only screen and (min-width: 1400px) {
  .categories-wrapper {
    gap: 56px;
  }
}



.categories-wrapper .category-items {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  gap: 30px;
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: auto;
  justify-content: flex-start;
  cursor: grab;
}

  .categories-wrapper .category-items::-webkit-scrollbar {
    display: none;
  }

@media only screen and (min-width: 1250px) {
  .categories-wrapper .category-items {
    justify-content: space-around;
  }
}

.categories-wrapper .category-items .category-item {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}


  .categories-wrapper .category-items .category-item.no-products {
    color: #999999;
  }

  .categories-wrapper .category-items .category-item.active,
  .categories-wrapper .category-items .category-item:hover {
    color: #E90C00;
  }

  .categories-wrapper .category-items .category-item.active {
    border-bottom: 2px solid #E90C00;
  }


  .categories-wrapper .category-items .category-item svg path {
    stroke: black
  }

  .categories-wrapper .category-items .category-item svg.no-products path {
    stroke: #999999
  }

  .categories-wrapper .category-items .category-item svg.active path,
  .categories-wrapper .category-items .category-item:hover svg path {
    stroke: #E90C00
  }

.categories-wrapper .category-items .category-item {
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.2s color ease;
  color: #000000;
  padding-bottom: 12px;
  text-decoration: none;
}

  .categories-wrapper .category-items .category-item .category-name {
    margin-top: 16px;
    width: 100%;
    white-space: nowrap;
  }

@media only screen and (max-width: 1100px) {
  .categories-wrapper .category-items {
    justify-content: center;
    gap: 60px;
  }
}

@media only screen and (max-width: 480px) {
  .categories-wrapper .category-items {
    justify-content: flex-start;
  }
}