body {
  min-height: 100vh;
  background-color: rgb(56,52,40);
}
header {
  background-color: white;
}
#content {
  background-color: white;
}
footer {
  background-color: white;
}
#menu_block {
  position: relative;
}
.menu_item {
  display: block;
  text-decoration: none;
  color: black;
}
.menu_hide {
  max-height: 0;
  max-width: 0;
  overflow: hidden;
  transition: 1s;
}
.menu_show {
  max-height: 1000px;
  max-width: 300px;
}
.menu_item {
  display: block;
  text-decoration: none;
  color: black;
  white-space: nowrap;
}
.menu_item:hover {
  background-color: #eaecee ;
}
#menu {
  position: absolute;
  z-index: 2;
}
.pagination_link {
  color: black;
}
a {
  color: black;
}

.cheque_item_updated_transition {
  animation: color-change 2s;
}

@keyframes color-change {
  0% {
    background-color: #ccffc6;
  }

  100% {
    background-color: white;
  }
}

.cheque_item_changed {
  background-color: rgb(144, 223, 148)!important;
  transition: background-color 0.3s;
}

.cheque_item {
  background-color: white!important;
}

.cheque_input_result_false {
  background-color: rgb(255, 55, 5)!important;
  transition: background-color 0.15s;
}

.cheque_input {
  background-color: rgb(255, 255, 255)!important;
}