﻿
.weather {
	align-items: center;
	background-color: var(--weather-color);
	border-radius: 25%;
	color: #263238;
	display: flex;
	font-size: 14px;
	gap: 15px;
	justify-content: center;
	padding: 4px;
	position: relative;
	position: relative;
	transition: all 0.3s ease-out;
	width: var(--marker-width);
	height: var(--marker-height);
}

	.weather .icon {
		align-items: center;
		display: flex;
		justify-content: center;
		color: #FFFFFF;
	}

	.weather img {
		margin-top: 1px;
		width: var(--marker-img-weather-size);
		height: var(--marker-img-weather-size);
	}

	.weather .icon svg {
		height: 20px;
		width: auto;
	}

	.weather .details {
		display: none;
		flex-direction: column;
		flex: 1;
	}

	.weather .address {
		color: #9E9E9E;
		font-size: 10px;
		margin-bottom: 10px;
		margin-top: 5px;
	}

	.weather .features, .container-weather .features {
		align-items: flex-end;
		display: flex;
		flex-direction: row;
		gap: 10px;
		justify-content: end;
	}

		 .container-weather .features > div {
			align-items: center;
			background: #F5F5F5;
			border-radius: 4px;
			border: 1px solid #ccc;
			display: flex;
			font-size: 12px;
			gap: 4px;
			padding: 2px;
		}

		.weather .features > div {
			align-items: center;
			background: #F5F5F5;
			border-radius: 5px;
			border: 1px solid #ccc;
			display: flex;
			font-size: 14px;
			gap: 5px;
			padding: 3px;
			margin:6px 3px ;
			width:50px;
		}

	/* weather styles in highlighted state. */
	.weather.highlight {
		border-radius: 8px;
		box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
		height: 100px;
		width: 160px;
		/*padding: 8px 15px;*/
	}

		.weather.highlight .details {
			display: flex;
		}

/*
            .weather.highlight .icon {   color: var(--weather-color); }
            .weather:not(.highlight) {    background-color: var(--weather-color);}
                .weather:not(.highlight)::after {  border-top: 9px solid var(--weather-color); }
         */

.icon-buttons {
	position: absolute;
	top: -12px;
	right: -10px;
	display: flex;
}

.action-button {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: bold;
	color: white;
	margin: 2px;
	width: 20px;
	height: 20px;
	background-color: #007bff;
	border: none;
	border-radius: 15px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.close-button {
	background-color: #dc3545;
}

.play-button {
	font-size: 10px;
	padding: 4px 0px 6px 2px;
	border: 1px dashed darkred;
	background-color: white;
	color: darkred;
}

.action-button .icon {
	margin: 5px;
}

.action-button:hover {
	opacity: 0.9;
}

.div-iw {
	position: relative;
	display: inline-block;
	width: fit-content;
}

.image-title-camera {
	position: absolute;
	top: 1px;
	left: 1px;
	background-color: rgba(0, 0, 0, 0.3);
	color: white;
	padding: 3px 3px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: bold;
}

.li-weather {
	text-align: right;
	display: flex;
	align-items: center;
	padding: 10px;
	border: 1px solid #ccc;
	background-color: #CAE9F5;
	margin: 10px 0;
	list-style: none,
}

.container-weather {
	flex: 1;
	display: flex;
	flex-direction: column;
	margin-right: 10px;
}

.title-weather {
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 3px;
}
.title-weather-iw {
	text-align:center;
	font-weight: bold;
	font-size: 22px;
}

.desc-weather {
	font-size: 12px;
	margin-bottom: 2px;
}

.date-weather {
	font-size: 11px;
	color: #555;
}

.image-weather {
	object-fit: cover;
	border-radius: 5px;
	float: inline-end;
	width: 54px !important;
	height: auto!important;
}

.temperature {
	width: 12px;
	height: 12px;
	background: url('../svg/temperature-three-quarters-solid.svg') no-repeat center center;
	background-size: contain;
}

.drop {
	width: 12px;
	height: 12px;
/*	background: url('../svg/droplet-solid.svg') no-repeat center center;
*/	background: url('../Images/perciption-small.png') no-repeat center center;
	background-size: contain;
}


.weather-container {
	background-color: #D7EFFA;
	border-radius: 10px;
	border:1px solid gray;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	max-width: 600px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.left-section {
	text-align: left;
}

.weather-symbol {
	font-size: 50px;
}

.temp {
	font-size: 30px;
	color: #ff4500;
}

.visibility {
	margin-top:10px;
	font-size: 15px;
	color: #a9a9a9;
	display:flex;
	flex-direction:row;
}

.visibility > div {
margin:5px;
}



.visual {
	width: 20px;
	height: 20px;
	background: url('../svg/eye-solid.svg') no-repeat center center;
	background-size: contain;
	margin-left: 25px;
}

.right-section {
	text-align: left;
}

.weather-detail {
	margin: 15px 0;
}

	.weather-detail span {
		display: block;
		font-weight: bold;
		margin-top: 5px;
	}
