/* font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");

:root {
  --color_405189: #405189;
  --color_4679CC: #4679cc;
  --color_F2F5FF: #f2f5ff;
  --color_ABB9E8: #abb9e8;
  --color_F3F3F9: #f3f3f9;
  --color_E9EBEC: #e9ebec;
  --color_495057: #495057;

  --color_0823f0: #0823f0;
}

body {
  display: grid;
  grid-template-columns: 240px 1fr;
}

/* 셀렉트 */
.cm_select01 {
  width: 18rem;
  background-color: #fff;
  border: 1px solid var(--color_E9EBEC);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  color: var(--color_495057);
  /* padding: 0 10px; */
  box-sizing: border-box;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}
.cm_select01 .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  padding: 0 10px;
}
.cm_select01 .title p {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cm_select01 .title img {
  margin-left: 5px;
}
.compare_live_view .cm_select01 .dropdown {
  padding: 0 !important;
  top: calc(100% + 4px);
  display: none;
  width: calc(100% - 2px);
  max-height: 410px;
  overflow: hidden auto;
  position: absolute;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid var(--color_E9EBEC);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.cm_select01 .dropdown {
  padding: 0 !important;
  top: calc(100% + 4px);
  display: none;
  max-height: 410px;
  overflow: hidden auto;
  position: absolute;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid var(--color_E9EBEC);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.cm_select01 .dropdown.active {
  display: grid;
  width: 100%;
}
.cm_select01 .dropdown.active::-webkit-scrollbar {
  /* display: none; */
}

.cm_select01 .dropdown li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 10px 10px;
}
.cm_select01 .dropdown li:hover {
  background-color: #e9ebec;
}
.cm_select01 .dropdown li p {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 버튼 */
.cm_btn01 {
  background-color: var(--color_405189);
  color: #fff;
  border-radius: 4px;
}
.cm_btn01 svg path {
  stroke: #fff;
}

.cm_btn02 {
  background-color: #fff;
  color: var(--color_4679CC);
  border: 1px solid var(--color_4679CC);
  border-radius: 4px;
}
.cm_btn02 svg path {
  stroke: var(--color_4679CC);
}

.cm_btn03 {
  background-color: var(--color_F2F5FF);
  color: var(--color_4679CC);
  border: 1px solid var(--color_4679CC);
  border-radius: 4px;
}
.cm_btn03 svg path {
  stroke: var(--color_4679CC);
}

.cm_btn04 {
  border: 1px solid var(--color_ABB9E8);
  background-color: var(--color_F2F5FF);
  color: #494949;
}
.cm_btn04 svg path {
  stroke: #494949;
}

.cm_btn05 {
  background-color: var(--color_4679CC);
  color: #fff;
  border-radius: 4px;
}
.cm_btn05 svg path {
  stroke: #fff;
}

.cm_btn06 {
  background-color: #fff;
  border: 1px solid var(--color_E9EBEC);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  color: #494949;
}

.cm_btn06.back_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  width: 100%;
  white-space: nowrap;
  gap: 2px;
}

.cm_btn06.active {
  background-color: #fff;
  border: 1px solid var(--color_E9EBEC);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  color: #494949;
}

/* 스크롤 */
.cm_scroll01 {
  overflow: auto;
}
.cm_scroll01::-webkit-scrollbar {
  width: 0px;
}
.cm_scroll01::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.cm_scroll01::-webkit-scrollbar-track {
  background-color: transparent;
}
.cm_scroll02 {
  overflow: auto;
}
.cm_scroll02::-webkit-scrollbar {
  width: 13px;
}
.cm_scroll02::-webkit-scrollbar-thumb {
  width: 7px;
  background-color: #6d7080;
  border-radius: 11px;
  background-clip: padding-box;
  border: 3px solid transparent;
}
.cm_scroll02::-webkit-scrollbar-track {
  background-color: transparent;
}

/* 테이블 */
.cm_table01 {
  border-collapse: separate;
  border-spacing: 0;
}
.cm_table01 .table_th th:first-child {
  border-radius: 4px 0 0 4px;
  border-left: 1px solid var(--color_ABB9E8);
}
.cm_table01 .table_th th:last-child {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid var(--color_ABB9E8);
}
.cm_table01 th {
  height: 40px;
  background-color: var(--color_F2F5FF);
  border-top: 1px solid var(--color_ABB9E8);
  border-bottom: 1px solid var(--color_ABB9E8);
  color: #495057;
  font-weight: 400;
  position: sticky;
  z-index: 2;
  top: 0;
}
.cm_table01 td {
  text-align: center;
  border-bottom: 1px solid var(--color_E9EBEC);
  color: #494949;
}
.cm_table01 thead tr:last-child {
  height: 10px;
}
.cm_table01 tbody tr:first-child td:first-child {
  border-radius: 4px 0 0 0;
}
.cm_table01 tbody tr:first-child td:last-child {
  border-radius: 0 4px 0 0;
}
.cm_table01 tbody tr:last-child td:first-child {
  border-radius: 0 0 0 4px;
}
.cm_table01 tbody tr:last-child td:last-child {
  border-radius: 0 0 4px 0;
}
.cm_table01 tbody tr:first-child td {
  border-top: 1px solid var(--color_E9EBEC);
}
.cm_table01 tbody td:first-child {
  border-left: 1px solid var(--color_E9EBEC);
}
.cm_table01 tbody td:last-child {
  border-right: 1px solid var(--color_E9EBEC);
}
.cm_table01 tbody tr:hover {
  background-color: var(--color_F2F5FF);
}

.cm_table02 {
  border: 1px solid var(--color_E9EBEC);
}
.cm_table02 tr:not(:last-child) {
  border-bottom: 1px solid var(--color_E9EBEC);
}
.cm_table02 th {
  background-color: var(--color_F3F3F9);
  height: 30px;
  width: 109px;
  color: #494949;
  font-size: 1.3rem;
  font-weight: 400;
}
.cm_table02 td {
  color: #494949;
  text-align: center;
  font-size: 1.3rem;
}

/* 테이블 */
.cm_table03 {
  border-collapse: separate;
  border-spacing: 0;
}
.cm_table03 .table_th th:first-child {
  border-radius: 4px 0 0 4px;
  border-left: 1px solid var(--color_ABB9E8);
}
.cm_table03 .table_th th:last-child {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid var(--color_ABB9E8);
}
.cm_table03 th {
  height: 60px;
  background-color: var(--color_F2F5FF);
  border-top: 1px solid var(--color_ABB9E8);
  border-bottom: 1px solid var(--color_ABB9E8);
  color: #495057;
  font-weight: 400;
  position: sticky;
  z-index: 2;
  top: 0;
}
.cm_table03 td {
  text-align: center;
  border-bottom: 1px solid var(--color_E9EBEC);
  color: #494949;
}
.cm_table03 tbody tr:hover {
  background-color: var(--color_F2F5FF);
}

.cm_table03 thead tr:last-child {
  height: 10px;
}
.cm_table03 tbody tr:first-child td:first-child {
  border-radius: 4px 0 0 0;
}
.cm_table03 tbody tr:first-child td:last-child {
  border-radius: 0 4px 0 0;
}
.cm_table03 tbody tr:last-child td:first-child {
  border-radius: 0 0 0 4px;
}
.cm_table03 tbody tr:last-child td:last-child {
  border-radius: 0 0 4px 0;
}
.cm_table03 tbody tr:first-child td {
  border-top: 1px solid var(--color_E9EBEC);
}
.cm_table03 tbody td:first-child {
  border-left: 1px solid var(--color_E9EBEC);
}
.cm_table03 tbody td:last-child {
  border-right: 1px solid var(--color_E9EBEC);
}

/* 테이블 */
.cm_table04 {
  border-collapse: separate;
  border-spacing: 0;
}
.cm_table04 .table_th th:first-child {
  border-radius: 4px 0 0 4px;
  border-left: 1px solid var(--color_ABB9E8);
}
.cm_table04 .table_th th:last-child {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid var(--color_ABB9E8);
}
.cm_table04 th {
  height: 30px;
  background-color: var(--color_F2F5FF);
  border-top: 1px solid var(--color_ABB9E8);
  border-bottom: 1px solid var(--color_ABB9E8);
  color: #495057;
  font-weight: 400;
  position: sticky;
  z-index: 2;
  top: 0;
}
.cm_table04 td {
  text-align: center;
  border-bottom: 1px solid var(--color_E9EBEC);
  color: #494949;
}
.cm_table04 tbody tr:hover {
  background-color: var(--color_F2F5FF);
}

.cm_table04 thead tr:last-child {
  height: 10px;
}
.cm_table04 tbody tr:first-child td:first-child {
  border-radius: 4px 0 0 0;
}
.cm_table04 tbody tr:first-child td:last-child {
  border-radius: 0 4px 0 0;
}
.cm_table04 tbody tr:last-child td:first-child {
  border-radius: 0 0 0 4px;
}
.cm_table04 tbody tr:last-child td:last-child {
  border-radius: 0 0 4px 0;
}
.cm_table04 tbody tr:first-child td {
  border-top: 1px solid var(--color_E9EBEC);
}
.cm_table04 tbody td:first-child {
  border-left: 1px solid var(--color_E9EBEC);
}
.cm_table04 tbody td:last-child {
  border-right: 1px solid var(--color_E9EBEC);
}

/* 테이블 */
.cm_table05 {
  border-collapse: separate;
  border-spacing: 0;
}
.cm_table05 .table_th th:first-child {
  border-radius: 4px 0 0 4px;
  border-left: 1px solid var(--color_ABB9E8);
}
.cm_table05 .table_th th:last-child {
  border-radius: 0 4px 4px 0;
  border-right: 1px solid var(--color_ABB9E8);
}
.cm_table05 th {
  height: 40px;
  background-color: var(--color_F2F5FF);
  border-top: 1px solid var(--color_ABB9E8);
  border-bottom: 1px solid var(--color_ABB9E8);
  color: #495057;
  font-weight: 400;
  position: sticky;
  z-index: 2;
  top: 0;
}
.cm_table05 td {
  height: 40px;
  text-align: center;
  border-bottom: 1px solid var(--color_E9EBEC);
  color: #494949;
}
.cm_table05 tbody tr:hover {
  background-color: var(--color_F2F5FF);
}

.cm_table05 thead tr:last-child {
  height: 10px;
}
.cm_table05 tbody tr:first-child td:first-child {
  border-radius: 4px 0 0 0;
}
.cm_table05 tbody tr:first-child td:last-child {
  border-radius: 0 4px 0 0;
}
.cm_table05 tbody tr:last-child td:first-child {
  border-radius: 0 0 0 4px;
}
.cm_table05 tbody tr:last-child td:last-child {
  border-radius: 0 0 4px 0;
}
.cm_table05 tbody tr:first-child td {
  border-top: 1px solid var(--color_E9EBEC);
}
.cm_table05 tbody td:first-child {
  border-left: 1px solid var(--color_E9EBEC);
}
.cm_table05 tbody td:last-child {
  border-right: 1px solid var(--color_E9EBEC);
}
/*********************************************
* 공통 
*********************************************/
/* 전체_네비게이션 */
.cm_main_navi {
  display: flex;
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 7px;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.cm_main_navi a {
  display: flex;
  align-items: center;
  height: 34px;
  border-radius: 4px;
  color: var(--color_4679CC);
  font-size: 1.5rem;
  padding: 0 18px;
}
.cm_main_navi a.active {
  background-color: var(--color_4679CC);
  color: #fff;
  justify-content: center;
}
/* 사이드_네비게이션 */
.cm_side_navi {
  background-color: var(--color_405189);
  width: 240px;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.cm_side_navi .company_info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 30px 20px;
}
.cm_side_navi .company_info .company_ico {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}
.cm_side_navi .company_info .company_name {
  color: #fff;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 1.3rem;
}
.cm_side_navi .company_info .company_people {
  color: var(--color_ABB9E8);
  font-size: 1.2rem;
}
.cm_side_navi button.menu {
  height: 48px;
}

.cm_side_navi .menu .menuIconWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

/* 메뉴 */
.cm_side_navi nav {
  padding: 0 20px;
}
.cm_side_navi nav button {
  width: 100%;
}
.cm_side_navi nav button p {
  flex-grow: 1;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color_ABB9E8);
  text-align: left;
}
.cm_side_navi nav [class*="menu"]:not(:first-child) {
  margin-top: 20px;
}
.cm_side_navi nav [class*="menu"].active p {
  color: #fff;
}
.cm_side_navi nav [class*="menu"].active img {
  filter: brightness(0) invert(1);
}
.cm_side_navi nav [class*="menu"] img.arrow {
  transition: transform 0.3s;
}
.cm_side_navi nav [class*="menu"].active img.arrow {
  transform: rotate(90deg);
}
.cm_side_navi nav .dropdown {
  display: none;
  gap: 20px;
  margin-top: 10px;
}
.cm_side_navi nav .dropdown.active {
  display: grid;
}
.cm_side_navi nav .dropdown a {
  display: flex;
  align-items: center;
  color: var(--color_ABB9E8);
  font-size: 14px;
  font-weight: 500;

  cursor: pointer;
  &:hover {
    color: #fff;
  }
}
.cm_side_navi nav .dropdown a::before {
  content: "";
  width: 7px;
  height: 2px;
  margin-right: 8px;
  background-color: var(--color_ABB9E8);
}

.cm_side_navi nav .dropdownA.active {
  color: #fff;
}

/*********************************************
* 탐지장비 운행기록 리스트, 포트홀 현황
*********************************************/
.cm_search_frame {
  height: 32px;
  display: flex;
  position: absolute;
  gap: 10px;
}
.cm_search_frame .search_wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  /* position: absolute;
  top: 0;
  left: 0; */
  z-index: 996;
}

.cm_search_frame .search_wrap .cm_select01.office {
  position: relative;
  width: 180px;
  padding: 0;
}
.cm_search_frame .search_wrap .cm_select01.office .title {
  padding: 0 10px;
}
.cm_select01.office .dropdown {
  position: absolute;
  /* top: calc(100% - 1px); */
  margin: 0;
  padding: 15px 10px 10px;
  background: #ffffff;
  border: 1px solid var(--color_E9EBEC);
  border-top: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.cm_select01.office .dropdown.active {
  width: 107%;
}

.cm_search_frame .search_wrap .cm_select01.office .dropdown p {
  width: 145px;
}
.cm_search_frame .search_wrap .cm_select01.year {
  width: 100px;
}
.cm_search_frame .search_wrap .btns_wrap {
  display: flex;
  background-color: #fff;
  border: 1px solid var(--color_E9EBEC);
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
.cm_search_frame .search_wrap .btns_wrap button {
  width: 90px;
  height: 30px;
  color: var(--color_495057);
  white-space: nowrap;
}

.cm_search_frame .search_wrap .btns_wrap button:hover {
  color: var(--color_4679CC);
}
.cm_search_frame .search_wrap .btns_wrap button:not(:first-child) {
  border-left: 1px solid var(--color_E9EBEC);
}
.cm_search_frame .search_wrap .calender_wrap {
  display: flex;
  height: 32px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  overflow: hidden;
}
.cm_search_frame .search_wrap .calender_wrap input {
  width: 130px;
  height: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  border: 1px solid var(--color_E9EBEC);
}
/* Calendar 기본 달력 여는 아이콘 제거 */
::-webkit-calendar-picker-indicator {
  display: none;
}

.cm_search_frame .search_wrap .calender_wrap button {
  width: 35px;
  background-color: var(--color_405189);
}
.cm_search_frame .search_wrap .search_btn {
  width: 60px;
  height: 32px;
}

.popup_layer {
  width: 100%;
}

/*****************
* Custom Calender
*********************/
.CustomCalander td {
  width: 30px;
  height: 30px;
  font-size: small;
}

.CustomCalander {
  text-align: center;
  position: absolute;
  margin-top: 45px;
  top: 0;
  width: 200px;
  background: white;
  z-index: 998;
}

.CustomCalander thead tr:first-child td {
  font-weight: bold;
}

.CustomCalander thead tr:last-child td {
  background-color: white;
  border-radius: 5px;
  color: black;
}

.CustomCalander .Dates {
  background-color: #ffffff;
  cursor: pointer;
}

.CustomCalander .Dates.choiceDay {
  background-color: #3e85ef;
  border-radius: 500%;
  color: #fff;
  cursor: pointer;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 997;
}

.modal-container {
  width: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.modal-container .modal-header {
  padding: 10px 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  position: relative;
}

.modal-container .modal-content {
  background: #f1f5ff;
  padding: 15px 15px 0px 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}

.modal-container .date-selection {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  height: 64px;
  position: relative;
  overflow: hidden;
}

.modal-container .date-title {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
}

.modal-container .date-picker {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
}

.modal-container .date-picker .calender_wrap {
  display: flex;
  height: 32px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  overflow: hidden;
}
.modal-container .date-picker .calender_wrap input {
  width: 130px;
  height: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  border: 1px solid var(--color_E9EBEC);
}

.modal-container .date-picker .calender_wrap button {
  width: 35px;
  background-color: var(--color_405189);
}

.modal-container .date-picker .calender_wrap button img {
  width: 16px;
  height: 16px;
}

.modal-container .office-selection,
.modal-container .pothole-status-selection {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}

.modal-container .office-checkbox-group,
.modal-container .pothole-status-checkbox-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  row-gap: 5px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  width: 389px;
  position: relative;
}

.modal-container .modal-footer {
  background: #f1f5ff;
  padding: 15px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  position: relative;
}

.modal-container .btn-download {
  background: #4679cc;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 32px;
  position: relative;
  overflow: hidden;
}

.modal-container .btn-cancel {
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #e9ebec;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 32px;
  position: relative;
  overflow: hidden;
}

/* 텍스트 스타일 */
.modal-container .title {
  color: #000000;
  text-align: left;
  font-family: "NotoSansKr-Medium", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.modal-container .warning-text {
  color: #e25353;
  text-align: left;
  font-family: "NotoSansKr-Medium", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.modal-container .btn-text {
  font-family: "NotoSansKr-Regular", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.modal-container .btn-download .btn-text {
  color: #ffffff;
}

.modal-container .btn-cancel .btn-text {
  color: #4679cc;
}

/* 로딩 스타일 */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: opacity 2s ease;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.download-toast {
  position: fixed;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 24px;
  z-index: 1000;
  animation: slideUp 0.3s ease-out;
  left: 0;
  right: 0;
}

.download-toast-content {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
