

  /* Firefox */
*{
    scrollbar-width: auto;
    scrollbar-color: #01a0e2 #302859;
    scroll-behavior: smooth;
}
/* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
}

  *::-webkit-scrollbar-track {
    background: #302859;
}

*::-webkit-scrollbar-thumb {
    background-color: #01a0e2;
    border-radius: 12px;
    border: 0px none #ffffff;
}
*{
  box-sizing: border-box;
  
}
html{
  scroll-behavior: smooth;
}
body{
    margin: 0;
    font-family: 'Sawarabi Gothic', sans-serif; 
    --primary-color:#01a0e2;
    --dark-logo-color:#302859;
    text-align: center;
    align-items: center;
    
}
.arrow{
 height: 50px;
 width: 50px;
 z-index: 15;
 position: fixed;
 bottom: 10px;
 right: 10px;
 transition: 2s;
}
#menu{
  width: 100%;
  height: 100px;
  position: fixed;
  top:0;
  margin: 0;
  padding: 0;
  list-style-type: none;
  overflow: hidden;
  z-index: 16;
  transition:0.5s;

}

#menu-logo{
width: 100px;
height: 60px;
display:none;
z-index: 3;
}
.visible{
  display: block!important;
}
.visible-2{
  display: block!important;
}
.invisible{
  display:none!important;
}
.menu-scrolled{
  height:60px!important;
  background-color: #0577a8be;
  box-shadow: 0 8px 6px -6px #000;
}

.menu-scrolled li{
padding: 16px 20px 0px 20px;
font-size:25px;
}
.menu-scrolled li a:hover{
color:#fff;
}
.menu-scrolled li:last-child{
  float: left;
  width: 200px;
  height: 60px;
  padding: 3px 20px 0px 20px;
  margin-right: 20px;
}

.menu-button{
  background-color: transparent;
  border: none;
  display: none;
  
}
li{
  float: right;
  width:initial;
  height: 80px;
  display: inline;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  padding: 28px 20px 0px 20px;
  transition: 0.5s;
}

li a{
  display: block;
  text-align: center;
  text-decoration: none;
  transform: 1s;
  color:#302859;
}
li a:hover{
  color:#fff;
}
@media (max-width:800px){
  li{
    display: none;
  }
  li:first-child{
    display: block;
  }
  .menu-button{
    display: block;
  }
}

/* NAV BUTTON */
#menu-icon{
  z-index: 201;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width:800px){
  #menu-icon{
    display: none;
  }
}
.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.poq{
  stroke: white!important;;
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
  transition: 1s;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
  transition: 1s;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
  transition: 1s;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
#overlay{
  height: 100%;
  width:0%;
  position: fixed;
  z-index: 15;
  left: 0;
  top:0;
  background-color: rgb(0,0,0, 0.98);
  overflow-x:hidden;
  transition: 0.5s;
  color: white;
  font-size:50px;
}
.ppa{
  width: 100%!important;
}
.overlay-content{
  position: relative;
  top:30%;
  width: 100%;
  text-align: center;
  margin-top:30px;
  display:none;
}

.overlay-content a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block; 
  transition: 0.3s; 
}
.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}
.je3{
  width: 100%;
  height: 10%;
}
.menu-overlayed{
  box-shadow: none;
  background-color: transparent;
}
.menu-overlayed img{
  display: none;
}
.menu-icon-overlayed{
  padding: 28px 20px 0px 20px!important;
}

/*------------ MAIN---------------*/
.main{
    height: 100vh;
    width: 100%;
    display: flex;
    margin: 0;
    z-index: 1;
    text-align: center;  
    align-items: center;
}
@media(max-width:380px){
  .main{
    height: 91.2vh;
  }
}
.main-gradient{
  position: absolute;
  width: 100%;
  height: 100vh;
  background: linear-gradient(162deg, rgba(255,255,255,1) 0%, rgba(53, 121, 135, 0) 49%);
 
  z-index: 2;
}

#movie{
   position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    top:0;
    left:0;
}

@media (max-width:1150px){
    #movie{
        object-position: right;

    }
}
@media (max-width:890px){
    #movie{
       top:0;
       object-position: 80% 50%;
       
    }
}
@media (max-width:450px){
    #movie{
       top:0;
       height:100% ;
       object-position: 80% 50%;
       
    }
}

#main-logo{
    z-index: 2;
    display: block;
    position: absolute;
    height: 134px;
    width: 434px;
    left: 20px;
    top:20px;
   
    
    
}

@media (max-width:1100px){
  #main-logo{
    height: 100px;
    width:325px ;
   
    }
}
@media(max-width:700px){
  #main-logo{
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    height: 100px;
    max-height: 100px;
    max-width: 90%;
    width:325px ;
    top:12%;
   
  }
  .main-gradient{
    background: linear-gradient(0deg, rgba(253,187,45,0) 50%, rgba(255,255,255,1) 99%);
  }
}
@media (min-width:1101px) and (max-width:1407px){
  #main-logo{
    height: 150px;
    width: 440px;
  }
}
/*tekst w centrum ekranu start */
.main-content{
width: auto;
min-height:100px;
position: absolute;
left:0;
right:0;
margin-left:auto;
margin-right: auto;
z-index: 3;
margin-top:150px;

}
@media(max-width:700px){
  .main-content{
    position: absolute;
    left: 0;
    right: 0;
    margin-left:auto;
    margin-right: auto;
    min-height:100px;
    margin-top:250px;
  }
}
.main-content h1{
    color: #F1FAEE; 
    font-size: 64px;
    text-shadow:2px 2px 4px #302859;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.text-element{
  width: 100%;
  height: 20%;
}
@media (max-width:640px) {
  .text-element{
    font-size:40px;
  }
}
@media (min-width:641px) and (max-width:1007px){
  .text-element{
    font-size:50px;
  }
}
.roller{
    height: 66px;
    line-height: 64px;
    position: relative;
    overflow: hidden; 
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow:2px 2px 4px #696481;
    color: #302859;
  }
  .roller #rolltext {
    position: absolute;
    top: 0;
    animation: slide 10s infinite;  
  }
  
  @keyframes slide {
    0%{
      top:0;
    }
    25%{
      top: -64px;    
    }
    50%{
      top: -128px;
    }
    72.5%{
      top: -196px;
    }
  }
    @keyframes slide-mob {
    0%{
      top:0;
    }
    25%{
      top: -34px;    
    }
    50%{
      top: -68px;
    }
    72.5%{
      top: -102px;
    }
  }

  .oferta-button{
    font-size: 25px;
    font-family: 'Sawarabi Gothic', sans-serif;
    border-radius: 40px;
    height: 50px;
    width: 150px;
    background-color: #01a0e2;
    border: none;
    color:white;
    text-shadow: 1px 1px 1px #000;
    transition: 0.6s;
    cursor: pointer;
    margin-top:15px;
   }
   .oferta-button:hover{
     scale:1.2;
   }
@media(max-width:700px){
  .oferta-button{
    height: 50px;
    width: 140px;
    font-size: 25px;
  }
  
}
/* oferta */
.offer{
  display: grid;
  position: relative;
  height: 250px;
  width: 100%;
  z-index: 1;
  text-align: center;
  align-items: center;
  background-image: linear-gradient(180deg,#019ee2ab 0%,rgba(255, 255, 255, 0.48) 100%);
  z-index: 2;
}
@media(max-width:700px){
  .offer{
    height: 170px;
  }
}
.poiu{
  text-decoration: none;
  color:black
}
@media (max-width: 480px){
  .offer-image, footer , .product-header{
    background-attachment: scroll!important
  }
}
.offer-image{
  position:absolute;
  top:0;
  left:0;
  background-image: url(./img/plisy/pleated-g70e19359c_1920.webp);
  background-size: 100%;
  height: 100%;
  width: 100%;
  opacity: 0.3;
  z-index: 1;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.offer h1{
  margin: auto;
  font-size: 3rem;
  color: #fff;
  color: #F1FAEE; 
  font-size: 4rem;
  text-shadow:2px 2px 4px #302859;

}
.offer-product{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  height: fit-content;
  background-image: url(./img/17545.webp);
  position: relative;
}
.product-block{
  width: 50%;
  max-height: 500px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom:100px;
  font-weight: 800;
  font-size: 15px;
  z-index: 2;
}
.offer-product-filter{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.7;
  z-index:1
}
@media (max-width:450px){
  .product-block{
    min-height:297px ;
  }
}
@media(max-width:1300px){
  .product-block{
    max-height:400px ;
  }
}
.product-image{
  width: 100%;
  height: 100%;
  transition: 0.5s;
  image-resolution: 300dpi;
  cursor: pointer;
   z-index:2;
}
.product-image:hover{
  scale: 0.98;
}
.product-description{
  width: 100%;
  height: 10%;
  display: grid;
  align-items: center;
}
.product-description h1 {
  margin: auto;
}
@media (max-width:640px){
  .product-block{
    width: 100%;
  }
  
}
@media (max-width:1007px){
  .product-block:last-of-type{
    max-height: 300px;
  }
}
/*--footer--*/
footer{
  width: 100%;
  height: 600px;
  background-image: url(./img/plisy/pleated-g70e19359c_1920.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.footer-filter{
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000;
  opacity: 0.8;
  z-index: 1;
}
.left-content{
  display: flex;
  flex-wrap: wrap;
  width: 30%;
  height: 80%;
  z-index: 2;
  text-align: left;
  color: #fff;
  font-size: 17px;
}
.form{
  width: 30%;
  height: 80%;
  z-index: 2;
  text-align: left;
}
@media (max-width:700px){
  .left-content, .form{
    width: 100%;
  }
  footer{
    flex-direction: none;
    flex-wrap: wrap;
    height: inherit;
    justify-content: center;
  }
  footer textarea{
    width: 90%!important;
  }
  .form{
    text-align: center;
  }
  .left-content{
    text-align: center;
    margin-top:40px;
  }
  .left-content h1,p{
    margin: auto;
  }
  .left-content h1{
    margin-bottom:10px;
  }
  form > button[type="submit"]{
    margin-bottom: 10px;
  }
}
footer h1{  
  border-bottom: 1px solid white;
}
footer a{
  text-decoration: none;
  color:#fff;
}
footer textarea{
  width: 100%;
  height: 40px;
  border-radius: 1rem;
  padding: 12px 15px 7px;
  box-sizing: border-box;
  margin-bottom: 7px;
  word-wrap: break-word;
  white-space: normal;
  font-family: 'Sawarabi Gothic', sans-serif; 
  resize: none;
  outline: none;
 
}
footer textarea ::placeholder{
  opacity: 0.7;

}
footer textarea:nth-of-type(4){
  height: 150px;
  overflow: auto;
  
}
footer textarea:nth-of-type(1){
  margin-top:30px;
}
footer textarea:focus{
  background-color: rgb(199, 196, 196);
 
}
#form-checkbox-text{
  font-size: 14px;
  color: #fff;
}
footer button{
  width: 100px;
  height: 40px;
  border-radius: 3rem;
  background-color: var(--primary-color);
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}
#end{
  width: 100%;
  height: 30px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
}
#end p{
color:#fff;
margin: auto;
width: 100%;
}
#end a{
  text-decoration: none;
  color: #fff;
}
#suu3{
  color:rgb(82, 81, 81);
}


/* -- product html --  */
.product-header{
  width: 100%;
  height: 450px;
  position:static;
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  text-align: center;
  display: grid;
  align-items: center;
  backdrop-filter: blur(100px);
}
.product-header h1{
  background-color: rgb(0,0,0, 0.4);
  width:fit-content;
  padding: 5px 10px 5px 15px;
  margin: auto;
  color: #fff;
  letter-spacing:5px;
}
#plisy{
  background-image: url(./img/plisy/pleated-g70e19359c_1920.webp);
  position: relative;
  z-index: 4;
}
.kjs12{
  font-family: 'Raleway', sans-serif;
  letter-spacing: 3px;
  color: rgb(75, 74, 74);
}
@media screen and (max-width: 450px){
  .kjs12{
    font-size: 20px;
    letter-spacing: 1px;
  }
}
.product-text{
  width: 40%;
  margin: auto;
  height: fit-content;
  text-align: justify;
  margin-bottom:50px;
  color: rgb(50,50,50);
}
@media screen and (max-width:1200px){
  .product-text{
    width: 75%;
  }
}@media screen and (max-width:400px){
  .product-text{
    width: 90%;
  }
}
.row {
  margin: auto;
  width: 70%;
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
  margin-bottom:15px;
  z-index:4;
  position: relative;
}
.column {
  flex: 33%;
  max-width: 33%;
  padding: 0px 4px;

}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  transition: 0.5s;
  cursor: pointer;
}
.column img:hover{
  scale:0.95;
}



@media screen and (max-width: 1100px) {
  .column{
    flex:50%;
    max-width: 100%;
    height: auto;
  }

  
}
@media screen and (max-width: 700px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
  .row{
    width: 100%;
  }
  
  
}
@media screen and (max-width: 767px){
  .asd{
    font-size: 30px!important;
  }
}
.cfsds{
  width: 100%;
  height: 300px;

  text-align: center;
  display: grid;
  align-items: center;
}
.asd{
  text-transform: uppercase;
  font-weight:600;
  font-size: 40px;
  padding: 50px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 3px;
  color: rgb(0,0,0, 0.7);
  position: relative;
  z-index: 5;
}
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.97);
}
.modalImage {
  margin: auto;
  display: block;
  height: auto;
  width: auto;
  max-height: 90%;
  max-width: 90%;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.close:hover,
.close:focus {
  color: rgb(255, 0, 0);
  cursor: pointer;
}
.kff32{
  display: flex;
  align-items: center;
  text-align: left;
  height: 46px;
}
@media screen and (max-width:585px) {
  
  .kff32{
    flex-wrap: wrap;
    height: 100px;
    text-align: center;
  }
  .kff32 a{
    margin: auto;
    margin-top:10px;
  }
  .kff32:first-child{
    margin-bottom:200px;
  }
}
#ljfh{
  background-color:#01a0e2;
  width:100px;
  height: 30px;
  cursor: pointer;
  margin-left: 20px;
}

.variants{
  height: fit-content;
  width: 70%;
  margin: auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  z-index:100;
}
@media screen and (max-width:700px){
 .variants{
  width: 98%;
 }
}
.variants-part{
  width: 30%;
  height: 300px;
  display: flex;
  flex-wrap: wrap;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  margin: auto;
  z-index: 5;
}
.variants-part:nth-child(1), .variants-part:nth-child(2), .variants-part:nth-child(3){
  height: 400px;
}
.variants-part:nth-child(4), .variants-part:nth-child(5), .variants-part:nth-child(6){
  margin-bottom:20px;
  margin-top:20px;
}

.fgdf{
width: 100%;;
height: 80%;
display: flex;
align-items: center;
}
.fgdf img{
  width: auto;
  max-width: 90%;
  height: 90%;
  max-height: 380px;
  margin: auto;
  }
.hj14j{
  width: 100%;
  height: 20%;
  display:flex;
  flex-wrap: wrap;
  align-content: center;
  color:rgb(75, 74, 74);
}
@media screen and (max-width:1251px){
  .variants-part{
    width: 45%;
  }
  .variants-part:nth-child(4){
    height: 400px;
  }
}
@media screen and (max-width:835px){
  .variants-part{
    width: 100%;
  }
  .variants-part:nth-child(4){
    height: 400px;
  }
  .variants-part:nth-child(2), .variants-part:nth-child(3){
    margin-top:20px;
  }
}

.hj14j h2,span{
  margin: auto;
}
.variants-bg{
  width: 100%;
  background-image: url(./img/17545.webp);
  background-attachment: fixed;
  position: relative;
  padding-bottom: 70px;
}
.sdfs{
position: absolute;
width: 100%;
height: 100%;
background-color: #fff;
opacity: 0.5;
display: flex;
z-index: 3;
}
.realizations-bg{
  width: 100%;
  height: auto;
  background-image: url(./img/17545.webp);
  background-attachment: fixed;
  position: relative;
  display: block;
}
.realizations-bg-filter{
position: absolute;
width: 100%;
height: 100%;
background-color: #fff;
opacity: 0.75;
z-index: 1;

}
.sdfl{
  padding-top:10px;
  width: 69%;
  height: 100px;
  margin: auto;
  text-align: center;
  color:#000;
  z-index: 5;
  position: relative;
  font-family: 'Raleway', sans-serif;
  color:rgb(75, 74, 74);
}
/* rol wew */
#rol-wew{
background-image: url(./img/roletyWewnetrzne/rw/fghd.jpg);
background-position: bottom;
}
/* zal dre*/
#zalDre{
  background-image: url(./img/zalDre/BV.jpg);
}
/* zal alu */
#zalAlu{
  background-image: url(./img/zalAlu/sdf.jpg);
}
@media(min-width:836px) and (max-width:1245px){
  #lkj{
  margin-top:30px;
}
}
/* wert*/
#wert{
  background-image: url(./img/wertikale/zaluzjePionowe_4.webp);
  background-position: bottom;
}
/* moskitiery*/
#lp, #pl{
  height: 400px!important;
  margin-top: 40px;
}
#vid1{
  width: 100%;
  height: auto;
}
#mosk{
  background-image: url(./img/moskitiery/xd.webp);
}
/* rol zew*/
#rol-zew{
  background-image: url(./img/roletyZewnetrzne/roletyZewnetrzne.webp);
  background-position: bottom;
}
/*WYCENIACZ PLIS*/
.openWycena{
  border: 1px solid black;
  outline: none;
  background-color: #01a0e2;
  height: 30px;
  width: 110px;
  color:black;        
  font-size: 15px;    
  cursor: pointer;
  transition: 0.8s;
  position: relative;
  z-index: 5;
  margin-left:10px;
  
}
.openWycena:hover{
  background-color: #48c6fc;
}
.invisible{
display: none!important;
}
input[type="button"]{
cursor: pointer;
}
#PlisaStandardWycena{
width: 100%;
height:100%;
min-height: 750px;
max-height: 800px;
border-radius: 30px;
display: flex;
flex-wrap: wrap;
margin: auto;
-webkit-box-shadow: inset 0px 0px 10px 1px rgba(66, 68, 90, 1);
-moz-box-shadow: inset 0px 0px 10px 1px rgba(66, 68, 90, 1);
box-shadow: inset 0px 0px 10px 1px rgba(66, 68, 90, 1);
}
.sufit{
background-color: #019ee2ab;
width: 100%;
height:50px;
border-radius: 30px 30px 0 0;
padding: 0 20px 0 20px;

}

.szerdiv{
width: 100%;
height: 100%;
overflow: auto;
display: flex;
}

.closeWycena{
position: absolute;
height: 30px;
width: 30px;
top:10px;
left:10px;
}
.exitWycena{
fill:black;
cursor: pointer;
}
.exitWycena:hover{
fill:red
}





/* materiały do plis */
.materials{
width: 80%;
height: 80vh;
position: fixed;
display: flex;
flex-direction: column;
z-index: 9099;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
background-color: #fff;
border-radius: 30px;
-webkit-box-shadow: 0px 0px 16px 3px rgba(66, 68, 90, 1);
-moz-box-shadow: 0px 0px 16px 3px rgba(66, 68, 90, 1);
box-shadow: 0px 0px 16px 3px rgba(66, 68, 90, 1);

}
.panel{
width: 100%;
height:50px;
border-radius: 30px 30px 0 0;
justify-content:center;
align-items: center;
display: flex;
flex-wrap: wrap;
flex-direction: row;
padding: 0 20px 0 20px;
position: relative;
}
.panel > a > button{
  background-color: #01a0e2;
  border: none;
  padding: 5px 10px 5px 10px;
  margin-left: 2px;
  margin-right: 2px;
  border-radius: 3px;
  transition: 0.3s;
  cursor: pointer;
}
.panel > a > button:hover{
  background-color: #28baf8;
}
.panel > a:first-of-type{
  margin-left:10px;
}
.toogleMaterials{
  position: absolute;
  left:10px;
  top:10px;
}

.gallery-container{
  width: 100%;
  height: calc(100% - 50px);
  border-radius: 0 0 30px 30px;
  scroll-snap-type: mandatory;
  overflow:auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-top:10px;
  padding-bottom:10px;

}
.gallery-item{
  flex-basis: 350px;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 5px;
}
.gallery-item:hover{
  -webkit-box-shadow: 0px 0px 16px 3px rgba(66, 68, 90, 1);
-moz-box-shadow: 0px 0px 16px 3px rgba(66, 68, 90, 1);
box-shadow: 0px 0px 16px 3px rgba(66, 68, 90, 1);

}
.gallery-item img{
  object-fit: cover;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 5px;
}

/* profile do plis*/
.profiles{
  width: 80%;
  height: 80vh;
  position: fixed;
  display: flex;
  flex-direction: column;
  z-index: 9099;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0px 0px 16px 3px rgba(66, 68, 90, 1);
  -moz-box-shadow: 0px 0px 16px 3px rgba(66, 68, 90, 1);
  box-shadow: 0px 0px 16px 3px rgba(66, 68, 90, 1);
}
.exitProfiles{
  fill:black;
  cursor: pointer;
}
.exitProfiles:hover{
  fill:red
}
#pols{
  display: block;
}
#pols2{
  display: none;
}
@media(max-width:1238px){
   .groupMaterialsBtn{
    display: none;
   }
   #pols{
    display: none;
   }
   #pols2{
    display: block;
   }
   .materials{
    width: 100%;
    height: 100vh;
    z-index: 9099;
    border-radius: 0;
  }
  .profiles{
    width: 100%;
    height: 100vh;
    z-index: 9099;
    border-radius: 0;
  }
}
.half-wycena:first-of-type{
  width: 30%;
  height: 100%;
  background-color: #fff;
  border-radius: 0 0 0 30px;
  align-items: center;
  padding-left: 0;
}
.half-wycena{
  width:60%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  background-color: #019ee279;
  margin: auto;
  padding-left: 50px;
  border-radius: 20px;
}
.half-wycena input,select{
  height: 40px;
  width: 100%;
  text-align: center;
  margin-top:5px;
  margin-bottom: 20px;
  border-radius: 10px;
  font-size: 20px;
  background-color:#019ee279 ;

}
.half-wycena input[type="text"]{
  margin-bottom: 0;
}
.half-wycena input[type="button"]{
  height: 80px;
  transition: 0.3s;
  font-size: xx-large;
}
.half-wycena input[type="button"]:hover{
  background-color: #01a0e2;
}

.zlaWysokosc, .zlaSzerokosc{
 width: 90%;
 height: 30px;
 margin-bottom: 20px;
 display: flex;
 justify-content: center;
 align-items: center;
 color: red;
 
}
#wybor{
  background-color: #01a0e2;
  font-size: 50px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  border-radius: 20px;
}
.half-wycena span{
  color:white;
}
#wynik,#wynik2{
  font-size: 40px;
}
#wycenaBox{
  width: 850px;
  height: 800px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media(max-width:850px){
  #wycenaBox{
    width: 100%;
    height: 100%;
  }
  .half-wycena{
    width: 100%!important;
    padding: 0;
  }
  .half-wycena h2,h1{
    margin: auto;
    font-size: 20px;
  }
   
}
