@charset "UTF-8";


html,
body {
    width: 100vw;
    height: 100vh;
    font-family: "PretendardRegular";
    font-size: 0.6vw;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}

:root {
    --background: #FBFBFB;
    --green: #00A870;
    --yellow: #EDAE2F;
    --red: #E34D59;
    --blue: #4787F0;
    --orange: #F57F1D;
    --greenOp: #00A8701A;
    --yellowOp: #EDAE2F1A;
    --redOp: #E34D591A;
    --blueOp: #4787F01A;
    --orangeOp: #F57F1D1A;
    --fontColor: #000000;
    --subFontColor: rgba(0,0,0,0.5);
    --borderColor: #E1E1E1;
    --border: 1px solid var(--borderColor);
    --radius: 10px;
    --gap: 3rem;
    --shadow: 0 3px 6px rgba(0,0,0,0.16);
}

#mapSection {
  	border-width: 3px;
}
/* 대시보드 레이아웃 시작 */

.cj_dashboard_wrap {
    display: flex;
    flex-direction: column;
    gap: calc(var(--gap) / 2);
    width: 100vw;
    height: 100vh;
    min-width: 0;
    min-height: 0;
    box-sizing: border-box;
    padding: 2rem 3rem 3rem 3rem;
    background-color: var(--background);
    overflow: hidden;
}

.cj_dashboard_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cj_dashboard_main {
    display: flex;
    gap: 2.5rem;
    flex: 1 0 auto;
    height: 0;
    min-height: 0;
    overflow: hidden;
}

.cj_dashboard_main .dashboard_left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1 0 auto;
    width: 0;
    min-width: 0;
}

.cj_dashboard_main .dashboard_left .dashboard_bottom {
	display: flex;
	gap: 0.7rem;
	width: 100%;
	height: 25rem;
}

.cj_dashboard_main .dashboard_right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 40%;
}

.cj_dashboard_main .dashboard_section {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cj_dashboard_main .dashboard_left > .dashboard_section:nth-child(1) {
    width: 100%;
    flex: 1 0 auto;
	height: 0;
	min-height: 0;
    border: var(--border);
    border-radius: var(--radius);
}

.cj_dashboard_main .dashboard_left .dashboard_bottom .dashboard_section:nth-child(1) {
	display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    width: 0;
    min-width: 0;
}

.cj_dashboard_main .dashboard_left .dashboard_bottom .dashboard_section:nth-child(2) {
	display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    width: 0;
    min-width: 0;
}

.cj_dashboard_main .dashboard_right .dashboard_section:nth-child(1) {
    width: 100%;
    flex: 1 0 auto;
	height: 0;
	min-height: 0;
    border: var(--border);
    border-radius: var(--radius);
}

.cj_dashboard_main .dashboard_right .dashboard_section:nth-child(2) {
    height: 25rem;
}

/* .dashboard_right .dashboard_section:first-child {
    flex-shrink: 0;
}

.dashboard_right .dashboard_section:last-child {
    display: flex;
    flex-direction: column;
} */

.cctv_list {
    flex-grow: 1;
}

/* 대시보드 상세 */

/* 헤더 */

.cj_dashboard_header > span {
    font-size: 1.8rem;
    font-family: "PretendardMedium";
}


/* 섹션1 */

.dashboard_map {
    position: relative;
    width: 100%;
    height: 100%;
}

.dashboard_tab {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    width: 8rem;
    height: 3rem;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.dashboard_tab > li {
    width: 50%;
    height: 100%;
    box-sizing: border-box;
}

.dashboard_tab > li:first-child {
    border-right: var(--border);
}

.dashboard_tab > li > input {
    display: none;
}

.dashboard_tab > li > label {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
    color: var(--subFontColor);
    font-size: 1.3rem;
    cursor: pointer;
}

.dashboard_tab > li > input:checked + label {
    color: var(--fontColor);
}

.dashboard_legend {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 10px;
}

.dashboard_legend > li {
    width: 3rem;
    height: 3rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.dashboard_legend > li > input {
    display: none;
}

.dashboard_legend > li > label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.dashboard_legend > li:nth-child(1) > input:checked + label {
    background-color: var(--blue);
}

.dashboard_legend > li:nth-child(2) > input:checked + label {
    background-color: var(--green);
}

.dashboard_legend > li:nth-child(3) > input:checked + label {
    background-color: var(--red);
}

.dashboard_legend > li > label:after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background-size: 1.5rem;
    background-repeat: no-repeat;
    background-position: center;
}

.dashboard_legend > li:nth-child(1) > label:after {
    background-image: url(../img/main/legend/ico1_normal.svg);
}

.dashboard_legend > li:nth-child(2) > label:after {
    background-image: url(../img/main/legend/ico2_normal.svg);
}

.dashboard_legend > li:nth-child(3) > label:after {
    background-image: url(../img/main/legend/ico3_normal.svg);
}

.dashboard_legend > li:nth-child(1) > input:checked + label:after {
    background-image: url(../img/main/legend/ico1_active.svg);
}

.dashboard_legend > li:nth-child(2) > input:checked + label:after {
    background-image: url(../img/main/legend/ico2_active.svg);
}

.dashboard_legend > li:nth-child(3) > input:checked + label:after {
    background-image: url(../img/main/legend/ico3_active.svg);
}


/* 섹션2 */
.weather_list {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1 0 auto;
    height: 0;
    min-height: 0;
    box-sizing: border-box;
    padding: 1rem;
    background-color: #fff;
    border: var(--border);
   	border-radius: var(--radius);
}

.weather_list > li > ul {
	display: flex;
	align-items: center;
	height: 100%;
}

.weather_info1 {
	justify-content: center;
	gap: 1rem;
}

.weather_info1 > li:last-child {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.weather_info1 > li > img {
	height: 6rem;
}

.weather_info1 > li > span {
	font-family: PretendardSemiBold;
	font-size: 4rem;
}

.weather_info1 > li > div:first-child > span {
	font-size: 1.1rem;
}

.weather_info1 > li > div:first-child > span:first-child:before {
	content: "↑";
	color: var(--red);
}

.weather_info1 > li > div:first-child > span:last-child:before {
	content: "↓";
	color: var(--blue);
}

.weather_info1 > li > div:last-child {
	font-size: 1.2rem;
	color: var(--subFontColor);
}

.weather_info1 > li > div:last-child > span {
	color: var(--fontColor);
}

.weather_info2 {
	justify-content: center;
	gap: 1rem;
}

.weather_info2 > li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.2rem;
	line-height: 1.5;
}

.weather_info2 > li > span:first-child {
	color: var(--subFontColor);
}

.weather_info2 > li > span:last-child {
	font-family: PretendardSemiBold;
}

.air_list {
	width: 100%;
	gap: 1rem;
}

.air_list > li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
	flex: 1 0 auto;
	width: 0;
	min-width: 0;
	height: 6rem;
	border-radius: var(--radius);
}

.air_list > li > div {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.air_list > li > div > span:first-child {
	font-size: 1.1rem;
	color: var(--subFontColor);
}

.air_list > li > div > span:last-child {
	font-size: 1.5rem;
}

.air_list > li > img {
	height: 4rem;
}

/* 아주좋음 */
.air_list > li.type1 {
    background-color: #64CA641A;
}

.air_list > li.type1 > div > span:last-child {
	color: #64CA64;
}

/* 좋음 */
.air_list > li.type2 {
    background-color: #0BC9451A;
}

.air_list > li.type2 > div > span:last-child {
    color: #0BC945;
}

/* 보통 */
.air_list > li.type3 {
    background-color: #FFD2211A;
}

.air_list > li.type3 > div > span:last-child {
    color: #FFD221;
}

/* 나쁨 */
.air_list > li.type4 {
    background-color: #FF85461A;
}

.air_list > li.type4 > div > span:last-child {
    color: #FF8546;
}

/* 아주 나쁨 */
.air_list > li.type5 {
    background-color: #FF565F1A;
}

.air_list > li.type5 > div > span:last-child {
    color: #FF565F;
}


/* 섹션3 */

.cctv_box {
    width: 100%;
    height: 100%;
}

.cctv_player_empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;  /* 원하는 높이로 조절 */
    background-color: rgb(34, 34, 34);
    /* border-radius: 14px; */
}

.cctv_player_empty span {
    color: #d3d3d3;
    font-size: 1.3em;
    letter-spacing: 0.01em;
}

.cctv_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3rem;
    box-sizing: border-box;
    padding: 0 1rem;
    background-color: rgba(0,0,0,0.7);
    text-align: right;
}

.cctv_bottom .btn_full {
    width: 3rem;
    height: 3rem;
    padding: 0;
    background-image: url(../img/main/icn_full.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
}

.cctv_bottom .btn_full:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 13px;
    
    background-repeat: no-repeat;
    background-size: 150px 250px;
    background-position: -14px -219px;
}


/* 섹션3 */

.cj_dashboard_main .dashboard_left .dashboard_section:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.dashboard_title {
    display: flex;
    justify-content: space-between;
    height: 3.5rem;
}

.dashboard_title > span:first-child {
    font-size: 1.7rem;
}

.dashboard_title > span:last-child {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	height: fit-content;
    font-size: 1.4rem;
    color: var(--subFontColor);
}

.parking_list {
    flex: 1 0 auto;
    height: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem; 
}

.parking_list > li {
    display: flex;
    align-items: center;
    flex: 1 0 auto;
    height: 0;
    min-height: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: var(--radius);
    border: var(--border);
    overflow: hidden;
}

.parking_list > li > .parking_header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
   	height: 100%;
   	width: 6rem;
}

.parking_list > li > .parking_header > span {
	font-family: PretendardSemiBold;
	font-size: 2rem;
}

.parking_list > li > div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6.5rem;
	height: 5.5rem;
}

.parking_list > li > div > button {
	width: 5.5rem;
    height: 2.5rem;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1rem;
    background-color: #333333;
	border: var(--border);
	border-radius: 3rem;
	font-size: 1rem;
	color: #fff;
	overflow: hidden;
	transition: width 0.3s, height 0.3s, border-radius 0.3s, background-color 0.3s;
}

/* .parking_list > li > div:hover > button { */
/* 	width: 3rem; */
/* 	height: 3rem; */
/* 	background-color: #111111; */
/* 	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.414' height='16' viewBox='0 0 16.414 16'%3E%3Cg transform='translate(-33 -12)'%3E%3Crect id='swap-right_Background_' data-name='swap-right (Background)' width='16' height='16' transform='translate(33 12)' fill='none'/%3E%3Cpath id='swap-right' d='M0,3.97V5H14.408a.542.542,0,0,0,.418-.932L10.425,0,9.637.728,13.143,3.97Z' transform='translate(34 17)' fill='%23fff' stroke='%23fff' stroke-width='0.8'/%3E%3C/g%3E%3C/svg%3E%0A"); */
/* 	border-radius: 50%; */
/* 	color: #111111; */
/* } */

.parking_detail_list {
    display: flex;
    flex: none;
    width: 70%;
    box-sizing: border-box;
}

.parking_detail_list > li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex: 1 0 auto;
    width: 0;
    min-width: 0;
    font-size: 1.4rem;
}

.parking_detail_list > li .parking_title {
	font-family: PretendardSemiBold;
    font-size: 1rem;
}

/* .parking_detail_list > li .parking_title::before {
    content: "";
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
} */

/* .parking_detail_list > li:nth-child(1) .parking_title::before {
    background-image: url(../img/main/parking_icn1.svg);
}

.parking_detail_list > li:nth-child(2) .parking_title::before {
    background-image: url(../img/main/parking_icn2.svg);
}

.parking_detail_list > li:nth-child(3) .parking_title::before {
    background-image: url(../img/main/parking_icn3.svg);
} */

.parking_detail_list > li .parking_total {
    font-size: 1.5rem;
    color: var(--subFontColor);
    letter-spacing: -2px;
}

.parking_list > li .parking_now {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.3rem;
	font-size: 1.2rem;
	font-family: PretendardMedium;
}

/* 왼쪽 1F */
/* #floor_1F {
  flex: 1;
  display: flex;
  flex-direction: column;
} */

/* 오른쪽 묶음 */
.right-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 20px;
}

/* 각각의 층 */
.right-column li {
  flex: 1;
}

/* 주차장 혼잡도 색상 */

/* .parking_list > li.green {
    border: 1px solid var(--green);
}

.parking_list > li.yellow {
    border: 1px solid var(--yellow);
}

.parking_list > .red {
    border: 1px solid var(--red);
} */

/* .parking_list > .green > .parking_header {
    background-color: var(--green);
}

.parking_list > .yellow > .parking_header {
    background-color: var(--yellow);
}

.parking_list > .red > .parking_header {
    background-color: var(--red);
} */

.green .parking_detail_list > li .parking_total > span:first-child {
    color: var(--green);
}

.yellow .parking_detail_list > li .parking_total > span:first-child {
    color: var(--yellow);
}

.red .parking_detail_list > li .parking_total > span:first-child {
    color: var(--red);
}

.parking_list > li.green .parking_now {
	/* background-color: var(--greenOp);
    border: 1px solid var(--green); */
    color: var(--green);
}

.parking_list > li.yellow .parking_now {
	/* background-color: var(--yellowOp);
    border: 1px solid var(--yellow); */
    color: var(--yellow);
}

.parking_list > li.red .parking_now {
	/* background-color: var(--redOp);
    border: 1px solid var(--red); */
    color: var(--red);
}
/* 층 text 색깔 적용 */
.parking_list > li.green .parking_floor {
	/* background-color: var(--greenOp);
    border: 1px solid var(--green); */
    color: var(--green);
}

.parking_list > li.yellow .parking_floor {
	/* background-color: var(--yellowOp);
    border: 1px solid var(--yellow); */
    color: var(--yellow);
}

.parking_list > li.red .parking_floor {
	/* background-color: var(--redOp);
    border: 1px solid var(--red); */
    color: var(--red);
}


/* 섹션4 */

.cj_dashboard_main .dashboard_right .dashboard_section:nth-child(2) {
    display: flex;
    flex-direction: column;
    /* gap: calc(var(--gap) / 2 - 1rem); */
}

.cctv_list_header {
    display: flex;
    height: 3.5rem;
    margin-bottom: 1rem;
}

.cctv_tab {
    display: flex;
    gap: 10px;
}

.cctv_tab > li > input {
    display: none;
}

.cctv_tab > li label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 8rem;
    height: 3.4rem;
    background-color: #fff;
    border-radius: 1rem;
    border: var(--border);
    box-sizing: border-box;
    font-size: 1.4rem;
    cursor: pointer;
}

.cctv_tab > li label:before {
    content: "";
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
}

.cctv_tab > li:nth-child(1) label:before {
    background-image: url(../img/main/tab_icn1.svg);
} 

.cctv_tab > li:nth-child(2) label:before {
    background-image: url(../img/main/tab_icn2.svg);
} 

.cctv_tab > li:nth-child(3) label:before {
    background-image: url(../img/main/tab_icn3.svg);
}

.cctv_tab > li:nth-child(1) input:checked + label {
    border: 2px solid var(--blue);
}

.cctv_tab > li:nth-child(2) input:checked + label {
    border: 2px solid var(--green);
}

.cctv_tab > li:nth-child(3) input:checked + label {
    border: 2px solid var(--red);
}

.cctv_list {
    width: 100%;
    height: 100%;
}

.cctv_list .slick-list,
.cctv_list .slick-track {
    height: 100%;
}

.cctv_list .slick-list {
    margin: 0;
}

.cctv_list .slick-slide {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: -0.35rem 0.35rem;
}

.cctv_list .slick-slide > div {
    flex: 1 0 auto;
    height: 0;
    min-height: 0;
    box-sizing: border-box;
    padding: 0.35rem 0;
}

.cctv_list .slick-slide > div > div {
    display: flex !important;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 1.5rem;
    background-color: #fff;
    border-radius: 10px;
    border: var(--border);
    font-size: 1.4rem;
    cursor: pointer;
}

.cctv_list.blue .slick-slide > div > div.active {
    background-color: var(--blueOp);
    color: var(--blue);
}

.cctv_list.green .slick-slide > div > div.active {
    background-color: var(--greenOp);
    color: var(--green);
}

.cctv_list.red .slick-slide > div > div.active {
    background-color: var(--redOp);
    color: var(--red);
}

.cctv_list .slick-slide > div > div .cctv_icon {
    width: 2.5rem;
    height: 2.5rem;
    background-image: url(../img/main/cctv_icn1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.cctv_list.blue .slick-slide > div > div.active .cctv_icon {
    background-image: url(../img/main/cctv_icn2.svg);
}

.cctv_list.green .slick-slide > div > div.active .cctv_icon {
    background-image: url(../img/main/cctv_icn3.svg);
}

.cctv_list.red .slick-slide > div > div.active .cctv_icon {
    background-image: url(../img/main/cctv_icn4.svg);
}

.cctv_list .slick-slide > div > div .cctv_title {
    flex: 1 0 auto;
    width: 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-info {
    font-size: 14px;
    color: #333;
    margin-top: 4px;
}


/* CCTV 리스트 dot 페이지네이션 스타일 (숫자 버튼 스타일 제거, dot만) */
.nav_dot {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 8px 10px 8px 0px;
    gap: 0;
    width: 100%;
    min-height: 32px;
}
.nav_dot .slick-dots {
    display: flex !important;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.nav_dot .slick-dots li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav_dot .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e1e4ea;
    border: none;
    padding: 0;
    font-size: 0;
    cursor: pointer;
    transition: background 0.2s;
}
.nav_dot .slick-dots li.slick-active button {
    background: var(--blue);
}

.ol-ctx-menu-container {
    min-width: 180px;
    max-width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18), 0 1.5px 4px rgba(0,0,0,0.10);
    border: 1px solid #e3e6ee;
    padding: 10px 10px;
    font-family: 'Pretendard', 'Noto Sans KR', Arial, sans-serif;
    font-size: 1.15rem;
    color: #222;
    line-height: 2.1;   /* 줄 간격 넓힘 */
    z-index: 10000;
}

.ol-ctx-menu-container li,
.ol-ctx-menu-container div {
    padding: 10px 0;    /* 위아래 여백 넓힘 */
    padding: 10px 0 10px 16px;
    border-bottom: 1px solid #f2f3f7;
    cursor: pointer;
    transition: background 0.15s;
}

.ol-ctx-menu-container li:last-child,
.ol-ctx-menu-container div:last-child {
    border-bottom: none;
}

@media screen and (max-width: 1601px) {
    html,
    body {
        font-size: 12px;
    }
}

.pagination {
	display: flex;
	align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    height: 20px;
}

.page-nav-btn {
	width: 40px;
	height: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.page-nav-btn.prev {
	background-image: url(../img/main/paging/prev_normal.svg);
}

.page-nav-btn.next {
	background-image: url(../img/main/paging/next_normal.svg);
}

.page-nav-btn:hover:not(.disabled) {
	background-color: transparent !important;
}

.page-nav-btn.prev:hover:not(.disabled) {
	background-image: url(../img/main/paging/prev_active.svg);
}

.page-nav-btn.next:hover:not(.disabled) {
	background-image: url(../img/main/paging/next_active.svg);
}



/* 도면 팝업 */
.cj_parking_popup {
	display: none;
	width: 85vw;
	height: auto;
	box-sizing: border-box;
	padding: 40px;
	background-color: #fff;
	border: var(--border);
	border-radius: 10px;
	box-shadow: var(--shadow);
	font-size: 11px;
}

.btn_p_close {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14.849' height='14.849' viewBox='0 0 14.849 14.849'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23111; %7D %3C/style%3E%3C/defs%3E%3Cg transform='translate(-1625.075 -243.075)'%3E%3Cline class='cls-1' y2='20' transform='translate(1639.571 243.429) rotate(45)'/%3E%3Cline class='cls-1' y1='20' transform='translate(1639.571 257.571) rotate(135)'/%3E%3C/g%3E%3C/svg%3E");
}

/* 3F만 독립적으로 초록색 적용 */
/* #floor_3F.green {
    background-color: #27ae60 !important;
    color: white !important;
} */

/* 3F만 독립적으로 노란색 적용 */
/* #floor_3F.yellow {
    background-color: #f1c40f !important;
    color: black !important;
} */

/* 3F만 독립적으로 빨간색 적용 */
/* #floor_3F.red {
    background-color: #e74c3c !important;
    color: white !important;
} */

