﻿.listview-item {
    cursor: pointer;
    position:relative;
    overflow:hidden;
}



.listview-item:hover
{
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent;
  background: transparent;
}

hr {
  border: 0;
  margin: 20px;
  height: 1px;
  background: #656D78;
}

.listview-switch{
    color:rgb(139, 139, 139);
}


.listview-item-drop {
    min-height: 9mm;
    height: 9mm;
    -moz-transition: All  0.3s ease-out;
    -o-transition: All  0.3s ease-out;
    -webkit-transition: All  0.3s ease-out;
    transition: All  0.3s ease-out;
}


.listview-item-drop-icon {
    float: right;
    position: absolute;
    top: 0;
    right: 0;
    padding: 9px 16px;
}

/* Ripples container */
.ripples {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}

/* Ripples circle */
.ripples__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(44, 133, 241, 0.29);
}
.ripples.is-active .ripples__circle {
    -moz-animation: ripples .4s ease-in;
    -o-animation: ripples .4s ease-in;
    -webkit-animation: ripples .4s ease-in;
    animation: ripples .4s ease-in;
}

/* Ripples animation */
@-moz-keyframes ripples {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}

@-webkit-keyframes ripples {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}

@keyframes ripples {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}
