:root {
  --red: #dd212f;
  --red-light: #f39583;
  --gray: #808b91;
}

body.tpl-10 {
  background-color: var(--red);
}
.linklistContainer {
  background-color: #fff;
  padding: 2rem 2rem;
  justify-content: center;
  margin-top: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
}

.linklist-header {
  font-size: 1rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  text-align: center;
}

.linklist-header .logo {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.linklist-header .linklist-title {
  margin-top: 0;
}

.linklist-header .linklist-social {
  margin-top: 0.5rem;
  display: flex;
  align-content: space-evenly;
}

.linklist-header .linklist-social a {
  display: flex;
}

.linklist-header .linklist-social a svg {
  height: 24px;
  width: 24px;
  color: var(--red);
}
.linklist-header a:hover svg {
    color: var(--gray);
}

.linklist-header .linklist-social a:hover svg path {
  fill: rgba(var(--accent), 0.65);
}

.linklist-header .linklist-social a:not(:last-child) {
  margin-right: 1rem;
}

.linklist-appstores {
    color: #000;
    background-color: #f8f8f8;
    border: 1px solid #dbdbdb;
    font-size: 0.9rem;
    border-radius: .5rem;
    padding: .5rem 0 1rem 0;
    font-weight: bold;
    margin-top: 1rem;
}
.linklist-appstores svg {
    width: 24px;
    height: 24px;
    color: var(--red);
}
.linklist-appstores a:first-child {
    margin-right: 2rem
}
.linklist-appstores a:hover svg {
    color: var(--gray);
}

.linklist-desc {
  color: #000;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
}

.linklist-desc p {
  line-height: inherit;
  margin-bottom: 0;
}

.linklist-video {
  margin-bottom: 2rem;
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}

.linklist-video iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.linklist-video iframe:not([src]) {
  display: none;
}

.linklist-video .video-consent {
  background-color: #000;
  color: #888; /* Replace $gray */
  font-size: 0.8rem;
  text-align: center;
  z-index: 1;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  text-decoration: none;
  transition: all 0.5s;
}

.linklist-video .video-consent:hover {
  background-color: rgba(var(--accent), 0.65);
  color: #fff;
}

.linklist .link-item {
  align-items: center;
  background-color: #efefef;
  border-radius: 8px;
  display: flex;
  margin-bottom: 1rem;
  padding: 0.25rem;
  text-decoration: none;
  transition: all 0.5s;
}

.linklist .link-item:hover {
  background-color: #dbdbdb;
  transform: scale(1.05);
}

.linklist .link-item img {
  height: auto;
  margin-right: 1rem;
  max-width: 48px;
}

.linklist .link-item .info {
  flex-grow: 1;
  line-height: 1;
  text-align: center;
}

.linklist .link-item .info .title {
  color: #000;
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 0.25rem;
}

.linklist .link-item .info .desc {
  color: #888;
  font-size: 0.8rem;
}
