/* HTML Elements */
* {
    -webkit-tap-highlight-color: transparent;}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}



/*
td {
  border: 1px solid red;
}
*/



#mobile-navigator {
  background-color: rgb(75,75,75);
  border-top: 1px solid goldenrod;
  box-shadow: 0px -1px 2px black;
  bottom: 0;
  height: 75px;
  display: none;
  position: fixed;
  width: 100%;}
  #mobile-navigator td {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 45%;}

  @media only screen and (max-width: 700px) {
    #mobile-navigator {
      display: table;
    }
  }

  #header-navigator {
    display: none;
  }

  #header-slogan {
    font-family: 'Handwriting', sans-serif;
    font-size: 16px;
    font-weight: bold;}

    @media only screen and (max-width: 700px) {
      #header-slogan {
        font-size: 12px;}
    }
    @media only screen and (min-width: 700px) {
    #header-navigator {
      display: block;
    }
  }

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
body {
    background-color: rgb(250, 250, 245);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 18px;
    margin: 0px;}

header {
    background: rgba(75, 75, 75);
    border-bottom: 1px solid goldenrod;
    box-shadow: 0px 1px 2px black;
    color: white;
    height: 75px;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 2;}

    header table {
        height: 100%;
        width: 100%;}

    header table td {
        width: 33%;}

    header table button {
        background-color: transparent;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 50%;
        border: none;
        cursor: pointer;
        height: 50px;
        width: 90px;}

    header table button:hover {
        background-color: rgba(75, 75, 75);
        background-size: 55%;}

nav {
    background: rgba(75, 75, 75);
    box-shadow: 0px 1px 2px black;
    border-top: 1px solid goldenrod;
    border-bottom: 1px solid goldenrod;
    color: white;
    height: 50px;
    text-align: center;
    width: 100%;}

    nav table {
        height: 100%;
        width: 100%;}

        nav table td {
            cursor: pointer;
            width: 25%;}

        nav table td:hover {
            background-color: rgba(95, 95, 95);
            color: goldenrod;
            font-weight: bolder;}
    
    #header-announcements {
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      font-weight: bold;
      color: goldenrod;
      height: 25px;}
      #header-announcements table td:hover {
        background-color: transparent;
        color: goldenrod;
        cursor: default;
        font-weight: bold;}
      #header-announcements input {
        background-color: transparent;
        border: none;
        color: goldenrod;
        font-size: 12px;
        text-align: center;
        width: 95%;}

footer {
    background: rgba(75, 75, 75);
    border-top: 1px solid goldenrod;
    color: white;
    height: 125px;
    text-align: center;}

    footer table {
        height: 100%;
        width: 100%;}

    footer table td {
        width: 33%;}

    .footer-title:hover {
        color: goldenrod;
        cursor: pointer;
        font-weight: bolder;}

    .footer-information {
        font-size: 12px;
    }

@media only screen and (max-width: 700px) {
  #header-announcements input {
    font-size: 10px;}
  footer {
    margin-bottom: 75px;
  }
}
input {
    border: 1px solid silver;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(75, 75, 75);
    outline: none;
    transition: box-shadow 0.2s ease-in, border 0.2s ease-in;
    -moz-transition: box-shadow 0.2s ease-in, border 0.2s ease-in;
    -webkit-transition: box-shadow 0.2s ease-in, border 0.2s ease-in;}
    input:hover {
        box-shadow: 0px 1px 2px black;
        transition: box-shadow 0.2s ease-in, border 0.2s ease-in;
        -moz-transition: box-shadow 0.2s ease-in, border 0.2s ease-in;
        -webkit-transition: box-shadow 0.2s ease-in, border 0.2s ease-in;}
    input:focus {
        border: 1px solid goldenrod;
        transition: box-shadow 0.2s ease-in, border 0.2s ease-in;
        -moz-transition: box-shadow 0.2s ease-in, border 0.2s ease-in;
        -webkit-transition: box-shadow 0.2s ease-in, border 0.2s ease-in;}
    input:read-only {
      border: none;
    }

  input[type='checkbox'] {
    accent-color: goldenrod;
  }

select {
    border: 1px solid silver;
    border-radius: 30px;
    box-shadow: 0px 1px 2px rgba(75, 75, 75);
    height: 30px;
    min-width: 150px;
    text-align: center;
    outline: none;
    width: 200px;}
    select:hover {
        box-shadow: 0px 1px 2px black;}
    select:focus {
        border: 1px solid goldenrod;}
    select:invalid {
      color: green;}
    select:disabled {
      appearance: none;
      border: none;
      opacity: 1;
    }

option {
  background-color: rgb(75,75,75);
  border-radius: 30px;
  color: goldenrod;}

textarea {
    border: 1px solid silver;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(75, 75, 75);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    min-height: 10px;
    outline: none;
    resize: none;}
    textarea:hover {
        box-shadow: 0px 1px 2px black;}
    textarea:focus {
        border: 1px solid goldenrod;}
    textarea:read-only {
      border: none;
    }

button {
    background-color: rgba(75, 75, 75);
    border: none;
    border-radius: 3px;
    font-weight: normal;
    color: white;
    cursor: pointer;
    margin: 0px auto 0px auto;
    padding: 5px;
    width: 150px;
    transition: background-color 0.2s ease-in, color 0.2s ease-in, font-weight 0.2s ease-in;
    -moz-transition: background-color 0.2s ease-in, color 0.2s ease-in, font-weight 0.2s ease-in;
    -webkit-transition: background-color 0.2s ease-in, color 0.2s ease-in, font-weight 0.2s ease-in;}

    button:hover {
        background-color: rgba(95, 95, 95);
        color: goldenrod;
        font-weight: bolder;}

hr {
  border-color: rgb(75,75,75,0.2);
}

table {
  border-collapse: collapse;
}

@media only screen and (max-width: 700px) {
    body {
        font-size: 12px;
    }
    nav {
        height: 30px;}
    select {
      font-size: 10px;
      min-width: 100px;
      width: 100px;
    }
      }

/* Home imported */

#body-section-div-container-1 {background-image: url(images/services.jpg);}
#body-section-div-container-2 {background-image: url(images/articles.jpg);}
#body-section-div-container-3 {background-image: url(images/academies.jpg);}
#body-section-div-container-4 {background-image: url(images/questions.jpg);}
#body-section-div-container-5 {background-image: url(images/news.jpg);}

.home-body-section {
  position: relative;
  width: 100%;
  height: 280px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
  transition: background-size 0.35s ease, transform 0.35s ease;
}

/* subtle zoom hover */
.home-body-section:hover {
  background-size: 110%;
  transform: scale(1.01);
}

/* gradient overlay for text readability */
.home-body-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.4) 30%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 0;
}

/******* TEXT *******/
.home-body-section-title,
.body-section-div-description {
  position: relative;
  z-index: 0;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  padding: 10px 14px;
  backdrop-filter: blur(2px);
}

/* Title */
.home-body-section-title {
  font-size: 1.3rem;
  font-weight: 700;
}

/* Description */
.body-section-div-description {
  font-size: 0.95rem;
  margin-top: auto;
  padding-bottom: 15px;
}

/* Container layout for vertical alignment */
.home-body-section-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 0;
}

/******** MOBILE FIX ********/
@media (max-width: 600px) {
  .home-body-section {
    height: 220px;
  }

  .home-body-section-title {
    font-size: 1rem;
    padding: 8px 10px;
  }

  .body-section-div-description {
    font-size: 0.85rem;
    padding: 8px 10px 12px;
  }
}


/* IDs */

.icon-element {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75%;
  height: 30px;
  width: 30px;}
  .back-on-top-visible {}
  .back-on-top-invisible {}
    .back-on-top-visible:hover {
      transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
      -moz-transition: opacity 0.3s ease-in, visibility 0.3s ease-in;
      -webkit-transition: opacity 0.3s ease-in, visibility 0.3s ease-in;}

#page-loader {
    background-image: url(transp_logo_s.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10%;
    background-color: white;
    display: block;
    height: 100%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 7;}
    .progress {
      margin-left: auto;
      margin-right: auto;
      margin-top: 600px;
      width: 100.8px;
      height: 16.8px;
      -webkit-mask: radial-gradient(circle closest-side,#474bff 94%,#0000) left/20% 100%;
      background: linear-gradient(goldenrod 0 0) left/0% 100% no-repeat rgb(75,75,75);
      animation: progress-c3ir73 2s infinite steps(6);
   }
   @keyframes progress-c3ir73 {
      100% {
         background-size: 120% 100%;
      }
   }
   @media only screen and (max-width: 700px) {
     #page-loader {
       background-size: 20%;
     }
     .progress {
       margin-top: 500px;
     }
   }

#page-roller {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 5%;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 25%;
    height: 100%;
    opacity: 0;
    position: fixed;
    width: 100%;
    text-align: center;
    top: 0;
    visibility: hidden;
    z-index: 5;
    transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
    -moz-transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
    -webkit-transition: opacity 0.2s ease-in, visibility 0.2s ease-in;}

#photo-popup {
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  height: 100%;
  position: fixed;
  width: 100%;
  text-align: center;
  top: 0;
  z-index: 5;}
  #photo-popup-commands-table {
    background-color: black;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-bottom: 25px;
    width: 95%;}
  #photo-popup-container {
    margin-left: auto;
    margin-right: auto;
    height: 80%;
    width: 90%;}
    #photo-popup-container-img {
      border-radius: 5px;
      box-shadow: 0px 1px 2px silver;
      max-height: 100%;
      max-width: 95%;}

#photo-gallery {
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  padding-top: 5%;
  height: 100%;
  position: fixed;
  width: 100%;
  text-align: center;
  top: 0;
  z-index: 2;}
    .photo-gallery-container {
      background-color: white;
      margin-left: auto;
      margin-right: auto;
      max-width: 700px;
      width: 90%;}
    .photo-gallery-image-container {
      display: inline-block;
      height: 100px;
      margin: 1px 2px 1px 2px;
      text-align: center;
      padding: 20px 5px 20px 5px;
      width: 100px;}

#general-information-popup {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 5%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  padding-top: 25%;
  height: 100%;
  position: fixed;
  width: 100%;
  padding-top: 5px;
  text-align: center;
  top: 0;
  z-index: 2;}

  #general-information-popup-container {
    background-color: white;
    border: 1px solid goldenrod;
    border-radius: 5px;
    height: 90%;
    margin: 0px auto 0px auto;
    min-height: 300px;
    top: 0;
    width: 75%;}





/* ====== POPUP OVERLAY ====== */
#myalert-popup {
    background-color: rgba(0, 0, 0, 0.55);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 500; /* must stay BELOW page-roller */
    backdrop-filter: blur(3px);
}

/* ====== CONTAINER ====== */
#myalert-popup-container {
    background: white;
    border-radius: 14px;
    width: 92%;
    max-width: 460px;
    margin: 90px auto;
    padding: 25px 24px 32px 24px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.18);
    animation: fadeInScale 0.18s ease;
    position: relative;
}

/* Clean entrance animation */
@keyframes fadeInScale {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* ====== ICON ====== */
#myalert-popup-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px auto;
    opacity: 0.95;
}

/* ====== MESSAGE TITLE ====== */
#myalert-popup-message {
    font-size: 18px;
    font-weight: 600;
    color: rgb(50,50,50);
    margin-bottom: 8px;
    padding: 0 12px;
}

/* ====== DESCRIPTION TEXT ====== */
#myalert-popup-description {
    font-size: 15px;
    color: rgb(90,90,90);
    padding: 0 12px;
    margin-bottom: 26px;
    line-height: 1.45;
}

/* ====== BUTTON TABLES ====== */
#myalert-popup-alerttable,
#myalert-popup-confirmtable {
    margin: 10px auto 0 auto;
    width: 100%;
    max-width: 280px;
}

/* ====== BUTTON STYLES ====== */
#myalert-popup-alerttable td,
#myalert-popup-confirmtable td {
    background: rgb(245,245,245);
    color: rgb(60,60,60);
    padding: 11px 0;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.15s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* Hover effect */
#myalert-popup-alerttable td:hover,
#myalert-popup-confirmtable td:hover {
    background: rgb(235,235,235);
}

/* ====== BUTTON COLORS ====== */
#myalert-popup-understandbutton {
    color: goldenrod;
}

#myalert-popup-confirmbutton {
    color: #32cd32; /* greenyellow but nicer */
    font-weight: 600;
}

#myalert-popup-cancelbutton {
    color: #e64848; /* soft red */
    font-weight: 600;
}

/* Keep horizontal layout always */
#myalert-popup-alerttable td,
#myalert-popup-confirmtable td {
    width: 50%;
}

/* ====== MOBILE TWEAKS ====== */
@media only screen and (max-width: 700px) {
    #myalert-popup-container {
        padding: 22px 18px 28px 18px;
    }
    #myalert-popup-message {
        font-size: 17px;
    }
}






#header-background {background-color: rgba(75, 75, 75); border-bottom: 1px solid goldenrod; box-shadow: 0px 1px 2px black; height: 125px; width: 100%;}
#header-button-home {background-image: url("transp_logo_s.png");}
#header-button-menu {background-image: url("icons/actions/menu.png");}
#header-button-profile {
  background-image: url("icons/profile2.png");
  background-size: 50%;
  border-radius: 25px;
  box-shadow: 0px 1px 2px rgba(218, 165, 32, 0.5);
}
  #header-button-profile:hover {
    box-shadow: 0px 1px 2px rgba(218, 165, 32, 0.7);
  }

#filterbar-table {
  display: none;
}
#console-container {
  background-color: black;
  bottom: 0;
  display: none;
  padding-top: 5px;
  position: fixed;
  text-align: center;
  width: 100%;}
  #console-feedback {
    background-color: rgba(50,50,50);
    color: white;
    min-height: 25px;
    margin: 0px;
    margin-left: auto;
    margin-right: auto;
    resize: none;
    width: 95%;}
  #console-request {
    background-color: rgba(50,50,50);
    color: goldenrod;
    margin: 0px;
    width: 95%;}

@media only screen and (max-width: 700px) {
    #header-background {height: 75px;}
}

.addrating-table {
  border: 1px solid red;
  height: 50px;
  width: 300px;
}
.rating-star-negative {
  background-image: url(icons/listing/star_negative.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75%;
  border: 1px solid blue;
}

/* Classes */
.section-filterbar {
  background-color: white;
  text-align: center;
  width: 100%;}
.section-navbar {
  padding-top: 7px;
  margin: 0px;
  width: 100%;}
.section-navbar-left {
  display: inline-block;
  margin: 0px;
  min-height: 5px;
  text-align: left;
  width: 49%;}
.section-navbar-right {
  display: inline-block;
  margin: 0px;
  min-height: 5px;
  text-align: right;
  width: 49%;}
.info-button {
  background-image: url(icons/info.png);
  background-position: center;
  background-size: 90%;
  background-repeat: no-repeat;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin: 0px;
  width: 20px;}
    .info-button:hover {
      background-size: 100%;}
.close-button {
  background-image: url(icons/close3.png);
  background-position: center;
  background-size: 90%;
  background-repeat: no-repeat;
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin: 0px;
  width: 20px;}
  .close-button:hover {
    background-size: 100%;}

/*
.body-section {
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 3px;
    box-shadow: 0px 1px 2px black;
    height: max-content;
    margin: 10px auto 10px auto;
    width: 98%;}
*/
.body-section {
    height: max-content;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    width: 100%;}

.body-section-div {
    margin: 5px auto 5px auto;
    padding: 0px;
    width: 99%;}

.body-section-div-title {
    margin: 0px 0px 30px 0px;
    text-align: center;}

    /*
    .table-form td {border: 1px solid red;}
    */
    

    .table-form-reactivetext {
      color: goldenrod;
      cursor: pointer;
      font-weight: normal;
      text-decoration: underline;
      transition: font-weight 0.1s ease-in;
      -moz-transition: font-weight 0.1s ease-in;
      -webkit-transition: font-weight 0.1s ease-in;}
        .table-form-reactivetext:hover {
          font-weight: bolder;
          transition: font-weight 0.1s ease-in;
          -moz-transition: font-weight 0.1s ease-in;
          -webkit-transition: font-weight 0.1s ease-in;}

.div-button {
  border-radius: 3px;
  border-top: 1px solid goldenrod;
  border-left: 1px solid goldenrod;
  border-right: 1px solid goldenrod;
  box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.5);}

.information-document-card-table {
  border-collapse: collapse;
  margin: 5px auto 5px auto;
  min-width: 300px;
  width: 50%;}

  .listed-document-card {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 1px 2px rgba(75,75,75);
    display: block;
    margin: 5px auto 25px auto;
    max-width: 500px;
    min-height: 100px;
    min-width: 250px;
    padding-top: 10px;
    width: 95%;}

    .listed-document-card-title {
      font-weight: bolder;}

    .listed-document-card-subtitle {
      font-weight: lighter;}

      .listed-document-card table {
        border-collapse: collapse;
        margin: 5px auto 5px auto;
        width: 90%;}

      .listed-document-card-label {
        font-size: 10px;}

      .listed-document-card-text {
        border-bottom: 1px solid rgba(75, 75, 75, 0.3);
        font-size: 16px;}

        /* Applause / Opinion / Share / Favorite / Support - table rows */
        .listed-document-card-opinions-container {
          min-height: 10px;}

        .listed-document-card-opinion-textarea {
          resize: none;
          width: 95%;}

        .listed-document-card-button {
          cursor: pointer;}

        .listed-document-card-button:hover {
          cursor: pointer;
          color: goldenrod;}

      .listed-document-card-photo {
        height: 50px;
        width: 50px;}

      .listed-document-card-input {
        display: block;
        width: 100%;}
  
      .listed-document-card-photomini-container {
        background-color: black;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        border: 1px solid goldenrod;
        border-radius: 50%;
        margin: 5px 0px 0px 5px;
        height: 50px;
        text-align: center;
        width: 50px;}

      .listed-document-card-iconmini-container {
        background-color: white;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 80%;
        border-radius: 50%;
        margin: 5px 0px 0px 5px;
        height: 75px;
        text-align: center;
        width: 50px;}

      .listed-document-card-photomini {
        max-height: 90%;
        max-width: 90%;}

        .listed-document-card-description {
          font-size: 16px;}

      .listed-document-card-photopost {
        max-width: 100%;}

      .listed-document-card-photopost-medium {
        max-width: 50%;}

      .listed-document-card-photopost-small {
        max-width: 25%;}

  .listed-document-list {
    background-color: rgba(75, 75, 75);
    box-shadow: 0px 1px 2px rgba(75,75,75);
    color: white;
    margin-top: 5px;
    width: 100%;}

      .listed-document-list-button:hover {
        background-color: rgba(75, 75, 75);
        box-shadow: 0px 2px 2px rgba(75,75,75);
        color: goldenrod;}

      .listed-document-list-table {
        border-collapse: collapse;
        width: 100%;}
      
      .listed-document-list-text {
        border-bottom: 1px solid rgba(75, 75, 75, 0.3);
        font-size: 16px;}
      
      .listed-document-list-label {
        font-size: 10px;}
      
      .listed-document-list-photo-container {
        height: 150px;
        padding: 10px;
        width: 150px;}
      
      .listed-document-list-photo {
        max-height: 100%;
        max-width: 100%;}
      
      .listed-document-list-textarea {
        background-color: transparent;
        border: none;
        color: white;
        cursor: pointer;
        max-width: 700px;
        resize: none;
        width: 100%;}
        .listed-document-list-textarea:hover {
          box-shadow: none;
        }
        .listed-document-list-textarea:focus {
          border: none;
        }

.opinion-table {
  box-shadow: 0px 1px 2px rgb(75,75,75,0.3);
}
.opinion-photo-container {
  height: 30px;
  width: 30px;
}
.opinion-photo {
  max-height: 100%;
  max-width: 100%;
}

.post-header-table {
  cursor: pointer;
  text-align: left;
}
  .post-header-table:hover {
    color: goldenrod;  }

.post-footer-table {
  text-align: left;}

  .table-1td, .table-2td, .table-3td, .table-4td, .table-5td, .table-6td, .table-7td, .table-8td, .table-9td, .table-10td {
    margin-left: auto;
    margin-right: auto;}
  .table-1td td {width: 100%;}
  .table-2td td {width: 50%;}
  .table-3td td {width: 33%;}
  .table-4td td {width: 25%;}
  .table-5td td {width: 20%;}
  .table-6td td {width: 16.6%;}
  .table-7td td {width: 14.2%;}
  .table-8td td {width: 12.5%;}
  .table-9td td {width: 14.2%;}
  .table-10td td {width: 10%;}

  .information-document-card-table td {
    width: 50%;}

.listed-documents-container {
  padding: 1px;
  text-align: center;}

.general-information-popup-container-card {
  display: none;
  height: 95%;
  margin-top: 10px;
  overflow-x: hidden;
  overflow-y: scroll;}
  .general-information-popup-container-card-profilephoto {
    border: 1px solid goldenrod;
    border-radius: 3px;
    box-shadow: 0px 1px 2px rgb(75,75,75);
    height: 150px;
    width: 150px;}
  .general-information-popup-container-card-title {
    font-size: 20px;}
  .general-information-popup-container-card-title2 {
    font-size: 18px;}
  .general-information-popup-container-card-popuptype {
    font-size: 18px;
    font-weight: normal;}
  .general-information-popup-container-card-subtitle {
    font-size: 16px;
    font-weight: normal;
    text-decoration: underline;}
  .general-information-popup-container-card-boldsubtitle {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;}
  .general-information-popup-container-card-infolabel {
    font-size: 10px;
    margin-bottom: 0px;}
  .general-information-popup-container-card-info {
    font-size: 16px;
    margin-top: 0px;}
  .general-information-popup-container-card-textarea-readonlyfalse {
    height: 200px;
    min-height: max-content;
    resize: vertical;
    width: 95%;}
  .general-information-popup-container-card-textarea-readonlytrue {
    border: none;
    height: 200px;
    resize: vertical;
    box-shadow: none;
    width: 95%;}
      .general-information-popup-container-card-textarea-readonlytrue:hover {box-shadow: none;}
  .general-information-popup-container-card-textarea {
    height: max-content;
    min-height: 36px;
    width: 95%;}
  .general-information-popup-container-card-updatebutton {
    margin: 1px;}
  .general-information-popup-container-card-input-50px {
    text-align: center;
    width: 50px;}
  .general-information-popup-container-card-select-50px {
    text-align: center;
    width: 50px;}
  .general-information-popup-container-card-select-70px {
    text-align: center;
    width: 70px;}
.global-div-close-button {
  background-color: white;
  border: 1px solid goldenrod;
  border-radius: 50%;
  box-shadow: 0px 2px 2px rgb(75,75,75);
  cursor: pointer;
  font-weight: bolder;
  height: 27px;
  margin: 5px;
  position: absolute;
  right: 13.5%;
  width: 27px;}
  .global-div-close-button:hover {
    box-shadow: 0px 2px 4px rgb(75,75,75);}

.file-change-active {
  border-bottom: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-weight: bolder;
  margin-top: 5px;
  padding: 5px;
}
.file-change-inactive {
  border-bottom: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  box-shadow: 0px -5px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-top: 5px;
  padding: 5px;
}
  .file-change-active:hover, .file-change-inactive:hover {
    text-decoration: underline;
  }

/* Extra */

/*scrollbar*/
/* width */
::-webkit-scrollbar {
  width: auto;
}
/* Track */
::-webkit-scrollbar-track {
    background: white;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(75,75,75);
  background: radial-gradient(circle, rgba(75,75,75,1) 0%, rgba(75,75,75,1) 100%);
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(75,75,75);
  background: radial-gradient(circle, rgba(95,95,95,0.7) 0%, rgba(95,95,95,0.7) 100%);
}

.arrow {
  border: solid rgba(75,75,75);
  border-width: 0 2px 2px 0;
  cursor: pointer;
  display: inline-block;
  padding: 6px;
}
    .arrow:hover {
        border-color: goldenrod;
    }
    .right {
      transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
    }
    
    .left {
      transform: rotate(135deg);
      -webkit-transform: rotate(135deg);
    }
    
    .up {
      transform: rotate(-135deg);
      -webkit-transform: rotate(-135deg);
    }
    
    .down {
      transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
    }

.lds-roller {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
  }
  .lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: goldenrod;
    margin: -4px 0 0 -4px;
  }
  .lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
  }
  .lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
  }
  .lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
  }
  .lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
  }
  .lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
  }
  .lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
  }
  .lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
  }
  .lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
  }
  .lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
  }
  .lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
  }
  .lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
  }
  .lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
  }
  .lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
  }
  .lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
  }
  .lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
  }
  .lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
  }
  @keyframes lds-roller {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: goldenrod;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(19px, 0);
    }
  }
  .lds-ellipsis-user-photo {
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      left: 68px;
      top: 68px;
      position: absolute;
  }

  .chat-icon-send {
      background-image: url(icons/send2.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 30%;
      height: 30px;
      padding: 5px;
      width: 75px;}

.status-active, .status-started {color: darkgreen;}
.status-inactive, .status-denied, .status-blocked, .status-ended {color: darkred;}
.status-writing, .status-announced {color: midnightblue;}
.status-pending {color: chocolate;}
.status-deleted, .status-cancelled {color: gray;}

.listed-item-active, .listed-item-launched, .listed-item-finished, .listed-item-started {border-left: 5px solid darkgreen;}
.listed-item-inactive, .listed-item-denied, .listed-item-blocked, .listed-item-cancelled {border-left: 5px solid darkred;}
.listed-item-writing, .listed-item-developing, .listed-item-announced, .listed-item-working {border-left: 5px solid midnightblue;}
.listed-item-pending, .listed-item-testing {border-left: 5px solid chocolate;}
.listed-item-deleted, .listed-item-deleted, .listed-item-ended {border-left: 5px solid gray;}
.listed-item-planning {border-left: 5px solid black;} .listed-item-upcoming {border-left: 5px solid black;}

/* REGISTERED */


/* listing card */
.listed-document-card-profile-container {
  background-color: white;
  margin: 5px auto 5px auto;
  max-width: 700px;
  width: 97%;}
  /*
    .listed-document-card-profile-container:hover {
    color: goldenrod;
    box-shadow: 0px 1px 2px black;}
  */
  .listed-document-card-profile-photo {
    border-radius: 50%;
    margin: 5px 0px 0px 5px;
    max-height: 50px;
    max-width: 50px;}
  .listed-document-card-profile-name {
    font-size: 18px;
    font-weight: bolder;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 5px;
    text-align: left;}
  .listed-document-card-profile-category {
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 5px;
    text-align: left;}
    .listed-document-card-profile-container input {
      width: 95%;
    }

  .listed-document-card-profile-icon {
    background-color: white;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80%;
    border-radius: 50%;
    margin: 5px 0px 0px 5px;
    height: 75px;
    text-align: center;
    width: 50px;}

  .listed-document-card-profile-datetime {
    font-size: 14px;
    font-weight: lighter;
    padding-left: 5px;
    text-align: left;}
  .listed-document-card-profile-text {
    box-shadow: none;
    cursor: default;
    font-size: 16px;
    resize: none;
    text-align: left;
    width: 97%;}
    .listed-document-card-profile-text:hover {
      box-shadow: none;}

  .listed-document-card-profile-label {
    font-size: 12px;
    text-align: left;}
  .listed-document-card-profile-rightlabel {
    font-size: 10px;
    text-align: right;}
  .listed-document-card-profile-command {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25%;
    cursor: pointer;
    height: 30px;}
    .listed-document-card-profile-command:hover {
      background-size: 30%;}
  .listed-document-card-profile-photoattached {
    border: none;
    margin: 5px 0px 0px 5px;
    max-height: 200px;
    max-width: 200px;}

  .applause-command {background-image: url(icons/actions/applause.png);}
  .applaused-command {background-image: url(icons/actions/applaused.png);}
  .opinion-command {background-image: url(icons/opinion.png);}
  .share-command {background-image: url(icons/share2.png);}
  .favorite-command-add {background-image: url(icons/saved2.png);}
  .favorite-command-remove {background-image: url(icons/saved.png);}
    
/* listing list */
.listed-document-list-profile-container {
  background-color: rgb(75,75,75);
  border-radius: 5px;
  color: white;
  margin: 5px auto 5px auto;
  max-width: 700px;
  width: 97%;}
  /*
    .listed-document-list-profile-container:hover {
    color: goldenrod;
    box-shadow: 0px 1px 2px black;}
  */
  .listed-document-list-profile-photo {
    border-radius: 50%;
    margin: 5px 0px 0px 5px;
    max-height: 50px;
    max-width: 50px;}
  .listed-document-list-profile-name {
    color: white;
    font-size: 18px;
    font-weight: bolder;
    text-align: left;}
    .listed-document-list-profile-name a {
      color: white;
    }
  .listed-document-list-profile-category {
    color: blue;
    font-size: 16px;
    text-align: left;}
  .listed-document-list-profile-datetime {
    font-size: 14px;
    font-weight: lighter;
    text-align: left;}
  .listed-document-list-profile-text {
    background-color: rgb(75,75,75);
    box-shadow: none;
    color: white;
    cursor: default;
    font-size: 16px;
    resize: none;
    text-align: left;
    width: 97%;}
    .listed-document-list-profile-text:hover {
      box-shadow: none;}

  .listed-document-list-profile-label {
    font-size: 12px;
    text-align: left;}
  .listed-document-list-profile-rightlabel {
    color: blue;
    font-size: 10px;
    text-align: right;}
  .listed-document-list-profile-command {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25%;
    cursor: pointer;}
    .listed-document-list-profile-command:hover {
      background-size: 30%;}
  .listed-document-list-profile-photoattached {
    margin: 5px 0px 0px 5px;
    max-height: 200px;
    max-width: 200px;}
