/**
 * CustomTables Joomla! 3.x Native Component
 * @package Custom Tables
 * @subpackage administrator/components/com_customtables/css/modal.css
 * @author Ivan Komlev <support@joomlaboat.com>
 * @link https://joomlaboat.com
 * @copyright Copyright (C) 2018-2025.
 * @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
 **/

/* Modal */

/* The Modal (background) */
.ctModal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 32000; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */

	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0, 0, 0); /* Fallback color */
	background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.ctModal_content {
	background-color: #fefefe;
	position: fixed; /* Stay in place */
	top: 0;
	left: 0;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 800px;

	overflow-y: auto;
	overflow-x: hidden;
}

.ctModal_content .tab-content {

	overflow-y: auto;
	overflow-x: hidden;
	height: 100%;
}


.ctModal_content .tab-content {

	overflow-y: auto;
	overflow-x: hidden;
	height: 100%;
}

/* The Close Button */
.ctModal_close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.ctModal_close:hover,
.ctModal_close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}


/* end of modal */
