#alertspannel {
    display: none;/*Block kroz JS*/
    top: 37px;/*Custom*/
    z-index: 99;
    background: #ffffff;
    color: #000000;
    border: 1px solid rgb(153, 153, 153)/*Custom*/;
    position: absolute;
    right: 0px;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 15px;
    width: 430px;
    max-height: calc(100vh - 100px);
    overflow: scroll;
    overflow-x: hidden;
    cursor: pointer;
}

span.doclink {
    font-size: 14px;
    display: inline-block;
    white-space: nowrap;
    background: #ec1c24;
    color: white;
    text-align: center;
    padding: 0 3px;
}
.alerts {
    padding: 22px 15px 10px;
    border-bottom: 1px solid #ccc;
    /*transition: all ease 0.3s;*/
    text-align: left;
}

.alerts:hover {
        box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.12), 0px 4px 4px 0px rgba(0,0,0,0.24);
        transform: scale(1.01,1.01);
}

.alertname img {
    margin-bottom: 10px;
    margin-right: 10px;
    width: 50px;
    height: auto;
    display: inline-block;
    float: left;

}

.alertdisplayname {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
}

.alertsubjekt {
  display:none;
}

.alertstatus {
  margin-bottom: 10px;
  line-height: 1.2;
}

.alertcomtext {
  margin-bottom: 5px;
  margin-left: 60px;
  line-height: 1.2;
}

.nottimeago {
    margin-left: 60px;
    font-size: 14px;
    color: #ccc;
}

.timeago {
  border-bottom: none !important;
}
#alertlista{
    position: relative;
}
#alertlista li{
    display: block !important;
    text-align: left !important;
}
.btonbrisi {
    background: rgba(255, 126, 0, 0.9);
    display: block;
    bottom: 0px;
    position: absolute !important;
    z-index: 99999 !important;
    margin: 0px !important;
    width: 100% !important;
    height: 30px !important;
    line-height: 0px !important;
    border: 1px solid white;
    color: white;
    transition: all ease 0.3s;
}
.btonbrisi:hover {
    background: rgba(255, 126, 0, 1);
}
/*********** Media Queries *************/
@media (max-width: 430px){
    #alertspannel{
        width: 100%;
    }
}
/*********** Media Queries *************/

/*********** Proba animacije *************/
.wobble-hor-bottom:hover {
	-webkit-animation: wobble-hor-bottom 0.8s both;
	        animation: wobble-hor-bottom 0.8s both;
}

@-webkit-keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}
@keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}
/*********** Proba animacije END *************/
























