/*
=========================================================
DELA CSS
=========================================================
 * Innehåller styling för att dela en sida
 *
 * Copyright (C) Limepark AB.
 * https://limepark.se/licensvillkor
=========================================================*/

.lp-share-page {
  display: -webkit-box;
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;

  flex-wrap: wrap;
}

.lp-share-page__item {
  display: inline-block;
  margin: 0 1rem 0 0;
}

.lp-share-page__link {
  -webkit-box-align: center;
  align-items: center;
  background-color: #eee;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  height: 48px;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: all 150ms ease;
  transition: all 150ms ease;
  width: 48px;

  -webkit-box-pack: center;
  justify-content: center;
}

.lp-share-page__link:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.lp-share-page__link--facebook {
  background-color: #3d5b96;
}

.lp-share-page__link--twitter {
  background-color: #2098cb;
}

.lp-share-page__link--linkedin {
  background-color: #4392cc;
}

.lp-share-page__link--email {
  background-color: #555;
  font-size: 1.3em;
}
