/* Copy Animation */
#myTable{
 overflow-wrap: break-word;
}

.profile-widget .thumb{
  /* height:unset !important; */
  border: 1px solid #5a5a5a;
}
.avatar-preview .profilePicPreview{
      background-size: contain;
    background-repeat: no-repeat;
}

    .copyInput {
      display: inline-block;
      line-height: 50px;
      position: absolute;
      top: 0;
      right: 0;
      width: 40px;
      text-align: center;
      font-size: 14px;
      cursor: pointer;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
    }
    
    .copied::after {
      position: absolute;
      top: 8px;
      right: 12%;
      width: 100px;
      display: block;
      content: "COPIED";
      font-size: 1em;
      padding: 5px 5px;
      color: #fff;
      background-color: #FF7000;
      border-radius: 3px;
      opacity: 0;
      will-change: opacity, transform;
      animation: showcopied 1.5s ease;
    }
    
    @keyframes showcopied {
      0% {
          opacity: 0;
          transform: translateX(100%);
      }
      50% {
          opacity: 0.7;
          transform: translateX(40%);
      }
      70% {
          opacity: 1;
          transform: translateX(0);
      }
      100% {
          opacity: 0;
      }
    }
  
.country-code .input-group-prepend .input-group-text {
    background: #fff !important;
}

.country-code select {
    border: none;
}

.country-code select:focus {
    border: none;
    outline: none;
}

.hover-input-popup {
    position: relative;
}

.hover-input-popup:hover .input-popup {
    opacity: 1;
    visibility: visible;
}