
body {
  background-color: hsla(210, 50%, 99%, 1);
  opacity: 1.0;
  color: #999999;
  font-size: 1.5rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7rem;
  margin: 0;
  padding: 0;
  width: 100%;
  position:absolute;
   z-index: 0;
      }
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 400;
	letter-spacing: 0rem;
	padding: 0rem;
	min-height: 100vh;
  overflow-x:hidden
}
a {
  text-decoration: none;
}
h1 {
 font-family: 'IBM Plex Sans', sans-serif;
 
  font-weight: 700;
  font-size: 4rem;
  color: hsla(210, 50%, 23%, 1);
  line-height: 4rem;
  padding-left: 1rem;
  padding-bottom: 1rem;
}
h2 {
    font-family: 'IBM Plex Sans', sans-serif;
 
  font-weight: 700;
  font-size: 4rem;
  color: #F1FAEE;;
  line-height: 3rem;
  padding-left: 1rem;
  padding-bottom: 1rem;
}
h3 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
  padding: 1rem;
  line-height: 3rem;
}

span.blue {
  background: red;
  border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  -webkit-border-radius: 0.8em;
  color: #ffffff;
  display: inline-block;
  font-weight: bold;
  line-height: 1.6em;
  margin-right: 5px;
  text-align: center;
  width: 1.6em; 
}
h4 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  color: hsla(210, 50%, 23%, 1);
  text-align: left;
  align-items: left;
  padding: .5rem 0rem 0rem 5rem;
}

h5 {
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: blue;
  text-align: center;
  align-items: center;
  padding: 1rem;
}
p {
  font-size: 1.6rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 2.1rem;
  font-kerning: auto;
  color: hsla(360, 100%, 100%, 1);
  padding-bottom: 1.2rem;
  padding-left: 1rem;

}
.topinfo{
      /* We first create a flex layout context */
  display: flex;
  
  /* Then we define the flow direction 
     and if we allow the items to wrap 
   * Remember this is the same as:
   * flex-direction: row;
   * flex-wrap: wrap;
   */
  flex-flow: row wrap;
  
  /* Then we define how is distributed the remaining space */
  justify-content: space-around;
  
  padding: 0;
  margin: 0;
  list-style: none;
  }
  .explain{
    flex: 2;
    padding: 0rem 3rem 0rem 3rem;
    background-color: hsla(210, 50%, 97%, 1);
    border: 1px solid hsla(210, 50%, 33%, .2);
   margin-right: 4px;
  }
 .ad1{
  
    width: 400px;
    max-width: 600px;
    text-align: center;
    color: gray;

  
  padding: 1rem 0rem 1rem 0rem;
   border: 0px solid hsla(360, 100%, 100%, 1);
   margin: 1rem 1rem 1rem 1rem;
   
   text-align: center;
   background-color: hsla(214, 100%, 15%, 1);
   border-radius: 5px;
  }
  
.selectdrop
{
  font-size: 1.5rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 4rem;
  font-kerning: auto;
  color: hsla(360, 100%, 100%, 1);
}
.button {
  border: 1px solid orangered;
  color: white;
  text-align: center;
  font-size: 18px;
  height: 36px;
  padding: 8px 5px 20px 5px;
  width: 180px;
  transition: all 0.5s;
  cursor: pointer;
  margin: .5rem 0rem .2rem 1rem;
  border-radius: 10px;
  background-color: hsla(15, 100%, 53%, 1);

}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.4s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}
 
 .cards {
  text-align: center;
  display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
    }
 .card {
    background-color: white;  
    border-radius: 0.15rem;
    display: inline-block;
   
    margin: 0.9rem 1.3rem 1.5rem 1.3rem;
    max-width: 23rem;
     display: -webkit-box;
     display: -moz-box;
     display: -ms-flexbox;
     display: -webkit-flex;
     display: flex;
     -webkit-flex-direction: column;
     flex-wrap: wrap;
    flex: 1 1 auto;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border-width: 1px;
    border-color: black;
    
    border-style: solid;
    }
    .card:hover .shadowimg{
     opacity: .20;
}
 .card img{
    max-width: 23rem;
    max-height: 17rem;
   background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0em;
  border-top-right-radius: 0em;
  filter: contrast(100%);
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
    }
.flexicons{
   display: -webkit-box;
   display: -moz-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
  align-content: center;
  flex-flow: row;
  justify-content: space-around;
  position: absolute;
  width: 23rem;
  top: 12.5rem;
  opacity: 0;
  z-index: 1;
  transition: opacity .35s ease;
}
.flexicons img{
   max-width: 23rem;
    max-height: 19rem;
    margin: 0rem;
    padding: 0rem;
    border-style: solid;
    border-width: 0rem;
    border-color: #ECEFF1;
}
.card:hover .flexicons {
  opacity: 1;
}
 .card .product {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  padding: .3em 0em .4em 0em;
  background-color: black;
  font-size: 1.30rem;
  color: #fff;
  text-align: center;
    }
.msgdisplay{
  position: absolute;
  bottom: 0rem;
  width: 23rem;
  font-family: 'IBM Plex Sans', sans-serif;
  opacity: 1;
  z-index: 2;
  transition: opacity .35s ease;
  
  border-radius: 2px;
      color: white;
      background-color: #E63946;
      font-weight: 400;
      font-size: 1.1rem;
      line-height: 1.5rem;
}
.msgdisplayred{
  position: absolute;
  width: 11rem;
  font-family: 'IBM Plex Sans', sans-serif;
  top: 17rem;
  opacity: 1;
  z-index: 2;
  margin-left: 9.8rem;
  transition: opacity .35s ease;
  border: 1px solid hsla(61, 99%, 96%, 1);
  border-radius: 2px;
      color: white;
      background-color: hsla(358, 99%, 61%, 1);
      font-weight: 400;
      font-size: 1.1rem;
      line-height: 1.5rem;
}

.msgdisplayhighlight{
  position: absolute;
  width: 23rem;
  font-family: 'IBM Plex Sans', sans-serif;
  top: 2.4rem;
  opacity: 1;
  z-index: 2;
  
  transition: opacity .35s ease;
  border: 1px solid hsla(61, 99%, 96%, 1);
  border-radius: 2px;
      color: white;
      background-color: #E63946;
      font-weight: 400;
      font-size: 1.1rem;
      line-height: 1.5rem;
}
.msgstate{
  position: absolute;
  width: 2.7rem;
  font-family: 'IBM Plex Sans', sans-serif;
  bottom: 4.0rem;
  opacity: 1;
  z-index: 2;
  margin-left: .15rem;
  transition: opacity .35s ease;
  border: 1px solid hsla(61, 99%, 46%, 1);
  border-radius: 12px;
      color: black;
      background-color: hsla(61, 99%, 91%, 1);
      font-weight: 500;
      font-size: 1.1rem;
      line-height: 1.5rem;
}
.flex{
   display: -webkit-box;
   display: -moz-box;
   display: -ms-flexbox;
   display: -webkit-flex;
   display: flex;
  align-content: center;
  flex-flow: row wrap;
  justify-content: space-around;
  background-color: hsl(0,5%,97%);
}
.price {
      font-size: 15px;
     font-family: 'IBM Plex Sans Condensed', sans-serif;
      font-weight: 500;
      padding: 4px 0px 0px 10px;
      color: black;
    }
    .pricered {
      font-size: 15px;
      font-family: 'IBM Plex Sans', sans-serif;
      font-weight: 400;
      padding: 7px 0px 0px 10px;
      background-color: red;
    }
    .priceblue {
      font-size: 15px;
      font-family: 'IBM Plex Sans', sans-serif;
      font-weight: 400;
      padding: 7px 0px 0px 10px;
      background-color: blue;
    }
    .solditem {
   padding-top: .5rem;
   padding-bottom: .3rem;
   padding-left: .3rem;
   margin-top: -.2rem;
   text-align: center;
   color: black;
   font-size: 1.5rem;
   font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.8rem;
   font-kerning: auto;
   background-color: #FF9800;
    }
.enquire {
      padding: 0px 10px 0px 10px;
      text-align: center;
      font-size: 13px;
      font-family: 'IBM Plex Sans', sans-serif;
      font-weight: 400;
      line-height: 20px;
      border-radius: 4px;
      margin: 0px 0px 17px 0px;
      border: 1px solid hsla(0, 0%, 70%, 1);
      color: hsla(0, 0%, 60%, 1);
      background-color: hsla(199, 34%, 90%, 1);
      cursor:pointer;
      
      }
      .soldlist {
      padding: 0px 10px 0px 10px;
      text-align: center;
      font-size: 13px;
      font-family: 'IBM Plex Sans', sans-serif;
      font-weight: 400;
      line-height: 20px;
      border-radius: 4px;
      margin: 0px 0px 17px 0px;
      border: 1px solid hsla(0, 0%, 70%, 1);
      color: hsla(0, 0%, 50%, 1);
      background-color: hsla(0, 0%, 95%, 1);
      cursor:pointer;
      align-items: center;
      align-content: center;
      
      }
    .enquirelist {
   padding-left:1rem;
   padding-right: 1rem;
   padding-top: 1.2rem;
   padding-bottom: .2rem;
   text-align: center;
   font-size: 1.5rem;
   font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.8rem;
   border-radius: .40rem;
   margin-top: .2rem;
   margin-bottom: .2rem; 
   border:1px solid #FF4081;
  color: white;
  background-color: #FF4081;
  cursor:pointer;
  width: 30rem;
  height: 4rem;
  margin:auto;
   display: block;
    }
.enquire:hover {
  box-shadow:0 8px 16px 0 rgba(0,0,0,0.3),0 6px 20px 0 rgba(0,0,0,0.19);
}
.cardfoot {
    color: hsla(199, 34%, 40%, 1);
    font-size: 10px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    line-height: 13px;
    font-kerning: auto;
    background-color: hsla(199, 34%, 77%, 1);
    padding: 3px 0px 2px 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-content: center;
    flex-flow: row;
    justify-content: space-around;
  }

.ascentlogo {
  margin: 0;
  font-size: 1.45em;
  padding-left: 2rem;
}
nav ul {
  display: flex;
  flex-flow: row wrap;
  margin: 0rem 0rem;
  list-style-type: none;
  color: rgb(230,230,230);
  font-size: 1.5rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7rem;
  font-kerning: auto;
  justify-content: space-around;
 min-height: 12rem;
  background: linear-gradient(hsla(208, 79%, 5%, 1),hsla(208, 79%, 45%, 1));

}
nav li {
    margin-left: 0rem;
    margin-top: 30px;
    padding-left: 0rem;
}
nav li a{
  color: white;
  font-size: 1.5rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7rem;
  font-kerning: auto;
  text-decoration: none;
}
header{
  text-transform: uppercase;
	font-size: 1.6rem;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 500;
  line-height: 1.8rem;
  margin-top: 10rem;
}
header ul{
  background: hsla(210, 50%, 80%, 1);
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  list-style-type: none;
  padding:.3rem;
}

header ul li {
  margin: 0 .7rem;
  transition: all 0s;
}
header .filter {
   display: inline-block;
  background: #fff;
  padding-left:2rem;
  padding-right: 2rem;
  padding-bottom: .7rem;
  padding-top: .7rem;
color: #3c3c3b;
border-radius: 1rem;
outline: 0 !important;
font-size: 1.6rem;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 500;
  line-height: 1.8rem;
   margin: 0rem;
border: none;
background: 0 0;
color: black;
text-transform: uppercase;
cursor: pointer;
}
.xxxfilter.on{
  background-color: red;
}
header .filterred {
   display: inline-block;
  background: #fff;
  padding-left:2rem;
  padding-right: 2rem;
  padding-bottom: .7rem;
  padding-top: .7rem;
color: blue;
border-radius: 1rem;
outline: 0 !important;
font-size: 1.6rem;
  font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 500;
  line-height: 1.8rem;
   margin: 0rem;
border: none;
background: 0 0;

text-transform: uppercase;
cursor: pointer;
}

header .filterred:hover {
  box-shadow:0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  background-color: white;
  color: red;
}
.sold-items{
  font-family: 'IBM Plex Sans Condensed', sans-serif;
	font-weight: 500;
	font-size: 1.8rem;
	color: red;
	text-align: center;
  padding-top: 0rem;
  align-items: center;
}
header .filter:hover {
  box-shadow:0 8px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  background-color: white;
  color: red;
}

/* On screens that are 600px wide or less, make the menu links stack on top of each other instead of next to each other */
@media screen and (max-width: 900px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .explain{
    padding: 3rem 2rem 0rem 2rem;
  }
}
/* On screens that are 600px wide or less, make the menu links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  header ul {
     flex-direction: column;
    align-items: center;
    text-align: center;
  }
       #map1 {
        height: 30rem;
        width: 100%;
       }  
       .explain{
    padding: 3rem 2rem 0rem 2rem;
  }
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}
.modal-body ul {
  list-style-type:disc;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.modal-body li {
  
}
li {
    float: left;
}
li.dropdown {
    display: inline-block;
}
.dropdown-content {
    display: none;
    font-size: 5rem;
    font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 2.0rem;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10;
    border-top-left-radius: .50rem;
   border-top-right-radius:.50rem;
   border-bottom-left-radius: .50rem;
   border-bottom-right-radius: .50rem;
}
.dropdown-content a {
    color: black;
   font-size: 1.5rem;
   font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 2.0rem;
  text-transform: none;
    padding: 2px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block;
}
.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em 0rem 0.3rem 0rem;
  border-radius: 50%;
  font-size: 1.4rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7rem;
  text-align: center;
  background: #3adb76;
  color: #0a0a0a; }
  
   /* Style inputs, select elements and textareas */
input[type=text], select, textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  font-size: 1.5rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}
   /* Style inputs, select elements and textareas */
input[type=email], select, textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  font-size: 1.5rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}
/* Style the label to display next to the inputs */
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}
/* Style the submit button */
input[type=submit] {
  background-color: #FF4081;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  font-size: 1.4rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}
/* Style the container */
.#enquirydata {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}
/* Style the frequency */
#frequency{
  font-size: 1.4rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}
/* Floating column for labels: 25% width */
.col-20 {
  float: left;
  width: 20%;
  margin-top: 6px;
  font-size: 1.6rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}
.col-40 {
  float: left;
  width: 40%;
  margin-top: 6px;
  font-size: 1.6rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}
/* Floating column for inputs: 75% width */
.col-80 {
  float: left;
  width: 80%;
  margin-top: 6px;
  font-size: 1.6rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-20, .col-80, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
} 
#ourservicesBtn:hover {
  box-shadow:0 8px 16px 0 rgba(0,0,0,0.3),0 6px 20px 0 rgba(0,0,0,0.19);
  cursor:pointer;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    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.7); /* Black w/ opacity */
}
#soldlistsize{
  width: 25%;
}
#lookingforsize{
  width: 45%;
}
#soldsize{
  width: 25%;
}
#wantedlist{
  width: 40%;
}
#emailsize{
  width: 30%;
}
#productsize{
  width: 40%;
}
#custsize{
  width: 35%;
}
#moreprodsize{
  width: 25%;
}
/* Modal Content */
.modal-content {
    position: relative;
    background-color: hsl(0,5%,97%);
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 61%;
   
    min-width: 32rem;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.2s;
    animation-name: animatetop;
    animation-duration: 0.2s;
    border-radius: 1.1rem; 
}
  .modal-header {
    padding: 5px 0px 14px 0px;
    background-color: hsla(203, 39%, 44%, 1);
    color: white;
    text-align: center;
    height: 5rem;
    font-size: 1.8rem;
    font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.modal-body {
  font-size: 1.6rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  padding-left: 2rem;
 
}
.modal-hdg{
  font-size: 1.6rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  padding: 1rem 0rem 1rem 2rem;
  color:hsla(210, 50%, 53%, 1);
}
.modal-footer {
    padding: 2px 16px;
    color: red;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}
/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}
@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}
/* The Close Button */
.close {
    color: white;
    float: right;
    padding-right: 1rem;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.rect {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0px;
  width: 18rem;
    height: 30px;
    border-radius: 5px;
    background: hsla(208, 79%, 45%, 1);
    color: hsla(208, 79%, 85%, 1);
    cursor:pointer;
    box-shadow:0 8px 16px 0 rgba(0,0,0,0.3),0 6px 20px 0 rgba(0,0,0,0.19);
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
}
#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #FF4081;
    color: #283593;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 50%;
    font-size: 1.8rem;
    font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}
#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s;
    animation: fadein 0.5s, fadeout 0.5s;
}
#snackbar1 {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #FF4081;
    color: #283593;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 50%;
    font-size: 1.8rem;
    font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}

#snackbar1.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s;
    animation: fadein 0.5s, fadeout 0.5s;
}
@-webkit-keyframes fadein {
    from {bottom: 50%; opacity: 0;} 
    to {bottom: 50%; opacity: 1;}
}
@keyframes fadein {
    from {bottom: 50%; opacity: 0;}
    to {bottom: 50%; opacity: 1;}
}
@-webkit-keyframes fadeout {
    from {bottom: 50%; opacity: 1;} 
    to {bottom: 50%; opacity: 0;}
}
@keyframes fadeout {
    from {bottom: 50%; opacity: 1;}
    to {bottom: 50%; opacity: 0;}
}
.accordionWrapper{
  background:#fff;
}
.accordionItem{
    float:left;
    display:block;
    width:100%;
  
}
.accordionItemHeading{
    cursor:pointer;
    margin-bottom: 1.0rem;
    padding: 1.0rem 0rem 1.0rem 2rem;
    background:hsla(208, 79%, 90%, 1);
    color:black;
    width:100%;
    -webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
font-size: 1.6rem;
font-family: 'IBM Plex Sans Condensed', sans-serif;
	font-weight: 500;
}
.close .accordionItemContent{
    height:0px;
    
    -webkit-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
    float:left;
    display:block;
}
.open .accordionItemContent{
        padding: 2rem;
    background-color: #fff;
    border: 1px solid #ddd;
    width: 100%;
    margin: 0px 0px 10px 0px;
    display:block;
    -webkit-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
    -webkit-transform-origin: top;
	-o-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;

	-webkit-transition: -webkit-transform 0.4s ease-out;
	-o-transition: -o-transform 0.4s ease;
	-ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  font-size: 1.6rem;
    font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7rem;

}

.open .accordionItemHeading{
    margin:0px;
        -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: hsla(208, 79%, 80%, 1);
    color: black;
}
.soldhead
{
    margin-bottom: 0.3rem;
color: grey;
background-color: hsla(210, 50%, 100%, 1);
font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  padding: 0.2rem 0.7rem 0.2rem 0.7rem;
  line-height: 1.7rem;
 
  }
  .wanteddata
{  
color: black;
background-color: hsla(210, 50%, 100%, 1);
font-family: 'IBM Plex Sans Condensed', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 0.2rem 0.7rem 0.2rem 0.7rem;
  line-height: 1.7rem;
  }
  hr {
    border-top: 1px solid blue;
    margin-bottom: 6px;
  }
