
/* Modal styling */
.modal {
    display: none;
}
.modal.is-open {
    display: block; 
}
.modal__overlay {
    align-items: center;
    background: rgba(0, 0, 0, .6);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}
.modal__container {
    background-color: #fff;
    border-radius: 4px;
    box-sizing: border-box;
    max-height: 100vh;
    max-width: 500px;
    overflow-y: auto;
    padding: 30px;
}

/*Form styling*/
.form-checkbox {
	display:flex;
	}
.form-checkbox input {
	margin-right:5px;
	}
	
/* Search bar */
.search-bar {
	margin-bottom:10px;
	}
.search-bar input {
	border-radius:0px!important;
	border-color:#AFA398!important;
	}