/*
=========================================================
Browse Aloud
=========================================================
 * Styling for the Browse Aloud buttons.
 *
 * Limepark AB, 2017
=========================================================*/

.lp-browse-aloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px auto;
  max-width: 600px;
  padding: 0 15px;
}

.lp-browse-aloud__button {
  background-color: #3c71b6;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0;
          flex: 1 1 0;
  font-family: 'Open Sans';
  padding: 14px;
  text-align: center;
}

.lp-browse-aloud .lp-browse-aloud__button {
  color: #fff;
  text-decoration: none;
}

.lp-browse-aloud__button + .lp-browse-aloud__button {
  margin: 0 0 0 20px;
}


/*
---------------------------------------------------------
RESPONSIVE - Följsamma anpassningar
---------------------------------------------------------*/

/* Mobile */
@media screen and (max-width: 667px) {
  .lp-browse-aloud {
    display: block;
  }

  .lp-browse-aloud .lp-browse-aloud__button {
    box-sizing: border-box;
    margin: 15px 0;
    width: 100%;
  }
}
