:root {
  --white: #fff;
  --red: #fd0012;
  --green: #16af57;
  --grey: #939393;
}

.dashboard_status_wrapper:has(.projectList) .bottom_ {
  row-gap: 0.5rem;
  position: relative;
  padding-bottom: 2.6rem;
}
@media screen and (min-width: 1600px) {
  .dashboard_status_wrapper:has(.projectList) .bottom_ {
    padding-bottom: 2.8rem;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {
  .dashboard_status_wrapper:has(.projectList) .bottom_ {
    padding-bottom: 2.15rem;
  }
}
@media only screen and (max-width: 1024px) {
  .dashboard_status_wrapper:has(.projectList) .bottom_ {
    padding-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .dashboard_status_wrapper:has(.projectList) .bottom_ {
    padding-bottom: 0;
    row-gap: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .dashboard_status_wrapper:has(.projectList) .vessel_ {
    order: 2;
  }
}
.dashboard_status_wrapper .projectTitle {
  font-size: 0.95vw;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 37%;
  padding-inline: 0.5rem;
  line-height: 120%;
}
@media screen and (min-width: 1600px) {
  .dashboard_status_wrapper .projectTitle {
    font-size: 0.85vw;
  }
}
@media only screen and (max-width: 1024px) {
  .dashboard_status_wrapper .projectTitle {
    font-size: 1.3vw;
  }
}
@media only screen and (max-width: 767px) {
  .dashboard_status_wrapper .projectTitle {
    font-size: 4vw;
    position: relative;
    grid-column: -1/1;
    width: 100%;
    order: 1;
  }
}

.projectList {
  order: 2;
  color: var(--white);
  font-size: 0.95vw;
  line-height: 120%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-self: center;
}
@media screen and (min-width: 1600px) {
  .projectList {
    font-size: 0.85vw;
  }
}
@media only screen and (max-width: 1024px) {
  .projectList {
    font-size: 1.3vw;
    gap: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .projectList {
    order: 3;
    font-size: 3.5vw;
  }
}

.proItem {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.proItem.colorWhite {
  --color: var(--white);
}
.proItem.colorRed {
  --color: var(--red);
}
.proItem.colorGreen {
  --color: var(--green);
}
.proItem.colorGrey {
  --color: var(--grey);
}
.proItem .dote {
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--color);
  box-shadow: 0px 0px 0px 3px hsla(from var(--color) h s l/0.5);
  margin-inline-end: 0.4rem;
}
@media only screen and (min-width: 1025px) and (max-width: 1370px) and (min-height: 500px) and (max-height: 670px) {
  .proItem .dote {
    width: 10px;
    margin-inline-end: 0.25rem;
  }
}
.proItem span {
  flex: 1;
  text-transform: uppercase;
}
.proItem .num {
  min-width: 30px;
}

td .icons_list {
  flex-wrap: wrap;
  gap: 0.7rem 0.8rem;
}
td .icons_list > li {
  margin: 0;
}

.icons_list li a .icon-svg svg {
  height: auto;
  aspect-ratio: 1;
  width: 1vw;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .icons_list li a .icon-svg svg {
    width: 0.9vw;
  }
}
@media only screen and (max-width: 767px) {
  .icons_list li a .icon-svg svg {
    width: 4.5vw;
  }
}

.general_popup .inner_:has(> .title_box) {
  padding-top: 3vw;
}
@media only screen and (max-width: 767px) {
  .general_popup .inner_:has(> .title_box) {
    padding-top: 7vw;
  }
}
.general_popup .inner_ > .title_box {
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 767px) {
  .general_popup .inner_ > .title_box .section_title {
    margin-bottom: 0.5rem;
  }
}
.general_popup .inner_ > .title_box .info_box {
  margin: 0;
  gap: 7px;
}
.general_popup .inner_ > .title_box .info_box .add_info_link {
  margin: 0;
}

.status_dot_ {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}
.status_dot_::before {
  content: "";
  width: 12px;
  border-radius: 50%;
  aspect-ratio: 1;
  background: var(--color);
  display: inline-block;
  box-shadow: 0px 0px 0px 4px hsla(from var(--color) h s l/0.5);
}
.status_dot_.bg-red {
  --color: var(--red);
}
.status_dot_.bg-green {
  --color: var(--green);
}
.status_dot_.bg-grey {
  --color: var(--grey);
}/*# sourceMappingURL=ggpmsStyle.css.map */