.felsorolas {
    list-style-type: none;
  }
  
  .left {
    float: left;
  }
  
  .entries {
    width: 100%;
    margin: auto;
    position: relative;
    left: -5px;
  
    .entry {
      width: calc(50% - 80px);
      float: left;
      padding: 20px;
      clear: both;
      text-align: right;
  
      &:first-child {
        margin-top: 0;
      }
  
      .title {
        font-size: 32px;
        margin-bottom: 12px;
        position: relative;
        color: #111111;
  
        &:before {
          content: '';
          position: absolute;
          width: 8px;
          height: 8px;
          border: 4px solid #580420;
          background-color: #f8f5f5;
          border-radius: 100%;
          top: 50%;
          transform: translateY(-50%);
          right: -73px;
          z-index: 1000;
        }
  
        &.big:before {
          width: 24px;
          height: 24px;
          transform: translate(8px, -50%);
        }
      }
  
      .body {
        color: #580420;
  
        p {
          line-height: 1.4em;
        }
      }
  
      &:nth-child(2n) {
        text-align: left;
        float: right;
  
        .title {
          &:before {
            left: -63px;
          }
  
          &.big:before {
            width: 24px;
            height: 24px;
            transform: translate(-8px, -50%);
          }
        }
      }
    }
  }
  