.icon-button-container {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.icon-button-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 33px;
    height: 33px;
    background: #fff;
    border-radius: 25%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.icon-button {
    width: 35px;
    height: 35px;
    background: none;
    padding: 0;
    margin: 0 5px;
    border: none;
    cursor: pointer;
    color: #0fBBf8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-button:hover {
    color: #00a9F3;
}

.icon-button svg {
    width: 100%;
    height: 100%;
    display: block;
}

.menu .icon-button-container {
    margin-right: 20px;
}

@media (max-width: 1024px) {
    .icon-button {
        width: 30px;
        height: 30px;
        margin: 0 2px;
    }
    .icon-button-background {
        width: 28px;
        height: 28px;
    }
    .menu .icon-button-container {
        margin-right: 5px;
    }
}
