.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: 11rem;
    height: 11rem;
    object-fit:cover !important;
}

.user-photo {
    width: 16rem;
    height: 20rem;
    object-fit:cover !important;
}

#details .user-photo {
    width: 13rem;
    height: 16rem;
    object-fit:cover !important;
}

.wrapper-signature {
    position: relative;
    width: 400px;
     height: 200px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.signature-pad {
    position: absolute;
    left: 0;
    top: 0;
    width:400px;
    height:200px;
    background-color: white;
}

.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;
  }
}