ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

/* Dropdown start */
.dropdown {
    position: relative;
    display: block;
}
.dropdown__btn {
    padding-right: 20px;
    display: block;
    position: relative;
}
.dropdown__btn::after {
    position: absolute;
    font-family: "Material Icons";
    content: '\e5cf';
    right: 0px;
    font-size: 20px;
    color: grey;
}
.dropdown__list {
    visibility: hidden;
    transition: all 0.3s;
    position: absolute;
    width: 260px;
    z-index: 100;
    padding: 20px 15px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    opacity: 0;
}
.dropdown:hover .dropdown__list {
    visibility: visible;
    opacity: 1;
}
.dropdown__link {
    position: relative;
    display: block;
    padding: 6px 10px;
    transition: all 0.3s;
}
/* Dropdown end */


/* Horizontal Tab start */
.horizontal-tab {
    display: flex;
    gap: 20px;
}
.horizontal-tab__button--active {
    background: #0d6efd;
    color: white;
}
.horizontal-tab__pane {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    animation: fadeEffect 1s;
    flex-direction: column;
}
.horizontal-tab__pane--active {
    display: flex;
}
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@-webkit-keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-20px);
      transform: translateY(-20px);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
      transform: translateY(-20px);
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
    }
  }
/* Horizontal Tab end */


/* Mobile dropdown start */
.mobile-dropdown__toggler {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-dropdown__icon {
    transition: 0.3s;
}
.mobile-dropdown--open .mobile-dropdown__icon {
    transform: rotate(180deg);
}
.mobile-dropdown__list {
    -moz-transition: height .5s;
    -ms-transition: height .5s;
    -o-transition: height .5s;
    -webkit-transition: height .5s;
    transition: height .5s;
    height: 0;
    overflow: hidden;
}
/* Mobile dropdown end */