html::-webkit-scrollbar {
    display: none;
}

body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


.dropbtn {
    background-color: #042641;
    color: #eee;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropbtn .language-icon {
    width: 20px;
    filter: invert(100%);
}

.dropbtn:hover,
.dropbtn:focus {
    color: #ffd700;
    /* yellow */
}

.dropdown {
    position: relative;
    display: inline-block;
    flex-grow: 1;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    color: black;
}

.navdrop {
    width: 100%;
}

.dropdown-content button {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border: 1px solid lightgray;
    align-items: center;
    width: 100%;
}

#languageSelector button {
    display: flex;
    align-items: center;
}

.dropdown-content button:hover {
    background-color: #ddd;
}

.dropdown-content a {
    color: black !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    z-index: 101;
    border: 1px solid lightgray;
    align-items: center;
}

.dropdown-content a:hover {
    background-color: #ddd !important;
    color: black !important;
}

#languageSelector a {
    display: flex;
    align-items: center;
}

.flag-link {
    display: flex;
    align-items: center;
    color: black;
}

.flags {
    width: 35px;
    height: auto;
    margin-right: 10px;
    /* Add margin to the right of the image */
}

.navdrop a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown .norights:hover {
    background-color: #161c21;
}

.dropdown a:hover {
    background-color: #ddd;
}

.dropbtn .caret-down {
    transition: transform 0.1s linear;
    /* Apply transition to the transform property */
    width: 12px;
    filter: invert(100%);
    align-items: center;
}

.dropbtn:focus .caret-down {
    transform: rotate(-180deg);
    /* Rotate the caret icon when button is focused */
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.show {
    display: block;
}


.hidden {
    display: none !important;
}


.menu {
    position: absolute;
    top: 120px;
    /* Adjust as needed */
    left: 0;
    padding: 0 0;
}

.menu a {
    display: block;
    border-bottom: 1px solid gray;
    color: #333;
    text-decoration: none;
    padding: 15px 25px;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #ccc;
}

.menu a:hover {
    background-color: #f0f0f0;
}

.Name h4{
    text-align: right;
}

.loginfrom{
    width: 40%;
}


@media (max-width: 768px) {
    .loginfrom{
        width: 100%;
    }

    .g-recaptcha{
        margin-left: -30%;
    }
}