input[type="file"] {
  height: 100px;
}

main {
  margin-top: 25px;
}

#logo {
  width: 50px;
}

.bg-custom {
  background-color: grey;
  box-shadow: 0px 1px 2px black;
}

.bg-custom-footer {
  background-color: grey;
  box-shadow: -1px 0px 2px black;
}

.no-link {
  color: white !important;
}

.no-link:hover {
  text-shadow: 0px 0px 5px black;
  text-decoration: none;
}

.table {
  margin: 15px 0px 60px 0px;
}

label {
  font-weight:500;
  font-style: italic;
}

.round-btn {
  width: 50px;
  height: 50px;
  border: 0px;
  border-radius: 50%;
  background-color: #4d52da;
  color: rgb(230, 229, 235);
}

.floating-dropdown {
  position: fixed;
  bottom: 150px;
  right: 20px;
}

.floating-btn {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 150px;
  right: 20px;
  border: 0px;
  border-radius: 50%;
  background-color: #4d52da;
  color: rgb(230, 229, 235);
}

.floating-btn:hover {
  background-color: #2e3192;
  color: white;
  cursor: pointer;
}

.landing-icon-content {
  text-align: center;
  padding-top: 15%;
  color: white;
  text-shadow: 0px 0px 3px black;
}

.landing-icon {
  border-radius: 20px;
  height: 150px;
  width: 280px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 0px black;
  border: 1px solid #d2ab66;
  background-color: #2e3192;
}

.landing-icon:hover {
  cursor: pointer;
  box-shadow: 0px 0px 2px black;
}

.landing-icon-link:hover {
  text-decoration: none;
}

/* Category */
.hide {
  display: none;
}

.show {
  display: block;
}

.category_container {
  padding: 5px;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

.category_list {
  list-style: none;
  margin-left: 4px;
  padding-left: 4px;
}

.category_list > li {
  padding-left: 0.5em;
  /*text-indent: -1em;*/
}

.category_list > li:before {
  padding-right: 3px;
}

.modal-item {
  padding: 5px;
}

.modal-item-end {
  height: 100%;
  width: 50px;
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.modal-item-start {
  height: 100%;
  width: 50px;
  border-radius: 0;
}

.category_item {
  height: 50px;
  font-size: smaller;
  cursor: pointer;
  width: 100%;
  border: 1px solid rgb(128, 128, 128);
  margin: 2px;
  border-radius: 10px;
}

.category_item_active {
  border: 1px solid rgb(126, 159, 250);
  background-color: rgb(212, 211, 211);
}

.category_item_selected {
  border: 3px solid rgb(80, 123, 243);
  background-color: rgb(150, 150, 150);
}

#login_div {
  width: 60%;
  margin-top: 80px;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 800px) {
  #login_div {
    width: 90%;
  }
}

.table,
.nav-tabs {
  margin-top: 15px;
}

.tab-pane {
  padding-top: 15px;
}

.table-hover > tbody > tr {
  cursor: pointer;
}

.required {
  background-color: #e59191;
}