/*Language Selector default*/

.language-selector {
    position: absolute;
    right: 120px;
    top: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
    right: 65px;
}

.language-selector .language {
    font-size: 13px;
    line-height: 18px;
    font-weight: 400;
    color: #454545;
}

.data-toggle-button {
    background: url('img/lang-off.svg') no-repeat center;
    width: 32px;
    height: 16px;
}

.data-toggle-button.on {
    background: url('img/lang-on.svg') no-repeat center;
    width: 32px;
    height: 16px;
}

/*Language Selector detail page changes*/

.details-body.with-lang-selector .language-selector {
    right: 0px;
}

.details-body.with-lang-selector {
    position: relative;
}
