/* ===========================
   DeliveryCounter Language Switcher
   =========================== */

   .dc-language-switcher{

    position:fixed;

    right:20px;

    bottom:20px;

    z-index:999999;

    font-family:inherit;

}

/* ===========================
   Toggle Button
   =========================== */

.dc-language-toggle{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:12px 18px;

    border:none;

    border-radius:50px;

    background:#5109b8;

    color:#fff;

    cursor:pointer;

    font-size:14px;

    font-weight:600;

    line-height:1;

    box-shadow:0 12px 35px rgba(0,138,255,.30);

    transition:all .25s ease;

}

.dc-language-toggle:hover{

    background:#5109b8 !important;

    transform:translateY(-2px);

    box-shadow:0 16px 40px rgba(0,138,255,.40);

}

.dc-language-toggle:focus{

    outline:none;

}

/* Arrow */

.dc-language-toggle::after{

    content:"▼";

    font-size:10px;

    padding: 0 8px;

    transition:transform .25s ease;

}

.dc-language-switcher.active
.dc-language-toggle::after{

    transform:rotate(180deg);

}

/* ===========================
   Dropdown
   =========================== */

.dc-language-menu{

    position:absolute;

    right:0;

    bottom:68px;

    width:220px;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(14px);

    border-radius:16px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    overflow:hidden;

    opacity:0;

    visibility:hidden;

    transform:translateY(12px);

    transition:all .25s ease;

}

.dc-language-switcher.active
.dc-language-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/* ===========================
   Items
   =========================== */

.dc-language-menu a,

.dc-language-current{

    display:flex;

    align-items:center;

    padding:14px 18px;

    text-decoration:none;

    font-size:15px;

    color:#222;

    transition:all .2s ease;

}

.dc-language-menu a:hover{

    background:#F4F9FF;

    color:#5109b8;

    padding-left:22px;

}

/* Current */

.dc-language-current{

    background:#5109b8;

    color:#fff;

    font-weight:600;

}

/* Divider */

.dc-language-menu a + a{

    border-top:1px solid #F2F2F2;

}

/* ===========================
   Mobile
   =========================== */

@media (max-width:768px){

    .dc-language-switcher{

        right:15px;

        bottom:15px;

    }

    .dc-language-menu{

        width:200px;

    }

    .dc-language-toggle{

        padding:11px 16px;

        font-size:13px;

    }

}