/*for slidebazaar*/

.si-alert-window {
    right: calc(50vw - 700px);
	width :360px;
    top: 85px;
	
}

@media screen and (max-width: 945px) {
	.si-alert-container{
		display:none;
	}
}
/*end*/
.si-alert-window * {
    font-family: 'Inter';
}
.alert.read {
    background: #ad5a5a;
}
.si-alert-icon{
	width:20px;
	height:20px;
	margin:0 15px 0 0 !important;
	cursor:pointer;
	position: relative;
}
.si-alert-window{
    position: absolute;
    overflow: auto;
/*     right: 0; */
/*     width: 30rem; */
    margin-right: 30px !important;
    height: 45.5rem;
    display: flex;
    background: #FFF;
    flex-direction: column;
    gap: 20px;
    box-shadow:0px 0px 18px 0px #989A9C;
    z-index: 9999999;
    border-radius: 4px;
}
.si-close-alert-window{	
    padding: 0;
    background: none;	
    border: none;
	transition: all 0.4s;
	height:16px;
	cursor:pointer;
}
.si-close-alert-window svg{
 height:16px;
}
.si-close-alert-window:hover{
	background:none;
	scale: 1.2;
}
.si-alert-no-notifications{
       display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 121px;	
}
.si-alert-window-head{
	display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    margin: 0 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}
.si-alert-window-content{
	display:flex;
	gap: 5px;
	flex-direction: column;
	overflow:auto;
	margin-bottom: 1rem;
	height:100%;
}

button.mark-all-as-read {
    background: none;
    color: #0D66E4;
	border: none;
    padding: 0;
    margin: 0 15px;
    align-self: flex-end;
	cursor:pointer;
}

.si-alert-window-content::-webkit-scrollbar {
    width: 0.313rem;
 }
.si-alert-window-content::-webkit-scrollbar-track {
    background: #fff;
  }
.si-alert-window-content::-webkit-scrollbar-thumb {
    background-color: #FFCB06;
    border-radius: 0.125rem;
}

.si-alert-window .alert{
	background: #F7F7F7;
    border-radius: 10px;
	padding:20px;
	margin: 0 15px;
}
.alert-title , .alert-content{
	margin-bottom:8.5px !important;
}
.alert .alert-title, .si-alert-window-head span{
	font-size:18px;
	font-weight:500;
}
.alert .alert-content{
	font-size:14px;
	font-weight:400;
	line-height:16.94px;
	color:#888888;
	
}
.alert .alert-footer{
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.alert .alert-footer time{
	font-size:12px;
}
button.mark-as-read{
	padding: 0;
    color: #0D66E4;
    background: none;
    font-weight: 500;
	border: none;
    cursor: pointer;
}
.si-alert-icon .si-alert-icon-badge{
	position: absolute;
	top: -8px;
	right: -7px;
	width: 17px;
	height: 17px;
	background: red;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	user-select: none;
	font-size: 12px;
}

.si-alert-container{
	position:relative;
	display:none;
}

/* width */
.si-alert-window::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.si-alert-window::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
.si-alert-window::-webkit-scrollbar-thumb {
  background: red; 
  border-radius: 10px;
}

/* Handle on hover */
.si-alert-window::-webkit-scrollbar-thumb:hover {
  background: #b30000; 
}


