#image-gallery {
    list-style: none;
  }
  
  /* Responsive image gallery rules begin*/
  
  #image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 100px;
  }
  
  #image-gallery > .image-item {
    flex: 1 1 auto; /* or flex: auto; */
    height: 300px;
    position: relative;
    animation: moveUp 1s ease-in;
  }
  
  #image-gallery::after {
    content: "";
    flex-grow: 999;
  }
  
  #image-gallery .image-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    border-radius: 5px;
  }

#dropbox-file-uploader-form {
    text-align: center;
}

#select_file {
    width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

  #select_file + label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #cf9d6c;
	border-bottom: 5px solid #8f6c4a;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

#select_file+ label:after {
    content: "";
    background: url('../images/photo_icon.svg') no-repeat center;
    position: absolute;
    width: 100%;
    height: 100%;
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(170deg) brightness(110%) contrast(107%);
}

#select_file:hover  + label {
    background-color: #b38960; /* Change to desired hover color */
}

#spinner{
  width: 100%;
  height: 100%;
  z-index: 99;
  display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; 
}


  .loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #b38960 #b38960 transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  .loader::after,
  .loader::before {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #cf9d6c #cf9d6c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
  }
  .loader::before {
    width: 32px;
    height: 32px;
    border-color: #FFF #FFF transparent transparent;
    animation: rotation 1.5s linear infinite;
  }
      
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 
  @keyframes rotationBack {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-360deg);
    }
  }
      
  @keyframes moveUp {
    0% {
        transform: translateY(50px);
        opacity: 0.2;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.protected-post-form {
	width:400px;
	margin:0px auto;	
	
}
