.block-right-block {
  display: none; /* block; */
  position: absolute;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: var(--darkscreen-color);
}

/* Animations */

/* DarkScreen Animations*/
@keyframes hideBlack {
  0% {
    background-color: var(--darkscreen-color);
    display: block;
  }

  95% {
    background-color: #00000000;
    display: block;
  }

  100% {
    background-color: #00000000;
    display: none;
  }
}

@keyframes showBlack {
  0% {
    background-color: #00000000;
    display: none;
  }

  5% {
    background-color: #00000000;
    display: block;
  }

  100% {
    background-color: var(--darkscreen-color);
    display: block;
  }
}

.hideBlack {
  animation: hideBlack 0.5s forwards ease-in-out;
  animation-delay: .2s;
}

.showBkack {
  animation: showBlack 0.5s forwards ease-in-out;
}

/* Right Block Animations*/
@keyframes hideRight {
  0% {
    transform: translate(0);
    display: flex;
  }

  20% {
    transform: translate(-5px);
    display: flex;
  }

  100% {
    transform: translate(120vw);
    display: none;
  }
}

@keyframes showRight {
  0% {
    transform: translate(120vw);
    display: none;
  }

  10% {
    display: flex;
  }

  80% {
    transform: translate(-5px);
    display: flex;
  }

  100% {
    transform: translate(0vw);
    display: flex;
  }
}

.hideRight {
  animation: hideRight 0.5s forwards ease-in-out;
  animation-delay: .2s;
}

.showRight {
  animation: showRight 0.5s forwards ease-in-out;
}

/* /Animations*/

/* styles */
.login_block {
  width: 485px;
  display: none; /*flex;*/
  right: 0px;
  position: absolute;
  background-color: white;
  top: 0px;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  min-height: 800px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.big_label {
  font-size: 2em;
  font-weight: bold;
  padding: 10px;
  cursor: default !important;
}

.med_label {
  font-size: 1.5em;
  font-weight: bold;
  padding: 15px;
  background-color: white;
  margin: 15px;
  cursor: default !important;
}

.big_button {
  border-radius: 30px !important;
  border-width: 0px !important;
  width: 100%;
  background-repeat: no-repeat !important;
  background-position: 50px !important;
  margin-block: 7px !important;
  margin: 0px;
}

.button_close {
  background-image: url('/images/X.svg') !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  width: 25px !important;
  height: 25px !important;
  border-width: 0px !important;
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
}

.login_orline {
  background-image: url(/images/line.png) !important;
  background-position: center !important;
  background-repeat: repeat-x;
  width: 100%;
  display: flex;
  justify-content: center;
}

.few-items {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.left_center_text {
  font-size: 1.2em;
  font-weight: 1000;
}

.no_frame:hover,
.no_frame {
  border-style: hidden !important;
}

.fieldset__wrapper {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0px 20px 0px 20px;
}

.flex_hor {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.link {
  color: var(--link-color) !important;
  font-weight: 600;
}

.link:hover {
  color: var(--link-color) !important;
  font-weight: 800;
}

.big_text {
  font-size: x-large;
}
