:root {
	--primary-color: #0090BF;
}
.mb-20 {
	margin-bottom: 20px;
}

.mt-20 {
	margin-top: 20px;
}
.mt-15{
	margin-top: 15px;
}

.weather-main {
	background-color: #fff;
	border-radius: 10px;
	padding: 18px 20px 20px;
	flex-shrink: 0;
}
@media screen and (max-width: 575px) {
	.weather-main {
		padding: 15px;
	}
}

.weather-general .weather-main-title a,
.weather-general .feature-location a,
.weather-general .weather-main-hero{
	justify-content: center;
}
.weather-main-title {
	color: #033323 !important;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 4px;
	text-align: center;
}
.weather-main-hero {
	display: flex;
	align-items: center;
	padding-bottom: 16px;
	margin-bottom: 24px;
	border-bottom: 1px solid #f3f1ef;
}
@media screen and (max-width: 450px) {
	.weather-main-hero {
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
}
.weather-main-hero img {
	width: 78px;
	height: 78px;
	object-fit: cover;
}
.weather-main-hero .temp {
	font-weight: 600;
	font-size: 60.75px;
	line-height: 74px;
	color: #033323;
}
.weather-main-hero .desc {
	margin-left: 16px;
}
@media screen and (max-width: 450px) {
	.weather-main-hero .desc {
		margin-left: 0;
		text-align: center;
		width: 100%;
	}
}
.weather-main-hero .desc p {
	font-weight: 600;
	font-size: 16px;
	line-height: 30px;
	color: #033323;
	margin-bottom: 0;
}
.weather-main-hero .desc p:first-letter {
	text-transform: uppercase;
}
.weather-main-hero .desc span {
	font-size: 16px;
	line-height: 24px;
	color: #698a7f;
}
.weather-general .weather-main-desc {
	--column-gap--table-weather: 60px;
	--row-gap--table-weather: 28px;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: var(--row-gap--table-weather) var(--column-gap--table-weather);
}
.weather-general .weather-main-desc .item {
	display: grid;
	grid-template-columns: 70px 1fr;
	grid-gap: 24px;
}
.weather-general .weather-main-desc .item .icon {
	width: 100%;
	aspect-ratio: 1;
	background-color: var(--primary-color);
	border-radius: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.weather-main-desc .item .icon svg, .weather-main-desc .item .icon path{
	fill: #fff;
}
.weather-main-desc .item .information {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media (max-width: 992px){
	.weather-general .weather-main-desc .item {
		grid-template-columns: 55px 1fr;
		grid-gap: 16px;
	}
}
@media (max-width: 768px){
	.weather-general .weather-main-desc {

		grid-template-columns: repeat(3,1fr);

	}
	.weather-general .weather-main-desc .item {
		grid-template-columns: 46px 1fr;
		grid-gap: 6px;
	}
	.weather-main-desc .item .icon {
		border-radius: 8px;
	}
}
@media (max-width: 576px){
	.weather-general .weather-main-desc {
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 20px 20px;
	}
	.weather-general .weather-main-desc .item {
		grid-template-columns: 38px 1fr;
		grid-gap: 8px;
	}
	.weather-main-desc .item .information {
		justify-content: flex-start;
	}
}
@media (max-width: 500px){
	.weather-general .weather-main-desc {
		padding-left: 20px;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 90px;
	}
}
@media (max-width: 460px){
	.weather-general .weather-main-desc {
		column-gap: 70px;
	}
}
@media (max-width: 420px){
	.weather-general .weather-main-desc {
		padding-left: 10px;
		column-gap: 50px;
	}
}
.weather-main-desc .item {
	color: #033323;
}
.weather-main-desc .item .item-title {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
}
.weather-main-desc .item img {
	height: 20px;
}
.weather-main-desc .item .temp,
.weather-main-desc .item .temp p {
	font-size: 14px;
	line-height: 20px;
	color: #033323;
	display: flex;
}

.weather-main.weather-main-sidebar .weather-main-desc .temp p {
	margin-bottom: 0;
}
@media screen and (max-width: 575px) {

}

.weather-sub {
	border: 1px solid #9CDCFF;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px 10px;
	width: calc(100% / 6 - 20px);
	flex-shrink: 0;
	text-align: center;
	transition: all 0.2s linear;
}
.weather-sub .title {
	font-weight: 600;
	font-size: 16px;
	line-height: 27px;
	color: #18211e;
}
.weather-sub img {
	width: 100%;
	height: 135px;
	object-fit: contain;
}
.weather-sub .desc .humidity {
	font-size: 14px;
	line-height: 20px;
	color: #585858;
	display: flex;
	justify-content: center;
}
.weather-sub .desc .humidity img {
	height: auto;
	width: auto;
	object-fit: contain;
	margin-right: 4px;
}
.weather-sub .desc p {
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #585858;
	margin-top: 14px;
	margin-bottom: 4px;
}
.weather-sub .desc p:first-letter {
	text-transform: uppercase;
}
.weather-sub .desc .temp {
	display: flex;
	justify-content: center;
	font-size: 14px;
	line-height: 20px;
	color: #9ea0a2;
}
.weather-sub .desc .temp p {
	font-size: 14px;
	line-height: 20px;
	color: #9ea0a2;
	margin: 0;
	padding: 0;
}

.weather-day {
	background-color: #fff;
	border-radius: 10px;
	padding: 19px 20px 25px;
	margin-top: 30px;
	flex-shrink: 0;
}
@media screen and (max-width: 1240px) {
	.weather-day {
		width: 49%;
	}
}
@media screen and (max-width: 1199px) {
	.weather-day {
		width: 100%;
		margin-top: 30px;
	}
}
@media screen and (max-width: 575px) {
	.weather-day {
		padding: 15px;
	}
}
.weather-day-title {
	color: #033323;
	font-size: 18px;
	line-height: 27;
}
.weather-day-temp {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	margin-top: 9px;
}
.weather-day-temp .temp-item {
	width: calc(25%);
	text-align: center;
}
@media screen and (max-width: 575px) {
	.weather-day-temp .temp-item {
		padding: 10px;
	}
}
.weather-day-temp .temp-item:not(:last-child) {
	border-right: 1px solid #f3f1ef;
	padding-top: 13px;
	padding-bottom: 5px;
}
.weather-day-temp .temp-item .h4,
.weather-day-temp .temp-item h4 {
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: #033323;
}
.weather-day-temp .temp-item img {
	width: 102px;
	height: 102px;
	object-fit: cover;
	margin: 9px auto 18px auto;
}
@media screen and (max-width: 575px) {
	.weather-day-temp .temp-item img {
		width: 100%;
		height: auto;
	}
}
.weather-day-temp .temp-item span {
	font-size: 16px;
	line-height: 24px;
}
@media screen and (max-width: 575px) {
	.weather-day-temp .temp-item span {
		font-size: 16px;
	}
}

.forecast-day-title {
	color: #18211e;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	margin: 20px 0;
}
.forecast-day .forecast-icon {
	width: 50px;
	height: 50px;
	margin-right: 10px;
}
.forecast-day-left > .d-flex {
	height: 98px;
}
.forecast-day .forecast-temperature {
	font-weight: 600;
	font-size: 65px;
	line-height: 1;
}
.forecast-day .forecast-caption {
	font-size: 14px;
	margin-left: 1rem;
	line-height: 1.5;
}
.forecast-day .overview-caption-item {
	text-transform: capitalize;
}
.forecast-day .icon {
	width: 40px;
	display: flex;
	align-items: center;
}
.forecast-day .icon img {
	height: 20px;
	width: 20px;
	object-fit: contain;
}
.forecast-day .list-group-item {
	align-items: center;
	padding-left: 0;
	padding-right: 0;
	font-size: 14px;
	border-bottom: 1px solid #e9e5e1;
}
.forecast-day .list-group-item i {
	font-size: 20px;
}

div .title-main h2,
div .title-main h3 {
	font-weight: 600;
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 21px;
	color: #18211e;
}


.weather-highlight {
	background-color: #f4f8f9;
	padding-top: 38px;
	padding-bottom: 19px;
	position: relative;
}
.weather-highlight-bg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
}
.weather-highlight-inner {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	z-index: 2;
	position: relative;
}
@media screen and (max-width: 991px) {
	.weather-highlight-inner {
		display: block;
	}
}
.weather-highlight-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}
@media screen and (max-width: 991px) {
	.weather-highlight-list {
		justify-content: center;
	}
}
.weather-highlight-list .weather-sub {
	margin-bottom: 20px;
	margin-right: 20px;
	padding: 15px 10px;
}
@media screen and (max-width: 1399px) {
	.weather-highlight-list {
		justify-content: space-between;
		padding-right: 20px;
	}
	.weather-highlight-list .weather-sub {
		margin-right: 0;
	}
}
@media screen and (max-width: 991px) {
	.weather-highlight-list {
		padding-right: 0;
		margin-bottom: 20px;
	}
	.weather-highlight-list .weather-sub {
		margin-bottom: 12px;
		width: calc(100% / 4 - 10px);
	}
}
@media screen and (max-width: 767px) {
	.weather-highlight-list .weather-sub {
		margin-bottom: 15px;
		width: calc(100% / 3 - 10px);
	}
}
@media screen and (max-width: 575px) {
	.weather-highlight-list .weather-sub {
		margin-bottom: 20px;
		width: calc(100% / 2 - 10px);
	}
}
.weather-highlight-list .weather-sub:hover {
	border-color: var(--primary-color);
}
.weather-highlight-list .weather-sub .title {
	font-weight: 400;
}
.weather-highlight-list .weather-sub img {
	height: 100px;
	object-fit: contain;
}
.weather-highlight-list .weather-sub .desc > p {
	margin: 10px 0 4px;
}
.weather-highlight-list .weather-sub .desc > p:first-letter {
	text-transform: uppercase;
}
.weather-highlight-live .fluctuating {
	aspect-ratio: 1 / 0.85;
	overflow: hidden;
	box-shadow: -2px 5px 15px -5px rgba(3, 51, 35, 0.05);
	border-radius: 10px;
	margin-bottom: 25px;
}
.weather-highlight-live .fluctuating img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 1199px) {
	.weather-highlight-live .fluctuating {
		width: 100%;
	}
}



/* Weather Widget - End */

/* province detail */

/* breadcrumb */
.breadcrumb-custom {
	background-color: #f4f8f9;;
}

.rank-math-breadcrumb {
	padding: 11px 0;
}
.rank-math-breadcrumb p {
	color: #333;
	display: flex;
	flex-wrap: wrap;
}
.rank-math-breadcrumb a {
	color: #333;
}
.rank-math-breadcrumb .separator {
	margin: 0 8px;
}
.breadcrumb {
	background-color: transparent;
	margin-bottom: 0;
}
.breadcrumb-custom p a,
.breadcrumb-custom p{
	color: #333;
}
.breadcrumb-custom .breadcrumb {
	padding: 10px 0;
}
.breadcrumb-item {
	font-size: 16px;
	line-height: 27px;
	display: flex;
	align-items: center;
}
.breadcrumb-item.active {
	color: #333;
}
.breadcrumb-item a {
	color: #333;
}
.breadcrumb-custom p .separator,
.breadcrumb-custom p a:hover,
.breadcrumb-item a:hover {
	color: var(--primary-color);
}
.breadcrumb-item + .breadcrumb-item::before {
	color: var(--primary-color);
	content: "\\";
}

/* Weather Menu */



.weather-menu {
	position: sticky;
	top: 0;
	z-index: 11;
	background: #fff;
}
.weather-menu-overlay {
	overflow-x: auto;
}
.weather-menu-inner {
	display: flex;
	justify-content: space-between;
}
.weather-menu-inner {
	padding: 14px 0;
}
.weather-menu-link {
	border-radius: 10px;
	background-color: #fff;
	color: #033323;
	padding: 5px 20px;
}
.weather-menu-link:hover {
	color: var(--primary-color);
}
@media screen and (max-width: 1199px) {
	.weather-menu-inner {
		width: max-content;
	}
	.weather-menu-item:not(:last-of-type) {
		margin-right: 10px;
	}
}
.weather-menu-item.active .weather-menu-link {
	color: #fff;
	background: var(--primary-color);
}

.button-primary {
	outline: none !important;
	background-color: var(--primary-color);
	border-radius: 20px;
	font-weight: 600;
	font-size: 16px;
	line-height: 27px;
	text-align: center;
	transition: all 0.2s linear;
	padding: 6px 20px;
}
.button-primary span{
	color: #fff !important;
}
.button-primary:hover {
	transform: translateY(-2px);
}

.button-border {
	border: 1px solid var(--primary-color);
	padding: 8px 20px;
	color: var(--primary-color);
	font-size: 16px;
	line-height: 24px;
	border-radius: 26px;
	transition: all 0.2s linear;
}
.button-border:hover {
	color: #fff;
	background-color: var(--primary-color);
}

/* province detail - end */

.weather-forecast-detail {
	background-color: #f4f8f9;
	padding-top: 30px;
	padding-bottom: 43px;
	position: relative;
}
.weather-detail-bg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 1;
}
.weather-forecast-detail .weather-highlight-live {
	width: 100%;
	margin-top: 30px;
}
@media screen and (max-width: 1199px) {
	.weather-forecast-detail .weather-highlight-live {
		width: 100%;
		margin-top: 30px;
	}
}
.weather-main.weather-main-sidebar {
	width: 455px;
	height: 100%;
	padding: 20px 27px 20px 22px;
}
@media screen and (max-width: 991px) {
	.weather-main.weather-main-sidebar {
		width: 100%;
		margin-top: 30px;
	}
}
.weather-main.weather-main-sidebar .weather-main-hero {
	padding-bottom: 0;
	border-bottom: 0;
}
.weather-main.weather-main-sidebar .weather-main-desc {
	display: block;
}
@media screen and (max-width: 370px) {
	.weather-main.weather-main-sidebar .weather-main-desc {
		overflow-x: unset;
	}
}
.weather-main.weather-main-sidebar .weather-main-desc .item {
	display: flex;
	align-items: center;
}
.weather-main.weather-main-sidebar .weather-main-desc .item .icon {
	width: 20px;
}
.weather-main.weather-main-sidebar .weather-main-desc .item .icon img {
	margin: 0 auto;
	object-fit: contain;
}
@media screen and (max-width: 370px) {
	.weather-main.weather-main-sidebar .weather-main-desc .item {
		width: 100%;
	}
}
.weather-main.weather-main-sidebar .weather-main-desc .item h4 {
	margin-left: 26px;
	margin-top: 0;
	margin-bottom: 0;
}
.weather-main.weather-main-sidebar .weather-main-desc .item:not(:last-child) {
	border-bottom: 1px solid #e9e5e1;
	margin-bottom: 16px;
	padding-bottom: 16px;
}
@media screen and (max-width: 575px) {
	.weather-main.weather-main-sidebar .weather-main-desc .item img {
		margin: unset;
	}
}
.weather-main.weather-main-sidebar .weather-main-desc .temp {
	margin-left: auto;
}

.weather-forecast-detail .air-quality,
.weather-forecast-detail .sunrise-sunset {
	width: 100%;
}
@media screen and (max-width: 575px) {
	.weather-forecast-detail .calendar {
		margin-top: 20px;
	}
}
.weather-forecast-detail .calendar-box {
	width: 100%;
}

.weather-main.weather-main-sidebar .weather-main-desc .item:not(:last-child) {
	border-bottom: 1px solid #e9e5e1;
	margin-bottom: 16px;
	padding-bottom: 16px;
}
@media screen and (max-width: 575px) {
	.weather-main.weather-main-sidebar .weather-main-desc .item img {
		margin: unset;
	}
}
.weather-main.weather-main-sidebar .weather-main-desc .temp {
	margin-left: auto;
}
.weather-time {
	border-radius: 10px;
	background-color: #fff;
	padding: 18px 20px 18px;
	position: relative;
}
.weather-time-title {
	font-weight: 400;
	font-size: 18px;
	line-height: 27px;
	color: #18211e;
	margin-bottom: 28px;
}
.weather-time-list {
	display: flex;
	overflow-x: auto;
	/* scroll-snap-type: x mandatory; */
	padding-bottom: 10px;
}
.weather-time-list::-webkit-scrollbar {
	display: none;
}
.weather-time-actions .action-arrow {
	background: #f6a233;
	box-shadow: 0px 0px 15px -4px rgba(3, 51, 35, 0.25);
	border-radius: 50%;
	color: #9ea0a2;
	height: 28px;
	width: 28px;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
	outline: none;
	line-height: 14px;
	transition: all 0.2s;
}
.weather-time-actions .action-arrow:hover {
	background: var(--primary-color);
	color: #fff;
}
.weather-time-actions .arrow-left {
	left: -14px;
}
.weather-time-actions .arrow-right {
	right: -14px;
}
.weather-time-item {
	scroll-snap-align: start;
	text-align: center;
	padding: 5px 10px;
	flex-shrink: 0;
	width: 159.5px;
}
.weather-time-item:not(:last-child) {
	border-right: 1px solid #e9e5e1;
}
.weather-time-item .title {
	font-weight: 600;
	font-size: 18px;
	line-height: 27px;
	color: #18211e;
	margin-bottom: 6px;
}
.weather-time-item .temp {
	font-size: 18px;
	line-height: 22px;
}
.weather-time-item img {
	width: 78px;
	height: 78px;
	object-fit: cover;
	margin: 12px auto 7px auto;
}
.weather-time-item .humidity {
	display: flex;
	align-items: center;
	justify-content: center;
}
.weather-time-item .humidity img {
	width: auto;
	height: auto;
	margin: 0;
	margin-right: 4px;
}
.weather-time-item .desc {
	font-size: 14px;
	line-height: 20px;
	margin-top: 8px;
}
.weather-time-item .desc::first-letter {
	text-transform: uppercase;
}

.weather-general {
	background-color: #9CDCFF;
	/* background-image: url("../images/icon/banner.png"); */
	background-size: cover;
	background-repeat: no-repeat;
	padding: 54px 0 88px;
}
.weather-general.today-page {
	background-image: none;
	padding: 30px 0 0 0;
	background-color: #f4f8f9
}
.weather-general.today-page .weather-main-hero {
	margin-bottom: 32px;
}
.weather-general .weather-main-title a,
.weather-general .feature-location a,
.weather-general .weather-main-hero{
	justify-content: center;
}
@media screen and (max-width: 1240px) {
	.weather-general-inner {
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 1240px) {
	.weather-general-inner .weather-main {
		width: 49%;
	}
}
@media screen and (max-width: 1199px) {
	.weather-general-inner .weather-main {
		width: 100%;
	}
}
@media screen and (max-width: 1240px) {
	.weather-general-inner .weather-sub {
		width: 15%;
	}
}
@media screen and (max-width: 1199px) {
	.weather-general-inner .weather-sub {
		width: 30%;
		margin-top: 30px;
	}
}
@media screen and (max-width: 767px) {
	.weather-general-inner .weather-sub {
		width: 32%;
	}
}
@media screen and (max-width: 575px) {
	.weather-general-inner .weather-sub {
		padding-left: 10px;
		padding-right: 10px;
	}
}
@media screen and (max-width: 575px) {
	.weather-general-inner .weather-sub img {
		height: 72px;
	}
}
@media screen and (max-width: 370px) {
	.weather-general-inner .weather-sub .title {
		font-size: 14px;
	}
}



.weather-forecast {
	background-color: #fff;
	border-radius: 10px;
	padding: 18px 20px 20px;
}
.weather-forecast-title {
	font-size: 18px;
	line-height: 27px;
	color: #18211e;
}
.weather-feature-list {
	margin-top: 35px;
}
.weather-feature-sumary {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	cursor: pointer;
}
.weather-feature-item:not(:last-child) {
	border-bottom: 1px solid #e9e5e1;
}
.weather-feature-item h4,
.weather-feature-item .h4 {
	color: #18211e;
	flex: 0 0 80px;
	font-size: 15px;
	font-weight: bold;
	line-height: 24px;
	margin-right: 26px;
}
@media screen and (max-width: 575px) {
	.weather-feature-item h4 {
		font-size: 16px;
		line-height: 24px;
		flex: 0 0 75px;
	}
}
.weather-feature-item p {
	font-size: 15px;
	line-height: 24px;
	margin-right: 18px;
	flex: 0 0 80px;
	white-space: nowrap;
}
@media screen and (max-width: 575px) {
	.weather-feature-item p {
		flex: 0 0 70px;
		margin-right: 20px;
	}
}
.weather-feature-item .image {
	width: 72px;
	height: 72px;
	object-fit: cover;
	margin-right: 6px;
}
@media screen and (max-width: 991px) {
	.weather-feature-item .image {
		width: 65px;
		height: 65px;
	}
}
@media screen and (max-width: 575px) {
	.weather-feature-item .image {
		width: 50px;
		height: 50px;
	}
}
.weather-feature-item .desc {
	font-size: 15px;
	line-height: 24px;
	margin-right: 15px;
	flex: 0 0 14px;
	min-width: 130px;
	text-align: center;
}
.weather-feature-item .desc::first-letter {
	text-transform: uppercase;
}
@media screen and (max-width: 991px) {
	.weather-feature-item .desc {
		flex: 0 0 150px;
		font-size: 16px;
	}
}


.weather-feature-item .rain {
	font-size: 15px;
	display: flex;
	align-items: center;
	margin-right: 15px;
	flex: 0 0 90px;
}
.weather-feature-item .rain span {
	padding-left: 7px;
}
@media screen and (max-width: 575px) {
	.weather-feature-item .humidity span {
		font-size: 16px;
	}
}
.weather-feature-item .windy {
	font-size: 15px;
	display: flex;
	align-items: center;
	margin-right: 25px;
}
.weather-feature-item .windy img {
	transform: rotate(180deg);
}
@media screen and (max-width: 991px) {
	.weather-feature-item .humidity,
	.weather-feature-item .windy {
		display: none;
	}
}
@media screen and (max-width: 575px) {
	.weather-feature-item .humidity {
		display: none;
	}
}
@media screen and (max-width: 575px) {
	.weather-feature-item .windy {
		margin-right: 15px;
		display: none;
	}
}
.weather-feature-item .windy span {
	padding-left: 6px;
}
.weather-feature-item i {
	margin-left: auto;
	font-size: 25px;
	color: #9ea0a2;
	padding-right: 5px;
	cursor: pointer;
}
.weather-feature-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
}
.weather-feature-content .item {
	display: flex;
	align-items: flex-start;
}
.weather-feature-content .item:nth-child(5),
.weather-feature-content .item:nth-child(6) {
	display: none;
}
@media screen and (max-width: 991px) {
	.weather-feature-content .item:nth-child(5),
	.weather-feature-content .item:nth-child(6) {
		display: flex;
	}
}
.weather-feature-content .item .icon {
	padding-top: 4px;
}
.weather-feature-content .item img {
	height: 20px;
	margin: 0 auto;
	object-fit: contain;
}
.weather-feature-content .item .content {
	margin-left: 10px;
}
.weather-feature-content .item .content h5,
.weather-feature-content .item .content .h5 {
	color: #033323;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0;
}
.weather-feature-content .item .content span,
.weather-feature-content .item .content p {
	font-size: 14px;
}
@media screen and (max-width: 991px) {
	.weather-feature-content .item {
		width: 33.33%;
		margin: 4px 0;
	}
	.weather-feature-content .item .icon {
		width: 24px;
	}
}
@media screen and (max-width: 767px) {
	.weather-feature-content .item {
		width: 50%;
	}
	.weather-feature-content .item .icon {
		width: 20px;
	}
	.weather-feature-content .item .content h5 {
		font-size: 14px;
	}
	.weather-feature-item p {
		margin-right: 20px;
	}
}
@media screen and (max-width: 575px) {
	.weather-feature{
		padding-left: 15px;
		padding-right: 15px;
	}
	.weather-feature-item h4, .weather-feature-item .h4,
	.weather-feature-item p, .weather-feature-item .image, .weather-feature-item .rain{
		margin-right: 10px;
	}
	.weather-feature-item .desc {
		display: none;
	}
	.weather-feature-item i{
		padding-right: 0;
	}
}
@media screen and (max-width: 375px) {
	.weather-feature-item h4, .weather-feature-item .h4, .weather-feature-item p, .weather-feature-item .image, .weather-feature-item .rain {
		margin-right: 5px;
	}
	.weather-feature-item .image {
		width: 40px;
		height: 40px;
	}
	.weather-feature-item .rain span {
		padding-left: 5px;
	}
	.weather-feature-btns .button-border{
		padding: 5px 15px;
		font-size: 15px;
	}
}
.weather-feature-btns {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 26px;
}
@media screen and (max-width: 768px) {
	.weather-feature-btns {
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}
}
@media screen and (max-width: 768px) {
	.weather-feature-btns .button-border {
		width: auto;
		flex-shrink: 0;
		scroll-snap-align: start;
	}
	.weather-feature-btns .button-border:not(:last-child) {
		margin-right: 15px;
	}
}


.air-quality {
	padding: 18px 20px 23px 20px;
	border-radius: 10px;
	background-color: #fff;
	margin-bottom: 20px;
}
.air-quality .title-main {
	margin-bottom: 9px;
}
.air-quality-content {
	display: flex;
	align-items: center;
	margin-bottom: 25px;
}
.air-quality-content .title {
	width: 102px;
	height: 102px;
	flex-shrink: 0;
	margin-right: 15px;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	display: flex;
	font-size: 18px;
	line-height: 27px;
}
.air-quality-content.air-5 .title {
	border: thin solid #f5222d;
	background-color: #ffccc7;
	color: #cf1322;
}
.air-quality-content.air-4 .title {
	border: thin solid #fa541c;
	background-color: #ffd8bf;
	color: #d4380d;
}
.air-quality-content.air-3 .title {
	border: thin solid #fa8c16;
	background-color: #ffe7ba;
	color: #fa8c16;
}
.air-quality-content.air-2 .title {
	border: thin solid #faad14;
	background-color: #fff1b8;
	color: #d48806;
}
/*  */
.air-quality-content.air-1 .title {
	border: thin solid #52c41a;
	background-color: #d9f7be;
	color: #389e0d;
}
.air-quality-content .desc {
	font-size: 14px;
	line-height: 20px;
}
.air-quality-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.air-quality-list:not(:last-child) {
	padding-bottom: 12px;
	margin-bottom: 13px;
	border-bottom: 1px solid #e9e5e1;
}
.air-quality-item {
	min-width: 50px;
}
.air-quality-item .title,
.air-quality-item h5 {
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #18211e;
	margin-bottom: 0;
}
.air-quality-item p {
	font-size: 14px;
	line-height: 20px;
}
.air-quality-item sub {
	font-size: 11.5px;
}

.sunrise-sunset {
	/* background-image: url("../images/icon/sunrise-sunset.png"); */
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	padding: 18px 20px 20px;
	margin-bottom: 20px;
}
@media screen and (max-width: 1199px) {
	.sunrise-sunset {
		width: 50%;
	}
}
.sunrise-sunset .title {
	font-size: 18px;
	line-height: 27px;
	color: #fff;
	margin-bottom: 52px;
}
.sunrise-sunset-time {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sunrise-sunset-time .item {
	font-size: 27px;
	line-height: 33px;
	color: #fff;
}
.weather-city {
	padding: 18px 20px 23px 20px;
	border-radius: 10px;
	background-color: #fff;
	margin-bottom: 20px;
}
.weather-city-inner:not(.weather-city-inner-list) {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 0 28px;
}
.weather-city-inner li {
	font-size: 16px;
	line-height: 24px;
	color: #9ea0a2;
	display: flex;
	align-items: center;
	padding-bottom: 17px;
	margin-bottom: 18px;
	border-bottom: 1px solid #e9e5e1;
	transition: all 0.2s linear;
}
.weather-city-inner li a {
	color: #585858;
	margin-left: 8px;
}
.weather-city-inner li:hover {
	transition: all 0.2s linear;
}
.weather-city-inner li:hover:hover {
	transform: translateX(2px);
}
.weather-city-inner li:hover a,
.weather-city-inner li:hover i {
	color: var(--primary-color);
}
.weather-city-inner .showMore span:after {
	content: "Xem thêm";
}
.weather-city-inner .showMore.showLess span:after {
	content: "Ẩn bớt";
}
.weather-feature-btns .showMore span:after {
	content: "Xem thêm";
}
.weather-feature-btns .showMore.showLess span:after {
	content: "Ẩn bớt";
}
@media screen and (max-width: 767px) {
	.weather-city-inner:not(.weather-city-inner-list) {
		grid-template-columns: repeat(2,1fr);
	}
}
@media screen and (max-width: 575px) {
	.weather-city-inner {
		display: block;
	}
}
@media (min-width: 1200px){
	.weather-detail-5days .weather-forecast-inner,
	.weather-detail-15days .weather-forecast-inner,
	.weather-detail-10days .weather-forecast-inner{
		display: flex;
		justify-content: space-between;
		position: relative;
		z-index: 2;
	}
	.weather-detail-5days .weather-forecast-content ,
	.weather-detail-15days .weather-forecast-content ,
	.weather-detail-10days .weather-forecast-content {
		width: 100%;
		max-width: 740px;
		margin-right: 20px;
	}
	.weather-detail-5days .weather-highlight-live ,
	.weather-detail-15days .weather-highlight-live ,
	.weather-detail-10days .weather-highlight-live {
		width: 360px;
		flex-shrink: 0;
		margin-top: 0;
	}
}


/*15days*/
.weather-detail-15days .weather-feature-list > ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.weather-detail-15days .weather-feature-list ul li.item-hourly{
	-webkit-flex: 1 1 32.333%;
	flex: 1 1 32.333%;
	margin-bottom: 15px;
	border: 1px solid rgb(238, 238, 238);
}
.dvKzxS {
	display: flex;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	min-height: 260px;
	margin-right: 4px;
	background: rgb(249, 249, 249);
	min-width: 170px;
	scroll-snap-align: start;
}
.cwiYBw {
	display: flex;
	flex-direction: row;
	-webkit-box-pack: start;
	justify-content: flex-start;
	width: 100%;
	height: 40px;
	padding: 8px 15px;
	font-size: 0px;
	line-height: 1.29;
	background-color: var(--primary-color);
	border-bottom: 1px solid rgb(238, 238, 238);
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
}
.kvcMep {
	font-size: 18px;
	font-weight: 400;
	color: #fff;
}
.dqcGMz {
	font-size: 18px;
	font-weight: 400;
	color: rgb(156 220 255);
	margin-left: 8px;
}
.jGmCPK {
	display: flex;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	width: 100%;
	height: 220px;
}
.gmjdFp {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 142px;
	padding: 15px 15px 0px;
}
.eMcDxj {
	display: flex;
	width: 100%;
	flex-direction: row;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	height: 50%;
}
.fmcMjT {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: calc(100% - 59px);
	line-height: 1;
	-webkit-box-pack: center;
	justify-content: center;
}
.dZGMNF {
	font-size: 44px;
	font-weight: 400;
	color: rgb(102, 102, 102);
}
.cxbMTs {
	font-size: 13px;
	font-weight: 400;
	color: rgb(170, 170, 170);
}
.iUtLtD {
	display: flex;
	flex-direction: column;
	width: 59px;
	height: 59px;
	-webkit-box-pack: center;
	justify-content: center;
}
.iUtLtD .wb-content-mgt-icon-image {
	width: 60px;
	height: 60px;
}
.eTYscK {
	display: flex;
	width: 100%;
	flex-direction: row;
	margin-top: 13px;
	min-height: 40px;
	height: 50%;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	color: rgb(102, 102, 102);
	-webkit-box-pack: center;
	justify-content: center;
	align-items: flex-start;
	text-transform: capitalize;
}
.emjxJe {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 0px;
	height: calc(100% - 142px);
}
.hufaGO {
	display: flex;
	flex-direction: row;
	width: 100%;
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding: 0px 15px;
	height: 26px;
	-webkit-box-align: center;
	align-items: center;
	background-color: rgb(241, 241, 241);
}
.fGzjJg {
	display: flex;
	flex-direction: row;
	font-size: 14px;
	font-weight: 400;
	-webkit-box-pack: start;
	justify-content: flex-start;
	color: rgb(170, 170, 170);
	width: calc(100% - 60px);
}
.bytuOC {
	display: flex;
	flex-direction: row;
	font-size: 14px;
	font-weight: 400;
	color: rgb(102, 102, 102);
	width: 60px;
	-webkit-box-pack: end;
	justify-content: flex-end;
}
.bJPrTV {
	display: flex;
	flex-direction: row;
	width: 100%;
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding: 0px 15px;
	height: 26px;
	-webkit-box-align: center;
	align-items: center;
}

/*5days*/
.weather-detail-5days .weather-forecast {
	background-color: transparent;
	padding: 0;
}
.weather-detail-5days .weather-feature-list {
	margin-top: 15px;
}

.weather-detail-5days .daily-wrapper {
	margin-bottom: 10px;
}
.daily-forecast-card {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	background: hsla(0,0%,100%,.9);
	color: #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 64px;
	margin-top: 10px;
	overflow: hidden;
	padding: 0 12px;
	text-align: center;
}
.daily-forecast-card .info {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-grow: 1;
	justify-content: space-between;
}
.daily-forecast-card .date {
	-ms-flex-item-align: center;
	align-self: center;
}
.module-header {
	color: #000;
	font-size: 14px;
	font-weight: 500;
	/* text-transform: uppercase; */
}

.daily-forecast-card .date span {
	display: block;
}
.daily-forecast-card .info .dow, .daily-forecast-card .info .sub {
	font-size: 14px;
}
.daily-forecast-card .info .dow {
	font-weight: bold;
}
.daily-forecast-card .info .sub {
	font-weight: 500;
}
.module-header.sub {
	color: #878787;
}
.daily-forecast-card .icon {
	height: 34px;
	width: 34px;
}
.daily-forecast-card .temp {
	-ms-flex-item-align: center;
	align-self: center;
	white-space: nowrap;
}
.daily-forecast-card .temp .high {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.08;
}
.daily-forecast-card .temp .low {
	color: #878787;
	font-size: 20px;
	line-height: 1.2;
}
.daily-forecast-card .precip {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-flex: 2;
	-ms-flex-positive: 2;
	align-items: center;
	color: #878787;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-grow: 2;
	font-size: 14px;
	font-weight: 700;
	justify-content: flex-end;
	line-height: 1.14;
}
.daily-forecast-card .precip .precip-icon {
	height: 14px;
	margin-right: 6px;
}
.half-day-card-content {
	background: #fff;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	color: #000;
	font-size: 16px;
	line-height: 1.25;
	padding: 0 12px 26px;
}
.half-day-card-content .phrase {
	font-size: 18px;
	padding: 11px 0 10px;
	text-transform: capitalize;
}
.half-day-card-content .panels .left {
	border-bottom: 1px solid rgba(0,0,0,.15);
	padding-bottom: 10px;
}
.half-day-card-content .panel-item {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid rgba(0,0,0,.15);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 11px 0 10px;
}
.half-day-card-content .panel-item .value {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.33;
	margin-left: auto;
	padding-left: 8px;
	text-align: right;
}
.half-day-card-content .panel-item:last-child {
	border: 0;
	padding-bottom: 0;
}
@media (min-width: 768px){
	.daily-forecast-card .icon {
		height: 70px;
	}
	.half-day-card-content .panels {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.half-day-card-content .panels .left {
		border-bottom: none;
		margin-right: 24px;
		padding-bottom: 0;
	}
	.half-day-card-content .panels .left, .half-day-card-content .panels .right {
		-webkit-box-flex: 50%;
		-ms-flex: 50%;
		flex: 50%;
	}
}
@media (min-width: 1024px){
	.daily-forecast-card {
		height: 86px;
	}
	.daily-forecast-card .info {
		-webkit-box-pack: normal;
		-ms-flex-pack: normal;
		justify-content: normal;
	}
	.daily-forecast-card .date {
		margin-right: 20px;
	}
	.daily-forecast-card .date {
		margin-right: 20px;
	}
	.daily-forecast-card .date {
		margin-right: 20px;
	}
	.daily-forecast-card .icon {
		height: 62px;
		margin-right: 12px;
		width: 62px;
	}
	.daily-forecast-card .temp .high {
		font-size: 50.6px;
		letter-spacing: -.42px;
		line-height: 1.07;
	}
	.daily-forecast-card .temp .low {
		font-size: 20.3px;
		line-height: .92;
	}
	.daily-forecast-card .precip {
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		line-height: 1.43;
		font-size: 15px;
	}
}

.weather-chart {
	padding: 20px 16px;
	background-color: #fff;
	border-radius: 10px;
	margin-top: 26px;
}
.weather-chart .title {
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 34px;
	color: #18211e;
	object-fit: cover;
}

/*weather-detail-10days*/
.weather-detail-10days h1.weather-forecast-title{
	margin-bottom: 20px;
}
.weather-detail-10days .horizontalScroll {
	overflow-x: auto;
}
.weather-detail-10days table {
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #ddd;
}
.weather-detail-10days .wthTable tr {
	border: 1px solid #ddd;
}
.weather-detail-10days th, .weather-detail-10days td {
	text-align: center;
	padding: 8px;
}
.weather-detail-10days tr:nth-child(even) {
	background-color: #f7f7f7;
}
.weather-detail-10days .wthTable th {
	font-size: .9em;
	color: #5f6368;
	font-weight: 400;
}
.weather-detail-10days .wthTable__legend {
	font-size: .9em;
	color: #5f6368;
	margin-left: 7px;
}
.weather-detail-10days .wthTable td {
	text-align: center;
	padding: 8px 16px;
	white-space: nowrap;
	vertical-align: middle;
}
.weather-detail-10days .wthTable__wthIcon {
	height: 33px;
	width: 33px;
}
.weather-detail-10days .wthTable__wthIcon img{
	width: 100%;
	height: auto;
}
.weather-detail-10days .wthTable td span{
	color: black;
	font-family: Helvetica,Arial,Sans-Serif,serif;
	font-size: 110%;
}

@media (min-width: 1200px){
	.weather-detail-5days .weather-forecast-inner,
	.weather-detail-15days .weather-forecast-inner,
	.weather-detail-10days .weather-forecast-inner{
		display: flex;
		justify-content: space-between;
		position: relative;
		z-index: 2;
	}
	.weather-detail-5days .weather-forecast-content ,
	.weather-detail-15days .weather-forecast-content ,
	.weather-detail-10days .weather-forecast-content {
		width: 100%;
		max-width: 740px;
		margin-right: 20px;
	}
	.weather-detail-5days .weather-highlight-live ,
	.weather-detail-15days .weather-highlight-live ,
	.weather-detail-10days .weather-highlight-live {
		width: 360px;
		flex-shrink: 0;
		margin-top: 0;
	}
}


/*20days*/
.w_weather_boxes {
	width: 100%;
	margin-left: 0px;
	margin-top: 15px;
	display: inline-block;
}
.w_weather {
	float: left;
	width: 19%;
	background: #d1efff;
	border: 1px solid #6bcbff;
	border-radius: 8px;
	padding: 10px;
	margin-right: 1%;
	margin-bottom: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}
.w_weather .day {
	font-size: 16px;
	float: left;
	line-height: 20px;
	width: 100%;
}
.w_weather .day b {
	width: 100%;
	text-align: center;
	overflow: hidden;
	display: inline-block;
	font-weight: bold;
	color: #000;
}
.w_weather .date {
	font-size: 14px;
	display: inline-block;
	line-height: 20px;
	width: 100%;
	color: #444;
	text-align: center;
}
.w_weather img {
	width: 50px;
	height: 50px;
	margin-top: 10px;
	display: inline;
}
.w_weather .temp {
	font-size: 14px;
	line-height: 18px;
	width: 100%;
	display: inline-block;
	margin-top: 10px;
	text-align: center;
	font-weight: bold;
	color: #000;
}
@media (max-width: 991px) {
	.w_weather{
		width: 32%;
	}
}
@media (max-width: 549px) {
	.w_weather{
		width: 49%;
	}
}

