.selector {
    width: 140px;
    margin-left: 20px;
    border-radius: 10px;
    border: 3px solid gray;
}

#selectField {
    width: 140px;
    /* padding: 15px 20px; */
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

#selectField img {
    width: 24px;
}

#selectField p {
    margin-bottom: 0;
    font-weight: bold;
}

#language-list {
    width: 180px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    overflow: hidden;
    z-index: 50;
    position: absolute;
}

ul#language-list {
    height: auto;
    margin: 10px 0 0 0;
    padding: 0;
}

.options {
    width: 100%;
    height: 35px;
    padding: 10px 0 10px 70px;
    margin-bottom: 7.5px;
    list-style: none;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

.options img {
    width: 25px;
    top: 7.5px;
    left: 25px;
    position: absolute;
}

.options p {
    margin-bottom: 0;
    z-index: 5;
    position: absolute;
}

.options:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hide {
    /* visibility: hidden; */
    display: none;
}

@media screen and (max-width: 992px) {
    .selector {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
    }

    #selectField {
        width: 120px;
    }

    #selectField p {
        font-size: 14px;
    }
}

.lang-selector {
    width: 100%;
}

@media screen and (max-width: 992px) {
    .lang-selector {
        width: 25%;
    }
}

@media screen and (max-width: 576px) {
    .lang-selector {
        width: 50%;
    }
}