html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}


/* ==== START components\dropdown.css ==== */
.dropdown {
    position: relative;
    display: inline-flex;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 240px;
    background-color: var(--color-darker);
    border: 1px solid #ffffff11;
    border-radius: var(--radius-small);
    z-index: 999;
    flex-direction: column;
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    display: flex;
}

.dropdown-menu a,
.dropdown-menu button {
    display: flex;
    align-items: center;
    gap: var(--gap-small);
    padding: 8px 16px;
    color: var(--color-lighter);
    text-decoration: none;
    font-size: var(--default-font-size);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-all);
}

.dropdown-menu a:hover,
.dropdown-menu button:hover {
    background-color: #ffffff0d;
    color: var(--color-lightest);
    border-bottom:1px solid #FFFFFF33;
}

.dropdown-divider {
    height: 1px;
    background-color: #ffffff11;
    margin: 4px 0;
}