form {
  display: inline-block;
}
.field label {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
}
label {
  padding-left: 5px;
  transition: all 0.3s ease-in;
  transform: translateY(20px);
  pointer-events: none;
}
.sel label {
  transition: none;
  transform: translateY(0px);
}
.field > input,
.field > select {
  height: 30px;
}

.moveUp {
  transform: translateY(5px);
}
.fixedMoveUp {
  transform: translateY(5px);
}
.fixedMoveUp.moveUp {
  transform: translateY(5px);
}

* {
  font-family: Roboto, sans-serif;
}

label {
  font-size: 14px;
}

#picklistCursos {
  background-color: none;
  max-height: 50vh;
  height: auto;
  width: auto;
}

input[type="text"],
input[type="number"],
input[type="tel"],
select {
  border: none;
  border-bottom: 1px solid black;
  width: 90%;
  color: #707070;
  background-color: #fff;
}

option:checked,
option:hover,
option:focus,
option:active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: #000000 -webkit-linear-gradient(bottom, #000000 0%, #000000 100%) !important;
}

button {
  width: 90%;
  border: 2px solid #707070;
  padding: 4px 0px;
}

button:hover {
  cursor: pointer;
}

.form_wrapper {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/*--D Popup*/
.mobilepref-header {
  width: 90%;
  border-bottom: 1px solid;
  text-decoration: none;
  display: block;
  padding: 20px 0px;
  color: rgb(51, 51, 51);
  font-weight: bold;
}

.nselected {
  color: rgb(112, 112, 112);
  display: none;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  width: 90%;
  max-width: 700px;
  max-height: fit-content;
  height: 80%;
  overflow: auto;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
}

.popup-header {
  display: flex;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  h4 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
  }
}

.close {
  width: auto;
  background: none;
  border: 0px;
  margin: 0px;
  margin-left: auto;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}

.btn-popup {
  width: 100%;
  background-color: rgb(239, 239, 239);
  border: 2px solid black;
  color: black;
  padding: 5px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: unset;
}

/* Style the button that is used to open and close the collapsible content */
#collapsible {
  background-color: #fff;
  color: #000000;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
#collapsible:hover {
  font-weight: bold;
}

#preference_wrapper {
  display: none;
}

.hidden {
  display: none;
}

.footer {
  bottom: 0;
  width: 100%;
  background: white;
  padding-bottom: 10px;
}
.desktop-hidden {
display: inline-block;
}
#picklistCursos tr {
  transition: 0.3s;
}
@media only screen and (min-width: 480px) {
  #picklistCursos tr:not(.selected):hover {
   background-color: lightgrey;
  }
}
/*#picklistCursos tr:hover, */#picklistCursos .selected {
  background-color: black;
  color: white;
}
.unselected {
  background-color: unset;
  color: inherit;
}
  @media only screen and (max-width: 480px) {
    .footer {
      position: fixed
    }
    .clear {
      margin-bottom: 60px;
    }
    #picklistCursos tr.unselected:hover {
      background-color: unset;
      color: inherit;
    }

  }

hr.desktop-hidden {
  margin: 10px 0px;
  display: block;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Scrollbar styling
#picklistCursos {
  max-height: 20rem;
  overflow-x: hidden;
  overflow-y: auto;
  margin-right: 0.25rem;
}
::-webkit-scrollbar-track {
  border-radius: 0.125rem;
  background-color: yellow;
}
::-webkit-scrollbar {
  width: 0.25rem;
  border-radius: 0.125rem;
}
::-webkit-scrollbar-thumb {
  border-radius: 0.125rem;
  background-color: black;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}
::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}


#picklistCursos * {
  scrollbar-width: thin;
  scrollbar-color: rgb(70, 70, 70) auto;
}


#picklistCursos *::-webkit-scrollbar {
  width: 7px;
}

#picklistCursos *::-webkit-scrollbar-track {
  background: transparent;
}

#picklistCursos *::-webkit-scrollbar-thumb {
  background-color: rgb(70, 70, 70);
}

 End scrollbar styling*/

button {
  -webkit-appearance: none;
  background-color: rgb(239, 239, 239);
  color: #646462;
}
select {
  -webkit-appearance: none;
}

/*datalist {
  position: absolute;
  max-height: 20em;
  border: 0 none;
  overflow-x: hidden;
  overflow-y: auto;
}


datalist option  {
  font-size:14px;
}*/
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

#loadingContainer {
  display: none;
}
span[class^="dot-"] {
  opacity: 0;
}
.dot-one {
  animation: dot-one 2s infinite linear;
}
.dot-two {
  animation: dot-two 2s infinite linear;
}
.dot-three {
  animation: dot-three 2s infinite linear;
}
@keyframes dot-one {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes dot-two {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes dot-three {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}