/**
* 2007-2024 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2024 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/


/* The actual timeline (the vertical ruler) */
#productivity{
    max-width:543px;
}
.timeline {
    position: relative;
    width: 100%;
  }
  
  /* The actual timeline (the vertical ruler) */
  .timeline::after {
    content: '';
    position: absolute;
    width: 1px;
    background-color: #202944;
    top: 0px;
    bottom: 0;
    left: 3%;
    margin-left: -3px;
  }
  .timelines{
    padding: 25px 0;
  }

  .timeline:first-child::after {
    top: 50%;
  }

  .timeline:last-child::after {
    height: 50%;
  }

  
  /* Container around content */
 
  .container_timeline {
    padding: 10px 22px;
    position: relative;
    background-color: inherit;
  }
  
  /* The circles on the timeline */
  .container_timeline::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    right: -17px;
    background-color: #203864;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    z-index: 1;
  }
  
  /* Place the container to the right */
  #productivity .right {
    left: 3.8%;
  }
  
  
  /* Fix the circle for containers on the right side */
  #productivity .right::after {
    left: -12.3px;
  }
  
  /* The actual content */
  .content_timeline {
    background-color: white;
    position: relative;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap:25px
  }

  .content_timeline .step{
    width: 180px;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
  }

  .content_timeline .country_name{
    margin-left: 20px;
    width: 25px;
  }

  .content_timeline .country_image{
    display: flex;
    flex-direction:column
  }
  div.country_image{
    min-width: 25px;
  }
  .country_name span{
    font-size: 1rem;
  }

  #transport{
    border-top: 1px solid #202944;
    border-bottom: 1px solid #202944;
    padding: 20px 10px;
    font-size: 1.1rem;
  }
  
  /* Media queries - Responsive timeline on screens less than 600px wide */
  @media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .timeline::after {
    left: 22px;
    }
    .content_timeline .step{
      font-size: 0.9rem;
    }
    /* Full-width containers */
    .container_timeline {
    width: 100%;
    padding-left: 35px;
    padding-right: 25px;
    }
    .content_timeline{
      gap: 5px;
    }
    .content_timeline .country_name{
      margin-left: 0;
    }
    .content_timeline .step{
      width: 90px;
    }
    /* Make sure that all arrows are pointing leftwards */
    .container_timeline::before {
    left: 60px;
    border: medium solid yellow;
    border-width: 10px 10px 10px 0;
    border-color: transparent yellow transparent transparent;
    }
  
    /* Make sure all circles are at the same spot */
    #productivity .left::after, #productivity .right::after {
    left: 15px;
    }
    
    /* Make all right containers behave like the left ones */
    #productivity .right {
    left: 0%;
    }
  }