/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.ds-aiw-none {
	display: none;
	opacity: 0;
	visibility: hidden;
}

span.ds-required{
	color: red !important;
}

.ds-member-modal-open{
   overflow: hidden;
}

button.ds-member-modal-btn{
   border: 2px solid #CD171B !important;
   border-radius: 0px !important;
   color: #fff !important;
   background-color: #CD171B !important;
}

button.ds-member-modal-btn:hover {
   color: #CD171B !important;
   background-color: #fff !important;
   transition: all .2s;
}

.ds-member-modal {
	display: none;
	position: fixed;
	z-index: 9998;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content/Box */
.ds-member-modal-content {
	background-color: #e4e5e5;
	margin: 10% auto;
	box-sizing: border-box;
	padding: 60px 30px 60px 30px;
	border: 1px solid #888;
	max-width: 1000px;
	height: 600px;
	overflow-y: auto;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
}

/* The Close Button */
.ds-member-close-modal {
	position: absolute;
	color: #aaa;
	font-size: 36px;
	font-weight: bold;
	top: 10px;
	right: 14px;
	line-height: 1em;
	cursor: pointer;
}

.ds-member-close-modal:hover,
.ds-member-close-modal:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.ds-member-modal-short-portrait {
	display: flex;
	justify-content: flex-start;
	box-sizing: border-box;
	flex-direction: column;
	width: 60%;
	color: #000;
	/* padding: 15px; */
}

.ds-member-close-wrap{
	position: absolute;
	top: 15px;
	right: 15px;
}

.ds-member-modal-content-wrapper{
	display: flex;
	flex-direction: row-reverse;
	gap: 30px;
}

.ds-member-modal-contact-box {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	padding: 30px;
	width: 40%;
	height: min-content;
	background-color: #fff;
	color: #000;
}

.ds-member-modal-contact-box .ds-logo {
	max-width: 100%;
	max-height: 400px;
}

.ds-member-modal-contact-box .ds-member {
	padding: 15px 0 0 0;
}

.ds-member-modal-contact-box .ds-contact {
	/* padding: 5px 0 0 0; */
}

.ds-filter-a-to-z-container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 10px;
}
.ds-filter-a-to-z-container a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 32px;
	width: 32px;
	aspect-ratio: 1 / 1;
	line-height: 1em;
	color: #CD171B;
	border: 1px solid #CD1719;
	text-decoration: none;
	border-radius: 50%;
}

.ds-filter-a-to-z-container a:hover{
	color: #fff !important;
	background: #CD1719;
}

.ds-filter-a-to-z-container a.active {
	background-color: #CD1719;
	color: white;
}

@media only screen and (max-width: 766px) {
	.ds-member-modal-content{
		flex-direction: column;
		width: 100vw;
		max-width: 100vw;
		height: 100%;
		overflow-y: scroll;
		overflow-x: hidden;
		margin: 0;
	}

	.ds-member-modal-short-portrait{
		width: 100%;
	}
	.ds-member-modal-contact-box{
		width: 100%;
	}

	.ds-member-modal-content-wrapper{
		flex-direction: column-reverse;
	}
}

.ds-member-filter-container{
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	position: relative;
}

.ds-member-filter-select-container{
	display: flex;
	flex-wrap: nowrap;
	position: relative;
	flex-direction: row;
	gap: 40px;
	justify-content: space-between;
}

.ds-member-filter-select-wrapper{
	display: flex;
	width: 100%;
	position: relative;
	flex-direction: column;
	gap: 15px;
}

.ds-member-filter-select-wrapper label{
	text-transform: uppercase;
}

.ds-member-filter-select-wrapper select{
	border: 1px #000 solid;
	outline: none;
	border-radius: 0;
	appearance: none;
}

.ds-member-filter-search-wrapper{
	position: relative;
	padding: 30px 0 0 0;
}

a.ds-member-filter-button{
	padding: 10px 20px;
	background-color: #A72124;
	color: #fff;
	text-decoration: none;
	border-radius: 0;
	border: 2px solid #A72124;
}

a.ds-member-filter-button:hover{
	color: #A72124;
	background: #fff;
}