/* CSS */

body {

  /* background-image: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0 100%), url("/static/images/bg1.d45d77827acb.png"); */
  /* background: linear-gradient(454deg, #404c80, #53ff88); */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100% 100%;


  /* -webkit-user-select: none;  */
  /* Safari */
  /* -moz-user-select: none;     */
  /* Firefox */
  /* -ms-user-select: none;      */
  /* Internet Explorer/Edge */
  /* user-select: none;          */
  /* Standard */


  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */

}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color:rgba(0, 0, 0, 0.5);
}

/************************************************/
/* START: base_generic.html and index.html */
/************************************************/
.my-navbar {
  /* background-color: linear-gradient(454deg, #444141, #717070);
   */
  /* background-color: #3e3d3d; */
  background-color: #402727;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  vertical-align: middle;
  /* height: 5rem; */
  height: 8svh;
  z-index: 1050;
}

.my-logo {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.my-footer-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px;
  margin: 5px;
  flex-wrap: wrap;
  width: 100%;
}
.my-footer-menu li a {
  /* color: white; */
  color:rgba(0, 0, 0, 0.5);
  /* text-decoration: none; */
  padding: 5px;
  z-index: 1001;
  position: relative;
}

.my-footer-menu li a:hover {
  background-color: #575757;
  border-radius: 5px;
}

.my-footer-menu i {
  color:rgba(0, 0, 0, 0.5);
}

.my-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0px 0px 0px 16px;
  margin: 10px 0px 0px 8px;
  z-index: 1000;
}

.my-menu li a {
  color: white;
  text-decoration: none;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.my-menu li a:hover {
  background-color: #575757;
  border-radius: 5px;
}

.my-menubtn {
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 0px;
  border-style: none;
}

.my-menubtn:hover {
  background-color: #575757;
  border-radius: 5px;
}

/* Hamburger icon */
.my-hamburger {
  display: none;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}

/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Responsive styles */
@media (max-width: 5000px) {
  .my-menu {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #333;
    display: none;
    margin: 0px 0px 0px 8px;
    z-index: 1000;
  }

  .my-menu li {
    text-align: right;
    /* border-top: 1px solid #444; */
    z-index: 1001
  }

  #menu-toggle:checked+.my-hamburger {
    color: red;
  }

  #menu-toggle:checked+.my-hamburger+.my-menu {
    display: flex;

  }

  .my-hamburger {
    display: block;
  }
}


/*------------------------------------------------*/
/* END: base_generic.html and index.html */
/************************************************/

.my-text-area {
  /* width: 60dvw; */
  width: 80%;
  /* height: auto; */
  height: 25px;
  /* font-size: 1rem; */
}

.grand-daddy {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 95dvw;
  height: 90lvh;
  margin: auto;
}

.daddy {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
}

.div-login {
  display: flex;
  flex-direction: column;
  justify-items: center;
}
.div-login-inputs {
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  width:100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-content: stretch;
}

/* Basic grid container styling */

/* Styling for individual grid items */
.grid-item {
  /* background-color: #4CAF50; */
  padding: 10px;
  text-align: center;
  font-size: 1rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  /* color: #555; */
  color: rgba(57, 44, 44, 0.95);
  font-size: 1.5rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ccc;
  border-radius: 8px;
  font-size: 1.2rem;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: #4CAF50;
  outline: none;
}

.login-btn {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  background-color: #4CAF50;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-btn:hover {
  background-color: #45a049;
}

.form-footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #2f2d2d;
}

.form-footer a {
  color: #4CAF50;
  text-decoration: none;
  font-size: 1.5rem;
}

.div-visitor-unauthenticated {
  top: 20lvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  justify-items: center;

  border-radius: 16px;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.5);
  overflow: hidden;

  background-color: rgba(203, 233, 203, 0.5);
  margin-top: 2rem;
  position: relative;
}
.div-visitor-unauthenticated p + p {
  margin: 1rem;
  padding: 1rem;
}
.div-visitor-unauthenticated div + div {
  margin: 1rem;
  padding: 1rem;
}

.property-card {
  width: 30rem;
  height: 15rem;
  border-radius: 16px;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  font-family: 'Arial', sans-serif;
  background-color: rgba(203, 233, 203, 0.5);
  margin: 1rem;
  display: flex;
  justify-items: center;
  flex-direction: column;
  align-items: center;

}

.my-pre {
  margin: 0px;
  padding: 0px;
  white-space: pre-wrap;
}

.gallery-wrapper {
  display: flex;
  /* align-items: center;
  justify-content: center; */
  /* margin: 10% auto; */
  height: auto;

}

.gallery {
  width: 80dvw;
  display: flex;
  overflow-x: scroll;
}

.gallery div {
  width: 100%;
  display: grid;
  grid-template-columns: auto;
  grid-gap: 20px;
  padding: 10px;
  flex: none;
}

.gallery div div {
  width: 100%;
}

.gallery::-webkit-scrollbar {
  display: none;
}

.my-cardbox {
  border-radius: 10px;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  background-color: rgba(203, 233, 203, 0.5);

  width: 641px;
  height: auto;

  /*
  this restricts height
  but does not affect y-separation
  */
  max-height: 80lvh;
  overflow-y: auto;

  display: flex;
  flex-direction: column;

  align-items: start;
  align-content: start;

  justify-content: start;
  justify-items: start;

  row-gap: 0px;
  gap: 0px;
  column-gap: 0px;

  border-style: solid;
  border-width: 2px;
}
.my-element {
  width: 641px;
  background-color: lightblue;
}

@media all and (max-width: 675px) {
  .my-cardbox-job-status {
    border-radius: 10px;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    background-color: rgba(203, 233, 203, 0.5);

    width: calc(80vw);
    height: auto;
  }
  .my-cardbox-container-controls {
    width: calc(90vw);
    height: auto;
    position: sticky;
    top: 3.5rem;
  }
  .my-cardbox-container {
    width: calc(95vw);
    /* height: auto; */
    height: 75lvh;
  }
  .my-cardbox {
    border-radius: 10px;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    background-color: rgba(203, 233, 203, 0.5);

    width: calc(95vw);
    height: auto;
    /*
    this restricts height
    but does not affect y-separation
    */
    max-height: 80lvh;
    overflow-y: auto;

    display: flex;
    flex-direction: column;

    align-items: start;
    align-content: start;

    justify-content: start;
    justify-items: start;

    row-gap: 0px;
    gap: 0px;
    column-gap: 0px;

    border-style: solid;
    border-width: 2px;
  }

  .my-cardbox > * {
    flex: 0px;
  }
  .my-element {
    width: calc(95vw);
    background-color: green;
  }
}

.pretty-table {
  border-style: none;
  width: 100%;
}

.pretty-table thead {
  background-color: #a569bd;
  position: sticky;
  /* top: 5.7rem; */
  top: 6rem;
  z-index: 96;
  width: 100%;
}
.pretty-table tbody {
  width: 100%;
}
.pretty-table th {
  border: 0.5px solid black;
  padding: 4px;
  /* border-radius: 10px; */
  border-style: dotted;
  vertical-align: top;
  color: black;
  font-size: min(max(0.3rem,2dvw),0.7rem);;
  height: 1rem;
}

.pretty-table th span {
  border: 0.5px solid black;
  padding: 4px;
  /* border-radius: 10px; */
  border-style: dotted;
  vertical-align: top;
  color: white;
}

.pretty-table td {
  border: 0.5px solid black;
  padding: 4px;
  /* border-radius: 10px; */
  border-style: dotted;
  vertical-align: top;
  font-size: 0.65rem;
  color: black;
}


.pretty-table tbody tr:nth-child(odd) {
  background-color: #fff;
}

.pretty-table tbody tr:nth-child(even) {
  background-color: #eee;
}

.pretty-table col_delete {
  width: 10%;
}

.pretty-table col_images {
  width: 90%;
}

.my-select-multiple {
  font-size: 0.65rem;
  width: 95%;
  height: 6rem;
  max-height: 10rem;
}

.my-slide-container {
  width: 100%;
  height: 100lvh;
  overflow-x: hidden;
  overflow-y: scroll;
  /* position: relative; */
  top: 8lvh;
  /* display: flex;
  flex-direction: column; */

}

.my-slides {
  width: 100%;
  /* height: 100svh; */
  height: 100lvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  color: #fff;
  /* position: absolute; */
}



/** For mobile devices no snap **/
@media (min-width: 767px) and (min-height: 820px) {
    .my-slide-container {
        /* scroll-snap-type: none; */
        scroll-snap-type: y mandatory;
    }
    .my-slides {
        /* scroll-snap-align:none; */
        scroll-snap-align: start;
        transition: transform 0.5s ease-in-out;
    }
}

@media (max-height: 600px) {
  .my-slide-container {
    height: 100%;
    width: 100dvw;


  }
  .my-slides {
    height: 100%;
    width: 100dvw;

  }
}

/*
#fef9e7
#fcf3cf
#fef5e7
#fdebd0
#fad7a0
*/

.my-slide-style1 {
  /* background: linear-gradient(454deg, #4f4080, #9553ff); */
  background-color: #fef9e7;
}

.my-slide-style2 {
  /* background: linear-gradient(454deg, #404c80, #1eae50); */
  background-color: #fcf3cf;
}
.my-slide-style3 {
  /* background: linear-gradient(454deg, #404c80, #53ff88); */
  background-color: #fef5e7;
}
.my-slide-style4 {
  /* background: linear-gradient(454deg, #404c80, #53ff88); */
  background-color: #fdebd0;
}
.my-slide-style5 {
  /* background: linear-gradient(454deg, #404c80, #53ff88); */
  background-color: #fad7a0;
}


.icon-pdf {
  /* background-image : url("/static/images/PDF_icon.0d6a136c5f06.png") no-repeat; */
  /* background-position: center center; */
  background-size: cover;
  display: inline-block;
  height: 2rem;
  width: auto;

}

.my-font-sizeable-1 {
  font-size: min(max(1.0rem,8dvw),3rem);
  /* color: aliceblue; */
  color:rgba(0, 0, 0, 0.5);
  overflow-wrap: break-word;
  font-weight: 500;
}

.my-font-sizeable-2 {
  font-size: min(max(0.8rem,6dvw),1.6rem);
  /* color: aliceblue; */
  color: rgba(0, 0, 0, 0.5);
  overflow-wrap: break-word;

}
.my-font-sizeable-3 {
  font-size: min(max(0.7rem,4dvw),1.25rem);
  /* color: aliceblue; */
  color: rgba(0, 0, 0, 0.5);
}
.my-font-sizeable-4 {
  font-size: min(max(0.4rem,4dvw),1.2rem);
  /* color: aliceblue; */
  color:rgba(0, 0, 0, 0.5);
}

.my-slide-padding-lr-3rem {
  padding: 0.1rem 3rem 0.1rem 3rem;
}
.my-slide-padding-lr-1rem {
  padding: 0.1rem 1rem 0.1rem 1rem;
}


@media (max-height: 600px) {
  .my-font-sizeable-1 {
    font-size: min(max(0.8rem,6dvw),1.6rem);
    /* color: aliceblue; */
    color:rgba(0, 0, 0, 0.5);
    overflow-wrap: break-word;
    font-weight: 500;
  }

  .my-font-sizeable-2 {
    font-size: min(max(0.4rem,4dvw),1.2rem);
    /* color: aliceblue; */
    color:rgba(0, 0, 0, 0.5);
    overflow-wrap: break-word;

  }
  .my-font-sizeable-3 {
    font-size: min(max(0.3rem,3dvw),1.05rem);
    /* color: aliceblue; */
    color:rgba(0, 0, 0, 0.5);
  }
  .my-font-sizeable-4 {
    font-size: min(max(0.2rem,2dvw),1.0rem);
    /* color: aliceblue; */
    color:rgba(0, 0, 0, 0.5);
  }

  .my-slide-padding-lr-3rem {
    padding: 0.1rem 1rem 0.1rem 1rem;
  }
  .my-slide-padding-lr-1rem {
    padding: 0.1rem 0.5rem 0.1rem 0.5rem;
  }
}