

.table>thead>tr>th.phone,
.table>tbody>tr>td.phone
{
    width: 150px;
    padding: 0 30px 0 0;
}

.clear-search{
    right: 40px;
    top: 5px;
    cursor: pointer;
    z-index: 9;
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
  }
  
.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

body.web .content{
    min-height: calc(100vh - 85px);
    position: relative;
    padding-top: 110px;
}
body.web .center{
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

body.web .icon-return{
    top: 20%;
    right: 10px;
  }
  
body.web .icon-return span{
    font-size: 50px
}

 
canvas#signature {
  width: 450px;
  height: 200px;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>✍️</text></svg>")
      16 0, auto;
}

#clear{
    top: 0px;
    right: 0px;
    cursor: pointer;
}
textarea.form-control{
  border-left: 1px solid #d2d2d2;
  padding: 8px;
}

textarea.form-control[disabled]{
  border-left: 1px dotted #d2d2d2;
  padding: 8px;
}


/** MENU */
#notifications_list .dropdown-menu{
  max-height: 450px;
  overflow: auto;
} 

#notifications_list .dropdown-menu .dropdown-item, .dropdown-menu li>a {
  align-items: normal;
  flex-direction: column;
}

#notifications_list .dropdown-menu .mark-notification{
  cursor: pointer;
  position: absolute;
  left: 4px;
  top: 8px;
  font-size: 23px;
  z-index: 99999;
}

#notifications_list   .dropdown-menu .dropdown-item:hover a
{
  color: #fff!important;
  box-shadow: none;
  background-color: transparent;
}


/** end menu **/

.main-panel>.content {
  margin: 0px;
  padding: 100px 15px 30px 15px;
  min-height: calc(100vh - 85px);
}

body.shippings .card .card-header-primary .card-icon,
body.users .card .card-header-primary .card-icon{
  top: 32px;
  right: 0;
  background: transparent;
  box-shadow: none;

}


body.shippings .card .card-header-primary .card-icon:hover,
body.users .card .card-header-primary .card-icon:hover{
  box-shadow: 0 4px 20px 0px rgb(0 0 0 / 14%), 0 7px 10px -5px rgb(156 39 176 / 40%);

}

/* width */
::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  box-shadow: inset 0 0 5px grey; 
  border-radius: 7px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 7px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.avatar-upload {
  position: relative;
  max-width: 205px;
  margin: 50px auto;
}
.avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid var(--main-secondary-color);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;

}
.avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: var(--main-primary-color);
}
.avatar-upload .avatar-edit input + label:after {
  content: "\f040";
  font-family: 'FontAwesome';
  color: var(--main-primary-color);
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
.avatar-upload .avatar-preview {
  width: 192px;
  height: 192px;
  position: relative;
  border-radius: 100%;
  border: 6px solid var(--main-primary-color);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}