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

.box {
  display: inline-block;
  width: 80px;
  height: 80px;
  border: 1px solid black;
  text-align: center;
}

.product_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  grid-gap: 10px;
  /*background-color: lightgray;*/
   /* border: 2px solid lightgray;*/
}

.packages_values_css {
  /*background-color: lightblue;*/
  width: 100%;
}

.calculation_area {
  /*background-color: lightgreen;*/
  text-align: center;
}

.terms_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}

.page_header_items {
  text-align: center;
}

.page_header_items h2 {
  margin-top: 0;
  margin-bottom: 10;
}
.button-country {
  display: inline-block;
  margin: 10px;
  background-color: #f2f2f2;
  border: none;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
}

.button-country img {
  height: 50px;
}

.calculation_area input[type="text"] {
  width: 100px;
  height: 30px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 29px;
  text-align: center;
  line-height: 30px;
}

.calculation_area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flex-container {
  display: flex;
  align-items: center;
  gap: 25px;
}

.calc_button_css {
  margin: 10px 10px 10px 10px;
  color: white;
  width: 100px;
  height: 38px;
}

.calc_button_css button {
  width: 100px;
  height: 38px;
  border-radius: 5px;
  border-color: lightgray;
}

.slidecontainer {
width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 80%;
  height: 25px;
  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: 25px;
  height: 40px;
  background: #4B9CD3;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #4B9CD3;
  cursor: pointer;
}

.product_container {
  font-size: 30px;
}

h2.products_headline {
  font-size: 35px;
}

.flex_container_products {
  margin-left: 10px;
  margin-right: 10px;
}


.flex_container_segment_terms {
  display: flex;
  margin-top: 20px;
  margin-left: 10px;
  margin-bottom: 20px;
}

.segment-area,
.terms-area {
  flex-basis: 50%;
}

.segment-area h2,
.terms-area h2 {
  font-size: 34px;
}

.segment-area #segment_text,
.terms-area .notice_period_name,
.terms-area .termination_terms_name,
.terms-area .notice_period_value,
.terms-area .termination_terms_value {
  font-size: 24px;
}

.dk_hidden {
  display: none;
}