/*
* NOTE:
* I'm on mobile first design so every default properties are for mobile
* everything inside media tags are for tablet and desktop
*/
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600");

* {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  height: 100%;
  font-size: 75%;
}

@media only screen and (min-width: 640px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #444;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  background-color: #fafafa;
  height: 100%;
  text-align: center;
}

.cf {
  *zoom: 1;
}

.cf:before {
  content: " ";
  display: table;
}

.cf:after {
  content: " ";
  display: table;
  clear: both;
}

.container {
  max-width: 1180px;
  padding: 0 10px;
  margin: 0 auto;
}

.container.grid {
  padding: 0;
  max-width: 1200px;
}

.pos-r {
  position: relative;
}

.lr-button {
  display: inline-block;
  padding: 0 15px;
  background: #29d;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.lr-button.outline-blue {
  background: none;
  color: #29d;
  border: 1px solid #29d;
}

.lr-button.outline-blue:hover {
  color: #fff;
  border-color: #00b0f0;
}

.lr-button.outline-grey {
  background: none;
  color: #444;
  border: 1px solid #444;
}

.lr-button.outline-grey:hover {
  color: #fff;
  border-color: #00b0f0;
}

.lr-button.white {
  background: #eee;
  color: #444;
}

.lr-button.white:hover {
  color: #fff;
}

.lr-button:hover {
  background: #00b0f0;
}

.button-shade {
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3), inset 0 -10px 20px -1px rgba(0, 0, 0, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.button-shade:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3), inset 0 -10px 20px 3px rgba(0, 0, 0, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 5px 5px -2px rgba(0, 0, 0, 0.3);
}

.button-shade:active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

h1,
h2,
h3,
h4,
h5,
h6,
.loginradius-raas-form-element-content > label {
  font-weight: 400;
}

h1 {
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 4rem;
  margin-bottom: 15px;
}

h2 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 4rem;
  margin-bottom: 10px;
}

h3 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 3rem;
}

h4 {
  text-transform: uppercase;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 3rem;
  font-weight: 600;
}

h5,
.loginradius-raas-form-element-content > label {
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: 600;
}

h6 {
  text-transform: uppercase;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-weight: 600;
}

p {
  margin: 15px 0;
}

a {
  cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="name"],
input[type="password"],
input[type="submit"],
input[type="button"],
input[type="url"],
input[type="tel"],
input[type="date"],
select,
textarea,
button {
  width: 100%;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.6rem;
  line-height: 3rem;
  font-family: inherit;
  background: #fcfcfc;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /*remove tap highlight*/
  /*
		* Stop IOS from redesigning the form fields
		***/
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="name"]:focus,
input[type="password"]:focus,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
  border-color: #29d;
}

select {
  background: url("https://s3.amazonaws.com/devauth.lrcontent.com/dev/hosted-page/hosted-page-default-images/dropdown.png")
    no-repeat center right #fcfcfc;
  background-size: 20px;
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

input[type="submit"],
input[type="button"],
button {
  color: #fff;
  background-color: #29d;
  font-weight: 600;
  border: none;
  margin: 10px 0;
  cursor: pointer;
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3), inset 0 -10px 20px -1px rgba(0, 0, 0, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

input[type="submit"]:hover,
button:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3), inset 0 -10px 20px 3px rgba(0, 0, 0, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 5px 5px -2px rgba(0, 0, 0, 0.3);
}

input[type="submit"]:active,
input[type="button"]:active,
button:active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

input[type="submit"]:hover,
input[type="button"]:hover,
button:hover {
  background: #00b0f0;
}

label,
input[type="submit"],
input[type="button"] {
  font-size: 1.4rem;
  line-height: 3rem;
}

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


body:before {
  display: inline-block;
  vertical-align: middle;
  width: 0;
  /*height: 100%;*/
}

@media only screen and (min-width: 640px) {
  body:before {
    content: "";
    margin-left: -5px;
    margin-left: -0.5rem;
  }
}
/*
*
*
* Front Page
*
***/
.lr-hostr-container {
  text-indent: initial;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 640px;
}

@media only screen and (min-width: 640px) {
  .lr-hostr-container {
    padding: 0 20px;
    margin: 30px 0;
  }
}

@media only screen and (min-width: 780px) {
  .lr-hostr-container {
    max-width: 1020px;
    margin: 0;
  }
}

.lr-hostr-container .lr-hostr-frame {
  width: 100%;
  text-align: left;
  background: #fff;
  overflow: hidden;
  position: relative;
  /*Center recaptcha*/
}

@media only screen and (min-width: 640px) {
  .lr-hostr-container .lr-hostr-frame {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
    display: table;
  }
}

.lr-hostr-container .lr-hostr-frame .lr-frames {
  width: 100%;
  display: block;
  padding: 30px;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (min-width: 780px) {
  .lr-hostr-container .lr-hostr-frame .lr-frames {
    width: 50%;
    display: table-cell;
    padding: 60px 45px;
    position: relative;
  }
}

@media only screen and (min-width: 780px) {
  .lr-hostr-container .lr-hostr-frame .lr-frames.lr-social-login-frame {
    border-radius: 5px 0 0 5px;
  }
}

.lr-hostr-container .lr-hostr-frame .lr-frames.lr-social-login-frame {
  background: #fcfcfc;
}

.lr-hostr-container .lr-hostr-frame .lr-frames.lr-sample-background-enabled {
  /*
				* Change the background here.
				**/
  background: url("https://s3.amazonaws.com/devauth.lrcontent.com/dev/hosted-page/hosted-page-default-images/sample.png")
    center center #444;
  background-size: cover;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.lr-hostr-container .lr-hostr-frame .lr-frames.lr-sample-background-enabled .lr-social-login-message {
  font-weight: 600;
}

.lr-hostr-container .lr-hostr-frame .lr-frames .lr-form-frame#lr-raas-registartion,
.lr-hostr-container .lr-hostr-frame .lr-frames .lr-form-frame#lr-raas-forgotpassword,
.lr-form-frame#lr-raas-sociallogin,
.lr-form-frame#lr-raas-resetpassword {
  display: none;
}

.lr-hostr-container .lr-hostr-frame .lr-frames .lr-widget-container {
  margin-top: 30px;
}

.lr-hostr-container .lr-hostr-frame #loginradius-raas-recaptcha_widget > div > div {
  margin: 0 auto 15px;
}

.lr-hostr-container .lr-hostr-frame .lr-link-box {
  padding: 15px 0;
  margin-top: 30px;
  border-top: 1px solid #eee;
}

.lr-hostr-container .lr-hostr-frame .lr-link-box a {
  color: #29d;
}

.lr-hostr-container .lr-hostr-frame .lr-link-box a:nth-child(2) {
  float: right;
}
/*
*
*
* Modify User Registration CSS
*
***/
form[name*="loginradius-raas"] .loginradius-raas-validation-message {
  margin-bottom: 15px;
  color: #f22613;
  border-radius: 5px;
  font-size: 1.4rem;
  line-height: 3rem;
}
/*
*
*
* The notification that goes on the very top
*
***/
#lr-raas-message.loginradius-raas-success-message {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  font-weight: 600;
  background-color: rgba(34, 153, 221, 0.8);
  padding: 10px 20px;
  z-index: 1000;
}

#lr-raas-message.loginradius-raas-error-message {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  font-weight: 600;
  background-color: #f73e2d;
  padding: 10px 20px;
  z-index: 1000;
}

#lr-raas-message:empty {
  display: none;
}
/*
*
*
* Profile stuff
***/
.lr-hostr-logged-in .lr-profile-frame {
  position: relative;
}

.lr-hostr-logged-in .lr-profile-frame .lr-profile-image {
  width: 150px;
  height: 150px;
  margin: 30px auto 0;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.8);
  clear: both;
}

.lr-hostr-logged-in .lr-profile-frame .lr-profile-image img {
  width: 100%;
}

@media only screen and (min-width: 780px) {
  .lr-hostr-logged-in .lr-profile-frame .lr-profile-image {
    margin-top: 40px;
  }
}

.lr-hostr-logged-in .lr-profile-frame .lr-profile-name {
  margin-bottom: 0;
  text-align: center;
}

.lr-hostr-logged-in .lr-profile-frame .lr-profile-info p {
  font-size: 1.6rem;
  line-height: 2rem;
  margin: 0;
  text-align: center;
}

.lr-hostr-logged-in .lr-link-social-container {
  max-width: 360px;
  margin: 30px auto;
}

.lr-hostr-logged-in .lr-link-social-container .lr-heading {
  margin-bottom: 15px;
}

.lr-hostr-logged-in .lr-link-social-container .lr-social-icon {
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  width: 4rem;
  height: 4rem;
  border-radius: 3px;
  cursor: pointer;
  margin: 0 5px 0 0;
}

.lr-hostr-logged-in .lr-link-social-container .lr-linked-social-frame .lr-social-account {
  position: relative;
  margin: 10px 5px;
}

.lr-hostr-logged-in .lr-link-social-container .lr-linked-social-frame .lr-social-account .lr-social-unlink {
  opacity: 0.8;
  display: inline-block;
  padding: 0 10px;
  height: 2.4rem;
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: center;
  border-radius: 20px;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #fff;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  transform: translatey(-50%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.lr-hostr-logged-in .lr-link-social-container .lr-linked-social-frame .lr-social-account .lr-social-unlink:hover {
  opacity: 1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  border-color: #f22613;
  background: #f22613;
}

.lr-hostr-logged-in .lr-link-social-container .lr-not-linked-social-frame .lr-social-icon {
  margin: 5px;
}

.lr-hostr-logged-in .lr-more-info-container {
  vertical-align: top;
}

@media only screen and (min-width: 780px) {
  .lr-hostr-logged-in .lr-more-info-container.lr-frames {
    padding: 0;
  }
}

.lr-hostr-logged-in .lr-more-info-container .lr-more-info-frame {
  overflow-y: auto;
  overflow-x: none;
  min-height: 540px;
}

@media only screen and (min-width: 780px) {
  .lr-hostr-logged-in .lr-more-info-container .lr-more-info-frame {
    padding: 30px 45px;
    max-height: 600px;
  }
}

.lr-hostr-logged-in .lr-more-info-container .lr-more-info-heading {
  position: relative;
}

.lr-hostr-logged-in .lr-more-info-container .lr-more-info-heading .lr-button {
  position: absolute;
  top: 5px;
  top: 0.5rem;
  right: 0;
  font-size: 1.4rem;
  line-height: 2.5rem;
}

.lr-hostr-logged-in .lr-more-info-container .lr-content-section {
  border-top: 1px solid #eee;
  padding: 15px 0;
}

@media only screen and (min-width: 780px) {
  .lr-hostr-logged-in .lr-more-info-container .lr-content-section {
    margin: 0 -10px;
  }
}

.lr-hostr-logged-in .lr-more-info-container .lr-content-section .lr-heading {
  margin: 0 0 5px;
}

@media only screen and (min-width: 780px) {
  .lr-hostr-logged-in .lr-more-info-container .lr-content-section .lr-heading {
    margin: 0 10px 5px;
  }
}

.lr-hostr-logged-in .lr-more-info-container .lr-content-section .lr-content-group {
  width: 100%;
  margin: 10px 0;
}

@media only screen and (min-width: 780px) {
  .lr-hostr-logged-in .lr-more-info-container .lr-content-section .lr-content-group {
    padding: 0 10px;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media only screen and (min-width: 640px) {
  .lr-hostr-logged-in .lr-more-info-container .lr-content-section .lr-content-group {
    width: 50%;
    float: left;
  }
}

.lr-hostr-logged-in .lr-more-info-container .lr-content-section .lr-content-group .lr-label {
  color: #888;
}

.lr-hostr-logged-in .lr-more-info-container .lr-content-section .lr-content-group .lr-data {
  word-break: break-word;
}

.lr-hostr-logged-in .lr-more-info-container .lr-account-settings {
  font-size: 1.4rem;
  line-height: 2.5rem;
}

.lr-hostr-logged-in .lr-edit-profile .lr-editable-fields-frame {
  margin: 0;
}

@media only screen and (min-width: 640px) {
  .lr-hostr-logged-in .lr-edit-profile .lr-editable-fields-frame {
    margin: 0 -5px;
  }
}

.lr-hostr-logged-in .lr-edit-profile .lr-editable-fields-frame .loginradius-raas-form-element-content {
  display: block;
  margin-bottom: 15px;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.lr-hostr-logged-in
  .lr-edit-profile
  .lr-editable-fields-frame
  .loginradius-raas-form-element-content
  .loginradius-raas-form-element-content
  > label {
  color: #888;
}

@media only screen and (min-width: 640px) {
  .lr-hostr-logged-in .lr-edit-profile .lr-editable-fields-frame .loginradius-raas-form-element-content {
    width: 50%;
    float: left;
    padding: 0 5px;
  }
}

.lr-hostr-logged-in .lr-edit-profile .lr-editable-fields-frame .lr-action-box-frame {
  text-align: right;
}

.lr-hostr-logged-in .lr-edit-profile .lr-editable-fields-frame .lr-action-box-frame .submit-loginradius-raas-Update,
.lr-hostr-logged-in .lr-edit-profile .lr-editable-fields-frame .lr-action-box-frame .lr-cancel {
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: 600;
  display: inline-block;
  width: auto;
  padding: 0 10px;
  min-width: 90px;
  text-align: center;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.lr-hostr-logged-in .lr-account-settings .lr-more-info-heading .lr-close {
  position: absolute;
  top: 0.4rem;
  right: 0;
  font-size: 3rem;
  line-height: 3rem;
  cursor: pointer;
  z-index: 10;
}

.lr-hostr-logged-in .lr-account-settings .lr-account-settings-frame {
  padding: 30px 0;
  border-top: 1px solid #eee;
}

.lr-hostr-logged-in .lr-account-settings .lr-account-settings-frame p {
  margin-top: 0;
}

.lr-hostr-logged-in .lr-account-menu {
  position: absolute;
  top: 20px;
  left: 30px;
}

@media only screen and (min-width: 780px) {
  .lr-hostr-logged-in .lr-account-menu {
    left: 60px;
    top: 40px;
  }
}

.lr-hostr-logged-in .lr-account-menu .lr-menu-button {
  font-size: 3.6rem;
  line-height: 6rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}

.lr-hostr-logged-in .lr-account-menu .lr-menu-button:before {
  content: "";
  width: 0.8em;
  height: 0.125em;
  border-top: 0.375em double #fff;
  border-bottom: 0.125em solid #fff;
  position: absolute;
}

.lr-hostr-logged-in .lr-account-menu .lr-menu-list-frame {
  display: none;
  background: #fff;
  color: #444;
  text-shadow: none;
}

.lr-hostr-logged-in .lr-account-menu .lr-menu-list-frame .lr-menu-list {
  display: block;
  font-size: 1.8rem;
  line-height: 3rem;
  padding: 10px 25px 10px 20px;
  border-bottom: 1px solid #eee;
  color: #444;
  text-decoration: none;
  -webkit-transition: all 200ms cubic-bezier(0.51, 0.01, 0.52, 0.99);
  transition: all 200ms cubic-bezier(0.51, 0.01, 0.52, 0.99);
}

.lr-hostr-logged-in .lr-account-menu .lr-menu-list-frame .lr-menu-list:hover {
  background: #fcfcfc;
  padding: 10px 20px 10px 25px;
  text-decoration: none;
}

.lr-hostr-logged-in .lr-more-menu-contents {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 100%;
  background: #fff;
  border-left: 1px solid #eee;
  padding: 30px;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: left 700ms cubic-bezier(0.41, 0.07, 0.21, 0.99);
  transition: left 700ms cubic-bezier(0.41, 0.07, 0.21, 0.99);
  overflow-y: auto;
  overflow-x: none;
  -webkit-overflow-scrolling: touch;
}

@media only screen and (min-width: 780px) {
  .lr-hostr-logged-in .lr-more-menu-contents {
    position: absolute;
    padding: 30px 45px;
    max-height: 600px;
  }
}

.lr-hostr-logged-in .lr-more-menu-contents.lr-show {
  left: 0;
}
/*
*
*
* Social Login Style
*
***/
.lr-sl-shaded-brick-frame {
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
  color: #fff;
}

.lr-sl-shaded-brick-frame:empty {
  display: none;
}

.lr-sl-shaded-brick-frame .lr-sl-shaded-brick-button {
  display: inline-block;
  width: 100%;
  height: 4.2rem;
  line-height: 4.2rem;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  /*Effects*/
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3), inset 0 -10px 20px -1px rgba(0, 0, 0, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0 5px;
  padding-left: 5.2rem;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  text-shadow: none;
}

.lr-sl-shaded-brick-frame .lr-sl-shaded-brick-button:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.3), inset 0 -10px 20px 3px rgba(0, 0, 0, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 5px 5px -2px rgba(0, 0, 0, 0.3);
}

.lr-sl-shaded-brick-frame .lr-sl-shaded-brick-button:active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

@media only screen and (min-width: 640px) {
  .lr-sl-shaded-brick-frame .lr-sl-shaded-brick-button {
    padding-left: 5px;
    text-align: center;
  }
}

.lr-sl-shaded-brick-frame .lr-sl-shaded-brick-button:after {
  /*This gets the data-label and uses it as text*/
  content: attr(data-label);
  display: inline-block;
}

@media only screen and (min-width: 400px) {
  .lr-sl-shaded-brick-frame .lr-sl-shaded-brick-button:after {
    content: attr(data-label-short);
    margin-left: 10px;
  }
}

.lr-sl-shaded-brick-frame .lr-sl-shaded-brick-button:hover {
  position: relative;
  z-index: 2;
}

.lr-sl-shaded-brick-frame .lr-sl-shaded-brick-button .lr-sl-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 4.2rem;
  height: 4.2rem;
}
/*
*
*
* Social Icon Style
*
***/
.lr-sl-icon {
  display: inline-block;
  text-align: center;
}

.lr-sl-icon:before,
.lr-sl-icon:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
}
[class*="lr-flat-"] {
  background-color: #3b5998;
}
.lr-sl-icon:before {
  width: 32px;
  height: 32px;
  background: url("https://s3.amazonaws.com/devauth.lrcontent.com/dev/hosted-page/hosted-page-default-images/icon-sprite-32.png");
  /*Image fallback for ie8*/
  background-image: -webkit-linear-gradient(transparent, transparent),
    url("https://s3.amazonaws.com/devauth.lrcontent.com/dev/hosted-page/hosted-page-default-images/icon-sprite.svg"),
    none;
  background-image: linear-gradient(transparent, transparent),
    url("https://s3.amazonaws.com/devauth.lrcontent.com/dev/hosted-page/hosted-page-default-images/icon-sprite.svg"),
    none;
  /*SVG for scalability. Good for high resolution screens/retina*/
  background-size: 100% 3600%;
  background-position: 0 0;
  margin-top: -0.4rem;
}

.lr-sl-icon:after {
  height: 100%;
  width: 0;
}

.lr-sl-icon-pinterest:before {
  background-position: 0 -0.2%;
}

.lr-flat-line {
  background-color: #27c327;
}

.lr-flat-pinterest {
  background-color: #cb2128;
}


.lr-sl-icon-facebook:before {
  background-position: 0px 2.1%;
}

.lr-sl-icon-googleplus:before {
  background-position: 0px 5%;
}

.lr-sl-icon-linkedin:before {
  background-position: 0px 7.1%;
}

.lr-sl-icon-twitter:before {
  background-position: 0px 9.3%;
}

.lr-sl-icon-yahoo:before {
  background-position: 0px 11.8%;
}

.lr-sl-icon-amazon:before {
  background-position: 0px 14.1%;
}

.lr-sl-icon-aol:before {
  background-position: 0px 16.4%;
}

.lr-sl-icon-disqus:before {
  background-position: 0px 18.9%;
}

.lr-sl-icon-foursquare:before {
  background-position: 0px 21.3%;
}

.lr-sl-icon-github:before {
  background-position: 0px 23.7%;
}

.lr-sl-icon-hyves:before {
  background-position: 0px 26.1%;
}

.lr-sl-icon-instagram:before {
  background-position: 0px 28.6%;
}

.lr-sl-icon-kaixin:before {
  background-position: 0px 30.8%;
}

.lr-sl-icon-live:before {
  background-position: 0px 33.3%;
}

.lr-sl-icon-livejournal:before {
  background-position: 0px 35.5%;
}

.lr-sl-icon-mixi:before {
  background-position: 0px 38.1%;
}

.lr-sl-icon-odnoklassniki:before {
  background-position: 0px 40.5%;
}

.lr-sl-icon-orange:before {
  background-position: 0px 44%;
}

.lr-sl-icon-openid:before {
  background-position: 0px 45.3%;
}

.lr-sl-icon-paypal:before {
  background-position: 0px 47.7%;
}

.lr-sl-icon-persona:before {
  background-position: 0px 51.2%;
}

.lr-sl-icon-pinterest:before {
  background-position: 0px 52.5%;
}

.lr-sl-icon-qq:before {
  background-position: 0px 54.9%;
}

.lr-sl-icon-renren:before {
  background-position: 0px 57.3%;
}

.lr-sl-icon-salesforce:before {
  background-position: 0px 59.6%;
}

.lr-sl-icon-sinaweibo:before {
  background-position: 0px 61.8%;
}

.lr-sl-icon-stackexchange:before {
  background-position: 0px 64.4%;
}

.lr-sl-icon-steamcommunity:before {
  background-position: 0px 66.9%;
}

.lr-sl-icon-verisign:before {
  background-position: 0px 69.2%;
}

.lr-sl-icon-virgilio:before {
  background-position: 0px 71.6%;
}

.lr-sl-icon-vkontakte:before {
  background-position: 0px 73.9%;
}

.lr-sl-icon-wordpress:before {
  background-position: 0px 76.2%;
}

.lr-sl-icon-mailru:before {
  background-position: 0px 78.67%;
}

.lr-sl-icon-xing:before {
  background-position: 0px 81.2%;
}

.lr-sl-icon-delicious:before {
  background-position: 0px 85.5%;
}

.lr-sl-icon-digg:before {
  background-position: 0px 88%;
}

.lr-sl-icon-email:before {
  background-position: 0px 92.5%;
}

.lr-sl-icon-google-bookmark:before {
  background-position: 0px 92.8%;
}

.lr-sl-icon-print:before {
  background-position: 0px 95.1%;
}

.lr-sl-icon-reddit:before {
  background-position: 0px 97.7%;
}

.lr-sl-icon-tumblr:before {
  background-position: 0px 97.2%;
}

.lr-sl-icon-myspace:before {
  background-position: 0px 90.3%;
}

.lr-sl-icon-google:before {
  background-position: 0px 4.5%;
}
.lr-sl-icon-line:before {
  background-position: 0px 100.3%;
}

.lr-flat-amazon {
  background-color: #f90;
}

.lr-flat-aol {
  background-color: #066cb1;
}

.lr-flat-disqus {
  background-color: #35a8ff;
}

.lr-flat-facebook {
  background-color: #3b5998;
}

.lr-flat-foursquare {
  background-color: #1cafec;
}

.lr-flat-github {
  background-color: #181616;
}

.lr-flat-google {
  background-color: #dd4b39;
}

.lr-flat-googleplus {
  background-color: #dd4b39;
}

.lr-flat-hyves {
  background-color: #f9a539;
}

.lr-flat-instagram {
  background-color: #406e94;
}

.lr-flat-kaixin {
  background-color: #bb0e0f;
}

.lr-flat-linkedin {
  background-color: #007bb6;
}

.lr-flat-live {
  background-color: #004c9a;
}

.lr-flat-livejournal {
  background-color: #3770a3;
}

.lr-flat-mixi {
  background-color: #d1ad5a;
}

.lr-flat-myspace {
  background-color: #313131;
}

.lr-flat-odnoklassniki {
  background-color: #f69324;
}

.lr-flat-openid {
  background-color: #f7921c;
}

.lr-flat-orange {
  background-color: #f60;
}

.lr-flat-paypal {
  background-color: #13487b;
}

.lr-flat-persona {
  background-color: #e0742f;
}

.lr-flat-qq {
  background-color: #29d;
}

.lr-flat-renren {
  background-color: #005baa;
}

.lr-flat-salesforce {
  background-color: #9cd3f2;
}

.lr-flat-stackexchange {
  background-color: #4ba1d8;
}

.lr-flat-steamcommunity {
  background-color: #666;
}

.lr-flat-tumblr {
  background-color: #32506d;
}

.lr-flat-twitter {
  background-color: #55acee;
}

.lr-flat-verisign {
  background-color: #0261a2;
}

.lr-flat-virgilio {
  background-color: #eb6b21;
}

.lr-flat-vkontakte {
  background-color: #45668e;
}

.lr-flat-sinaweibo {
  background-color: #bb3e3e;
}

.lr-flat-wordpress {
  background-color: #21759c;
}

.lr-flat-yahoo {
  background-color: #400090;
}

.lr-flat-xing {
  background-color: #007072;
}

.lr-flat-mailru {
  background-color: #1897e6;
}

#lr-social-login .lr-sl-shaded-brick-frame {
  width: 100%;
  display: inline-block;
}

.lr-loading-screen-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 10;
  text-align: center;
}

.lr-loading-screen-overlay:before {
  content: "";
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}

.lr-loading-screen-overlay .load-dot {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  margin: 0 5px;
  background: #29d;
  -webkit-animation: shapes 1s ease-in-out infinite;
  animation: shapes 1s ease-in-out infinite;
  -webkit-transform: translatey(-5px);
  -ms-transform: translatey(-5px);
  transform: translatey(-5px);
  border-radius: 50%;
}

.lr-loading-screen-overlay .load-dot:nth-child(3) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.lr-loading-screen-overlay .load-dot:nth-child(2) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.lr-loading-screen-overlay .load-dot:nth-child(1) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

@-webkit-keyframes shapes {
  0% {
    -webkit-transform: translatey(-5px);
    transform: translatey(-5px);
  }

  50% {
    -webkit-transform: translatey(5px);
    transform: translatey(5px);
    background: #00427c;
  }

  100% {
    -webkit-transform: translatey(-5px);
    transform: translatey(-5px);
  }
}

@keyframes shapes {
  0% {
    -webkit-transform: translatey(-5px);
    transform: translatey(-5px);
  }

  50% {
    -webkit-transform: translatey(5px);
    transform: translatey(5px);
    background: #00427c;
  }

  100% {
    -webkit-transform: translatey(-5px);
    transform: translatey(-5px);
  }
}

.loginradius-errormessage {
  color: red;
}

div.lr-widget-container div.field label.field-title {
  display: inline-block;
  width: 120px;
}
#loginradius-login-stayLogin {
  margin-right: 5px;
  vertical-align: middle;
}

/* New css */

.header {
  background-color: white;
  min-height: 80px;
  display: flex;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header img {
  max-width: 200px;
  height: 40px;
  vertical-align: middle;
}
.header a {
  color: #020b13;
  font-weight: 700;
  font-size: 1.6rem;
  text-decoration: none;
}
.header a:hover {
  color: #008ecf;
}
.container {
  max-width: 1170px;
  padding: 0 30px;
  margin: 0 auto;
  width: 100%;
}
.content {
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  background: #fff;
}
.lr-profile-tab input[type="radio"] {
  display: none;
}
.lr-profile-tab > label {
  display: block;
  float: left;
  padding: 0 16px 16px 16px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: normal;
  position: relative;
}
.lr-profile-tab input:checked + label {
  color: #008ecf;
  cursor: default;
}
.lr-profile-tab > label:hover {
  color: #008ecf;
}
.lr-profile-tab .tab {
  display: none;
  padding: 24px 0;
  clear: left;
  border-top: 2px solid #d1d3d4;
}
.lr-profile-tab input:nth-of-type(1):checked ~ .tab:nth-of-type(1),
.lr-profile-tab input:nth-of-type(2):checked ~ .tab:nth-of-type(2),
.lr-profile-tab input:nth-of-type(3):checked ~ .tab:nth-of-type(3) {
  display: block;
}
.content-left {
  max-width: 250px;
  padding-right: 1.6rem;
  text-align: left;
}
.content-right {
  width: calc(100% - 282px);
  padding-left: 1.6rem;
  border-left: 1px solid #ecedee;
}

.lr-profiletab-header {
  border-top: 2px solid #d1d3d4;
}
.lr-profile-tab input:checked + label:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #008ecf;
}
.content-left img {
  max-width: 250px;
  min-width: 250px;
}
#profile-editor-container {
  display: none;
}
h1.lr-profile-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
}
h3 {
  font-size: 20px;
  font-weight: 600;
}
.lr-social-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
div#lr-linked-social {
  margin-bottom: 40px;
}
div#lr-linked-social h3,
#lr-not-linked-social h3 {
  margin-bottom: 20px;
}
.tab {
  text-align: left;
}
.tab h2 {
  font-size: 24px;
  font-weight: 600;
}
a.lr-menu-list {
  font-weight: 600;
}
.lr-account-settings form:not(input[type="submit"]) {
  min-width: 400px;
}
.lr-account-settings label {
  display: block;
}
.loginradius--form-element-content {
  margin-bottom: 20px;
}
.lr-more-info-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.lr-content-group {
  margin-bottom: 24px;
}
input:disabled {
  background: #e8e9ea;
}
.lr-action-box {
  margin-top: 24px;
}
.lr-profile-information p {
  margin: 0;
}
.lr-profile-information {
  margin-bottom: 40px;
}
a.unlink-btn {
  display: inline-block;
  padding: 0 10px;
  background: #29d;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}
input#loginradius-close-update-profile {
  min-width: 100px;
  color: #29d;
  background: transparent;
  margin-left: 0.5rem;
}
input#loginradius-close-update-profile:hover {
  background: #f2f2f2;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
    width: calc(100% - 40px);
  }
  .content {
    flex-direction: column;
    padding: 2rem 1.6rem;
    margin: 2rem 0;
  }
  .content-left {
    padding-right: 0;
  }
  .content-right {
    width: 100%;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #ecedee;
    padding-top: 24px;
  }
  .lr-profile-tab > label {
    padding: 0 8px 16px 8px;
    font-size: 1.3rem;
  }
  input:not([type="submit"]) {
    min-width: 100%;
  }
  .lr-account-settings form:not(input[type="submit"]) {
    min-width: 100%;
  }
}
.container .content .content-right input:not([type="submit"]),
.container .content .content-right input:not([type="button"]) {
  max-width: 400px;
}
.container .content .content-right input[type="submit"],
.container .content .content-right input[type="button"] {
  width: auto;
  box-shadow: none;
}
.container .content .content-right .lr-button.outline-grey {
  background: #29d;
  color: #fff;
  border: 0;
}
.container .content .content-right input[type="submit"]:hover,
.container .content .content-right input[type="button"]:hover {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.container .content .content-right input[type="submit"]:hover,
.container .content .content-right input[type="button"]:hover,
.container .content .content-right button:hover {
  background: #00b0f0;
}
.container .content .content-right .lr-button {
  padding: 5px 15px;
  font-size: 1.4rem;
  line-height: 3rem;
  font-weight: 600;
}
.container .content .content-right h5 {
  text-transform: capitalize;
}
.organization-box .lr-logo {
  margin-bottom: 24px;
}
.organization-box-inner {
  background: #fff;
  padding: 56px 24px;
  border-radius: 12px;
}
.organization-box p {
  margin-bottom: 32px;
}
div#organization-container {
  text-align: left;
}
div.organization-box:before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: -1;
}
div.organization-box {
  position: absolute;
  inset: 0;
  z-index: 999;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  color: #000;
  background: #fff;
}
.organization-box .lr-logo img {
  max-width: 200px;
}
.linked-account-wrap {
  display: flex;
  flex-wrap: wrap;
}
.linked-account-wrap .lr-sl-icon {
  margin-right: 0;
}
.linked-account-wrap .lr-not-linked-social-account {
  margin: 0 6px 8px 0;
}
.linked-account-wrap .lr-not-linked-social-account:nth-child(5n) {
  margin-right: 0;
}
