
  ul {
    list-style-type: none;
  }
  label
  {
    cursor: pointer !important;
  }
  li {
    display: inline-block;
  }
  .diff input[type="radio"]
  {
      display: block;
  }
  .diff label {
    padding: 10px;
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
  }
  
  .diff label:before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    position: absolute;
    top: 15px;
    left: 15px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
  }
  
  @media only screen and (max-width: 575px)
  {
    label:before
    {
        position: absolute;
        top: 15px;
        left: 19px;    
    }
  }
  @media only screen and (min-width: 570px)
  {
    label:before
    {
        position: absolute;
        top: 15px;
        left: 26px;    
    }
  }
    @media only screen and (min-width: 576px)
  {
    label:before
    {
        position: absolute;
        top: 15px;
        left: 20px;    
    }
  }

  @media only screen and (min-width: 768px)
  {
    label:before
    {
        position: absolute;
        top: 15px;
        left: 16px;    
    }
  }
  @media only screen and (max-width: 992px)
  {
   ul li
   {
     margin-left:20px;
   }
  }
  @media only screen and (min-width: 992px)
  {
    label:before
    {
        position: absolute;
        top: 15px;
        left: 17px;    
    }
  }

  @media only screen and (min-width: 1200px)
  {
    label:before
    {
        position: absolute;
        top: 15px;
        left: 50px;    
    }
  }
  
  label img {
    height: 240px !important;
    width: 400px !important;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
    border-radius: 2px;
    box-shadow: 0px 1px 14px grey;
  }
  
  :checked + label {
    border-color: red;
  }
  
  :checked + label:before {
    content: "✓";
    background-color: red;
    transform: scale(1);
  }
  
  :checked + label img {
    
    border: 2px solid red;
    box-shadow: 0px 2px 14px grey;
    z-index: -1;
  }
label .caption
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.shadow
{
  text-shadow: 1px 1px 2px black, 0 0 25px black, 0 0 5px black;
}



.homepage
{
    background-image: url('/../../images/kps/room-3.jpg');
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100vh;
}
@media only screen and (max-width:768px)
{
    .homepage
    {
        height: 160vh !important;
    }
}
.homepage h1
{
    font-size: 50px;
}

.form
{
    background: white;
    padding: 10px;
    border-radius: 10px;
}


.diff {
    position: relative;
    margin-top: 10px;
}

.diff input[type=radio] {
    position: absolute;
    right: 5px;
    top: 5px;
}

.diff input[type=radio] + img {
    cursor: pointer;
    transition: .5s;
}
[type=radio]
{
    background: red !important;
}
[type=radio]:checked + img {
    outline: 5px solid red;
}

.diff img {
    box-shadow: 0px 2px 15px grey;
    
}

 img p .top-heading {
    margin: 10px 0px;
    text-align: center;
}

label.r {
    text-align: left;
    padding: 8px;
    border-radius: 4px;
    width: 300px;
    margin:5px;
    box-shadow: 0px 2px 15px grey;
}
 input[type='radio']:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -3px;
    left: -1px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

 input[type='radio']:checked:after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -3px;
    left: -1px;
    position: relative;
    background-color: red;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}
.slidecontainer {
    width: 100%;
  }
  
  .slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }
  
  .slider:hover {
    opacity: 1;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: red;
    cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: red;
    cursor: pointer;
  }
  .range-area-right
  {
      float: right;
  }
  .range-area-left
  {
      float:left;
  }

