.bg-landing {
  background-image: url('../../assets/img/landing-showdaily/bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: table;
  width: 100%;
  height: 100vh;
}

.landing h1 {
  font-size: 32px;
  font-weight: 700;
}

@media only screen and (min-width: 420px) {
  .landing h1 {
    font-size: 40px;
  }
}

@media only screen and (min-width: 768px) {
  .landing h1 {
    font-size: 50px;
  }
}

@media only screen and (min-width: 992px) {
  .landing h1 {
    font-size: 60px;
  }
}

.landing img.button {
  max-height: 400px;
}

@media only screen and (min-width: 768px) {
  .landing img.button {
    /*max-height: 320px;*/
  }
}

.landing .btn-img-logo:hover img, .landing .btn-img-logo:active img, .landing .btn-img-logo:focus img {
  transform: scale(1.03);
  filter: saturate(1.5);
  filter: brightness(105%);
}

.animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

.showdaily .maxwidth {
  max-width: 600px;
}

@media only screen and (min-width: 992px) {
  .showdaily .maxwidth {
    max-width: unset;
  }
}

.showdaily .white-pad {
  /*background-color: #fff;*/
  padding: 15px;
  border-radius: 20px;
  border: 2px solid #dddddd;
  box-shadow: 0 0 18px rgba(0,0,0,0.6);
  min-height: unset;
  max-width: 320px;
  margin: 10px auto;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.showdaily .logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 20px;
  margin-bottom: 0;
  margin-top: 0;
}

@media only screen and (min-width: 992px) {
  .showdaily .logo-wrap {
    min-height: 130px;
    margin-bottom: 20px;
    margin-top: 15px;
  }
}

.showdaily .list-wrap {
  /*border: 2px solid #e6e6e6;*/
  border-radius: 15px;
  padding: 15px 10px;
  /*max-width: 250px;*/
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
}

@media only screen and (min-width: 992px) {
  .showdaily .list-wrap {
    margin-bottom: 35px;
  }
}

.showdaily .list-wrap .title {
  color: #fff;
  text-shadow: 0 0 3px rgba(0,0,0,1);
}

.showdaily ul.number {
  list-style: none;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
}

.showdaily ul.number li a {
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 28px;
  transition: all 0.3s;
}

@media only screen and (min-width: 992px) {
  .showdaily ul.number li a {
    font-size: 30px;
    line-height: 40px;
  }
}

.showdaily ul.number li {
  padding: 5px;
  border-radius: 8px;
  width: 38px;
  height: 38px;
  text-align: center;
  margin: 4px;
  position: relative;
  box-shadow: 4px 4px 6px rgba(0,0,0,0.3);
}

@media only screen and (min-width: 992px) {
  .showdaily ul.number li {
    width: 50px;
    height: 50px;
  }
}

.showdaily ul.number li.link1 {
  background-color: #484b58;
}

.showdaily ul.number li.link1:hover {
  background-color: #1563ff;
}

.showdaily ul.number li.link2 {
  background-color: #484b58;
}

.showdaily ul.number li.link2:hover {
  background-color: #ff8a00;
}

.showdaily ul.number li.link3 {
  background-color: #484b58;
}

.showdaily ul.number li.link3:hover {
  background-color: #00acb7;
}

.showdaily ul.number li {
  transition: all 0.3s;
}

.showdaily ul.number li:hover {
  transform: scale(1.15);
}

.showdaily ul.number li:hover a {
  transform: scale(1.15);
}

