* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  place-items: center;
  display: grid;
}

.container {
  width: 35%;
  height: auto;
  padding: 10px;
  box-shadow: 0 0 10px rgb(0, 0, 0, 0.1);
  border-radius: 4px;
}
.container h1 {
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  text-transform: capitalize;
  margin: 5px 0;
}
.view_img {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 5px;
}
.view_img img {
  width: 400px;
  height: 360px;
  object-fit: contain;
}
.choose_img {
  width: 100%;
  display: grid;
  place-items: center;
}
.disabled .view_img{
    pointer-events: none;
    opacity: .5;
}
.choose_img button {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 13px 25px;
  border: none;
  outline: none;
  background-color: rgb(250, 174, 112);
  border-radius: 4px;
  cursor: pointer;
}
.choose_img button img {
  width: 35px;
}
.slider {
  width: 100%;
  position: relative;
  padding: 10px;
}
.disabled .slider{
    pointer-events: none;
    opacity: .5;
}
.slider input[type = "range"]{
    width: 100%;
}
.slider .filter_info{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    text-transform: capitalize;
    font-family: Arial, Helvetica, sans-serif;
}
.icons_filter{
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid rgb(0, 0, 0, 0.1);
    margin-bottom: 5px;
}
.disabled .icons_filter{
    pointer-events: none;
    opacity: .5;
}
.icons_filter p{
    text-transform: capitalize;
    margin-bottom: 8px;
    font-size: .9rem;
    font-family: Arial, Helvetica, sans-serif;
}
.icons_filter .icons_room{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.icons_filter .icons_room button{
    border: none;
    outline: none;
    background-color: transparent;
}
.icons_room button img{
    width: 20px;
}
.active{
    background-color: rgb(174, 255, 255)!important;
    padding: 5px;
    border-radius: 50%;
}
.icons_room1{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.icons_filter .icons_room1 button{
    border: none;
    outline: none;
    background-color: transparent;
}
.icons_room1 button img{
    width: 20px;
}

.icons_room1 button:last-child{
    transform: rotate(90deg);
}
.btn_contain{
    position: relative;
    margin: 5px 0;
}
.disabled .btn_contain{
    pointer-events: none;
    opacity: .5;
}
.btn_contain button{
    padding: 13px 20px;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    text-transform: capitalize;
    border-radius: 4px;
    cursor: pointer;
}
.btn_contain button:first-child{
    border: 1px solid rgb(0, 0, 0, 0.1);
    transition-duration: 400ms;
}
.btn_contain button:first-child:hover{
    border: none;
    background-color: rgb(19, 19, 156);
    color: #fff;
}
.btn_contain button:last-child{
    background-color: rgb(40, 177, 40);
    color: #fff;
}

@media (max-width:768px) {
    .container{
        width: 100%;
    }
}
