* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #002b4f;
  overflow-x: hidden;
}
main {
  width: 80vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  animation: fadeIn 500ms ease-out;
}
li:nth-child(1) {
  background-color: #f37325;
  color: whitesmoke;
}
h1 {
  color: #f37325;
  font-size: calc(1vw + 2rem);
  margin-bottom: 20px;
}
h4 {
  color: whitesmoke;
  font-size: calc(0.6vw + 0.9rem);
  margin-bottom: 20px;
}
h5 {
  font-size: calc(0.6vw + 0.6rem);
  color: whitesmoke;
  font-weight: normal;
  margin-bottom: 20px;
}
input {
  border-radius: 3px;
  border: 1px solid #b0c8eb;
  height: 20px;
  width: 20px;
  margin-right: 10px;
}
label {
  font-size: calc(0.4vw + 0.9rem);
}
select {
  height: 40px;
  width: 90px;
  font-size: 1.5rem;
  padding-left: 10px;
  padding-top: 3px;
  color: whitesmoke;
  background-color: rgb(63, 63, 63);
  border: none;
  border-radius: 8px;
}

.custom-select {
  border-radius: 8px;
  position: relative;
  height: 40px;
  width: 90px;
  z-index: 2;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.555);
}

.custom-arrow {
  display: block;
  background: rgb(44, 44, 44);
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
  height: 1rem;
  width: 1rem;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2.5rem;
  pointer-events: none;
}

.custom-arrow::before,
.custom-arrow::after {
  --size: calc(0.1vw + 0.3rem);
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.custom-arrow::after {
  border-left: var(--size) solid transparent;
  border-top: var(--size) solid gray;
  border-right: var(--size) solid transparent;
  top: 65%;
}
.custom-arrow::before {
  border-left: var(--size) solid transparent;
  border-bottom: var(--size) solid gray;
  border-right: var(--size) solid transparent;
  top: 40%;
}
div {
  text-align: left;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: whitesmoke;
  font-size: calc(0.4vw + 0.8rem);
  font-weight: 500;
}
.izberi-stevilo {
  font-size: calc(0.4vw + 0.9rem);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}
.button {
  background-color: #405a80;
  color: whitesmoke;
  font-size: calc(0.5vw + 1rem);
  height: 50px;
  width: calc(150px + 3vw);
  margin-top: 20px;
  /*margin-left: auto !important;
	margin-right: auto !important;*/
  border: none;
  border-radius: 10px;
  padding-left: 0;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.7);
  z-index: 2;
  text-align: center;
  transition: background-color 500ms, transform 500ms, box-shadow 500ms;
}
a{
text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  margin-right: 10px;
}
.button:hover {
  background-color: #f37325;
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  box-shadow: 0 0 2em rgba(0, 0, 0, 0.61);
}
.kolicina {
  align-items: center;
  text-align: center;
}
.opomba {
  margin-top: 20px;
  font-weight: 200 !important;
  font-size: calc(0.3vw + 0.7rem);
  font-style: italic;
  letter-spacing: 1px;
}
.paketi {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
}
.paket {
  margin-left: 30px;
}

@media screen and (max-width: 1000px) {
  main {
    width: 100vw;
    padding: 0 15px;
    margin-bottom: 40px;
  }
  input {
    height: 15px;
    width: 15px;
  }
  .paket {
    margin-left: 25px;
  }
}

/*@media screen and (max-width: 700px) {
  #velikipaket {
    height: 25px;
    width: 25px;
  }
}

@media screen and (max-width: 510px) {
  #velikipaket {
    height: 30px;
    width: 30px;
  }
}

@media screen and (max-width: 450px) {
  #velikipaket {
    height: 35px;
    width: 35px;
  }
}

@media screen and (max-width: 390px) {
  #velikipaket {
    height: 43px;
    width: 43px;
  }
}*/

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: rotateX(-15deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0);
  }
}
