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

body {
  font-family: "Poppins", sans-serif;
  
}

body h1{
  color: #282f59;
}


body p {
  color: #7c7c7c;
}


body a {
  text-decoration: none;
  color: whitesmoke;
}

.logo {
  height: 40px;
}

.row {
  display: flex;
  align-items: center;
  padding-top: 5rem;
}

.navbar {
  background-color: #4642ff;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  padding: 20px 50px ;
  align-items: center;

}

.navbar ul {
  flex: 1;
  text-align: right;
}

.navbar ul li {
  list-style: none;
  display: inline-block;
  margin: 0 25px;

}



.icon {
  margin: 0;
  padding: 0;
  color: white;
  font-size: 18px;

}

.ctn {
  padding: 10px 20px;
  background: linear-gradient(-225deg, 
  #A445B2 0%, #D41872 52%, #FF0066 100%);
  border-radius: 50px;
}

.ctn:hover {
  background: linear-gradient(-225deg, 
  #FF0066 0% , #D41872 52%, #A445B2 100%)

}


.container_header {
  display: flex;
  justify-content: space-around;

}


.nadpis{
padding-top: 100px;
font-family: "Poppins", sans-serif;
font-size: 6vmin;
margin-bottom: 30px;
color: #D41872;
}


.podnadpis{
  font-family: "Poppins", sans-serif;
  font-size: 5vmin;
  color: #282f59;
  margin-bottom: 10px;
  }
  
  /* .nadpis_sekce{
    font-family: "Poppins", sans-serif;
    font-size: 4vmin;    
    margin-top: 20px;
    color: #282f59;
    }
     */


.evidence li {
 text-decoration: none;
 list-style:none;
 font-size: 18px;
 line-height: 2;
 padding: 5px;
 padding-left: 30px;
 color: #282f59;
}



.text {
  background-color:  #4642ff;
  border-radius: 25px;
  padding: 20px;
  color:white;
}



.container {
  padding-left: 30px;
  padding: 5px;
}


h2 {
color: #282f59;
font-size: 5vmin;
margin-bottom: 10px;
}

.select-box {
  display: flex;
  width: 560px;
  flex-direction: column;
}

.select-box .options-container {
  background: #4642ff;
  color:whitesmoke;
  max-height: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.4s;
  border-radius: 10px;
  overflow: hidden;

  order: 1;
}

.selected {
  background: #282f59;
  border-radius: 8px;
  margin-bottom: 10px;
  color: whitesmoke;
  position: relative;

  order: 0;
}

.selected::after {
  content: "";
  background: url("images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  height: 50%;
  width: 24px;
  right: 20px;
  top: 10px;


  transition: all 0.4s;
}

.select-box .options-container.active {
  max-height: 240px;
  opacity: 1;
  overflow-y: scroll;
}

.select-box .options-container.active + .selected::after {
  transform: rotateX(180deg);
  top:7px;
}

.select-box .options-container::-webkit-scrollbar {
  width: 8px;
  background: #282f59;
  border-radius: 0 8px 8px 0;
}

.select-box .options-container::-webkit-scrollbar-thumb {
  background: #282f59;
  border-radius: 0 8px 8px 0;
}

.select-box .option,
.selected {
  padding: 12px 24px;
  cursor: pointer;
  
}

.select-box .option:hover {
  background: #282f59;
}

.select-box label {
  cursor: pointer;
}

.select-box .option .radio {
  display: none;
}

.reference_street {
  color:#282f59;
  text-decoration: none;
  list-style:none;
  font-size: 18px;
  line-height: 2;
  padding: 5px;
}


.bullet_list {
  background: url(./images/place.svg) no-repeat 0 0.3em;
  padding-left: 1.5em;
  color: #DA4453;
  }


.nahoru {
  float: right;
  background-color: #282f59;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 10px;

}


.footer {
  flex: 0 1 auto;
  background-color: #add8e6;
  color:#282f59;
  padding: 20px;
  margin-top: 50px;
  text-align: center;
  font-size: 14px;
  
}

.footer__text {
  font-weight: 600;
  font-size: 16px;
}


  
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {

  .container {
    width: 20vh;
  }

  h2 {
    margin-top: 50px;
  }
}