/*!*********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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/world-forecast-summary/style.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************/
.search-bar-summary-world {
	position: absolute;
	right: 0;
	top: -20px;
	display: flex;
	align-items: center;
	justify-content: right;
	gap: 10px;
	width: 395px;
	height: 123px;
	border-radius: 35px;
	background-color: var(--wp--preset--color--base);
	padding: 0 20px 0 0;

	.content {
		width: 231px;
		height: auto;

		p,
		span {
			color: var(--wp--preset--color--text-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%;
		}
	}

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

@media (max-width: 880px) {
	.search-bar-summary-world {
		right: 0;
		left: 50%;
		transform: translateX(-50%);
		height: 100px;
	}
}

@media (max-width: 500px) {
	.search-bar-summary-world {
		padding: 20px 0;
		width: 95%;
		border-radius: 20px;
		height: -moz-fit-content;
		height: fit-content;
	}
}

@media (max-width: 400px) {
	.search-bar-summary-world {
		justify-content: center;

		.content {
			width: -moz-fit-content;
			width: fit-content;
		}
	}
}

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

.skeleton::after {
	content: "";
	position: absolute;
	inset: 0;
	transform: translateX(-100%);

	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.35) 50%,
		transparent 100%
	);

	animation: shimmer 0.8s infinite;
}

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

.weather-forecast-skeleton {
	.visual {
		.icon-visual.skeleton {
			width: 241px;
			height: 234px;
			border-radius: 50%;
		}

		.status-skeleton {
			display: flex;
			flex-direction: column;
			gap: 16px;
			width: 262px;

			.line.skeleton {
				height: 34px;
				border-radius: 16px;

				&:first-child {
					width: 100%;
					height: 40px;
				}
			}
		}

		.actual-temp.skeleton {
			width: 220px;
			height: 60px;
			border-radius: 16px;
		}

		.feel.skeleton {
			width: 180px;
			height: 30px;
			border-radius: 12px;
		}
	}
}

@media (max-width: 1090px) {
	.weather-forecast-skeleton {
		.visual {
			.icon-visual.skeleton {
				width: 181px;
				height: 176px;
			}

			.status-skeleton {
				width: 220px;
				.line.skeleton {
					height: 28px;
				}
			}

			.actual-temp.skeleton {
				width: 170px;
				height: 60px;
			}

			.feel.skeleton {
				width: 140px;
				height: 24px;
			}
		}
	}
}

@media (max-width: 850px) {
	.weather-forecast-skeleton {
		.visual {
			.icon-visual.skeleton {
				width: 140px;
				height: 136px;
			}

			.status-skeleton {
				width: 180px;
				.line.skeleton {
					height: 22px;
				}
			}

			.actual-temp.skeleton {
				width: 120px;
				height: 45px;
			}

			.feel.skeleton {
				width: 100px;
				height: 18px;
			}
		}
	}
}

@media (max-width: 640px) {
	.weather-forecast-skeleton {
		.visual {
			.status-skeleton {
				width: 100%;
				max-width: 220px;
				.line.skeleton {
					height: 20px;
				}
			}

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

			.actual-temp.skeleton {
				width: 100px;
				height: 40px;
			}

			.feel.skeleton {
				width: 90px;
				height: 18px;
			}
		}
	}
}

.weather-forecast-summary {
	position: relative;
	width: 1263px;
	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: center;
		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;
			align-self: flex-end;
			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: 1350px) {
	.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;
			}
		}
	}
}

.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;
	}

	.no-result {
		text-align: center;
	}
}

@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;
		}
	}
}

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

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