@font-face {
    font-family: 'Inter';
    font-weight: normal;
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
         url('../fonts/Inter-Regular.woff') format('woff'),
}

@font-face {
    font-family: 'Inter';
    font-weight: bold;
    src: url('../fonts/Inter-Bold.woff2') format('woff2'),
         url('../fonts/Inter-Bold.woff') format('woff'),
}

a:link {color: #E23030; text-decoration: none}
a:visited {color: #E23030; text-decoration: none}
a:hover {color: #E23030; text-decoration: underline}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 13px;
    color: #333333;
    background-color: #FFFFFF;
    word-wrap: break-word;
}

table {
    font-family: inherit;
    font-size: 13px;
}

input {
    font-family: inherit;
}

textarea {
    font-family: inherit;
}

select {
    font-family: inherit;
}

.primary-button {
    background-color: #E23030;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 0;
    border-radius: 0;
    padding: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    color: #FFFFFF;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.primary-button:hover {
    background: -webkit-linear-gradient(#E23030, #E22020); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#E23030, #E22020); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#E23030, #E22020); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#E23030, #E22020); /* Standard syntax */
}

.secondary-button {
    background-color: #E3E3E3;
    border: 0;
    border-radius: 0;
    padding: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    color: #333333;
    -webkit-appearance: none;
}

.secondary-button:hover {
    background: -webkit-linear-gradient(#E3E3E3, #D6D6D6); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#E3E3E3, #D6D6D6); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#E3E3E3, #D6D6D6); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#E3E3E3, #D6D6D6); /* Standard syntax */
}

#header {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 50px;
    padding-right: 50px;
    height: 40px;
    overflow: auto;
    background-color: #FFFFFF;
    border-bottom: 1px solid #ECECEC;
    box-shadow: 0 1px 1px 0 rgba(51,51,51,0.33);
    z-index: 1000;
    -webkit-app-region: drag;
}

#header.sticky {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 0px;
    box-shadow: none;
}

#header.sticky.scrolled {
    border-bottom: 1px solid #ECECEC;
    box-shadow: 0 1px 1px 0 rgba(51,51,51,0.33);
}

.desktop #header {
    text-align: center;
}

.desktop #login-box {
    width: 320px;
}

.desktop #google-login-button {
    width: 320px;
    background-image: url(../images/google_login_desktop2@2x.png);
    background-size: 320px 45px;
}

.desktop #google-login-button:hover {
    background-image: url(../images/google_login_desktop_hover2@2x.png);
}

.desktop #microsoft-login-button {
    width: 320px;
    background-image: url(../images/microsoft_login_desktop@2x.png);
    background-size: 320px 45px;
}

.desktop #microsoft-login-button:hover {
    background-image: url(../images/microsoft_login_desktop_hover@2x.png);
}

.desktop #appleid-signin {
    width: 318px;
}

.desktop #login-email, .desktop #login-password {
    width: 300px;
}

.desktop #login-button {
    width: 320px;
}

.desktop #login-signup-link {
    margin-top: 25px;
    font-size: 14px;
    text-align: center;
}

.desktop #login-signup-link a:link {color: #666666; text-decoration: none}
.desktop #login-signup-link a:visited {color: #666666; text-decoration: none}
.desktop #login-signup-link a:hover {color: #333333; text-decoration: underline}

#header-name {
    float: left;
    margin-top: 2px;
    width: 116px;
    height: 35px;
    background-image: url(../images/notejoy_logo3_wordmark.gif);
    background-size: 116px 35px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.no-blink #header-name {
    background-image: url(../images/notejoy_logo3_wordmark.svg);
}

#header-subname {
    float: left;
    margin-left: 15px;
    padding-left: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-left: 1px solid #ECECEC;
    font-size: 22px;
    color: #333333;
}

#header-subname a {
    color: #333333;
}

#header-right {
    float: right;
}

.onboarding #header-right {
    display: none;
}

a.header-link {
    float: left;
    margin-top: 10px;
    
    font-size: 16px;
    margin-right: 50px;
    color: #333333;
    cursor: pointer;
}

a.header-link:hover {
    color: #E23030;
    text-decoration: none;
}

a.header-button {
    float: left;
    margin-left: -8px;
    padding: 10px 16px;
    font-size: 16px;
    border-radius: 19px;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
}

#content {
    margin-top: 50px;
    margin-bottom: 50px;
}

#footer {
    padding-top: 50px;
    padding-bottom: 80px;

    background-color: #454545;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#footer-content {
    width: 870px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

.footer-row {
    overflow: auto;
    padding-top: 50px;
}

.footer-row:first-child {
    padding-top: 0;
}

.footer-column {
    float: left;
    width: 166px;
    padding-right: 10px;
}

.footer-column:last-child {
    padding-right: 0px;
}

.footer-header {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

a.footer-link, .footer-link {
    display: block;
    margin-top: 18px;
    font-size: 14px;
    color: #ECECEC;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-link a {
    color: #ECECEC;
}

.footer-connect {
    float: left;
    height: 35px;
    width: 35px;
    margin-top: 18px;
    margin-right: 9px;
    background-size: 35px 35px;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: 2px solid #454545;
    cursor: pointer;
}

.footer-connect:last-child {
    margin-right: 0px;
}

.footer-connect:hover {
    border: 2px solid #959595;
}

.footer-connect.facebook {
    background-image: url(../images/connect_facebook@2x.png);
}

.footer-connect.twitter  {
    background-image: url(../images/connect_twitter@2x.png);
}

.footer-connect.linkedin {
    background-image: url(../images/connect_linkedin@2x.png);
}

#login {
    margin-bottom: 75px;
}

#signup {
    margin-bottom: 175px;
}

#login-logo, #signup-logo {
    margin-top: 30px;
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/notejoy_logo3.svg);
    background-size: 120px 120px;
    background-repeat: no-repeat;
}

#login-title, #signup-title {
    margin-top: 12px;
    text-align: center;
    font-weight: bold;
    font-size: 32px;
    color: #333333;
}

#index-logo, #desktop-login-logo {
    margin-top: 30px;
    width: 175px;
    height: 175px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/notejoy_logo3.svg);
    background-size: 175px 175px;
    background-repeat: no-repeat;
}

#desktop-login-title {
    margin-top: 12px;
    text-align: center;
    font-weight: bold;
    font-size: 36px;
    color: #333333;
}

#login-box, #signup-box {
    margin-top: 55px;
    margin-left: auto;
    margin-right: auto;
    width: 350px;
}

#login-email, #login-password, #subscribe-email, #signup-email, .contact-input {
    width: 330px;
    height: auto;
    padding: 9px;
    margin: 5px 0 5px 0;
    font-size: 18px;
    outline: none;
    border: 1px solid #ECECEC;
    border-radius: 0;
    -webkit-appearance: none;
}

.contact-input {
    width: 380px;
}

#login-email:focus, #login-password:focus, #subscribe-email:focus, #signup-email:focus {
    outline: 1px solid rgb(59, 153, 252);
}

.contact-input:focus {
    box-shadow: inset 0 0 0 1pt #DDDDDD;
}

#login-button, #signup-button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-top: 5px;
    background-color: #E23030;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    font-weight: bold;
    border-radius: 23px;
    padding: 12px;
    width: 350px;
    border: 0;
    display: block;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    outline: none;
    -webkit-appearance: none;
}

#google-login-button {
    width: 350px;
    height: 45px;
    background-image: url(../images/google_login2@2x.png);
    background-repeat: no-repeat;
    background-size: 350px 45px;
    cursor: pointer;
}

#google-login-button:hover {
    background-image: url(../images/google_login_hover2@2x.png);
}

#google-signup-button {
    width: 350px;
    height: 45px;
    background-image: url(../images/google_signup2@2x.png);
    background-repeat: no-repeat;
    background-size: 350px 45px;
    cursor: pointer;
}

#google-signup-button:hover {
    background-image: url(../images/google_signup_hover2@2x.png);
}

#microsoft-login-button {
    width: 350px;
    height: 45px;
    margin-top: 20px;
    background-image: url(../images/microsoft_login@2x.png);
    background-repeat: no-repeat;
    background-size: 350px 45px;
    cursor: pointer;
}

#microsoft-login-button:hover {
    background-image: url(../images/microsoft_login_hover@2x.png);
}

#microsoft-signup-button {
    width: 350px;
    height: 45px;
    margin-top: 20px;
    background-image: url(../images/microsoft_signup@2x.png);
    background-repeat: no-repeat;
    background-size: 350px 45px;
    cursor: pointer;
}

#microsoft-signup-button:hover {
    background-image: url(../images/microsoft_signup_hover@2x.png);
}

#appleid-signin {
    width: 348px;
    height: 45px;
    margin-top: 20px;
    border: 1px solid #DDDDDD;
    border-radius: 2px;
    cursor: pointer;
}

#appleid-signin:hover {
    border: 1px solid #9A9A9A;
}

#or-divider {
    margin-left: 1px;
    margin-right: 1px;
    margin-top: 23px;
    margin-bottom: 23px;
    text-align: center;
    font-size: 18px;
    color: #666666;
    border-bottom: 1px solid #ECECEC;
    line-height: 1px;
}

#or-divider-text {
    padding-left: 15px;
    padding-right: 15px;
    background-color: #FFFFFF;
    margin-left: auto;
    margin-right: auto;
}

#login-button:hover, #signup-button:hover {
    background-color: #E22020;
    background: -webkit-linear-gradient(#E23030, #E22020); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#E23030, #E22020); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#E23030, #E22020); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#E23030, #E22020); /* Standard syntax */
}

#request-access-description {
    margin-top: 55px;
    text-align: center;
    font-size: 26px;
    color: #333333;
}

#login-link-buttons {
    margin-top: 30px;
    text-align: center;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a.login-link-button {
    color: #666666;
    font-size: 14px;
    text-decoration: none;
}

a.login-link-button:hover {
    color: #333333;
    text-decoration: underline;
}

#signup-disclosure {
    margin-top: 20px;
    font-size: 13px;
    color: #666666;
    text-align: center;
}

#signup-disclosure a {
    color: #666666;
    text-decoration: underline;
}

#signup-disclosure a:hover {
    color: #333333;
}

#auth-status {
    margin-top: 20px;
    text-align: center;
    color: #E23030;
    font-size: 14px;
    line-height: 23px;
}

#pricing {
    margin-bottom: 66px;
}

#pricing-plans {
    margin-top: 55px;
    margin-left: auto;
    margin-right: auto;
    width: 970px;
    overflow: auto;
}

.pricing-plan {
    float: left;
    margin-right: 30px;
    margin-bottom: 10px;
    padding: 20px;
    width: 178px;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    box-shadow: 0 2px 4px 0 rgba(51,51,51,0.33);
}

.pricing-plan:last-child {
    margin-right: 0px;
}

.pricing-plan.free {
    border-top: 4px solid #5585D9;
}

.pricing-plan.solo {
    border-top: 4px solid #02B875;
}

.pricing-plan.plus {
    border-top: 4px solid #E23030;
}

.pricing-plan.premium {
    border-top: 4px solid #F6A623;
}

.pricing-plan.enterprise {
    border-top: 4px solid #666666;
}

.pricing-plan-title {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.pricing-plan-description {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 21px;
    line-height: 29px;
    color: #666666;
    text-align: center;
}

.pricing-plan-description.enterprise {
    padding-top: 34px;
    padding-bottom: 34px;
}

.pricing-plan-price {
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 42px;
    color: #666666;
    text-align: center;
}

.pricing-plan-price.monthly {
    display: none;
}

.pricing-plan-price-detail {
    font-size: 15px;
    line-height: 19px;
    height: 38px;
    color: #959595;
    text-align: center;
}

.pricing-plan-price-detail.monthly {
    display: none;
}

.pricing-plan-price-toggle {
    margin-top: 15px;
    font-size: 13px;
    color: #959595;
    text-align: center;
    text-decoration: underline;
    cursor: pointer;
}

.pricing-plan-price-toggle:hover {
    color: #666666;
}

.pricing-plan-price-toggle.monthly {
    display: none;
}

a.pricing-plan-signup {
    display: block;
    width: 146px;
    margin-top: 35px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 11px;
    padding-bottom: 11px;
    border-radius: 22px;
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
    background-color: #E23030;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a.pricing-plan-signup:hover {
    text-decoration: none;
    background: -webkit-linear-gradient(#E23030, #E22020); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#E23030, #E22020); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#E23030, #E22020); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#E23030, #E22020); /* Standard syntax */
}

a.pricing-plan-signup.free {
    background-color: #5585D9;
}

a.pricing-plan-signup.free:hover {
    background: #5585D9;
}

a.pricing-plan-signup.solo {
    margin-top: 65px;
}

a.pricing-plan-signup.enterprise {
    margin-bottom: 10px;
}

.pricing-plan-divider {
    margin-top: 31px;
    border-top: 1px solid #ECECEC;
    margin-bottom: 20px;
    margin-left: -20px;
    margin-right: -20px;
}

.pricing-plan-features-title, .pricing-plan-solo-plan {
    font-size: 15px;
    line-height: 21px;
    color: #666666;
}

a.pricing-plan-solo-plan-link {
    color: #666666;
    text-decoration: underline;
}

a.pricing-plan-solo-plan-link:hover {
    color: #333333;
}

.pricing-plan-feature {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 3px;
    background-image: url(../images/plan_checkmark@2x.png);
    background-size: 20px 15px;
    background-repeat: no-repeat;
    padding-left: 30px;
    font-size: 15px;
    color: #666666;
}

a.pricing-plan-feature:link, a.pricing-plan-feature:visited, a.pricing-plan-feature:hover {
    color: #666666;
}

.pricing-plan-feature:last-child {
    margin-bottom: 0px;
}

#pricing-freebies {
    width: 970px;
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 27px;
    color: #666666;
    text-align: center;
}

#pricing-customers-title {
    font-size: 34px;
    color: #333333;
    text-align: center;
}

#pricing-customers-logos {
    width: 755px;
    height: 172px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/customer_logos4.png);
    background-size: 755px 172px;
}

.section-title {
    font-size: 32px;
    text-align: center;
}

.section-divider {
    margin-top: 66px;
    margin-bottom: 66px;
    border-top: 1px solid #ECECEC;
}

.section-divider.tight {
    margin-top: 0px;
    margin-bottom: 40px;
}

#value-prop-divider-red {
    margin-top: 66px;
    margin-bottom: 66px;
    border-top: 2px solid rgb(226, 48, 48);
    height: 40px;
    background-color: rgba(226, 48, 48, .1);
}

#value-prop-divider-blue {
    margin-top: 66px;
    margin-bottom: 66px;
    border-top: 2px solid rgb(85, 133, 217);
    height: 40px;
    background-color: rgba(85, 133, 217, .1);
}

#value-prop-divider-black {
    margin-top: 66px;
    margin-bottom: 66px;
    border-top: 2px solid rgb(69, 69, 69);
    height: 40px;
    background-color: rgba(69, 69, 69, .1);
}

#homepage-tagline {
    color: #444444;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 80px;
}

#homepage-tagline.enticer {
    margin-bottom: 30px;
}

#home {
    margin-bottom: 66px;
}

#home-tagline {
    margin-top: 60px;
    font-size: 32px;
    text-align: center;
}

#home-tagline.short {
    font-size: 36px;
}

#home-sub-tagline {
    margin-top: 18px;
    font-size: 22px;
    color: #666666;
    text-align: center;
}

#use-case h1 {
    margin-top: 60px;
    font-size: 34px;
    text-align: center;
    font-weight: bold;
}

#use-case h2 {
    margin-top: 18px;
    width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-size: 22px;
    font-weight: normal;
    line-height: 33px;
    text-align: center;
    color: #666666;
}

.use-case-section {
    width: 980px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

.use-case-section-image {
    float: left;
    width: 475px;
    height: 525px;
    margin-right: 30px;
}

.use-case-section.remote.one .use-case-section-image {
    background-image: url(../images/remote_team1.png);
    background-size: 475px 810px;
    background-repeat: no-repeat;
}

.use-case-section.remote.two .use-case-section-image {
    background-image: url(../images/remote_team2.png);
    background-size: 475px 566px;
    background-repeat: no-repeat;
    height: 530px;
}

.use-case-section.remote.three .use-case-section-image {
    background-image: url(../images/remote_team3.png);
    background-size: 473px 570px;
    background-repeat: no-repeat;
    width: 473px;
    border: 1px solid #ECECEC;
    border-radius: 5px;
}

.use-case-section.agency.one .use-case-section-image {
    background-image: url(../images/agency1.png);
    background-size: 475px 566px;
    background-repeat: no-repeat;
    height: 560px;
}

.use-case-section.agency.two .use-case-section-image {
    background-image: url(../images/agency2.png);
    background-size: 475px 810px;
    background-repeat: no-repeat;
    height: 650px;
}

.use-case-section.agency.three .use-case-section-image {
    background-image: url(../images/agency3.png);
    background-size: 473px 613px;
    background-repeat: no-repeat;
    width: 473px;
    border: 1px solid #ECECEC;
    border-radius: 5px;
}

.use-case-section.small-business.one .use-case-section-image {
    background-image: url(../images/small_business1.png);
    background-size: 473px 615px;
    background-repeat: no-repeat;
    width: 473px;
    height: 595px;
    border: 1px solid #ECECEC;
    border-radius: 5px;
}

.use-case-section.small-business.two .use-case-section-image {
    background-image: url(../images/small_business2.png);
    background-size: 475px 566px;
    background-repeat: no-repeat;
    height: 566px;
}

.use-case-section.small-business.three .use-case-section-image {
    background-image: url(../images/small_business3.png);
    background-size: 475px 810px;
    background-repeat: no-repeat;
    height: 600px;
}

.use-case-section.support-teams.one .use-case-section-image {
    background-image: url(../images/support_teams1.png);
    background-size: 475px 566px;
    background-repeat: no-repeat;
    height: 566px;
}

.use-case-section.support-teams.two .use-case-section-image {
    background-image: url(../images/support_teams2.png);
    background-size: 475px 810px;
    background-repeat: no-repeat;
}

.use-case-section.support-teams.three .use-case-section-image {
    background-image: url(../images/support_teams3.png);
    background-size: 473px 412px;
    background-repeat: no-repeat;
    width: 473px;
    height: 412px;
    border: 1px solid #ECECEC;
    border-radius: 5px;
}

.use-case-section.sales.one .use-case-section-image {
    background-image: url(../images/sales1.png);
    background-size: 273px 542px;
    background-repeat: no-repeat;
    width: 273px;
    height: 542px;
    border: 1px solid #ECECEC;
    border-radius: 5px;
    margin-left: 100px;
    margin-right: 100px;
}

.use-case-section.sales.two .use-case-section-image {
    background-image: url(../images/sales2.png);
    background-size: 432px 515px;
    background-repeat: no-repeat;
    height: 515px;
}

.use-case-section.sales.three .use-case-section-image {
    background-image: url(../images/sales3.png);
    background-size: 301px 346px;
    background-repeat: no-repeat;
    height: 346px;
    width: 301px;
    margin-left: 87px;
    margin-right: 87px;
    border: 1px solid #ECECEC;
    border-radius: 5px;
}

.use-case-section.sales.four .use-case-section-image {
    background-image: url(../images/sales4.png);
    background-size: 303px 423px;
    background-repeat: no-repeat;
    width: 303px;
    height: 423px;
    margin-left: 86px;
    margin-right: 86px;
}

.use-case-section-content {
    float: left;
    width: 475px;
    margin-top: 135px;
}

.use-case-section.agency.one .use-case-section-content {
    margin-top: 80px;
}

.use-case-section.support-teams.three .use-case-section-content {
    margin-top: 30px;
}

.use-case-section.sales.one .use-case-section-content {
    margin-top: 100px;
}

.use-case-section.sales.two .use-case-section-content {
    margin-top: 60px;
}

.use-case-section.sales.three .use-case-section-content {
    margin-top: 0px;
}

.use-case-section.sales.four .use-case-section-content {
    margin-top: 80px;
}

.use-case-section-title {
    margin-bottom: 15px;
    font-size: 29px;
    font-weight: bold;
}

.use-case-section-description {
    margin-bottom: 10px;
    font-size: 19px;
    line-height: 26px;
    color: #666666;
}

.use-case-section ul {
    font-size: 17px;
    line-height: 26px;
    color: #666666;
}

#press-mentions-title {
    margin-bottom: 40px;
    font-size: 18px;
    color: #959595;
    text-align: center;
}

#press-mentions-image {
    width: 985px;
    height: 92px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/press_mentions@2x.png);
    background-size: 985px 92px;
    background-repeat: no-repeat;
}

#features {
    margin-bottom: 60px;
}

#features-tagline {
    margin-top: 60px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 32px;
    text-align: center;
    font-style: normal;
}

#features-tagline .highlight {
    font-weight: bold;
    font-style: italic;
}

#features-sections {
    margin-top: 60px;
}

.features-section {
}

.features-section:nth-child(odd) {
    background-color: rgba(216, 216, 216, 0.1);
}

.features-section-content {
    width: 984px;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

.features-section-left, .features-section-right {
    float: left;
    padding-top: 0px;
    width: 600px;
}

.features-section-image {
    float: left;
    width: 384px;
    background-repeat: no-repeat;
}

.features-section-icon {
    float: left;
    width: 38px;
    height: 38px;
    background-size: 38px 38px;
    background-repeat: no-repeat;
}

.features-section-right .features-section-icon {
    float: right;
    margin-left: 18px;
}

.features-section-icon.compose {
    background-image: url(../images/features_compose_icon.svg);
}

.features-section-icon.collaborate {
    background-image: url(../images/features_collaborate_icon.svg);
}

.features-section-icon.organize {
    background-image: url(../images/features_organize_icon.svg);
    width: 59px;
    background-size: 59px 38px;
}

.features-section-icon.clip {
    background-image: url(../images/features_clip_icon.svg);
    width: 29px;
    background-size: 29px 38px;
}

.features-section-icon.search {
    background-image: url(../images/features_search_icon.svg);
}

.features-section-icon.safe {
    background-image: url(../images/features_safe_icon.svg);
    width: 29px;
    background-size: 29px 38px;
}

.features-section-icon.integrate {
    background-image: url(../images/features_integrate_icon.svg);
    width: 45px;
    background-size: 45px 38px;
}

.features-section-icon.access {
    background-image: url(../images/features_access_icon.svg);
    width: 42px;
    background-size: 42px 38px;
}

.features-section-icon.customize {
    background-image: url(../images/features_customize_icon.svg);
    width: 45px;
    background-size: 45px 38px;
}

.features-section-icon.import {
    background-image: url(../images/features_import_icon.svg);
    width: 45px;
    height: 45px;
    background-size: 45px 45px;
}

.features-section-header-center {
    width: 525px;
    margin-left: auto;
    margin-right: auto;
}

.features-section-header-center.integrate {
    width: 550px;
}

.features-section-header-center.access {
    width: 470px;
}

.features-section-header-center.import {
    width: 510px;
}

.features-section-title {
    margin-left: 56px;
    font-size: 32px;
}

.features-section-title.organize {
    margin-left: 77px;
}

.features-section-title.access {
    margin-left: 60px;
}

.features-section-title.import {
    margin-left: 63px;
}

.features-section-right .features-section-title {
    text-align: right;
}

.features-section-image.compose {
    background-image: url(../images/features_compose_screenshot2.png);
    background-size: 383px 645px;
    height: 645px;
    margin-top: 10px;
}

.features-section-image.collaborate {
    background-image: url(../images/features_collaborate_screenshot.png);
    background-size: 385px 492px;
    height: 492px;
    margin-top: 23px;
}

.features-section-image.organize {
    background-image: url(../images/features_organize_screenshot2.png);
    background-size: 350px 535px;
    height: 535px;
    margin-top: -20px;
}

.features-section-image.clip {
    background-image: url(../images/features_clip_screenshot.png);
    background-size: 254px 267px;
    height: 267px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.features-section-image.search {
    background-image: url(../images/features_search_screenshot.png);
    background-size: 279px 335px;
    width: 314px;
    height: 335px;
    margin-left: 70px;
    margin-top: 70px;
    margin-bottom: 60px;
}

.features-section-image.safe {
    margin-top: 15px;
    background-image: url(../images/features_safe_screenshot2.png);
    background-size: 383px 500px;
    width: 383px;
    height: 500px;
}

.features-section-image.customize {
    background-image: url(../images/features_customize_screenshot.png);
    background-size: 383px 378px;
    width: 383px;
    height: 378px;
}

.features-section .integrations {
    width: 860px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

.features-section .integration {
    float: left;
    width: 400px;
    margin-bottom: 60px;
    overflow: auto;
}

.features-section .integration:nth-child(odd) {
    margin-right: 60px;
}

.features-section .integration-icon {
    float: left;
    height: 75px;
    width: 75px;
    margin-right: 18px;
    background-size: 75px 75px;
    backgrounde-repeat: no-repeat;
}

.features-section .integration-icon.zoom {
    background-image: url(../images/features_integrations_zoom.png);
}

.features-section .integration-icon.trello {
    background-image: url(../images/features_integrations_trello.png);
}

.features-section .integration-icon.slack {
    background-image: url(../images/features_integrations_slack2.svg);
}

.features-section .integration-icon.google-drive {
    background-image: url(../images/features_integrations_google_drive.svg);
}

.features-section .integration-icon.gmail {
    background-image: url(../images/features_integrations_gmail.svg);
}

.features-section .integration-icon.microsoft-office {
    background-image: url(../images/features_integrations_microsoft_office.svg);
}

.features-section .integration-icon.hubspot {
    background-image: url(../images/apps_hubspot.svg);
}

.features-section .integration-icon.scanner-apps {
    background-image: url(../images/apps_scanner.png);
}

.features-section .integration-icon.audio-recording-apps {
    background-image: url(../images/apps_audio_recording.png);
}

.features-section .integration-content {
    float: left;
    width: 307px;
}

.features-section .integration-title {
    font-size: 20px;
    font-weight: bold;
}

.features-section .integration-description {
    margin-top: 3px;
    font-size: 17px;
    line-height: 25px;
    color: #666666;
}

.features-section .features-apps-image-wrapper,
#home .features-apps-image-wrapper {
    width: 868px;
    height: 147px;
    margin-top: 60px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.features-section .features-apps-image,
#home .features-apps-image {
    width: 868px;
    height: 147px;
    border: none;
}

.features-section .features {
    margin-top: 60px;
    width: 600px;
    overflow: auto;
}

.features-section a:link, .features-section a:visited, .features-section a:hover {
    color: #333333;
}

.features-section .feature {
    float: left;
    margin-bottom: 60px;
    width: 292px;
}

.features-section .feature:nth-child(odd) {
    margin-right: 16px;
}

.features-section .feature-title {
    font-size: 21px;
    font-weight: bold;
}

.features-section .feature-description {
    margin-top: 3px;
    font-size: 17px;
    color: #666666;
    line-height: 25px;
}

.features-imports {
    width: 780px;
    margin-top: 60px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

.features-import {
    display: block;
    float: left;
    width: 120px;
    margin-right: 100px;
}

.features-import:last-child {
    margin-right: 0px;
}

.features-import-image {
    width: 120px;
}

#agency-scenarios-image {
    width: 918px;
    height: 183px;
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/agency_scenarios@2x.png);
    background-size: 918px 183px;
    background-repeat: no-repeat;
}

#small-business-scenarios-image {
    width: 931px;
    height: 180px;
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/small_business_scenarios@2x.png);
    background-size: 931px 180px;
    background-repeat: no-repeat;
}

#sales-scenarios-image {
    width: 914px;
    height: 183px;
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/sales_scenarios@2x.png);
    background-size: 914px 183px;
    background-repeat: no-repeat;
}

#alternative-tagline {
    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
    width: 750px;
    font-size: 22px;
    line-height: 33px;
    color: #666666;
    text-align: center;
}

#home .highlight, #integration .highlight, #use-case .highlight, #case-study .highlight, #oauth-form .highlight {
    font-weight: bold;
}

a.home-signup-button, a.features-signup-button {
    display: block;
    margin-top: 41px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 11px;
    padding-bottom: 11px;
    width: 196px;
    border-radius: 22px;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
}

a.home-signup-button:hover, a.features-signup-button:hover {
    text-decoration: none;
}

#home .section {
    padding-top: 50px;
    padding-bottom: 50px;
}

#home .section:nth-child(even) {
    background-color: rgba(216, 216, 216, 0.1);
}

#home .section:first-child {
    padding-top: 0px;
}

#home .section:last-child {
    padding-bottom: 0px;
}

#home .value-prop-title, #tour .value-prop-title, #use-case .value-prop-title {
    font-size: 32px;
    text-align: center;
}

#alternative .value-prop-title {
    font-size: 32px;
    text-align: center;
    width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.differences-list {
    width: 960px;
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

.differences-list.narrow {
    width: 660px;
}

.difference-item {
    float: left;
    width: 300px;
    margin-right: 30px;
    overflow: auto;
}

.difference-item.wide {
    margin-right: 60px;
}

.difference-item:last-child {
    margin-right: 0px;
}

.difference-image {
    float: left;
    width: 48px;
    height: 48px;
    background-size: 48px 48px;
    margin-right: 20px;
}

.difference-image.search {
    background-image: url(../images/difference_search.svg);
}

.difference-image.sharing {
    background-image: url(../images/difference_sharing.svg);
}

.difference-image.fast {
    background-image: url(../images/difference_fast.svg);
}

.difference-image.organization {
    background-image: url(../images/difference_organization.svg);
}

.difference-image.editing {
    background-image: url(../images/difference_editing.svg);
}

.difference-image.sync {
    background-image: url(../images/difference_sync.svg);
}

.difference-content {
    float: left;
    width: 232px;
}

.difference-title {
    font-size: 22px;
}

.difference-description {
    margin-top: 6px;
    font-size: 15px;
    line-height: 22px;
    color: #959595;
}

#home .value-prop-description, #tour .value-prop-description, #use-case .value-prop-description {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    width: 600px;
    font-size: 18px;
    line-height: 27px;
    color: #666666;
    text-align: center;
}

.value-prop-paragraph {
    width: 600px;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    font-size: 21px;
    line-height: 32px;
    color: #3333333;
}

#home .demo-video, #tour .demo-video, #alternative .demo-video, #use-case .demo-video {
    margin-top: 66px;
    margin-bottom: 66px;
    margin-left: auto;
    margin-right: auto;
    width: 900px;
    height: 506px;
    border: 1px solid #ECECEC;
}

#home #capture-screenshot, #tour #capture-screenshot {
    height: 681px;
    width: 984px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/capture_screenshot.png);
    background-size: 984px 681px;
    background-repeat: no-repeat;
}

#home #collaboration-screenshot, #tour #collaboration-screenshot {
    height: 492px;
    width: 976px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/collaboration_screenshot.png);
    background-size: 976px 492px;
    background-repeat: no-repeat;
}

#home #collaboration-screenshot2, #tour #collaboration-screenshot2 {
    height: 644px;
    width: 976px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/collaboration_screenshot2.png);
    background-size: 976px 644px;
    background-repeat: no-repeat;
}

#home #find-screenshot, #tour #find-screenshot {
    height: 539px;
    width: 966px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/find_screenshot.png);
    background-size: 966px 539px;
    background-repeat: no-repeat;
}

#home #find-screenshot2, #tour #find-screenshot2 {
    height: 539px;
    width: 966px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/find_screenshot2.png);
    background-size: 966px 539px;
    background-repeat: no-repeat;
}

#home .value-prop-learn-more {
    display: block;
    text-align: center;
    font-size: 15px;
    color: #959595;
    text-decoration: underline;
    cursor: pointer;
}

#home .value-prop-learn-more:hover {
    color: #666666;
}

#home .feature-group {
    margin-top: 66px;
    width: 954px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

#home .feature-group.hide {
    display: none;
}

#home .feature-item {
    float: left;
    width: 282px;
    margin-right: 54px;
}

#home .feature-item:last-child {
    margin-right: 0px;
}

#home .feature-title {
    font-size: 22px;
}

#home .feature-description {
    margin-top: 11px;
    font-size: 18px;
    color: #666666;
}

.value-prop-title.customers {
}

#home #customer-logos {
    display: none; /* temp */
    width: 924px;
    height: 194px;
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/customer_logos.png);
    background-size: 924px 194px;
}

#home #customer-logos2, #alternative #customer-logos2 {
    width: 818px;
    height: 173px;
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/customer_logos2.png);
    background-size: 818px 173px;
}

#home #customer-logos3, #alternative #customer-logos3 {
    width: 755px;
    height: 169px;
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/customer_logos3.png);
    background-size: 755px 169px;
}

#home #customer-logos4, #alternative #customer-logos4 {
    width: 755px;
    height: 172px;
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/customer_logos4.png);
    background-size: 755px 172px;
}

#customer-quotes .indicator-item {
    background-color: #D8D8D8;
    cursor: pointer;
}

#customer-quotes .indicator-item.active {
    background-color: #5585D9;
}

#customer-quotes .carousel .carousel-item {
    height: 500px !important;
}

.customer-quote {
    width: 870px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
    margin-bottom: 70px;
    overflow: auto;
}

.customer-quote.margin {
    margin-top: 120px;
}

.customer-quote-text {
    float: left;
    background-image: url(../images/quotes.svg);
    background-size: 40px 38px;
    background-repeat: no-repeat;
    padding-left: 65px;
    padding-top: 15px;
    width: 520px;
    font-size: 28px;
    line-height: 42px;
}

.customer-quote-text.small {
    font-size: 26px;
    line-height: 39px;
}

.customer-quote-right {
    float: right;
}

.customer-quote-image {
    margin-left: auto;
    margin-right: auto;
    height: 202px;
    width: 202px;
    background-size: 202px 202px;
    background-repeat: no-repeat;
}

.customer-quote-image.alan {
    background-image: url(../images/alan_wang.png);
}

.customer-quote-image.adam {
    background-image: url(../images/adam_gauvin.png);
}

.customer-quote-image.karthik {
    margin-top: 70px;
    background-image: url(../images/karthik_sridharan.png);
}

.customer-quote-image.andrew {
    margin-top: 70px;
    background-image: url(../images/andrew_chen.png);
}

.customer-quote-image.barry {
    margin-top: 40px;
    background-image: url(../images/barry_huang.png);
}

.customer-quote-image.loren {
    margin-top: 60px;
    background-image: url(../images/loren_appin.png);
}

.customer-quote-image-text {
    margin-top: 10px;
    text-align: center;
    font-size: 24px;
    color: #666666;
}

.customer-testimonials {
    width: 920px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 66px;
    margin-bottom: 66px;
    overflow: auto;
}

.customer-testimonials.hide {
    display: none;
}

.customer-testimonial {
    float: left;
    width: 420px;
    margin-right: 80px;
}

.customer-testimonial:last-child {
    margin-right: 0px;
}

.customer-testimonial-company.zapier {
    width: 150px;
    height: 69px;
    background-image: url(../images/zapier.png);
    background-size: 150px 69px;
}

.customer-testimonial-company.kinnek {
    margin-top: 25px;
    width: 206px;
    height: 32px;
    background-image: url(../images/kinnek.png);
    background-size: 206px 32px;
}

.customer-testimonial-company.alan-wang-realty-group {
    margin-top: 25px;
    width: 225px;
    height: 55px;
    background-image: url(../images/alan_wang_realty_group.png);
    background-size: 225px 55px;
}

.customer-testimonial-company.wikibuy {
    margin-top: 25px;
    width: 147px;
    height: 38px;
    background-image: url(../images/wikibuy.png);
    background-size: 147px 38px;
}

.customer-testimonial-company.travelbank {
    margin-top: 25px;
    width: 193px;
    height: 43px;
    background-image: url(../images/travelbank.png);
    background-size: 193px 43px;
}

.customer-testimonial-company.er-publications {
    margin-top: 25px;
    width: 248px;
    height: 28px;
    background-image: url(../images/er_publications.png);
    background-size: 248px 28px;
}

.customer-testimonial-company.katrina {
    margin-top: 25px;
    width: 258px;
    height: 28px;
    background-image: url(../images/katrina_coloso_logo.png);
    background-size: 258px 28px;
}

.customer-testimonial-line {
    width: 84px;
    border-bottom: 3px solid;
}

.customer-testimonial-line.zapier {
    margin-top: 10px;
    border-color: #FF4A00;
}

.customer-testimonial-line.kinnek {
    margin-top: 15px;
    border-color: #0D7CB5;
}

.customer-testimonial-line.alan-wang-realty-group {
    margin-top: 15px;
    border-color: #346799;
}

.customer-testimonial-line.wikibuy {
    margin-top: 10px;
    border-color: #02C14A;
}

.customer-testimonial-line.travelbank {
    margin-top: 10px;
    border-color: #318AFB;
}

.customer-testimonial-line.er-publications {
    margin-top: 15px;
    border-color: #6D99C7;
}

.customer-testimonial-line.katrina {
    margin-top: 12px;
    border-color: #EA3F3A;
}

.customer-testimonial-text {
    margin-top: 24px;
    font-size: 18px;
    line-height: 27px;
}

.customer-testimonial-read-more {
    margin-top: 16px;
    font-size: 18px;
}

.customer-testimonial-read-more.zapier a:link {color: #FF4A00; text-decoration: underline;}
.customer-testimonial-read-more.zapier a:visited {color: #FF4A00; text-decoration: underline;}
.customer-testimonial-read-more.zapier a:hover {color: #FF4A00; text-decoration: underline;}

.customer-testimonial-read-more.katrina a:link {color: #EA3F3A; text-decoration: underline;}
.customer-testimonial-read-more.katrina a:visited {color: #EA3F3A; text-decoration: underline;}
.customer-testimonial-read-more.katrina a:hover {color: #EA3F3A; text-decoration: underline;}

.customer-testimonial-read-more.kinnek a:link {color: #0D7CB5; text-decoration: underline;}
.customer-testimonial-read-more.kinnek a:visited {color: #0D7CB5; text-decoration: underline;}
.customer-testimonial-read-more.kinnek a:hover {color: #0D7CB5; text-decoration: underline;}

.customer-testimonial-read-more.alan-wang-realty-group a:link {color: #346799; text-decoration: underline;}
.customer-testimonial-read-more.alan-wang-realty-group a:visited {color: #346799; text-decoration: underline;}
.customer-testimonial-read-more.alan-wang-realty-group a:hover {color: #346799; text-decoration: underline;}

.customer-testimonial-person {
    margin-top: 24px;
    overflow: auto;
}

.customer-testimonial-person-image {
    float: left;
    width: 60px;
    height: 60px;
    background-size: 60px 60px;
    margin-right: 12px;
}

.customer-testimonial-person-bio {
    margin-top: 5px;
    font-size: 18px;
    color: #666666;
}

.customer-testimonial-person-image.tom {
    background-image: url(../images/tom_harvey_120.png);
}

.customer-testimonial-person-image.karthik {
    background-image: url(../images/karthik_sridharan_120.png);
}

.customer-testimonial-person-image.alan {
    background-image: url(../images/alan_wang_120.png);
}

.customer-testimonial-person-image.adam {
    background-image: url(../images/adam_gauvin_120.png);
}

.customer-testimonial-person-image.barry {
    background-image: url(../images/barry_huang_120.png);
}

.customer-testimonial-person-image.ellane {
    background-image: url(../images/ellane_weedon_120.png);
}

.customer-testimonial-person-image.katrina {
    background-image: url(../images/katrina_coloso_120.png);
}

.customer-testimonials-see-more {
    text-align: center;
    font-size: 15px;
    color: #959595;
    text-decoration: underline;
    cursor: pointer;
}

.customer-testimonials-see-more:hover {
    color: #666666;
}

.case-study-content {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.case-study-logo.zapier {
    width: 150px;
    height: 69px;
    background-image: url(../images/zapier.png);
    background-size: 150px 69px;
}

.case-study-logo.kinnek {
    width: 206px;
    height: 32px;
    background-image: url(../images/kinnek.png);
    background-size: 206px 32px;
}

.case-study-logo.katrina {
    width: 314px;
    height: 34px;
    background-image: url(../images/katrina_coloso_logo.png);
    background-size: 314px 34px;
}

.case-study-logo.alan-wang-realty-group {
    width: 225px;
    height: 55px;
    background-image: url(../images/alan_wang_realty_group.png);
    background-size: 225px 55px;
}

.case-study-line {
    width: 84px;
    border-bottom: 3px solid;
}

.case-study-line.zapier {
    margin-top: 10px;
    border-color: #FF4A00;
}

.case-study-line.kinnek {
    margin-top: 15px;
    border-color: #0D7CB5;
}

.case-study-line.katrina {
    margin-top: 12px;
    border-color: #EA3F3A;
}

.case-study-line.alan-wang-realty-group {
    margin-top: 12px;
    border-color: #346799;
}

.case-study-content h1 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: normal;
    color: #333333;
}

.case-study-content p {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 21px;
    line-height: 32px;
    color: #3333333;
}

.case-study-quote {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    border-left: 3px solid;
    width: 420px;
}

.case-study-quote.zapier {
    border-color: #FF4A00;
}

.case-study-quote.kinnek {
    border-color: #0D7CB5;
}

.case-study-quote.katrina {
    border-color: #EA3F3A;
}

.case-study-quote.alan-wang-realty-group {
    border-color: #346799;
}

.case-study-quote-text {
    font-size: 18px;
    line-height: 27px;
}

.case-study-content.zapier a:link {color: #FF4A00;}
.case-study-content.zapier a:visited {color: #FF4A00;}
.case-study-content.zapier a:hover {color: #FF4A00;}

.case-study-content.kinnek a:link {color: #0D7CB5;}
.case-study-content.kinnek a:visited {color: #0D7CB5;}
.case-study-content.kinnek a:hover {color: #0D7CB5;}

.case-study-content.alan-wang-realty-group a:link {color: #346799;}
.case-study-content.alan-wang-realty-group a:visited {color: #346799;}
.case-study-content.alan-wang-realty-group a:hover {color: #346799;}

#home-hero-image {
    height: 608px;
    width: 893px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/home_hero.png);
    background-size: 893px 608px;
    background-repeat: no-repeat;
}

#home-hero-image2 {
    height: 632px;
    width: 866px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/home_hero2.png);
    background-size: 866px 632px;
    background-repeat: no-repeat;
}

#home-hero-image3 {
    height: 620px;
    width: 900px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/home_hero3.png);
    background-size: 900px 620px;
    background-repeat: no-repeat;
}

#home-hero-image4 {
    width: 980px;
    height: 676px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/home_hero4.png);
    background-size: 980px 676px;
    background-repeat: no-repeat;
}

#home-hero-image5 {
    width: 980px;
    height: 719px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/home_hero5.png);
    background-size: 980px 719px;
    background-repeat: no-repeat;
}

#home-supported-platforms-image {
    height: 186px;
    width: 904px;
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/supported_platforms2.png);
    background-size: 904px 186px;
    background-repeat: no-repeat;
}

#home-supported-platforms-link {
    display: block;
    width: 904px;
    height: 186px;
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
}

#home-integrations-image {
    height: 164px;
    width: 683px;
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/integrations.png);
    background-size: 683px 164px;
    background-repeat: no-repeat;
}

#home-integrations {
    width: 980px;
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

.home-integration-link {
    display: block;
    float: left;
    padding-right: 76px;
}

.home-integration-link:last-child {
    padding-right: 0px;
}

#home-scenarios-image {
    height: 179px;
    width: 933px;
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/home_scenarios@2x.png);
    background-size: 933px 179px;
    background-repeat: no-repeat;
}

#enticer-description {
    text-align: center;
    font-size: 17px;    
    color: #999999;
}

#enticer-title {
    margin-top: 8px;
    text-align: center;
    font-weight: bold;
    font-size: 21px;
}

#enticer-authors {
    text-align: center;
    color: #666666;
    font-size: 17px;
}

#index-actions-box {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 340px;
    padding: 15px;
    text-align: center;
}

#index-actions-box.enticer {
    margin-top: 15px;
}

#subscribe-label {
    font-size: 18px;
}

#subscribe-email {
    width: 320px;
    margin-top: 15px;
}

a.index-signup-button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: 15px;
    background-color: #E23030;
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border-radius: 2px;
    padding: 12px;
    width: 316px;
    box-sizing: content-box;
    border: 0;
    display: block;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    outline: none;
    -webkit-appearance: none;
}

a.index-signup-button:last-child {
    margin-bottom: 0px;
}

a.index-signup-button:hover {
    background-color: #E22020;
    background: -webkit-linear-gradient(#E23030, #E22020); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#E23030, #E22020); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#E23030, #E22020); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#E23030, #E22020); /* Standard syntax */
}

a.index-signup-button:link {text-decoration: none;}
a.index-signup-button:visited {text-decoration: none;}
a.index-signup-button:hover {text-decoration: none;}

#invite-team-more-fields {
    display: none;
}

a#invite-team-show-more {
    display: block;
    margin-left: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #666666;
    text-decoration: underline;
}

#invite-team-message {
    border-top: 1px solid #ECECEC;
    margin-left: -20px;
    margin-right: -20px;
    padding: 20px 20px 0px 20px;
}

#invite-team-suggestions-message {
    display: none;
    padding: 20px 20px 0px 20px;
}

#invite-team-suggestions-message-show {
    display: block;
    padding-top: 15px;
    text-align: center;
    text-decoration: underline;
    font-size: 15px;
    color: #666666;
}

.onboarding-actions-invite {
    padding-right: 20px;
    padding-bottom: 30px;
}

.invite-user-list {
    height: 345px;
    overflow: auto;
}

.invite-user {
    overflow: hidden;
    padding-top: 15px;
    padding-bottom: 15px;
    height: 38px;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 1px solid #ECECEC;
    cursor: pointer;
}

.invite-user-checkbox {
    float: left;
    width: 15px;
    height: 15px;
    margin-top: 10px;
    cursor: pointer;
}

.invite-user-content {
    padding-left: 30px;
}

.invite-user-name {
    font-size: 15px;
    font-weight: bold;
}

.invite-user-email {
    padding-top: 3px;
    font-size: 15px;
    color: #666666;
}

#admin-signup-box {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 235px;
}

#admin-signup-email, #admin-signup-password, #admin-signup-profile-image-url, #admin-signup-invite-code, #admin-signup-first-name, #admin-signup-last-name {
    width: 225px;
    padding: 4px;
    margin: 3px 0 3px 0;
    font-size: 13px;
    outline: none;
    border: 1px solid #E6E0E0;
    border-radius: 0;
    -webkit-appearance: none;
}

#admin-signup-name {
    margin-top: 10px;
    overflow: auto;
}

#admin-signup-first-name, #admin-signup-last-name {
    float: left;
    width: 104px;
}

#admin-signup-last-name {
    margin-left: 7px;
}

#admin-signup-button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-top: 3px;
    width: 235px;
}

#admin-signup-terms, #login-terms, #signup-terms {
    position: absolute;
    bottom: 20px;
    left: 0px;
    right: 0px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#admin-signup-terms a:link, #login-terms a:link, #signup-terms a:link {color: #959595; text-decoration: none}
#admin-signup-terms a:visited, #login-terms a:visited, #signup-terms a:visited {color: #959595; text-decoration: none}
#admin-signup-terms a:hover, #login-terms a:hover, #signup-terms a:hover {color: #959595; text-decoration: underline}

#signup-link, #login-link {
    display: block;
    position:absolute;
    top: 12px;
    right: 12px;
    width: 80px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 2px;
    border: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #5585D9;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}

#signup-link:hover, #login-link:hover {
    background-color: #5585D9;
    background: -webkit-linear-gradient(#5585D9, #4D78C3); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#5585D9, #4D78C3); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#5585D9, #4D78C3); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#5585D9, #4D78C3); /* Standard syntax */
    text-decoration: none;
}

/* staff pages */
#staff {
    background-color: #454545;
}

#staff-sidebar {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 198px;
    height: 1800px;
    background-color: #454545;
    color: #FFFFFF;
    box-shadow: inset -1px 0px 8px 0px rgba(0,0,0,0.50);
}

#staff-sidebar-header {
    margin: 12px 11px 15px 11px;
    height: 16px;
    width: 54px;

    background-image: url(../images/themes/scarlet/notejoy_logo3_sidebar.svg);
    background-size: 54px 16px;
    background-repeat: no-repeat;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

a.staff-sidebar-item {
    display: block;
    padding: 10px 12px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    border-left: 7px solid #454545;
    cursor: pointer;
}

a.staff-sidebar-item:hover {
    background-color: #3C3C3C;
    border-left: 7px solid #333333;
    text-decoration: none;
}

a.staff-sidebar-item.selected {
    background-color: #333333;
    border-left: 7px solid #E23030;
}

#staff-content {
    margin-left: 198px;
    padding: 15px;
    background-color: #FFFFFF;
}

#staff-content h1 {
    font-weight: bold;
    font-size: 17px;
    margin: 0 0 10px 0;
}

.simple-table {
    border-collapse: collapse;
    border: 1px solid #ECECEC;
}

.simple-table th {
    font-weight: bold;
    border: 1px solid #ECECEC;
    padding: 4px 8px;
    text-align: left;
}

.simple-table td {
    border: 1px solid #ECECEC;
    padding: 4px 8px;
}

#staff-content table {
    border-collapse: collapse;
    border: 1px solid #ECECEC;
}

#staff-content th {
    font-weight: bold;
    border: 1px solid #ECECEC;
    padding: 8px;
    text-align: left;
}

#staff-content td {
    border: 1px solid #ECECEC;
    padding: 8px;
}

.staff-last-updated {
    color: #666666;
}

.staff-table-container {
    margin-top: 10px;
    margin-bottom: 10px;
}

#staff-content table.staff-table-summary {
    border-left: 2px solid #E23030;
}

.staff-submit {
    margin-top: 15px;
    background-color: #E23030;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    border-radius: 2px;
    padding: 8px;
    width: 150px;
    border: 0;
    display: block;
    cursor: pointer;
    -webkit-appearance: none;
}

.staff-status {
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

.small-number {
    font-size: 11px;
    margin-top: 5px;
    color: #666;
}

.staff-input-label {
    font-size: 13px;
}

.staff-input {
    width: 400px;
    font-size: 13px;
    padding: 4px;
    -webkit-appearance: none;
    border: 1px solid #DDDDDD;
}

.staff-textarea {
    width: 400px;
    height: 125px;
    font-size: 13px;
    padding: 4px;
    -webkit-appearance: none;
    border: 1px solid #DDDDDD;
}

.staff-submit {
    margin-top: 15px;
    background-color: #E23030;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    border-radius: 2px;
    padding: 8px;
    width: 125px;
    border: 0;
    display: block;
    cursor: pointer;
    -webkit-appearance: none;
}

#marketing-notification-message-input {
    width: 300px;
}

#marketing-notification-url-input {
    width: 300px;
}

.marketing-notification-explainer {
    margin-top: 15px;
}

#marketing-notification-submit {
    margin-top: 15px;
    background-color: #E23030;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    border-radius: 2px;
    padding: 8px;
    width: 150px;
    border: 0;
    display: block;
    cursor: pointer;
    -webkit-appearance: none;
}

#marketing-notification-status {
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: bold;
}

#releases {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

#releases-header {
    margin-top: 25px;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 24px;
}

#releases-header a:link {color: #333333; text-decoration: none}
#releases-header a:visited {color: #333333; text-decoration: none}
#releases-header a:hover {color: #333333; text-decoration: underline}

.release-note {
    margin-bottom: 40px;
}

.release-note-title {
    font-size: 21px;
    font-weight: bold;
}

.release-note-byline {
    margin-top: 5px;
    font-size: 14px;
    color: #666666;
}

.release-note-body {
    font-size: 16px;
    line-height: 25px;
    margin-top: 15px;
}

.release-note ul {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
}

#release-note-not-found {
    margin-top: 40px;
    font-size: 20px;
    text-align: center;
}

.releases-more-title {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.releases-more-item {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 25px;
}

.releases-more-item-date {
    font-size: 12px;
    color: #666666;
}

#downloads-header, #contact-header, #pricing-header {
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}

#downloads-image {
    margin-left: auto;
    margin-right: auto;
    height: 349px;
    width: 512px;
    background-image: url(../images/apps@2x.png);
    background-size: 512px 349px;
    background-repeat: no-repeat;
}

#web-clipper-image {
    margin-left: auto;
    margin-right: auto;
    width: 640px;
    height: 400px;
    background-image: url(../images/web_clipper2.png);
    background-size: 640px 400px;
    background-repeat: no-repeat;
}

#downloads-buttons, #web-clipper-buttons {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 350px;
}

#contact {
    margin-bottom: 150px;
    margin-left: auto;
    margin-right: auto;
    width: 400px; /* replicated here to avoid Grammarly breaking form layout */
}

#contact-form {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 400px;
}

.contact-textarea {
    width: 380px;
    height: 180px;
    padding: 9px;
    margin: 5px 0 5px 0;
    font-size: 18px;
    outline: none;
    border: 1px solid #ECECEC;
    border-radius: 0;
    -webkit-appearance: none;
}

.contact-textarea:focus {
    box-shadow: inset 0 0 0 1pt #DDDDDD;
}

#contact-submit {
    display: block;
    margin-top: 15px;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #FFFFFF;
    width: 400px;
    border-radius: 24px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#contact-submit:hover {
    text-decoration: none;
}

#contact-feature-request {
    margin-top: 30px;
    text-align: center;
    color: #666666;
    font-size: 14px;
}

a#contact-feature-request-action {
    color: #666666;
    text-decoration: underline;
}

a#contact-feature-request-action:hover {
    color: #333333;
    text-decoration: underline;
}

#contact-status {
    color: #E23030;
    margin-top: 20px;
    font-size: 19px;
    text-align: center;
}

#request-demo {
    width: 650px;
    margin-left: auto;
    margin-right: auto;
}

#request-demo-title {
    font-size: 21px;
    font-weight: bold;
}

#request-demo-description {
    font-size: 17px;
    line-height: 26px;
}

#request-demo-description p {
    margin-top: 20px;
    margin-bottom: 20px;
}

#request-demo-form {
    margin-top: 20px;
    width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.request-demo-input {
    width: 630px;
    height: auto;
    padding: 9px;
    margin: 5px 0 5px 0;
    font-size: 18px;
    outline: none;
    border: 1px solid #ECECEC;
    border-radius: 0;
    -webkit-appearance: none;
}

.request-demo-select {
    box-sizing: content-box;
    width: 630px;
    padding: 9px;
    margin: 5px 0 5px 0;
    font-size: 18px;
    outline: none;
    border: 1px solid #ECECEC;
    border-radius: 0;
    -webkit-appearance: none;
    background-color: #FFFFFF;
    cursor: pointer;
    background-image: url(../images/down_arrow@2x.png);
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px 10px;
}

.request-demo-textarea {
    width: 630px;
    height: 150px;
    padding: 9px;
    margin: 5px 0 5px 0;
    font-size: 18px;
    outline: none;
    border: 1px solid #ECECEC;
    border-radius: 0;
    -webkit-appearance: none;
}

.request-demo-input:focus, .request-demo-select:focus, .request-demo-textarea:focus {
    box-shadow: inset 0 0 0 1pt #DDDDDD;
}

#request-demo-submit {
    display: block;
    margin-top: 15px;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #FFFFFF;
    width: 650px;
    border-radius: 24px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#request-demo-submit:hover {
    text-decoration: none;
}

#request-demo-status {
    color: #E23030;
    margin-top: 20px;
    font-size: 19px;
    text-align: center;
}

a.downloads-button, a.web-clipper-button {
    display: block;
    margin-top: 15px;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 18px;
    border-radius: 24px;
    font-weight: bold;
    text-align: center;
    color: #FFFFFF;
    width: 350px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a.downloads-button:hover, a.web-clipper-button:hover {
    text-decoration: none;
}

#about-text {
    font-size: 18px;
    line-height: 27px;
    color: #666666;
}

#about-founders {
    overflow: auto;
}

.about-founder {
    float: left;
    width: 227px;
    margin-right: 160px;
}

.about-founder:last-child {
    margin-right: 0;
}

#about-sachin-headshot {
    display: block;
    height: 198px;
    width: 198px;
    margin-top: 1px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/sachin_headshot2.png);
    background-size: 198px 198px;
    background-repeat: no-repeat;
}

#about-sachin-headshot:hover {
    margin-top: 0px;
    padding-bottom: 1px;
}

#about-ada-headshot {
    display: block;
    height: 198px;
    width: 198px;
    margin-top: 1px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/ada_headshot2.png);
    background-size: 198px 198px;
    background-repeat: no-repeat;
}

#about-ada-headshot:hover {
    margin-top: 0px;
    padding-bottom: 1px;
}

.about-founder-name {
    margin-top: 25px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.about-founder-title {
    font-size: 18px;
    text-align: center;
}

.about-founder-bio {
    margin-top: 25px;
    font-size: 16px;
    line-height: 22px;
    color: #666666;
}

#unsubscribe {
    margin-bottom: 150px;
}

#unsubscribe-status {
    width: 230px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    background-color: #02B875;
    border-radius: 2px;
    padding: 8px;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
}

#unsubscribe-box {
    width: 480px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ECECEC;
    border-radius: 2px;
}

#unsubscribe-header {
    padding: 12px 20px;
    border-bottom: 1px solid #ECECEC;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
}

#unsubscribe-body {
    padding: 20px 20px;
    font-size: 16px;
}

#unsubscribe-email-type {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
}

#unsubscribe-email {
    font-size: 16px;
    width: 420px;
    padding: 9px;
    border: 1px solid #ECECEC;
}

#unsubscribe-actions {
    margin-top: 20px;
    overflow: auto;
}

#unsubscribe-button {
    float: right;
    background-color: #E23030;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    border-radius: 2px;
    padding: 12px;
    width: 145px;
    border-radius: 23px;
    border: 0;
    display: block;
    cursor: pointer;
    -webkit-appearance: none;
    text-align: center;
}

#unsubscribe-button:hover {
    background-color: #E22020;
    background: -webkit-linear-gradient(#E23030, #E22020); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#E23030, #E22020); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#E23030, #E22020); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#E23030, #E22020); /* Standard syntax */
}

#unsubscribe-settings {
    float: right;
    padding-right: 20px;
    padding-top: 15px;
    font-size: 14px;
}

#unsubscribe-settings a:link {color: #333333; text-decoration: none}
#unsubscribe-settings a:visited {color: #333333; text-decoration: none}
#unsubscribe-settings a:hover {color: #333333; text-decoration: underline}

.onboarding-box {
    width: 480px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ECECEC;
    border-radius: 2px;
}

.onboarding-header {
    padding: 12px 20px;
    border-bottom: 1px solid #ECECEC;
    overflow: auto;
}

.onboarding-header-title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
}

.onboarding-header-details {
    padding-top: 7px;
    font-size: 13px;
    color: #959595;
}

.onboarding-highlight {
    font-weight: bold;
}

.onboarding-body {
    padding: 30px 20px 30px 20px;
}

#confirm-email-description {
    font-size: 17px;
}

#confirm-email-action {
    display: block;
    font-size: 17px;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
    border: 1px solid #ECECEC;
    border-radius: 22px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: #333333;
    cursor: pointer;
}

#library-name {
    font-size: 18px;
    width: 420px;
    padding: 9px;
    border: 1px solid #ECECEC;
}

#library-name:focus {
    outline: 1px solid rgb(59, 153, 252);
}

#domain-sharing {
    margin-top: 30px;
    margin-bottom: 30px;
    color: #666666;
}

#domain-sharing-permission-select {
    display: inline-block;
    margin-left: 3px;
    margin-right: 3px;
    padding-left: 3px;
    padding-right: 5px;
    border: none;
    outline: none;
    background-color: #FFFFFF;
    -webkit-appearance: none;
    font-size: 13px;
    font-weight: bold;
    color: #666666;
    background-image: url(../images/down_arrow@2x.png);
    background-size: 10px 7px;
    background-position: right 3px top 5px;
    background-repeat: no-repeat;
    width: 105px;
    border-bottom: 2px solid #ECECEC;
    border-radius: 0px;
    cursor: pointer;
}

.onboarding-name {
    overflow: auto;
    margin-bottom: 20px;
}

.onboarding-first-name {
    float: left;
    display: inline-block;
    width: 195px;
    font-size: 18px;
    padding: 9px;
    border: 1px solid #ECECEC;
}

.onboarding-last-name {
    float: right;
    width: 192px;
    font-size: 18px;
    padding: 9px;
    border: 1px solid #ECECEC;
}

.onboarding-field {
    display: block;
    font-size: 18px;
    width: 420px;
    padding: 9px;
    margin-bottom: 20px;
    border: 1px solid #ECECEC;
}

.onboarding-textarea {
    display: block;
    font-size: 18px;
    width: 420px;
    height: 60px;
    padding: 9px;
    margin-bottom: 20px;
    border: 1px solid #ECECEC;
}

.onboarding-first-name:focus, .onboarding-last-name:focus, .onboarding-field:focus, .onboarding-textarea:focus {
    outline: 1px solid rgb(59, 153, 252);
}

.onboarding-input-helper-text {
    padding-top: 8px;
    padding-left: 8px;
    font-size: 13px;
    color: #959595;
}

.onboarding-actions {
    margin-top: 30px;
    overflow: auto;
}

.onboarding-skip {
    float: right;
    font-size: 15px;
    padding-right: 30px;
    padding-top: 13px;
}

a.onboarding-skip:link {color: #666666;; text-decoration: underline}
a.onboarding-skip:visited {color: #666666; text-decoration: underline}
a.onboarding-skip:hover {color: #666666; text-decoration: underline}

.select-all {
    float: left;
    font-size: 15px;
    margin-left: 20px;
    margin-top: 13px;
    color: #666666;
    cursor: pointer;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.select-all:hover {
    color: #333333;
}

.select-all-checkbox {
    height: 15px;
    width: 15px;
    cursor: pointer;
}

.onboarding-primary-button {
    float: right;
    background-color: #E23030;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    border-radius: 2px;
    padding: 12px;
    width: 132px;
    border-radius: 23px;
    border: 0;
    display: block;
    cursor: pointer;
    -webkit-appearance: none;
}

.onboarding-primary-button:hover {
    background-color: #E22020;
    background: -webkit-linear-gradient(#E23030, #E22020); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#E23030, #E22020); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#E23030, #E22020); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#E23030, #E22020); /* Standard syntax */
}

.onboarding-primary-button:focus {
    outline: none;
    background-color: #E22020;
    background: -webkit-linear-gradient(#E23030, #E22020); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#E23030, #E22020); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#E23030, #E22020); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#E23030, #E22020); /* Standard syntax */
}

.onboarding-status {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
    color: #E23030;
}

#invite {
    width: 480px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ECECEC;
    border-radius: 2px;
}

#invite-header {
    padding: 12px;
    border-bottom: 1px solid #ECECEC;
    overflow: auto;
}

#invite-header-profile-image-wrapper {
    float: left;
    width: 40px;
    height: 40px;
}

#invite-header-profile-image {
    border-radius: 50%;
}

#invite-header-details {
    padding-left: 52px;
    font-size: 15px;
}

#invite-body {
    padding: 30px 20px 30px 20px;
}

#invite-input-name {
    overflow: auto;
    margin-bottom: 20px;
}

#invite-input-first-name {
    float: left;
    display: inline-block;
    width: 195px;
    font-size: 18px;
    padding: 9px;
    border: 1px solid #ECECEC;
}

#invite-input-last-name {
    float: right;
    width: 192px;
    font-size: 18px;
    padding: 9px;
    border: 1px solid #ECECEC;
}

#invite-input-password {
    font-size: 18px;
    width: 420px;
    padding: 9px;
    border: 1px solid #ECECEC;
    margin-bottom: 30px;
}

#invite-input-first-name:focus, #invite-input-last-name:focus, #invite-input-password:focus {
    outline: 1px solid rgb(59, 153, 252);
}

#invite-or {
    margin-top: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid #ECECEC;
    line-height: 1px;
    text-align: center;
}

#invite-or-text {
    font-size: 13px;
    color: #666666;
    padding-left: 18px;
    padding-right: 18px;
    background-color: #FFFFFF;
}

#invite-google-signup-button {
    width: 350px;
    height: 45px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/google_signup2@2x.png);
    background-repeat: no-repeat;
    background-size: 350px 45px;
    cursor: pointer;
}

#invite-google-signup-button:hover {
    background-image: url(../images/google_signup_hover2@2x.png);
}

#invite-microsoft-signup-button {
    width: 350px;
    height: 45px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/microsoft_signup@2x.png);
    background-repeat: no-repeat;
    background-size: 350px 45px;
    cursor: pointer;
}

#invite-microsoft-signup-button:hover {
    background-image: url(../images/microsoft_signup_hover@2x.png);
}

#invite-signup-button, #create-account-signup-button {
    background-color: #E23030;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    border-radius: 23px;
    padding: 12px;
    width: 132px;
    border: 0;
    display: block;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    -webkit-appearance: none;
}

#invite-signup-button:hover, #create-account-signup-button:hover {
    background-color: #E22020;
    background: -webkit-linear-gradient(#E23030, #E22020); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#E23030, #E22020); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#E23030, #E22020); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#E23030, #E22020); /* Standard syntax */
}

#invite-status {
    margin-top: 30px;
    font-size: 16px;
    text-align: center;
    color: #E23030;
}

#profile-image-status {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    background-color: #02B875;
    border-radius: 2px;
    padding: 8px;
    font-size: 16px;
    text-align: center;
    color: #FFFFFF;
}

#profile-image-upload {
    width: 440px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ECECEC;
    border-radius: 2px;
}

#profile-image-upload-header {
    padding: 12px;
    font-weight: bold;
    font-size: 16px;
    border-bottom: 1px solid #ECECEC;
}

#profile-image-upload-body {
    padding: 30px 40px 30px 40px;
}

#profile-image-upload-methods {
    overflow: auto;
}

#profile-image-upload-methods-upload {
    float: left;
    width: 164px;
    height: 139px;
    border: 3px dotted #ECECEC;
    text-align: center;
    padding-top: 55px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 22px;
    color: #999999;
    cursor: pointer;
    margin-right: 40px;
}

#profile-image-upload-file {
    display: none;
}

#profile-image-upload-methods-upload:hover {
    color: #333333;
    border-color: #CCCCCC;
}

#profile-image-upload-buttons {
    float: left;
    width: 200px;
}

#profile-image-upload-button {
    width: 129px;
    height: 40px;
    border-radius: 20px;
    margin-bottom: 20px;
    background-image: url(../images/upload_button.svg);
    background-repeat: no-repeat;
    cursor: pointer;
}

#profile-image-upload-button-linkedin {
    width: 129px;
    height: 40px;
    margin-bottom: 20px;
    background-image: url(../images/linkedin_button.svg);
    background-repeat: no-repeat;
    cursor: pointer;
}

#profile-image-upload-button-facebook {
    width: 129px;
    height: 40px;
    background-image: url(../images/facebook_button.svg);
    background-repeat: no-repeat;
    cursor: pointer;
}

#profile-image-upload-preview-wrapper {
    float: right;
    margin-right: 10px;
    width: 150px;
}

#profile-image-upload-preview-text {
    height: 90px;
    width: 150px;
    border-radius: 50%;
    border: 3px dotted #ECECEC;
    padding-top: 60px;
    color: #CCCCCC;
    font-size: 16px;
    text-align: center;
}

#profile-image-upload-preview {
    height: 150px;
    width: 150px;
    border-radius: 50%;
}

#profile-image-upload-body-main {
    overflow: auto;
}

#profile-image-upload-actions {
    margin-top: 25px;
    text-align: center;
}

#profile-image-redirect-button {
    margin-top: 10px;
    font-size: 16px;
    color: #666666;
    text-decoration: underline;
}

#terms, #privacy, #help, #about {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#help {
    font-size: 16px;
    line-height: 25px;
}

#help ul {
    color: #666666;
}

#terms h1, #privacy h1, #help h1, #about h1 {
    margin-top: 30px;
    margin-bottom: 25px;
    font-weight: bold;
    font-size: 24px;
}

#terms h2, #privacy h2, #help h2 {
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 21px;
    font-weight: bold;
}

#terms h3, #privacy h3, #help h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 19px;
    font-weight: bold;
}

#terms p, #privacy p, #privacy ul, #privacy ol {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 25px;
    color: #666666;
}

#help .question {
    margin-top: 20px;
    font-weight: bold;
    font-size: 18px;
}

#desktop-login-drag {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    -webkit-app-region: drag;
}

#desktop-login {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: stretch;
}

#tour {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;    
}

#tour-skip {
    float: left;
    margin-top: 11px;
    font-size: 15px;
    margin-right: 30px;
    color: #959595;
    text-decoration: none;
    cursor: pointer;
}

#tour-skip:hover {
    text-decoration: underline;
}

#tour-continue {
    float: left;
    padding: 10px 30px 10px 15px;
    border-radius: 19px;
    font-size: 16px;
    color: #FFFFFF;
    background-image: url(../images/right_arrow.svg);
    background-size: 17px 17px;
    background-position: right 6px top 12px;
    background-repeat: no-repeat;
}

#tour-continue:hover {
    background-color: #E22020;
    color: #FFFFFF;
    text-decoration: none;
}

#tour .carousel .carousel-item {
    height: 800px !important;
}

#tour .indicators {
    position: absolute;
    top: 80px;
    margin-left: auto;
    margin-right: auto;
}

#tour .indicator-item {
    background-color: #D8D8D8;
    cursor: default;
}

#tour .indicator-item.active {
    background-color: #5585D9;
}

#google-drive-integration-image {
    width: 340px;
    height: 207px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/google_drive_integration_title2@2x.png);
    background-size: 340px 207px;
}

#microsoft-office-integration-image {
    width: 351px;
    height: 208px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/microsoft_office_integration_title2@2x.png);
    background-size: 351px 208px;
}

#slack-integration-image {
    width: 336px;
    height: 175px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/slack_integration_title4@2x.png);
    background-size: 336px 175px;
}

#trello-integration-image {
    width: 342px;
    height: 180px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/trello_integration_title2@2x.png);
    background-size: 342px 180px;
}

#trello-integration-instructions {
    width: 600px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    border-top: 3px solid #E23030;
    background-color: #FCEAEA;
    font-size: 22px;
    color: #333333;
    line-height: 33px;
}

#trello-integration-instructions .title {
    font-weight: bold;
    margin-bottom: 8px;
}

#hubspot-integration-image {
    width: 342px;
    height: 181px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/hubspot_integration_title2@2x.png);
    background-size: 342px 181px;
}

#gmail-integration-image {
    width: 354px;
    height: 170px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/gmail_integration_title2@2x.png);
    background-size: 354px 170px;
}

#zoom-integration-image {
    width: 340px;
    height: 181px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/zoom_integration@2x.png);
    background-size: 340px 181px;
}

#integration-tagline {
    margin-top: 40px;
    font-size: 22px;
    color: #666666;
    text-align: center;
}

a.integration-button {
    display: block;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 11px;
    padding-bottom: 11px;
    width: 196px;
    border-radius: 22px;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
}

a.integration-button:hover {
    text-decoration: none;
}

.integration-feature {
    margin-top: 110px;
    margin-bottom: 110px;
    width: 980px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

.integration-feature.google-drive-login {
    width: 831px;
}

.integration-feature.google-drive-import {
    width: 900px;
}

.integration-feature.google-drive-attach {
    width: 955px;
}

.integration-feature.google-drive-export {
    width: 921px;
}

.integration-feature.microsoft-office-import {
    width: 900px;
}

.integration-feature.microsoft-office-viewer {
    width: 955px;
}

.integration-feature.slack-post {
    width: 797px;
}

.integration-feature.slack-previews {
    width: 967px;
}

.integration-feature.slack-activity {
    width: 967px;
}

.integration-feature.slack-grab {
    width: 831px;
}

.integration-feature.slack-notifications {
    width: 967px;
}

.integration-feature.slack-search {
    width: 967px;
}

.integration-feature.trello-create {
    width: 811px;
}

.integration-feature.hubspot-card {
    width: 811px;
}

.integration-feature.hubspot-contact {
    width: 811px;
}

.integration-feature.hubspot-sidebar {
    width: 809px;
}

.integration-feature-image {
    float: left;
}

.integration-feature.google-drive-login .integration-feature-image {
    width: 374px;
    height: 270px;
    background-image: url(../images/google_drive_integration_login.png);
    background-size: 374px 270px;
    border: 1px solid #ECECEC;
}

.integration-feature.google-drive-import .integration-feature-image {
    width: 443px;
    height: 477px;
    background-image: url(../images/google_drive_integration_import.png);
    background-size: 443px 477px;
    border: 1px solid #ECECEC;
}

.integration-feature.google-drive-attach .integration-feature-image {
    width: 500px;
    height: 372px;
    background-image: url(../images/google_drive_integration_attach.png);
    background-size: 500px 372px;
}

.integration-feature.google-drive-export .integration-feature-image {
    width: 466px;
    height: 316px;
    background-image: url(../images/google_drive_integration_export.png);
    background-size: 466px 316px;
}

.integration-feature.microsoft-office-import .integration-feature-image {
    width: 443px;
    height: 477px;
    background-image: url(../images/microsoft_office_integration_import.png);
    background-size: 443px 477px;
    border: 1px solid #ECECEC;
}

.integration-feature.microsoft-office-upload .integration-feature-image {
    width: 525px;
    height: 297px;
    background-image: url(../images/microsoft_office_integration_upload.png);
    background-size: 525px 297px;
}

.integration-feature.microsoft-office-viewer .integration-feature-image {
    width: 500px;
    height: 391px;
    background-image: url(../images/microsoft_office_integration_viewer.png);
    background-size: 500px 391px;
}

.integration-feature.slack-post .integration-feature-image {
    width: 342px;
    height: 347px;
    background-image: url(../images/slack_integration_post.png);
    background-size: 342px 347px;
}

.integration-feature.slack-previews .integration-feature-image {
    width: 512px;
    height: 336px;
    background-image: url(../images/slack_integration_previews.png);
    background-size: 512px 336px;
}

.integration-feature.slack-activity .integration-feature-image {
    width: 512px;
    height: 288px;
    background-image: url(../images/slack_integration_activity.png);
    background-size: 512px 288px;
}

.integration-feature.slack-grab .integration-feature-image {
    width: 376px;
    height: 216px;
    background-image: url(../images/slack_integration_grab.png);
    background-size: 376px 216px;
}

.integration-feature.slack-notifications .integration-feature-image {
    width: 512px;
    height: 216px;
    background-image: url(../images/slack_integration_notifications.png);
    background-size: 512px 216px;
}

.integration-feature.slack-search .integration-feature-image {
    width: 512px;
    height: 216px;
    background-image: url(../images/slack_integration_search.png);
    background-size: 512px 216px;
}

.integration-feature.trello-create .integration-feature-image {
    width: 354px;
    height: 229px;
    background-image: url(../images/trello_integration_create.png);
    background-size: 354px 229px;
    border: 1px solid #DDDDDD;
}

.integration-feature.trello-attachments .integration-feature-image {
    width: 554px;
    height: 253px;
    background-image: url(../images/trello_integration_attachments.png);
    background-size: 554px 253px;
    border: 1px solid #DDDDDD;
}

.integration-feature.trello-viewer .integration-feature-image {
    width: 550px;
    height: 505px;
    background-image: url(../images/trello_integration_viewer.png);
    background-size: 550px 505px;
    border: 1px solid #DDDDDD;
}

.integration-feature.hubspot-card .integration-feature-image {
    width: 354px;
    height: 364px;
    background-image: url(../images/hubspot_integration_card.png);
    background-size: 354px 364px;
    border: 1px solid #DDDDDD;
}

.integration-feature.hubspot-editor .integration-feature-image {
    width: 550px;
    height: 459px;
    background-image: url(../images/hubspot_integration_editor.png);
    background-size: 550px 459px;
    border: 1px solid #DDDDDD;
}

.integration-feature.hubspot-contact .integration-feature-image {
    width: 354px;
    height: 366px;
    background-image: url(../images/hubspot_integration_contact.png);
    background-size: 354px 366px;
    border: 1px solid #DDDDDD;
}

.integration-feature.hubspot-sidebar .integration-feature-image {
    width: 354px;
    height: 494px;
    background-image: url(../images/hubspot_integration_sidebar.png);
    background-size: 354px 494px;
}

.integration-feature-content {
    float: left;
    width: 375px;
    margin-top: 50px;
    margin-left: 40px;
    margin-right: 40px;
}

.integration-feature.google-drive-import .integration-feature-content {
    margin-top: 150px;
}

.integration-feature.google-drive-attach .integration-feature-content {
    margin-top: 100px;
}

.integration-feature.google-drive-export .integration-feature-content {
    margin-top: 100px;
}

.integration-feature.microsoft-office-import .integration-feature-content {
    margin-top: 150px;
}

.integration-feature.microsoft-office-upload .integration-feature-content {
    margin-top: 75px;
}

.integration-feature.microsoft-office-viewer .integration-feature-content {
    margin-top: 125px;
}

.integration-feature.trello-attachments .integration-feature-content {
    margin-top: 65px;
    width: 344px;
}

.integration-feature.trello-viewer .integration-feature-content {
    margin-top: 180px;
    width: 348px;
}

.integration-feature.hubspot-card .integration-feature-content {
    margin-top: 100px;
}

.integration-feature.hubspot-editor .integration-feature-content {
    margin-top: 180px;
    width: 348px;
}

.integration-feature.hubspot-contact .integration-feature-content {
    margin-top: 100px;
}

.integration-feature.hubspot-sidebar .integration-feature-content {
    margin-top: 200px;
}

.integration-feature.slack-post .integration-feature-content {
    margin-top: 100px;
}

.integration-feature.slack-previews .integration-feature-content {
    margin-top: 100px;
}

.integration-feature.slack-activity .integration-feature-content {
    margin-top: 70px;
}

.integration-feature-title {
    font-size: 32px;
    text-align: center;
}

.integration-feature-description {
    margin-top: 15px;
    font-size: 22px;
    color: #666666;
    text-align: center;
}

#integration-notejoy-title {
    margin-top: 50px;
    font-size: 36px;
    text-align: center;
}

#integration-notejoy-subtitle {
    margin-top: 18px;
    font-size: 22px;
    color: #666666;
    text-align: center;
}

#integration-notejoy-image {
    height: 620px;
    width: 900px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/home_hero3.png);
    background-size: 900px 620px;
    background-repeat: no-repeat;
}

#integration-gmail-image {
    height: 824px;
    width: 900px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/gmail_integration2.png);
    background-size: 900px 824px;
    background-repeat: no-repeat;
}

#integration-zoom-image1 {
    height: 585px;
    width: 900px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/zoom_integration1.png);
    background-size: 900px 585px;
    background-repeat: no-repeat;
}

#integration-zoom-image2 {
    height: 585px;
    width: 900px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/zoom_integration2.png);
    background-size: 900px 585px;
    background-repeat: no-repeat;
}

#integration-zoom-image3 {
    height: 585px;
    width: 900px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/zoom_integration3.png);
    background-size: 900px 585px;
    background-repeat: no-repeat;
}

#integration-zoom-image4 {
    height: 585px;
    width: 900px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/zoom_integration4.png);
    background-size: 900px 585px;
    background-repeat: no-repeat;
}

#integration-zoom-image5 {
    height: 585px;
    width: 900px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/zoom_integration5.png);
    background-size: 900px 585px;
    background-repeat: no-repeat;
}

#hubspot-integration-error-image {
    width: 341px;
    height: 186px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/hubspot_integration_title@2x.png);
    background-size: 341px 186px;
}

#hubspot-integration-error-description {
    width: 700px;
    margin-top: 50px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
    line-height: 30px;
}

#hubspot-integration-error-action {
    background-color: #E23030;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    border-radius: 2px;
    padding: 12px;
    width: 200px;
    border: 0;
    display: block;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    -webkit-appearance: none;
}

#hubspot-integration-error-action:hover {
    background-color: #E22020;
    background: -webkit-linear-gradient(#E23030, #E22020); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#E23030, #E22020); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#E23030, #E22020); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#E23030, #E22020); /* Standard syntax */
    text-decoration: none;
}

#help-center-header {
    margin-top: -50px;
    width: 100%;
    background-image: linear-gradient(-180deg, rgba(16,134,208,0.65) 0%, #115AD1 100%);
    padding-bottom: 52px;
}

#help-center-header.article {
    padding-top: 20px;
    padding-bottom: 20px;
}

#help-center-header-title {
    padding-top: 34px;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

#help-center-search {
    width: 590px;
    height: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 8px;
    font-size: 20px;
    border: none;
    outline: none;
    border-radius: 8px;
    background-image: url(../images/search@2x.png);
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 20px 20px;
}

#help-center-header-subtext {
    padding-top: 15px;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

#help-center-header-subtext a:link {color: #FFFFFF; text-decoration: none}
#help-center-header-subtext a:visited {color: #FFFFFF; text-decoration: none}
#help-center-header-subtext a:hover {color: #FFFFFF; text-decoration: underline}

#help-center-content {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

.help-center-section {
    padding-top: 40px;
}

.help-center-section-title {
    margin-top: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #ECECEC;
    line-height: 1px;
    height: 1px;
}

.help-center-section-title-text {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    padding-right: 12px;
    background-color: #FFFFFF;
}

.help-center-section-categories {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.help-center-category {
    width: 450px;
}

.help-center-category-title {
    font-size: 18px;
    font-weight: bold;
    padding-top: 35px;
}

.help-center-article {
    padding-top: 15px;
}

.help-center-article-title {
    font-size: 16px;
}

.help-search-result {
    padding-top: 30px;
}

.help-search-result-title {
    font-size: 20px;
}

.help-search-result-details {
    padding-top: 5px;
    font-size: 14px;
    color: #666666;
}

#help-search-no-results {
    padding-top: 30px;
    font-size: 20px;
}

#help-article-wrapper {
    width: 950px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

#help-article-sidebar {
    float: left;
    margin-top: 30px;
    width: 200px;
}

#help-article-sidebar-home {
    font-size: 20px;
    font-weight: bold;
}

#help-article-sidebar-home a {
    color: #333333;
}

#help-article-sidebar-section {
    margin-top: 20px;
    font-size: 15px;
    font-weight: bold;
}

#help-article-sidebar-section a {
    color: #333333;
}

#help-article-sidebar-category {
    margin-top: 18px;
    font-size: 15px;
}

#help-article-sidebar-category a {
    color: #333333;
}

.help-article-sidebar-article {
    margin-top: 15px;
    font-size: 14px;
}

.help-article-sidebar-article.selected {
    font-weight: bold;
}

#help-article {
    padding-left: 250px;
}

.resource {
    margin-left: auto;
    margin-right: auto;
}

#help-article, .resource {
    width: 700px;
    font-size: 16px;
    line-height: 25px;
    color: #333333;
}

#help-article img, .resource img, .release-note img {
    max-width: 700px;
}

#help-article h1, .resource h1, .release-note h1 {
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
}

#help-article h2, .resource h2, .release-note h2 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}

#help-article h3, .resource h3, .release-note h3 {
    margin-top: 18px;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: bold;
}

#help-article h4, .resource h4, .release-note h4 {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: bold;
}

#help-article p, .resource p, .release-note p {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 25px;
}

#help-article-not-found {
    margin-top: 40px;
    font-size: 20px;
    text-align: center;
}

#resource-not-found {
    margin-top: 40px;
    font-size: 20px;
    text-align: center;
}

#security {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#security-header {
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
}

#security-header-title {
    font-size: 42px;
    font-weight: bold;
}

#security-header-description {
    margin-top: 20px;
    font-size: 24px;
    color: #666666;
}

.security-content {
    margin-top: 100px;
    margin-bottom: 100px;
    overflow: auto;
}

.security-item-left {
    float: left;
    width: 425px;
    margin-right: 50px;
}

.security-item-right {
    float: left;
    width: 425px;
}

.security-item-image {
    width: 75px;
    height: 75px;
    background-size: 75px 75px;
}

.security-item-image.encryption {
    background-image: url(../images/security_encryption.svg);
}

.security-item-image.uptime {
    background-image: url(../images/security_uptime.svg);
}

.security-item-image.confidentiality {
    background-image: url(../images/security_confidentiality.svg);
}

.security-item-image.integrity {
    background-image: url(../images/security_integrity.svg);
}

.security-item-image.export {
    background-image: url(../images/security_export.svg);
}

.security-item-image.mfa {
    background-image: url(../images/security_mfa.svg);
}

.security-item-image.pci {
    background-image: url(../images/security_pci.svg);
}

.security-item-title {
    margin-top: 20px;
    font-size: 23px;
    font-weight: bold;
}

.security-item-description {
    margin-top: 15px;
    font-size: 17px;
    line-height: 26px;
    color: #666666;
}

#offline-beta {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#offline-beta-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
}

#offline-beta-description {
    margin-top: 30px;
    font-size: 24px;
    color: #666666;
    text-align: center;
}

#offline-beta-button {
    margin-top: 40px;
    width: 200px;
    height: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
}

#offline-beta-status {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 40px;
    margin-bottom: 100px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #E23030;
}

#refer {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#refer-header {
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: center;
}

#refer-header-title {
    font-size: 42px;
    font-weight: bold;
}

#refer-header-description {
    margin-top: 20px;
    font-size: 24px;
    color: #666666;
}

#refer-link {
    width: 600px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

#refer-get-started {
    display: block;
    width: 250px;
    padding: 12px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 23px;
    font-size: 18px;
    color: white;
    text-align: center;
}

#refer-get-started:hover {
    text-decoration: none;
}

#refer-link-input {
    width: 382px;
    float: left;
    height: 18px;
    padding: 8px;
    border: 1px solid #E3E3E3;
    outline: none;
    font-size: 21px;
}

#refer-link-copy {
    width: 200px;
    float: right;
    height: 36px;
    font-size: 21px;
    outline: none;
}

#refer-link-description {
    padding-top: 12px;
    text-align: center;
    clear: both;
    font-size: 14px;
    color: #666666;
}

#refer-stats {
    width: 600px;
    padding-top: 60px;
    padding-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.refer-stat {
    width: 200px;
    float: left;
    text-align: center;
}

.refer-stat-value {
    font-size: 42px;
    color: #5585D9;
}

.refer-stat-name {
    font-size: 16px;
    color: #666666;
}

#refer-details {
    margin-top: 60px;
    margin-bottom: 60px;
    overflow: auto;
    clear: both;
}

.refer-details-left {
    float: left;
    width: 425px;
    margin-right: 50px;
}

.refer-details-right {
    float: left;
    width: 425px;
}

.refer-details-title {
    margin-top: 20px;
    font-size: 23px;
    font-weight: bold;
}

.refer-details-description {
    margin-top: 15px;
    font-size: 17px;
    line-height: 26px;
    color: #666666;
}

.refer-payout-option {
    font-size: 17px;
    color: #666666;
    margin-top: 8px;
    margin-bottom: 8px;
}

.refer-payout-input {
    width: 250px;
    margin-left: 8px;
    border: 1px solid #E3E3E3;
    padding: 3px 5px;
    font-size: 17px;
    outline: none;
}

.refer-payout-button {
    font-size: 17px;
}

#feature-requests, #feature-request, #add-feature-request {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
}

#feature-requests:after, #feature-request:after {
    display: none;
    content: url(../images/upvote_hover.svg);
}

#add-feature-request {
    margin-bottom: 150px;
}

#feature-requests-header {
    margin-top: 66px;
    margin-bottom: 66px;
}

#feature-requests-header-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
}

#feature-requests-header-description {
    margin-top: 15px;
    text-align: center;
    font-size: 23px;
    color: #666666;
}

#feature-requests-add {
    text-align: right;
}

#feature-requests-add-link {
    font-size: 17px;
}

.feature-requests-section {
    margin-bottom: 20px;
    overflow: auto;
}

.feature-requests-section-title {
    margin-top: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #ECECEC;
    line-height: 1px;
    height: 1px;
}

.feature-requests-section-title-text {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    padding-right: 12px;
    background-color: #FFFFFF;
}

#feature-request-breadcrumb {
    font-size: 19px;
    margin-left: 40px;
    color: #959595;
    margin-bottom: 30px;
}

#feature-request .feature-requests-section-title-text {
    padding-left: 15px;
}

.feature-request-item {
    margin-top: 30px;
    margin-bottom: 30px;
    overflow: auto;
}

.feature-request-item:first-child {
    margin-top: 40px;
}

.feature-request-item-left {
    float: left;
    padding-left: 3px;
    background-color: #FFFFFF;
}

#feature-request-title .feature-request-item-left {
    margin-top: -14px;
}

.feature-request-item-vote-action {
    width: 21px;
    height: 12px;
    background-image: url(../images/upvote.svg);
    background-size: 21px 12px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.feature-request-item-vote-action:hover {
    background-image: url(../images/upvote_hover.svg);
}

.feature-request-item-vote-action.upvoted {
    background-image: url(../images/upvoted.svg);
}

.feature-request-item-vote-action.upvoted:hover {
    background-image: url(../images/upvote.svg);
}

.feature-request-vote-action {
    width: 21px;
    height: 12px;
    background-color: #FFFFFF;
    background-image: url(../images/upvote.svg);
    background-size: 21px 12px;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
}

.feature-request-vote-action:hover {
    background-image: url(../images/upvote_hover.svg);
}

.feature-request-vote-action.upvoted {
    background-image: url(../images/upvoted.svg);
}

.feature-request-vote-action.upvoted:hover {
    background-image: url(../images/upvote.svg);
}

.feature-request-item-votes {
    margin-top: 3px;
    font-size: 15px;
    color: #666666;
    text-align: center;
}

.feature-request-item-content {
    padding-left: 40px;
}

.feature-request-item-name {
    float: left;
    font-size: 21px;
}

.feature-request-item-status {
    float: left;
    margin-left: 10px;
    padding: 4px 8px;
    background-color: #EFEFEF;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
}

.feature-request-status-wrapper {
    padding-right: 12px;
    background-color: #FFFFFF;
}

.feature-request-status {
    padding: 4px 8px;
    background-color: #EFEFEF;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
}

.feature-request-item-status.planned, .feature-request-status.planned {
    background-color: #FCEAEA;
}

.feature-request-item-status.launched, .feature-request-status.launched {
    background-color: #DDE7F7;
}

.feature-request-item-status.in.progress, .feature-request-status.in.progress {
    background-color: #E5F7F1;
}

.feature-request-item-status.beta.available, .feature-request-status.beta.available {
    background-color: #FFF5D9;
}

#feature-request-votes-list {
    margin-top: 35px;
    margin-left: 40px;
    font-size: 17px;
    line-height: 25px;
    color: #666666;
}

#feature-request-description {
    margin-top: 30px;
    margin-left: 40px;
    margin-bottom: 30px;
    font-size: 19px;
    line-height: 29px;
}

.feature-request-divider {
    margin-top: 30px;
    margin-left: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ECECEC;
}

.feature-request-comment {
    margin-left: 40px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.feature-request-comment-body {
    font-size: 17px;
}

.feature-request-comment-details {
    margin-top: 8px;
    font-size: 15px;
    color: #666666;
}

.feature-request-comment-admin {
    margin-left: 5px;
    padding: 4px 8px;
    background-color: #EFEFEF;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
}

.feature-request-comment-delete-form {
    display: inline;
}

.feature-request-comment-delete {
    padding-left: 5px;
    font-size: 13px;
    color: #959595;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
}

.feature-request-comment-delete:hover {
    text-decoration: underline;
}

#feature-request-not-found {
    text-align: center;
    font-size: 19px;
    color: #666666;
}

#feature-request-add-email-vote {
    margin-top: 30px;
    margin-left: 40px;
    margin-bottom: 30px;
}

#feature-request-add-email-vote-input {
    box-sizing: border-box;
    width: 500px;
    height: 38px;
    padding: 8px;
    border: 1px solid #ECECEC;
    font-size: 17px;
    outline: none;
    -webkit-appearance: none;
}

#feature-request-add-email-vote-input:focus {
    box-shadow: inset 0 0 0 1pt #DDDDDD;
}

#feature-request-add-comment {
    margin-top: 30px;
    margin-left: 40px;
    margin-bottom: 30px;
    overflow: auto;
}

#feature-request-add-comment-login-prompt {
    font-size: 17px;
}

#feature-request-add-comment-input {
    float: left;
    box-sizing: border-box;
    width: 500px;
    height: 100px;
    padding: 8px;
    border: 1px solid #ECECEC;
    font-size: 17px;
    outline: none;
    -webkit-appearance: none;
}

#feature-request-add-comment-input:focus {
    box-shadow: inset 0 0 0 1pt #DDDDDD;
}

#feature-request-add-comment-submit, #feature-request-add-email-vote-submit  {
    margin-left: 15px;
    background-color: #E23030;
    width: 135px;
    padding: 8px;
    border-radius: 17px;
    outline: none;
    font-size: 15px;
}

#add-feature-request-name-input {
    display: block;
    box-sizing: border-box;
    margin-top: 35px;
    width: 600px;
    height: 38px;
    padding: 8px;
    border: 1px solid #ECECEC;
    font-size: 17px;
    outline: none;
    -webkit-appearance: none;
}

#add-feature-request-description-input {
    display: block;
    box-sizing: border-box;
    margin-top: 30px;
    width: 600px;
    height: 100px;
    padding: 8px;
    border: 1px solid #ECECEC;
    font-size: 17px;
    outline: none;
    -webkit-appearance: none;
}

#add-feature-request-name-input:focus, #add-feature-request-description-input:focus {
    box-shadow: inset 0 0 0 1pt #DDDDDD;
}

#add-feature-request-status {
    margin-top: 20px;
    font-size: 17px;
    color: #E23030;
}

#add-feature-request-submit {
    margin-top: 30px;
    width: 130px;
    border-radius: 17px;
    padding: 8px;
    font-size: 15px;
    outline: none;
}

#add-feature-request-cancel {
    margin-left: 15px;
    font-size: 15px;
    color: #959595;
}

.promo-image {
    display: block;
    margin-top: -40px;
    margin-left: auto;
    margin-right: auto;
}

.promo-headline {
    margin-top: 20px;
    font-size: 32px;
    text-align: center;
}

.promo-sub-headline {
    margin-top: 18px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 22px;
    color: #666666;
    text-align: center;
}

.promo-box {
    width: 480px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ECECEC;
    border-radius: 2px;
}

.promo-box-header {
    padding: 12px;
    border-bottom: 1px solid #ECECEC;
    overflow: auto;
    font-size: 15px;
}

.promo-box-body {
    padding: 30px 20px 30px 20px;
}

.promo-input-field {
    font-size: 18px;
    width: 420px;
    padding: 9px;
    border: 1px solid #ECECEC;
    margin-bottom: 30px;
}

.promo-input-field:last-child {
    margin-bottom: 0px;
}

.promo-input-field:focus {
    outline: 1px solid rgb(59, 153, 252);
}

.promo-field-container {
    overflow: auto;
    margin-bottom: 30px;
}

.promo-input-field-left {
    float: left;
    display: inline-block;
    width: 195px;
    font-size: 18px;
    padding: 9px;
    border: 1px solid #ECECEC;
}

.promo-input-field-right {
    float: right;
    width: 192px;
    font-size: 18px;
    padding: 9px;
    border: 1px solid #ECECEC;
}

.promo-input-explainer {
    margin-left: 8px;
    margin-top: -20px;
    font-size: 12px;
    color: #959595;
}

#promo-signup-button-container {
    margin-top: 40px;
    margin-bottom: 40px;
}

#promo-signup-button {
    background-color: #E23030;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    border-radius: 2px;
    padding: 12px;
    width: 132px;
    border: 0;
    display: block;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    -webkit-appearance: none;
}

#promo-signup-button:hover {
    background-color: #E22020;
    background: -webkit-linear-gradient(#E23030, #E22020); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#E23030, #E22020); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#E23030, #E22020); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#E23030, #E22020); /* Standard syntax */
}

#promo-or {
    margin-top: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid #ECECEC;
    line-height: 1px;
    text-align: center;
}

#promo-or-text {
    font-size: 13px;
    color: #666666;
    padding-left: 18px;
    padding-right: 18px;
    background-color: #FFFFFF;
}

#promo-google-signup-button {
    width: 350px;
    height: 45px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/google_signup@2x.png);
    background-repeat: no-repeat;
    background-size: 350px 45px;
    cursor: pointer;
}

#promo-google-signup-button:hover {
    background-image: url(../images/google_signup_hover@2x.png);
}

#promo-status {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 40px;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #E23030;
}

#promo-status a {
    text-decoration: underline;
}

#cyber-monday-header-image {
    display: block;
    align: center;
    margin-left: auto;
    margin-right: auto;
}

#cyber-monday-headline {
    width: 700px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

#cyber-monday-headline .emphasize {
    color: #E23030;
}

#cyber-monday-subheadline {
    width: 700px;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    font-size: 21px;
    color: #666666;
    line-height: 32px;
    text-align: center;
}

#cyber-monday-subheadline.cyber-monday-status {
    padding: 12px;
    border-left: 3px solid #FCBD01;
    background-color: #FFF5D9;
}

.cyber-monday-plan {
    width: 900px;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
}

.cyber-monday-plan-header {
    padding-bottom: 5px;
    border-bottom: 1px solid #ECECEC;
    overflow: auto;
}

.cyber-monday-plan-header-name {
    float: left;
    font-size: 24px;
    font-weight: bold;
}

.cyber-monday-plan-header-full-price {
    float: right;
    font-size: 24px;
    color: #AAAAAA;
    text-decoration: line-through;
    padding-right: 30px;
}

.cyber-monday-plan-header-discount-price {
    float: right;
    font-size: 24px;
    font-weight: bold;
    padding-right: 30px;
}

.cyber-monday-plan-header-term {
    font-size: 20px;
    font-weight: normal;
}

.cyber-monday-plan-buy {
    float: right;
    display: block;
    height: 34px;
    line-height: 24px;
    width: 120px;
    color: #FFFFFF;
    font-size: 18px;
    text-align: center;
    background-color: #E23030;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 0;
    border-radius: 16px;
    padding: 4px;
    cursor: pointer;
    font-weight: bold;
    color: #FFFFFF;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    outline: none;
}

.cyber-monday-plan-buy:hover {
    background: -webkit-linear-gradient(#E23030, #E22020); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#E23030, #E22020); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#E23030, #E22020); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#E23030, #E22020); /* Standard syntax */
}

.cyber-monday-plan-sold-out {
    float: right;
    font-size: 24px;
    font-style: italic;
    padding-right: 8px;
    color: #666666;
}

.cyber-monday-plan-features {
    overflow: auto;
}

.cyber-monday-plan-features-column {
    float: left;
    width: 400px;
    margin-right: 100px;
}

.cyber-monday-plan-features-column:last-child {
    margin-right: 0px;
}

.cyber-monday-plan-feature {
    margin-top: 28px;
    margin-bottom: 28px;
    font-size: 21px;
    color: #666666;
    background-image: url(../images/plan_checkmark@2x.png);
    background-size: 20px 15px;
    background-position: 0px 3px;
    background-repeat: no-repeat;
    padding-left: 35px;
}

.cyber-monday-faqs {
    background-color: rgba(236,236,236, .15);
    border-top: 1px solid #ECECEC;
    margin-bottom: -50px;
}

.cyber-monday-faqs-content {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

.cyber-monday-faqs-column {
    float: left;
    width: 400px;
    margin-right: 100px;
}

.cyber-monday-faqs-column:last-child {
    margin-right: 0px;
}

.cyber-monday-faq {
    margin-top: 50px;
    margin-bottom: 50px;
}

.cyber-monday-faq-question {
    font-size: 21px;
    line-height: 32px;
    color: #666666;
    margin-bottom: 12px;
}

.cyber-monday-faq-answer {
    font-size: 18px;
    line-height: 27px;
    color: #959595;
}

#oauth-form {
    width: 540px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
}

#oauth-form-header {
    border-bottom: 1px solid #ECECEC;
    padding: 20px;
    overflow: auto;
}

#oauth-form-header-notejoy-logo {
    float: left;
    width: 40px;
    height: 40px;
    background-image: url(../images/notejoy_logo3_120px.png);
    background-size: 40px 40px;
    background-repeat: no-repeat;
}

#oauth-form-header-user {
    float: right;
}

#oauth-form-header-user-image {
    float: left;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

#oauth-form-header-user-details {
    float: left;
    padding-left: 12px;
}

#oauth-form-header-user-name {
    font-size: 15px;
    font-weight: bold;
}

#oauth-form-header-user-email {
    color: #666666;
}

#oauth-form-header-user-logout {
    display: block;
    color: #666666;
    text-decoration: underline;
    cursor: pointer;
}

#oauth-form-body {
    padding: 20px;
    font-size: 15px;
}

#oauth-form-app-image {
    margin-top: 10px;
    width: 80px;
    height: 80px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#oauth-form-description {
    margin-top: 30px;
    text-align: center;
}

#oauth-form-access-details {
    margin-top: 40px;
}

#oauth-form-body ul {
    margin-top: 24px;
    list-style: none;
}

#oauth-form-body ul li {
    margin-bottom: 16px;
}

#oauth-form-body ul li::before {
    content: "\2022";
    color: #E23030;
    font-size: 17px;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

#oauth-form-actions {
    margin-top: 50px;
    margin-bottom: 10px;
    overflow: auto;
}

#oauth-form-cancel {
    float: left;
    margin-top: 8px;
    color: #959595;
    text-decoration: underline;
    cursor: pointer;
}

#oauth-form-cancel:hover {
    color: #333333;
}

#oauth-form-submit {
    float: right;
    display: block;
    height: 34px;
    line-height: 24px;
    width: 140px;
    color: #FFFFFF;
    font-size: 18px;
    text-align: center;
    background-color: #E23030;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 0;
    border-radius: 0;
    padding: 4px;
    cursor: pointer;
    font-weight: bold;
    color: #FFFFFF;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    outline: none;
}

#oauth-form-submit:hover {
    background: -webkit-linear-gradient(#E23030, #E22020); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#E23030, #E22020); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#E23030, #E22020); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#E23030, #E22020); /* Standard syntax */
}

#oauth-form-login-actions {
    margin-top: 60px;
    margin-bottom: 80px;
    width: 310px;
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
}

#oauth-form-login {
    float: left;
    display: block;
    height: 34px;
    line-height: 32px;
    width: 137px;
    color: #FFFFFF;
    font-size: 18px;
    text-align: center;
    background-color: #5585D9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 0;
    border-radius: 0;
    padding: 4px;
    cursor: pointer;
    font-weight: bold;
    color: #FFFFFF;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    outline: none;
    margin-right: 20px;
}

#oauth-form-login:hover {
    background: -webkit-linear-gradient(#5585D9, #4285F4); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#5585D9, #4285F4); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#5585D9, #4285F4); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#5585D9, #4285F4); /* Standard syntax */
    text-decoration: none;
}

#oauth-form-signup {
    float: right;
    display: block;
    height: 34px;
    line-height: 32px;
    width: 137px;
    color: #FFFFFF;
    font-size: 18px;
    text-align: center;
    background-color: #E23030;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 0;
    border-radius: 0;
    padding: 4px;
    cursor: pointer;
    font-weight: bold;
    color: #FFFFFF;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    outline: none;
}

#oauth-form-signup:hover {
    background: -webkit-linear-gradient(#E23030, #E22020); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#E23030, #E22020); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#E23030, #E22020); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#E23030, #E22020); /* Standard syntax */
    text-decoration: none;
}

#zoom-login {
    margin-bottom: 250px;
}

#zoom-login-logo {
    width: 340px;
    height: 181px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/zoom_integration@2x.png);
    background-size: 340px 181px;
    background-repeat: no-repeat;
}

#zoom-login-description {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 17px;
    line-height: 26px;
    width: 550px;
    margin-left: auto;
    margin-right: auto;
}

a.zoom-login-button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-top: 5px;
    background-color: #E23030;
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    font-weight: bold;
    border-radius: 2px;
    padding: 12px;
    width: 350px;
    border: 0;
    display: block;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    text-decoration: none;
    outline: none;
    -webkit-appearance: none;
    text-align: center;
}

a.zoom-login-button:hover {
    text-decoration: none;
}

#desktop-welcome {
    flex: 1;
    background-color: #454545;
    box-shadow: inset -1px 0px 8px 0px rgba(0,0,0,0.50);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#login-bar {
    position: relative;
    width: 350px;
}

#desktop-welcome .carousel .carousel-item {
    height: 700px !important;
}

#desktop-welcome .carousel-item h1 {
    font-size: 34px;
    font-weight: bold;
    color: #FFFFFF;
}

#desktop-welcome .carousel-item .sub-title {
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

#desktop-welcome .carousel-image-1 {
    width: 631px;
    height: 435px;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/home_hero3.png);
    background-size: 100% 100%;
}

#desktop-welcome .carousel-image-2 {
    width: 493px;
    height: 287px;
    margin-top: 100px;
    margin-bottom: 75px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #333333;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.50);
    background-image: url(../images/realtime_collaboration_animation.gif);
    background-size: 100% 100%;
}

#desktop-welcome .carousel-image-3 {
    width: 239px;
    height: 249px;
    margin-top: 125px;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #333333;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.50);
    background-image: url(../images/chatter_animation.gif);
    background-size: 100% 100%;
}

#desktop-welcome .carousel-image-4 {
    width: 293px;
    height: 181px;
    margin-top: 125px;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #333333;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.50);
    background-image: url(../images/search_animation.gif);
    background-size: 100% 100%;
}

@media only screen and (max-width: 480px)
{
    #site {
        width: 100%;
    }

    #header {
        padding-left: 20px;
        padding-right: 20px;
        background-position: 20px 20px;
    }

    #header-subname {
        display: none;
    }

    a.header-link {
        margin-right: 10px;
    }

    .header-button {
        display: none;
    }

    #content {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .value-prop-title {
        margin-left: 10px;
        margin-right: 10px;
    }

    #alternative .value-prop-title {
        width: auto;
        margin-left: 10px;
        margin-right: 10px;
    }

    .differences-list, .differences-list.narrow {
        width: auto;
        margin-top: 44px;
    }

    .difference-item, .difference-item.wide {
        float: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 44px;
    }

    .difference-item:last-child, .difference-item.wide:last-child {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0px;
    }

    #home {
        margin-bottom: 30px;
    }

    #home .value-prop-description, #tour .value-prop-description, #use-case .value-prop-description {
        width: auto;
        margin-left: 10px;
        margin-right: 10px;
    }

    .value-prop-paragraph {
        width: auto;
        margin-left: 20px;
        margin-right: 20px;
    }

    .section-title {
        width: auto;
        margin-left: 10px;
        margin-right: 10px;
    }

    .section-divider {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    #home .feature-group {
        width: 282px;
        margin-top: 0px;
    }

    #home .feature-item {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    #home #capture-screenshot, #tour #capture-screenshot {
        width: 375px;
        height: 260px;
        background-size: 375px 260px;
    }

    #home #collaboration-screenshot, #tour #collaboration-screenshot {
        width: 375px;
        height: 189px;
        background-size: 375px 189px;
    }

    #home #collaboration-screenshot2, #tour #collaboration-screenshot2 {
        width: 375px;
        height: 248px;
        background-size: 375px 248px;
    }

    #home #find-screenshot, #tour #find-screenshot {
        width: 375px;
        height: 209px;
        background-size: 375px 209px;
    }

    #home #find-screenshot2, #tour #find-screenshot2 {
        width: 375px;
        height: 209px;
        background-size: 375px 209px;
    }

    #home-tagline {
        margin-top: 0px;
        margin-left: 10px;
        margin-right: 10px;
    }

    #alternative-tagline {
        width: auto;
        margin-left: 10px;
        margin-right: 10px;
    }

    #home-tagline.short {
        font-size: 32px;
    }

    #home-sub-tagline {
        margin-left: 10px;
        margin-right: 10px;
    }

    #home-hero-image {
        width: 375px;
        height: 255px;
        background-size: 375px 255px;
    }

    #home-hero-image2 {
        width: 375px;
        height: 275px;
        background-size: 375px 275px;
    }

    #home-hero-image3 {
        width: 375px;
        height: 259px;
        background-size: 375px 259px;
    }

    #home-hero-image4 {
        width: 375px;
        height: 259px;
        background-size: 375px 259px;
    }

    #home-hero-image5 {
        width: 375px;
        height: 275px;
        background-size: 375px 275px;
    }

    #home .demo-video, #tour .demo-video, #alternative .demo-video, #use-case .demo-video {
        width: 375px;
        height: 210;
        border: none;
    }

    #home .demo-video iframe, #tour .demo-video iframe, #alternative .demo-video iframe, #use-case .demo-video iframe {
        width: 375px;
        height: 210;
    }

    #home-supported-platforms-image {
        height: 67px;
        width: 350px;
        margin-top: 40px;
        background-size: 350px 67px;
    }

    #home-supported-platforms-link {
        height: 67px;
        width: 350px;
        margin-top: 40px;
    }

    #home-supported-platformls-link-image {
        height: 67px;
        width: 350px;
    }

    #home-integrations-image {
        height: 84px;
        width: 350px;
        margin-top: 40px;
        background-size: 350px 84px;
    }

    #home-integrations {
        width: 350px;
    }

    .home-integration-link, .home-integration-link img {
        display: block;
        float: left;
        width: 90px;
        padding-right: 40px;
        padding-bottom: 20px;
    }

    .home-integration-link:nth-child(3), .home-integration-link:nth-child(3) img {
        padding-right: 0px;
    }

    .home-integration-link:last-child, .home-integration-link:last-child img {
        padding-right: 0px;
    }
    
    #home-scenarios-image {
        margin-top: 40px;
        width: 350px;
        height: 134px;
        background-size: 700px 134px;
    }

    #agency-scenarios-image {
        margin-top: 40px;
        width: 350px;
        height: 140px;
        background-size: 700px 140px;
    }

    #small-business-scenarios-image {
        margin-top: 40px;
        width: 350px;
        height: 180px;
        background-size: 700px 135px;
    }

    #sales-scenarios-image {
        margin-top: 40px;
        width: 350px;
        height: 180px;
        background-size: 700px 135px;
    }

    #pricing-customers-title {
        width: auto;
        margin-left: 10px;
        margin-right: 10px;
    }

    #home #customer-logos, #pricing-customers-logos {
        width: 350px;
        height: 73px;
        margin-top: 40px;
        background-size: 350px 73px;
    }

    #home #customer-logos2, #pricing-customers-logos, #alternative #customer-logos2 {
        width: 350px;
        height: 74px;
        margin-top: 40px;
        background-size: 350px 74px;
    }

    #home #customer-logos3, #pricing-customers-logos, #alternative #customer-logos3 {
        width: 350px;
        height: 78px;
        margin-top: 40px;
        background-size: 350px 78px;
    }

    #home #customer-logos4, #pricing-customers-logos, #alternative #customer-logos4 {
        width: 350px;
        height: 80px;
        margin-top: 40px;
        background-size: 350px 78px;
    }

    #customer-quotes, .customer-quote {
        display: none;
    }

    .customer-quote-divider {
        display: none;
    }

    .customer-testimonials {
        margin-top: 0px;
        margin-bottom: 0px;
        width: 350px;
    }

    .customer-testimonial {
        margin-top: 40px;
        width: 350px;
        margin-right: 0px;
    }

    .customer-testimonials-see-more {
        margin-top: 40px;
    }

    .case-study-content {
        width: 350px;
    }

    .case-study-quote {
        width: 327px;
    }

    #use-case h1 {
        margin-left: 10px;
        margin-right: 10px;
    }

    #use-case h2 {
        width: auto;
        margin-left: 10px;
        margin-right: 10px;
    }

    .use-case-section {
        width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .use-case-section-content, .use-case-section.sales.one .use-case-section-content, .use-case-section.sales.three .use-case-section-content {
        margin-top: 66px;
        width: 350px;
    }

    .use-case-section.remote.one .use-case-section-image {
        width: 350px;
        height: 400px;
        background-size: 350px 597px;
    }

    .use-case-section.remote.two .use-case-section-image {
        width: 350px;
        height: 400px;
        background-size: 350px 417px;
    }

    .use-case-section.remote.three .use-case-section-image {
        width: 348px;
        height: 400px;
        background-size: 348px 419px;
    }

    .use-case-section.agency.one .use-case-section-image {
        width: 350px;
        height: 400px;
        background-size: 350px 417px;
    }

    .use-case-section.agency.two .use-case-section-image {
        width: 350px;
        height: 500px;
        background-size: 350px 597px;
    }

    .use-case-section.agency.three .use-case-section-image {
        width: 348px;
        height: 451px;
        background-size: 348px 451px;
    }

    .use-case-section.small-business.one .use-case-section-image {
        width: 348px;
        height: 452px;
        background-size: 348px 452px;
    }

    .use-case-section.small-business.two .use-case-section-image {
        width: 350px;
        height: 417px;
        background-size: 350px 417px;
    }

    .use-case-section.small-business.three .use-case-section-image {
        width: 350px;
        height: 450px;
        background-size: 350px 597px;
    }

    .use-case-section.support-teams.one .use-case-section-image {
        width: 350px;
        height: 417px;
        background-size: 350px 417px;
    }

    .use-case-section.support-teams.two .use-case-section-image {
        width: 350px;
        height: 340px;
        background-size: 350px 597px;
    }

    .use-case-section.support-teams.three .use-case-section-image {
        width: 348px;
        height: 303px;
        background-size: 348px 303px;
    }

    .use-case-section.sales.one .use-case-section-image {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    .use-case-section.sales.two .use-case-section-image {
        width: 350px;
        height: 417px;
        background-size: 350px 417px;
    }

    .use-case-section.sales.three .use-case-section-image {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    .use-case-section.sales.four .use-case-section-image {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    .features-section-content, .features-section-left, .features-section-right {
        width: 350px;
        width: auto;
    }

    .features-section .features {
        margin-top: 30px;
        width: 350px;
        width: auto;
    }

    .features-section .feature {
        width: auto;
        margin-bottom: 30px;
    }

    .features-section-image {
        display: none;
    }

    .features-section-content {
        overflow: hidden;
    }

    .features-section-right .features-section-icon {
        float: left;
        margin-left: 0px;
    }

    .features-section-title {
        font-size: 28px;
    }

    .features-section-right .features-section-title {
        text-align: left;
    }

    .features-section-header-center, .features-section-header-center.integrate, .features-section-header-center.access, .features-section-header-center.import {
        width: auto;
    }

    .features-section .integrations {
        width: auto;
        margin-top: 30px;
    }

    .features-section .integration {
        width: auto;
        margin-bottom: 30px;
    }

    .features-section .integration:nth-child(odd) {
        margin-right: 0px;
    }

    .features-section .integration-content {
        float: none;
        padding-left: 93px;
        width: auto;
    }

    .features-section .features-apps-image-wrapper {
        margin-top: 30px;
        margin-bottom: 0px;
        width: auto;
    }

    .features-imports {
        width: auto;
    }

    .features-import:nth-child(odd) {
        margin-right: 60px;
        margin-bottom: 20px;
    }

    .features-import:nth-child(even) {
        margin-right: 0;
        margin-bottom: 20px;
    }

    #home .features-apps-image-wrapper {
        margin-top: 30px;
        margin-bottom: 0px;
        margin-left: 20px;
        margin-right: 20px;
        width: auto;
    }

    .features-section img.features-apps-image,
    #home img.features-apps-image {
        width: 100%;
    }

    #press-mentions-title {
        margin-bottom: 30px;
    }

    #press-mentions-image {
        width: 355px;
        height: 33px;
        background-size: 355px 33px;
    }

    #footer {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    #footer-content {
        width: 340px;
    }

    .footer-row {
        padding-top: 0;
    }
    
    .footer-column {
        padding-right: 20px;
        padding-bottom: 30px;
    }

    #pricing-plans {
        margin-top: 30px;
        width: 100%;
    }

    #pricing-freebies {
        width: auto;
        margin-top: 30px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .pricing-plan {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-plan:first-child {
        margin-top: 0px;
    }

    .pricing-plan {
        margin-top: 40px;
    }

    .pricing-plan:last-child {
        margin-right: auto;
    }

    #downloads-image {
        width: 375px;
        height: 255px;
        background-size: 375px 255px;
    }

    #web-clipper-image {
        width: 375px;
        height: 319px;
        background-size: 375px 319px;
    }

    a.downloads-button, a.web-clipper-button {
        width: auto;
    }

    #about {
        width: 100%;
    }

    #about h1 {
        margin-left: 20px;
    }

    .about-founder {
        margin-left: 20px;
        margin-right: 0px;
        margin-bottom: 20px;
    }

    #about-text {
        margin-left: 20px;
        margin-right: 20px;
    }

    #homepage-tagline {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    #index-actions-box {
        margin-top: 30px;
    }

    #login-terms {
        position: static;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    #terms, #privacy, #help {
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
        margin-bottom: 0px;
    }

    #terms h1, #privacy h1, #help h1 {
        margin-top: 10px;
    }

    #releases {
        width: 100%;
        box-sizing: border-box;
        padding-left: 20px;
        padding-right: 20px;
    }

    #releases-header {
        margin-top: 10px;
    }

    #releases img {
        max-width: 100%;
    }

    .onboarding-box {
        max-width: 90%;
    }

    .onboarding-field {
        box-sizing: border-box;
        width: 100%;
    }

    .onboarding-first-name, .onboarding-last-name {
        box-sizing: border-box;
        float: none;
        width: 100%;
        margin-bottom: 20px;
    }

    #profile-image-upload {
        box-sizing: border-box;
        width: 90%;
    }

    #profile-image-upload-buttons {
        margin-left: auto;
        margin-right: auto;
        width: 129px;
        float: none;
    }

    #profile-image-upload-preview-wrapper {
        float: none;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    #library-name {
        box-sizing: border-box;
        width: 100%;
    }

    #tour-skip {
        display: none;
    }

    #help-center-header {
        width: auto;
        margin-top: -30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #help-center-search {
        box-sizing: border-box;
        width: 100%;
        height: 40px;
    }

    #help-center-content {
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    #help-article-sidebar {
        display: none;
    }

    #help-article-wrapper {
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    #help-article {
        width: 100%;
        padding-left: 0px;
    }

    .resource {
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    #help-article img, .resource img {
        max-width: 100%;
    }

    #contact, #contact-form, #contact-submit {
        width: 350px;
    }

    .contact-input, .contact-textarea {
        width: 330px;
    }

    #request-demo, #request-demo-form {
        width: 350px;
    }

    .request-demo-input, .request-demo-select, .request-demo-textarea {
        width: 330px;
    }

    #request-demo-submit {
        width: 350px;
    }

    #security {
        width: 350px;
    }

    .security-content {
        width: 350px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .security-item-left {
        width: 350px;
        margin-bottom: 50px;
    }

    .security-item-right {
        width: 350px;
        margin-bottom: 50px;
    }

    #refer, #refer-link, #refer-stats, .refer-details-left, .refer-details-right {
        width: 350px;
    }

    .refer-stat {
        width: 116px;
    }

    #refer-link-input {
        width: 332px;
    }

    #refer-link-copy {
        width: 350px;
    }

    #feature-requests, #feature-request, #add-feature-request {
        width: auto;
        padding-left: 20px;
        padding-right: 20px;
    }

    #add-feature-request-name-input, #add-feature-request-description-input {
        width: 100%;
    }

    #feature-request-add-comment-input, #feature-request-add-email-vote-input {
        width: 100%;
    }

    #feature-request-add-comment-submit, #feature-request-add-email-vote-submit {
        margin-left: 0px;
        margin-top: 8px;
    }

    .promo-box {
        width: 350px;
    }

    .promo-input-field-left {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 30px;
    }

    .promo-input-field-right {
        width: 100%;
        box-sizing: border-box;
    }

    .promo-input-field {
        width: 100%;
        box-sizing: border-box;
    }

    #promo-google-signup-button {
        width: 310px;
        background-size: 310px 40px;
    }

    #cyber-monday-header-image {
        width: 375px;
    }

    #cyber-monday-headline, #cyber-monday-subheadline {
        width: auto;
        margin-left: 20px;
        margin-right: 20px;
        text-align: center;
    }

    .cyber-monday-plan {
        width: auto;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .cyber-monday-plan-header-name, .cyber-monday-plan-header-full-price, .cyber-monday-plan-header-discount-price, .cyber-monday-plan-buy {
        float: none;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .cyber-monday-plan-features-column {
        float: none;
    }

    .cyber-monday-plan-feature {
        margin-left: 20px;
        margin-right: 20px;
    }

    .cyber-monday-faqs-content {
        width: auto;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .cyber-monday-faqs-column {
        float: none;
        width: auto;
        margin-right: 0px;
    }
}
