* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    width: 300px;
    margin: 30px auto;
}

.line {
    padding: 5px 30px 5px 0;
    border-right: 3px solid #666;
}

.line p {
    text-align: center;
    width: 250px;
    padding: 10px;
    border: 2px solid #666;
    border-radius: 5px;
    color: #03254a;
    margin: 20px 0;
    position: relative;
}

.line p:before {
    content: '';
    position: absolute;
    right: -44px;
    top: 7px;
    width: 20px;
    height: 20px;
    /* border: 3px solid #D2FAFB; */
    border-radius: 50%;
    background-color: #666;
}

.line p:after {
    content: '';
    position: absolute;
    right: -18px;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #666;
}