/* ********************************** */
/* MAIN CSS FILE FOR ZIGZAG PLUGINAPP */
/* ********************************** */

 .pluginAppObj_84_95_child {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    box-sizing: border-box;
    /* width: 400px; */
    max-width: 100%;
    overflow: visible;
}

 .pluginAppObj_84_95_objectContainer {
    /* color: rgba(255, 140, 0, 1); */
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.pluginAppObj_84_95_outer {
  padding-left: 12px;
  padding-right: 12px;
}

/* INIZIO STILE IN SVILUPPO OGGETTO */
/* Timeline Container */
.pluginAppObj_84_95_timeline {
    background: var(--primary-color);
    margin: 0px auto;
  }
  
  /* Card container */
  .pluginAppObj_84_95_card {
    position: relative;
    /* max-width: 400px; */
  }
  
  /* setting padding based on even or odd */
  .pluginAppObj_84_95_card:nth-child(odd) {
    padding: 31px 40px 31px 40px;
  }
  .pluginAppObj_84_95_card:nth-child(even) {
    padding: 32px 40px 32px 40px;
  }
  /* Global ::before */
  .pluginAppObj_84_95_card::before {
    content: "";
    position: absolute;
    width: 50%;
    border: solid rgba(26, 196, 47, 1);
  }
  
  /* Setting the border of top, bottom, left */
  .pluginAppObj_84_95_card:nth-child(odd)::before {
    left: 0px;
    top: -2px;
    bottom: -2px;
    border-width: 2px 0 2px 2px;
    border-radius: 10px 0 0 10px;
  }
  
  /* Setting the border of top, bottom, right */
  .pluginAppObj_84_95_card:nth-child(even)::before {
    right: 0;
    top: 0;
    bottom: 0;
    border-width: 2px 2px 2px 0;
    border-radius: 0 10px 10px 0;
  }
  
  /* Removing the border if it is the first card */
  .pluginAppObj_84_95_card:first-child::before {
    border-top: 0;
    border-top-left-radius: 0;
  }
  
  /* Removing the border if it is the last card  and it's odd */
  .pluginAppObj_84_95_card:last-child:nth-child(odd)::before {
    border-bottom: 0;
    border-bottom-left-radius: 0;
  }
  
  /* Removing the border if it is the last card  and it's even */
  .pluginAppObj_84_95_card:last-child:nth-child(even)::before {
    border-bottom: 0;
    border-bottom-right-radius: 0;
  }
  
  /* Information about the timeline */
  .pluginAppObj_84_95_info {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 1);
    color: gray;
    border-radius: 5px;
    padding: 15.5px;
    min-height: 15px;
    position: relative;
    
  }
  
  /* Title of the card */
  .pluginAppObj_84_95_title {
    color: rgba(26, 196, 47, 1);
    font-family: Montserrat;
    font-size: 16pt;
    font-weight: bold;
    font-style: normal;
    position: relative;
    padding-bottom: 5px;
  }
  
  .pluginAppObj_84_95_date {
    color: rgba(255, 0, 0, 1);
    position: relative;
    font-family: Montserrat;
    font-size: 24pt;
    font-weight: bold;
    font-style: italic;
  }
  
  .pluginAppObj_84_95_date.filled {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.7);
  }
  
  .pluginAppObj_84_95_text {
    color: rgba(67, 67, 67, 1);
    font-family: Montserrat;
    font-size: 11pt;
    font-weight: bold;
    font-style: normal;
    word-wrap: break-word;
    padding-bottom: 1em;
  }
  
  .pluginAppObj_84_95_button a{
    color: rgba(255, 255, 255, 1);
    font-family: Montserrat;
    font-size: 10pt;
    font-weight: normal;
    font-style: normal;
    background-color: rgba(255, 0, 0, 1);
    margin: auto;
    position: relative;
    margin-left: 0px;
    display: inline-block;
    border-radius: 5px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    padding-right: 12px;
    text-decoration: none;
    cursor: pointer;
  }

  .pluginAppObj_84_95_info.hidden {
    opacity: 0;
    visibility: hidden;
  }

  .pluginAppObj_84_95_info.visible {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .pluginAppObj_84_95_card:nth-child(odd) > .pluginAppObj_84_95_wrapper > .pluginAppObj_84_95_info.show {
    animation: fromRight 0.7s ease-out forwards;
    animation-iteration-count: 1;
  }

  .pluginAppObj_84_95_card:nth-child(even) > .pluginAppObj_84_95_wrapper > .pluginAppObj_84_95_info.show {
    animation: fromLeft 0.7s ease-out forwards;
    animation-iteration-count: 1;
  }


  @keyframes showMe
  { 
      from {opacity: 0;}
      to {opacity: 1;}
  }

  @keyframes fromLeft
  { 
      from {left: -20px; opacity: 0;}
      to {left: 0px; opacity: 1;}
  }

  @keyframes fromRight
  { 
      from {right: -20px; opacity: 0;}
      to {right: 0px; opacity: 1;}
  }

  .pluginAppObj_84_95_card:nth-child(odd) > .pluginAppObj_84_95_wrapper > .pluginAppObj_84_95_info::after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 1);
    top: 20.5px;
    position: absolute;
    transform: rotate(45deg);
    left: -9px;
    z-index: -1;
  }

  .pluginAppObj_84_95_card:nth-child(even) > .pluginAppObj_84_95_wrapper > .pluginAppObj_84_95_info::after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 1);
    top: 20.5px;
    position: absolute;
    transform: rotate(45deg);
    right: -9px;
    z-index: -1;
  }

  /* Timeline dot  */
  .pluginAppObj_84_95_wrapper::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 1);
    border-radius: 999px;
    border: 6px solid rgba(26, 196, 47, 1);
    z-index: 99999;
  }
  
  /* text right if the card is even  */
  .pluginAppObj_84_95_card:nth-child(even) > .pluginAppObj_84_95_wrapper > .pluginAppObj_84_95_info > .pluginAppObj_84_95_title,
  .pluginAppObj_84_95_card:nth-child(even) > .pluginAppObj_84_95_wrapper > .pluginAppObj_84_95_info > .pluginAppObj_84_95_text,
  .pluginAppObj_84_95_card:nth-child(even) > .pluginAppObj_84_95_wrapper > .pluginAppObj_84_95_info > .pluginAppObj_84_95_button,
  .pluginAppObj_84_95_card:nth-child(even) > .pluginAppObj_84_95_wrapper > .pluginAppObj_84_95_info > .pluginAppObj_84_95_date {
    text-align: right;
  }
  
  .pluginAppObj_84_95_card:nth-child(even) > .pluginAppObj_84_95_wrapper > .pluginAppObj_84_95_info > .pluginAppObj_84_95_button{
    margin-right: 0px;
    margin-left: auto;
  }
  
  /* setting dot to the left if the card is odd */
  .pluginAppObj_84_95_card:nth-child(odd) > .pluginAppObj_84_95_wrapper::before {
    left: -14px;
    top: 50px;
  }
  
  /* setting dot to the right if the card is odd */
  .pluginAppObj_84_95_card:nth-child(even) > .pluginAppObj_84_95_wrapper::before {
    right: -14px;
    top: 50px;
  }




  @media screen and (max-width: 480px) {
    /* setting padding based on even or odd */
    .pluginAppObj_84_95_card:nth-child(odd) {
      padding: 31px 0px 31px 40px;
    }
    .pluginAppObj_84_95_card:nth-child(even) {
      padding: 32px 40px 32px 0px;
    }

  }