.logout-btn{
    border: 1px solid;
    padding: 2px 6px;
}
.overflow-hidden{
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cursor-pointer{
    cursor: pointer;
}
.ng-hide.ng-hide-animate{
    display: none !important;
}
.padding-b-2 {
    padding-bottom: 2px;
}
.custom-badge {
    height: 40px;
    width: 40px;
    font-size: 20px;
    padding: 9px;
    border-radius: 0px;
    box-shadow: 3px 3px 4px #333;
}
.padding-left-10 {
    padding-left: 10px;
}
.q-style {
    font-family: arial;
    font-weight: normal;
    font-size: 16px;
}
.disable-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* for selection standard question */
@keyframes click-wave {
  0% {
    height: 40px;
    width: 40px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 200px;
    width: 200px;
    margin-left: -80px;
    margin-top: -80px;
    opacity: 0;
  }
}
.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 10.33333px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 30px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 1000;
}
.option-input:hover {
  background: #9faab7;
}
.option-input:checked {
  /*background: #40e0d0;*/
  background: #337ab7;
}
.option-input:checked::before {
  height: 30px;
  width: 30px;
  position: absolute;
  content: '✔';
  display: inline-block;
  font-size: 20.66667px;
  text-align: center;
  line-height: 20px;
}
.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  /*background: #40e0d0;*/
  background: #337ab7;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
}
.option-input.radio {
  border-radius: 50%;
  outline: none!important;
}
.option-input.radio::after {
  border-radius: 50%;
}
