
#modaleUser{
  max-width: 400px;
  padding: 10px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 4px 4px 6px #555;
  border-radius: 8px;
  background: #EBF6FF;
  color: #232e34;
}
#userButton{
  border: none;
  background: none;
  color: white;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 1.2em;
}
.menuPart:hover #userButton{
  color: black;
} 
/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1.1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #A0D6FF;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #74C3FF;
  }
  
  /* When the radio button is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #74C3FF;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .container .checkmark:after {
       top: 9px;
      left: 9px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white;
  }
.datePicker{
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 1em;
  border: none;
}


input[type=text], input[type=email], input[type=password], select, textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
  font-size: 16px;
}

.labelForm{
  width: 96%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
  font-size: 16px;
  background: #fff;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #74C3FF;
}

input:focus + .slider {
  box-shadow: 0 0 1px #74C3FF;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}



.bulgy-radios {
  padding: 1rem 0 1rem 5rem;
  border-radius: 1rem;
  max-height: 340px;
  overflow-y: auto;
}
.bulgy-radios label {
  display: block;
  position: relative;
  height: 1em;
  padding-left: 3rem;
  margin-bottom: 1.00rem;
  cursor: pointer;
  font-size: 0.9rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #000000;
  /* letter-spacing: 1px; */
}
.bulgy-radios label:hover input:not(:checked) ~ .radio {
  opacity: 0.8;
}
.bulgy-radios .label {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding-right: 3rem;
}
.bulgy-radios .label span {
  line-height: 1em;
}
.bulgy-radios .rd {
  position: absolute;
  cursor: pointer;
  height: 0;
  width: 0;
  left: -2000px;
}
.bulgy-radios .rd:checked ~ .radio {
  background-color: #74C3FF;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.bulgy-radios .rd:checked ~ .radio::after {
  opacity: 1;
}
.bulgy-radios .rd:checked ~ .label {
  color: #74C3FF;
}
.bulgy-radios .rd:checked ~ .label span {
  -webkit-animation: bulge 0.5s forwards;
          animation: bulge 0.5s forwards;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(1) {
  -webkit-animation-delay: 0.025s;
          animation-delay: 0.025s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(2) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(3) {
  -webkit-animation-delay: 0.075s;
          animation-delay: 0.075s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(4) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(5) {
  -webkit-animation-delay: 0.125s;
          animation-delay: 0.125s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(6) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(7) {
  -webkit-animation-delay: 0.175s;
          animation-delay: 0.175s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(8) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(9) {
  -webkit-animation-delay: 0.225s;
          animation-delay: 0.225s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(10) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(11) {
  -webkit-animation-delay: 0.275s;
          animation-delay: 0.275s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(12) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(13) {
  -webkit-animation-delay: 0.325s;
          animation-delay: 0.325s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(14) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(15) {
  -webkit-animation-delay: 0.375s;
          animation-delay: 0.375s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(16) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(17) {
  -webkit-animation-delay: 0.425s;
          animation-delay: 0.425s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(18) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.bulgy-radios .rd:checked ~ .label span:nth-child(19) {
  -webkit-animation-delay: 0.475s;
          animation-delay: 0.475s;
}

.radio {
  position: absolute;
  top: 0.0rem;
  left: 0;
  height: 1.4rem;
  width: 1.4rem;
  background: #b4dcfc;
  border-radius: 50%;
}
.radio::after {
  content: "";
  position: absolute;
  opacity: 0;
  top: 0.5rem;
  left: 0.5rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #fff;
}

@-webkit-keyframes bulge {
  50% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
    font-size: 1.5em;
    font-weight: bold;
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    font-size: 1em;
    font-weight: bold;
  }
}

@keyframes bulge {
  50% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
    font-size: 1.5em;
    font-weight: bold;
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    font-size: 1em;
    font-weight: bold;
  }
}