.error-msg{
  color: red;
}
#success-snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: green;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}
#error-snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: red;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 60px;
  font-size: 17px;
}
.btn{
  border-radius: 7px;
}
a{
  cursor: pointer;
}
.btn-app {
  padding: 5px 5px;
  height: 45px;
}
.selected-cat {
  background-color: #cbeeff;
  color: #000;
}
.page-shadow {
  box-shadow: 0 0 15px #888888;
}
#success-snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
#error-snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
#success-notification.show{
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
  

}
#success-notification{
  visibility: hidden;
  min-width: 250px;
  /* margin-left: -125px; */
  /* background-color: orange; */
  color: #fff;
  /* text-align: center; */
  border-radius: 10px !important;
  /* padding: 50px; */
  position: absolute;
  z-index: 5000;
  /* left: 50%; */
  right: 0px;
  bottom: 7px;
  font-size: 17px;
}
.notification-title{
  background-color: black;
  padding: 12px;
  display: flex;
  justify-content: flex-start;
  color: white;
  /* width: 100px; */
  font-size: 15px;
  border-top-left-radius: 25px;


}
.notification-body{
  background-color: #13093b;
  color: white;
  /* padding: 50px; */
  /* width: 285px; */
  /* height: 68px; */
  padding: 12px;
  font-size: small;
  display: grid;
  justify-items: start;
  font-weight: 100;

}
.notfication-cheak-btn{
  border: 1px solid #7f7ffc;
  border-radius: 0%;
  background-color: #13093b;
  color: white;
  /* display: flex;
  justify-content: flex-end; */
  /* margin-left: 176px; */
  padding: 4px ;
  margin-top: 10px;
  margin-left: auto;
}
.notfication-cheak-btn:hover{
  color: white !important;
  background-color: #13093b;
}
.notificationCrossIcon{
  /* position: relative;
  left: 188px; */
  margin-left: auto;
  /* bottom: 3px; */
  cursor: pointer;
  font-weight: 100;
  padding-left: 10px;
  
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

#categoryPage .modal-dialog {
  width: 1227px;
  margin: 78px auto;
}
.ngx-pagination li {
  position: relative;
  float: left;
  margin-left: -1px;
  line-height: 1.42857143;
  text-decoration: none;
  border: 1px solid #ddd;
}