:root{
    --bright: #1483b1;
    --dark: #1f2323;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100vw;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bright);
    background: linear-gradient(to right top, var(--dark), var(--bright));
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}
.cointainer {
    height: 95vh;
		min-height: 668px;
    background: rgba(0, 0, 0, 0.75);
    background: linear-gradient(to right top, rgba(0,0,0, 0.75),rgba(0,0,0,0.25)); 
    padding: 32px 25px;
    border-radius: 15px;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: auto;
		-moz-border-radius: 15px;
		
}

.valuation {
    height: 98vh;
		padding: 12px 35px;
		width: 80%;
}

.parametry{
    height: 99vh;
		padding: 12px 40px;
		width: 70%;
}

.cointainerparam {
	height: 99vh;
	padding: 32px 35px;
}

.cointainerlist {
    width: 85%;
}

.cointainerlistwycen {
    width: 83%;
}

.cointainerform {
    width: 83%;
}

.cointainer::-webkit-scrollbar {
    width: 19px;
}
 
.cointainer::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0.3,0.3,0.3,0.3); 
    border-radius: 0px;
}
 
.cointainer::-webkit-scrollbar-thumb {
    border-radius: 0px;
    -webkit-box-shadow: inset 0 0 9px rgba(0,0,0,0.6); 
}

.mytable {
    font-size : 13px! important;
		
}

/* Up */
.cointainer::-webkit-scrollbar-button:single-button:vertical:decrement {
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent rgba(0,0,0,0.3) transparent;
	border-top-right-radius: 15px;
}

.cointainer::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
  border-color: transparent transparent #000000 transparent;
}
/* Down */
.cointainer::-webkit-scrollbar-button:single-button:vertical:increment {
  border-width: 8px 8px 0 8px;
  border-color: rgba(0,0,0,0.3) transparent transparent transparent;
	border-bottom-right-radius: 15px;
}

.cointainer::-webkit-scrollbar-button:vertical:single-button:increment:hover {
  border-color: #000000 transparent transparent transparent;
}


.bg__img{
    position: absolute;
    
}

.bg__img--bulb{  
    position: absolute;
    top:46%;
    right:73%;
    height: 48vh;
    opacity: 0.4;
    filter: alpha(opacity=40);
		rotate: 180deg;
}

.bg__img--dots{  
    position: absolute; 
    top:10%;
    right:10%;
    height: 60vh;
    opacity: 0.5;
    filter: alpha(opacity=50);
		rotate: -45deg;
    /*animation: rotate 40s linear infinite;*/
}

@keyframes rotate{
    from{transform: rotate(0deg);}
    to {transform: rotate(360deg);}
    
}
h1{
    font-size: 28px;
    padding-bottom: 0px;
    padding-top: 0px;
		padding-left: 30px;
    background: linear-gradient(to right top, var(--bright), #fff);
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h2{
    font-size: 22px;
		color: orange;
		font-family: 'Montserrat', sans-serif;
    padding-top: 15px;
    padding-bottom: 5px;
}
h3{
    font-size: 18px;
		font-family: 'Montserrat', sans-serif;
    padding-top: 4px;
    padding-bottom: 0px;
}
p{
    font-size: 15px;
    font-weight: 300;
    padding-bottom: 12px;
    text-align: justify;
    line-height: 18px;
}
 .mainpage_tiles {
		font-size: 15px;
    font-weight: 400;
		margin-top: 18px;
		line-height: 12px;
}
.mainpage_wiecej {
		font-size: 16px;
    font-weight: 400;
		margin-top: 1px;
		line-height: 14px;
}
 .page_regulamin {
		font-size: 14px;
    font-weight: 300;
		margin-top: 18px;
		line-height: 19px;
}
 .page_list {
		font-size: 15px;
    font-weight: 300;
		line-height: 15px;
}
 .redcolored {
		color: orange;
		text-align: center;
}
a{
    color:var(--bright);
    text-decoration: none;
    position: relative;
}
a:after {
    content: "";
    width: 0;
    height: 3px;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bright);
    background: linear-gradient(90deg, transparent, var(--bright));
    transition: width 0.3s;
}
a:hover:after{
    width: 100%;
}

a.main_p {
    color: black;
    text-decoration: none;
}
a.main_p:after {
		color:var(--bright);
		background: white;
		width: 51%;
		transition: none;
}
a.main_p:hover{
    color:var(--bright);
		text-decoration: underline;
		width: 51%;
		transition: none;
}

.list__style {
    margin-left: 20px;
    line-height: 30px;
    
}
button {
    width: 306px;
    padding: 12px 0;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    background: var(--bright);
    background: linear-gradient(to right top, var(--bright), rgba(255,255,255, 0.6));
    border: none;
    cursor: pointer;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
button:focus {
    outline-color: #fff;
}
button:after{
    width: 50px;
    height: 100%;
    position: absolute;
    left: -60px;
    top: 0;
    content: "";
    background-color: rgba(255,255,255, 0.2);
    transition: transform 0.2s;
}
button:hover:after{
    animation: shine 0.6s forwards;
}

@keyframes shine {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(420px);
    }
}

.cancelbutton {
		width: 200px;
}

.editbutton {
		width: 250px;
}

.raportbut {
		width: 180px;
		padding: 3px 1px;
		font-size: 18px;
		height: 30px;
}

.button {
    width: 230px;
		margin: 25px;
    padding: 35px 15px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    background: var(--bright);
    background: linear-gradient(to right top, var(--bright), rgba(255,255,255, 0.6));
    border: none;
    cursor: pointer;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.button:focus {
    outline-color: #fff;
}
.button:after{
    width: 50px;
    height: 100%;
    position: absolute;
    left: -60px;
    top: 0;
    content: "";
    background-color: rgba(255,255,255, 0.2);
    transition: transform 0.2s;
}
.button:hover:after{
    transform: translateX(420px);
}

.menubutton {
					display: block;
					padding: 16px 20px;
					text-align: center;
					valign: top;
					font-family: 'Montserrat', sans-serif;
					text-decoration: none;
					color: #ffffff;
					background: rgba(0, 0, 0, 0.8);
					background: linear-gradient(to right top, rgba(0,0,0, 0.8),rgba(0,0,0,0.3));
					border-radius: 8px;
					margin: 10px 8px;
					backdrop-filter: blur(8px);
					-webkit-backdrop-filter: blur(8px);
					outline: none;
}

.searchbutton {
					width: 120px;
					padding: 5px 6px;
					font-size: 13px;
					font-weight: 300;
					text-align: center;
					valign: top;
					font-family: 'Montserrat', sans-serif;
					text-decoration: none;
					color: #ffffff;
					background: rgba(0, 0, 0, 0.8);
					background: linear-gradient(to right top, rgba(0,0,0, 0.8),rgba(0,0,0,0.3));
					border-radius: 7px;
					margin: 4px 2px;
					backdrop-filter: blur(8px);
					-webkit-backdrop-filter: blur(8px);
					outline: none;
}

.searchbuttonwide {
					width: 165px;
					padding: 5px 6px;
					font-size: 13px;
					font-weight: 300;
					text-align: center;
					valign: top;
					font-family: 'Montserrat', sans-serif;
					text-decoration: none;
					color: #ffffff;
					background: rgba(0, 0, 0, 0.8);
					background: linear-gradient(to right top, rgba(0,0,0, 0.8),rgba(0,0,0,0.3));
					border-radius: 7px;
					margin: 4px 2px;
					backdrop-filter: blur(8px);
					-webkit-backdrop-filter: blur(8px);
					outline: none;
}

.radiobox {
padding-left: 3px;
padding-top: 3px;
padding-bottom: 3px;
}

.tdcell {
		background: rgba(0, 0, 0, 0.1); 
		padding: 10px 10px 10px 10px; 
		border-radius: 13px;
		
}

.next {
		font-size: 85%;
}


.inputtext {
  width: 50px;
  padding: 2px 1px 0px 1px;
  margin: 0px 0px 0px 0px;
	border-radius: 4px;
}

.sizebig {
	width: 450px;
	padding: 2px 1px 0px 1px;
  margin: 0px 0px 0px 0px;
	border-radius: 4px;
}

form {
    width: 100%;
}

form .upload { 
    align-items: center;
    position: relative;
    overflow: hidden; 
    width: 350px;
    padding: 11px 5px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(to right top, var(--bright), rgba(255,255,255, 0.6));
    border-radius: 12px;    
}

form .upload input[type="file"] {
    position: absolute;
    top: 0;
    right:0;
    margin: 0;
    padding: 0;
    width: 250px;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

form .upload:focus {
    outline-color: #fff;
    overflow: hidden; 
}

form .upload:after{ 
    overflow: hidden;  
    width: 50px;
    height: 100%;
    position: absolute;
    left: -60px;
    top: 0;
    content: "";
    background-color: rgba(255,255,255, 0.2);
    transition: transform 0.3s;
}
form .upload:hover:after{
    transform: translateX(420px);
     
}

form .upload label{
    color: #fff;
    font-size: 20px;
    cursor: pointer;   
}

form .upload label:before{
    content: "\21EA";
    margin-right: 5px;
   
}
main{
    display: flex;
}

section:first-child {
    margin-right: 50px;
    text-align: center;
}

.logo{
		display: block;
		margin-left: auto;
		margin-right: auto;
		margin-top: 36px;
		margin-bottom: 24px;
    width: 186px;
    
}
.logo img{
    width: 100%;
    opacity: 1.0;
    filter: alpha(opacity=100);
		text-align: center;
}

.logo__name{
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(to right top, var(--bright), #fff);
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chart__name{
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    background-color: #fff;
		margin-left: 28px;
		margin-right: 8px;
		padding: 8px;
		border: 1px solid #dedede;
		border-radius: 8px;
		-moz-border-radius: 8px;
}

.kafel_main_page{
    display: block;
		width: 280px;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    background-color: #fff;
		color: #111;
		margin-left: 8px;
		margin-top: 29px;
		margin-right: 20px;
		margin-bottom: 8px;
		padding: 10px;
		border: 1px solid #dedede;
		border-radius: 8px;
		-moz-border-radius: 8px;
}
.kafel_title{
		margin-left: 8px;
		margin-top: 8px;
		margin-bottom: 0px;
		opacity:0.8;
    filter:alpha(opacity=80); /* For IE8 and earlier */
}
.kafel_empty{
		margin-top: 8px;
		opacity:0.0;
    filter:alpha(opacity=0); /* For IE8 and earlier */
}

.twojedane_title{
		margin-left: 0px;
		opacity:0.8;
    filter:alpha(opacity=80); /* For IE8 and earlier */
}

.wykres_title{
		margin-left: 27px;
		opacity:0.8;
    filter:alpha(opacity=80); /* For IE8 and earlier */
}

.kafel_twojedane_page{
    display: block;
		width: 152px;
    text-align: left;
    background-color: #fff;
		color: #111;
		margin-left: 28px;
		margin-top: 52px;
		margin-right: 20px;
		margin-bottom: 8px;
		padding: 10px;
		border: 1px solid #dedede;
		border-radius: 8px;
		-moz-border-radius: 8px;
}

.chart__price{
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    background-color: #fff;
		margin-left: 8px;
		margin-right: 0px;
		padding: 15px;
		border: 1px solid #dedede;
		border-radius: 8px;
		-moz-border-radius: 8px;
}


.form-control {
  display: block;
  width: 60%;
  padding: 13px 12px;
  height: 28px;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  color: #333;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dedede;
  border-radius: 6px;
  
}

.form-control-inline {
  display: inline;
  font-size: 17px;
	
  font-weight: 500;
  color: #333;
	background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dedede;
  border-radius: 6px;
  
}

.short-number-input {
    width: 60px;
}

 .fixed_header {
        
        table-layout: fixed;
        border-collapse: collapse;
				border-radius: 15px;
				overflow:hidden;
				padding: 5px;
        text-align: left;
				font-size: 14px;
      }
      .fixed_header tbody {
        display: block;
        width: 100%;
        overflow: auto;
        height: 350px;
				font-size: 11;
      }
      .fixed_header thead tr {
        display: block;
				text-align: left;
      }
			.fixed_header tbody tr:hover {background-color: rgba(255,255,255, 0.2);}
			
      .fixed_header thead {
        background: black;
        color: #fff;
				text-align: left;
      }
      .fixed_header th,
      .fixed_header td {
        padding: 5px;
        text-align: left;
        word-wrap: break-word;
      }
			.fixed_narrow{
			width: 1000px;
			}
			.fixed_wide{
			width: 1120px;
			}
.fixed_small{
				border-collapse: collapse;
				border-radius: 15px;
				overflow:hidden;
				padding: 5px;
        text-align: left;
				margin-left: 27px;
				}
				.fixed_small thead {
        background: black;
        color: #fff;
				text-align: left;
				}
				.fixed_small th,
				.fixed_small td {
        padding: 5px;
        text-align: left;
        
      }
			
::-webkit-scrollbar {
    width: 18px;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 13px rgba(0,0,0,0.3);
    border-radius: 1px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 1px;
    -webkit-box-shadow: inset 0 0 9px rgba(0,0,0,0.6);
}
/* Buttons */
::-webkit-scrollbar-button:single-button {
  background-color: rgba(0,0,0,0.1);
  display: block;
  border-style: solid;
  height: 13px;
  width: 16px;
}
/* Up */
::-webkit-scrollbar-button:single-button:vertical:decrement {
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent rgba(0,0,0,0.3) transparent;
}

::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
  border-color: transparent transparent #000000 transparent;
}
/* Down */
::-webkit-scrollbar-button:single-button:vertical:increment {
  border-width: 8px 8px 0 8px;
  border-color: rgba(0,0,0,0.3) transparent transparent transparent;
}

::-webkit-scrollbar-button:vertical:single-button:increment:hover {
  border-color: #000000 transparent transparent transparent;
}

.flex-container {
  display: flex;
}

.flex-container > div {
  display: inline;
  margin: 5px;
  padding: 10px;
  font-size: 30px;
}

div.int-box { display: table-cell; vertical-align: middle; height: 300px; }

fieldset {
	padding: 6px;
}

 .spinner-icon {
    display: inline-block;
    width: 1.2em; 
    text-align: center;
  }

