/*
* HEADER/MENU
*/


/* ----------- HIDDEN MENU SECTION ----------- */

.menu-section {
    width: 240px;
    min-width: 240px;
    background: #24282e;
    margin-left: -240px;
    -webkit-transition: margin-left 0.2s ease-out;
    -moz-transition: margin-left 0.2s ease-out;
    -o-transition: margin-left 0.2s ease-out;
    transition: margin-left 0.2s ease-out;
    position: fixed;
    z-index: 9998;
    min-height: 100vh;
}

#close-mobile-menu {
    width: 20px;
    height: 20px;
    background-image: url(../images/landing/ic_1_close_menu_normal.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    right: 20px;
    top: 25px;
}

#close-mobile-menu:hover {
    background-image: url(../images/landing/ic_1_close_menu_hover.svg);
    cursor: pointer;
}

.white-logo {
    width: 80%;
    height: 70px;
    margin-left: 30px;
    background-image: url(../images/landing/persollo_white_logo.png);
    background-repeat: no-repeat;
    background-position: center left;
}

.mobile-menu > ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.mobile-menu > ul > li > a {
    width: 240px;
    font-size: 14px;
    font-weight: 500;
    color: #d8d7d7;
    display: block;
    line-height: 50px;
    padding: 0 30px;
    -webkit-transition: color 0.1s ease-out;
    -moz-transition: color 0.1s ease-out;
    -o-transition: color 0.1s ease-out;
    transition: color 0.1s ease-out;
}

.mobile-menu > ul > li > a:hover {
    color: #fff;
    background: #2d3036;
    border-left: 4px solid #66dd77;
    padding-left: 26px;
}

#sign-up a {
    color: #66dd77;
}

#campaigns i,
#my-store i,
#sign-up i,
#profile i {
    float: right;
    margin-top: 10px;
}

#campaigns .angle.up.icon,
#sign-up .angle.down.icon,
#my-store .angle.up.icon,
#profile .angle.up.icon {
    display: none;
}

#campaigns-menu,
#profile-menu,
#store-menu {
    display: none;
}

#campaigns-menu a,
#brand-influencer a,
#store-menu a,
#profile-menu a {
    display: block;
    line-height: 30px;
    padding: 0 30px;
    font-size: 14px;
    color: #d8d7d7;
    -webkit-transition: color 0.1s ease-out;
    -moz-transition: color 0.1s ease-out;
    -o-transition: color 0.1s ease-out;
    transition: color 0.1s ease-out;
}

#brand-influencer > div:first-child a:hover,
#store-menu a:hover,
#campaigns-menu a:hover,
#profile-menu a:hover {
    color: #66dd77;
}

#brand-influencer > div:last-child a:hover {
    color: #536dfe;
}


/* ----------- MAIN MENU SECTION ----------- */

.header {
    width: 100%;
    max-width: 1920px;
    height: 70px;
    min-height: 70px;
    margin: 0 auto;
    position: relative;
    z-index: 111;
    /*Flex container styles*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.prsl-logo {
    min-width: 150px;
    height: 100%;
    margin-left: 40px;
    background-image: url(../images/landing/img_1_header_logo.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.menu {
    height: 100%;
    text-align: right;
    vertical-align: middle;
    /*Flex styles*/
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    /*Flex container styles*/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.menu > ul {
    list-style: none;
    margin-right: 40px;
}

.menu > ul > li {
    display: inline-block;
    margin-right: 20px;
}

.graphic-point > a {
    display: block;
    margin-right: 0;
    padding: 10px 20px;
    border-radius: 20px;
    background: #fff;
    -webkit-box-shadow: 0px 6px 15px -4px rgba(168, 189, 177, 1);
    -moz-box-shadow: 0px 6px 15px -4px rgba(168, 189, 177, 1);
    box-shadow: 0px 6px 15px -4px rgba(168, 189, 177, 1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.graphic-point:hover {
    -webkit-box-shadow: 0px 5px 15px -6px rgba(168, 189, 177, 1);
    -moz-box-shadow: 0px 5px 15px -6px rgba(168, 189, 177, 1);
    box-shadow: 0px 5px 15px -6px rgba(168, 189, 177, 1);
}

.menu > ul > li > a {
    font-size: 13px;
    font-weight: bold;
    color: #707780;
    -webkit-transition: color 0.1s ease-out;
    -moz-transition: color 0.1s ease-out;
    -o-transition: color 0.1s ease-out;
    transition: color 0.1s ease-out;
}

.menu > ul > li > a:hover,
.menu > ul > li:last-child > a {
    color: #66dd77;
}

/* Popups */
.menu-popup {
    padding: 10px 20px;
    background: #fff;
    border-radius: 10px!important;
    position: relative;
    z-index: 9998;
    -webkit-box-shadow: 0px 6px 15px -4px rgba(168, 189, 177, 1);
    -moz-box-shadow: 0px 6px 15px -4px rgba(168, 189, 177, 1);
    box-shadow: 0px 6px 15px -4px rgba(168, 189, 177, 1);
}

.menu-popup > div > a {
    display: block;
    text-align: center;
    line-height: 30px;
    font-weight: 500;
    font-size: 14px;
    color: #484b4f;
    -webkit-transition: color 0.1s ease-out;
    -moz-transition: color 0.1s ease-out;
    -o-transition: color 0.1s ease-out;
    transition: color 0.1s ease-out;
}

.menu-popup > div > a:hover,
#avatar-point:hover {
    color: #66dd77;
}


/* --- Header Mobile Menu --- */

#header-mob-menu {
    display: none;
    /*Flex styles*/
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    /*Flex container styles*/
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#menu-icon {
    width: 40px;
    margin-left: 20px;
    background-image: url(../images/landing/ic_1_menu_normal.svg);
    background-repeat: no-repeat;
    background-position: left center;
    display: none;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

#menu-icon:hover {
    background-image: url(../images/landing/ic_1_menu_active.svg);
    cursor: pointer;
}

#logo-empty,
#signup-alone {
    display: none;
}

#logo-empty > div {
    width: 50px;
    height: 100%;
    margin-left: 50px;
    background-image: url(../images/landing/img_1_small_logo.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

#signup-alone {
    line-height: 70px;
    margin-right: 20px;
}

#signup-alone > a {
    margin-right: 0;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    background: #ffffff;
    color: #66dd77;
    -webkit-box-shadow: 0px 6px 15px -4px rgba(168, 189, 177, 1);
    -moz-box-shadow: 0px 6px 15px -4px rgba(168, 189, 177, 1);
    box-shadow: 0px 6px 15px -4px rgba(168, 189, 177, 1);
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

#signup-alone > a:hover {
    -webkit-box-shadow: 0px 5px 15px -6px rgba(168, 189, 177, 1);
    -moz-box-shadow: 0px 5px 15px -6px rgba(168, 189, 177, 1);
    box-shadow: 0px 5px 15px -6px rgba(168, 189, 177, 1);
}

/*modal window */
.adding {
     background-color: white;
     border: 1px solid #e0e0e0;
     color: #878787;
     border-radius: 0;
     font-size: 14pt;
     font-family: Open Sans, sans-serif;
     font-weight: 500;
     padding: 0.7em 1.2em;
     letter-spacing: 0;
     margin-top: 0px;
}
/* 
input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0px;
    padding: 1.3em 2.1em;
    margin-bottom: 0em;
    margin-left: 0px;
    width: 100%;
    letter-spacing: 2px;
    background-color: white;
    font-size: 10.5pt;
    color: #424242;
    border: 1px solid #e0e0e0;
    font-family: Open Sans, sans-serif;
    font-weight: 600;
    display: inline-block;
    -webkit-appearance: none;
}  */

.close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  color: #818181;
} 

.close-modal:hover {
  color: #999999;
}

.modalDialog {
  overflow-y: auto;
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
  text-align: center;
}
.modalDialog #id_country {
  width: 100% !important;
}
.modalDialog button {
  padding-top: 15px;
  padding-bottom: 15px;
}

.modalDialog:target {
  opacity: 1;
  pointer-events: auto;
}

.modalDialog > div {
  width: 27.8em;
  position: relative;
  margin: 10% auto;
  padding: 3em 3em 2.8em 3em;
  border-radius: 3px;
  background-color: #F7F7F7;
}

#id_country {
  text-transform: uppercase;
  border-bottom-width: 0px;
}

.no-margin {
  margin-top: 0;
}

.change-text {
  line-height: 1.2em;
}

.email-login {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom: 0px;
  font-size: 14pt;
  padding-top: .8em;
  padding-bottom: 0.8em;
}

.password-login {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-top: -1px;
  padding-top: .7em;
  padding-bottom: 0.7em;
}

.remember-login {
  display: inline-block;
  width: auto;
  margin-top: 1em;
}

label {
  font-family: Open Sans, sans-serif;
  font-weight: 500;
  color: #878787;
}

.shadow-sign-up {
  width: 100%;
  border: 1px solid #878787;
  font-size: 10.5pt;
  font-weight: 700;
  letter-spacing: 2px;
  padding-top: 1em;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1em;
  text-align: center;
  -webkit-box-sizing: border-box;
  /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
  -moz-box-sizing: border-box;
  /* Firefox 1 - 28 */
  box-sizing: border-box;
  border-radius: 50px;
  margin-bottom: .9em;
  display: inline-block;
  font-family: Open Sans, sans-serif;
  background-color: transparent;
  color: #878787;
  margin-top: 2.5em;
  text-transform: uppercase;
}

.no-margin-top {
  color: white;
  background-color: #2E8EDD;
  border-color: #2E8EDD;
}

.pass-forgot {
  color: #878787;
  font-family: Open Sans;
  display: inline-block;
  margin-top: .5em;
  margin-right: 0.3em;
}

.pass-forgot-underline {
  text-decoration: underline;
  color: #878787;
  font-family: Open Sans;
  display: inline-block;
  margin-top: .5em;
}

.instagram-login a {
    width: 190px;
    line-height: 40px;
    margin: 20px 0 15px 0;
    border-radius: 5px;
    background: #3897f0;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.instagram-login a:hover {
    color: #fff;
    background: #348de1;
}

.login-title {
    color: #424242;
    text-align: center;
    padding-top: .2em !important;
    margin-bottom: 1.5em !important;
    line-height: 1.2;
    font-size: 23pt;
    font-weight: 600;
    width: 100%;
}

.empty-blue {
    color: #878787;
    background-color: white;
    width: 100%;
    float: left;
}

input[type="checkbox"] {
  -webkit-appearance: checkbox;
}

::-webkit-input-placeholder {
  color: #afafaf;
}

::-moz-placeholder {
  color: #afafaf;
}

/* Firefox 19+ */
:-moz-placeholder {
  color: #afafaf;
}

/* Firefox 18- */
:-ms-input-placeholder {
  color: #afafaf;
}

.text-left {
  text-align: left;
}

.log-in-button {
  cursor: pointer;
  width: 100%;
  border: 0px;
  font-size: 10.5pt;
  font-weight: 700;
  letter-spacing: 2px;
  padding-top: 1em;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1em;
  text-align: center;
  -webkit-box-sizing: border-box;
  /* Safari 3.0 - 5.0, Chrome 1 - 9, Android 2.1 - 3.x */
  -moz-box-sizing: border-box;
  /* Firefox 1 - 28 */
  box-sizing: border-box;
  border-radius: 50px;
  margin-bottom: .5em;
  margin-top: 1.5em;
  display: inline-block;
  font-family: Open Sans, sans-serif;
  background-color: #02cc7d;
  color: white;
}

/* for authenticated users */
.avatar {
    height: 2.55em;
    width: 2.55em;
    display: inline-block;
    overflow: hidden;
    border: 0px solid #627A91;
    vertical-align: middle;
    margin-top: -.5em;
    background-repeat: no-repeat;
    background-position: 50%;
    border-radius: 50%;
    background-size: cover;
    cursor: pointer;
}

/* ----------- MEDIA QUERIES ----------- */


/*max-width: 768px*/

@media only screen and (max-width: 768px) {
    .prsl-logo {
        display: none;
    }
    .menu {
        display: none;
    }
    #header-mob-menu {
        /*Flex*/
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }

    #menu-icon {
        display: block;
    }
    #logo-empty {
        margin-right: 20px;
    }

    #logo-empty,
    #signup-alone {
        display: block;
    }
    .modalDialog > div {
        width: 18.8em;
    }
}


/* --- Mobile --- */


/*max-width: 560px (Mobile) */

@media only screen and (max-width: 560px) {
    #menu-icon {
        margin-left: 0px;
    }

    #logo-empty {
        margin-right: 0;
    }
    #signup-alone {
        margin-right: 0;
    }
}
