.can-translate {
    position: relative;
}

.can-translate-toggle {
    position: relative;
    cursor: pointer;
}

.can-translate-toggle::before {
    content: url("data:image/svg+xml; utf8, %3Csvg width='25px' height='25px' viewBox='-2.24 -2.24 20.48 20.48' xmlns='http://www.w3.org/2000/svg' fill='%23005173' class='bi bi-translate' stroke='%23005173' stroke-width='0.00016' %3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0' %3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round' stroke='%23ffffff' stroke-width='1.888' %3E%3Cpath d='M4.545 6.714 4.11 8H3l1.862-5h1.284L8 8H6.833l-.435-1.286H4.545zm1.634-.736L5.5 3.956h-.049l-.679 2.022H6.18z' %3E%3C/path%3E%3Cpath d='M0 2a2 2 0 0 1 2-2h7a2 2 0 0 1 2 2v3h3a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-3H2a2 2 0 0 1-2-2V2zm2-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H2zm7.138 9.995c.193.301.402.583.63.846-.748.575-1.673 1.001-2.768 1.292.178.217.451.635.555.867 1.125-.359 2.08-.844 2.886-1.494.777.665 1.739 1.165 2.93 1.472.133-.254.414-.673.629-.89-1.125-.253-2.057-.694-2.82-1.284.681-.747 1.222-1.651 1.621-2.757H14V8h-3v1.047h.765c-.318.844-.74 1.546-1.272 2.13a6.066 6.066 0 0 1-.415-.492 1.988 1.988 0 0 1-.94.31z' %3E%3C/path%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier' %3E%3Cpath d='M4.545 6.714 4.11 8H3l1.862-5h1.284L8 8H6.833l-.435-1.286H4.545zm1.634-.736L5.5 3.956h-.049l-.679 2.022H6.18z' %3E%3C/path%3E%3Cpath d='M0 2a2 2 0 0 1 2-2h7a2 2 0 0 1 2 2v3h3a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-3H2a2 2 0 0 1-2-2V2zm2-1a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H2zm7.138 9.995c.193.301.402.583.63.846-.748.575-1.673 1.001-2.768 1.292.178.217.451.635.555.867 1.125-.359 2.08-.844 2.886-1.494.777.665 1.739 1.165 2.93 1.472.133-.254.414-.673.629-.89-1.125-.253-2.057-.694-2.82-1.284.681-.747 1.222-1.651 1.621-2.757H14V8h-3v1.047h.765c-.318.844-.74 1.546-1.272 2.13a6.066 6.066 0 0 1-.415-.492 1.988 1.988 0 0 1-.94.31z' %3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.can-translating {
    display: none;
    position: inherit;
    bottom: 3px;
    right: 3px;
    padding-left: 2px;
    color: inherit;
    font-size: smaller;
    overflow: hidden;
    pointer-events: none;
}

.can-translating.slide-in {
    display: inline-block;
    animation: ease-in 1s running slidein;
}

.can-translating.slide-out {
    display: inline-block;
    animation: ease-in 1s running slideout forwards;
}

@keyframes slidein {
    from {
        opacity: 0;
        text-indent: -100px;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideout {
    from {
        opacity: 1;
        text-indent: 1px;
    }

    to {
        opacity: 0;
        text-indent: -100px;
    }
}

.can-translate-toggle #text {
    color: #808080;
}

.can-translate-toggle #dot {
    display: inline-block;
    width: 2px;
    height: 4px;
    border-radius: 50%;
    background-color: #808080;
}

@media (max-width: 700px) {
    .can-translate-toggle #text {
        display: none;
    }
}

@media (max-width: 500px) {
    .can-translate {
        display: none;
    }
}

.can-translate-toggle #dot:nth-last-child(1) {
    animation: fallingDots 1s 0.3s ease-in infinite;
}

.can-translate-toggle #dot:nth-last-child(2) {
    animation: fallingDots 1s 0.2s ease-in infinite;
}

.can-translate-toggle #dot:nth-last-child(3) {
    animation: fallingDots 1s 0.1s ease-in infinite;
}

@keyframes fallingDots {
    0% {
        transform: translate(0, -15px);
        opacity: 0;
    }

    25%,
    50%,
    75% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(0, 15px);
        opacity: 0;

    }
}

.ct-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding - box;
    background-clip: padding - box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.ct-dropdown-menu>li>a:focus,
.ct-dropdown-menu>li>a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}

.ct-dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.ct-dropdown-menu.ct-pull-right {
    right: 0;
    left: auto;
}

.ct-show {
    display: inline-block !important;
}