﻿.facebook {
    cursor: pointer;
    width: 100%;
    line-height: 20px;
    padding: 10px 0;
    background-color: #4267b2;
    border:none;
    color: #fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.facebook > img{
    margin-left:15px;
}
.facebook > span{
    font-size:16px;
}
    .facebook:hover {
        background-color: #10299c;
    }

.google {
    cursor: pointer;
    width: 100%;
    line-height: 20px;
    padding: 10px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: thin solid #888;
    background-color: #fff;
    color: #444;

}

    .google > img {
        margin-left: 15px;
        width:7%;
    }

    .google > span {
        font-size: 16px;
    }

    .google:hover {
        border: thin solid #888;
        background-color: #eee;
        color: #444;
    }

.my-header {
    width: 100%;
    background-color: #fdfefe;
    padding: 15px 0px 15px 0px;
}

a {
    color: #0457c8;
}

    a:hover {
        text-decoration: underline !important;
        color: #0457c8 !important;
    }

@media only screen and (max-width: 767px) {
    .center-bar {
        display: none !important;
    }
    .mobile-horizontal-bar {
        display: block !important;
    }
    .guest-checkout-heading{
        margin-top:25px !important;
    }
}
.mobile-horizontal-bar {
    padding-left: 15px;
    padding-right: 15px;
}
.form-control{
    border-radius:15px !important;
}
.control-label:before {
    border-radius: 15px !important;
}
.input-validation-error {
    border: 1px solid #ec1a26;
}