.toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: auto;

  .dracula-toggle {
    position: relative;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    border: 0;
    z-index: 1;
    margin-top: 15px;
    pointer-events: none;

    &.style-1,
    &.style-4,
    &.style-11,
    &.style-13,
    &.style-14{
      background: transparent;
    }

    &-wrap {
      &.custom-toggle {
      }
    }

  }

  .toggle-wrap {
    min-height: 80px;
    min-width: 100px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    background: #F2F2F2;
    transition: all 0.2s ease-in-out;

    &.active {
      border-color: $dracula_color_light;

      .index-label {
        background: #7c5dee;
      }
    }

    &:hover{
      background: #181a1b;
    }

    .index-label {
      position: absolute;
      top: 0;
      left: 0;
      padding: 2px 5px;
      background: #5c637e;
      color: #fff;
      border-top-left-radius: 0;
      border-bottom-right-radius: 5px;
    }

    .active-label {
      position: absolute;
      top: -8px;
      right: -8px;
      background: #7c5dee;
      color: #fff;
      text-align: center;
      width: 22px;
      height: 22px;
      padding: 3px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .active-badge {
      position: absolute;
      top: -7px;
      right: -7px;
      background: #7c5dee;
      padding: 7px;
      color: #FFF;
      border-radius: 50%;
      height: 24px;
      width: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #7c5dee;
      box-sizing: border-box;
    }

    .pro-label {

    }

  }

  h3 {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 0 !important;
    font-size: 1rem !important;
    font-weight: 500;
    text-transform: capitalize;
  }

}