File: /var/www/innodrive/src/scss/blocks/lang.scss
.lang {
position: relative;
&__btn {
display: flex;
align-items: center;
cursor: pointer;
}
&__btnText {
color: #222;
font-size: 16px;
font-weight: 400;
line-height: 120.187%;
text-transform: uppercase;
margin-right: 5px;
}
&__btnIcon {
display: flex;
transition: 0.4s cubic-bezier(0.46, 0.03, 0.52, 0.96);
.icon {
width: 18px;
height: 18px;
}
}
&__list {
pointer-events: none;
opacity: 0;
transition: 0.4s cubic-bezier(0.46, 0.03, 0.52, 0.96);
z-index: 10;
position: absolute;
top: 25px;
left: 0;
width: 100%;
border-radius: 5px;
background: #fff;
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
&__listItem {
display: block;
padding: 5px 10px;
color: #222;
font-size: 16px;
font-weight: 400;
line-height: 120.187%;
text-transform: uppercase;
}
&.active {
.lang {
&__list {
pointer-events: all;
opacity: 1;
}
&__btnIcon {
transform: rotate(180deg);
}
}
}
}