/** Language Change Start **/
#webmenu{
    width:340px;
}

.selection-zone {
	height: 30px;
    display: flex;
    cursor: pointer;
}
select#langSelector {
    display: inline-block;
    width: 80px;
    height: 30px;
    position: relative;
    transition: 0.4s;
    border-radius: 30px;
    font-size: 16px;
    color: #090909;
    padding-left: 10px;
    background-color: #90D123;
    cursor: pointer;
}

body[class*=dark-mode].menuActive select#langSelector {
    background-color: #090909;
    /*    background-color: #90D123; */
}
body[class*=dark-mode] select#langSelector {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

div#langSelector_msdd {
    width: 80px!important;
    border: none;
    transition: 0.4s;
    cursor: pointer;
}
.selection-zone .dd .ddTitle {
    border-radius: 30px;
    height: 30px;
    background: #90D123;
    color: #090909;
    transition: 0.4s;
    
}
body[class*=dark-mode].menuActive .selection-zone .dd .ddTitle {
    background: #090909;
}
body[class*=dark-mode] .selection-zone .dd .ddTitle {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}
.selection-zone .dd .divider {
    display: none;
}
.selection-zone .dd .ddArrow {
    width: 12px;
    height: 12px;
    margin-top: -6px;
    margin-right: -2px;
    background: url(../images/arrow-up-right.svg) no-repeat;
    background-size: cover;
    color: black;
    transform: rotate(135deg);
    filter: brightness(0);
    display: none;
}
body[class*=dark-mode] .selection-zone .dd .ddArrow {
    filter: brightness(1);
}
.selection-zone .dd .ddTitle .ddTitleText {
    padding: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    /* margin-right: 8px; */
}
.selection-zone .dd .ddTitle .ddTitleText img {
    padding-right: 0;
    height: 14px;
    border-radius: 5px;
    padding-right: 0;
    margin-right: 4px;
}
.selection-zone .dd .ddTitle .description {
    display: none;
}
.selection-zone .dd .ddChild {
    border-radius: 5px;
    background-color: transparent;
    margin-top: -30px;
    margin-left: 1px;
}
.selection-zone .dd .ddChild li {
    padding: 5px;
    background: #8fd02430;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.selection-zone .dd .ddChild li.selected {
    background: #8fd02430;
}
.selection-zone .dd .ddChild li.hover {
    background-color: #90d124a3;
}
.selection-zone .dd .ddChild li.selected:hover {
    background: #90d124a3;
}
.selection-zone .dd .ddChild li:hover {
    background-color: #90d124a3;
}

.selection-zone .dd .ddChild li .ddlabel {
    color: #ffffff;
}

body[class*=dark-mode].menuActive .selection-zone .dd .ddChild li {
    background: #1e1f1d7d;
}
body[class*=dark-mode].menuActive .selection-zone .dd .ddChild li.selected {
    background: #1e1f1d7d;
}
body[class*=dark-mode].menuActive .selection-zone .dd .ddChild li.hover {
    background: #1e1f1dbd;
}
body[class*=dark-mode].menuActive .selection-zone .dd .ddChild li:hover {
    background: #1e1f1dbd;
}
.selection-zone .ddcommon .ddChild li img {
    height: 18px;
    border-radius: 2px;
    padding-right: 0 !important;
    margin-right: 10px;
}


@media screen and (max-width: 400px) {
    select#langSelector {
        width: 45px;
        font-size: 20px;
        padding-left: 4px;
    }

    #header .logo a,
    #header .logo {
        width: 90px;
    }
}
@media screen and (max-width: 370px) {
    div#langSelector_msdd {
        width: 60px !important;
    }
    span.ddlabel {
        display: none;
    }
    .selection-zone .dd .ddChild {
        width: 90px;
        margin-top: 0;
        margin-left: -15px;
    }
    .selection-zone .dd .ddTitle .ddTitleText img {
        /* margin-right: -5px; */
        margin-right: 0;
    }
    .selection-zone .dd .ddChild li.enabled .ddlabel {
        display: flex;
    }
    
}
@media screen and (max-width: 340px) {
    #header .logo a img {
        clip-path: polygon(0px 0px, 0px 0px, 0px 0px, 0px 0px);
            width: 50%;
    }
    #header .logo {
        width: 60px;
        height: 50px;
    }
    #header .logo a.animated-button {
        width: 60px;
        height: 50px;
        background-image: url(../images/logo-small.png);
        background-size: 90%;
        background-repeat: no-repeat;
        background-position: left;
    }
}
/** Language Change End **/

.line-height-n {
    line-height: normal;
}
.col-flex {
    flex-direction: column;
}
footer .col-lg-4 {
    display: flex;
    align-items: center;
    justify-content: center;
}