/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 29 2025 | 05:01:47 */
.modal-trigger {
    text-align: center;
    padding: 7px 10px;
    color: var(--prinary);
    font-size: 15px;
    outline: none;
    border: none;
    border-radius: 0;
    font-family: cursive;
    cursor: pointer;
}

.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 ;
	}
h3.custom-modal__title {
    color: #000;
    font-family: var(--primary);
    padding-bottom: 0;
}
.modal-close {
    float: right;
    text-align: center;
    cursor: pointer;
    background-color: var(--primary);
    font-size: 35px;
    font-weight: 200;
    position: absolute;
    right: 10px;
    top: 0;
    opacity: 1;
    color: #fff;
    width: 30px;
    font-family: var(--primaryfont);
    height: 30px;
    border-radius: 30px;
    right: -15px;
    top: -10px;
}
.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: 999999;
}
.custom-modal__body {
	padding: 30px 20px;
}