#be-multistep-form .be-form-step {
    margin: 20px 0;
}

#be-multistep-form .be-categories,
#be-multistep-form .be-businesses {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#be-multistep-form .be-category,
#be-multistep-form .be-business {
    padding: 15px;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    cursor: pointer;
    flex-basis: 30%;
    text-align: center;
}

#be-multistep-form .be-category:hover,
#be-multistep-form .be-business:hover {
    background-color: #e7e7e7;
}

#be-multistep-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#be-multistep-form form input,
#be-multistep-form form textarea,
#be-multistep-form form button {
    padding: 10px;
    font-size: 16px;
}

#be-multistep-form form button {
    background-color: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
}

#be-multistep-form form button:hover {
    background-color: #005a8a;
}

/* Highlight selected category */
.be-category.selected {
    border: 2px solid #0073aa;
    background-color: #e7f7ff;
}


/*===================================================
 * Css By Ali
 *=================================================*/
.cat-wrap {
    width: calc(33% - 10px);
    background: #ebebeb;
    padding: 30px;
    border-radius: 15px;
}
.cat-wrap>h3 {
    margin-top: 0px;
    font-size: 24px;
    margin-bottom: 25px;
}
button.vote-btn {
    border: none;
    padding: 7px 25px;
}
.category-grid,.vote-category-grid,.bea-member-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.nomination-form{
	margin-top:30px;
}
form#nominationForm, #voteForm, #peopleChoice, #newBusinessForm, #BusinessForm, #voteCatNewBusiness  {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
	margin-top:20px;
}
.w-50 {
    width: calc(50% - 10px);
}
#nominationForm select, #nominationForm input,#voteForm input, #voteForm select,#peopleChoice input,#newBusinessForm input,#peopleChoice select,#newBusinessForm select.,#BusinessForm input,#BusinessForm select,#voteCatNewBusiness input, #voteCatNewBusiness select {
    border: 1px solid #ddd;
    height: 45px;
	outline:none;
}
#nominationForm textarea,#voteForm textarea,#peopleChoice textarea,#newBusinessForm textarea,#BusinessForm textarea,#voteCatNewBusiness textarea{
	border:1px solid #ddd;
	height:150px;
	width:100%;
	margin-bottom:20px;
}
.aw-success{
  background:#77b600;
}
.aw-danger{
  background:#c23830;
}
    
.aw-alert {
  padding: 15px;
  margin: 20px 0px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  display:none
}

.voting-title,.aw-bus-name{
    color: #1d7979;
    font-family: "Mignon", Sans-serif;
    font-size: 80px;
    font-weight: 500;
    line-height: 1.1em;
}

i.remove-model {
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

@media (max-width : 480px){
	
	.w-50{
		width:100%;
	}
	
}
a.btn-back {
    background: #000;
    padding: 3px 10px;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border: none;
    cursor: pointer;
}
.aw-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.5);
	display:none;
}
.aw-model {
    max-width: 1024px;
    margin: 10vh auto;
    max-height: 80vh;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.searchInputWrapper {
    position: relative;
}
div.nomineeWrap {
    max-height: 200px;
    overflow-y: scroll;
    border: 1px solid #ddd;
    border-radius: 5px;
    position: absolute;
    width: 100%;
    z-index: 99;
    background: #fff;
    box-shadow: 0 3px 5px #ddd;
	display:none;
}
.nomineeWrap>li {
    list-style: none;
    font-size: 14px;
    color: #333;
    padding: 5px 10px;
    cursor: pointer;
}
.nomineeWrap>li:hover{
	background:#f1f1f1;
}
.nomineeWrap::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.nomineeWrap::-webkit-scrollbar-track {
  background: #fff;
	border-radius:10px;
}

/* Handle */
.nomineeWrap::-webkit-scrollbar-thumb {
  background: #999;
	border-radius:10px;
}

.voting-nav {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
    background: #fcfcfc;
    padding: 7px;
    border: 1px solid #ddd;
    border-radius: 5px;
	margin-top:15px;
}
.voting-nav>li {
    list-style: none;
    display: block;
    padding: 5px 10px;
    background: #ddd;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
	transition:all 0.5s;
}
.voting-nav>li:hover,.nav-active{
	background:#1D7979 !important;
	color:#fff;
}
.aw-vote-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#nom-heading{
	display:none;
}


@media (max-width : 768px){
	
	.cat-wrap {
		width: calc(50% - 10px); }
	
}

@media (max-width : 480px){
	
	.cat-wrap {
		width: 100%; 
	}	
	.voting-nav{
		flex-wrap:wrap;
	}
	.voting-nav>li{
		white-space:nowrap;
	}
	.aw-vote-head a,.aw-vote-head button{
		font-size:14px !important;
		padding:5px !important;
		height: 40px;
		min-width:70px
	}
	.aw-vote-head>button{
		margin-top: 3px;
	}
	.aw-model {
		max-height: 100vh;
		margin: 0px;
		border-radius: 0px;
		height: 100vh;
		overflow-y: scroll;
	}
	i.remove-model{
		color : #1d7979 !important;
	}
	
}
