.sidebar {
    height: 800px;
}

button.btnAddToCollection {
    background-color: #78B159;
    border: none;
    color: #fff;
    display: none;
    margin-left: 10px;
}
button.btnAddToCollection:hover {
    color: #78B159;
    border: 1px solid #78B159;
    background-color: #fff;
}

.icons {
    float: right;
}

.collection-container .selectedWord {
    margin-bottom: 20px;
    padding-left: 3px;
    padding-right: 3px;
}

.collection-container .deleteIcon {
    float: right;
    font-size: 16px;
}

.collection-container .icon-clipboard:hover,
.collection-container .icon-delete:hover {
    cursor: pointer;
}

.collection-container div span.word:hover::after{
    cursor: pointer;
}

.word-container-active {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
    max-height: 280px;
    height: auto;   
}

.word-container {
    display: none;
}

.collection-container {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
}

/* .word-container-active:hover::-webkit-scrollbar, */
.collection-container:hover::-webkit-scrollbar  {
    width: 5px;
}

/* .word-container-active:hover::-webkit-scrollbar-track, */
.collection-container:hover::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

/* .word-container-active:hover::-webkit-scrollbar-thumb, */
.collection-container:hover::-webkit-scrollbar-thumb {
  background-color: #78B159;
  border-radius: 0 5px 5px 0;
  outline: 1px solid slategrey;
}

.word-container-active .word {
    /* position: relative;
    left: -10%;
    top: -5px; */
    background-color: #F7F7F7;
    color: #ED4C5D;
}

textarea.definitions {
    border: none;
    overflow-y: auto;
    height: auto;
    max-height: 150px;
    width: 95%;
}
input.form-control:focus {
    border: none;
    box-shadow: none;
    color: #ED4C5D;
}

input.form-control:active, textarea:focus{
    outline: none;

}

.popup {
    position: absolute;
    width: 100px!important;
    height: 50px;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: blue;
}