.wrapper_online_tablo {
  margin: 30px 0 0;
}
.online_tablo_form {
position: relative;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-align: left;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 20px;
  margin: 0 auto;
  max-width: 1240px;
  border-radius: 24px;
  box-sizing: border-box;
  border: 2px solid red;
}
.styles_headline-m__kEJl8 {
  margin: 0;
  padding: 0;
  font-size: 25px;
}
.online_tablo_form_title {
display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.styles_svg__T3UJR {
    display: block;
   fill: rgb(1, 113, 173);
    flex-shrink: 0;
}
.icon{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.icon_arrow{
    position: relative;
    width: 24px;
    height: 24px;
    transition: all .3s ease;
}
.icon_arrow:before{
content: '';
  position: absolute;
  display: inline-flex;
  width: 2px;
  height: 14px;
  background-color: black;
  transform: translate(-4px) rotate(-45deg);
}
.icon_arrow:after{
    content: '';
    position: absolute;
    display: inline-flex;
    width: 2px;
    height: 14px;
    background-color: black;
     transform: translate(4px) rotate(45deg);
}
.online_tablo_form_box {
  display: none;
}
.online_tablo_form.active .online_tablo_form_box {
 display: flex;
  width: 100%;
  flex-direction: column;
}
.online_tablo_form.active .icon_arrow_down {
  transform: rotate(180deg);
}
.tablo_form_box_nav_tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tablo_form_box_nav_tabs button {
  display: inline-flex;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  background: #fff;
  color: rgb(49 53 70 / 72%);
  cursor: pointer;
}
.tablo_form_box_nav_tabs button.active{
    background: #f5f7fa;
    color: #000;
}
.city-tabs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.city-tabs-container button {
  display: inline-flex;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  background: #e9eff9;
  cursor: pointer;
}
.city-tabs-container button.active{
background: #0171ad;
  color: #fff;
}
.tablo_content_container {
  margin: 20px 0 0;
}
.tablo_content{
    display: flex;
    flex-direction: column;
    width: 100%;
}
.city-content {
  margin: 20px 0 0;
}
.tablo_content.hidden {
  display: none;
}
.city-panel {
  display: none;
}
.city-panel.active{
    display: flex;
  flex-direction: column;
  gap: 20px;
}
.ships-table-container table {
  border-collapse: collapse;
}
.ship-time {
  width: 7%;
}
.ship-name {
  width: 18%;
}
.ship-route {
  width: 40%;
}
.ships-table-container thead tr th {
padding: 10px;
  font-size: 14px;
  font-weight: 600;
}
.ships-table-container tbody tr td{
 padding: 10px;
  border-bottom: 1px solid;
  font-size: 14px;
}
.ships-table-container td.ship-dock {
  font-size: 16px;
}
.styles_port__vUR8P {
  display: flex;
  max-width: 680px;
  flex-wrap: wrap;
  gap: 20px 80px;
}
.styles_port__mapLink__nRpMH {
  color: #0171ad;
}


.ajax:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    z-index: 999;
    background-color: #fff;
    opacity: 0.6;
    cursor: wait;
}


@media only screen and (max-width: 480px) {
   .online_tablo_form {
    padding: 10px;
}
.ships-table-container thead tr th {
    padding: 5px;
    font-size: 12px;
}
.ships-table-container tbody tr td {
    padding: 5px;
    font-size: 12px;
}
}