#sl-sharing-screen-container *,
#sl-sharing-screen-container *:before,
#sl-sharing-screen-container *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

#sl-sharing-screen-container * {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-size: 18px;
  font-family: inherit;
  vertical-align: baseline;
  text-transform: initial;
  color: inherit;
  color: #000;
  outline: 0;
  line-height: 1.2;
  list-style: none;
  text-rendering: optimizeLegibility;
  float: none;
  -webkit-font-smoothing: antialiased !important;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  letter-spacing: normal;
}

#sl-sharing-screen-container, #sl-form {
  display: inline-block;
  width: 100%;
  max-width: 500px;
}

#sl-social-links-container {
  padding: 15px 10px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#sl-social-links-container > a {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  display: inline-block;
  margin: 5px;
  cursor: pointer;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  background-color: #ffffff;
}

#sl-social-links-container > a:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

#sl-sharing-social-facebook {
  background: url("");
}

#sl-sharing-social-twitter {
  background: url("");
}

#sl-sharing-social-whatsapp {
  background: url("");
}

#sl-sharing-social-facebook_messenger {
  background: url("");
}

#sl-sharing-social-email {
  background: url("");
}

#sl-sharing-social-linkedin {
  background: url("");
}

#sl-sharing-social-telegram {
  background: url("");
}

#sl-sharing-social-line {
  background: url("");
}

#sl-sharing-social-reddit {
  background: url("");
}

#sl-sharing-link-container, #sl-form {
  border: 2px solid #ccc;
  margin: 0 auto;
  width: 100%;
  padding: 0.25em;
  border-radius: 5px;
  background-color: #fff;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

#sl-sharing-link-container input, #sl-form input {
  font-size: 15px;
  padding: 5px 5px;
  line-height: 1;
  color: #222;
  background-color: #fff;
  border: none;
  height: auto;
  flex: 2 1 auto;
  align-self: auto;
  outline: none;
}

#sl-sharing-link-container button, #sl-form button {
  border-radius: 5px;
  font-size: 15px;
  text-transform: uppercase;
  padding: 0.55em 0.1em 0.5em;
  text-align: center;
  font-weight: 700;
  border: none;
  letter-spacing: 0.5px;
  color: #fff;
  flex: 1 1 auto;
  align-self: auto;
}

#sl-sharing-link-container button:hover, #sl-form button:hover {
  cursor: pointer;
}

/*Messages*/
#sl-popup-container {
  list-style: none;
  position: fixed;
  z-index: 9999999999999;
  top: 20px;
  right: 20px;
  padding: 0;
  margin: 0;
}

#sl-popup-container .sl-popup-item {
  position: relative;
  display: flex;
  background: #34495e;
  color: #fff;
  border-radius: 5px;
  margin-bottom:  15px;
  width: 550px;
  max-width: 95%;
  padding: 20px;
  text-align: left;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,.3);
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: initial;
  animation-fill-mode: initial;
  -webkit-transition-delay: 0s, 500ms;
    -moz-transition-delay: 0s, 500ms;
    -o-transition-delay: 0s, 500ms;
    transition-delay: 0s, 500ms;
}

#sl-popup-container .sl-popup-icon {
  background-size: 80% auto;
  background-repeat: no-repeat;
  margin: 0 10px 0 0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

#sl-popup-container .sl-popup-close {
  background-image: url("");
  background-size: cover;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10px;
  top: 10px;
  opacity: 0.5;
}

#sl-popup-container .sl-popup-close:hover {
  opacity: 1;
  cursor: pointer;
}

#sl-popup-container .sl-popup-success-icon {
  background-image: url("");
}

#sl-popup-container .sl-popup-warning-icon {
  background-image: url("");
}

#sl-popup-container .sl-popup-error-icon {
  background-image: url("");
}

#sl-popup-container .sl-popup-text-container {
  color: #dedede;
  font-size: 14px;
  width: 78%;
  min-height: 50px;
  vertical-align: middle;
  flex: 1 1 0%;
}

#sl-popup-container .sl-popup-text-container h3 {
  color: white;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 4px 0;
  display: block;
}

#sl-popup-container .sl-popup-text-container p {
  color: #dedede;
  font-size: 14px;
  margin: 0 0 10px;
}

#sl-popup-container a {
  color: #4692e3;
  text-decoration: underline;
}

#sl-popup-warning-button {
  margin-top: 20px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #dedede;
  font-size: 14px;
}

#sl-popup-warning-button:before {
  content: 'ⓧ';
  padding-right: 3px;
}

#sl-popup-warning-button:hover {
  color: #fff;
  cursor: pointer;
}







/* Widgets Preflight  */
.sl-widget-body *, .sl-widget-body ::before, .sl-widget-body ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  font-family: var(--sl-widgets-font-family);
  font-weight: 400;
  text-align: left;
  color: rgb(15 23 42);
  padding: 0;
}

.sl-widget-body h1, .sl-widget-body h2, .sl-widget-body h3 {
  font-family: inherit;
  font-weight: 700;
  color: var(--sl-widgets-referral-hub-headers-color);
  margin: 0;
}

.sl-widget-body p {
  font-size: var(--sl-widgets-base-unit); /* 16px */
}

.sl-widget-body a {
  color: inherit;
  text-decoration: inherit;
}

.sl-widget-body input, .sl-widget-body .sl-button {
  appearance: none;
  -webkit-appearance: button;
  outline: none;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  text-transform: none;
  background-image: none;
}

  .sl-widget-body input::placeholder, .sl-widget-body textarea::placeholder {
    opacity: 1;
    color: #9ca3af;
  }

.sl-widget-body p {
  margin: 0;
  font-size: var(--sl-widgets-base-unit);
}

.sl-widget-body ol, .sl-widget-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* --- Input elements ---- */
.sl-widget-body input, .sl-widget-body .sl-button {
  border-radius: calc(var(--sl-widgets-base-unit) * 0.25); /* 4px */
  padding: calc(var(--sl-widgets-base-unit) / 2); /* 8px */
  font-size: var(--sl-widgets-base-unit); /* 16px */
  -webkit-font-smoothing: antialiased !important;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}

.sl-widget-body input {
  border-width: 1px;
  border-color: rgb(209 213 219 / 1);
  background-color: #fff;
}

  .sl-widget-body input:focus {
    border-color: var(--sl-widgets-referral-hub-primary-color);
  }

  .sl-widget-body input::placeholder {
    opacity: 1;
    color: #9ca3af;
  }

.sl-widget-body .sl-button {
  cursor: pointer;
  text-align: center;
  color: #fff !important;
  padding: calc((var(--sl-widgets-base-unit) / 2) + 1px); /* 9px */
  border: none;
}

  .sl-widget-body .sl-button:active, .sl-widget-body .sl-button:disabled {
    opacity: 40%;
  }

  .sl-widget-body .sl-button:disabled {
    pointer-events: none;
  }

/* Powered by */
#sl-hub-powered-by {
  display: none;
  padding: calc(var(--sl-widgets-base-unit) / 2); /* 8px */;
  justify-content: center;
}

  #sl-hub-powered-by a {
    font-size: calc(var(--sl-widgets-base-unit) * 0.75); /* 12px */
    color: rgb(100 116 139);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    opacity: 0.6;
  }

    #sl-hub-powered-by a:hover {
      opacity: 1;
    }

/* Transition effects */
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.sl-zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.sl-zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.sl-fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: initial;
  animation-fill-mode: initial;
  -webkit-transition-delay: 0s, 500ms;
    -moz-transition-delay: 0s, 500ms;
    -o-transition-delay: 0s, 500ms;
    transition-delay: 0s, 500ms;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

.sl-fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

@-webkit-keyframes slideInUpCenter {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(-50%, 100%, 0);
    visibility: visible;
  }

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

@keyframes slideInUpCenter {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(-50%, 100%, 0);
    visibility: visible;
  }

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

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
}

.sl-fadeOutLeft {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
}

.sl-fadeOutRight {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight
}

/* Checkmark style starts */
@keyframes bottomCheck {
  0% {
    height: 0;
  }
  100% {
    height: calc(var(--sl-widgets-base-unit) * 0.5) /* 8px */
  }
}

@keyframes upCheck {
  0% {
    height: 0;
  }
  50% {
    height: 0;
  }
  100% {
    height: calc(var(--sl-widgets-base-unit) * 0.875) /* 14px */
  }
}

@media only screen and (min-width: 1024px) {
  #sl-hub-powered-by {
    display: flex;
  }
}
