/*ll.css*//
html, body {

    height: 100%;
}

body {
    margin: 0;
    padding: 0;

    background-attachment: fixed; /* Fix background to the viewport */
}

#alertPlaceholder {
    position: inherit;
    /*position: absolute*/
    left: 30px;
    right: 30px;
    width: auto; /* Let the width be automatic */
    margin-left: auto;
    margin-right: auto;
    opacity: .95;
    z-index: 9999;
}

/*this is for the loading screen*/
.loading{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0.8;
    background: #8DA68B;
    background: url(../images/preloader.gif) center no-repeat #fff;
}
/*end loading screen*/

.page-hero {
    background-color: #f8f9fa; /* Light gray background */
    padding: 100px 0; /* Adjust as needed */
    text-align: center;
}

.cta-button {
    margin-top: 20px;
}

.llfooter {
    position: fixed;
    bottom: 0;
    width: 100%;
    color: black;
}

#spacer{
    margin-bottom: 100px;;
}

/*user name and user tagline background*/

.text-container {
    display: block; /* Temporarily switch to block to ensure they appear on a new line */
    width: fit-content; /* Fit the content width, but you'll need to center it manually */
    margin: 0 auto; /* Center the block elements */
    /*background-color: rgba(255, 255, 255, 0.5);*/ /* Semi-transparent white background */
    padding: 0px 20px; /* 0 padding top and bottom, 10px padding left and right */
    border-radius: 5px;
}

.link-container .btn {
    max-width: 90%;
    white-space: normal;
    word-wrap: break-word;
}


.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px; /* Adjust the size as needed */
    height: 45px; /* Adjust the size as needed */
    /*border: 1px solid black;*/ /* Adjust the thickness of the border as needed */
    border-radius: 10px; /* Adjust the rounding of the corners as needed */
    color: whitesmoke; /* Icon color */
    font-size: 24px; /* Adjust the icon size as needed */
    margin-bottom: 10px;
}

/* Social Media Icons */

.facebook-icon { background-color: #4267B2; }
.twitter-icon { background-color: #1DA1F2; }
.twitter-x-icon { background-color: #000000; }
.instagram-icon { background-color: #C13584; }
.linkedin-icon { background-color: #0A66C2; }
.youtube-icon { background-color: #FF0000; }
.pinterest-icon { background-color: #BD081C; }
.tiktok-icon { background-color: #000000; }
.github-icon { background-color: #211F1F; }
.stackoverflow-icon { background-color: #F48024; }
.medium-icon { background-color: #12100E; } 
.tumblr-icon { background-color: #35465C; }
.snapchat-icon { background-color: #FFFC00; }
.whatsapp-icon { background-color: #25D366; }
.discord-icon { background-color: #5865F2; }
.slack-icon { background-color: #4A154B; }
.reddit-icon { background-color: #FF4500; } 
.twitch-icon { background-color: #6441A5; }
.spotify-icon { background-color: #1DB954; } 
.telegram-icon { background-color: #0088CC; }
.email-icon { background-color: #000000; }
.phone-icon { background-color: #000; }
.sms-icon { background-color: #000; }


/*for account create page*/
.brand_logo {
    height: 90px;
    width: 90px;
    margin-top: auto;
    position: relative;
    justify-content: center;
    /*border-radius: 50%;*/
    /*border: 2px solid white;*/
}

.user_card_create {
    margin-top: 120px;
    margin-bottom: auto;
    background: #a1a1a1;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;
    
}

.user_card_create a {
    color: inherit; /* Hyperlinks will inherit the color from the parent element */
    text-decoration: none; /* Optional: Removes underline from links */
}

/*hide h1 header*/
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/*END for account create page*/
