<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&amp;display=swap');
body{
  height:100vh;
	background: rgb(16,38,113);
background: -moz-linear-gradient(90deg, rgba(16,38,113,1) 0%, rgba(103,46,177,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(16,38,113,1) 0%, rgba(103,46,177,1) 100%);
background: linear-gradient(90deg, rgba(16,38,113,1) 0%, rgba(103,46,177,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#102671",endColorstr="#672eb1",GradientType=1);
	/*
background: rgb(148,154,166);
background: -moz-linear-gradient(90deg, rgba(148,154,166,1) 0%, rgba(222,228,240,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(148,154,166,1) 0%, rgba(222,228,240,1) 100%);
background: linear-gradient(90deg, rgba(148,154,166,1) 0%, rgba(222,228,240,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#949aa6",endColorstr="#dee4f0",GradientType=1);*/
	font-family: 'Poppins', sans-serif;


}
.mainTabs{
  width:80%;  margin:5% auto;
	max-width: 1000px;
  padding:10px;
  border-radius:10px;
  box-shadow: 2px 4px 8px 10px #00000020;
}

@media (max-width: 830px) {
  .mainTabs {
    width: 95%; /* Adjust the width on smaller screens */
    margin-left: 1%; /* Adjust the margins on smaller screens */
    margin-right: 1%;
  }
}

@media (max-width: 480px) {
  .mainTabs {
    width: 95%; /* Further adjust for very small screens */
    margin-left: 1%; /* Further adjust the margins for very small screens */
    margin-right: 1%;
  }
}



@media (max-width: 600px) {
    .responsive-table table {
        font-size: 11px; /* ZmenĹˇĂ­ veÄľkosĹĄ textu, ak je to potrebnĂ© */
    }
}

.responsive-table {
    width: 100%;
    overflow-x: auto;
    display: block;
    -webkit-overflow-scrolling: touch; /* Pre plynulĂ© posĂşvanie na iOS */
}


.tab {
  overflow: hidden;
  background-color: #00000020;
  border-radius:10px;
   display:flex;
  justify-content:center;
}

/* Style the buttons inside the tab */
.tab button {
  width:200px;
  background-color: #dddddd00;
     border-radius: 10px;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  color:#fff;
  padding: 10px 22px;
  transition: 0.3s;
  font-size: 17px;
    margin:5px 5px 5px 5px;

}

/* Change background color of buttons on hover */
.tab button:hover {
  color:#fff;
  border-radius: 10px;
  margin-left:5px;
  margin-right:5px;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #4158D0;    
  color:#ffffff;
  border-radius: 10px;
  font-weight:700;
}

/* Style the tab content */
.tabcontent {
  display: none;
	width:99%;
  color:#273342;
  padding: 6px 12px;
  border: 1px solid #dddddd40;
  margin-top:10px;
  background:#fff;
  border-radius:10px;
}
.footer{
  display:flex;
  width:100%;
  justify-content:center;
}
.footer span{
  margin:10px;
  border:2px solid #00000050;
  padding:6px;
  border-radius:5px;
}
@media (max-width: 600px) {
  .tab {
    flex-wrap: wrap;
  }

  .tablinks {
    flex: 100%;
  }
}





.container {
    display: flex;
	flex-direction: column;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
	width: 100%;

}

.item {
  flex: 1;
  padding: 10px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .item {
    padding: 5px;
  }
}

img {
  max-width: 100%;
  height: auto;
}


.text-section {
    padding: 40px;
    background-color: #f4f3ef;
    flex: 1;
}

.text-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.text-section p {
    font-size: 16px;
    
}

.slider-section {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.slider-container {
    /* background-color: #f9f9f9; */
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
	 width: 100%;
	height:  80%;
}

.slider-labels {
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
}

.slider-labels span {
    font-weight: bold;
    color: #333;
	padding-top: 20px;
}

.slider {
    width: 100%;
    margin: 50px 0 40px 0;
    appearance: none;
    height: 10px;
    background: #672eb1;
    outline: none;
    border-radius: 5px;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 30px;
    height: 30px;
    background: #102671;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.slider-values p {
    font-size: 16px;
    color: #888;
    margin-bottom: 10px;
}

.slider-values h2 {
    font-size: 36px;
    margin: 0;
    color: #000;
}

.slider-values p:last-child {
    margin-top: 20px;
    font-size: 16px;
    color: #888;
}
</pre></body></html>