/* Update Alert */

.sw-update-container {
	display: flex;
	justify-content: center;
}

.sw-update-alert {
	background: #404040;
	color: #ffffff;
	border-radius: 10px;
	position: fixed;
	padding: 10px 20px;
	font-size: 16px;
	bottom: 20px;
	z-index: 999;
	user-select: none;
	box-shadow: 0 0 15px rgb(0 0 0 / 25%);
	animation: fadein 1s ease-in-out;
}

@keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.sw-update-reload {
	margin-left: 10px;
	color: #a1c2fa;
	cursor: pointer;
	font-weight: bold;
}

@media screen and (max-width: 500px) {
	.sw-update-alert {
		padding: 10px 15px;
		margin: 0px 10px;
		font-size: 14px;
		text-align: center;
	}
	.sw-update-reload {
		margin-left: 5px;
	}
}

/* User Menu Option */

#user-menu .sw-user-settings {
	color: #bbbbbb;
	text-align: center;
	padding: 5px 0px 10px 0px;
	font-size: 16px;
	cursor: pointer;
	user-select: none;
}

#sidebar-container .sw-user-settings-mobile {
	border-bottom: 1px solid #dddddd;
	text-transform: uppercase;
	color: #555555;
	padding: 10px;
}

#sidebar-container .sw-user-settings-mobile:hover,
#user-menu .sw-user-settings:hover {
	color: #009fdf;
}

/* Notification Alerts */

.sw-notification-container {
	display: flex;
	justify-content: center;
}

.sw-notification-alert {
	width: 500px;
	background: #fefefe;
	color: black;
	position: fixed;
	padding: 20px 25px;
	font-size: 16px;
	top: 0px;
	z-index: 999;
	user-select: none;
	box-shadow: 0 0 15px rgb(0 0 0 / 50%);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	animation: slidein .75s ease-in-out;
}

.sw-notification-close {
	position: absolute;
	top: 2px;
	right: 5px;
	cursor: pointer;
	transform: scale(0.9);
	color: #6b6b6b;
}

.sw-notification-header,
.sw-notification-footer {
	display: flex;
}

.sw-notification-logo {
	margin-right: 10px;
}

.sw-notification-logo > img {
	width: 50px;
}

.sw-notification-footer {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.sw-notification-settings_open {
	cursor: pointer;
	margin-right: 5px;
}

.sw-notification-option {
	display: flex;
	align-items: center;
}

.sw-notification-label {
	margin-bottom: 0px;
	margin-left: 5px;
	cursor: pointer;
}

.sw-notification-input {
	cursor: pointer;
}

.sw-notification-hidden {
	display: none;
}

.sw-notification-settings_show > .sw-notification-hidden {
	display: block;
}

.sw-notification-settings_show > .sw-notification-settings_open > i {
	transform: scaleY(-1);
}

.sw-notification-buttons {
	display: flex;
}

.sw-notification-accept > button {
	padding: 5px 10px;
	border: none;
	border-radius: 3px;
	background: #0275d8;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	outline: none;
}

.sw-notification-deny > button {
	padding: 5px 10px;
	border: none;
	border-radius: 3px;
	margin-right: 10px;
	background: #929292;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	outline: none;
}

@media screen and (max-width: 500px) {
	.sw-notification-alert {
		width: 100%;
		padding: 20px 15px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}

.sw-notification-close_animation {
	animation: slideout .75s ease-in-out;
	animation-fill-mode: forwards;
}

@keyframes slidein {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0%);
	}
}

@keyframes slideout {
	from {
		transform: translateY(0%);
	}
	to {
		transform: translateY(-100%);
	}
}
