


/* [CONTAINER] */
/* More accurate sizing */
.avtl, div.ewrap, div.event {
    box-sizing: border-box;
}
.avtl {
    position: relative;
    /* Width restriction if you want */
    /*max-width: 640px;*/
    margin: 50px auto;
}

/* This will draw the vertical line */
.avtl::before {
    content: '';
    width: 5px;
    background-color: #FF9300;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
}

/* [EVENT WRAPPER] */
div.ewrap {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    left: 0; /* default to left */
    margin-top: -70px;
}
div.ewrap:first-of-type {
    margin-top:0px;
}
div.right {
    left: 50%;
}

/* [EVENT ITSELF] */
div.event {
    padding: 20px 30px;
    background-color: #e9e9e9;
    position: relative;
    border-radius: 6px;
}

/* [THE DATE & TEST] */
strong.date {
    font-size: 1.75em;
    line-height: 2em;
    font-weight: bold;
    color: #333;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 10px 20px;
}
.avtl h3.title {
    font-size: 1.75em;
    line-height: 1.5em;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px 0;
    padding: 0 60px 0 0;
}
p.text {
    margin: 0;
}

div.images img {
    width: 100%;
}
/* [ADD SPEECH BUBBLE TRIANGLE] */
div.ewrap::before {
    content: '';
    border: 10px solid transparent;
    border-left-color: #e9e9e9;
    border-right: 0;
    position: absolute;
    right: 30px;
    top: 20%;
}
div.ewrap.right::before {
    content: '';
    border: 10px solid transparent;
    border-right-color: #e9e9e9;
    border-left: 0;
    position: absolute;
    right: auto;
    left: 30px;
    top: 20%;
}

/* [ADD CIRCLE ON VERTICAL LINE] */
div.ewrap::after {
    content: '';
    background: #fff;
    border: 4px solid #FF9300;
    width: 16px;
    height: 16px;
    border-radius: 20px;
    position: absolute;
    top: 20%;
    right: -10px;
}
div.ewrap.right::after {
    content: '';
    background: #fff;
    border: 4px solid #FF9300;
    width: 16px;
    height: 16px;
    border-radius: 20px;
    position: absolute;
    top: 20%;
    right: auto;
    left: -5px;
}
