.delay-notification-remove {
	position: fixed;
	right: 40px;
	bottom: 40px;
	display: flex;
	flex-flow: column;
	gap: 12px;
	padding: 16px;
	max-width: 266px;
	border-radius: 24px;
	background-color: rgba(0, 0, 0, 0.6);
	color: $color-white;
	box-sizing: border-box;
	z-index: 999999;

	@include supportBlur {
		backdrop-filter: blur(30px);
	}
}

.delay-notification-remove__main {
	display: grid;
	grid-template-columns: 1fr 96px;
	align-items: center;
	gap: 24px;
}

.delay-notification-remove__title {
	font-size: 16px;
	font-weight: 500;
	line-height: 18px;
}

.delay-notification-remove__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px 16px;
	min-height: 42px;
	border-radius: 16px;
	background-color: $color-white;
	font-size: 16px;
	font-weight: 500;
	line-height: 18px;
	color: $color-black;
	box-sizing: border-box;
}

.delay-notification-remove__delay {
	height: 4px;
	border-radius: calc(4px / 2);
	background-color: rgba($color-white, 0.3);
	overflow: hidden;
}

.delay-notification-remove__delay__line {
	width: 100%;
	height: 4px;
	background-color: $color-white;
	transition: width 0.3s ease;
}
