/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 11 2026 | 09:20:36 */
.custom-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.custom-modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 0;
    width: 600px;
	max-width: 94%;
    border-radius: 0.5rem;
}
.custom-modal__header {
	display: flex;
	padding: 15px 50px 15px 15px;
	align-items: center;
	position: relative;
	border-bottom: 1px solid #ccc;
}
.custom-modal__title{
	font-size: 20px;
	margin: 0 ;
	padding-bottom: 0;
	}
.modal-close {
	float: right;
	text-align: center;
	cursor: pointer;
	background-color: transparent;
	font-size: 42px;
	font-weight: 400;
	position: absolute;
	right: 10px;
	top: 5;
	opacity: 1;
}
.modal-close:hover {
    opacity: 1;
}
.show-custom__modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
	z-index: 950;
}
.custom-modal__body {
	padding: 30px 20px;
}
.company_modal__detail .companies_list__info_item {
	color: var(--primary);
	padding: 20px 0 0 0;
	font-size: 18px;
}

.contact_modal .custom-modal__content {
	width: 500px;
}

.contact_modal__form .form_group {
	margin-bottom: 15px;
}
.contact_modal__form label {
	display: block;
}
.contact_modal__form .form_control {
	width: 100%;
	height: 42px;
	border-radius: 30px;
	padding: 5px 15px;
	color: #000;
	font-size: 16px;
}
.contact_modal__form textarea.form_control {
	min-height: 80px;
	height: 80px;
	max-height: 80px;
	margin-bottom: 15px;
}

.contact_modal__form .btn.btn_primary {
	width: 100%;
	background-color: var(--primary);
	border: 0;
	color: #fff;
	transition: .3s;
	height: 48px;
	border-radius: 30px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 10px;
}
.contact_modal__form .btn.btn_primary:hover {
	opacity: .85;
	transition: .3s;
}

.companies-modal .custom-modal__body, .view-companies-modal .custom-modal__body{
	max-height: 80vh;
	overflow-x: hidden;
}

