@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

*{
  margin: 0;
  padding: 0;
  outline: none;
}

*:not(.ticker,.ticker-list,.ticker-item){
  -webkit-transition: 200ms;
  -moz-transition: 200ms;
  -o-transition: 200ms;
  transition: 200ms;
}

b{
  font-style: normal;
  font-weight: 600;
}

  ::-webkit-scrollbar-track{
  	border-radius: 10px;
  	background-color: #fff;
  }

  ::-webkit-scrollbar{
  	width: 10px;
  	background-color: #fff;
  }

  ::-webkit-scrollbar-thumb{
  	border-radius: 10px;
  	/*background-color: rgba(0, 60, 190, 1);*/
    background-color: rgba(150, 150, 150, 1);
    border: 2px solid #fff;
  }

body{
  font-family: 'Outfit', sans-serif;
}

  body p{
    font-size: 11pt;
    font-weight: 400;
  }

  @keyframes animatedBackground {
    from {
      background-position: left center;
    }
    to {
      background-position: right center;
    }
  }

  aside.notification{
    color: #b5c5ff;
    width: calc(100% - 20px);
    padding: 10px 10px 14px 10px;
    font-size: 11pt;
    font-weight: 500;
    background-color: #003cbe;
    -moz-box-shadow: inset 0 -10px 10px -10px #000420;
    -webkit-box-shadow: inset 0 -10px 10px -10px #000420;
    box-shadow: inset 0 -10px 10px -10px #000420;
    z-index: 1000;
  }

    aside.notification > .notification_inner{
      width: 1200px;
      margin: 0 auto;
    }

  header{
    width: 100%;
    position: sticky;
    top: 0px;
    z-index: 1000;
  }

    header:not(.hero){
      background-color: rgba(0, 60, 190, 1);
      -moz-box-shadow: 0 3px 10px 0px rgba(0,0,0,0.5);
      -webkit-box-shadow: 0 3px 10px 0px rgba(0,0,0,0.5);
      box-shadow: 0 3px 10px 0px rgba(0,0,0,0.5);
      /*border-radius: 0 0 30px 30px;*/
      z-index: 1000;
    }

    header > .header__inner{
      width: 1200px;
      margin: 0 auto;
      padding: 10px 0;
    }

      header > .header__inner > nav{
        width: 1170px;
        height: 50px;
        padding: 0 10px;
      }

        header > .header__inner > nav > a > img{
          height: 35px;
          margin: 7.5px 0;
        }

        header > .header__inner > nav > ul{
          list-style-type: none;
          float: right;
        }

          header > .header__inner > nav > ul li{
            float: left;
            height: 50px;
          }

          header > .header__inner > nav > ul > li:last-child{
            display: none;
          }

            header > .header__inner > nav > ul li > a{
              height: 50px;
              padding: 0 35px 0 0;
              line-height: 50px;
              display: block;
              float: left;
              color: #fff;
              font-size: 11.5pt;
              text-decoration: none;
              font-weight: 500;
            }

              header > .header__inner > nav > ul li > a:hover{
                color: #E5E5E5;
              }

              header > .header__inner > nav > ul li > a.btn{
                height: 20px;
                font-size: 10pt;
                padding: 10px 20px;
                margin: 5px 0;
                color: #fff;
                line-height: 20px;
                border-radius: 40px;
                background-color: #00B464;
              }

              header > .header__inner > nav > ul li > a.forecast{
                height: 20px;
                font-size: 10pt;
                padding: 10px 20px;
                margin: 5px 0 5px 20px;
                line-height: 20px;
                border-radius: 40px;
                background-color: rgb(0, 50, 160, 1);
              }

                header.hero > .header__inner > nav > ul li > a.forecast{
                  background-color: rgba(0, 0, 0, 0.4);
                }

                header > .header__inner > nav > ul li > a.forecast span.statusBullet{
                  color: #eee;
                  font-size: 20pt;
                  position: relative;
                  top: -2px;
                }

                  header > .header__inner > nav > ul li > a.forecast span.statusBullet.green{
                    color: #48b548;
                  }

                  header > .header__inner > nav > ul li > a.forecast span.statusBullet.yellow{
                    color: #ffd633;
                  }

                  header > .header__inner > nav > ul li > a.forecast span.statusBullet.red{
                    color: #ff3333;
                  }

                header > .header__inner > nav > ul li > a.forecast span.statusText{
                  color: #eee;
                  font-size: 9pt;
                  margin-left: 10px;
                  display: inline-block;
                  position: relative;
                  top: -5px;
                }


  main{
    width: 100%;
    min-height: calc(100vh - 250px);
  }

    main > div.hero{
      width: 100%;
      margin-top: -70px;
      padding: 225px 0;
      background: url('../img/waves.jpg'), rgba(0, 60, 190, 0.75);
      background-blend-mode: multiply;
      background-position: left center;
      position: relative;
      animation: animatedBackground 15s linear infinite alternate;
      -moz-box-shadow: inset 0 -10px 10px -10px #00558F;
      -webkit-box-shadow: inset 0 -10px 10px -10px #00558F;
      box-shadow: inset 0 -10px 10px -10px #00558F;
      border-radius: 0 0 30px 30px;
    }

    main > div.hero::after{
      background-color: rgb(255 255 255);
      -webkit-clip-path: ellipse(60% 100% at 50% 100%);
      clip-path: ellipse(60% 100% at 50% 100%);
      content: "";
      display: block;
      height: 3rem;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
    }

    main > div.hero > .hero__inner{
      width: 1200px;
      margin: 0 auto;
    }

    main > div.hero > div.hero__inner h2{
      color: #fff;
      font-size: 24pt;
      font-weight: 500;
    }

    main > div.hero > div.hero__inner h1{
      color: #fff;
      font-size: 75pt;
      font-weight: 700;
    }

    main > div.hero > div.hero__inner a.btn{
      color: #fff;
      display: inline-block;
      margin: 10px 20px 0 0;
      padding: 15px 50px 15px 30px;
      border-radius: 40px;
      text-decoration: none;
      border: 2px solid #fff;
      background-color: none;
      font-weight: 600;
      font-size: 13pt;
      position: relative;
    }

      main > div.hero > div.hero__inner a.btn::after{
        content: '->';
        font-family: 'Inter', sans-serif;
        color: #fff;
        font-size: 13pt;
        font-weight: 600;
        position: absolute;
        right: 25px;
      }

      main > div.hero > div.hero__inner a.btn:not(.btn-green):hover{
        color: #000420;
        background-color: #fff;
      }

      main > div.hero > div.hero__inner a.btn:not(.btn-green):hover::after{
        color: #000420;
        right: 22px;
      }

    main > div.hero > div.hero__inner a.btn.btn-green{
      border: 2px solid #00B464;
      background-color: #00B464;
    }

      main > div.hero > div.hero__inner a.btn.btn-green:hover{
        background-color: #009B64;
      }

      main > div.hero > div.hero__inner a.btn.btn-green:hover::after{
        right: 22px;
      }

    main > div.hero > div.hero__inner > .inner_sailplan{
      color: rgba(255,255,255,.5);
      margin-top: 50px;
    }

      main > div.hero > div.hero__inner > .inner_sailplan > .ticker {
        max-width: 550px;
        height: 50px;
        padding: 10px;
        position: relative;
        overflow: hidden;
        margin: 15px 0;
        border-radius: 20px;
        background-color: rgba(25, 45, 110, .25);
        cursor: pointer;
      }

      main > div.hero > div.hero__inner > .inner_sailplan > .ticker .ticker-list {
        width: calc(100% - 20px);
        position: absolute;
        /*top: 7.2px;*/
      }

      main > div.hero > div.hero__inner > .inner_sailplan > .ticker .ticker-list .ticker-item {
        color: #fff;
        font-family: 'Outfit', sans-serif;
        height: 70px;
        overflow: hidden;
        white-space: nowrap;
        position: relative;
      }

        main > div.hero > div.hero__inner > .inner_sailplan > .ticker .ticker-list .ticker-item i{
          color: #dfdfdf;
          margin: 0 10px;
          font-style: normal;
          font-family: 'Inter', sans-serif;
        }

        main > div.hero > div.hero__inner > .inner_sailplan > .ticker .ticker-list .ticker-item span.logo{
          margin: 0 10px;
        }

          main > div.hero > div.hero__inner > .inner_sailplan > .ticker .ticker-list .ticker-item span.logo > img{
            width: 32px;
            height: 32px;
            float: left;
            position: relative;
            top: 10px;
            left: 10px;
          }

        main > div.hero > div.hero__inner > .inner_sailplan > .ticker .ticker-list .ticker-item span.timestamp {
          height: 50px;
          padding: 0 18px;
          font-size: 11pt;
          line-height: 48px;
          border-radius: 15px;
          display: inline-block;
          background-color: rgba(0,0,0,.15);
        }

          main > div.hero > div.hero__inner > .inner_sailplan > .ticker .ticker-list .ticker-item span.timestamp > i{
            color: #fff;
            font-family: 'Outfit', sans-serif;
            margin: 0 10px;
            padding-left: 10px;
            border-left: 1px solid #dfdfdf;
            font-style: normal;
          }

        main > div.hero > div.hero__inner > .inner_sailplan > .ticker .ticker-list .ticker-item span.destinations {
          height: 50px;
          font-size: 13pt;
          padding: 0 15px;
          line-height: 48px;
          border-radius: 15px;
          display: inline-block;
        }

        main > div.hero > div.hero__inner > .inner_sailplan > .ticker .ticker-list .ticker-item span.status {
          height: 50px;
          width: 8px;
          border-radius: 5px;
          background: rgba(0,0,0,.5);
          position: absolute;
          right: 0;
          top: 0;
          bottom: 0;
        }

        main > div.hero > div.hero__inner > .inner_sailplan p.informative{
          font-size: 9pt;
        }

        main > div.hero > div.hero__inner > .inner_sailplan span.statuscolor{
          width: 8px;
          height: 8px;
          border-radius: 6px;
          display: inline-block;
          border: 1px solid rgba(255,255,255,.5);
          position: relative;
          top: 1px;
          margin-right: 2px;
        }

          main > div.hero > div.hero__inner > .inner_sailplan > .ticker .ticker-list .ticker-item span.status.settled,
          main > div.hero > div.hero__inner > .inner_sailplan span.statuscolor.settled {
            background: #00B464;
          }

          main > div.hero > div.hero__inner > .inner_sailplan > .ticker .ticker-list .ticker-item span.status.expected,
          main > div.hero > div.hero__inner > .inner_sailplan span.statuscolor.expected {
            background: #ffD633;
          }

          main > div.hero > div.hero__inner > .inner_sailplan > .ticker .ticker-list .ticker-item span.status.cancelled,
          main > div.hero > div.hero__inner > .inner_sailplan span.statuscolor.cancelled {
            background: #ff3333;
          }

    main > .main__inner{
      width: 1200px;
      padding: 50px 0;
      margin: 0 auto;
    }

        main > .main__inner .inner__row{
          display: flex;
          justify-content: space-between;
        }

        main > .main__inner .inner__row::after{
          content: '';
          clear: both;
          display: table;
        }

        main > .main__inner .inner__row:not(:last-child){
          margin-bottom: 40px;
        }

          main > .main__inner .inner__row > .inner__col{
            width: calc(50% - 40px);
            float: left;
            padding: 20px 20px 16px 20px;
            margin: 10px;
            color: #666;
            font-size: 10pt;
            font-weight: 500;
            border-radius: 15px;
            background-color: #fff;
            flex: 1;
          }

            main > .main__inner .inner__row > .inner__col.boxed{
              border: 1px solid #f6f6f6;
            }

            main > .main__inner .inner__row > .inner__col.flex_2{
              flex: 2;
            }

            main > .main__inner .inner__row > .inner__col.flex_3{
              flex: 3;
            }

            main > .main__inner .inner__row > .inner__col.flex_4{
              flex: 4;
            }

            main > .main__inner .inner__row > .inner__col.flex_5{
              flex: 5;
            }

            main > .main__inner .inner__row > .inner__col > img{
              width: 100%;
              border-radius: 20px 40px;
            }

              main > .main__inner .inner__row > .inner__col > img:not(:first-of-type){
                margin-top: 40px;
              }

              main > .main__inner .inner__row > .inner__col > img.b-10{
              border-radius: 10px!important;
              }

          main > .main__inner .inner__row > .inner__col.content_image > img{
            width: 100%;
            border-radius: 40px 80px 40px 80px;
          }

          main > .main__inner .inner__row > .inner__col > h1{
            color: #111;
            font-size: 20pt;
            font-weight: 600;
            margin: -5px 0 5px 0;
          }

          main > .main__inner .inner__row > .inner__col > h2{
            color: #222;
            font-size: 18pt;
            font-weight: 600;
            margin: -5px 0 5px 0;
          }

          main > .main__inner .inner__row > .inner__col > h3{
            color: #333;
            font-size: 14pt;
            font-weight: 600;
            margin: 20px 0 5px 0;
          }

          main > .main__inner .inner__row > .inner__col > p{
            margin-bottom: 5px;
          }

          main > .main__inner .inner__row > .inner__col a{
            color: #003cbe;
            padding-top: 10px;
            text-decoration: #90b3ff wavy underline;
            text-decoration-skip-ink: none;
            text-underline-offset: 4px;
          }

      main > .main__inner .content_center{
        text-align: center;
      }

  footer{
    width: 100%;
    background-color: rgba(0, 60, 190, 1);
    overflow: hidden;
  }

    footer > .footer__wave{
      display: block;
      position: relative;
      height: 40px;
      background: #fff;
    }

    footer > .footer__wave:before {
      content: "";
      display: block;
      position: absolute;
      border-radius: 100%;
      width: 100%;
      height: 300px;
      background: url('../img/logo_m_b_wm.png'), rgba(0, 60, 190, 1);
      background-position: top center;
      background-size: 400px 400px;
      background-repeat: no-repeat;
      right: -25%;
      top: 20px
    }

    footer > .footer__wave:after {
      content: "";
      display: block;
      position: absolute;
      border-radius: 100%;
      width: 100%;
      height: 300px;
      background-color: #fff;
      left: -25%;
      top: -240px;
    }

    footer > .footer__inner{
    position: relative;
      color: #fff;
      font-size: 10pt;
      width: 1200px;
      margin: 0 auto;
      padding: 75px 0 50px 0;
    }
/*
#00558F
0, 85, 143
*/

.d-none {
  display: none!important;
}


/* SCHEDULE */

.schedules__container{
  width: 100%;
  margin-top: 20px;
}
  .schedules__container > .container_card{
    width: 100%;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0px 0px 10px #e1e1e1;
    margin-bottom: 20px;
  }
    .schedules__container > .container_card > .card_header{
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #eee;
      padding: 20px;
      position: relative;
    }
      .schedules__container > .container_card > .card_header > .header_vessel{
        width: 50%;
      }
        .schedules__container > .container_card > .card_header > .header_vessel > img{
          float: left;
          width: 50px;
          height: 50px;
          padding: 5px;
          border: 1px solid #eee;
          border-radius: 30px;
          background: #fff;
          margin-right: 15px;
        }
        .schedules__container > .container_card > .card_header > .header_vessel > p{
          margin: 0;
          padding: 0;
        }
          .schedules__container > .container_card > .card_header > .header_vessel > p:first-of-type{
            color: #222;
            font-size: 20px;
            padding: 8px 0 0 0;
            font-weight: 500;
          }
          .schedules__container > .container_card > .card_header > .header_vessel > p:last-of-type{
            font-size: 15px;
          }
      .schedules__container > .container_card > .card_header > .header_preferences{
        width: 50%;
        color: #222;
        padding: 15px 0;
        font-size: 16px;
        text-align: right;
      }
        .schedules__container > .container_card > .card_header > .header_preferences i{
          color: #003cbe;
          font-size: 20px;
          position: relative;
          top: 2px;
          margin-right: 5px;
        }
          .schedules__container > .container_card > .card_header > .header_preferences > i.ri-close-circle-fill{
            color: red;
          }
          .schedules__container > .container_card > .card_header > .header_preferences > i:not(:first-of-type){
            margin-left: 15px;
          }
        .schedules__container > .container_card > .card_header > .header_preferences > span.preference_status{
          text-align: left;
          margin-left: 15px;
          padding: 1px 10px 5px 5px;
          border-radius: 20px;
          line-height: 16px;
          display: inline-block;
          background-color: #f7f7f7;
        }
            .schedules__container > .container_card > .card_header > .header_preferences > span.preference_status.settled > i{
              color: #00B464;
            }
            .schedules__container > .container_card > .card_header > .header_preferences > span.preference_status.expected > i{
              color: #ffD633;
            }
          .schedules__container > .container_card > .card_header > .header_preferences > span.preference_status.cancelled{
            color: #ff3333;
          }
            .schedules__container > .container_card > .card_header > .header_preferences > span.preference_status.cancelled > i{
              color: #ff3333;
            }
      .schedules__container > .container_card > .card_body{
        display: flex;
        justify-content: space-between;
        padding: 20px;
      }
        .schedules__container > .container_card > .card_body > div > p{
          margin: 0;
          padding: 0;
        }
          .schedules__container > .container_card > .card_body > .body_departure > p:nth-child(1),
          .schedules__container > .container_card > .card_body > .body_arrival > p:nth-child(1),
          .schedules__container > .container_card > .card_body > .body_departure > p:nth-child(3),
          .schedules__container > .container_card > .card_body > .body_arrival > p:nth-child(3){
            font-size: 16px;
            font-weight: 400;
          }
          .schedules__container > .container_card > .card_body > .body_departure > p:nth-child(2),
          .schedules__container > .container_card > .card_body > .body_arrival > p:nth-child(2){
            color: #222;
            font-size: 40px;
            font-weight: 600;
          }
          .schedules__container > .container_card > .card_body > .body_departure > p:nth-child(3) > span,
          .schedules__container > .container_card > .card_body > .body_arrival > p:nth-child(3) > span{
            color: #c9c9c9;
            margin-left: 5px;
          }
        .schedules__container > .container_card > .card_body > .body_departure{
          width: 25%;
          text-align: left;
        }
        .schedules__container > .container_card > .card_body > .body_distance{
          width: 50%;
          text-align: center;
        }
          .schedules__container > .container_card > .card_body > .body_distance > .distance_timeline{
            width: 100%;
            height: 36px;
            margin-bottom: 20px;
            border-bottom: 2px dashed #c9c9c9;
            position: relative;
          }
            .schedules__container > .container_card > .card_body > .body_distance > .distance_timeline > i{
              color: #003cbe;
              font-size: 40px;
              top: 6px;
              left: calc(0% - 10px);
              position: absolute;
            }
          .schedules__container > .container_card > .card_body > .body_distance > p{
            color: #777;
            font-size: 14px;
            display: inline-block;
            padding: 8px 10px;
            border-radius: 10px;
            background-color: #f9f9f9;
            border: 1px solid #dfdfdf;
            font-weight: 500;
          }
        .schedules__container > .container_card > .card_body > .body_arrival{
          width: 25%;
          text-align: right;
        }
