.login-options {
}
.login-options__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.login-options__list iframe {
    opacity: 0;
    height: 32px;
    max-width: 32px;
    width: 32px;
    position: absolute;
    left: 0;
    z-index: 99;
    cursor: pointer;
}
.login-options__item {
    transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
}
.login-options__item:hover {
    scale: 110%;
}
.login-options__link svg {
    width: 32px;
    height: 32px;
}
.login-options__link {
     position: relative;
 }

@media screen and (max-width: 820px) {
    .login-options {
    }

    .login-options__list {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .login-options__link svg {
        width: 24px;
        height: 24px;
    }
}
