	.modal {
		position: fixed;
		z-index: 1;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%; 
		background-color: rgb(0,0,0); 
		background-color: rgba(0,0,0,0.4);
		padding-top: 60px;
	}

	.modal-content-static {
		background-color: #fefefe;
		margin: 5% auto 15% auto;
		border: 1px solid #888;
		width: 450px; 
		height: 200px;
		border-radius: 10px;
		padding: 10px;
	}

	.container {
		position: relative;
		padding: 20px;
		height: 140px;
	}

	.cl_login_icon {
		margin-bottom: -4px;
		margin-right: 15px;
		height: 20px;
	}

	/*==========================
	Buttons
	==========================*/
	.btn {
		background-color: DodgerBlue;
		border: none;
		color: white;
		margin-left: 1px;
		padding: 6px 10px;
		font-size: 12px;
		cursor: pointer;
		border-radius: 5px;
	}

	.btn:hover {
		background-color: RoyalBlue;
	}

	.btn_01 {
		float: none;
		color: #008489;
		background-color: white;
		border: none;
		text-align: left;
		cursor: pointer;
	}

	.btn_01:hover {
		text-decoration: underline #008489;
	}

	/*========================================
	No Select
	========================================*/
	.cl_noselect {
		user-select: none; 
	}

	/*========================================
	Cursor Pointer
	========================================*/
	.cl_pointer {
		cursor: pointer;
	}