/**
 * Theme Name:     SOFD - 16/9
 * Author:         Flash Raccoon
 * Template:       hello-elementor
 * Text Domain:	   sofd-16-9
 * Description:    Flash Raccoon
 */


/*CUSTOM*/
.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0);
}

.custom-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1920px;
    margin-top: 2%;
    margin-bottom: auto;
}

.custom-modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

/* Previous and Next buttons */
.custom-modal-prev,
.custom-modal-next {
    position: absolute;
    top: 50%;
    color: var(--e-global-color-primary);
    font-size: 30px;
    font-weight: bold;
    padding: 10px;
    background: rgba(0,0,0,0);
    cursor: pointer;
    transform: translateY(-50%);
    user-select: none;
	border: 0px solid;
}

.custom-modal-prev {
    left: 5vh;
}

.custom-modal-next {
    right: 5vh;
}

/* Button hover effects */
.custom-modal-prev:hover,
.custom-modal-next:hover,
.custom-modal-close:hover, .custom-modal-prev:focus,
.custom-modal-next:focus,
.custom-modal-close:focus {
background-color: var(--e-global-color-primary);
    color: #ffffff;
	border: 0px solid;
}

/* Title inside modal */
.custom-modal-title {
    color: white;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}

/* CSS for smartphones only */
@media only screen and (max-width: 767px) {
  /* Your smartphone-specific styles here */
	.custom-modal-content {
		margin: auto;
    display: block;
    width: 80%;
    max-width: 600px;
    margin-top: 50%;
    margin-bottom: auto;
}
	
.custom-modal-prev {
    left: 0;
}

.custom-modal-next {
    right: 0;
}
	
	}