* {
    font-family: 'Roboto', sans-serif;
}

/* General Styles */
.hide {
    display: none !important;
    transition: all;
    border: none !important;
}

.inline {
    display: inline-block;
    padding-right: 30px;
}

/* Text Styles */
.text-center {
    text-align: center;
}

.text-green {
    color:	#5CB85C;
}

.no-text-decoration {
    text-decoration: none;
}

/* Form/Input Styles */
.input-box {
    width: 324px;
    height: 41px;
    background: #fff;
    border: 1px solid #c6c7c9;
    text-indent: 10px;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.07);
    margin: 2px 0 16px 0;

}

.input-box-medium {
    width: 200px;
    height: 41px;
    background: #fff;
    border: 1px solid #c6c7c9;
    text-indent: 10px;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.07);
    margin: 2px 0 16px 0;

}

.input-box-select {
    width: 86px;
    height: 45px;
    background: #fff;
    border: 1px solid #c6c7c9;
    text-indent: 10px;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.07);
    margin: 2px 0 16px 0;
    border-radius: 0;
}

.input-box-select-large {
    width: 125px;
    height: 45px;
    background: #fff;
    border: 1px solid #c6c7c9;
    text-indent: 10px;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.07);
    margin: 2px 0 16px 0;
    border-radius: 0;
}

.input-box-select-larger {
    width: 200px;
    height: 45px;
    background: #fff;
    border: 1px solid #c6c7c9;
    text-indent: 10px;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.07);
    margin: 2px 0 16px 0;
    border-radius: 0;
}

.input-box-select-massive {
    width: 350px;
    height: 45px;
    background: #fff;
    border: 1px solid #c6c7c9;
    text-indent: 10px;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.07);
    margin: 2px 0 16px 0;
    border-radius: 0;
}

.input-box-select-larger-multi {
    width: 200px;
    height: 100px;
    background: #fff;
    border: 1px solid #c6c7c9;
    text-indent: 10px;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.07);
    margin: 2px 0 16px 0;
    border-radius: 0;
    padding: 5px;
}

.check-box-label {
    color: #222222;
    font-size: 18px;
    font-weight: 500;
    line-height: 19px;
    bottom: 5px;
    position: relative;
}

.checkbox-input {
    box-sizing: border-box;
    height: 25px;
    width: 25px;
    border: 1px solid #C6C7C9;
    border-radius: 4px;
    background: #FFFFFF;
    background-image: none;
    box-shadow: 0 7px 24px 0 rgba(0,0,0,0.07);
}

.form-label {
    color: #595B5F;
    font-size: 14px;
    line-height: 20px;
}

.textarea {
    width: 667px;
    height: 50px;
    background: #fff;
    border: 1px solid #c6c7c9;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.07);
    border-radius: 0;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 19px;
}

.button-blue {
    height: 41px;
    width: 324px;
    border-radius: 4px;
    background-color: #0275D8;
    color: #FBFBFB;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    border: none;
    transition: all .2s;
    cursor: pointer;
}

.button-blue:hover {
    background-color: rgb(0, 81, 151);
    transition: all .2s;
}

.button-blue-medium {
    height: 31px;
    width: 175px;
    border-radius: 4px;
    background-color: #0275D8;
    color: #FBFBFB;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    border: none;
    transition: all .2s;
    cursor: pointer;
    position: relative;
    padding-top: 10px;
    bottom: 2px;
    margin-right: 15px;
}

.button-blue-medium:hover {
    background-color: rgb(0, 81, 151);
    transition: all .2s;
}

.button-blue-small {
    height: 31px;
    width: 100px;
    border-radius: 4px;
    background-color: #0275D8;
    color: #FBFBFB;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    border: none;
    transition: all .2s;
    cursor: pointer;
    position: relative;
    padding-top: 10px;
    bottom: 2px;
    margin-right: 15px;
}

.button-blue-small:hover {
    background-color: rgb(0, 81, 151);
    transition: all .2s;
}

.button-white {
    box-sizing: border-box;
    height: 41px;
    width: 324px;
    color: #0275D8;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #0275D8;
    border-radius: 4px;
    transition: all .2s;
    cursor: pointer;
}

.button-white:hover {
    color: #fff;
    background-color: rgb(0, 81, 151);
    border: none;
    transition: all .2s;
}

.button-white-medium {
    box-sizing: border-box;
    height: 41px;
    width: 175px;
    color: #0275D8;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #0275D8;
    border-radius: 4px;
    transition: all .2s;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-top: 10px;
    bottom: 2px;
    left: 10px;
}

.button-white-medium:hover {
    color: #fff;
    background-color: rgb(0, 81, 151);
    border: none;
    transition: all .2s;
}

.button-white-small {
    box-sizing: border-box;
    height: 41px;
    width: 100px;
    color: #0275D8;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #0275D8;
    border-radius: 4px;
    transition: all .2s;
    cursor: pointer;
    display: inline-block;
    position: relative;
    padding-top: 10px;
    bottom: 2px;
    left: 10px;
}

.button-white-small:hover {
    color: #fff;
    background-color: rgb(0, 81, 151);
    border: none;
    transition: all .2s;
}

.error {
    margin: 0;
    color: #D9534F;
    margin-bottom: 15px;
    font-size: 12px;
    font-style: italic;
    line-height: 20px;
    margin-top: -10px;
}

#photoid_width_error{
    margin-top: 10px;
}

.error-color {
    color: #D9534F;
}

.success {
    text-align: center;
    font-size: 12px;
    font-style: italic;
    line-height: 20px;
    color: #3C763D;
}

/* Page specific styles */
/****************/
/* Edit Profile */
/****************/

.main-edit-wrapper {
    padding: 100px 0 100px 375px;
    z-index: -1;
    width: 725px;
}

.section-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    padding-bottom: 20px;
    padding-top: 50px;
}

.contract-content {
    border: 1px solid #C6C7C9;
    padding: 30px;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 19px;
    width: 627px;
    height: 400px;
    overflow: scroll;
}

.edit-button {
    margin: 0 auto;
    margin-top: 30px;
}

.photo-preview-text {
    margin-bottom: 0;
}

#photo-preview {
    width: 100%;
    height: auto;
    border: 1px solid #C6C7C9;
    display: block;
}

#photoid-capture-button {
    margin-right: 30px;
}

.ssn-reason {
    margin: -15px 0 20px 0;
}

.ssn-more-icon {
    position: relative;
    top: 7px;
    left: 10px;
    transition: all 1s;
}

.ssn-reason-full {
    margin: 0px 0 30px 0;
    transition: all 1s;
    display: none;
}

@media only screen and (max-width: 1200px) {
    .main-edit-wrapper {
        padding-left: 50px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 767px) {
    .name_sec1 {
        display: block !important;
    }
    .inputCntnr {
        margin: 0 0px !important;
        width: 100% !important;
    }
    .leftmenubar {
        height: auto !important;
    }
}


@media only screen and (max-width: 800px) {
    .main-edit-wrapper {
        padding-left: 30px;
        margin: 0 auto;
        width: 340px;
    }

    .contract-content {
        width: 263px;
    }

    .textarea {
        width: 303px;
    }

    #photoid-capture-button {
        margin-right: 0px;
        margin-bottom: 25px;
    }

}

/*************/
/* Dashboard */
/*************/
.top-nav-content {
    box-sizing: border-box;
    height: 82px;
    width: 100%;
    border: 1px solid #C6C7C9;
    background-color: #FFFFFF;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.1);
    position: fixed;
    z-index: 100;
}


.top-logo-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.top-nav-logo {
    max-width: 40%;
    height: auto;
    position: relative;
    top: 10px;
    padding-left: 10px;
}


.side-nav-wrapper {
    width: 280px;
    border: 1px solid #C6C7C9;
    background-color: #FFFFFF;
    box-shadow: 8px 0 16px 0 rgba(0,0,0,0.1);
    float: left;
    position: fixed;
    top: 0;
    bottom: 0;
}

.link-wrapper {
    padding-top: 35px;
    margin-top: 82px;
}

.side-link-wrapper {
    width: 254px;
    margin: 10px auto;
}

.side-link-content {
    font-size: 20px;
    line-height: 26px;
    padding: 10px 25px 3px 25px;
    color: #222;
}

.side-link-content a {
    text-decoration: none;
    color: inherit;
    position: relative;
    bottom: 5px;
    left: 15px;
}

.active-side-link {
    border-radius: 2px;
    background-color: #D9EDF7;
}

.logout-wrapper {
    padding-top: 150px;
    align-self: flex-end;
}

.logout-content {
    width: 254px;
    margin: 0 auto;
}

.button-white-side-nav-div {
    box-sizing: border-box;
    height: 41px;
    width: 254px;
    color: #0275D8;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #0275D8;
    border-radius: 4px;
    transition: all .2s;
    cursor: pointer;
}

.button-white-side-nav-div-mobile {
    box-sizing: border-box;
    height: 41px;
    width: 254px;
    color: #0275D8;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #0275D8;
    border-radius: 4px;
    transition: all .2s;
    cursor: pointer;
    padding-top: 9px;
    margin-top: 40px;
}

.button-white-side-nav-mobile:hover {
    color: #fff;
    background-color: rgb(0, 81, 151);
    border: none;
    transition: all .2s;
}

.main-wrapper {
    padding: 120px 0 0 320px;
    z-index: -1;
}

.col1-wrapper {
    width: 400px;
    float: left;
}

.account-balance-content {
    height: 34px;
    color: #222222;
    font-size: 30px;
    line-height: 39px;
    padding-bottom: 20px;
}

.account-notice-wrapper {
    padding: 15px 0 10px 0;
}

.notice {
    box-sizing: border-box;
    width: 401px;
    border: 1px solid #c6c7c9;
    border-radius: 4px;
    background-color: rgb(248, 246, 246);
}

.blue-notice {
    box-sizing: border-box;
    height: 61px;
    width: 401px;
    border: 1px solid #BCDFF1;
    border-radius: 4px;
    background-color: #D9EDF7;
}

.green-notice {
    box-sizing: border-box;
    height: 61px;
    width: 400px;
    border: 1px solid #D0E9C6;
    border-radius: 4px;
    background-color: #DFF0D8;
}

.red-notice {
    box-sizing: border-box;
    height: 61px;
    width: 400px;
    border: 1px solid #EBCCCC;
    border-radius: 4px;
    background-color: #F2DEDE;
}

.notice-col1-wrapper {
    float: left;
}

.notice-col1-content {
    margin: 9px 0 0 10px;
}

.notice-cta-wrapper {
    float: right;
}

.notice-cta-content {
    margin: 10px 15px 10px 0;
}

.notice-bold-line {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

.notice-normal-line {
    font-size: 16px;
    line-height: 28px;
}

.notice-icon {
    min-height: 40px;
    min-width: 40px;
    max-height: 40px;
    max-width: 40px;
    border-radius: 4px;
    color: #fff;
    background-color: #0275D8;
}

.notice-bold-line-blue {
    color: #31708F;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

.notice-normal-line-blue {
    color: #31708F;
    font-size: 16px;
    line-height: 20px;
}

.notice-blue-icon {
    min-height: 40px;
    min-width: 40px;
    max-height: 40px;
    max-width: 40px;
    border-radius: 4px;
    color: #fff;
    background-color: #0275D8;
}

.notice-bold-line-green {
    color: #3C763D;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

.notice-normal-line-green {
    color: #3C763D;
    font-size: 16px;
    line-height: 20px;
}

.notice-green-icon {
    min-height: 40px;
    min-width: 40px;
    max-height: 40px;
    max-width: 40px;
    border-radius: 4px;
    color: #fff;
    background-color: #3C763D;
}

.notice-bold-line-red {
    color: #843534;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

.notice-normal-line-red {
    color: #843534;
    font-size: 16px;
    line-height: 20px;
}

.notice-red-icon {
    min-height: 40px;
    min-width: 40px;
    max-height: 40px;
    max-width: 40px;
    border-radius: 4px;
    color: #fff;
    background-color: #843534;
}

.blue-icon-job {
    font-size: 30px;
    position: relative;
    left: 6px;
    top: 4px;
}

.blue-icon {
    font-size: 34px;
    position: relative;
    left: 4px;
    top: 2px;
}

.green-icon {
    font-size: 28px;
    position: relative;
    left: 5px;
    top: 5px;
}

.red-icon {
    font-size: 28px;
    position: relative;
    left: 6px;
    top: 6px;
}

.col2-wrapper {
    padding-left: 440px;
    padding-right: 50px;
}

.campaign-card-wrapper {
    border: 1px solid #C6C7C9;
    border-radius: 4px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.1);
    margin-bottom: 22px;
}

.campaign-card-content {
    margin: 16px;
}

.campaign-title-wrapper {
    padding-bottom: 35px;
}

.campaign-title-content {
    color: #222222;
    width: 99%;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    display: table-cell;
    position: relative;
    bottom: 5px;
}

.cta-content {
    width: 5%;
    display: table-cell;
}

.green-icon-campaign {
    font-size: 34px;
    position: relative;
    left: 4px;
    top: 2px;
}

.blue-icon-campaign {
    min-height: 40px;
    max-height: 40px;
    font-size: 28px;
    position: relative;
    left: 6px;
    top: 5px;
    padding-bottom: 0;
}

.campaign-col1-wrapper {
    width: 10px;
    display: table-cell;
    top: 10px;
    position: relative;
}

.campaign-col1-job-wrapper {
    width: 175px;
    display: table-cell;
    top: 10px;
    position: relative;
}

.campaign-col2-wrapper {
    display: table-cell;
    padding: 0;
}

.message-size-content {
    padding-bottom: 10px;
}

.stat {
    margin-left: 10px;
    position: relative;
    bottom: 6px;
}

.side-nav-wrapper-mobile, .menu-wrapper {
    display: none;
}

@media only screen and (max-width: 1200px) {

    .top-logo-content {
        text-align: center;
    }

    .side-nav-wrapper {
        display: none;
    }

    .main-wrapper {
        padding-left: 50px;
    }

    .menu-wrapper {
        position: absolute;
        display: inherit;
        top: 25px;
        left: 25px;
    }

    .menu-icon {
        font-size: 30px;
    }

    .side-nav-wrapper-mobile {
        width: 0%;
        float: left;
        position: fixed;
        top: 0;
        bottom: 0;
        display: block;
        z-index: 2000;
        background-color: rgba(0,0,0,0.5);
        transition: all .2s;
    }

    .side-nav-content-mobile {
        width: 0px;
        border: 1px solid #C6C7C9;
        background-color: #FFFFFF;
        box-shadow: 8px 0 16px 0 rgba(0,0,0,0.1);
        float: left;
        position: fixed;
        top: 0;
        bottom: 0;
        display: block;
        z-index: 2000;
    }

    .link-wrapper-mobile, .logout-wrapper-mobile {
        display: none;
    }

    .drawer-close-content {
        margin: 25px 40px;
        font-size: 18px;
        font-weight: 700;
    }
}

@media only screen and (max-width: 1040px) {
    .main-wrapper {
        padding-left: 0;
        min-width: 425px;
    }

    .col1-wrapper {
        margin: 0 auto;
        float: none;
    }

    .col2-wrapper {
        width: 90%;
        padding-top: 20px;
        padding-left: 0;
        padding-right: 0;
        margin: 0 auto;
        float: none;
    }
}

@media only screen and (max-width: 699px) {


    .blue-notice, .green-notice, .red-notice {
        width: 100%;
    }

    .col1-wrapper {
        width: 90%;
    }

    .notice {
        margin: 0 auto;
        width: 90%;
    }

    .account-balance-content {
        height: auto;
        text-align: center;
    }

}


/******************/
/* Create Account */
/******************/

.create-wrapper {
    padding-bottom: 75px;
}

.create-content {
    margin: 0 auto;
    padding-top: 2%;
    width: 700px;
}

.form-group-one {
    float: left;
    width: 50%;
}

.form-group-two {
    float: right;
    width: 50%;
}

.create-button {
    margin-left: 190px;
    margin-top: 40px;
}

.sign-in-content a,
.sign-in-content a:visited,
.forgot-password-content a,
.forgot-password-content a:visited{
    text-decoration: none;
    color: #0275D8 !important;
}

@media only screen and (max-width: 699px) {
    .create-content {
        width: 330px;
    }

    .create-logo-override {
        width: 60%;
    }

    .create-button {
        margin: 0;
    }

    .create-logo-override {
        max-width: 60% !important;
    }

    .form-group-two {
        float: none;
    }
    .login-content {
        width: 330px !important;
    }
    .login-logo {
        max-width: 60% !important;
    }

}
@media only screen and (max-width: 1040px) {
    .main-wrapper {
        padding-left: 0;
        min-width: 400px;
    }

    .col1-wrapper {
        margin: 0 auto;
        float: none;
    }

    .col2-wrapper {
        width: 90%;
        padding-top: 20px;
        padding-left: 0;
        padding-right: 0;
        margin: 0 auto;
        float: none;
    }
}

/**************/
/* Login Page */
/**************/

.login-image-wrapper {
    display: none;
}

.login-logo {
    /* width: 75%; */
    height: auto;
    max-width: 40%;
    position: relative;
    top: 10px;
    padding-left: 10px;
}

/* .logo-wrapper {
    height: 70px;
    border-bottom: 1px solid #d0c2c2;
} */

.vertical-menu a:hover {
    text-decoration: none;
    color: #1675c5;
    font-weight: 500;
}



.login-content {
    margin: 0 auto;
    /* padding-top: 10%; */
    padding-top: 2%;
    /* width: 330px; */
    width: 700px;
}

.logo-content {
    text-align: center;
}

/*img.top-nav-logo.create-logo-override {
    max-width: 15%;
    float: left;
}*/

.red-logo-alt {
    color: #D9534F;
}

.create-login-header {
    color: #222222;
    font-size: 20px;
    font-weight: 500;
    line-height: 14px;
}

.login-message, .welcome-header-content, .t-e-text {
    color: #595B5F;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    padding-bottom: 25px;
}

.green-notice-success {
    box-sizing: border-box;
    height: 40px;
    width: 400px;
    border: 1px solid #D0E9C6;
    border-radius: 4px;
    background-color: #DFF0D8;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 25px;
    margin-top: -10px;
}

.notice-bold-line-green-success {
    color: #3C763D;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    position: relative;
    top: 8px;
}

.login-button {
    margin-top: 40px;
    margin-bottom: 5px;
}

.create-account-button {
    margin-top: 15px;
    margin-bottom: 5px;
}

.forgot-password-wrapper {
    width: 100%;
}

.forgot-password-content, .sign-in-content {
    color: #0275D8 !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    margin-top: 25px;
}

@media only screen and (min-width: 1024px) {
    .login-wrapper {
        /* padding-right: 14%; */
        padding-right: 0;
    }

    .login-image-wrapper {
        position: absolute;
        display: inline-block;
        top: 0;
        right: 0;
        height: 100%;
        width: 3000px;
        overflow: hidden;
        background-color: #fff;
        background-repeat: no-repeat;
        background-image: url('../images/chair.jpg');
        background-position: 2700px;
        z-index: -1;
    }
}

@media only screen and (min-width: 1150px) {
    .login-image-wrapper {
        background-position: 2600px;
    }
}


/********************************/
/* Contracts Admin/Groups Admin */
/********************************/

.search-content {
    display: flex;
}

.search-content a, .contract-edit a {
    text-decoration: none;
}

.admin-link-content {
    display: flex;
    justify-content: space-between;
    width: 98%;
    padding-bottom: 30px;
}

.admin-link-content a {
    text-decoration: none;
    color: inherit;
}

.admin-link a i {
    position: relative;
    right: 6px;
    top: 6px;
}

.results-wrapper {
    padding-right: 30px;
}

.contract-form {
    width: 90%;
}

.content-row {
    display: flex;
    justify-content: space-around;
    align-items: start;
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid rgb(232, 232, 232);
}

.content-row-data-header {
    display: flex;
    padding: 30px 30px;
    border-bottom: 1px solid rgb(232, 232, 232);
}

.content-row-data-footer {
    display: flex;
    padding: 20px 30px;
    border-top: 1px solid rgb(232, 232, 232);
}

.content-row-data {
    display: flex;
    padding: 10px 30px;
}

.contract-version, .contract-group {
    width: 100px;
    text-align: center;
}

.contract-text {
    width: 600px;
    max-height: 175px;
    overflow: scroll;
    margin: 0px 20px;
}

.contract-pay-rate, .contract-active, .contract-edit {
    width: 80px;
    text-align: center;
    margin: 0 10px;
}

.contract-submit {
    margin-top: 35px;
}

.button-blue-contract {
    height: 31px;
    border-radius: 4px;
    background-color: #0275D8;
    color: #FBFBFB;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    border: none;
    transition: all .2s;
    cursor: pointer;
    padding-top: 10px;
    position: relative;
    bottom: 10px;
}

.button-blue-contract:hover {
    background-color: rgb(0, 81, 151);
    transition: all .2s;
}

/***************/
/* Users Admin */
/***************/

.right-margin {
    margin-right: 30px;
}

.name-content, .name-content-header, .group-content {
    width: 150px;
}

.email-content, .email-content-header {
    width: 250px;
}

.verified-content, .edit-content {
    width: 100px;
}


/***************/
/* Jobss Admin */
/***************/

.title, .eligable_groups, .job_edit {
    width: 100px;
}

.job_desc {
    width: 250px;
}

.job_desc-text {
    width: 250px;
    position: relative;
    bottom: 15px;
}

.job_pop, .job_time, .job_date {
    width: 50px;
}

.job-stats {
    margin-top: 20px;
    clear: both;
}

.job-col1 {
    margin-left: 15px;
    margin-bottom: 15px;
    width: 50%;
    display: inline-block;
}

.job-col2 {
    display: inline-block;
}

/************
Sections Admin
************/

.section-text {
    width: 400px;
}

.section-active {
    width: 50px;
}

.section-edit {
    width: 100px;
}

/************
FAQs Admin
************/

.faq-title {
    width: 100px;
}

.faq-desc, .faq-desc-header {
    width: 400px;
    margin: 0 20px;
}

.faq-desc {
    text-align: left;
    margin: 0 20px;
}

.faq-active {
    width: 100px;
}

.faq-edit {
    width: 100px;
}


/************
FAQs Admin
************/

.announcement-title {
    width: 115px;
}

.announcement-desc, .announcement-desc-header {
    width: 400px;
    margin: 0 20px;
}

.announcement-desc {
    text-align: left;
    margin: 0 20px;
}

.announcement-date {
    width: 100px;
}

.announcement-groups {
    width: 75px;
}

.announcement-active {
    width: 50px;
}

.announcement-edit {
    width: 100px;
}

.date-content {
    min-width: 200px;
}

@media only screen and (max-width: 1040px) {
    .main-report-wrapper {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 700px) {
    .date-content{
        width: 50%;
    }
}

.user-content-admin {
    min-width: 200px;
}

.date-content-admin {
    min-width: 150px;
}

.count-content-admin {
    min-width: 150px;
}

/*Send Messages Page Styles*/

.send-count {
    font-size: 22px;
    font-weight: 700;
}

.send-title {
    padding-top: 15px;
    font-size: 24px;
    font-weight: 800;
}

.out-of {
    padding-top: 10px;
    padding-bottom: 5px;
}

.out-of-text {
    color: #fff;
    background-color: #000;
    font-size: 12px;
    padding: 3px 9px 2px 9px;
    border-radius: 4px;
}

#send-message-count,
#send-today-count {
    padding: 0 0 0 3px;
}

.accent-text-grey {
    color: #7d7d7d;
}

.sent-today-text {
    color: #fff;
    background-color: #5CB85C;
    font-size: 12px;
    padding: 3px 9px 2px 9px;
    border-radius: 4px;
}

#send-today-count {
    color: #5CB85C;
}

.message-wrapper {
    padding-top: 15px;
}

.message-callout {
    font-size: 16px;
    font-weight: 600;
}

.message-content {
    padding-top: 15px;
}

.message-text {
    padding: 10px 0;
    max-width: 350px;
}

.sender-button {
    padding-top: 40px;
    padding-bottom: 25px;
}

.send-button {
    padding-top: 10px;
}

.send-button-style {
    border: 0;
    background-color: inherit;
}
.icon {
    font-size: 18px !important;
    padding-right: 8px;
}
.inputCntnr {
    margin: 0 20px;
    width: 100%;
}
.inputCntnr{
    position:relative;
    clear: both;
}
.inputErrorField {
    display:none;
    position: absolute;
    bottom: -5px;
}
.name_sec1 {
    display: flex;
}
h2.Personel141 {
    padding: 0 25px;
}
.Information14 {
    padding: 30px 20px !important;
}
.Information12121 {
    padding-bottom: 20px !important;
}
.zip_code14 {
    display: flex;
}
.State454 {
    width: 70%;
    margin-right: 14px;
}
.Zip141 {
    width: 30%;
}
.name_sec2 {
    padding: 0 20px;
}
.checkbox {
    padding: 0 20px;
}
.register_userbtn {
    padding: 50px 20px;
}
.logo-content_formsec {
    float: left;
    width: 100%;
    border-bottom: 1px solid #ddd;
    box-shadow: -1px 2px 4px -4px;
}
.logo-content_formsec img {
    max-width: 250px;
}

.welcome-header-content p, .login-message p {
    margin-top: 1rem;
}
p.agree_text {
    margin-top: 1rem;
}
a.privacy_link {
    text-decoration: underline;
}
h1.create-login-header {
    margin-top: 1rem;
}

button.log_out_btn:not(:disabled):not(.disabled).active, button.log_out_btn:not(:disabled):not(.disabled):active {
    background-color: #1996f6;
    color: #fff !important;
}

button.log_out_btn:hover, button.log_out_btn:focus, button.log_out_btn:active, button.log_out_btn:active:hover {
    background-color: #1996f6;
    color: #fff !important;
}
.textarea_cont {
    margin: 0 0;
}

form#websiteUserLoginForm {
    margin: 0 auto;
    width: 50%;
}

.create-account-content {
    text-align: center;
}
button.create-account-button {
    padding: 0;
    margin-left: 12px;
}