.container-out {
  float: left;
  width: 100%;
  //max-width: 1920px;
}

.header {
  width: 100%;
  float: left;
  height: 160px;
  height: 15vh;
  box-shadow: 0 22px 64px -40px #dce2e2;
  //margin-bottom: 60px;
  @include display-flex;
  @include align-items(center);
  @include justify-content(space-between);
  position: relative;

  .logo {
    margin-left: 70px;
  }

  .col-right {
    @include display-flex;
    @include align-items(center);
    margin-right: 35px;
  }

  h2 {
    font-size: 28px;
    font-family: 'Montserrat-SemiBold';
    margin: 0 25px;
  }

  .visitors {
    @include display-flex;
    @include align-items(center);
    margin: 0 25px;

    .radius {
      @include display-flex;
      @include align-items(center);
      @include justify-content(center);
      width: 55px;
      height: 55px;
      min-width: 55px;
      background-color: $color-orange;
      @include border-radius(50%);
      margin-right: 15px;
      color: $color-white;
      font-size: 24px;
      font-family: 'Montserrat-Bold';
    }

  }

  #pagination {
    font-size: 42px;
    font-family: 'Montserrat-SemiBold';
    color: #6a6d75;
    margin: 0 35px;

    .slick-dots {
      li {
        display: none;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 600ms, visibility 600ms;
        transition: opacity 600ms, visibility 600ms;
        position: relative;
        font-family: 'Montserrat-Bold';
        font-size: 42px;

        &:before {
          content: '';
          position: absolute;
          left: 12px;
          width: 60px;
          transform: rotate(-50deg);
          background-color: #6a6d75;
          height: 4px;
          border-radius: 6px;
          bottom: 18px;
        }

        span {
          margin-left: 40px;
        }

        &.slick-active {
          display: flex;
          visibility: visible;
          opacity: 1;
          animation: fade 1.5s;
        }
      }
    }
  }
}

@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

#slider-out {
  float: left;
  width: 100%;
  margin-top: 5.5555vh;
}

#slider {
  width: 100%;

  .page {
    width: 100%;
    padding: 0 30px 50px 30px;

    .item {
      float: left;
      width: 33.3333%;
      padding: 0 30px;

      &.no-item {
        .card {
          background-position: center center;
          background-repeat: no-repeat;
          background-size: contain;
          background-image: image-url('no-item.svg');
          background-color: #f3f5f4;
          box-shadow: none;
        }
      }
    }
  }
}

.card {
  float: left;
  width: 100%;
  @include display-flex;
  @include flex-direction(column);
  //height: 800px;
  height: 74vh;
  position: relative;
  overflow: hidden;
  @include border-radius(70px);
  box-shadow: 0 50px 70px -40px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;

  header {
    @include display-flex;
    @include justify-content(center);
    @include flex-direction(column);
    @include align-items(center);
    padding: 4.5555vh 1.9999vw 0 1.9999vw;
    margin-bottom: 4vh;

    .img-profile {
      position: relative;
      width: 23.2222vh;
      height: 23.2222vh;
      border: solid 6px #f3f5f5;
      @include border-radius(50%);
      background-blend-mode: color;
      background-image: linear-gradient(to bottom, #d8d8d8, #d8d8d8);
      @include display-flex;
      @include align-items(center);
      margin-bottom: 2.6666vh;

      .img {
        @include border-radius(50%);
        width: 100%;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        @include filter(grayscale(1));
      }

      .companion {
        @include display-flex;
        @include justify-content(center);
        @include align-items(center);
        padding: 25px;
        width: 13.555vh;
        height: 13.555vh;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
        background-color: #ffffff;
        @include border-radius(50%);
        position: absolute;
        right: -40%;
      }

    }

    .name {
      font-size: 42px;
      font-family: 'Montserrat-SemiBold';
      font-style: normal;
      font-stretch: normal;
      margin-bottom: 1vh;
      text-align: center;
    }

    .companion-name {
      font-size: 24px;
      font-family: 'Montserrat-SemiBold';
      font-style: normal;
      font-stretch: normal;
      line-height: normal;
    }

  }

  .check-date {
    padding: 0 1.7777vw;
    @include display-flex;
    @include justify-content(space-between);

    & > div {
      position: relative;
      width: 49%;
      padding-left: 45px;

      b {
        font-size: 28px;
        font-family: 'Montserrat-Bold';
        margin-bottom: 10px;
        display: block;
      }

      p {
        font-size: 18px;
        line-height: normal
      }

      &:before {
        content: '';
        width: 42px;
        height: 42px;
        position: absolute;
        top: 0;
        left: 0;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: image-url('ic-entrada.svg');

      }

      &.check-out {
        &:before {
          @include transform(rotate(180deg));
        }
      }
    }
  }

  footer {
    position: absolute;
    bottom: 0;
    height: 200px;
    height: 18.5555vh;
    width: 100%;

    .footer-inner {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 100%;
      color: $color-white;
      @include display-flex;
      //@include justify-content(center);
      @include flex-direction(column);
      //@include align-items(center);
      padding-top: 3.7777vh;

      .category {
        font-size: 24px;
        font-family: 'Montserrat-Bold';
        letter-spacing: 4px;
        text-align: center;
        text-transform: uppercase;
        z-index: 1;
        margin-bottom: 15px;
      }

      p {
        text-align: center;
        text-transform: uppercase;
        z-index: 1;
      }

      &:before {
        content: '';
        width: 120%;
        height: 120%;
        @include border-radius(50%);
        position: absolute;
        background-color: $color-orange;
        top: 0;
        left: -10%;
        right: 0;
        z-index: 1;
      }

      &:after {
        content: '';
        width: 30px;
        height: 30px;
        position: absolute;
        bottom: 3.7777vh;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: image-url('ic-code.svg');
        z-index: 1;
        left: 0;
        right: 0;
        margin: auto;
      }
    }
  }

  &.provider {
    .check-date {
      & > div {
        &:before {
          background-image: image-url('ic-entrada-provider.svg');
        }
      }
    }

    footer {
      .footer-inner {
        &:before {
          background-color: $color-lilas;
        }
      }
    }
  }

  &.visitor {
    .check-date {
      & > div {
        &:before {
          background-image: image-url('ic-entrada-visitor.svg');
        }
      }
    }

    footer {
      .footer-inner {
        &:before {
          background-color: $color-turquesa;
        }
      }
    }
  }
}

.empty {
  float: left;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  //background-color: #d8d8d8;
  height: 85vh;
}
