

/*
=========================================================
QUICK LINKS CSS
=========================================================
 * Innehåller styling av snabblänksmeny
 *
 * Copyright (C) Limepark AB.
 * https://limepark.se/licensvillkor
=========================================================*/


/*
---------------------------------------------------------
SNABBLÄNKSMENY
---------------------------------------------------------*/

.lp-quick-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  margin: 0 -1rem;
  padding: 0;

  flex-wrap: wrap;
}

.lp-quick-links li {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  margin: 0 0 2rem;
  padding: 0 1rem;
  width: 50%;

  -webkit-box-flex: 1;
  flex: 1 0 auto;
  flex-flow: column wrap;
}

.lp-quick-links a {
  -webkit-box-align: center;
  align-items: center;
  border: 1px solid #d0cbc2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: start;
  font-size: 1.4rem;
  padding: 1.2rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;

  -webkit-box-flex: 1;
  -webkit-box-pack: start;
  flex: 1 1 auto;
  justify-content: flex-start;
}

.lp-quick-links a:hover {
  text-decoration: underline;
}

.lp-quick-links .lp-icon {
  color: #86bc24;
  display: block;
  font-size: 3rem;
  margin: 0.2rem 1.2rem 0.2rem 0.2rem;
  transition: all 0.3s ease;

  -webkit-box-flex: 0;
  flex-grow: 0;
  -ms-flex-positive: 0;
}

.lp-quick-links a:hover .lp-icon {
  color: #6da30b;
}
