.dropbtn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

@media screen and (max-width: 768px) {
    .dropbtn {
        align-items: center;
        justify-content: center;
    }
}

.dropbtn:active {
    transform: translate(0, 1px);
}

.dropdown {
    width: 100%;
    display: flex;
    justify-content: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    width: 250px;
    min-width: 250px;
    left: 20px;
    bottom: 60px;
    background: var(--shade-5);
    border-radius: 22px;
    border: solid 1px var(--shade-3);
    box-sizing: border-box;
    padding: 12px 12px;
    min-width: 160px;
    overflow: auto;
}

@media screen and (max-width: 768px) {
    .dropdown-content {
        left: 0;
        bottom: 81px;
        width: 100%;
        border-left: none;
        border-right: none;
        border-bottom: none;
        border-radius: 0;
    }
}

.dropdown-content a {
    font-family: "IsidoraSans-SemiBold";
    font-size: 1rem;
    color: var(--shade-1);
    padding: 16px 16px;
    text-decoration: none;
    display: block;
}

@media screen and (max-width: 768px) {
    .dropdown-content a {
        width: 100%;
    }
}

.dropdown-content-inside:active {
    transform: scale(0.970);
}

@media screen and (max-width: 768px) {
    .dropdown-content-inside {
        display: flex;
        width: 100%;
        overflow: hidden;
    }
}

.dropdown a:hover {
    background-color: var(--shade-3);
    border-radius: 10px;
}

.show {
    display: flex;
    flex-direction: column;
}