.open-modal {
    cursor: pointer;
}

.modal-content {
    top: 0;
    left: 0;
    border: none;
    opacity: 0;
    transition: all .25s ease-in-out;
    pointer-events: none;
    background: transparent;
}

.modal-content.activate-modal {
    opacity: 1 !important;
    pointer-events: all;
    z-index: 10;
}

.bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
}

.bg-content {
    /* display:flex;
    align-items:center;
    justify-content:center; */
    width: 95%;
    background: white;
    position: relative;
    margin: auto;
    padding: 50px 25px;
}

.modal-content .close {
    position: absolute;
    top: 25px;
    right: 25px;
}

/* start of search icon */
.search-icon .bg-content {
    background: transparent;
    text-align: center;
}

.search-icon input#s, input#s {
    width: 95%;
	background: #dde4e9;
    border: 0;
    padding: 10px 25px !important;
    border-radius: 25px;
    box-shadow: 1px 1px 3px inset rgba(0, 0, 0, .5);
    outline-color: var(--accent-primary);
	color: black !important;
}

@media only screen and (max-width:767px) {
	.bg-content {
    padding: 50px 10px;
}
	.search-icon input#s, input#s {
    width: 290px;
}

input#searchsubmit {
    width: 340px;
	border-radius:25px;
	margin-top:5px;
}
}

.modal-content label.screen-reader-text {
    font-size: 21px;
    color: white;
/*     text-shadow: 1px 1px 3px black; */
	position: relative;
    /* clip: unset !important; */
    clip-path: unset;
}

input#searchsubmit {
    background: #EDBA1D;
    color: black;
    font-weight: 900;
    font-size: 20px;
    border-color: #e2af14;
	border-radius: 25px;
    width: 100%;
    margin-top: 15px;
}

.search-icon .bg-overlay {
    background: rgba(0, 0, 0, 0.75);
}

/* end of search icon */