﻿.wrapper {
    max-width: 100%;
    margin: auto;
}
#the-count {
    float: right;
    padding: 0.1rem 0 0 0;
    font-size: 0.875rem;
}
.review .review-info p {
    margin: 8px 0px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.timeline-profile, .blab-alert {
    cursor: pointer;
}

.review-lists li {
    cursor: pointer;
}

.invisible {
    display: none;
}

.comment-msg textarea {
    resize:none;
}

.visible {
    display: block;
}

.stop {
    margin: 0px auto;
    text-align: center;
    font-size: 28px;
    border-top: 1px solid #f4f4f4;
}

.refresh-prompt{
    cursor: pointer;
}

.message-count {
    position: relative;
    text-align: end;
    margin: -20px 0px 20px 0px;
}

.signup-caption h4 {
    font-family: "Montserrat-Black";
    font-weight: bold;
    margin-bottom: 15px;
}

#exclude > li {
    list-style: square;
    padding: 0;
    margin: 10px;
}

#exclude {
    padding-left: 25px;
}

#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    background-color: #333; /* Black background color */
    color: #fff; /* White text color */
    text-align: center; /* Centered text */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 9999; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    top: 30px; /* 30px from the top */
}

#snackbar.success {
    background-color: #2fc820; /* Black background color */
}

#snackbar.error {
    background-color: #ff0000; /* Black background color */
}

#snackbar.warning {
    background-color: #ffcc00; /* Black background color */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible; /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
/*@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }

    to {
        top: 0;
        opacity: 0;
    }
}*/

.comment-loader {
    text-align: center;
    font-size: 18px;
    color: #ff6634;
    padding: 10px 0 20px;
}

.job-title-input {
    position: relative;
}

.JobTitleResults,
.EmployerResults {
    display: none;
    position: absolute;
    background-color: #ffffff;
    padding: 5px;
    width: 100%;
    margin-top: -10px;
    z-index: 99;
    border: 1px solid #e9e9e9;
    max-height: 230px;
    overflow-y: auto;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.04);
}

.JobTitleResults li,
.EmployerResults li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    font-size: 13px;
    cursor: pointer;
    color: #2e3b46;
}
.trend {
    cursor: pointer;
}

.bq {
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 40px;
    margin-right: 40px;
}