.menu .app-brand {
  height: 64px;
  margin-top: 12px;
}

.custom-alert-container {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1081;
  align-content: center;
  justify-content: center;
  align-items: center;

  &.active {
    display: flex;
  }

  .custom-alert-area {
    background-color: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 15px 25px;

    .error-icon {
      .bx {
        font-size: 90px;
        color: #ffb112;
      }
    }

    .c-alert-title {
      font-size: 25px;
      font-weight: 600;
    }
  }
}

.uploaded_photos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  .photo-holder {
    position: relative;
    padding: 15px 0px;
    img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 10px;
      border: 1px solid #ccc;
    }

    &:hover {
      .button-area-container {
        display: flex;
      }
    }
    .button-area-container {
      position: absolute;
      top: 15px;
      left: 0px;
      right: 0px;
      bottom: 15px;
      background-color: rgba(0, 0, 0, 0.3);
      border-radius: 10px;
      display: none;
      align-content: center;
      justify-content: center;
      align-items: center;

      button {
        background-color: transparent;
        border: none;
        color:white;
        margin: 10px;
        .bx{
          font-size: 25px;
        }
      }
    }

  }
}

.fit-content{
  width:fit-content;
  display: inline-block;
}
.fl-r{
  float:right;
}

.fl-r{
  float: right;
}

.mr-10{
  margin-right: 10px;
}

.forms-table-area {

  input,
  select {
    color: #000;
    background-color: transparent;
  }

  .filter-area {
    .filter {
      display: inline-block;
      width: fit-content;
      &:focus{
        color:#000;
        background-color: transparent;
      }
    }

    label{
      color: #000;
    }
  }

  .export-button-container{
    display: inline-block;
    width: fit-content;
  }

  .forms-table-container{
    max-width: 100%;
    overflow: auto;
  }

  tr {
    background-color: #eee;
    color: #424242;
    cursor: pointer;

    &.reading {
      td {
        background-color: #dedede !important;
        &:hover{
          background-color: #e2e1e1;
        }
      }
    }

    .buttons {
      display: none;
      opacity: 0;
    }

    td:not(.action_cell) {
      padding: 12px !important;
    }
  }

  tr:hover {
    position: relative;
    -webkit-box-shadow: inset 1px 0 0 #dadce0, inset -1px 0 0 #dadce0, 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    -moz-box-shadow: inset 1px 0 0 #dadce0, inset -1px 0 0 #dadce0, 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    box-shadow: inset 1px 0 0 #dadce0, inset -1px 0 0 #dadce0, 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    background-color: #fff;
    z-index: 2;
    color: #000;

    .date {
      display: none;
      opacity: 0;
    }

    .buttons {
      display: block;
      opacity: 1;

    }

    &.reading {
      td {
        background-color: #ededed !important;
      }
    }
  }

  .buttons {
    a {
      color: #000;
      margin-right: 10px;

      i {
        font-size: 19px;
      }
    }
  }

}

@media screen and (max-width: 768px) {

  .hidden-mobile {
    display: none !important;
  }

}


@media screen and (min-width: 768px) {
  .hidden-desktop {
    display: none;
  }
}