/*
 * Media processing
 *
 * Media Content Create Styles
 *
 * Pavlin Georgiev
 * 2023 Softel Labs
 *
*/


.gallery-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-row-images {
  display: flex;
  flex-wrap: nowrap;
  height: 185px;
  width: 100%;
  overflow: hidden;
}

.gallery-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  flex-grow: 1;
  flex-shrink: 1;
}


.gallery-page-button {
  background-color: #2196F3;
  color: white;
  border: none;
  width: 800px;
  height: 50px;
  border-radius: 50px 50px 50px 50px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  outline: none;
}
.gallery-page-button:hover {
  background-color: #1e88e5;
}

.gallery-search-widget-button {
  background-color: #5a42a9;
  color: white;
  border: none;
  width: 50px;
  height: 20px;
  border-radius: 5px;
  padding: 2px 3px;
  font-size: 8px;
  cursor: pointer;
  outline: none;
}
.gallery-page-button:hover {
  background-color: #6449be;
}