.toolbar {
  background-color: #eaeaea;
  border-bottom: 1px solid #d0d0d0;
  height: 35px;
  padding: 0 5px;
  text-shadow: 1px 1px 0 #fff;
  z-index: 100;
  -webkit-box-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 1);
  -moz-box-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 1);
  box-shadow: inset 0px 1px 1px 0px rgba(255, 255, 255, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toolbar .highlighter button{
  position:relative;
  width: 150px;
}
.toolbar .rotation{
    display: flex;
    align-items: center;
}
.toolbar .rotation .save{
  background: #4fa284;
  color: white;
  text-shadow: none;
  padding: 1px 16px;
}
.toolbar .rotation .dropdown button.dropdown-toggle{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border:none;
}
.toolbar .rotation .show.dropdown button.dropdown-toggle{
background:#fff;
  border:none;
}
.toolbar .rotation .dropdown button.dropdown-toggle:after{
display: none;
}
.message.dropdown-menu.show{
  border:none;
}
.toolbar .rotation .warning{
  display: inline;
  position: relative;
  top:1px;
  left:2px; 
  cursor: pointer;
} 
.message.dropdown-menu.show{
  width: 500px;
  background-color: #ffffff;
  padding: 10px 20px;
  text-shadow: none;
  color: #707070;
  box-shadow: 1px 2px 10px #d8d8d8;
  z-index: 100;
  border-radius: 5px;
  font-size: 14px;
}
.toolbar .spacer {
  display: inline-block;
  border-left: 1px solid #c1c1c1;
  height: 34px;
  margin: 0 5px -11px;
}

.toolbar a {
  color: inherit;
  text-decoration: none;
}

.toolbar button {
  background-color: #eaeaea;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 15px;
  padding: 3px;
  margin: 0;
  text-align: center;
  text-shadow: 1px 1px 0 #fff;
  position: relative;
  min-width: 27px;
  min-height: 27px;
}
.toolbar button:after {
  content: " ";
  display: block;
}
.toolbar button.active {
  border-color: #bababa;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.25);
}
.toolbar button:hover,
.toolbar button:focus {
  border-color: #bababa;
}

.toolbar button.pen {
  font-size: 16px;
}

.toolbar button.comment {
  font-size: 10px;
  color: #ffffff;
  text-shadow: 0 0 0 #000000;
}

.toolbar button.rectangle:after {
  width: 15px;
  height: 15px;
  border: 1px solid red;
  position: absolute;
  top: 4px;
  left: 4px;
}

.toolbar button.highlight:after {
  width: 17px;
  height: 17px;
  background: yellow;
  position: absolute;
  top: 4px;
  left: 4px;
}

.toolbar button.strikeout:after {
  width: 15px;
  height: 1px;
  background: red;
  position: absolute;
  top: 12px;
  left: 4px;
}

.toolbar button.text:after {
  content: "T";
  font-family: "Times New Roman";
}

.color {
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 1px solid #000;
  vertical-align: middle;
}
.color-selected {
  border: 3px solid #666;
  width: 30px;
  height: 30px;
  margin-top: -1px;
  margin-left: -2px;
  margin-right: -2px;
}
.text-color,
.pen-color {
  display: inline-block;
}
/* tooltip */
/* .tooltip{
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
} */
.tooltip__text {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px;
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: 140%;
  left: 50%;
  margin-left: -15px;
  font-size: 14px;
  text-shadow: none;
  border-radius: 2px;
}
.tooltip .tooltip__text::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 10%;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}
.tooltip:hover .tooltip__text {
  visibility: visible;
}

.toolbar-static-banner {
  color: black;
}
.pb-4{
  padding-bottom:5px;
}