/* This is the button CSS*/

.image-button, .btn-link {
  padding: 0;
  margin: 0;
  border-style: none;
  background: none;
}    
  
}

.image-button {
  width: min(100%, 400px);
  overflow: hidden; 
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  background-color: white;
  box-shadow: 0 .25rem .5rem rgba(0,0,0, .15);
}

.btn-image {
  width: 100%;
}

.btn-text {
  margin: 1rem;
  font-size: .9rem;
  font-weight: 600;
}

.image-button:hover, .btn-link:hover {
  cursor: pointer;
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
  box-shadow: 0 2px 4px rgba(13,1,61,0.35);
}

/* This is the video modal CSS*/

video:hover {
  cursor: pointer;
}

.modal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1080px, 95%);
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 2px 8px rgba(1,1,1,.15);
  z-index: 102;
}

.modal-header {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-footer {
  font-family: inherit;
  padding: 1rem 1.5rem;
}
.modal-dialog {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}

.modal-background {
  display: block;
  background-color: rgba(1,1,1,.45);
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  z-index: 101;
}

.show .modal-background {
  opacity: 100;
}

.d-none {
  display: none;
}

.show {
  opacity: 100;
}

.modal-close-btn {
  padding: .5rem;
}

.modal-close-btn:focus, 
.modal-close-btn:hover {
  background-color: rgb(100, 100, 100); 
}

.modal-h3 {
  margin: 0; 
}
