
.search-popup-block {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    /* background-image: url(./../../../data/editor/bg-search.png); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1040;
    top: 0;
    overflow: hidden;
    transition: 0.25s ease-in-out;
    opacity: 0;
    visibility: hidden;
    left: 0;
}

.search-popup-block.show {
    opacity: 1;
    visibility: visible;
}

.search-popup-block .main-section-title {
    margin-bottom: 25px;
}

.search-popup-block .search-input-wrapper {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    width: 50%;
}

.search-input-wrapper .form-control {
    padding: 20px;
    padding-right: 50px;
    border-radius: 30px;
}

.search-input-wrapper .form-control:focus {
    border-radius: 30px !important;
}

.search-btn {
    position: absolute;
    right: 30px;
    top: 20%;
    font-size: 24px;
    cursor: pointer;
}

.search-close-btn {
    position: absolute;
    right: 50px;
    top: 50px;
    font-size: 24px;
    cursor: pointer;
}

.search-wrapper {
    display: inline-block;
    font-size: 1rem;
    color: #ae502b;
}

.search-box .search-input{
    padding-right: 75px;
    border: 1px solid #d0d0d0;
}

.btn-search {
    all: unset;
    position: absolute;
    top: 25%;
    right: 7%;
}

.btn-search-style-3 {
    position: absolute;
    background-color: transparent;
    border: 0px;
}


@media only screen and (max-width: 992px) {
	.inner-section-title{
		font-size : 1.8em;
	}
	
	.search-input-wrapper{
		width : 95%;
	}
}