/* Language dropdown  */

.country_wrap button {
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    background-color: transparent;
}

.selectOption {
    position: relative;
}

.drop-lang {
    position: relative;
}


.optionGroup {
    display: none;
}

.dropdown-group {
    position: relative;
}

.lang-txt img {
    position: absolute;
    top: -16px;
    right: -16px;
    font-size: 24px;
    color: #777;
    cursor: pointer;
}

.lang-txt p {
    font-size: 24px;
    font-weight: 500;
}

.show-lang {
    display: block !important;
}

.close-lang {
    display: none;
}

.listOption a.getData {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    font-size: 14px;
    color: #000;
}

.selectOption {
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

#data-t {
  display: flex;
  align-items: center;
  gap: 4px;
}

.listOption {
    margin-bottom: 8px;
}

.selectOption span img,
.listOption a img {
    width: 24px;
    /* border-radius: 50%; */
}

.listOption a span {
    margin-left: 5px;
}


.listOption {
    padding: 6px 4px;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

.listOption a:hover {
    text-decoration: underline;
}

#dp_list {
    position: absolute;
    top: 50px;
    right: 0;
    background: #fff;
    width: 800px;
    box-shadow: 0 0 17px rgba(0, 0, 0, 0.09);
    border-radius: 24px;
    padding: 30px;
}

#getLang {
    height: 33px;
}

.formDropdown {
    z-index: 999;
}

.lang-flag,
.lang-fg-1 {
    display: flex;
    justify-content: space-between;
}

.lang-fg-1-1,
.lang-fg-1 {
    width: 50%;
}

@media all and (max-width: 991px) {
    .lang-flag {
        flex-direction: column;
    }
    .lang-txt img {
        top: -22px;
        right: -8px;
    }
    #dp_list {
        width: auto;
        border-radius: 16px;
        padding: 30px 16px;
        right: -85%;
        height: 400px;
        overflow-y: scroll;
    }
    #dp_list::-webkit-scrollbar {
        display: none;
    }

    .lang-fg-1-1,
    .lang-fg-1 {
        width: 100%;
    }

    .lang-txt i {
        right: -6px;
    }
}