.ActionBarContainer {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
// position: fixed;
bottom: 25px;
left: 0;
padding: 10px 0;
background: linear-gradient(0deg,
rgba(0, 0, 0, 0.93) 76%,
rgba(0, 0, 0, 0) 100%);
z-index: 2;
&Content {
max-width: 1000px;
flex-grow: 1;
display: flex;
align-items: flex-end;
gap: 25px;
justify-content: center;
position: relative;
padding: 0 70px;
padding-bottom: 10px;
}
@media (max-width: 540px) {
&Content {
flex-direction: column;
align-items: center;
}
}
}