.input {
  display: block;
}

.glbInput {
  position: absolute;
  top: 20px;
  right: 500px;
}

.hdrInput {
  position: absolute;
  top: 20px;
  right: 300px;
}

.file-input {
  display: inline-block;

}

label {
  background-color: #2196F3;
  /* Material Design primary color */
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

label:hover {
  background-color: #1976D2;
  /* Slightly darker shade on hover */
}

/* Style the file input's label text */
input[type="file"]::before {
  content: "Browse";
  /* Text displayed on the label */
}

/* Style the file input's label icon (optional) */
input[type="file"]::after {
  content: "\f07c";
  /* FontAwesome icon for a file (you can use any icon you like) */
  font-family: FontAwesome;
  margin-left: 8px;
}

/* Hide the file input */
input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}



/*  */
/* Reset some default button styles */
button {
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
}

/* Material Design button styles */
.material-button {
  background-color: #2196F3;
  /* Primary color */
  color: #fff;
  /* Text color */
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.material-button:hover {
  background-color: #1976D2;
  /* Darker shade of primary color on hover */
}

.material-button:focus {
  outline: none;
  background-color: #1976D2;
  /* Darker shade of primary color when focused */
}

/* Ripple effect on click */
.material-button:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}


/*Flopating Action */

* {
  box-sizing: border-box;
}

.fab-wrapper {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
}

.fab-checkbox {
  display: none;
}

.fab {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(24, 66, 154, 1);
  box-shadow: 0px 5px 20px rgba(24, 66, 154, 0.5);
  transition: all 0.3s ease;
  z-index: 1;
  border-bottom-right-radius: 6px;
  border: 1px solid #0c50a7;
}

.fab:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
  /* background-color: rgba(255, 255, 255, 0.1); */
}

.fab-checkbox:checked~.fab:before {
  width: 90%;
  height: 90%;
  left: 5%;
  top: 5%;
  background-color: rgba(255, 255, 255, 0.2);
}

.fab:hover {
  background: rgba(24, 66, 154, 1);
  box-shadow: 0px 5px 20px 5px rgba(24, 66, 154, 0.5);
}

.fab-dots {
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: white;
  border-radius: 50%;
  top: 50%;
  transform: translateX(0%) translateY(-50%) rotate(0deg);
  opacity: 1;
  animation: blink 3s ease infinite;
  transition: all 0.3s ease;
}

.fab-dots-1 {
  left: 15px;
  animation-delay: 0s;
}

.fab-dots-2 {
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  animation-delay: 0.4s;
}

.fab-dots-3 {
  right: 15px;
  animation-delay: 0.8s;
}

.fab-checkbox:checked~.fab .fab-dots {
  height: 6px;
}

.fab .fab-dots-2 {
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
}

.fab-checkbox:checked~.fab .fab-dots-1 {
  width: 32px;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.fab-checkbox:checked~.fab .fab-dots-3 {
  width: 32px;
  border-radius: 10px;
  right: 50%;
  transform: translateX(50%) translateY(-50%) rotate(-45deg);
}

@keyframes blink {
  50% {
    opacity: 0.25;
  }
}

.fab-checkbox:checked~.fab .fab-dots {
  animation: none;
}

.fab-wheel {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  transition: all 0.3s ease;
  transform-origin: bottom right;
  transform: scale(0);
}

.fab-checkbox:checked~.fab-wheel {
  transform: scale(1);
}

.fab-action {
  position: absolute;
  background: rgba(7, 80, 163, .85);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0.1rem .5rem rgba(7, 80, 163, 0.82);
  transition: all 1s ease;

  opacity: 0;
}

.fab-checkbox:checked~.fab-wheel .fab-action {
  opacity: 1;
}

.fab-action:hover {
  background-color: rgba(7, 80, 163, 1);
  box-shadow: 0 0.5rem 1rem rgba(7, 80, 163, 1);
}

.fab-wheel .fab-action-1 {
  right: -1.4rem;
  top: 2.4rem;
}

.fab-wheel .fab-action-2 {
  right: 2rem;
  top: 3.1rem;
}

.fab-wheel .fab-action-3 {
  left: 2.5rem;
  bottom: 1.5rem;
}

.fab-wheel .fab-action-4 {
  left: 2.5rem;
  bottom: -2rem;
}

.fab-wheel .fab-action::before
{
    position: absolute;
    content: attr(data-label);
    color: white;
    /* display: none; */
    opacity: 0;
    width: auto;
    white-space: nowrap;
    right: 60px;
    top: 0%;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, .8);
    transition: opacity 0.5s, display 0s;
    z-index: 100000;
}

.fab-wheel .fab-action:hover:before
{
    display: block;
    opacity: 1;
}


.fab-wheel .fab-action-1::before
{
  right: -50%;
  top: -2em;
}


.fab-wheel .fab-action-2::before
{
  right: 25%;
  top: -2em;
}

.fab-wheel .fab-action-3::before
{
  right: 100%;
  top: -1em;
}

.fab-wheel .fab-action:not([data-label])::before {
  content: unset;
}


.controlsContainer
{
  position: absolute;
  bottom:5px ;
  left: 5px;
  width: 300px;
  padding: 20px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}


.did-floating-label-content { 
  position:relative; 
  margin-bottom:20px; 
}
.did-floating-label {
  color:#1e4c82; 
  font-size:13px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:15px;
  top:11px;
  padding:0 5px;
  background:#fff;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.did-floating-input, .did-floating-select {
  font-size:12px;
  display:block;
  width:100%;
  height:36px;
  padding: 0 20px;
  background: #fff;
  color: #323840;
  border: 1px solid #3D85D8;
  border-radius: 4px;
  box-sizing: border-box;
  &:focus{
    outline:none;
    ~ .did-floating-label{
      top:-8px;
      font-size:13px;
    }
  }
}