.selectize-control.multi .selectize-input>div {
    cursor: pointer;
    margin: 0 3px 3px 0;
    padding: 2px 6px;
    background: #e0e0e0!important;
    color: #303030!important;
    border: 1px solid #6c757d!important;
    text-shadow: initial!important;
    box-shadow: 0 0 0!important;
}
.selectize-control.plugin-remove_button .item .remove{
    border-left: 1px solid #6c757d!important;
}
.form-group {
    margin-bottom: 1.7rem;
}
label:not(.form-check-label):not(.custom-file-label) {
    font-weight: 600!important;
}
textarea.form-control {
    height: 80px;
}
.w-70 {
    width: 70% !important;
}
.w-30 {
    width: 30px !important;
    height: 30px !important;

}
.bg-bluegray{
    background-color: #607D8B;
}
.icon-size-60 {
    width: 60px;
    height: 60px;
}
.icon-size-4x3 {
    width: 200px;
    height: 150px;
}
.btn-primary {
    color: #ffffff;
    background-color: #212121;
    border-color: #212121;
    box-shadow: none;
}
.btn-primary:hover {
    color: #ffffff;
    background-color: #455A64;
    border-color: #455A64;
}  
.btn-primary:focus,
.btn-primary.focus {
    color: #ffffff;
    background-color: #455A64;
    border-color: #455A64;
}
.btn-primary.disabled,
.btn-primary:disabled {
    color: #ffffff;
    background-color: #455A64;
    border-color: ##455A64;
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #ffffff;
    background-color: #455A64;
    border-color: #455A64;
}
.table {
    overflow-wrap: anywhere;
}
/**
* Tooltip Styles
*/
  
  /* Add this attribute to the element that needs a tooltip */
  [data-tooltip] {
    position: relative;
    z-index: 2;
    cursor: pointer;
  }
  
  /* Hide the tooltip content by default */
  [data-tooltip]:before,
  [data-tooltip]:after {
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    pointer-events: none;
  }
  
  /* Position tooltip above the element */
  [data-tooltip]:before {
    position: absolute;
    bottom: 150%;
    left: 50%;
    margin-bottom: 5px;
    margin-left: -80px;
    padding: 7px;
    width: 160px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background-color: #000;
    background-color: hsla(0, 0%, 20%, 0.9);
    color: #fff;
    content: attr(data-tooltip);
    text-align: center;
    font-size: 14px;
    line-height: 1.2;
  }
  
  /* Triangle hack to make tooltip look like a speech bubble */
  [data-tooltip]:after {
    position: absolute;
    bottom: 150%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-top: 5px solid #000;
    border-top: 5px solid hsla(0, 0%, 20%, 0.9);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0;
  }
  
  /* Show tooltip content on hover */
  [data-tooltip]:hover:before,
  [data-tooltip]:hover:after {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
/**
* Tooltip Styles end
*/