:root
{
    --black: #252525;
    --slate: #999;
    --steel: #afafaf;
    --silver: #dadada;
    --smoke: #e5e5e5;
    --snow: #f9f9f9;
    --blue: #2c72ff;
    --green: #72c84f;
    --red: #ec4756;
    --velvet: #ff0045;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video
{
    font: inherit;
    font-size: 100%;

    margin: 0;
    padding: 0;

    vertical-align: baseline;

    border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section
{
    display: block;
}

body
{
    line-height: 1;
}

ol,
ul
{
    list-style: none;
}

blockquote,
q
{
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after
{
    content: '';
    content: none;
}

table
{
    border-spacing: 0;
    border-collapse: collapse;
}

*,
*:before,
*:after
{
    box-sizing: border-box;

    -webkit-transition: all 200ms ease;
            transition: all 200ms ease;
}

@font-face
{
    font-family: 'SF Pro Display';
    font-weight: 500;
    font-style: normal;

    src: url('SFProDisplay-Medium.woff2') format('woff2'), url('SFProDisplay-Medium.woff') format('woff');
}

@font-face
{
    font-family: 'SF Pro Display';
    font-weight: bold;
    font-style: normal;

    src: url('SFProDisplay-Bold.woff2') format('woff2'), url('SFProDisplay-Bold.woff') format('woff');
}

html
{
    background-color: #fff;

        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    -webkit-tap-highlight-color: transparent;
}

body
{
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;

    color: var(--black);
}
.container
{
    position: relative;

    display: table;

    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 80px 24px;
}
.container.small {
    max-width: 495px;
}
.left-mockup
{
    float: left;
    width: 45%;
    padding: 0 46px;
}
.content
{
    float: left;

    width: 55%;
    padding-left: 16px;
}
.updates
{
    width: 100%;
    max-width: 500px;
    margin: 0 auto 80px;
}
.updates h3
{
    display: block;

    margin: 40px auto 32px;

    text-align: center;
}
.updates ul
{
    list-style: none;
}
.updates li
{
    display: block;

    margin-bottom: 32px;
    padding: 24px 32px 32px;

    border-radius: 10px;
    box-shadow: 0 8px 40px 0 var(--smoke);
}
.updates span
{
    font-size: 10px;
    font-weight: bold;

    display: block;

    margin-bottom: 8px;

    letter-spacing: .64px;
    text-transform: uppercase;

    color: var(--slate);
}
.updates h6
{
    font-size: 22px;

    margin-bottom: 16px;

    color: var(--black);
}
.updates p
{
    font-size: 16px;

    color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6
{
    font-weight: bold;

    margin: 0;

    letter-spacing: .44px;

    color: var(--black);
}

h1
{
    font-size: 36px;
    line-height: 48px;
}

h2
{
    font-size: 32px;
    line-height: 44px;
}

h3
{
    font-size: 28px;
    line-height: 40px;
}

h4
{
    font-size: 24px;
    line-height: 36px;
}

h5
{
    font-size: 18px;
    font-weight: normal;
    line-height: 32px;
}

h6
{
    font-size: 16px;
    line-height: 24px;
}

p
{
    font-weight: normal;

    margin-top: 0;

    letter-spacing: .44px;

    color: var(--black);
}
strong
{
    font-weight: bold;
}

/* Links –––––––––––––––––––––––––––––––––––––––––––––––––– */
a
{
    font-weight: normal;

    text-decoration: none;
    letter-spacing: .44px;

    color: var(--blue);
}

/* Buttons –––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type='submit'],
input[type='reset'],
input[type='button']
{
    font-size: 16px;
    font-weight: bold;
    font-weight: bold;
    line-height: 56px;

    display: inline-block;

    box-sizing: border-box;
    height: 60px;
    padding: 0 40px 4px;

    cursor: pointer;
    -webkit-transition: background 200ms ease;
            transition: background 200ms ease;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: .44px;

    color: #fff;
    border: none;
    border-radius: 999px;
    background-color: #2c72ff;
}

.button.button-primary,
button.button-primary,
input[type='submit'].button-primary,
input[type='reset'].button-primary,
input[type='button'].button-primary
{
    color: #fff;
    background-color: #ff5000;
}


/* Forms –––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type='email'],
input[type='number'],
input[type='search'],
input[type='text'],
input[type='tel'],
input[type='url'],
input[type='password'],
textarea,
select
{
    box-sizing: border-box;
    height: 60px;
    padding: 4px 32px 8px;

    border: none;
    border-radius: 6px;
    /* The 6px vertically centers text on FF, ignored by Webkit */
    background-color: #fff;
    box-shadow: inset 0 0 0 1px #d9dbe1;
}

/* Removes awkward default styles on some inputs for iOS */
input[type='email'],
input[type='number'],
input[type='search'],
input[type='text'],
input[type='tel'],
input[type='url'],
input[type='password'],
input[type='submit'],
textarea
{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

textarea
{
    min-height: 80px;
    padding: 16px 20px 28px;

    border-radius: 6px;
}

select
{
    cursor: pointer;

    background: transparent url('../images/select-arrow.svg') no-repeat calc(100% - 24px) 50%;
    background-size: 8px;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

select::-ms-expand
{
    display: none;
}

label,
legend
{

    display: block;
}

fieldset
{
    padding: 0;

    border-width: 0;
}

input[type='checkbox'],
input[type='radio']
{
    display: inline;
}

label > .label-body
{
    font-weight: normal;

    display: inline-block;

    margin-left: .5rem;
}
input:focus,
select:focus,
textarea:focus,
button:focus
{
    outline: none;
}

::-webkit-input-placeholder
{
    color: var(--slate);
}

::-moz-placeholder
{
    color: var(--slate);
}

:-ms-input-placeholder
{
    color: var(--slate);
}

:-moz-placeholder
{
    color: var(--slate);
}
/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active
{
    -webkit-box-shadow: 0 0 0 100px white inset !important;
}
/* Lists –––––––––––––––––––––––––––––––––––––––––––––––––– */
ul
{
    margin: 0;
    padding: 0;

    list-style: none;
}

/* Code –––––––––––––––––––––––––––––––––––––––––––––––––– */
code
{
    font-size: 90%;

    margin: 0 .2rem;
    padding: .2rem .5rem;

    white-space: nowrap;

    border: 1px solid #e1e1e1;
    border-radius: 4px;
    background: #f1f1f1;
}

pre > code
{
    display: block;

    padding: 1rem 1.5rem;

    white-space: pre;
}

/* Tables –––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td
{
    padding: 12px 15px;

    text-align: left;

    border-bottom: 1px solid #e1e1e1;
}

th:first-child,
td:first-child
{
    padding-left: 0;
}

th:last-child,
td:last-child
{
    padding-right: 0;
}

/* Utilities –––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width
{
    box-sizing: border-box;
    width: 100%;
}

.u-max-full-width
{
    box-sizing: border-box;
    max-width: 100%;
}

.u-pull-right
{
    float: right;
}

.u-pull-left
{
    float: left;
}


/* Custom CSS –––––––––––––––––––––––––––––––––––––––––––––––––– */

.heading
{
    margin-bottom: 32px;
}

.heading img
{
    padding: 24px 0 40px;
}
.heading h2
{
    margin-bottom: 16px;
}
.box-bt-signup {
    margin-bottom: 20px;
}
.box-signin {
    margin-bottom: 48px;
}

.button-instagram
{
    margin-bottom: 20px;
    padding-left: 32px;

    background-color: #1400c8;
    background-image: -webkit-linear-gradient(225deg, #1400c8, #b900b4, #f50000);
    background-image:         linear-gradient(-135deg, #1400c8, #b900b4, #f50000);
}
.button-instagram_v2
{
    margin-bottom: 20px;
    padding-left: 32px;

    background-color: #0454FB;
}

.button-instagram svg
{
    position: relative;
    top: 3px;

    margin-right: 8px;
}
.mockup-mobile
{
    display: none;
}

.feature-list img
{
    float: left;

    width: 48px;
    margin-right: 16px;
}

.feature-list ul
{
    margin-bottom: 40px;
}

.feature-list li
{
    margin-top: 30px;
}

.feature-list p
{
    font-size: 16px;
    line-height: 24px;

    padding: 0 0 4px 0;
}

.footer
{
    font-size: 12px;

    display: table;

    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    margin: 0 auto 40px;
    padding: 24px;

    text-align: center;
}



.footer li
{
    display: inline-block;

    padding: 0 16px;

    color: var(--slate);
}

.footer li a
{
    display: inline-block;

    text-decoration: none;

    color: var(--slate);
}
.article
{
    max-width: 600px;
    margin: 80px auto 140px;
    padding: 0 20px;

    -webkit-animation: fadeInUp 500ms ease;
            animation: fadeInUp 500ms ease;
}
.article img
{
    display: block;

    margin: 0 0 40px;
}
.article p,
.article li
{
    font-size: 18px;
    line-height: 28px;

    display: block;

    margin: 20px auto;
}
.article li
{
    list-style: circle;
}
.article .button.fixed
{
    position: fixed;
    bottom: 30px;
    left: 50%;

    display: table;

    width: 280px;

    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-animation: fadeIn 500ms ease;
            animation: fadeIn 500ms ease;
    -webkit-animation-delay: 500ms;
            animation-delay: 500ms;

    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
}
@-webkit-keyframes fadeInUp
{
    from
    {
        -webkit-transform: translate3d(0, 20px, 0);
                transform: translate3d(0, 20px, 0);

        opacity: 0;

        -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    }

    to
    {
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);

        opacity: 1;

        -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
    }
}

@keyframes fadeInUp
{
    from
    {
        -webkit-transform: translate3d(0, 20px, 0);
                transform: translate3d(0, 20px, 0);

        opacity: 0;

        -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    }

    to
    {
        -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);

        opacity: 1;

        -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
    }
}

.fadeInUp
{
    -webkit-animation-name: fadeInUp;
            animation-name: fadeInUp;
}


@-webkit-keyframes fadeIn
{
    from
    {
        opacity: 0;

        -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    }

    to
    {
        opacity: 1;

        -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
    }
}

@keyframes fadeIn
{
    from
    {
        opacity: 0;

        -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
    }

    to
    {
        opacity: 1;

        -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
    }
}

.fadeIn
{
    -webkit-animation-name: fadeIn;
            animation-name: fadeIn;
}
.video-mockup
{
    overflow: hidden;

    max-width: 100%;

    border-radius: 10px;
    box-shadow: 0 8px 64px 0 var(--silver);
}

/* Media Queries –––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width: 960px)
{
    .container
    {
        width: 100%;
        padding: 24px;
    }
    .left-mockup
    {
        float: none;

        width: 100%;
        padding: 0;
    }
    .content
    {
        float: none;

        width: 100%;
        padding: 0;
    }

    .updates
    {
        margin: 0 auto;
        padding: 24px;
    }

    h1
    {
        font-size: 32px;
        line-height: 44px;
    }

    h2
    {
        font-size: 28px;
        line-height: 40px;
    }

    h3
    {
        font-size: 24px;
        line-height: 36px;
    }

    h4
    {
        font-size: 22px;
        line-height: 36px;
    }

    h5
    {
        font-size: 18px;
        line-height: 30px;
    }

    h6
    {
        font-size: 16px;
        line-height: 24px;
    }

    .heading img
    {
        display: block;

        width: 160px;
        margin: 0 auto;
        padding: 56px 0 48px;
    }

    .heading
    {
        text-align: center;
    }

    .heading h5
    {
        padding: 0 24px;
    }

    .box-bt-signup {
      margin: 0 auto;
      text-align: center;
      margin-bottom: 20px;
    }

    .video-mockup
    {
        display: none;
    }

    .button-instagram
    {
        display: table;

        margin: 0 auto 20px;
    }

    .mockup-mobile
    {
        display: block;

        max-width: 100%;
        margin: 16px auto 40px;
    }

    .feature-list img
    {
        display: block;
        float: none;

        margin: 0 auto 20px;
    }

    .feature-list p
    {
        padding: 0 24px;

        text-align: center;
    }

    .footer
    {
        margin: 0 auto 40px;
    }
}

.signup-form
{
    margin-bottom: 56px;
}

.signup-form input
{
    font-size: 14px;
    font-weight: 500;

    display: inline-block;
}

.signup-form #email
{
    width: 60%;
    margin-right: -6px;

    border-radius: 99px 0 0 99px;
}

.signup-form #bt_submit
{
    width: 40%;
    padding-right: 32px;
    padding-left: 32px;

    border-radius: 0 99px 99px 0;
}

@media (max-width: 960px)
{
    .signup-form #bt_submit
    {
        width: 100%;
        margin: 0 0 16px;

        border-radius: 99px;
    }

    .signup-form #email
    {
        width: 100%;
        margin: 0 0 16px;

        border-radius: 99px;
    }

    .signup-form
    {
        margin-bottom: 0;
        padding: 0 24px;
    }
    .mockup
    {
        display: none;
    }
}

.thankyou h3
{
    font-size: 46px;
    line-height: 50px;

    margin-top: 40px;
}
.thankyou h3 a
{
    text-decoration: none;

    color: #000;
}
.thankyou h5
{
    color: #f05;
}
.thankyou .urlkey
{
    font-family: 'Circular Std', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 22px;

    width: 506px;
    height: 70px;
    padding: 25px 25px 27px 25px;

    text-align: center;

    color: #333;
    outline: none;
    background: #fff;
}
.thankyou .signup-form
{
    margin: 40px 0 !important;
}

#btn
{
    position: relative;
}
.tip-balloon
{
    font-size: 12px;

    position: absolute;
    top: -31px;
    left: 206px;

    display: none;

    width: 78px;
    padding: 2px;

    text-align: center;

    color: #fff;
    border-radius: 3px;
    background: #333;
}
.tip-balloon:after
{
    position: absolute;
    bottom: -8px;
    left: 31px;

    display: block;

    width: 0;

    content: '';

    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #333 transparent;
}

.status-invite
{
    font-weight: 700;

    padding: 14px;
}

@media (max-width: 960px)
{
    .thankyou h3
    {
        font-size: 50px;
        line-height: 60px;

        margin-top: 0;
    }
    .thankyou .urlkey
    {
        font-size: 16px;

        width: 100%;
    }
    .thankyou .signup-form
    {
        margin: 20px 0 !important;
        padding: 0 !important;
    }
    .thankyou .mockup-mobile
    {
        display: none;
    }
    .status-invite
    {
        text-align: center;
    }
}

.everywhere {
  width: 100%;
  background-color: #F9FAFC;
  padding: 100px 0;
  text-align: center;
}
.everywhere h3, .users h3 {
  padding: 0 0 20px 0;
}
.everywhere h5, .users h5 {
  max-width: 75%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.everywhere .button-instagram {
  margin-top: 40px;
  background-color: orange;
  background-image: none;
}

.users {
  width: 100%;
  background-color: #FFF;
  padding: 100px 0;
  text-align: center;
}
.users .userBox {
  width: 16%;
  display: inline-block;
  padding: 20px;
  margin: 10px;
  background-color: #F9FAFC;
  border-radius: 16px;
  -webkit-box-shadow: 10px 10px 16px -6px rgba(0,0,0,0.1);
  -moz-box-shadow: 10px 10px 16px -6px rgba(0,0,0,0.1);
  box-shadow: 10px 10px 16px -6px rgba(0,0,0,0.1);
}
.users .userBox:hover {
  -webkit-box-shadow: 10px 10px 16px -6px rgba(0,0,0,0.2);
  -moz-box-shadow: 10px 10px 16px -6px rgba(0,0,0,0.2);
  box-shadow: 10px 10px 16px -6px rgba(0,0,0,0.2);
}
.users .userBox img {
  width: 56%;
  border-radius: 100%;
}
.users .userBox h4 {
  font-size: 18px;
  /* line-height: 26px; */
  color: var(--velvet);
}
.users .userBox h5 {
  font-size: 13px;
  line-height: 20px;
  padding-bottom: 10px;
}
.users .userBox p {
  font-size: 13px;
  color: #7d7e82;
}
.mainContent {
  width: 98%;
  /* max-width: 1000px; */
  margin: 0 auto;
}
@media (max-width: 1024px)
{
  .users .userBox {
    width: 25%;
  }
}
@media (max-width: 768px)
{
  .users .userBox {
    width: 30%;
  }
  .users .userBox img {
    width: 40%;
    border-radius: 100%;
  }
  .users .userBox p {
    font-size: 12px;
  }
}
@media (max-width: 600px)
{
  .users .userBox {
    width: 90%;
  }
}

.cta_signup_link {
  display: block;
  margin: 60px auto 20px;
  color: var(--black);
  padding: 0 40px;
}
.cta_signup_link strong {
  color: var(--blue);
}

.updates {
  padding-top: 100px;
}


.suggestList {
  max-width: 75%;
  margin: 0 auto;
}
.button.suggest {
    text-align: left;
    padding: 16px 16px 10px;
    height: 140px;
    line-height: 20px;
    position: relative;
    white-space: normal;
    font-size: 17px;
    border-radius: 16px;
    width: 200px;
    margin: 4px;
    cursor: default !important;
}
@media (max-width: 960px)
{
  .suggestList {
    max-width: 100%;
  }
  .button.suggest {
      width: 160px;
      margin: 3px;
  }
}
.button.suggest img {
    display: block;
    margin-bottom: 8px;
}
.button.suggest span {
    display: block;
    font-size: 10px;
    font-weight: 600;
}

.button-facebook {
    color: #fff;
    background-color: #3b5998;
}

.button-youtube {
    color: #fff;
    background-color: #f00;
}

.button-twitter {
    color: #fff;
    background-color: #1da1f2;
}

.button-whatsapp {
    color: #fff;
    background-color: #25d366;
}

.button-linkedin {
    color: #fff;
    background-color: #0077b5;
}

.button-blog {
    color: #fff;
    background-color: #f57d00;
}

.button-email {
    color: #fff;
    background-color: #404d66;
}

.button-other {
    color: #fff;
    background-color: #7f8899;
}

.button-slack {
    color: #fff;
    background-color: #e01563;
}

.button-pinterest {
    color: #fff;
    background-color: #bd081c;
}

.button-medium {
    color: #fff;
    background-color: #00ab6c;
}
.button-shop {
    color: #fff;
    background-color: #fd5c63;
}

.button-spotify {
    color: #fff;
    background-color: #1db954;
}

.button-snapchat {
    color: #000;
    background-color: #fffc00;
}

.header {
  padding: 20px;
}
.header h1, a.brand {
  text-indent: -9999px;
  overflow: hidden;
  background: url('../img/onnelink.svg') no-repeat;
  background-size: contain;
  display: block;
  width: 140px;
  position: relative;
  padding: 4px;
}
.header .menu {
  position: absolute;
  top: 20px;
  right: 20px;
}
.header .menu ul li{
  display: inline;
}
.header .menu ul li a{
  margin: 0 6px;
  padding: 6px 6px;
  font-size: 15px;
}
.signup_header {
  /* background: #0454FB; */
  /* color: #FFF; */
  color: var(--blue);
  font-weight: bold;
  border-radius: 999px;
  display: inline-block;
}
.box-signin {
  margin-bottom: 48px;
}
@media (max-width: 960px)
{
  .signup_header {
    display: none;
  }
  .header .menu {
    top: 24px;
    right: 14px;
  }
  .box-signin {
    text-align:center;
  }
}
.ig_user {
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px 0 0 999px !important;
  padding-right: 0px !important;
}
.button-starter {
  border-radius: 0 999px 999px 0 !important;
  padding-left: 20px !important;
  margin-left: -6px !important;
}
.button-orange {
  background: orange;
  margin-top: 40px;
}
.button-orange svg {
    position: relative;
    top: 3px;
    margin-right: 8px;
}


@media (max-width: 600px)
{
  .ig_user {
    border-radius: 999px !important;
    padding: 4px 50px !important;
    text-align: center;
    margin-bottom: 12px;
  }
  .button-instagram {
    border-radius: 999px !important;
    /* margin-left: 0 !important; */
    /* padding: 0 40px !important; */
  }
}

.container.small a.brand {
  margin: 0 auto;
}
.container.small h1 {
  text-align: center;
}
.signForm {
    display: block;
    margin-bottom: 24px;
}
.signForm h1 {
    margin: 16px auto;
    font-size: 17px;
}
.signForm label {
    font-weight: 500;
    font-size: 13px;
    /* margin-bottom: 4px; */
}

.signForm input {
display: block;
    width: 100%;
    height: 56px;
    padding: 4px 20px 6px;
    font-size: 17px;
}

.signForm input:focus, .signForm input:active {
    box-shadow: inset 0 0 0 2px var(--blue);
}
/* .signForm button {
display: block;
    width: 100%;
    height: 56px;
    padding: 4px 20px 6px;
    font-size: 17px;
    line-height: 24px;
    border-radius: 6px;
    font-weight: 500;
} */

.signForm button {
    display: block;
    width: 100%;
    height: 56px;
    padding: 4px 20px 6px;
    font-size: 17px;
    line-height: 24px;
    border-radius: 6px;
    font-weight: 500;
    -webkit-transition: background 200ms ease;
    transition: background 200ms ease;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
}
.signForm button:before {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transition-duration: 7s;
    transition-duration: 7s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    background: #00b956;
    border-radius: 6px;
}
.signForm button.hover:before {
    -webkit-transform: scaleX(.9);
    transform: scaleX(.9);
}


.signForm a.forgot {
    float: right;
    font-size: 15px;
    font-weight: 500;
    color: var(--slate);
    letter-spacing: 0;
}
.signForm .input_username {
    position: relative;
}
.signForm .input_username p {
    position: absolute;
    top: 15px;
    left: 20px;
    z-index: 10;
    color: #AFAFAF;
}
.signForm .input_username input {
    padding-left: 94px;
    text-transform: lowercase;
}
.signFooter{
  margin: 0 auto;
  text-align: center;
}
.inputBox {
    margin: 0 0 10px;
    color: #888888;
}
.buttonBox {
    margin: 30px 0 48px;
}
input.error {
    box-shadow: inset 0 0 0 2px var(--red) !important;
}
span.error {
    font-size: 13px;
    line-height: 18px;
    color: var(--red);
    font-weight: 500;
    margin-top: 4px;
    display: block;
    letter-spacing: 0;
}
span.legal {
    color: var(--steel);
    font-size: 13px;
    width: 100%;
    display: block;
    letter-spacing: 0;
    padding: 16px 0 0;
    text-align: center;
}
span.legal a {
    color: var(--steel);
    font-size: 13px;
    letter-spacing: 0;
    text-decoration: underline;
}
::-webkit-input-placeholder { /* Edge */
  color: #afafaf;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #afafaf;
}

::placeholder {
  color: #afafaf;
}

.hidden {
  display:none !important;
}
.error-bar, .success-bar {
  color: #FFF;
  font-weight: bold;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 13px;
  padding: 2px 20px;
}
.error-bar {
  background: orangered;
}
.success-bar {
  background: #00b956;
}
.error-bar a, .success-bar a {
  text-decoration: underline;
  color: #FFF;
}
.text-divisor {
   width: 100%;
   text-align: center;
   border-bottom: 1px solid #ececec;
   line-height: 0.1em;
   margin: 34px 0;
   font-size: 14px;
}

.text-divisor span {
    background:#fff;
    padding:0 14px;
    color: #bfbfbf;
    font-weight: normal;
}
.button_account {
  background: #2c72ff url('../img/bg_button.png') repeat-x;
  background-size: cover;
}
.button_account:hover {
  background-position: -10px -5px;
}
.modal-overlay {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 50%;
    clear: both;
    width: 100%;
    max-width: 500px;
    transform: translateX(-50%);
    height: 100vh;
    -webkit-animation: fade-in 200ms ease;
    animation: fade-in 200ms ease;
    background-color: rgba(37,37,37,.32);
}
.modal {
    position: absolute;
    z-index: 13;
    top: 50%;
    left: 50%;
    width: calc(100% - 32px);
    max-width: 500px;
    padding: 24px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    animation: fade-in 200ms ease;
    animation-delay: 200ms;
    text-align: center;
    border-radius: 12px;
    background-color: #fff;
    animation-fill-mode: both;
    height: auto;
    display: table;
}
.modal .icon, .content .icon {
display: block;
    width: auto;
    height: 40px;
    margin: 0 auto 16px;
}
.modal h5, .modal-all-persistent h5 {
    font-size: 18px;
    line-height: 32px;
    font-weight: bold;
}
.modal p, .modal-all-persistent p {
    font-size: 16px;
    line-height: 26px;
    margin: 8px 0 24px;
}
.modal .button {
    font-size: 14px;
    font-weight: bold;
    line-height: 40px;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    height: 44px;
    padding: 0 20px 4px;
    cursor: pointer;
    -webkit-transition: background 200ms ease;
    transition: background 200ms ease;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: .4px;
    color: #fff;
    border: none;
    border-radius: 6px;
    background-color: var(--blue);
}
.modal .button.button-secondary {
    color: var(--black);
    background-color: var(--smoke);
}
.modal .button, .modal-all-persistent .button {
    margin-bottom: 16px;
}

.modal .button:last-child {
    margin-bottom: 0;
}
.nav div:nth-child(2) {
    height: 60px;
}
