.custom-dropdown a span {
    display: inline-block;
    position: relative;
    -webkit-transition: .3s transform ease;
    -o-transition: .3s transform ease;
    transition: .3s transform ease; }
  
  .custom-dropdown.show a {
    color: #000; }
    .custom-dropdown.show a span {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
  
  .custom-dropdown .btn:active, .custom-dropdown .btn:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none; }
  
  .custom-dropdown .btn.btn-custom {
    border: 1px solid #efefef; }
  
  .custom-dropdown .title-wrap {
    padding-top: 10px;
    padding-bottom: 10px; }
  
  .custom-dropdown .title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase; }
  
  .custom-dropdown .dropdown-link {
    color: #888;
    display: inline-block;
    padding-right: 0px;
    position: relative; }
    .custom-dropdown .dropdown-link .wrap-icon {
      font-size: 30px; }
    .custom-dropdown .dropdown-link .number {
      width: 24px;
      height: 24px;
      line-height: 20px;
      border-radius: 50%;
      background: #007bff;
      position: absolute;
      font-size: 13px;
      top: -10px;
      right: -10px;
      border: 2px solid #fff;
      color: #fff;
      text-align: center; }
  
  .custom-dropdown .dropdown-menu {
    border: 1px solid transparent;
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
    margin-top: 0px !important;
    padding-top: 0;
    padding-bottom: 0;
    padding: 10px;
    opacity: 0;
    top: 100% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, 0) !important;
    -ms-transform: translate(-50%, 0) !important;
    transform: translate(-50%, 0) !important;
    right: auto !important;
    -webkit-transition: .3s margin-top ease, .3s opacity ease, .3s visibility ease;
    -o-transition: .3s margin-top ease, .3s opacity ease, .3s visibility ease;
    transition: .3s margin-top ease, .3s opacity ease, .3s visibility ease;
    visibility: hidden;
    min-width: 680px; }
    .custom-dropdown .dropdown-menu.active {
      opacity: 1;
      visibility: visible;
      margin-top: 10px !important; }
    .custom-dropdown .dropdown-menu .mega-menu {
      padding: 20px; }
      .custom-dropdown .dropdown-menu .mega-menu a {
        display: block;
        padding-top: 5px;
        padding-bottom: 5px;
        text-decoration: none;
        color: #000;
        font-weight: 400; }
        .custom-dropdown .dropdown-menu .mega-menu a:hover {
          color: #e83e8c; }
      .custom-dropdown .dropdown-menu .mega-menu > div {
        width: 33.3333%;
        padding-left: 10px;
        padding-right: 10px; }
        .custom-dropdown .dropdown-menu .mega-menu > div ul {
          margin: 0;
          padding: 0; }
  