#searchForm {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	margin-top: 0;
	border: 0;
	background-color: rgba(255,255,255,0.95);
	position: fixed;
	top: -100px;
	left: 0;
	width: 100%; 
	z-index: 9999;
	transition: 0.75s ease all;
	opacity: 0;visibility: hidden;
	height: 0; overflow: hidden;
}
#searchForm form { text-align: center; display: block; width: 100%;}
#searchForm .formpad { 
	display: flex; padding: 2vw 3vw;
	justify-content: center; }

#searchForm .form-control.ccm-search-block-text{
    padding: 15px 20px;
    font-size: 1.75rem !important;
    border-radius: 5px;
    border: 1px #bbb solid;
    margin: 15px;
    color: #555;
    background: #fff;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.1);
    vertical-align: middle;
    font-family: "barlow-semi-condensed", sans-serif;
    font-weight: 100;
    font-style: normal;
    display: inline-block;
    height: 90px;
    line-height: 1;
    width: 80%;
    max-width: 500px;
}
#searchForm .ccm-search-block-submit{
       padding: 10px 25px;
    font-size: 1.25rem !important;
    border-radius: 5px;
    border: 0 #0079c2 solid;
    margin: 15px 0;
    color: #fff;
    background: #0079c2;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.1);
    vertical-align: middle;
    font-family: "barlow-semi-condensed", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    display: inline-block;
    height: 90px;
    line-height: 1;
    transition: 0.25s ease all;
    cursor: pointer;
}

@media screen and (max-width: 950px)
{
	#searchForm .form-control.ccm-search-block-text,
	#searchForm .ccm-search-block-submit{
	width: -webkit-fill-available;
		height: 70px; 
	}
}

#searchForm .ccm-search-block-form { margin: 0; }

button#toggleSearch,
 button#closeSearch { 
	aspectratio: 1 / 1;
	margin: 0; padding: 0;
	border: 0;
	vertical-align: middle;
	cursor: pointer;
	transition: 0.85s ease all;
}

button#toggleSearch { 
	width: 50px; height: 50px;
	background: url("images/icon--search.png") center no-repeat;
	background-size: contain; 
}
button#closeSearch {  
	width: 75px; height: 75px;
	background: url("images/icon--plus.png") center no-repeat;
	background-size: contain;  
	rotate: 0deg; 
}
button#toggleSearch.search-close { 
	width: 50px; height: 50px;
	background: url("images/icon--plus.png") center no-repeat;
	background-size: contain;
	rotate: -45deg;
}

#searchForm.search-show {
	opacity: 1; 
	visibility: visible;
	height: 100vh; top:0;
}

#searchForm.search-show button#closeSearch { 
	rotate: 45deg; opacity: 1;
}

