:root {
  --seaswf-white: #fff;
  --seaswf-border: #d8cfc7;
  --seaswf-green-1: #007f33;
  --seaswf-forest: #00402a;
  --seaswf-black: #3a3735;
  --seaswf-sand-1: #fffeff;
  --seaswf-gray: #aec3cd;
}

#seaswf {
  width: 100%;
  max-width: 980px;
  padding: 32px 16px;
  margin: 20px auto;
  text-align: left;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  border: 1px solid var(--seaswf-border);
  background: var(--seaswf-white);
}

#seaswf * {
  font-family: "IberPangea" !important;
  font-style: normal;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#seaswf h2,
#seaswf h3,
#seaswf h4 {
  margin-top: 0 !important;
}

#seaswf ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#seaswf ul li:before {
  content: none !important;
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#seaswf img,
#seaswf svg {
  display: block;
  width: 100%;
}

#seaswf .seaswf_title {
  color: var(--seaswf-green-1) !important;
  font-size: 30px;
  line-height: 1.13;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  text-wrap: balance;
  margin-bottom: 37px;
}

#seaswf .seaswf_title strong {
  font-weight: 600;
}

#seaswf .seaswf_bg {
  width: 100%;
  margin-bottom: 23px;
  background-image: url("images/fondo.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 980px auto;
  border-radius: 15px;
  overflow: hidden;
}

#seaswf .seaswf_wrapper {
  /* background: var(--seaswf-white); */
  width: 100%;
  max-width: 501px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

#seaswf .seaswf_wrapper:before {
  content: "";
  display: block;
  width: 100%;
  height: 110px;
  position: absolute;
  top: 200px;
  left: 0;
  background-image: url("images/lines.svg");
  background-repeat: no-repeat;
  background-position: left -200px;
  background-size: 501px auto;
  z-index: 2;
}
#seaswf .seaswf_meters {
  position: absolute;
  z-index: 1;
  top: 200px;
  left: 11px;
}

#seaswf .seaswf_meters_item {
  color: var(--seaswf-forest) !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: 600;
  text-align: left;
  margin-bottom: 12px !important;
}

#seaswf .seaswf_content {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 24px;
}

#seaswf .seaswf_content::-webkit-scrollbar-track {
  height: 16px;
  border-radius: 10px;
  border: none;
  background-color: #d8cfc7;
  box-shadow: none;
}

#seaswf .seaswf_content::-webkit-scrollbar {
  height: 16px;
  box-shadow: none;
  border: none;
  background-color: transparent;
}

#seaswf .seaswf_content::-webkit-scrollbar-thumb {
  height: 16px;
  border-radius: 10px;
  box-shadow: none;
  border: none;
  background-color: #b0a9a3;
}

#seaswf .seaswf_content_scroll {
  width: 501px;
  min-width: 501px;
  position: relative;
  overflow: hidden;
}

#seaswf .seaswf_navigation {
  position: absolute;
  z-index: 2;
  top: 375px;
  left: 52px;
  width: calc(100% - 62px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#seaswf .seaswf_navigation_point {
  color: var(--seaswf-forest) !important;
  font-size: 18px;
  line-height: 1.22;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
  width: 33.33%;
  cursor: pointer;
}

#seaswf .seaswf_navigation_point span {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 110px;
  position: relative;
}

#seaswf .seaswf_navigation_point span:after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("images/icono-mas.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: auto auto 0;
}

#seaswf .seaswf_navigation_point.active span:after {
  background-image: url("images/icono-mas-active.svg");
}

#seaswf .seaswf_media_group {
  opacity: 1;
}

#seaswf .seaswf_media_group.inactive {
  opacity: 0.5;
}

#seaswf .seaswf_details {
  min-height: 119px;
  padding: 0px 13px 0px 13px;
  background-color: var(--seaswf-gray);
  border-radius: 0 0 15px 15px;
  margin-top: -15px;
  position: relative;
  z-index: 2;
  display: none;
}

#seaswf.active .seaswf_details {
  display: block;
}

#seaswf .seaswf_item {
  border-radius: 15px;
  border: 1px solid var(--seaswf-border);
  background: var(--seaswf-sand-1);
  padding: 16px 49px 16px 16px;
  position: relative;
  display: none;
}

#seaswf .seaswf_item.active {
  display: block;
}

#seaswf .seaswf_item_close {
  display: block;
  width: 21px;
  height: 21px;
  background-image: url("images/icono-cerrar.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-indent: -9999px;
  text-align: left;
  overflow: hidden;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}

#seaswf .seaswf_item_text {
  color: var(--seaswf-black) !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: 400;
  text-align: left;
}

#seaswf .seaswf_item_text strong {
  font-weight: 600;
}

#seaswf .seaswf_info {
  border-radius: 15px;
  border: 1px solid var(--seaswf-border);
  background: var(--seaswf-sand-1);
  padding: 14px 10px 22px 16px;
}

#seaswf .seaswf_info_item {
  position: relative;
  padding-left: 23px;
  color: var(--seaswf-black) !important;
  font-size: 16px;
  line-height: 1.25;
  font-style: normal;
  font-weight: 400;
  text-align: left;
}

#seaswf .seaswf_info_item:after {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: var(--seaswf-black);
  position: absolute;
  top: 9px;
  left: 9px;
}

#seaswf .seaswf_info_item strong {
  font-weight: 600;
}

@media (min-width: 700px) {
  #seaswf {
    padding: 40px 31px;
  }

  #seaswf .seaswf_title {
    font-size: 32px;
    line-height: 1.125;
    margin-bottom: 22px;
  }

  #seaswf .seaswf_navigation_point:hover span:after {
    background-image: url("images/icono-mas-active.svg");
  }

  #seaswf .seaswf_details {
    padding: 14px 25px 0px 25px;
  }

  #seaswf .seaswf_content {
    padding-bottom: 0;
  }

  #seaswf .seaswf_media #bg {
    display: none;
  }
}

@media (max-width: 699px) {
  #seaswf .seaswf_bg {
    border-radius: 15px 15px 7px 7px;
    overflow: visible;
  }

  #seaswf.active .seaswf_wrapper {
    padding-bottom: 181px;
    margin-bottom: -15px;
  }

  #seaswf .seaswf_details {
    width: 100%;
    padding-left: 13px;
    padding-right: 13px;
    position: absolute;
    bottom: 39px;
    left: 0;
    width: 100%;
    min-height: 181px;
    padding-top: 0;
    padding-bottom: 29px;
  }

  #seaswf .seaswf_details:before {
    content: "";
    display: block;
    width: 100%;
    height: 16px;
    bottom: 100%;
    left: 0;
    background-color: var(--seaswf-gray);
    z-index: 1;
    position: absolute;
  }

  #seaswf .seaswf_item {
    width: 100%;
  }
}
