.circles-container {
    display: flex;
    margin-bottom: 50px;
}

.svg-selection{
    display:block;
    max-width:100%;
    margin: 10px 0;
}

.svg-number-line{
    display:none;
}

.svg-container{
    min-height:96px;
}

select{
    width:auto;
    height:40px;
    padding:5px;
    border-radius:5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    -ms-border-radius:5px;
    -o-border-radius:5px;
    margin-right:15px;
}

select:hover{
    cursor:pointer;
}

.open-circle,
.closed-circle,
.left-arrow,
.right-arrow,
.redo-button {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(161, 89, 119);
    margin-right: 15px;
}

.selection-container, .arrow-selection{
    display:none;
}

.open-circle:hover,
.closed-circle:hover,
.right-arrow:hover,
.left-arrow:hover,
.redo-button {
    cursor: pointer;
}

.change-circle,
.change-arrow {
    background-color: white;
    border: 2px solid rgb(50, 50, 50);
}

.input-check-wrapper {
    margin-top: 50px;
}


@media(max-width:525px) {
    .input-check-wrapper {
        margin-top: 20px;
    }
}