@import url('https://fonts.googleapis.com/css?family=Raleway');
@import url('https://fonts.googleapis.com/css?family=Poppins');

/* RESET CSS */

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  font-family: 'Roboto',sans-serif;
  margin: 0;
  padding: 0;
  color: black;
  font-weight: normal;
}

footer{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.banner{
  background-color: white;
  width: 100%;
  height: 90px;
}

#bannerimg{
  margin-top: 10px;
  height: 90px;
  width: auto;
}

.general{
  padding-bottom: 1rem;
  color: black;
  font-family: 'Open Sans', sans-serif;
}

#propName{
  padding-bottom: 1rem;
  color: red;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
}

#propDetails{
  height: 50px;
  width: auto;
}

#fromDate{
  float: left;
  margin: 0 1.5%;
  width: 63%;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
}

#rent{
  float: right;
  margin: 0 1.5%;
  width: 30%;
  font-family: 'Open Sans', sans-serif;
  text-align: right;
}

.main_text{
  margin: auto;
  margin-top: 82px;
  text-align: center;
  max-width: 50px;
  min-width: 440px;
}

.main_text p{
  font-size: 20px;
  font-family: 'Times', sans-serif;
}

#applicationTable{
  width: 100%;
}

.labelColumn{
  width: 150px;
}

.inputColumn{
  width: auto;
}

.inputLabel{
  text-align: right;
}

.textInput{
  width: 100%;  
}



@media (max-width: 600px) {
  .main_text{
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
    margin-top: 32px;
    max-width: 500px;
    min-width: 220px;
  }
}

.Title{
  text-decoration: bold;
  font-family: 'Times', sans-serif;  
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 40px;
}


* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  border-style: solid;
  border-color: blue;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
