/* CSS Document */
* {
  box-sizing: border-box;
}

body {
  font: 16px Arial;  
  margin: 0;
  background-image: url("/media/background.png");
  background-size: cover;
}


.element {
    margin-top: 16px; 
    margin-bottom: 16px;  
    margin-left: auto; 
    margin-right: auto; 
    border-radius: 58px; 
    padding: 8px; 
    overflow: auto; 
    background-color: rgba(50, 50, 50, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}


/* Place the navbar at the bottom of the page, and make it stick */
.navbar {
    background-color: rgba(50, 50, 50, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
  width: 100%;
}


.navbar-top {
  top: 0;
}


.navbar-bot {
  bottom: 0;
  position: fixed;
}

/* Style the links inside the navigation bar */
.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.navbar a.active {
  background-color: #325862;
  color: white;
}


.site_content {
    position: relative; 
}

.list_image {
  display: block;
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    overflow: hidden; 
    float: left; 
}

.list_title {
  display: block;
    float: left;
    margin: auto;  
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .element {
        width: 100%; 
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .element {
        width: 600px; 
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}








/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
  display: inline-block;
}

input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}

input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}

input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
  cursor: pointer;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

/* EZ Wish stuff */

.wish {
    background-color: DeepSkyBlue; 
    margin-left: auto;
    margin-right: auto; 
    margin-top: auto; 
    margin-bottom: 8px; 
    width: 50%;
    padding: 8px;
    border-radius: 8px; 
}


@media only screen and (max-width: 1024px){
  .wish {
    width: 80%;
  }
}

@media only screen and (max-width: 500px){
  .wish {
    width: 100%;
  }
}


img.wish_image {
    max-width: 100%; 
    height: auto; 
    border-radius: 16px; 
}

.avatar_container {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}

.avatar {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-color: #aaaaaa;
  background-color: #dddddd; 
  border-style: solid;
  border-radius: 50%;
    overflow: hidden; 
    object-fit: cover; 
}

img.avatar_image {
    width: 100%; 
    max-height: 100%; 
}


h2.title{
    text-align: center;
}

.wish_title_container {
    width: 100%; 
}

.wish_title_left {
    width: 10%; 
    margin-left: -12%;
    height: auto; 
    float: left; 
}

.wish_title_right {
    margin-left: 0%; 
    height: auto; 
}

@media only screen and (max-width: 1024px){
    .wish_title_left {
        width: 10%;
        margin-left: 0%; 
    }

    .wish_title_right {
        margin-left: 10%; 
    }
}


.content {
    position: relative; 
    top: auto; 
}

.bot_space{
    height: 20%; 
}
