.base {
  position: relative;
  display: block;
}

main {
  grid-area: main;
}

.search-bar {
  grid-area: search;
  position: sticky;
  top: 0;
  background-color: hsl(204, 15%, 94%);
  z-index: 100;
  display: grid;
  justify-content: center;
}

.user-pic {
  width: 10rem;
  height: 10rem;
  object-fit:cover !important;
}

.dialog-loading {
	z-index: 9999; 
	pointer-events: none;
}

.modal-content-loading {
	position: relative; 
	width: 80px; 
	height: 80px; 
	background-color: #ECEFF1; 
	border-radius: 3px;
}

.loading {
	position: absolute; 
	top: 50%; 
	left: 50%; 
	width: 50px; 
	height: 50px; 
	margin-top: -25px; 
	margin-left: -25px;
}

@media only screen and (min-width: 916px) {
  .base {
    display: grid;
    margin-bottom: 0;
    padding: 0;
  }

  .main-content {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 1160px) {
  .search-bar {
    margin-top: 2rem;
  }
}