/*
 * MIT License
 *
 * Copyright (c) 2023 Techyouknow
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

.customer-account-create .block-social-login .block-content {
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: 90px;
    float:left;
}

.block-social-login .block-content {
    margin-top: 30px;
    margin-bottom: 30px;
}

.block.block-customer-login > .block {
    width: 100%;
}
.block.block-social-login {
    text-align: center;
}
.social-login-container .seperator {
    margin-bottom: 20px;
    font-size: 2.2rem;
    position: relative;

}
.social-login-container .seperator::before {
    content: '';
    width: 100%;
    height: 1px;
    background: #c6c6c6;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.social-login-container .seperator strong {
    background: #fff;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}
.social-login-container ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.social-login-container li {
    margin: 0 0 15px;
    float: none;
}
.social-login-container li:last-child {
    margin-bottom: 0;
}
.social-login-container a {
    /*width: 100%;*/
    max-width: 300px;
    height: auto;
    padding: 5px 13px;
    /*background: #ddd;*/
    box-sizing: border-box;
    /*box-shadow: rgba(60,64,67,.3) 0 1px 1px 0;*/
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    color: #555;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.social-login-container a span {
    text-transform: capitalize;
}
.social-login-container a::before {
    display:none;
    content: "";
    margin-right: 10px;
    width: 20px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.social-login-container a.google::before {
    background-image: url('../images/social_networks/google-48.png');
}
.social-login-container a.facebook::before {
    background-image: url('../images/social_networks/fb-48.png');
}
.social-login-container a.apple::before {
    background-image: url('../images/social_networks/apple-48.png');
}
.social-login-container a.amazon::before {
    background-image: url('../images/social_networks/amazon-48.png');
}
.social-login-container a.github::before {
    background-image: url('../images/social_networks/github-48.png');
}
.social-login-container a.instagram::before {
    background-image: url('../images/social_networks/instagram-48.png');
}
.social-login-container a.linkedin::before {
    background-image: url('../images/social_networks/linkedin-48.png');
}
.social-login-container a.twitter::before {
    background-image: url('../images/social_networks/twitter-48.png');
}
.social-login-container a.yahoo::before {
    background-image: url('../images/social_networks/yahoo-48.png');
}
@media (max-width: 768px) {
    .customer-account-create .block-social-login .block-content {
        float:none;
        margin-left: 0px;
    }
}
