body {
  background-color: #fce8dc;
  margin: 0;
  font-size: 28px;
  font-family: Arial, Helvetica, sans-serif;
  text-align:center;
}

.header {
  justify-content:center;
  background-color: #d19f82;
  padding: 8px;
  text-align: center;
  color: #ebcfbc;
  font-family: 'courier';
  font-size: 20px;
}


#navbar {
  overflow: hidden;
  background-color: #e3bba3;
}

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

#navbar a:hover{
  background-color: #ebcfbc;
  color: black;
}

#navbar a.active {
  background-color: #ebcfbc;
}
  .productsDROPDOWN {
    float: left;
    overflow: hidden;
   }

  .productsDROPDOWN .productsDROPBTN {
    font-size: 16px;  
    border: none;
    outline: none;
    padding: 14px 16px;
    background-color: #e3bba3;
    font-family: inherit;
    margin: 0;
  }

.productsDROPDOWN:hover .productsDROPBTN {
  background-color: #ebcfbc;
}  

  .products-content {
      position: absolute;
      display: none;
      background-color: #e3bba3;
      color: #fcfafa;
      min-width: 60px;
      max-width: 120px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
  }

  .products-content a {
      color: black;
      padding: 14px 16px;
      text-decoration: none;
      display: block;
  }

  .products-content a:hover {
      background-color: #f1f1f1;
  }

  .productsDROPDOWN:hover .products-content {
      display: block;
  }

  .products-content a {
      display: block;
      width: 100%;
  }

.favouritesBTN{
  float: right;
  background-color: #e3bba3;
    padding: 14px 16px;
    font-size: 16px;
    border: none;
}
.favouritesBTN:hover{
  background-color: #ebcfbc;
}

.loginBtn {
  float: right;
  background-color: #e3bba3;
    padding: 14px 16px;
    font-size: 16px;
    border: none;

}

.loginBtn:hover {
    background-color: #ebcfbc;
}

.iconBTN {
float: right;
right: 10px;
background-color: #e3bba3;
  padding: 14px 16px;
  font-size: 16px;
  border: none;

}

.iconBTN:hover {
    background-color: #ebcfbc;
}

.content {
  padding: 16px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 60px;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #d19f82;
  color: #ebcfbc;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #e3bba3;
  color: #dfd1c5;
}

* {
  box-sizing: border-box;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}


/* login */
.login label{
  font-size: 15px;
}

/* Full-width input fields */
.login input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
  background-color: #ffede0;
}

/* Set a style for all buttons */
.login button {
  background-color: #d19f82;
  color: #635f5f;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
}

.login button:hover {
  opacity: 0.8;
}

/* Center the image and position the close button */
.login .imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}

.login img.logo {
  width: 40%;
  border-radius: 50%;
}

.login .container {
  padding: 16px;
  background-color: #ebcfbc;
}

.login span.psw {
  float: right;
  padding-top: 16px;
}

/* The Modal (background) */
.login .modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
.login .modal-content {
  background-color: #d19f82;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #ebcfbc;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button (x) */
.login .close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.login .close:hover,
.login .close:focus {
  color: #ebcfbc;
  cursor: pointer;
}

/* Add Zoom Animation */
.login .animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  .login span.psw {
     display: block;
     float: none;
  }
  .login .cancelbtn {
     width: 100%;
  }
}

table {
  font-family: arial, sans-serif;
  font-size: 12px;
  border-collapse: collapse;
  width: 100%;
}
th {
  width: 25%;
  
}

td, th {
  border: none;
  background-color: #fce8dc;
  text-align: center;
  padding: 8px;
}

.table-img {
  width: 50%;
}

#back-btn {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #d19f82;
  color: #ebcfbc;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}
#back-btn:hover {
  background-color: #e3bba3;
  color: #dfd1c5;
}

.freya-img{
  float:left;
  width:40%;
}

.freya {
  float:right;
  width:55%;
  text-align: right;
  margin-right: 20px;
}

.wishlist {
  width:55%;
  margin-right: 20px;
  float:right;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #d19f82;
  color: #ebcfbc;
  padding: 15px;
  border-radius: 4px;
}

.wishlist:hover {
  background-color: #e3bba3;
  color: #dfd1c5;
}

.home-txt{
  text-align:left;
  float:left;
  margin-left:10px;
  width:35%;
  font-size:20px;
}

.mySlides {display: none;}
.slideshow-container {
  width:60%;
  float:right;
  margin: auto;
}
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.photos-link {
  float:left;
  margin-left:10px;
  width:39%;
}

.socials{
  float:right;
  width:60%;
}

.tubeBtnImg {
  margin-right: 10px;
  margin-bottom: 70px;
  float:right;
}

.favourite-item {
  position: relative;
  display: inline-block;
}

.remove-item {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  color: #d19f82;
  font-size: 18px;
}