#mycontainer {
  position: absolute;
  z-index: 1900;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  pointer-events:none;
  display: none;
  font-family: "Montserrat", sans-serif;
  background-color: transparent;
}

#mysubcontainer {
  display: flex;
  justify-content: center; /* Horizontally center */
  align-items: center; /* Vertically center */
  width: 100%;
  height: 100%;
  pointer-events: inherit;
  background-color: transparent;
}

.radio-input {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 50px;
  margin: 0;
  flex-direction: row;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  pointer-events: all;
  margin-top: 25px;
}

@media (max-width: 1000px) 
{ .radio-input 
  { transform: scale(0.6); 
  }
}

.radio-input input[type="radio"] {
  display: none;
}

.radio-input label {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #ccc;
  background-color: #f5931b ;
  border-radius: 5px;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.radio-input label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #444444;
  border: 2px solid #000000;
  transition: all 0.3s ease-in-out;
}

.radio-input input[type="radio"]:checked + label:before {
  background-color: #f5931b;
  top: 0;
}

.radio-input input[type="radio"]:checked + label {
  background: linear-gradient(to right, #f5931b, #e64f24);
  color: #fff;
  border-color: #ffffff;
  animation: radio-translate 0.5s ease-in-out;
}

@keyframes radio-translate {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

