*:before,
*:after {
	box-sizing: inherit;
}
.main_title{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

html {
	box-sizing: border-box;
	padding: 20px;
}

.line-chart {
	animation: fadeIn 600ms cubic-bezier(0.57, 0.25, 0.65, 1) 1 forwards;
	opacity: 0;
	margin-left: 25px;
	margin-right: 35px;
	margin-top: 0px;
}

.aspect-ratio {
	height: 0;
	padding-bottom: 50%;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700,900&display=block');

:root {
	--gradient: linear-gradient( 135deg, #00ae9a 10%, #056c6e 100%);
	--gradient_table: linear-gradient( 180deg, #00ae9a 10%, #056c6e 100%);
	--x: linear-gradient( 180deg, #ff0000 10%, #a50000 100%);
}

* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.link-button{
	display: block;
	width: 100%;
	text-align: right;
	margin-bottom: 40px;
}
.clear {
	clear: both;
}

body {
	margin: 0px;
	width: 100%;
	font-family: 'Montserrat', sans-serif;
	background-color: #343d4b;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

h1{
	font-family: 'Montserrat', sans-serif;
}
.top-info {
	display: flex;
	justify-content: space-between;
	width: 100%;
	    margin-bottom: 50px;
}
.sun-holder {
/* 	margin: 30px; */
	/* float: right; */
}
.snow-holder {
	display: none;
/* 	margin: 30px; */
	/* float: right; */
}

.day-field {
	width: 50%;
	/* float: left; */
}
#current_day{
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
	text-align: left;
}

#current_date {
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
	text-align: left;
}
.container {
	border-radius: 25px;
	-webkit-box-shadow: 0 0 70px -10px rgba(0, 0, 0, 0.2);
	        box-shadow: 0 0 70px -10px rgba(0, 0, 0, 0.2);
	background-color: #222831;
	color: #ffffff;
	max-width: 800px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.left-side {
	/* float: left; */
	height: 70%;
	background: rgb(255,109,0);
	background: #242930; /*linear-gradient(0deg, rgba(255,109,0,1) 33%, rgba(255,186,0,1) 66%, rgba(255,206,0,1) 100%);*/
	width: 50%;
	border-top-left-radius: 25px;
	border-right: 1px solid #343d4b;
	border-bottom: 1px solid #343d4b;
	padding:30px;
}

hr{
	border-top: 1px solid #343d4b;
	border-bottom: 0px;
	border-right: 0px;
}

.info-side {
	width: 50%;
	padding:30px;
	border-bottom: 1px solid #343d4b;
}

label{
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
	padding-bottom: 30px;
}
.bottom-side {
	background-color: #222831;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	padding-bottom: 30px;
	padding-top: 30px;
	width: 100%;
}
.stat-title{
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
}
.degree{
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 100px;
	text-align: center;
}
.status-bar {
	width: 100%;
}
.status{
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	font-weight: 700;
	font-size: 20px;
	text-align: left;
}


.today-info {
/*	padding: 15px;
	margin: 0 25px 25px 25px;*/
/* 	box-shadow: 0 0 50px -5px rgba(0, 0, 0, 0.25); */
	border-radius: 10px;
}

.today-info>div:not(:last-child) {
	margin: 0 0 10px 0;
}
.precipitation{
	display: flex;
    justify-content: space-between;
    width: 100%;
}
.today-info>div .title {
	/* float: left; */
	font-weight: 700;
}

/* .today-info>div .value {
	float: right;
} */

.week-list {
	list-style-type: none;
	padding: 0;
	margin: 10px 35px;
	-webkit-box-shadow: 0 0 50px -5px rgba(0, 0, 0, 0.25);
	        box-shadow: 0 0 50px -5px rgba(0, 0, 0, 0.25);
	border-radius: 10px;
}

.week-list>li {
	/* float: left; */
	padding: 15px;
	cursor: pointer;
	-webkit-transition: 200ms ease;
	-o-transition: 200ms ease;
	transition: 200ms ease;
	border-radius: 10px;
}

.week-list>li:hover {
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
	background: #fff;
	color: #222831;
	-webkit-box-shadow: 0 0 40px -5px rgba(0, 0, 0, 0.2);
	        box-shadow: 0 0 40px -5px rgba(0, 0, 0, 0.2)
}

.week-list>li.active {
	background: #fff;
	color: #222831;
	border-radius: 10px;
}

.week-list>li .day-name {
	display: block;
	margin: 10px 0 0 0;
	text-align: center;
}

.week-list>li .day-icon {
	display: block;
	height: 30px;
	width: auto;
	margin: 0 auto;
}

.week-list>li .day-temp {
	display: block;
	text-align: center;
	margin: 10px 0 0 0;
	font-weight: 700;
}

.location-container {
	padding: 25px 35px;
}

.location-button {
	outline: none;
	width: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border: none;
	border-radius: 25px;
	padding: 10px;
	font-family: 'Montserrat', sans-serif;
	background-image: var(--gradient);
	color: #ffffff;
	font-weight: 700;
	-webkit-box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.25);
	        box-shadow: 0 0 30px -5px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	-webkit-transition: -webkit-transform 200ms ease;
	transition: -webkit-transform 200ms ease;
	-o-transition: transform 200ms ease;
	transition: transform 200ms ease;
	transition: transform 200ms ease, -webkit-transform 200ms ease;
}

.location-button:hover {
	-webkit-transform: scale(0.95);
	    -ms-transform: scale(0.95);
	        transform: scale(0.95);
}

.location-button .feather {
	height: 1em;
	width: auto;
	margin-right: 5px;
}

svg {
	width: 50px;
	margin: 0px;
	display: block;
	animation: rotation 10s linear infinite;
}
svg .one {
	transition: fill 1s;
}
.two {
	fill: #ffcc00;
}
.one {
	fill: #ff8e1e;
}
.middle {
	fill: #ffee00;
}
.snow {
	fill:#9ff4ff;
}
@keyframes rotation {
	from {
		transform: rotate(0deg);
   }
	to {
		transform: rotate(360deg);
   }
}

#kapcsolo {
color:white;
width: 100%;
font-weight: 700;
height: 50px;
border-radius: 0.5rem;
border: 2px solid #343d4b;
background-color: #242930;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
font-family: 'Montserrat', sans-serif;
font-size: 20px;
}
.indicator-label{
	text-align: center;
	font-size: 14px;
	padding-top: 10px;
}
@media only screen and (max-width: 700px) {
	.stat-title{
		font-size: 30px;
	}
	.indicator-label{
		font-size: 20px;
	}
	#kapcsolo {
		height: 70px;
		font-size: 30px;
		margin-top: 10px;
	}
	/*.checkbox, .checkbox-wrapper, .checkbox-tile{
		height: 70px;
	}*/
	.left-side {
		border-top-right-radius: 25px;
		width: 100%;
		/* float: center; */
		border-right: 0px;
		height: 50%;
		margin-bottom: 20px;
	}
	.info-side {
		/* float: center; */
		height: 90%;
		width: 100%;
		padding:30px;
		background-color: #222831;
	}
/* 	.container {
		height: 640px;
	} */
	hr{
		display: none;
	}
	.title, .value, label{
		font-size: 30px;
		margin-bottom: 20px;
	}
	.bottom-side {
		padding-top: 120px;
	}
	
}

/*popupok*/
#popup{
    display: none;
}
.popup-container{
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: rgb(96 95 127 / 70%);
    position: absolute;
    top: 0;
    left: 0;
}
.popup{
    background-color: #222831;
    padding: 20px 30px;
    width: 70%;
    border-radius: 15px;
}
.close-popup{
	margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}
.close-popup a{
    font-size: 1.2rem;
    /*background-color: #00ae9a;*/
	/*background-color: #ff0000;*/
	background-image: var(--x);
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}
/*
.save{
	margin-top: 50px;
    display: flex;
    justify-content: flex-end;
}*/
.save, .add{
	margin-left: auto;
    border-radius: 6px;
    height: 40px;
    margin-right: 3px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
	padding-left: 10px;
	padding-right: 10px;
    border: 2px solid #00ae9a;
    background-color: #242930;

	/*background-image: var(--gradient_table);*/
	/*
	display: inline-block;
    background-color: #00ae9a;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    
	height: 40px;
	padding: 5px 15px;
	*/
}
.popup > h2{
    font-size: 1.6rem;
    margin-bottom: 10px;
}
.popup > p{
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.popup-btn{
    display: inline-block;
    text-decoration: none;
    border: 2px solid #00ae9a;
    padding: 5px 15px;
    border-radius: 20px;
    margin: 10px 0px;
    transition: .2s all ease-in;
}
.popup-btn:hover{
    background-color: #00ae9a;
	background-image: var(--gradient_table);
    color: #fff;
}




/*napok*/
.weekDays-selector {
	display: flex;
}
.weekDays-selector input[type=checkbox] {
	display: none!important;
  }
  
  .weekDays-selector input[type=checkbox] + label {
	display: inline-block;
	border-radius: 6px;
	background: #343d4b;
	height: 40px;
	width: 50px;
	margin-right: 3px;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	border: 2px solid #343d4b;
	background-color: #242930;
  }
  
  .weekDays-selector input[type=checkbox]:checked + label {
	/*background: #00ae9a;*/
	border: 2px solid #00ae9a;

	/*background-image: var(--gradient_table);*/
	color: #ffffff;
  }

  #pop {
	color: white;
    width: 100%;
    font-weight: 700;
    height: 50px;
    border-radius: 0.5rem;
    border: 2px solid #343d4b;
    background-color: #242930;
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
  }



  #schedule_table {
	margin-top: 20px;
	width: 100%;
	text-align: center;
	border: 2px solid #00ae9a;
  }
  #schedule_table, td{
	/*background-image: var(--gradient_table);*/
	color: white;
	border: 0px solid white;
	border-collapse: collapse;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
  }
  th{
	padding: 10px;
	background-image: var(--gradient_table);
  }
  tr {
	border: 1px solid #00ae9a;
  }

  #st{
    border-radius: 6px;
	/*border:0px;*/
    height: 40px;
    margin-right: 3px;
    text-align: center;
	padding-left: 10px;
	padding-right: 10px;
	border: 2px solid #00ae9a;
	background-color: #242930;
	/*background-image: var(--gradient_table);*/
	padding-top: 5px;
	color:white;
	font-size: 20px;

  }

  #funkcio{
	border-radius: 6px;
	border:0px;
    height: 40px;
    text-align: center;
    background-color: #00ae9a;
	background-image: var(--gradient_table);
	padding-top: 5px;
	color:white;
	font-size: 20px;
  }