.recenzija_modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 5px;
}

.recenzija_modal button {
  margin: 2px;
}

.modal_auth {
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: white;
  z-index: 1001;
  padding: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin: 5px;
}

.modal_auth input {
  margin: 5px;
}

.modal_tooltips {
  color: red;
  text-align: center;
}

.modal_comments_container {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: white;
  z-index: 1001;
  max-height: 85%;
  width: 99%;
  padding: 5px;
  margin: 5px;
}

.modal_comments_container hr {
  margin-top: 1px;
  margin-bottom: 2px;
}

.modal_comments_label {
  display: flex;
  justify-content: space-between;
}

.modal_comments_label span {
  padding: 5px;
}

.modal_comments {
  max-height: 25rem;
  overflow: auto;
}

.modal_buttons {
  display: flex;
  justify-content: space-between;
}

.recenzija_comment {
  background-color: rgb(248, 246, 246);
  position: relative;
  font-size: 14px;
  padding: 5px;
  margin: 5px;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.77);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.77);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.77);
}

.modal_comment_form {
  background-color: rgb(248, 246, 246);
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1002;
  padding: 5px;
  text-align: center;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.77);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.77);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.77);
  margin: 5px;
}

.modal_comment_form textarea {
  width: 25rem;
  height: 10rem;
}

.modal_prompt {
  position: fixed;
  background-color: white;
  bottom: 0;
  right: 0;
  margin: 5px;
  z-index: 1002;
  padding: 10px;
  text-align: center;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.77);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.77);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.77);
}

.modal_prompt .flex_div {
  margin: 2px;
  justify-content: space-between;
}

.modal_prompt .flex_div input {
  width: 20%;
}

.comment_text {
  background-color: white;
  padding: 5px;
  margin: 2px;
  font-size: initial;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.77);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.77);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.77);
}

.vertical_line {
  border-left: 1px solid grey;
  margin: 2px;
}

.comments_header {
  padding: 5px;
  text-align: center;
}

.flex_div {
  display: flex;
}

.current_modal_comments {
  width: 100%;
  min-width: 50%;
}

.old_modal_comments {
  min-width: 50%;
}

/* .control_buttons {

} */

#token {
  width: 20rem;
}

#modal_toggler {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 20px;
  padding: 5px;
  color: blue;
  border: 1px solid blue;
  border-radius: 15px;
  background:white;
}

#modal_toggler:hover {
  background-color: blue;
  color: white;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 1050px) {
  .modal_comments_container {
    width: 90%;
  }
}
