html {
  overflow-y: scroll;
  overflow-y: overlay;
}

select{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.20);
  background: #FFF;
  height: 45px;
  padding: 10px 15px;

  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;

  color: black !important;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

button {
  width: 100%;
  height: 80px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: white;
  transition: all 125ms;
  /* padding: 0 30%; */

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

button:hover {
  transition: all 125ms;
  background-color: #eff9ff;
}

button.selected {
  transition: all 125ms;
  background-color: #eff9ff;
  border: 2px solid #59a5ff;
}

button > img {
  height: 50%;
  max-width: 100%;
}

#pfp {
  width: 100%;
  aspect-ratio: 1;
  /* background-color: black; */
  border-radius: 10px;
  object-fit: cover;
}

#imageLoading {
  width: 100%;
  aspect-ratio: 1;
  background-color: #ededed;
  border-radius: 10px;
  object-fit: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media all and (min-width: 791px) {
  #profile {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 15px;

    padding-top: 3vw;
    width: 75%;
    max-width: 450px;
  }

  .loadingText1 {
    width: 6vw;
    height: 1.354vw;
    background-color: #ededed;
    border-radius: 0.25vw;
    margin: 0.234vw 0;
  }

  .loadingText2 {
    width: 15vw;
    height: 1.666vw;
    background-color: #ededed;
    border-radius: 0.35vw;
    margin: 0.2865vw 0;
  }

  #qrcode {
    position: absolute;
    bottom: 0;
    right: 0;

    transform: translateX(15%) translateY(15%);
    border: 0.3vw solid black;
    border-radius: 0.35vw;

    width: 40%;
    /* height: 40%; */
    background-color: white;

    padding: 2%;
  }
}

@media all and (max-width: 790px) {
  #profile {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 15px;

    padding-top: 5vw;
    width: 75%;
    max-width: 450px;
  }

  .loadingText1 {
    width: 17.5vw;
    height: 3.291vw;
    background-color: #ededed;
    border-radius: 100vw;
    margin: 0.5695vw 0;
  }

  .loadingText2 {
    width: 50vw;
    height: 4.05vw;
    background-color: #ededed;
    border-radius: 1vw;
    margin: 0.6965vw 0;
  }

  #qrcode {
    position: absolute;
    bottom: 0;
    right: 0;

    transform: translateX(15%) translateY(15%);
    border: 0.5vw solid black;
    border-radius: 1vw;

    width: 40%;
    /* height: 40%; */
    background-color: white;

    padding: 2%;
  }
}

#text_part {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 15px;

  margin-bottom: 100px;
}

#buttons a {
  width: 100%;
}

#images {
  width: 100%;
  aspect-ratio: 1 !important;
  position: relative;
  max-height: min-content !important;
}

.loadingQRcode {
  background-color: #ededed !important;
  border-color: #afafaf !important ;
}
/*  */
.loadingButton,
.loadingButton:hover {
  background-color: #ededed;
  border: 0 !important;
}

#text_partLoading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.disabledCheckbox{

  opacity: 0.3;
  pointer-events: none;
}

.disabledField, .disabledField *{
  pointer-events: none;
  user-select: none;
  /* background-color: #161635 !important; */
  
  /* border: none !important; */
}
