.circleLineContainer {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    margin: auto;
    float: left;
    height: 120px;
}

.circleLine {
    width: 1050px;
    position: relative;
    margin: auto;
}

.circleLine ol {
    position: relative;
    display: block;
    height: 1px;
    background: #5A5148;
    min-width: 90%;
    padding: 0px;
}

.circleLine ol::before,
.circleLine ol::after {
    position: absolute;
    top: -8px;
    display: block;
    width: 0;
    height: 0;
    border-radius: 10px;
    border: 1px solid #5A5148;
}

.circleLine ol::before {
    left: -5px;
}

.circleLine ol::after {
    right: -10px;
    border-right: 0;
    border-left: 20px solid #5A5148;
}

.circleLine li {
    position: relative;
    display: inline-block;
    float: left;
    width: 16%;
    font-size: 14px;
    height: 90px;
    cursor: pointer;
}

.circleLine li .diplome {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #000;
}

.circleLine li .point {
    content: "";
    top: -8px;
    left: 45%;
    display: block;
    width: 10px;
    height: 10px;
    border: 4px solid #5A5148;
    border-radius: 50%;
    background: #fff;
    position: absolute;
}

.circleLine li .description {
    display: none;
    background-color: #5A5148;
    padding: 10px;
    margin-top: 20px;
    position: relative;
    font-weight: normal;
    z-index: 1;
}

.circleLine .description::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #5A5148;
    position: absolute;
    top: -5px;
    left: 43%;
}

.circleLine li:hover {
    cursor: pointer;
    color: #48A4D2;
}

.circleLine li:hover .description {
    display: block;
}

.accepted {
    background-color: #5A5148 !important;
}