@charset "UTF-8";

.delegateHeader {
  display: grid;
  grid: min-content / 1fr;
  grid-gap: 0.7rem;
}
.delegateHeader h5 {
  color: var(--eventHighlight);

  text-transform: uppercase;

}
@media (max-width: 750px) {
  .delegateHeader h5 {
	  display:none;
	}
}

/* DASHBOARD */

.dashboard {
  display: grid;
  grid: auto min-content / 1fr 1fr;
  grid-gap: 40px;
}
.dashboard > .dashboard-item {
  display: grid;
  grid-gap: 10px;
	background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, rgb(255, 255, 255) 40%);
  padding: 50px 60px;
  border-radius: 5px;
	align-content: start;
}

.dashboard-item p {
  line-height: 2.5rem;
}
.dashboard-item .linkButton {
  width: max-content;
	margin-top: 1rem;
}
.dashboard-item h3 {
  text-transform: uppercase;
  font-family: 'gilroyextrabold';
  font-size: 2.4rem;
	padding: 0;
}
.dashboard-item h5 {
  color: var(--eventLowlight);
  font-size: 2rem;
  line-height: 2.3rem;
}
.attpack .linkButton {
  align-self: start;
}
@media (max-width: 1200px) {
  .dashboard {
	  grid-gap: 30px;
	}
	.dashboard > .dashboard-item {
	  padding: 40px 50px;
	}
}
@media (max-width: 950px) {
  .dashboard {
	  grid: auto min-content / 1fr;
	}
}
@media (max-width: 750px) {
  .dashboard-item h3 {
	  font-size: 2.2rem;
	}
	.dashboard-item h5 {
	  font-size: 1.8rem;
	  line-height: 2.2rem;
	}
}
@media (max-width: 550px) {
	.dashboard {
	  grid-gap: 10px;
	}
	.dashboard > .dashboard-item {
	  padding: 20px;
		grid-gap: 5px;
	}
  	.dashboard-item h3 {
		font-size: 1.9rem;
		line-height: 2.3rem;
	  }
	.dashboard-item h5 {
	  font-size: 1.6rem;
    line-height: 2.1rem;
	}
}

/* DASHBOARD */

/* COMPANY PROFILE */
.companyProfile {
  display: grid;
  grid: auto min-content / 1fr;
	gap: 10px;
	width: 100%;
}
.companyProfile-item {
  display: grid;
  grid-gap: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, rgb(255, 255, 255) 40%);
  padding: 50px 60px;
  border-radius: 5px;
  align-content: start;
}
.companyDetails {
grid: 43px auto / 1fr 240px;
	column-gap: 60px;
	row-gap: 30px;
}
.companyDetails > section {
 	grid-area: 1 / 1 / 3 / 2;
}
.editButton {
	display: grid;
	  grid: auto min-content / 1fr 24px;
	  align-items: center;
	align-self: start;
	justify-self: end;
	column-gap: 8px;
}
.companyDetails > .editButton {
 	grid-area: 1 / 2 / 2 / 3;
}
.editButton svg {
  margin: 0;
}
.companyDetails > .companyLogo {
 	grid-area: 2 / 2 / 3 / 3;
	object-fit: contain;
  max-height: 200px;
  max-width: 100%;
	object-position: right;
}
.companyDetails h3 {
  font-family: 'gilroybold';
  font-size: 3rem;
  line-height: 3.4rem;
}
.companyDetails h4 {
  color: var(--eventHighlight);
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 2.4rem;
	padding-bottom: 1.5rem;
}

.socials {
  list-style: none;
  display: grid;
  grid: auto min-content / 1fr 1fr 1fr;
  grid-gap: 10px;
	font-size: 1.6rem;
	padding-top: 2.5rem;
}
.socials li {
  background: rgba(238, 237, 232,1);
  display: grid;
  padding: 8px 12px;
  border-radius: 5px;
	grid: auto / max-content 1fr;
	align-items: center;
	gap:10px;
}
.socials li .addButton {
	justify-self: end;
}
.companyProfile p {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.companyProfile .address{
  padding-bottom: 1.5rem;
}
.companyProfile p a,
.socials li .sociallink {
  font-family: 'glypha_lt_pro55_roman';
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid var(--eventLowlight);
	width: max-content;
	transition: border 0.3s;
}
.companyProfile p a:hover {
  font-family: 'glypha_lt_pro55_roman';
  color: #000;
	border-bottom: 1px solid var(--purple);
}
.companyDetails strong {
  font-family: 'gilroybold';
  color: var(--purple);
}
.socials .notgiven {
  background: rgba(238, 237, 232,0.3);
}
.socials .notgiven strong  {
  opacity: 0.5;
}
.addButton {
  background-color: var(--eventLowlight);
  border-radius: 5px;
  padding: 7px 9px;
  border-bottom: none;
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: #FFF;
  font-family: 'gilroybold', Helvetica, sans-serif;
	text-decoration:none;
	transition: background-color 0.3s;
	width: max-content;
	cursor: pointer;
}
.delegateContact .addButton {
  margin: 5px 0;
}
.plusSVG {
  fill: var(--purple);
  transition: fill 0.3s;
}
.addButton:hover {
  background-color: var(--purple);
}
.addButton:hover .plusSVG {
  fill: var(--eventHighlight);
}

@keyframes pulse {
  0% {
    transform: scale(1);
	 background-color: var(--eventLowlight);
  }
  50% {
    transform: scale(1.05);
	  background-color: var(--purple);
  }
  100% {
    transform: scale(1);
	  background-color: var(--eventLowlight);
  }
}
@keyframes svgPtoW {
  0% {
	 fill: var(--purple);
  }
  50% {
	fill: #FFFFFF;
  }
  100% {
	fill: var(--purple);
  }
}

.missingThrob {
  animation: pulse 2s infinite;
}
.missingThrob .plusSVG {
  animation: svgPtoW 2s infinite;
}
.missingSpan {
  border-radius: 5px;
  padding: 7px 9px;
  border-bottom: none;
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: #FFF;
  font-family: 'gilroybold', Helvetica, sans-serif;
  display: inline-block;
	margin: 5px 5px 0px 0px;
}
@media (max-width: 1500px) {
	.socials {
	  grid: auto min-content / 1fr 1fr;
	}
}
@media (max-width: 1200px) {
	.companyProfile-item {
	  padding: 40px 50px;
	}
	.socials {
	  grid: auto min-content / 1fr;
	}
	.companyDetails h3 {
	  font-size: 2.8rem;
	  line-height: 3.2rem;
	}
	.companyDetails h4 {
	  font-size: 1.9rem;
	  line-height: 2.3rem;
	}
}
@media (max-width: 1000px) {
	.companyProfile-item {
	  padding: 30px 40px;
	}
	.companyDetails h3 {
	  font-size: 2.6rem;
	  line-height: 3rem;
	}
	.companyDetails h4 {
	  font-size: 1.8rem;
	  line-height: 2.2rem;
	}
}
@media (max-width: 850px) {
	.companyDetails h3 {
	  font-size: 2.4rem;
	  line-height: 2.8rem;
	}
	.companyDetails h4 {
	  font-size: 1.7rem;
	  line-height: 2.1rem;
	}
	.editButton {
	  padding: 8px 10px;
	  font-size: 1.6rem;
	  line-height: 1.6rem;
		grid: auto min-content / 1fr 20px;
	  column-gap: 4px;
	}
	.editButton svg {
	  width: 20px;
	  height: 20px;
	}
	.companyDetails > .companyLogo {
	  max-height: 120px;
	}
	.companyDetails {
	  grid: 43px auto / 1fr max-content;
	  column-gap: 30px;
	  row-gap: 30px;
	}
}
@media (max-width: 750px) {
	.companyProfile-item {
  		background: #FFF;
	}
	.companyDetails {
		grid: auto / 1fr 1fr;
		column-gap: 20px;
	    row-gap: 20px;
	}
	.companyProfile p {
	  font-size: 1.5rem;
	  line-height: 2.2rem;
	}
	.socials {
	  grid-gap: 5px;
	  font-size: 1.5rem;
	  padding-top: 2.2rem;
	}
	.companyDetails > .companyLogo {
	  grid-area: 1 / 1 / 2 / 2;
	  object-position: left;
		max-height: 90px;
	}
	.companyDetails > section {
		grid-area: 2 / 1 / 3 / 3;
	}
	
}
@media (max-width: 650px) {
	  .companyDetails {
		grid: auto / 1fr;
		column-gap: 0;
		row-gap: 30px;
	  }
	.companyDetails > .editButton {
	  grid-area: 1 / 1 / 2 / 2;
		justify-self: auto;
	}
	  .companyDetails > .companyLogo {
    	grid-area: 2 / 1 / 3 / 2;
	}
	 .companyDetails > section {
		grid-area: 3 / 1 / 4 / 3;
	  }
}
@media (max-width: 550px) {
	.companyProfile-item {
	  padding: 20px;
	}
	.companyDetails h3 {
	  font-size: 2.2rem;
	  line-height: 2.6rem;
	}
	.companyDetails h4 {
	  font-size: 1.6rem;
	  line-height: 2rem;
	}
	
}
/* COMPANY PROFILE */

/* MODAL */
.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 30;
  top: 0;
  left: 0;
  /*background: #F5F5F290;*/
  background: rgba(245,245,242, 90%);
	row-gap: 30px;
  column-gap: 20px;
	opacity:0;
	align-content: center;
  justify-content: center;
	display:none;
	grid: 35px 1fr / 1fr 105px 90px;
	padding: 30px 40px 40px 40px;
	
}
#fullscreenmodal {
  column-gap: 0;
  grid: 35px 1fr / 1fr 90px;
}
.modalNone {
  display:none;
}
.modalLoader {
  opacity:0;
}
.modalLoaders {
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
	z-index: 31;
}
.closeButton {
	display: grid;
	background-color: var(--purple);
  border-radius: 5px;
  padding: 10px 12px;
	text-decoration: none;
  color: #FFF;
  font-family: 'gilroyextrabold', Helvetica, sans-serif;
  font-size: 1.8rem;
  line-height: 1.8rem;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  grid: auto min-content / 1fr 16px;
  align-items: center;
  align-self: start;
  justify-self: end;
  column-gap: 8px;
}
.saveButton {
	display: grid;
	background-color: var(--eventHighlight);
  border-radius: 5px;
  padding: 10px 12px;
	text-decoration: none;
  color: var(--purple);
  font-family: 'gilroyextrabold', Helvetica, sans-serif;
  font-size: 1.8rem;
  line-height: 1.8rem;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  grid: auto min-content / 1fr 30px;
  align-items: center;
  align-self: start;
  justify-self: end;
  column-gap: 8px;
}
.closeButton svg {
  width: 16px;
  height: 16px;
}
.saveButton svg {
  width: 30px;
  height: 17px;
}
.saveButton .arrowRight {
  fill:var(--purple);
}
.closeLine {
  fill: #FFF;
	transition: background-color 0.3s;
}

.closeButton:hover {
	background-color: var(--eventLowlight);
}
.closeButton:hover .closeLine {
	fill: var(--purple);
}
.saveButton:hover {
	background-color: var(--purple);
	color: #FFF;
}
.saveButton:hover .arrowRight {
	fill: var(--eventHighlight);
}
#companyProfileForm textarea {
  width: 100%;
  background-color: #EEEDE8;
  padding: 10px;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  font-family: 'glypha_lt_pro55_roman';
  font-size: 1.6rem;
  line-height: 1.8rem;
  color: var(--purple);
}
.modalContent {
	display:none;
	opacity:0;
	  grid-gap: 10px;
	  background: #FFF;
	  padding: 50px 60px;
	  border-radius: 5px;
	  align-content: start;
	grid-area: 2 / 1 / 3 / 4;
	width: 100%;
  height: 100%;
  overflow: scroll;
	grid: auto / 1fr;
	z-index: 32;
}
.modalContent form {
  display: grid;
  gap: 50px;
	align-content: start;
}
.modalContent textarea {
  width: 100%;
  background-color: #EEEDE8;
  padding: 10px;
  border: none;
  border-radius: 5px;
  min-height: 40px;
  font-family: 'glypha_lt_pro55_roman';
  font-size: 1.6rem;
  line-height: 1.8rem;
  color: var(--purple);
}
.modalContent form .submitButton {
  justify-self: start;
	margin-top: 0;
}
.modalContent h5 {
  color: var(--eventHighlight);
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 2.4rem;
}
.modalContent h6 {
  color: var(--purple);
	font-family: 'gilroyextrabold', Helvetica, sans-serif;
  font-size: 1.8rem;
  line-height: 2.2rem;
	margin: 20px 0 20px 0;
}
.modalContent form section {
  display: grid;
	gap: 15px;
  width: 100%;
}
.modalContent form .select {
  background-color: #EEEDE8;
}
.modalError {
  justify-self: center;
  align-self: center;
}
.modalError h5 {
  color: var(--purple);
  text-transform: none;
  font-size: 2.3rem;
  line-height: 2.6rem;
}
.mainFormMsg {
	background: var(--purple);
  padding: 20px;
  border-radius: 5px;
  display: grid;
  grid-gap: 15px;
  margin-bottom: 25px;
}
.mainFormMsgProfile {
  margin-bottom: 0;
  width: 100%;
}
.mainFormMsg h5 {
	color: #FFF;
  text-transform: none;
}
.subErrors {
	display: flex;
  flex-direction: row;
	flex-wrap: wrap;
  gap: 10px;
}
.subErrors span {
	background: var(--eventHighlight);
  padding: 5px;
  border-radius: 5px;
  text-transform: uppercase;
  font-family: 'gilroyextrabold';
  font-size: 1.2rem;
  line-height: 1.2rem;
  color: var(--purple);
}
.fieldError {
	border: 2px solid var(--eventHighlight) !important;
}
div.select:has(> select.fieldError) { 
	border: 2px solid var(--eventHighlight) !important;
}
.select .fieldError { 
	border: 2px solid transparent !important;
}
@media (max-width: 1600px) {
}
@media (max-width: 1210px) {
	.modalContent {
	  padding: 40px 50px;
	}
}
@media (max-width: 950px) {
    .modalLoaders {
        width: 150px;
		top: calc(50% - 75px);
  		left: calc(50% - 75px);
    }
	.modalContent {
	  padding: 30px 40px;
	}
	.modalContent h5 {
	  font-size: 1.8rem;
	  line-height: 2.2rem;
	}
	.modalContent form {
	  gap: 30px;
	}
	.modalContent h6 {
	  margin: 20px 0 10px 0;
	}
}
@media (max-width: 850px) {
	
	.modal {
	  padding: 15px 20px;
		 column-gap: 10px;
		row-gap: 15px;
	}
	.modalContent {
	  padding: 20px 25px;
	}
	.modalContent h5 {
	  font-size: 1.6rem;
	  line-height: 2rem;
	}
	.modalContent h6 {
	  font-size: 1.6rem;
	  line-height: 2rem;
	}
	.saveButton {
	  padding: 7px 9px;
	  font-size: 1.6rem;
	  line-height: 1.6rem;
	  column-gap: 5px;
	  text-transform: uppercase;
		grid: auto min-content / 1fr 20px;
	}
	.saveButton svg {
	  width: 20px;
	  height: 17px;
	}
	.closeButton {
	  padding: 7px 9px;
	  font-size: 1.6rem;
	  line-height: 1.6rem;
	  column-gap: 5px;
	  text-transform: uppercase;
		grid: auto min-content / 1fr 12px;
	}
	.closeButton svg {
	  width: 12px;
	  height: 12px;
	}
}
@media (max-width: 550px) {
    .modalLoaders {
        width: 100px;
		top: calc(50% - 50px);
  		left: calc(50% - 50px);
    }
	
}

/* DELEGATE DETAILS */

.delegateDetails {
	background: rgba(238, 237, 232,1);
  border-radius: 5px;
  display: grid;
    grid: auto / 140px 1fr max-content;
	grid-column-gap: 40px;
	grid-row-gap: 20px;
	padding:20px;
}
.delegateContact {
  display: grid;
  align-content: center;
}
.delegateContact h4 {
    font-size: 2.6rem;
  line-height: 2.8rem;
  text-transform: none;
  font-family: 'gilroyregular';
  margin-bottom: 5px;
  }
.delegateContact h5 {
  font-size: 1.6rem;
  line-height: 2rem;
  text-transform: uppercase;
	margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .delegateContact h4  {
    font-size: 2.2rem;
  line-height: 2.4rem;
  }
}
@media (max-width: 1000px) {

}
@media (max-width: 850px) {
  .delegateContact h4  {
    font-size: 2rem;
  line-height: 2.2rem;
  }
	.delegateContact h5 {
	  font-size: 1.4rem;
	  line-height: 1.8rem;
	}
	.delegateDetails {
	grid-column-gap: 20px;
		grid: min-content min-content / 1fr 160px;
}
	.delegateDetails .logo {
  grid-area: 2 / 2 / 3 / 3;
}
	.delegateContact {
  grid-area: 1 / 1 / 3 / 2;
}
}
@media (max-width: 650px) {
	.delegateDetails {
    	grid: auto / 1fr;
	}
	.delegateDetails .logo {
		max-width: 200px;
	  justify-self: center;
		grid-area: 2 / 1 / 3 / 2;
	}
	.delegateDetails .editButton {
	  grid-area: 1 / 1 / 2 / 2;
	  justify-self: center;
	}
	 .delegateContact {
		grid-area: 3 / 1 / 4 / 2;
	  }

}

#companyProfileForm {
  display: grid;
  grid: auto / 1fr 300px;
	row-gap:30px;
	column-gap:50px;
}
#companyProfileForm .submitButton {
  margin: 0;
  width: fit-content;
}
.buyerQuestions #companyProfileForm {
  grid: auto / 1fr;
}
.ck.ck-editor {
  margin-top: 10px !important;
}
.ck-powered-by-balloon {
  display: none !important;
}
.ck.ck-editor__editable.ck-focused:not(.ck-editor__nested-editable) {
  border: 2px solid var(--eventHighlight)!important;
  /*box-shadow: var(--ck-inner-shadow),0 0;*/
}
.formError .ck-editor__editable {
  border: 2px solid var(--eventHighlight)!important;
}
#companyProfileForm .ck-content {
  display: grid;
  grid-gap: 15px;
	padding: 15px;
}
#companyProfileForm .ck-content p {
  width: 100%;
  display: block;
  float: none;
  padding: 0;
	margin: 0;
  line-height: 20px;
}
#companyProfileForm .ck-content ul, #companyProfileForm .ck-content ol {
  margin-left: 10px;
}
@media (max-width: 1200px) {
	#companyProfileForm {
  		grid: auto / 1fr 200px;
	}
}
@media (max-width: 1000px) {
  #companyProfileForm {
	  grid: auto / 1fr;
	row-gap:20px;
	column-gap:30px;
	}
	#companyProfileForm .logo {
	  max-width: 200px;

	}
}

/* Buyer Profile Form */
.futureProjects {
  display: grid;
  row-gap: 10px;
}
.projects {
  list-style: none;
  display: grid;
  grid: auto / 1fr 1fr 1fr 1fr;
	column-gap: 5px;
}
.projects label {
  color: var(--purple);
  font-size: 1.4rem;
	line-height: 1.5rem;
}
.projects li {
  display: grid;
  align-items: end;
}
/* Instructions */

.instructions li {
  font-size: 1.6rem;
  line-height: 2.4rem;
}
.instructions li strong {
  font-family: 'gilroybold';
  color: var(--purple);
	font-size: 1.7rem;
}

.dummy_request_button{
  background-color: var(--eventLowlight);
  border-radius: 5px;
  padding: 5px 7px;
  border-bottom: none;
  font-size: 1.5rem !important;
  line-height: 1.5rem !important;
  color: #FFF !important;
  font-family: 'gilroybold', Helvetica, sans-serif;
  text-decoration: none;
  transition: background-color 0.3s;
  width: max-content;
  cursor: pointer;
	display:inline-grid;
	grid:auto / auto auto;
	gap:5px;
	margin:0 2px;
}
.dummy_view_button{
  background-color: var(--purple);
  border-radius: 5px;
  padding: 5px 7px;
  border-bottom: none;
  font-size: 1.5rem !important;
  line-height: 1.5rem !important;
  color: #FFF !important;
  font-family: 'gilroybold', Helvetica, sans-serif;
  text-decoration: none;
  transition: background-color 0.3s;
  width: max-content;
  cursor: pointer;
	display:inline-grid;
	grid:auto / auto auto;
	gap:5px;
	margin:0 2px;
}
.dummy_save_button {
  background-color: var(--eventLowlight);
  border-radius: 5px;
  padding: 5px 7px;
  border-bottom: none;
  font-size: 1.5rem !important;
  line-height: 1.5rem !important;
  color: #FFF !important;
  font-family: 'gilroybold', Helvetica, sans-serif;
  text-decoration: none;
  transition: background-color 0.3s;
  width: max-content;
  cursor: pointer;
	display:inline-grid;
	grid:auto / auto auto;
	gap:5px;
	margin:0 2px;
}

/* CHOOSE MEETINGS */

.meetingsTitle {
  display: grid;
  grid: min-content / 1fr auto;
  width: 100%;
  gap: 20px;
  align-items: center;
	grid-area: 1 / 1 / 2 / 4;
}
.meetingsTitle > h3 {
  font-family: 'gilroybold';
  font-size: 1.8rem;
  line-height: 1.8rem;
  margin: 0;
  padding: 0;
  display: grid;
}
.meetingsPanel {
  display: grid;
	height: calc(100vh - 440px);
  width:100%;
  grid: auto / 1fr 2fr 280px;
  align-items: start;
  gap: 13px;
	position:relative;
}
.viewCompanies {
  grid: auto / 30% 70%;
}
.meetingsPanelList {
  display: grid;
  height: 100%;
  overflow: scroll;
}
.meetingsPanelList > h3 {
  background: var(--eventLowlight);
  padding: 10px 12px;
  color: #FFF;
  font-family: 'gilroybold';
  font-size: 1.8rem;
  line-height: 1.8rem;
  border-radius: 5px;
}
.companyButtons {
	display: grid;
  height: 100%;
  overflow-y: scroll;
	background-color: #F5F5F2;
}
.companyButtons > button {
  display: grid;
  width: 100%;
  grid: auto / 1fr auto;
  text-align: left;
  padding: 12px 14px;
  background: #FFF;
  border: none;
  border-radius: 5px;
  font-family: 'gilroyregular', Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6rem;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
	gap: 5px;
}
.companyButtons > button:nth-child(2n + 1) {
  background: #EFEEE8;
}
.companyButtons > button > svg {
  margin-top: 3px;
}
.companyButtons > button:hover {
  background: var(--purpleTint);
	color:#FFF;
}
.companyButtons > button:hover .arrowRight {
  fill: #FFF;
}
.meetingsPanelDisplay {
  background: #FFF;
  padding: 30px;
  border-radius: 5px;
  height: 100%;
  overflow-y: scroll;
	grid-area: 2 / 2 / 3 / 3;
}
.companyDisplay {
  background: #FFF;
  padding: 30px;
  border-radius: 5px;
  height: 100%;
  overflow-y: scroll;
	grid-area: 2 / 2 / 3 / 3;
	z-index:1;
	position: relative;
}
.profileDisplay {
	display:none;
	opacity:0;
	gap: 40px;
}
.meetingsPanelDash {
  position: relative;
	height: 100%;
	overflow: hidden;
	min-height:340px;
}
.meetingsPanelDashInfo {
  min-width: 100%;
  min-height: 100%;
  background: linear-gradient(0deg, rgba(93,68,116,0.2) 0%, rgb(93, 68, 116) 320px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 5px;
  text-align: center;
 padding: 15px;
  gap: 25px;
  position: absolute;
  z-index: 1;
}
.meetingsPanelDash > img {
  min-width: 100%;
  width: 100%;
  border-radius: 5px;
  position: absolute;
bottom: 0;
	left:0;
}
.view_requests_button {
  background-color: var(--purple);
	width:100%;
  border-radius: 5px;
  padding: 12px 10px 12px 12px;
  align-self: center;
  text-decoration: none;
  color: #FFF;
  font-family: 'gilroybold', Helvetica, sans-serif;
  font-size: 1.8rem;
  line-height: 1.8rem;
  transition: background-color 0.3s, color 0.3s;
  border: none;
  cursor: pointer;
	display: grid;
  grid: auto min-content / 1fr auto;
  align-items: center;
  column-gap: 8px;
}
.view_comp_button {
  background-color: var(--purple);
	width:100%;
  border-radius: 5px;
  padding: 12px 10px 12px 12px;
  align-self: center;
  text-decoration: none;
  color: #FFF;
  font-family: 'gilroybold', Helvetica, sans-serif;
  font-size: 1.8rem;
  line-height: 1.8rem;
  transition: background-color 0.3s, color 0.3s;
  border: none;
  cursor: pointer;
	display: grid;
  grid: auto min-content / 1fr auto;
  align-items: center;
  column-gap: 8px;
}
.view_requests_button:hover,
.view_comp_button:hover {
	background-color: var(--eventLowlight);
}
.view_requests_button .openIcon,
.view_comp_button .openIcon {
	transition: fill 0.3s;
	fill:#FFF;
}
.view_requests_button:hover .openIcon,
.view_comp_button:hover .openIcon {
	fill:var(--purple);
}
.save_changes_button {
  background-color: var(--eventHighlight);
  border-radius: 5px;
  padding: 10px 10px 10px 12px;
  align-self: center;
  text-decoration: none;
  color: #FFF;
  font-family: 'gilroybold', Helvetica, sans-serif;
  font-size: 1.8rem;
  line-height: 1.8rem;
  transition: background-color 0.3s, color 0.3s;
  border: none;
  cursor: pointer;
  display: grid;
  grid: auto min-content / 1fr auto;
  align-items: center;
  column-gap: 8px;
  width: max-content;
  justify-self: end;
}
.save_changes_button:hover {
	background-color: var(--purple);
}
.save_changes_button:hover .plusSVG {
	fill:var(--eventHighlight);
}
.utility_button {
  background-color: var(--purple);
  border-radius: 5px;
  padding: 8px;
  align-self: center;
  text-decoration: none;
  color: #FFF;
  font-family: 'gilroybold', Helvetica, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2rem;
	text-transform:uppercase;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  display: grid;
  grid: auto min-content / 1fr auto;
  align-items: center;
  column-gap: 8px;
  width: max-content;
}
.utility_button:hover {
	background-color: var(--purpleTint);
}
.meetingsPanelDashInfo .intro {
	font-size: 1.5rem;
  line-height: 2.6rem;
	color:#FFF;
	max-width:200px;
	margin:0 auto;
}
.meetCount {
  font-family: 'gilroyregular', Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 1.8rem;
	display: flex;
  gap: 4px;
  align-items: center;
	color:#FFF;
	margin:0 auto !important;
	max-width: 200px !important;
}
.meetCount strong {
  font-family: 'gilroyextrabold', Helvetica, sans-serif;
	color:var(--eventHighlight);
  font-size: 2.6rem;
  line-height: 2.6rem;
}
.meetCount span {
  font-size: 2.7rem;
  line-height: 2.7rem;
}
.meetingChoices {
	display:grid;
  overflow: scroll;
	background:var(--purpleTint);
	padding:30px;
	grid-area: 2 / 2 / 3 / 3;
	z-index: 1;
	width: 100%;
  height: 100%;
  border-radius: 5px;
	gap: 20px;
	opacity:0;
	display:none;
	align-content: start;
}
.meetingChoicesBar {
  display: block;
  height: calc(90% - 56px);
  width: 13px;
  position: absolute;
  bottom: 5%;
  right: 280px;
  background-color: var(--purple);
	opacity:0;
	display:none;
}
.meetingChoiceTitle {
  display: grid;
  grid: min-content / 1fr auto;
  align-items: center;
}
.meetingChoiceTitle h3 {
  font-family: 'gilroybold';
  color: #FFF;
  text-transform: uppercase;
  font-size: 1.8rem;
  line-height: 1.8rem;
  margin: 0;
}
.choiceList {
  display: grid;
  grid: auto / 40px 1fr;
	gap: 10px;
}
.choiceNumbers {
  list-style: none;
  display: grid;
  font-family: 'gilroyextrabold', Helvetica, sans-serif;
  color: var(--eventHighlight);
  font-size: 2.6rem;
  line-height: 2.6rem;
	grid: 40px / 1fr;
	gap: 5px;
	align-items: center;
  justify-items: end;
	align-content: start;
}
.choiceNumbers li {
  display: grid;
  grid: 40px / 1fr;
	align-items: center;
}
.choicePlaceHolder {
	list-style: none;
  display: grid;
	gap: 5px;
	width:100%;
	grid-area: 1 / 2 / 2 / 3;
	align-content: start;
}
.choicePlaceHolder li {
  display: grid;
  grid: 40px / 1fr 25px;
}
.choicePlaceHolder li strong {
  background-color:rgba(255,255,255,0.10);
	border-radius: 5px;
}
.sortList {
	list-style: none;
  display: grid;
	gap: 5px;
	width:100%;
	grid-area: 1 / 2 / 2 / 3;
	z-index: 1;
	align-content: start;
}
.sortList li {
  display: grid;
  grid: 40px / 1fr 25px;
}
.sortList li strong {
  display: grid;
  grid: auto / 1fr min-content;
  align-items: center;
  padding: 0 12px;
	background-color:var(--purple);
	border-radius: 5px;
	cursor: move;
}
.sortList li strong:hover .binfill{
  fill: var(--eventHighlight);
}
.sortList li strong span {
  color: #FFF;
  font-family: 'gilroybold';
  font-size: 1.6rem;
  line-height: 1.6rem;
}
.deleteMeeting {
  background: none;
  border: none;
  cursor: pointer;
  justify-items: end;
  display: grid;
  align-items: center;
}
.binfill {
	fill: #fff;
	transition: fill 0.3s;
}
.deleteMeeting:hover .binfill{
  fill: var(--eventHighlight);
}
/* MEETINGS DISPLAY PROFILE */
.companyProfile-nav {
  display: grid;
  grid: auto / auto auto 1fr;
  gap: 8px;
}
#fullscreenmodal .companyProfile-nav {
  display: grid;
  grid: auto / auto 1fr;
  gap: 8px;
}
.profileDisplay > .companyDetails {
  grid: auto / 1fr 150px;
}
.profileDisplay .companyProfile-item {
  padding: 0;
}
.profileDisplay .companyDetails > .companyLogo {
  grid-area: 1 / 2 / 2 / 3;
	justify-self: end;
}
.profileDisplay .delegateDetails .logo {
  width: 100%;
  border-radius: 5px;
}
.profileDisplay .profile-entry, 
.viewProfileOnly .profile-entry {
  display: block;
  /*grid-gap: 15px;*/
}
.profileDisplay .profile-entry ul, .profileDisplay .profile-entry ol,
.viewProfileOnly .profile-entry ul, .viewProfileOnly .profile-entry ol {
  margin-left: 10px;
	font-size: 1.6rem;
  line-height: 2.4rem;
}
.profileDisplay .profile-entry p, .profileDisplay .profile-entry ul, .profileDisplay .profile-entry ol, 
.viewProfileOnly .profile-entry p, .viewProfileOnly .profile-entry ul, .viewProfileOnly .profile-entry ol {
  margin-top: 15px;
}
.profileDisplay .profile-entry strong,
.viewProfileOnly .profile-entry strong {
  font-family: 'gilroybold';
  color: var(--purple);
}
.profileDisplay .profile-entry .logo, 
.viewProfileOnly .profile-entry .logo {
  display: block;
  float: right;
  max-width: 150px;
	margin: 0 0 20px 20px;
}
/*.profileDisplay .socials {
  grid: auto min-content / 1fr 1fr;
	font-size: 1.5rem;
	gap: 5px;
}*/
.profileDisplay .socials {
  display: flex;
  flex-wrap: wrap;
	font-size: 1.5rem;
	gap: 5px;
}
.profileDisplay .socials li {
  padding: 6px 10px;
  gap: 5px;
}
.profileDisplay .companyDetails h3 {
  font-size: 2.8rem;
  line-height: 3.2rem;
}
.profileDisplay .companyDetails h4 {
  font-size: 1.8rem;
  line-height: 2.2rem;
  padding-bottom: 1.3rem;
}
.profileDisplay .companyProfile-item > h4 {
	color: var(--eventHighlight);
  font-size: 1.8rem;
  line-height: 2.2rem;
  padding-bottom: 0;
}
.profileDisplay p {
  font-size: 1.5rem;
  line-height: 2.3rem;
}
.profileDisplay p strong {
  font-family: 'gilroybold';
  color: var(--purple);
}
.profileDisplay .delegateContact h4 {
  font-size: 2.2rem;
  line-height: 2.4rem;
	margin-bottom: 0;
}
.buyerStatements {
	list-style: none;
	display:grid;
	gap:20px;
	grid: auto / 1fr 1fr;
	margin-top: 10px;
}
.buyerStatements li {
	display:grid;
	gap:15px;
	grid: auto / min-content 1fr;
	align-items: center;
  line-height: 1.6rem;
}
.buyerStatements li strong {
	background: var(--purple);
	padding:8px;
	border-radius:5px;
	font-family: 'gilroybold', Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6rem;
	color:#fff;
}
.profileDisplay .futureProjects, 
.viewProfileOnly .futureProjects {
  display: grid;
  row-gap: 5px;
}
.profileDisplay .projects,
.viewProfileOnly .projects {
  list-style: none;
  display: grid;
  grid: auto / 30% 30% 20% 20%;
  column-gap: 5px;
	width: calc(100% - 15px);
}
.profileDisplay .projectsTitle,
.viewProfileOnly .projectsTitle {
	margin-top: 10px;
font-family: 'gilroybold', Helvetica, sans-serif;
  font-size: 1.2rem;
  line-height: 1.2rem;
  color: var(--purple);
  text-transform: uppercase;
}
.profileDisplay .projectsTitle li,
.viewProfileOnly .projectsTitle li {
	text-align: center;
}
.profileDisplay .projectsEntry li, 
.viewProfileOnly .projectsEntry li {
background: rgba(238, 237, 232,1);
  padding: 8px 12px;
  border-radius: 5px;
	text-align: center;
	display: grid;
  align-items: center;
}
.profileDisplay .projectsTitle li:first-child, 
.profileDisplay .projectsEntry li:first-child,
.viewProfileOnly .projectsTitle li:first-child, 
.viewProfileOnly .projectsEntry li:first-child{
text-align: left;
}
.profileDisplay .projectsTitle li:last-child, 
.profileDisplay .projectsEntry li:last-child, 
.viewProfileOnly .projectsTitle li:last-child, 
.viewProfileOnly .projectsEntry li:last-child {
text-align: right;
}
/* MOBILE MEETINGS*/
.mobileMeetings {
  display: flex;
  grid-area: 2 / 1 / 3 / 4;
	gap:5px;
	display:none;
}
.mobileMeetings > button {
  width: auto;
	border-radius: 5px 5px 0 0;
	min-width: 258px;
}
.mobileMeetings > .meetCount {
  color: var(--purple);
  margin: 0 !important;
  max-width: none !important;
  flex-grow: 1;
  justify-content: end;
}
.mobile {
  grid: auto auto 1fr / 1fr 2fr 280px;
	gap:0;
}
.mobile > .mobileMeetings {
  display: flex;
}
.mobile > .meetingsPanelList,
.mobile > .meetingsPanelDash {
  display: none;
}
.mobile > .meetingsPanelList {
	  grid-area: 3 / 1 / 4 / 4;
	  z-index: 2;
		opacity:0;
}
.mobile > .meetingsPanelList > h3 {
	display: none;
}
.mobile > .meetingsPanelDisplay {
  grid-area: 3 / 1 / 4 / 4;
	border-radius: 0px 5px 5px 5px;
}
.mobile > .companyDisplay  {
  grid-area: 3 / 1 / 4 / 4;
}
.mobile > .meetingChoices {
  grid-area: 3 / 1 / 4 / 4;
	border-radius: 0px 5px 5px 5px;
}
.mobile > .meetingsTitle {
  margin-bottom: 15px;
}
.mobile > .viewListMenu {
	  display: grid;
}
.mobile > .meetingChoicesBar {
  display:none;
	background-color: #F5F5F2;
	height: calc(10% - 56px);
}


@media (max-width: 1210px) {
	.meetingsPanel {
		height: calc(100vh - 370px);
	}
}

@media (max-width: 1000px) {
	.profileDisplay .companyDetails h3 {
	  font-size: 2.6rem;
	  line-height: 3rem;
	}
}
@media (max-width: 850px) {
	.profileDisplay .companyDetails h3 {
	  font-size: 2.4rem;
	  line-height: 2.8rem;
	}
	.profileDisplay .companyDetails h4 {
	  font-size: 1.6rem;
	  line-height: 1.9rem;
	  padding-bottom: 1.3rem;
	}
	.meetingsPanel {
		height: calc(100vh - 350px);
	}
}

@media (max-width: 800px) {
	.mobile > .mobileMeetings {
	  display: grid;
	  margin-bottom: 10px;
	}
	.mobileMeetings > button {
	  border-radius: 5px;
		grid: auto min-content / auto auto;
  justify-content: center;
	}
	.mobileMeetings > .meetCount  {
	  grid-area: 1 / 1 / 2 / 2;
	}
	.mobile > .meetingsTitle {
	  margin-bottom: 5px;
	}
}


@media (max-width: 750px) {
	
	.profileDisplay .companyDetails > .companyLogo {
	  grid-area: 1 / 1 / 2 / 3;
	  justify-self: center;
	  max-height: unset;
	  max-width: 160px;
	}
	.profileDisplay  .companyDetails > section {
		grid-area: 2 / 1 / 3 / 3;
		grid-row-start: 2;
		grid-row-end: 3;
		grid-column-start: 1;
		grid-column-end: 3;
	  }
	.buyerStatements {
	  grid: auto / 1fr;
	}
  /*.profileDisplay .companyDetails > section {
    grid-area: 1 / 1 / 2 / 3;
  }

	.profileDisplay .companyDetails > .companyLogo {
	  grid-area: 1 / 1 / 2 / 3;
		max-height: 150px;
    margin: 0 auto;
	}*/
	
}
@media (max-width: 550px) {
	 .meetingsPanel {
    height: calc(100vh - 320px);
  }
}

/* MEETINGS MODAL */
.meetings_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 31;
  top: 0;
  left: 0;
  background: #F5F5F290;
  background: rgba(245,245,242, 90%);
  row-gap: 30px;
  column-gap: 20px;
  align-content: center;
  justify-content: center;
  grid: 1fr / 1fr;
  padding: 30px 40px 40px 40px;
	display: none;
  opacity: 0;
}
.meetings_modal_inner {
  position: absolute;
  background: var(--purple);
  top: calc(50% - 150px);
  left: calc(50% - 150px);
  border-radius: 5px;
  display: grid;
  grid: min-content 1fr / 1fr;
  padding: 10px;
  width: 300px;
  height: 300px;
}
.meetings_modal .modalMessage {
	display:grid;
	align-content: center;
	justify-content: center;
}
.meetings_modal .modalMessage p {
	color:#FFF;
	font-family: 'gilroyregular';
	text-align: center;
	font-size: 2rem;
  line-height: 2.4rem;
}
.meetings_modal .modalMessage p strong {
	color:#FFF;
	font-family: 'gilroybold';
}
.smallCloseButton {
	display: grid;
	background-color: var(--purpleTint);
  border-radius: 5px;
  padding: 10px 12px;
	text-decoration: none;
  color: #FFF;
  font-family: 'gilroyextrabold', Helvetica, sans-serif;
  font-size: 1.8rem;
  line-height: 1.8rem;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  grid: min-content / min-content;
  align-items: center;
  align-self: start;
  justify-self: end;
  column-gap: 8px;
}
.smallCloseButton svg {
  width: 16px;
  height: 16px;
}
.smallCloseButton:hover {
	background-color: var(--eventHighlight);
}
.smallCloseButton:hover .closeLine {
	fill: var(--purple);
}
.viewCompaniesIntro {
  display: grid;
  align-self: center;
  gap: 30px;
  align-items: center;
  justify-items: center;
}
.scrollArrows {
	justify-self: end;
	display: grid;
  grid: auto / auto auto;
  gap: 10px;
}
.scrollArrows button {
  width: 30px;
  height: 20px;
	 border: none;
  cursor: pointer;
	background: none;
}
.scrollArrows svg {
  width: 100%;
  height: 100%;
	fill: var(--purple);
}
.arrowFill {
	fill: var(--purple);
	transition: fill 0.3s;
}
.scrollArrows button:hover .arrowFill {
  fill: var(--eventLowlight);
}