/*!**************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/weather-summary/style.scss ***!
  \**************************************************************************************************************************************************************************************************************************************************************/
.search-city {
	display: flex;
	justify-content: center;
	flex-direction: column;
	height: 120px;
	width: 400px;
	position: absolute;
	top: -25px;
	right: -25px;
	border-radius: 25px;
	border: unset;
	background-color: var(--wp--preset--color--base);
	text-decoration: unset;
	padding: 0 34px 0 36px;

	.test {
		display: flex;
		flex-direction: column;
	}

	.search-default {
		display: flex;
		align-items: center;
	}

	.search-value {
		display: flex;
		flex-direction: column;
		width: 220px;
		margin: 0 0 0 15px;
		color: var(--wp--preset--color--bg-secondary);

		p {
			font-weight: 300;
			font-style: Light;
			font-size: 32px;
			line-height: 100%;
			letter-spacing: 0%;
		}

		span {
			font-weight: 300;
			font-style: Light;
			font-size: 16px;
			line-height: 100%;
			letter-spacing: 0%;
		}
	}

	.no-result,
	.search-value p {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.no-result {
		cursor: unset !important;
		p {
			text-align: center;
			font-size: 20px !important;
		}
	}

	.location-img {
		width: 34px;
		height: 43px;
	}

	.search-icon {
		width: 54px;
		height: 51px;
	}

	button {
		border: none;
		background-color: unset;
	}

	.search-result {
		display: flex;
		align-items: center;
		flex-direction: row;
		position: relative;
		height: auto;
		background-color: var(--wp--preset--color--bg-surface-strong);
		justify-content: left;
		justify-items: left;
		border-radius: 10px 10px 0 10px;
	}

	input {
		border: none;
		height: 40px;
		width: 100%;
		background-color: transparent;
		outline: transparent;

		font-weight: 300;
		font-style: Light;
		font-size: 35px;
		line-height: 100%;
		letter-spacing: 0%;
		vertical-align: middle;
		color: var(--wp--preset--color--text-secondary);
	}

	.list {
		position: absolute;
		top: 28px;
		right: 0;
		display: flex;
		width: 300px;
		flex-direction: column;
		padding: 0;
		background-color: var(--wp--preset--color--bg-surface-strong);

		li {
			display: flex;
			align-items: center;
			gap: 10px;
			padding: 0 8px;
			list-style-type: none;
			border-bottom: 2px solid var(--wp--preset--color--text-primary);
			cursor: pointer;
		}

		li:last-child {
			border-bottom: 4px solid var(--wp--preset--color--text-primary);
		}

		p {
			font-weight: 300;
			font-size: 35px;
			max-width: 270px;
			width: 100%;
			overflow: hidden;
			text-overflow: ellipsis;
		}
	}

	.fav-button {
		width: 30px;
		height: 30px;
	}

	.current-location {
		border-bottom: 2px solid var(--wp--preset--color--text-primary);

		img {
			width: 25px;
			height: 32px;
		}
	}
}

@media (max-width: 850px) {
	.search-city {
		right: 0;
		left: 50%;
		transform: translateX(-50%);
		height: 100px;

		.search-default {
			justify-content: center;
		}
	}
}

@media (max-width: 500px) {
	.search-city {
		width: 95%;

		.list {
			width: 100%;
		}
	}
}

@media (max-width: 420px) {
	.search-city {
		padding: 0 15px;

		input {
			font-size: 25px;
		}

		.search-value {
			p {
				font-size: 25px;
			}
		}

		.list {
			top: 22px;
			p {
				font-size: 25px;
			}
		}

		.search-icon {
			width: 40px;
			height: 39px;
		}

		.location-img {
			width: 24px;
		}
	}
}

.weather-info {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: row;
	gap: 28px;
	height: auto;
	padding: 0 10px;

	.label {
		font-size: 30px;
	}

	.value {
		display: block;
		font-size: 54px;
	}

	.wind-direction {
		height: 38px;
		width: 38px;
	}

	small {
		font-size: 30px;
	}

	span,
	.value {
		font-size: 30px;
		font-weight: 300;
		font-style: Light;
		line-height: 25px;
		letter-spacing: 0%;
		text-align: center;
		vertical-align: middle;
	}

	.weather-stat-card {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 15px;
		text-align: center;
		padding: 15px 0px;
		width: 178px;
		height: 161px;
		border-radius: 18px;
		background-color: #eef7fe4d;
		color: var(--wp--preset--color--base);
	}
}

@media (max-width: 990px) {
	.weather-info {
		gap: 15px;
		justify-content: space-between;
		padding: 0;
		height: 110px;

		.weather-stat-card {
			padding: 5px;
			width: 150px;
			height: 100%;
		}

		.label {
			font-size: 20px;
		}

		.value {
			font-size: 20px;
		}

		.wind-direction {
			height: 28px;
			width: 28px;
		}

		small {
			font-size: 20px;
		}
	}
}

@media (max-width: 650px) {
	.weather-info {
		height: -moz-fit-content;
		height: fit-content;
		max-width: 100%;
		padding: 0;
		overflow-y: hidden;
		overflow-x: scroll;
		height: 90px;

		.weather-stat-card {
			width: -moz-fit-content;
			width: fit-content;
			height: 100%;
			padding: 4px;
			gap: 0px;
		}

		.label {
			font-size: 16px;
			line-height: normal;
			width: 80px;
		}

		.wind-direction {
			width: 16px;
			height: 16px;
		}

		.wind-direction {
			height: 20px;
			width: 20px;
		}
	}
}

.search-bar-type {
	display: flex;
	padding: 0 26px;
	width: 100%;
	justify-content: space-between;
	margin-bottom: 10px;

	button {
		border: transparent;
		outline: transparent;
		cursor: pointer;
		color: var(--wp--preset--color--text-secondary);
		width: -moz-fit-content;
		width: fit-content;

		font-weight: 300;
		font-style: Light;
		font-size: 27px;
		line-height: 100%;
		letter-spacing: 0%;
	}

	.active {
		border-bottom: 1px solid var(--wp--preset--color--text-secondary);
	}
}

@media (max-width: 420px) {
	.search-bar-type {
		button {
			font-size: 20px;
		}
	}
}

.weather-forecast-summary {
	position: relative;
	width: 1136px;
	height: auto;
	border-radius: 56px;
	background: linear-gradient(#3aa3e1, #64bfeb);
	margin-left: auto;
	margin-right: auto;
	padding: 54px 10px;

	.visual {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		height: 274px;
		padding: 20px 40px;

		.icon-visual {
			width: 241px;
			height: 234px;
		}

		.actual-temp,
		.feel,
		.status {
			color: var(--wp--preset--color--base);
		}

		.status {
			text-align: center;
			width: -moz-fit-content;
			width: fit-content;
			max-width: 262px;
			font-size: 87px;
			font-weight: 300;
			font-style: Light;
			line-height: 84px;
			letter-spacing: 0%;
		}

		.temp-div {
			display: flex;
			flex-direction: column;
			justify-content: center;
			gap: 20px;
			height: 160px;
		}

		.actual-temp {
			font-weight: 300;
			font-style: Light;
			font-size: 137px;
			line-height: 48px;
			letter-spacing: 0%;
		}

		.feel {
			font-weight: 300;
			font-style: Light;
			font-size: 48px;
			line-height: 48px;
			letter-spacing: 0%;
		}
	}
}

@media (max-width: 1250px) {
	.weather-forecast-summary {
		width: 90%;
	}
}

@media (max-width: 1150px) {
	.weather-forecast-summary {
		padding: 30px 10px;

		.visual {
			.status {
				text-align: center;
			}
		}
	}
}

@media (max-width: 1090px) {
	.weather-forecast-summary {
		height: auto;

		.visual {
			height: auto;
			padding-top: 80px;
			align-items: center;

			.icon-visual {
				width: 181px;
				height: 176px;
			}

			.status {
				font-size: 65px;
				line-height: 60px;
			}

			.temp-div {
				gap: 15px;
			}

			.actual-temp {
				font-size: 103px;
			}

			.feel {
				font-size: 36px;
			}
		}
	}
}

@media (max-width: 875px) {
	.weather-forecast-summary {
		border-radius: 20px;

		.visual {
			padding: 50px 20px 20px 20px;
		}
	}
}

@media (max-width: 850px) {
	.weather-forecast-summary {
		.visual {
			justify-content: space-around;
			padding-bottom: 0;

			.icon-visual {
				width: 140px;
				height: 136px;
			}

			.status {
				max-width: 200px;
				font-size: 44px;
			}

			.temp-div {
				gap: 10px;
			}

			.actual-temp {
				font-size: 69px;
			}

			.feel {
				font-size: 24px;
			}
		}
	}
}

@media (max-width: 640px) {
	.weather-forecast-summary {
		.visual {
			height: -moz-fit-content;
			height: fit-content;
			flex-direction: column;
			gap: 10px;

			.status {
				max-width: unset;
			}

			.temp-div {
				height: -moz-fit-content;
				height: fit-content;
				flex-wrap: wrap;
				flex-direction: row;
			}

			.icon-visual {
				width: 120px;
				height: 116px;
			}
		}
	}
}

.fav-button {
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	width: -moz-fit-content;
	width: fit-content;
	height: -moz-fit-content;
	height: fit-content;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
	outline: transparent;
	min-width: 25px;
	overflow: visible;

	img {
		width: 100%;
		height: 100%;
	}
}

.skeleton {
	position: relative;
	overflow: hidden;
	background-color: #cccccc;
	height: 100%;
}

.skeleton::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.6),
		transparent
	);
	transform: translateX(-100%);
	animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
	100% {
		transform: translateX(100%);
	}
}

.search-modal {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	z-index: 10;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	overscroll-behavior: contain;
	backdrop-filter: blur(5px);

	.modal-content {
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: 700px;
		height: 745px;
		border-radius: 40px;
		padding: 28px 29px;
		background-color: var(--wp--preset--color--base);
	}

	.modal-title,
	input,
	li,
	p {
		color: var(--wp--preset--color--text-primary);
	}

	.modal-title {
		font-weight: 300;
		font-style: Light;
		font-size: 36px;
		line-height: 100%;
		letter-spacing: 0%;
	}

	button {
		cursor: pointer;
		margin-left: auto;
		border: unset;
		background-color: transparent;
	}

	input {
		width: 100%;
		height: 63px;
		padding: 14px 10px;
		border-radius: 14px;
		border: 1px solid var(--wp--preset--color--text-primary);
		outline: transparent;

		font-weight: 300;
		font-style: Light;
		font-size: 28px;
		line-height: 100%;
		letter-spacing: 0%;
	}

	ul {
		padding: 0;
		margin: 0;
		padding-bottom: 5px;
	}

	.fav-list {
		border-bottom: 1px solid var(--wp--preset--color--text-primary);
	}

	li {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 8px 10px;
		height: auto;
		width: 100%;
		border: 1px solid transparent;

		font-weight: 300;
		font-style: Light;
		font-size: 24px;
		line-height: 100%;
		letter-spacing: 0%;
		cursor: pointer;
	}

	.user-position {
		img {
			height: 27px;
			width: 27px;
		}
	}

	li:hover {
		border: 1px solid var(--wp--preset--color--text-primary);
		border-radius: 10px;
	}

	.fav-button {
		height: 27px;
		width: 27px;
	}

	.cities-result {
		overflow-y: scroll;
	}
}

@media (max-width: 800px) {
	.search-modal {
		.modal-content {
			width: 95%;
		}
	}
}

@media (max-width: 640px) {
	.search-modal {
		.modal-content {
			border-radius: 20px;
			max-height: 60vh;
		}

		input {
			height: 40px;
			font-size: 20px;
		}

		.modal-title {
			font-size: 26px;
		}
	}
}

.search-bar-result-container {
	display: flex;
	position: absolute;
	align-items: center;
	background-color: var(--wp--preset--color--base);
	gap: 20px;
	top: -25px;
	right: -25px;
	width: 395px;
	height: 87px;
	border-radius: 35px;
	padding: 0 35px;

	&:hover {
		cursor: pointer;
	}

	img {
		height: 36px;
		width: 27px;
	}

	.location,
	.obs {
		color: var(--wp--preset--color--text-secondary);
		line-height: 100%;
		letter-spacing: 0%;
		font-weight: 300;
		font-style: Light;
	}

	.fav-button {
		&:hover {
			transform: scale(1.1);
		}
	}

	.location {
		max-width: 250px;
		max-height: 50px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		font-size: 40px;
	}

	.obs {
		font-size: 20px;
	}
}

@media (max-width: 850px) {
	.search-bar-result-container {
		height: 70px;
		right: 0;
		left: 50%;
		top: -35px;
		border-radius: 20px;
		transform: translateX(-50%);
		justify-content: center;

		.location {
			font-size: 30px;
		}
	}
}

@media (max-width: 520px) {
	.search-bar-result-container {
		width: 95%;

		.location {
			max-width: 150px;
			font-size: 24px;
		}

		.obs {
			font-size: 16px;
		}
	}
}

.weather-summary {
	.weather-forecast-summary {
		height: auto;
	}

	.weather-info {
		margin-top: 30px;
	}
}

@media (max-width: 1250px) {
	.weather-summary {
		.weather-forecast-summary {
			height: auto;
		}
	}
}

/*# sourceMappingURL=style-index.css.map*/