body .ui-pnotify .ui-pnotify-container .ui-pnotify-text{
  height: max-content;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  color: rgb(100, 100, 100);
  margin: 10px 0;
}
body .ui-pnotify .ui-pnotify-container .ui-pnotify-text a{
  color: rgb(66, 71, 135);
}
body .ui-pnotify .ui-pnotify-container .ui-pnotify-text a:hover{
  text-decoration: underline;
  color:rgb(222, 162, 60);
}
body .ui-pnotify {
  top: 0 !important;
  right: 0;
  padding: 0;
  left: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: rgb(0,0,0,0.5);
}

body .ui-pnotify .ui-pnotify-title{
  display: none;
}
body .ui-pnotify .ui-pnotify-container{
  display: flex;
  width:100%;
  max-width: 320px;
  border-radius: 5px;
  flex-wrap: wrap;
  background-color: rgb(255,255,255);
  position: relative;
 padding: 20px 10px 10px;
}
body .ui-pnotify .ui-pnotify-container .ui-pnotify-image #cart-image{
  margin: 0;
  display: block;
  width: 100%;
}
body .ui-pnotify .ui-pnotify-container .ui-pnotify-image{
  order: 0;
  display: block;
  width: 100%;
}
body .ui-pnotify .ui-pnotify-container .ui-pnotify-buttons > .notification-buttons > a.notification-checkout{
  color: rgb(230,230,230);
  background-color: rgb(66, 71, 135);
  width: 100%;
  max-width: 100%;
  margin-top: 5px;
}
body .ui-pnotify .ui-pnotify-container .ui-pnotify-buttons > .notification-buttons > a:nth-of-type(2){
  margin-left: 5px;
  width: calc(50% - 5px);
}
body .ui-pnotify .ui-pnotify-container .ui-pnotify-buttons > .notification-buttons > a:hover{
  background-color: rgb(222, 162, 60);
  color: rgb(255,255,255);
  border: none;
}
body .ui-pnotify .ui-pnotify-container .ui-pnotify-buttons > .notification-buttons > a{
  width:50%;
  background-color: rgb(230,230,230);
  color: rgb(66, 71, 135);
  font-weight: 500;
  line-height: 1;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin: 0;
  box-sizing: border-box;
}
body .ui-pnotify .ui-pnotify-container .ui-pnotify-buttons > .notification-buttons {
  display: flex;
  flex-wrap: wrap;
  
}
body .ui-pnotify .ui-pnotify-container .ui-pnotify-buttons{
  order: 2;
}
body .ui-pnotify .ui-pnotify-container .ui-pnotify-text{
  order: 1;
}

html body .ui-pnotify .ui-pnotify-closer{
  top: -4px;
  text-align: right;
  right: -2px;
  color: rgb(66, 71, 135);
}
.pnotify-open body{
  overflow: hidden;
}
@media (max-width:760px){
    
    html body .ui-pnotify{
      align-items: flex-start;
    }
    html body .ui-pnotify .ui-pnotify-container{
      margin-top: 20px;
    }
}