/* DROPDOWN LANGUAGE */

.dropdown *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


.dropdown {
    position: relative;
    right: 0;
    left: 75%;
    width: 300px;
    height: 50px;
}

.dropdown::before {
    content: "";
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1000;
    width: 8px;
    height: 8px;
    border: 2px solid #333;
    border-top: 2px solid #202020;
    border-right: 2px solid #202020;
    transform: rotate(-45deg);
    transition: 0.5s;
    pointer-events: none;
}

.dropdown.active::before {
    top: 22px;
    transform: rotate(-225deg);
}

.dropdown input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background: #202020;
    color: white;
    font-size: 16px;
    border: none;
    outline: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 12px 20px;
    border-radius: 10px;
}

.dropdown .options {
    position: absolute;
    top: 70px;
    width: 100%;
    background: #202020;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    display: none;
    border: 3px solid #292929;
}

.dropdown.active .options {
    display: block;
    z-index: 1;
}

.language-box {
    text-decoration: none;
    color: white;
}

.dropdown .options div {
    padding: 12px 20px;
    cursor: pointer;
}

.dropdown .options div:hover {
    background: #171717;
    color: white;
}

.post-index-content {
    padding: 1em;
    border: 1px solid rgba(0,0,0.7);
    background-color: #202020;
    border-radius: 10px;
}

#page-content {
    flex: 1 0 auto;
}