.social_login_table {
	height: 100%;
	width: 100%;
	border-spacing: 0;
	border-radius: 0;
	margin: 0;
	padding: 0;
	position: relative;
    background-color: transparent;
}
.social_login_table tr {
    display: flex;
}
.social_login_icon {
    display: none;
}
.social_login_text {
    flex-grow: 1;
    padding: 0;
}
.social_login_text a, .social_login_text button {
    font-family: "Inter", sans-serif;
    color: #1B2036;
    background-color: #ffffff;
    border: 1px solid #E1E1E1;
    transition: border-color ease 0.4s;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0 10px 0 50px;
    height: 40px;
    cursor: pointer;
    text-align: left;
    font-size: 12px;
    border-radius: 5px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.social_login_text.google a:hover {
    border-color: #DB4437;
}
.social_login_text.facebook button:hover {
    border-color: #4267b2;
}
.social_login_text.facebook button::before, .social_login_text.google a::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px 0 0 5px;
}
.social_login_text.google a::before {
    background: url("../../../own/image/icon/svg/google-white.svg") center no-repeat #DB4437;
    background-size: 12px;
}
.social_login_text.facebook button::before {
	background: url("../../../own/image/icon/svg/facebook-f-white.svg") center no-repeat #4267b2;
    background-size: 8px;
}
.social_login_text a:focus {
	outline: none;
}