.tags {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    position: relative;
    box-shadow: 0px 0px 5px 0px black;
    text-align: center;
}

.tags__added {
    width: calc(70% - 48px);
    height: 42px;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.tags__tag {
    height: calc(100% - 6px);
    width: auto;
    background-color: #cde69c;
    color: #638421;
    border: 1px solid #a5d24a;
    display: inline-block;
    line-height: 32px;
    vertical-align: top;
    margin: 3px;
    padding: 2px 6px;
    font-size: 1.1rem;
    font-weight: 600;
}

.tags__tagDelete {
    cursor: pointer;
    margin-left: 7px;
}

.tags__selector {
    height: 100%;
    width: 30%;
    position: relative;
    border: none;
    border-left: 1px solid black;
    padding-left: .6rem;
    /* padding-right: 48px; */
    line-height: 42px;
}

.tags__add {
    height: 100%;
    width: 48px;
    position: relative;
    right: 0;
    line-height: 44px;
    color: white;
    cursor: pointer;
    font-size: 1.6rem;
    border-left: 1px solid black;

}

.tags__selector {
    font-size: 1rem;
}

@media screen and (max-width: 991px) {
    .tags__tag {
        font-size: 1.8rem;
    }
    .tags__selector  {
        font-size: 1.8rem;
    }
}
  
