/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.thinc-tabs-wrap{
	margin-bottom:30px;
}
.thinc-tabs-wrap li {
    list-style: none;
    border: 1px solid #1d7979;
    padding: 10px;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
	margin:10px 10px 0 0;
}
.thinc-tabs-wrap li:hover, .tab-active{
	background:#1d7979 !important;
	color:#fff !important;
}
.searchMemberWrapper {
    position: relative;
}
.membersWrap {
    max-height: 300px;
    overflow-y: scroll;
    background: #fff;
    box-shadow: 0 5px 10px #ddd;
    display: none;
    position: absolute;
    width: 100%;
    top: 45px;
}
.membersWrap li {
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
    list-style: none;
    font-size: 14px;
    color: #000;
	cursor:pointer;
}
.membersWrap li:hover{
	background:#f1f1f1;
}
.thinc-input-wrap label {
    font-size: 14px;
    margin-bottom: 8px;
}
.thinc-input-wrap select, .thinc-input-wrap  input, .thinc-input-wrap  textarea{
    border: 1px solid #ddd !important;
    height: 50px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
	outline:none;
}
.thinc-input-wrap  textarea{
	height:200px !important;
}
.thinc-form-wrap{
	display:flex;
	flex-wrap:wrap;
	gap:15px;
}
.thinc-input-wrap{
	width:100%;
}
.w-50{
	width:calc(50% - 10px);
}

.nominee-alert, .voting-alert  {
  padding: 15px;
  margin: 20px 0px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  display:none;
  background:#77b600;
}
.aw-danger{
  background:#c23830;
}





/*===============================================
 * Poll Widget CSS
 *==============================================*/
.poll-widget {
    border: 2px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.poll-widget h3 {
    font-size: 24px;
    font-weight: bold;
}

.poll-widget label {
    display: block;
    margin: 10px 0;
}

.poll-widget input[type="email"] {
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    width: 100%;
}

.poll-widget input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}


