﻿.taginput > div {
  position: relative;
  z-index: 2;
  padding: 0;
  display: flex;
  font-size: 0px;
  line-height: 0px;
  background-color: transparent;
}

.taginput > div a {
  position: relative;
  padding: 0px 24px 0px 7px;
  color: #1E2330;
  display: inline-block;
  vertical-align: top;
  font-size: .775rem;
  line-height: .775rem;
  background-color: white;
  border-radius: .2rem;
  text-decoration:none;
  border: 1px solid #ced4da;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.taginput > div input {
  position: relative;
  padding: 0;
  color: #1E2330;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  border:0px;
}

.input_after_taginput {
  min-width: 100px !important;
  width: calc(100% - 1px) !important;
}

.taginput > div a em {
  font-style: normal;
  display: block;
  white-space: nowrap;
  padding-top: 2px;
  padding-bottom: 2px;
}

.taginput > div a i {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 18px;
  display: block;
}

.taginput > div a i:before, .taginput > div a i:after {
  content: "";
  display: block;
  width: 2px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: gray;
  border-radius: .2rem;
}

.taginput > div a i:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.taginput > div a i:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.input_after_taginput_on_focus {
  border-radius: 0px .2rem .2rem 0px !important;
}

.taginput_on_input_focus_after_this {
  border-radius: .2rem 0px 0px .2rem !important;
  border: 1px solid rgb(255,255,204) !important;
  background-color: rgb(255,255,204) !important;
}