  .centered {
    /*background: linear-gradient(96deg, black, #2f43c152);*/
    background:#0B6981;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  .modalInformation {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
  }
  .modalInformation.open {
    pointer-events: all;
    opacity: 1;
  }
  .modalInformation.open .backgroundModalInfo {
      opacity: 0.4;
  }
  .backgroundModalInfo {
      position: absolute;
      width: 100%;
      background: black;
      height: 100%;
      z-index: 1;
      opacity: 0;
      transition: 0.3s;
  }
  .closeModal:after {
      content: '';
      position: absolute;
      width: 15px;
      height: 2px;
      background: black;
      transform: rotate(-45deg);
      top: 13px;
      right: 7px;
  }
  .closeModal:before {
      content: '';
      position: absolute;
      width: 15px;
      height: 2px;
      background: black;
      transform: rotate(45deg);
      top: 13px;
      right: 7px;
  }
  .closeModal {
      position: absolute;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      right: 35px;
      top: 25px;
      background: white;
      cursor: pointer;
  }
  .contentModal {
    padding: 20px 30px;
    font-family: sans-serif;
  }
  .contentModal .title {
      font-size: 20px;
  }
  .contentModal .content {
      font-size: 18px;
      line-height: 25px;
  }
  .contentModal .imagen img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  .modalInformation.open .insideModalInfo {
      transform: none;
  }
  .insideModalInfo {
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 40%;
      transform: translateX(100%);
      transition: 0.3s;
      transition-delay: 0.3s;
      z-index: 2;
      min-width: 300px;
      background: #ededed;
      box-shadow: 0px 4px 5px #00000061;
  }
  .swipeImg {
      position: absolute;
      filter: invert(1);
      width: 120px !important;
      right: 6%;
      bottom: 6%;
      pointer-events: none;
      transition: 0.3s;
      transform-origin: center bottom;
      animation: myAnim 2s ease 0s infinite normal forwards;
  }
  @keyframes myAnim {
    0% {
      transform: rotate(0deg);
    }  
    50% {
      transform: rotate(45deg);
    }    
    100% {
      transform: rotate(0deg);
    }
  }
  .swipeImg.hide { opacity: 0; }