@media only screen and (min-width: 576px) {

	.confirm {
		display: none;
		color: #1b1b1b;
	}
	
	.del-close-comp {
		cursor: pointer;
		border-radius: 5px;
		background-color: rgb(241, 191, 51);
		padding: 8px;
		padding-left: 14px;
		padding-right: 14px;
	}
	
	.modal-body {
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: rgba(27, 27, 27, 0.8);
		position: fixed;
		z-index: 1299900;
		overflow: scroll;
	}
	
	.confirm-slider {
		min-width: 55%;
		max-width: 55%;
		border-radius: 15px;
		cursor: default;
		position: relative;
	}
	
	.confirm-exit {
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		position: fixed;
	}
	
	.confirm-body {
		margin: 5px;
		margin-top: 50px;
		border-radius: 15px;
		font-size: 25px;
		background-color: white;
	}
	
	.confirm-bar {
		background-color: #dadada;
		padding: 12px;
		border-radius: 15px 15px 0 0;
		font-size: 16px;
		position: relative;
	}
	
	.confirm-bar-top {
		background-color: rgba(0, 0, 0, .005);
		padding: 12px;
		font-size: 16px;
		position: relative;
	}
}

@media only screen and (max-width: 576px) {

	.confirm {
		display: none;
		color: #1b1b1b;
	}
	
	.del-close-comp {
		cursor: pointer;
		border-radius: 5px;
		background-color: rgb(241, 191, 51);
		padding: 8px;
		padding-left: 14px;
		padding-right: 14px;
	}
	
	.modal-body {
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		min-width: 200px;
		background-color: rgba(27, 27, 27, 0.8);
		position: fixed;
		z-index: 1299900;
	}
	
	.confirm-slider {
		cursor: default;
		position: relative;
	}
	
	.confirm-exit {
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		position: fixed;
	}
	
	.confirm-body {
		font-size: 25px;
		background-color: white;
		min-height: 800px;
		max-height: 800px;
	}
	
	.confirm-bar {
		background-color: #dadada;
		padding: 12px;
		font-size: 16px;
		position: relative;
	}
	
	.confirm-bar-top {
		background-color: rgba(0, 0, 0, .005);
		padding: 12px;
		font-size: 16px;
		position: relative;
	}
}

.pull-right {
	float: right;
}