.draggable {
    cursor: pointer;
    display: inline-block;
    padding: 5px;
    margin: 2px;
    color: #377AAB;
    border: 1px solid #96C1D6;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.answer-option {
    color: #6EBD44;
    font-weight: bold;
}

.sentence-part {
    color: black;
}

.invisible-text {
    display: none;
}

.draggable-placeholder {
    cursor: pointer !important;
    height: 35px !important;
    margin: 0 2px 0 0 !important;

}

.draggable-placeholder, .placeholder {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.placeholder {
    display: inline-block;
    border: 1px dashed #b4b4b4;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 35px;
    margin-right: 2px
}

.word, .placeholder {
    vertical-align: middle;
}

.answer-option {
    color: #6EBD44;
    font-weight: bold;
}

.sentence-part {
    color: black;
}

.correct {
    color: green;
    font-weight: bold;
}

.incorrect {
    color: red;
    font-weight: bold;
}

.incorrect-placeholder {
    border: 2px solid red !important;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 35px;
    margin-right: 2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.correct-placeholder {
    border: 2px solid green !important;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    height: 35px;
    margin-right: 2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}