@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900);
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900);
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900);
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900);
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900);
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900);
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900);
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900);
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900);
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700,900);
@charset "UTF-8";
/*
MEDIA QUERY MANAGER DESKTOP FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
[1200 - 1800]: | Normal styles 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px

@mixin respond($breakpoint){
  @if $breakpoint == phone {
    @media (max-width: 37.5em) { @content };  // 600px
  }
  @if $breakpoint == tab-port {
    @media (max-width: 56.25em) { @content }; // 900px
  }
  @if $breakpoint == tab-land {
    @media (max-width: 75em) { @content };    // 1200px
  }
  @if $breakpoint == big-desktop {
    @media (min-width: 112.5em) { @content }; // 1800px
  }
}
*/
/*
MEDIA QUERY MANAGER MOBILE FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
1200 - 1800: | Desktop 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px
*/
/*
  Hiding scrollbars mixins:
  - scroll-x-container: parent element
  - scroll-x-contained: Child element
*/
/* Hiding scrollbars mixins */
/*
  Usage: @include keyframe (name-animation) { animation }
*/
.flex-horizontal-spacebetween-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-spacebetween-start {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-end-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-vertical-center-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-left {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.clearfix::after {
  content: '';
  display: table;
  clear: both; }

.hide {
  display: hidden; }

.none {
  display: none; }

.text-center {
  text-align: center; }

.button {
  border-radius: 6px;
  font-weight: 400;
  height: 33px;
  font-size: 14px;
  min-width: 140px;
  border: 2px solid #0072BA;
  background-color: rgba(250, 250, 250, 0);
  color: #0072BA; }
  .button:active {
    transform: translateY(2px); }
  .button:focus {
    outline: none; }
  @media (min-width: 37.5em) {
    .button:hover {
      color: #ffffff;
      background-color: #0072BA; }
    .button a:hover {
      text-decoration: none !important; } }
  .button.button-primary {
    background-color: #45afe3;
    color: white; }
    @media (min-width: 37.5em) {
      .button.button-primary:hover {
        background-color: #68c7f5; } }
  .button.button-primary-ghost {
    color: #45afe3;
    border: 2px solid #45afe3;
    background-color: rgba(250, 250, 250, 0); }
    @media (min-width: 37.5em) {
      .button.button-primary-ghost:hover {
        border: 2px solid #68c7f5;
        color: #68c7f5; } }
    .button.button-primary-ghost-filled {
      color: #45afe3;
      border: 2px solid #45afe3;
      background-color: rgba(250, 250, 250, 0); }
      @media (min-width: 37.5em) {
        .button.button-primary-ghost-filled:hover {
          color: #ffffff;
          background-color: #45afe3; } }
  .button.button-big {
    height: 50px; }
  .button.button-with-icon {
    display: flex;
    justify-content: center;
    align-items: center; }
    .button.button-with-icon img, .button.button-with-icon svg {
      margin-left: 8px; }
    @media (min-width: 37.5em) {
      .button.button-with-icon:hover img, .button.button-with-icon:hover svg {
        filter: brightness(1.2); } }

@charset "UTF-8";
/*
MEDIA QUERY MANAGER DESKTOP FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
[1200 - 1800]: | Normal styles 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px

@mixin respond($breakpoint){
  @if $breakpoint == phone {
    @media (max-width: 37.5em) { @content };  // 600px
  }
  @if $breakpoint == tab-port {
    @media (max-width: 56.25em) { @content }; // 900px
  }
  @if $breakpoint == tab-land {
    @media (max-width: 75em) { @content };    // 1200px
  }
  @if $breakpoint == big-desktop {
    @media (min-width: 112.5em) { @content }; // 1800px
  }
}
*/
/*
MEDIA QUERY MANAGER MOBILE FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
1200 - 1800: | Desktop 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px
*/
/*
  Hiding scrollbars mixins:
  - scroll-x-container: parent element
  - scroll-x-contained: Child element
*/
/* Hiding scrollbars mixins */
/*
  Usage: @include keyframe (name-animation) { animation }
*/
.flex-horizontal-spacebetween-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-spacebetween-start {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-end-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-vertical-center-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-left {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.clearfix::after {
  content: '';
  display: table;
  clear: both; }

.hide {
  display: hidden; }

.none {
  display: none; }

.text-center {
  text-align: center; }

.popup {
  width: 100%;
  border-radius: 12px; }
  @media (min-width: 1160px) {
    .popup {
      display: flex; } }
  .popup .close-icon {
    color: #ffffff;
    cursor: pointer;
    position: absolute;
    top: -35px;
    right: 0; }
  .popup h4 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 800; }
  .popup .not-available {
    font-style: italic;
    color: #a5a2a2; }
  .popup-content {
    padding: 42px; }
    @media (min-width: 1160px) {
      .popup-content {
        width: calc(100% - 300px); } }
  .popup-header {
    display: flex;
    margin-bottom: 36px; }
    .popup-header img, .popup-header .default-box {
      height: 116px;
      width: 116px;
      min-width: 116px;
      margin-right: 24px;
      object-fit: contain; }
    .popup-header .default-box {
      background-color: #F1F4F8;
      border-radius: 6px;
      padding: 10px; }
      @media (min-width: 900px) {
        .popup-header .default-box {
          padding: 24px 18px; } }
      .popup-header .default-box svg {
        color: #a5a2a2;
        fill: #a5a2a2;
        font-size: 60px; }
        @media (min-width: 900px) {
          .popup-header .default-box svg {
            font-size: 80px; } }
    .popup-header p {
      font-size: 14px;
      color: #4E5152;
      line-height: 1.4;
      font-weight: 600; }
  .popup-stats {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 28px;
    border-radius: 6px;
    background-color: #F1F4F8;
    margin-bottom: 32px; }
    .popup-stats-item {
      display: flex;
      align-items: flex-start;
      width: 24%; }
      .popup-stats-item div {
        padding-top: 5px; }
      .popup-stats-item svg {
        margin-right: 12px;
        color: gray; }
      .popup-stats-item p {
        font-weight: 600;
        margin-bottom: 8px; }
      .popup-stats-item p, .popup-stats-item span {
        font-size: 14px;
        line-height: 1.2; }
    .popup-stats .premium-warning {
      font-weight: 800;
      text-align: center;
      color: #45afe3;
      width: 100%;
      margin-top: 16px; }
  .popup-tags {
    display: flex;
    flex-wrap: wrap; }
    .popup-tags li {
      font-size: 12px;
      font-weight: 600;
      margin: 0 6px 6px 0;
      color: #45afe3;
      background-color: #E1F8FF;
      border-radius: 4px;
      padding: 6px 52px; }
  .popup-aside {
    color: white;
    background-color: #204D89;
    padding: 42px 32px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px; }
    @media (min-width: 1160px) {
      .popup-aside {
        width: 300px;
        border-top-right-radius: 12px;
        border-bottom-left-radius: 0;
        padding: 42px 18px 30px;
        justify-content: space-between;
        display: flex;
        flex-direction: column; } }
    @media (min-width: 1160px) {
      .popup-aside-content {
        padding: 0 12px; } }
    .popup-aside-warning {
      border: 1px solid #45afe3;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      border-radius: 8px;
      padding: 16px;
      min-height: 190px;
      margin-bottom: 24px; }
      @media (min-width: 1160px) {
        .popup-aside-warning {
          height: 260px;
          margin-top: -18px;
          margin-bottom: 0; } }
      .popup-aside-warning h5 {
        margin-bottom: 10px; }
      .popup-aside-warning svg {
        font-size: 52px;
        margin-bottom: 12px; }
    .popup-aside-item {
      display: flex;
      margin-bottom: 42px; }
      .popup-aside-item svg {
        margin-right: 12px; }
    .popup-aside p, .popup-aside a {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.2;
      word-break: break-word; }
    .popup-aside p, .popup-aside a {
      padding-top: 3px; }
    .popup-aside a:hover {
      text-decoration: underline; }
  .popup-ctas {
    display: flex;
    justify-content: space-between; }
    @media (min-width: 1160px) {
      .popup-ctas {
        flex-direction: column; } }
    .popup-ctas div, .popup-ctas a {
      padding-top: 0;
      width: 48%; }
      @media (min-width: 1160px) {
        .popup-ctas div, .popup-ctas a {
          width: 100%; } }
      .popup-ctas div button, .popup-ctas a button {
        width: 100%; }
        @media (min-width: 1160px) {
          .popup-ctas div button.button-primary, .popup-ctas a button.button-primary {
            margin-top: 12px; } }
  .popup.blurred .logged-info {
    filter: blur(3px); }
  .popup .prev, .popup .next {
    cursor: pointer;
    position: absolute;
    top: 50%; }
  .popup .prev {
    left: -50px; }
  .popup .next {
    right: -50px; }

.modal-logo {
  max-width: 140px; }
  .modal-logo img {
    max-width: 100%; }

@charset "UTF-8";
/*
MEDIA QUERY MANAGER DESKTOP FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
[1200 - 1800]: | Normal styles 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px

@mixin respond($breakpoint){
  @if $breakpoint == phone {
    @media (max-width: 37.5em) { @content };  // 600px
  }
  @if $breakpoint == tab-port {
    @media (max-width: 56.25em) { @content }; // 900px
  }
  @if $breakpoint == tab-land {
    @media (max-width: 75em) { @content };    // 1200px
  }
  @if $breakpoint == big-desktop {
    @media (min-width: 112.5em) { @content }; // 1800px
  }
}
*/
/*
MEDIA QUERY MANAGER MOBILE FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
1200 - 1800: | Desktop 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px
*/
/*
  Hiding scrollbars mixins:
  - scroll-x-container: parent element
  - scroll-x-contained: Child element
*/
/* Hiding scrollbars mixins */
/*
  Usage: @include keyframe (name-animation) { animation }
*/
.flex-horizontal-spacebetween-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-spacebetween-start {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-end-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-vertical-center-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-left {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.clearfix::after {
  content: '';
  display: table;
  clear: both; }

.hide {
  display: hidden; }

.none {
  display: none; }

.text-center {
  text-align: center; }

.companies-table .table-wrapper tr td:first-of-type {
  width: 50%; }

.companies-table .table-wrapper tr td:not(:first-of-type) {
  width: 25%;
  text-align: center; }

.companies-table .table-wrapper tr td {
  position: relative; }
  .companies-table .table-wrapper tr td .anchor {
    display: none; }
    @media (min-width: 768px) {
      .companies-table .table-wrapper tr td .anchor {
        display: block;
        background-color: white;
        position: absolute;
        padding: 0 8px;
        right: 6px;
        top: 50%;
        transform: translateY(-50%); } }

.companies-table .table-wrapper tr.popup-item {
  cursor: pointer; }
  .companies-table .table-wrapper tr.popup-item:hover {
    background-color: #E1F8FF; }
    .companies-table .table-wrapper tr.popup-item:hover .anchor {
      background-color: #E1F8FF; }

@charset "UTF-8";
/*
MEDIA QUERY MANAGER DESKTOP FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
[1200 - 1800]: | Normal styles 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px

@mixin respond($breakpoint){
  @if $breakpoint == phone {
    @media (max-width: 37.5em) { @content };  // 600px
  }
  @if $breakpoint == tab-port {
    @media (max-width: 56.25em) { @content }; // 900px
  }
  @if $breakpoint == tab-land {
    @media (max-width: 75em) { @content };    // 1200px
  }
  @if $breakpoint == big-desktop {
    @media (min-width: 112.5em) { @content }; // 1800px
  }
}
*/
/*
MEDIA QUERY MANAGER MOBILE FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
1200 - 1800: | Desktop 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px
*/
/*
  Hiding scrollbars mixins:
  - scroll-x-container: parent element
  - scroll-x-contained: Child element
*/
/* Hiding scrollbars mixins */
/*
  Usage: @include keyframe (name-animation) { animation }
*/
.flex-horizontal-spacebetween-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-spacebetween-start {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-end-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-vertical-center-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-left {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.clearfix::after {
  content: '';
  display: table;
  clear: both; }

.hide {
  display: hidden; }

.none {
  display: none; }

.text-center {
  text-align: center; }

.team-table .table-wrapper td {
  text-align: center;
  width: 25%; }

.team-table .table-wrapper thead {
  border-right: 0;
  border-left: 0; }
  .team-table .table-wrapper thead tr {
    border-bottom: 0; }
  .team-table .table-wrapper thead td {
    font-weight: 400;
    background-color: #edf5ff;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    border-right: 0;
    border-left: 0;
    width: calc(25% - 6px);
    margin: 0 3px;
    padding: 8px 16px; }
    .team-table .table-wrapper thead td:first-child, .team-table .table-wrapper thead td:last-child {
      margin: 0 3px; }

.team-table .table-wrapper tbody tr:first-of-type td {
  border-top: 2px solid #E1F8FF; }

.team-table .table-wrapper tbody tr:first-of-type td:first-of-type {
  border-top-left-radius: 6px; }

.team-table .table-wrapper tbody tr:first-of-type td:last-of-type {
  border-top-right-radius: 6px; }

.team-table .table-wrapper tbody tr a {
  text-decoration: underline; }
  .team-table .table-wrapper tbody tr a:hover {
    color: #45afe3; }

@charset "UTF-8";
/*
MEDIA QUERY MANAGER DESKTOP FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
[1200 - 1800]: | Normal styles 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px

@mixin respond($breakpoint){
  @if $breakpoint == phone {
    @media (max-width: 37.5em) { @content };  // 600px
  }
  @if $breakpoint == tab-port {
    @media (max-width: 56.25em) { @content }; // 900px
  }
  @if $breakpoint == tab-land {
    @media (max-width: 75em) { @content };    // 1200px
  }
  @if $breakpoint == big-desktop {
    @media (min-width: 112.5em) { @content }; // 1800px
  }
}
*/
/*
MEDIA QUERY MANAGER MOBILE FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
1200 - 1800: | Desktop 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px
*/
/*
  Hiding scrollbars mixins:
  - scroll-x-container: parent element
  - scroll-x-contained: Child element
*/
/* Hiding scrollbars mixins */
/*
  Usage: @include keyframe (name-animation) { animation }
*/
.flex-horizontal-spacebetween-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-spacebetween-start {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-end-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-vertical-center-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-left {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.clearfix::after {
  content: '';
  display: table;
  clear: both; }

.hide {
  display: hidden; }

.none {
  display: none; }

.text-center {
  text-align: center; }

@media (min-width: 56.25em) {
  .profile-countries-section {
    display: flex;
    justify-content: space-between;
    max-height: 320px; } }

.profile-countries-section .table tr td:nth-child(2) {
  width: 24%; }

.profile-countries-section .table tr td:not(:nth-child(2)) {
  width: 38%; }

.profile-countries-section .table tbody tr {
  border-bottom: none; }
  .profile-countries-section .table tbody tr td:first-of-type {
    display: flex;
    align-items: center; }
  .profile-countries-section .table tbody tr span {
    margin-left: 10px; }
  .profile-countries-section .table tbody tr svg {
    min-width: 32px; }

@media (min-width: 56.25em) {
  .profile-countries-section .table {
    width: 40%; } }

.profile-countries-section .map-wrapper {
  width: 100%; }
  @media (min-width: 56.25em) {
    .profile-countries-section .map-wrapper {
      width: 60%; } }

@charset "UTF-8";
/*
MEDIA QUERY MANAGER DESKTOP FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
[1200 - 1800]: | Normal styles 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px

@mixin respond($breakpoint){
  @if $breakpoint == phone {
    @media (max-width: 37.5em) { @content };  // 600px
  }
  @if $breakpoint == tab-port {
    @media (max-width: 56.25em) { @content }; // 900px
  }
  @if $breakpoint == tab-land {
    @media (max-width: 75em) { @content };    // 1200px
  }
  @if $breakpoint == big-desktop {
    @media (min-width: 112.5em) { @content }; // 1800px
  }
}
*/
/*
MEDIA QUERY MANAGER MOBILE FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
1200 - 1800: | Desktop 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px
*/
/*
  Hiding scrollbars mixins:
  - scroll-x-container: parent element
  - scroll-x-contained: Child element
*/
/* Hiding scrollbars mixins */
/*
  Usage: @include keyframe (name-animation) { animation }
*/
.flex-horizontal-spacebetween-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-spacebetween-start {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-end-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-vertical-center-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-left {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.clearfix::after {
  content: '';
  display: table;
  clear: both; }

.hide {
  display: hidden; }

.none {
  display: none; }

.text-center {
  text-align: center; }

.tabs-list {
  padding-left: 24px;
  display: flex;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap; }
  .tabs-list li {
    color: #4E5152;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    background-color: #E8E8E8;
    padding: 8px 42px;
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    margin: 0 1px;
    cursor: pointer;
    position: relative;
    -webkit-transition: .3s ease-in-out;
    -ms-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    flex-shrink: 0;
    user-select: none; }
    .tabs-list li:hover {
      background-color: #edf5ff; }
    .tabs-list li.active {
      background-color: #E1F8FF; }

.transactions-table .table-wrapper tr td:nth-child(2) {
  width: 20%; }

.transactions-table .table-wrapper tr td:nth-child(3) {
  width: 50%; }

.transactions-table .table-wrapper tr td:first-child, .transactions-table .table-wrapper tr td:last-of-type {
  width: 15%;
  text-align: center; }

.transactions-table .table-wrapper thead {
  border-left: 0; }
  .transactions-table .table-wrapper thead td {
    font-weight: 400;
    text-align: center;
    padding: 8px 16px;
    border-top: 2px solid #E1F8FF; }
    .transactions-table .table-wrapper thead td:first-child {
      border-top-left-radius: 6px;
      border-left: 2px solid #E1F8FF; }
    .transactions-table .table-wrapper thead td:last-child {
      border-top-right-radius: 6px;
      border-right: 2px solid #E1F8FF; }

@charset "UTF-8";
/*
MEDIA QUERY MANAGER DESKTOP FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
[1200 - 1800]: | Normal styles 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px

@mixin respond($breakpoint){
  @if $breakpoint == phone {
    @media (max-width: 37.5em) { @content };  // 600px
  }
  @if $breakpoint == tab-port {
    @media (max-width: 56.25em) { @content }; // 900px
  }
  @if $breakpoint == tab-land {
    @media (max-width: 75em) { @content };    // 1200px
  }
  @if $breakpoint == big-desktop {
    @media (min-width: 112.5em) { @content }; // 1800px
  }
}
*/
/*
MEDIA QUERY MANAGER MOBILE FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
1200 - 1800: | Desktop 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px
*/
/*
  Hiding scrollbars mixins:
  - scroll-x-container: parent element
  - scroll-x-contained: Child element
*/
/* Hiding scrollbars mixins */
/*
  Usage: @include keyframe (name-animation) { animation }
*/
.flex-horizontal-spacebetween-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-spacebetween-start {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-end-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-vertical-center-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-left {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.clearfix::after {
  content: '';
  display: table;
  clear: both; }

.hide {
  display: hidden; }

.none {
  display: none; }

.text-center {
  text-align: center; }

.company-card {
  margin-top: 16px; }
  @media (min-width: 56.25em) {
    .company-card {
      margin-top: 0; } }
  .company-card .not-available {
    font-style: italic;
    color: #a5a2a2; }
  .company-card .main-content {
    min-height: unset;
    padding: 12px 16px 80px;
    overflow-x: auto;
    overflow-y: hidden; }
    @media (min-width: 56.25em) {
      .company-card .main-content {
        padding: 12px 0 120px; } }
    .company-card .main-content .card {
      margin-bottom: 12px;
      padding: 16px 16px 48px; }
      .company-card .main-content .card:nth-child(1), .company-card .main-content .card:nth-child(2) {
        min-width: 900px; }
      @media (min-width: 56.25em) {
        .company-card .main-content .card {
          padding: 40px 40px 50px; } }
      .company-card .main-content .card h4 {
        margin-bottom: 40px;
        font-weight: 400; }
  @media (min-width: 56.25em) {
    .company-card-header section {
      display: flex;
      justify-content: space-between;
      max-width: 1100px;
      margin: 42px auto 50px; } }
  .company-card-header .card {
    padding: 16px 16px 42px; }
  .company-card-header .company-head {
    display: flex;
    margin-bottom: 42px; }
    .company-card-header .company-head img, .company-card-header .company-head .default-box {
      margin-right: 14px;
      border-radius: 8px;
      height: 80px;
      width: 80px;
      object-fit: contain; }
      @media (min-width: 56.25em) {
        .company-card-header .company-head img, .company-card-header .company-head .default-box {
          margin-right: 32px;
          height: 115px;
          width: 115px; } }
    .company-card-header .company-head .default-box {
      background-color: #F1F4F8;
      padding: 10px; }
      @media (min-width: 900px) {
        .company-card-header .company-head .default-box {
          padding: 24px 18px; } }
      .company-card-header .company-head .default-box svg {
        color: #a5a2a2;
        fill: #a5a2a2;
        font-size: 60px; }
        @media (min-width: 900px) {
          .company-card-header .company-head .default-box svg {
            font-size: 80px; } }
    .company-card-header .company-head h1 {
      font-size: 18px;
      margin-bottom: 16px; }
      @media (min-width: 56.25em) {
        .company-card-header .company-head h1 {
          font-size: 28px; } }
    .company-card-header .company-head p {
      font-size: 14px;
      line-height: 1.5;
      font-weight: 500; }
  @media (min-width: 56.25em) {
    .company-card-header .company-content {
      width: calc(100% - 370px); } }
  .company-card-header .contact-box {
    color: white;
    background-color: #204D89;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    min-height: 230px; }
    @media (min-width: 56.25em) {
      .company-card-header .contact-box {
        padding: 10px;
        width: 320px;
        min-width: 320px;
        margin-left: 50px; } }
    .company-card-header .contact-box-item {
      display: flex;
      margin-bottom: 42px;
      padding: 0 12px; }
      .company-card-header .contact-box-item svg {
        margin-right: 12px; }
    .company-card-header .contact-box .map {
      width: 100%;
      min-width: 100%;
      height: 200px;
      position: relative;
      margin-bottom: 24px; }
      @media (min-width: 56.25em) {
        .company-card-header .contact-box .map {
          width: 100%;
          height: 200px; } }
    .company-card-header .contact-box p, .company-card-header .contact-box a {
      font-size: 14px;
      font-weight: 400;
      line-height: 1.2;
      word-break: break-word; }
    .company-card-header .contact-box p, .company-card-header .contact-box a {
      padding-top: 3px; }
    .company-card-header .contact-box a:hover {
      text-decoration: underline; }
  .company-card .company-stats {
    padding: 32px 16px 16px;
    border-radius: 6px;
    background-color: #F1F4F8;
    margin-bottom: 32px; }
    @media (min-width: 500px) {
      .company-card .company-stats {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 28px; } }
    .company-card .company-stats-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 16px; }
      @media (min-width: 500px) {
        .company-card .company-stats-item {
          width: 48%; } }
      @media (min-width: 56.25em) {
        .company-card .company-stats-item {
          width: 24%;
          margin-bottom: 0; } }
      .company-card .company-stats-item div {
        padding-top: 5px; }
      .company-card .company-stats-item svg {
        margin-right: 12px;
        color: gray; }
      .company-card .company-stats-item p {
        font-weight: 600;
        margin-bottom: 8px; }
      .company-card .company-stats-item p, .company-card .company-stats-item span {
        font-size: 14px;
        line-height: 1.2; }
  .company-card .company-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 32px; }
    @media (min-width: 56.25em) {
      .company-card .company-tags {
        margin-bottom: 0; } }
    .company-card .company-tags li {
      font-size: 12px;
      font-weight: 600;
      margin: 0 6px 6px 0;
      color: #45afe3;
      background-color: #E1F8FF;
      border-radius: 4px;
      padding: 6px 52px; }
  .company-card .card:nth-child(4) {
    width: 100%; }
    @media (min-width: 56.25em) {
      .company-card .card:nth-child(4) .card {
        padding: 40px; } }
    .company-card .card:nth-child(4) h4 {
      font-size: 18px;
      margin-bottom: 42px; }
    @media (min-width: 56.25em) {
      .company-card .card:nth-child(4) .company-rrss-wrapper {
        display: flex;
        align-items: center; } }
    .company-card .card:nth-child(4) .company-rrss-wrapper a {
      font-size: 14px; }
      .company-card .card:nth-child(4) .company-rrss-wrapper a:hover {
        text-decoration: underline; }
    .company-card .card:nth-child(4) .company-rrss-wrapper div {
      display: flex;
      align-items: center; }
      @media (min-width: 56.25em) {
        .company-card .card:nth-child(4) .company-rrss-wrapper div {
          margin-right: 32px; } }
    .company-card .card:nth-child(4) .company-rrss-wrapper svg {
      margin-right: 16px; }


@charset "UTF-8";
/*
MEDIA QUERY MANAGER DESKTOP FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
[1200 - 1800]: | Normal styles 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px

@mixin respond($breakpoint){
  @if $breakpoint == phone {
    @media (max-width: 37.5em) { @content };  // 600px
  }
  @if $breakpoint == tab-port {
    @media (max-width: 56.25em) { @content }; // 900px
  }
  @if $breakpoint == tab-land {
    @media (max-width: 75em) { @content };    // 1200px
  }
  @if $breakpoint == big-desktop {
    @media (min-width: 112.5em) { @content }; // 1800px
  }
}
*/
/*
MEDIA QUERY MANAGER MOBILE FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
1200 - 1800: | Desktop 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px
*/
/*
  Hiding scrollbars mixins:
  - scroll-x-container: parent element
  - scroll-x-contained: Child element
*/
/* Hiding scrollbars mixins */
/*
  Usage: @include keyframe (name-animation) { animation }
*/
.flex-horizontal-spacebetween-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-spacebetween-start {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-end-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-vertical-center-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-left {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.clearfix::after {
  content: '';
  display: table;
  clear: both; }

.hide {
  display: hidden; }

.none {
  display: none; }

.text-center {
  text-align: center; }

.form .component-error-text {
  color: #f21c54; }

.form .form-row {
  margin-bottom: 20px; }
  .form .form-row.button-row {
    display: -webkit-flex;
    display: -webkit-flexbox;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }

.form .form-errors {
  text-align: center;
  color: #f21c54;
  font-size: 12px;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s; }
  .form .form-errors.has-errors {
    max-height: 200px;
    opacity: 1; }

.form .login-link {
  font-size: 20px; }
  .form .login-link a, .form .login-link span {
    text-decoration: underline;
    cursor: pointer; }
  .form .login-link.disabled {
    pointer-events: none;
    opacity: 0.6; }

.main-content {
  min-height: 60vh; }




@charset "UTF-8";
/*
MEDIA QUERY MANAGER DESKTOP FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
[1200 - 1800]: | Normal styles 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px

@mixin respond($breakpoint){
  @if $breakpoint == phone {
    @media (max-width: 37.5em) { @content };  // 600px
  }
  @if $breakpoint == tab-port {
    @media (max-width: 56.25em) { @content }; // 900px
  }
  @if $breakpoint == tab-land {
    @media (max-width: 75em) { @content };    // 1200px
  }
  @if $breakpoint == big-desktop {
    @media (min-width: 112.5em) { @content }; // 1800px
  }
}
*/
/*
MEDIA QUERY MANAGER MOBILE FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
1200 - 1800: | Desktop 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px
*/
/*
  Hiding scrollbars mixins:
  - scroll-x-container: parent element
  - scroll-x-contained: Child element
*/
/* Hiding scrollbars mixins */
/*
  Usage: @include keyframe (name-animation) { animation }
*/
.flex-horizontal-spacebetween-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-spacebetween-start {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-end-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-vertical-center-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-left {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.clearfix::after {
  content: '';
  display: table;
  clear: both; }

.hide {
  display: hidden; }

.none {
  display: none; }

.text-center {
  text-align: center; }

.pending-invitations .pending-invitations-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ececec; }



@charset "UTF-8";
/*
MEDIA QUERY MANAGER DESKTOP FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
[1200 - 1800]: | Normal styles 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px

@mixin respond($breakpoint){
  @if $breakpoint == phone {
    @media (max-width: 37.5em) { @content };  // 600px
  }
  @if $breakpoint == tab-port {
    @media (max-width: 56.25em) { @content }; // 900px
  }
  @if $breakpoint == tab-land {
    @media (max-width: 75em) { @content };    // 1200px
  }
  @if $breakpoint == big-desktop {
    @media (min-width: 112.5em) { @content }; // 1800px
  }
}
*/
/*
MEDIA QUERY MANAGER MOBILE FIRST

Breakpoint       Device ($breakpoint)
-------------  | -------------- 
0 - 600px      | Phone (phone)
600px - 900px  | Tablet portrait (tab-port)
900px - 1200px | Tablet landscape (tab-land)
1200 - 1800: | Desktop 
1800px - ∞:    | Big desktop (big-desktop)

1em = 16px
*/
/*
  Hiding scrollbars mixins:
  - scroll-x-container: parent element
  - scroll-x-contained: Child element
*/
/* Hiding scrollbars mixins */
/*
  Usage: @include keyframe (name-animation) { animation }
*/
.flex-horizontal-spacebetween-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-spacebetween-start {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-horizontal-end-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-vertical-center-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-center {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-vertical-start-left {
  display: -webkit-flex;
  display: -webkit-flexbox;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.clearfix::after {
  content: '';
  display: table;
  clear: both; }

.hide {
  display: hidden; }

.none {
  display: none; }

.text-center {
  text-align: center; }

html {
  font-family: "Lato", sans-serif;
  background-color: #edf5ff;
  color: #10293d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }

body {
  box-sizing: border-box;
  font-size: 17px;
  font-family: "Lato", sans-serif;
  letter-spacing: 1px;
  word-spacing: 1px; }

.main-container {
  position: relative; }

.bold {
  font-weight: 800; }

.regular, .regular p {
  font-weight: 400; }

.light {
  font-weight: 300; }

h1 {
  font-size: 3rem;
  font-weight: 400; }

h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.5rem; }

h3 {
  font-size: 1.5rem;
  font-weight: 300; }

p {
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.7px; }

button {
  border: none;
  box-shadow: none;
  border-radius: 8px;
  -webkit-appearance: none;
  outline: none;
  background: #10293d;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  height: 33px;
  cursor: pointer;
  transition: all 0.3s; }
  button.small {
    height: 25px;
    padding: 0.4rem 1rem; }
  button.login {
    font-size: 12px;
    background-color: #ececec;
    color: #10293d; }

.anchor {
  color: #45afe3;
  text-decoration: underline;
  font-weight: 600; }
  @media (min-width: 37.5em) {
    .anchor:hover {
      color: #204D89; } }

input:focus {
  outline: none; }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

ol, ul {
  list-style: none; }

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer; }

::-webkit-scrollbar {
  display: none; }

button {
  outline: none; }

#evolution-chart .years-bars {
  fill: #204d89; }

#evolution-chart .domain {
  display: none; }

#evolution-chart .tick line {
  display: none; }

#evolution-chart .tick text {
  fill: #9B9B9B; }

#evolution-chart #tickLines .tick-line {
  -webkit-opacity: 0.2;
  -moz-opacity: 0.2;
  -ms-opacity: 0.2;
  opacity: 0.2;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
  filter: alpha(opacity=20); }

header {
  padding: 12px;
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: 13px 23px 43px 0 rgba(200, 213, 231, 0.32);
  position: relative; }
  header button.inversed-hovered-button:not([type="submit"]) {
    margin-top: 0;
    width: 140px; }
  @media (min-width: 900px) {
    header button {
      height: 33px; } }
  header .header-logo {
    padding-top: 8px; }
    @media (min-width: 37.5em) {
      header .header-logo {
        width: fit-content;
        padding: 8px 0 16px; } }
    @media (min-width: 1024px) {
      header .header-logo {
        width: 12%;
        min-width: 140px;
        display: flex;
        align-items: flex-start;
        padding: 30px 16px 16px 0; } }
    @media (min-width: 1200px) {
      header .header-logo {
        padding: 20px 16px 16px 0;
        min-width: 190px; } }
    header .header-logo img {
      height: 35px;
      width: auto; }
      @media (min-width: 1200px) {
        header .header-logo img {
          height: 50px; } }
  header .Search {
    position: relative; }
    @media (min-width: 37.5em) {
      header .Search {
        order: 0; } }
    @media (min-width: 1024px) {
      header .Search {
        width: 76%;
        max-width: 1100px;
        padding: 20px 16px 12px; }
        header .Search:before, header .Search:after {
          content: '';
          width: 1px;
          height: 88px;
          background-color: #E1F8FF;
          display: block;
          position: absolute;
          top: 0; }
        header .Search:before {
          left: 0; }
        header .Search:after {
          right: 0; } }
  header .user-access {
    position: absolute;
    top: 8px;
    right: 12px;
    height: 58px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    @media (min-width: 900px) {
      header .user-access {
        top: 13px; } }
    @media (min-width: 1024px) {
      header .user-access {
        padding: 15px 12px 12px;
        position: relative;
        width: 12%;
        height: 88px;
        min-width: 160px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        right: unset;
        top: unset; } }
  header .login-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    font-size: 14px;
    color: #a4b3b7; }
    header .login-button img {
      margin-right: 5px; }
  @media (min-width: 37.5em) {
    header {
      border-bottom: 1px solid #E1F8FF;
      box-shadow: none;
      flex-wrap: nowrap;
      padding: 12px 12px 20px; }
      header:before {
        content: '';
        background-color: #E1F8FF;
        height: 1px;
        position: absolute;
        top: 72px;
        right: 0;
        left: 0; } }
  @media (min-width: 1024px) {
    header {
      flex-direction: row;
      justify-content: space-between;
      padding: 0 16px; }
      header:before {
        top: 88px; } }

.companies-dialog-content {
  padding: 0px 24px 20px 24px; }
  .companies-dialog-content p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 22px; }
    .companies-dialog-content p a {
      text-decoration: underline;
      font-weight: bold; }
  .companies-dialog-content .form-container {
    margin-bottom: 30px; }
    .companies-dialog-content .form-container .form-error {
      margin-top: 20px;
      color: #f21c54; }
    .companies-dialog-content .form-container .form-success {
      font-weight: bold; }
    .companies-dialog-content .form-container form {
      text-align: center; }
    .companies-dialog-content .form-container .form-container-buttons {
      display: -webkit-flex;
      display: -webkit-flexbox;
      display: -moz-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: space-between;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center;
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      width: 96%;
      margin: 0 auto; }

button.button-light-blue {
  background-color: #45afe3; }
  button.button-light-blue:hover {
    background-color: #68c7f5; }

button.inversed-hovered-button {
  color: #ececec;
  border: 1px solid #0072BA; }
  @media (hover: hover) {
    button.inversed-hovered-button:hover {
      color: #10293d;
      border: 1px solid #10293d;
      background-color: #ffffff; } }

button.inversed-hovered-button__alt {
  color: #10293d;
  border: 1px solid #10293d;
  background-color: #ffffff; }
  @media (hover: hover) {
    button.inversed-hovered-button__alt:hover {
      color: #ececec;
      background: #0072BA; } }

@media (min-width: 37.5em) {
  .companies-dialog-content .form-container .form-container-buttons {
    width: 60%; } }

footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  background-color: #10293d;
  padding: 5%;
  box-shadow: 0px -4px 12px -1px rgba(141, 141, 141, 0.88); }
  footer .footer-upper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap; }
  footer section {
    width: 100%;
    margin-bottom: 20px; }
    footer section h3 {
      color: #45afe3;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 0.2rem; }
    footer section ul {
      list-style: none;
      list-style-type: none;
      padding: 0;
      margin: 0; }
      footer section ul li {
        margin-bottom: 0.1rem; }
        footer section ul li a {
          color: #ffffff;
          text-decoration: none;
          font-size: 14px;
          white-space: nowrap; }
  footer .footer-line {
    width: 110%;
    height: 1px;
    background-color: #45afe3;
    margin: 20px -5% 10px; }
  footer .footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    padding-top: 20px;
    font-size: 14px;
    color: #ffffff; }
    footer .footer-bottom span {
      display: none; }
    footer .footer-bottom-item {
      margin-bottom: 10px;
      text-align: center; }
      footer .footer-bottom-item a {
        color: #ffffff;
        text-decoration: none;
        font-size: 14px; }

@media (min-width: 37.5em) {
  footer .footer-upper {
    display: -webkit-flex;
    display: -webkit-flexbox;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
    footer .footer-upper section {
      width: auto;
      min-width: 50%;
      padding: 0 5%; } }

@media (min-width: 56.25em) {
  footer {
    padding-left: 7%;
    padding-right: 7%; }
    footer .footer-upper {
      display: -webkit-flex;
      display: -webkit-flexbox;
      display: -moz-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: space-between;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      -ms-align-items: flex-start;
      align-items: flex-start;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      width: 100%; }
      footer .footer-upper section {
        min-width: auto;
        margin-bottom: 0;
        padding: 0 2%; }
    footer .footer-line {
      width: 114%;
      margin: 20px -7% 10px; }
    footer .footer-bottom {
      display: -webkit-flex;
      display: -webkit-flexbox;
      display: -moz-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      -ms-justify-content: center;
      justify-content: center;
      -ms-flex-pack: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center;
      -webkit-flex-wrap: nowrap;
      -moz-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; }
      footer .footer-bottom span {
        display: block; }
      footer .footer-bottom-item {
        margin: 0 10px; } }

.main-search-form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%; }
  .main-search-form-container form {
    width: 100%;
    display: flex;
    flex-direction: column; }
    @media (min-width: 56.25em) {
      .main-search-form-container form {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        position: relative;
        padding-right: 25%; } }
    @media (min-width: 1024px) {
      .main-search-form-container form {
        max-width: 900px;
        padding-right: 230px;
        padding-top: 0; } }
    @media (min-width: 56.25em) {
      .main-search-form-container form > button {
        width: auto;
        min-width: 140px;
        position: absolute;
        right: 0;
        bottom: 0; } }
    @media (min-width: 1024px) {
      .main-search-form-container form > button[type="submit"] {
        width: 140px; } }
    .main-search-form-container form .react-autosuggest__container {
      width: 100%;
      margin-top: 10px; }
      @media (min-width: 56.25em) {
        .main-search-form-container form .react-autosuggest__container {
          width: 31%; } }
      @media (min-width: 1024px) {
        .main-search-form-container form .react-autosuggest__container {
          margin-top: 0; } }
      .main-search-form-container form .react-autosuggest__container label {
        font-size: 13px; }
        .main-search-form-container form .react-autosuggest__container label[data-shrink="true"] {
          font-size: 14px;
          color: #0072BA;
          font-weight: 800; }
      .main-search-form-container form .react-autosuggest__container input {
        padding: 0 0 7px;
        font-size: 14px; }
      .main-search-form-container form .react-autosuggest__container .react-autosuggest__suggestions-list {
        z-index: 1000;
        position: fixed;
        width: 100vw;
        max-height: calc(100vh - 40%);
        left: 0;
        overflow: scroll;
        background-color: #ffffff;
        margin-bottom: 20px; }
        @media (min-width: 56.25em) {
          .main-search-form-container form .react-autosuggest__container .react-autosuggest__suggestions-list {
            position: absolute;
            width: 100%;
            max-height: calc(100vh - 50%); } }
        @media (min-width: 75em) {
          .main-search-form-container form .react-autosuggest__container .react-autosuggest__suggestions-list {
            max-height: calc(100vh - 35%); } }
        .main-search-form-container form .react-autosuggest__container .react-autosuggest__suggestions-list li {
          height: 100%;
          padding: 10px;
          vertical-align: text-top;
          white-space: normal;
          border-bottom: 1px solid #ececec; }
          @media (min-width: 75em) {
            .main-search-form-container form .react-autosuggest__container .react-autosuggest__suggestions-list li {
              padding: 5px; } }
      .main-search-form-container form .react-autosuggest__container .clear-button {
        width: 20px;
        padding: 0;
        margin: 0px 0 4px 0; }
        .main-search-form-container form .react-autosuggest__container .clear-button:hover {
          background-color: unset; }
        .main-search-form-container form .react-autosuggest__container .clear-button i {
          font-size: 18px;
          color: #0072BA; }
      .main-search-form-container form .react-autosuggest__container .autocomplete-item {
        height: 100%;
        padding: 10px;
        vertical-align: text-top;
        white-space: normal; }
        .main-search-form-container form .react-autosuggest__container .autocomplete-item .autocomplete-item-buttons {
          display: none; }
    .main-search-form-container form .product-search-container {
      width: 100vw;
      height: calc(100vh - 64px);
      z-index: 1000;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      margin-bottom: 20px; }
      @media (min-width: 56.25em) {
        .main-search-form-container form .product-search-container {
          height: 65vh; } }
      .main-search-form-container form .product-search-container-off {
        width: 100%;
        box-shadow: 0px 3px 5px 0px rgba(141, 141, 141, 0.3); }
        .main-search-form-container form .product-search-container-off:hover {
          cursor: pointer; }
        .main-search-form-container form .product-search-container-off .search-by-code-button {
          flex-basis: 100%;
          padding: 20px; }
          .main-search-form-container form .product-search-container-off .search-by-code-button:hover {
            cursor: pointer; }
      .main-search-form-container form .product-search-container .search-menu {
        display: -webkit-flex;
        display: -webkit-flexbox;
        display: -moz-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
        -ms-flex-pack: space-between;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -webkit-flex-wrap: nowrap;
        -moz-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 20px;
        background: linear-gradient(to bottom, #ececec 0%, #ececec 80%, white 90%, white 100%); }
      .main-search-form-container form .product-search-container .product-search-step-container {
        position: absolute;
        overflow: scroll;
        height: calc(100vh - 68px);
        background-color: #ffffff; }
        @media (min-width: 1024px) {
          .main-search-form-container form .product-search-container .product-search-step-container {
            box-shadow: 13px 23px 43px 0 rgba(200, 213, 231, 0.32); } }
      .main-search-form-container form .product-search-container .react-swipeable-view-container {
        box-shadow: 0px 0px 10px 0px rgba(141, 141, 141, 0.14); }
        .main-search-form-container form .product-search-container .react-swipeable-view-container .product-list-loading {
          margin-top: 20px;
          margin-left: calc(50% - 20px); }
      .main-search-form-container form .product-search-container .product-item {
        width: 100vw;
        height: 100%;
        border-bottom: 1px solid #ececec;
        padding: 20px;
        font-size: 14px; }
        @media (min-width: 1024px) {
          .main-search-form-container form .product-search-container .product-item {
            display: flex;
            align-items: center;
            justify-content: space-between; }
            .main-search-form-container form .product-search-container .product-item:hover .product-item-buttons {
              opacity: 1; } }
        .main-search-form-container form .product-search-container .product-item:hover {
          cursor: pointer; }
        .main-search-form-container form .product-search-container .product-item.product-selected {
          background-color: #10293d;
          color: white; }
          @media (min-width: 1024px) {
            .main-search-form-container form .product-search-container .product-item.product-selected {
              background-color: #ffffff;
              color: #10293d; } }
        @media (min-width: 1024px) {
          .main-search-form-container form .product-search-container .product-item.product-item-with-buttons {
            padding: 12px 20px; } }
        .main-search-form-container form .product-search-container .product-item.dummy {
          border: none; }
        @media (min-width: 75em) {
          .main-search-form-container form .product-search-container .product-item .product-item-name {
            width: calc(100% - 250px); } }
        .main-search-form-container form .product-search-container .product-item .product-item-buttons {
          display: none; }
          @media (min-width: 1024px) {
            .main-search-form-container form .product-search-container .product-item .product-item-buttons {
              display: flex;
              justify-content: space-between;
              align-items: center;
              flex-basis: 220px;
              opacity: 0;
              transition: opacity 0.3s; }
              .main-search-form-container form .product-search-container .product-item .product-item-buttons button {
                margin-top: 0; }
                .main-search-form-container form .product-search-container .product-item .product-item-buttons button:not(.next-level-mobile-button) {
                  background-color: #48ba6c; }
                  .main-search-form-container form .product-search-container .product-item .product-item-buttons button:not(.next-level-mobile-button):hover {
                    background-color: #3ca25c; }
                .main-search-form-container form .product-search-container .product-item .product-item-buttons button.next-level-mobile-button {
                  width: 45px;
                  height: 45px;
                  padding-top: 4px;
                  border-radius: 100%; }
                  .main-search-form-container form .product-search-container .product-item .product-item-buttons button.next-level-mobile-button:hover {
                    background-color: #ffffff;
                    border: 1px solid #10293d; }
                    .main-search-form-container form .product-search-container .product-item .product-item-buttons button.next-level-mobile-button:hover span {
                      color: #10293d; } }
      .main-search-form-container form .product-search-container .code-navigaion {
        display: -webkit-flex;
        display: -webkit-flexbox;
        display: -moz-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: flex-end;
        -moz-justify-content: flex-end;
        -ms-justify-content: flex-end;
        justify-content: flex-end;
        -ms-flex-pack: flex-end;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        -webkit-flex-wrap: nowrap;
        -moz-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        flex-basis: 50px; }
        .main-search-form-container form .product-search-container .code-navigaion .go-back {
          margin-right: 10px; }
        .main-search-form-container form .product-search-container .code-navigaion:hover {
          cursor: pointer; }
      .main-search-form-container form .product-search-container .item-selection-menu {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
        z-index: 2000;
        width: 35%;
        position: fixed;
        left: 15px;
        padding: 5px;
        bottom: 20px; }
        @media (min-width: 75em) {
          .main-search-form-container form .product-search-container .item-selection-menu {
            display: none; } }
        .main-search-form-container form .product-search-container .item-selection-menu button {
          position: relative; }
          .main-search-form-container form .product-search-container .item-selection-menu button.next-level-mobile-button {
            background-color: #10293d;
            width: 45px;
            height: 45px;
            border-radius: 50px;
            margin-right: 10px; }
            .main-search-form-container form .product-search-container .item-selection-menu button.next-level-mobile-button:hover {
              color: white; }
          .main-search-form-container form .product-search-container .item-selection-menu button.use-product-mobile-button {
            background-color: #48ba6c;
            width: 45px;
            height: 45px;
            border-radius: 50px; }
          .main-search-form-container form .product-search-container .item-selection-menu button .material-icons {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); }
    @media (min-width: 56.25em) {
      .main-search-form-container form .product-search-container,
      .main-search-form-container form .product-search-container-off {
        position: absolute;
        top: 110%;
        width: 100%;
        height: auto;
        background-color: #ffffff;
        z-index: 1; }
        .main-search-form-container form .product-search-container .product-item,
        .main-search-form-container form .product-search-container .product-search-step-container,
        .main-search-form-container form .product-search-container-off .product-item,
        .main-search-form-container form .product-search-container-off .product-search-step-container {
          width: 100%; } }
    .main-search-form-container form .form-error {
      font-size: 12px;
      color: #f21c54;
      font-weight: 400;
      text-align: center;
      margin-top: 10px; }
      @media (min-width: 56.25em) {
        .main-search-form-container form .form-error {
          width: 100%;
          margin-top: 30px;
          position: absolute;
          bottom: -50px; } }
    .main-search-form-container form .filter-group {
      flex-direction: column;
      justify-content: stretch;
      width: 100%; }
      @media (min-width: 56.25em) {
        .main-search-form-container form .filter-group {
          width: 100%;
          display: flex;
          flex-direction: row;
          margin: 0 0 8px 0;
          padding: 0; } }
      @media (min-width: 56.25em) {
        .main-search-form-container form .filter-group > button {
          width: auto;
          min-width: 140px;
          right: 0;
          bottom: 8px;
          position: absolute; } }
      @media (min-width: 56.25em) {
        .main-search-form-container form .filter-group .react-autosuggest__container {
          width: 48%; } }
      .main-search-form-container form .filter-group .filter-row {
        width: 100%; }
        @media (min-width: 56.25em) {
          .main-search-form-container form .filter-group .filter-row .react-autosuggest__container {
            margin-top: 28px; } }
    @media (min-width: 56.25em) {
      .main-search-form-container form .filter-row {
        width: 100%;
        display: flex;
        justify-content: space-between; } }
    @media (min-width: 56.25em) {
      .main-search-form-container form .filter-row .react-autosuggest__container {
        margin-top: 46px; } }
    .main-search-form-container form .open-filter {
      border: none;
      background-color: transparent; }
      @media (min-width: 56.25em) {
        .main-search-form-container form .open-filter {
          width: 5%; } }
      @media (min-width: 1024px) {
        .main-search-form-container form .open-filter {
          right: 22%; } }
      @media (min-width: 1100px) {
        .main-search-form-container form .open-filter {
          right: 160px; } }
    .main-search-form-container form .open {
      transform: rotateX(180deg); }
    .main-search-form-container form .open-button {
      display: block;
      margin: 16px auto 0;
      order: 1; }
      @media (min-width: 56.25em) {
        .main-search-form-container form .open-button {
          order: 0;
          margin: 0;
          display: flex;
          align-items: center;
          position: absolute;
          top: 18px;
          font-weight: 800;
          color: #A4B3B7; }
          .main-search-form-container form .open-button.open-filter {
            width: 30px;
            min-width: unset;
            right: 18%; } }
      @media (min-width: 1024px) {
        .main-search-form-container form .open-button {
          top: 8px; }
          .main-search-form-container form .open-button.open-filter {
            right: 160px; } }
  @media (min-width: 56.25em) {
    .main-search-form-container.page-comercio-mundial form .product-search-container .product-search-step-container,
    .main-search-form-container.page-comercio-mundial form .product-search-container-off .product-search-step-container {
      width: 100%; } }

.home-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-position: center;
  background-size: cover;
  min-height: 50vh;
  max-width: 1100px; }
  .home-container .home-content {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-content: stretch;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 5%;
    max-width: 1100px; }
    @media (min-width: 37.5em) {
      .home-container .home-content {
        padding: 0 24px 64px; } }
    @media (min-width: 1200px) {
      .home-container .home-content {
        padding: 0 0 100px; } }
    .home-container .home-content .img-wrapper {
      margin: 12px 0;
      display: flex;
      align-items: center; }
      @media (min-width: 37.5em) {
        .home-container .home-content .img-wrapper {
          position: absolute;
          right: 28px;
          top: 24px;
          margin: 0; } }
    .home-container .home-content img {
      height: 24px;
      width: 24px;
      margin: 0 0 0 12px;
      max-width: 100%; }
      @media (min-width: 37.5em) {
        .home-container .home-content img {
          margin: 0 0 0 24px; } }
    .home-container .home-content .icon {
      border-radius: 50%;
      height: 10px;
      width: 10px;
      margin-right: 5px; }
    .home-container .home-content .updated {
      background-color: lightgreen; }
    .home-container .home-content .pending {
      background-color: lightblue; }
    .home-container .home-content .import {
      transform: rotate(180deg); }
    .home-container .home-content .section-wrapper {
      padding: 0 16px;
      display: -webkit-flex;
      display: -webkit-flexbox;
      display: -moz-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between;
      -ms-flex-pack: space-between;
      -webkit-align-items: center;
      -moz-align-items: center;
      -ms-align-items: center;
      align-items: center;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row; }
      @media (min-width: 37.5em) {
        .home-container .home-content .section-wrapper {
          padding: 0; } }

.comercio-mundial-page {
  width: 100%;
  padding: 32px 0; }
  .comercio-mundial-page section {
    max-width: 90%;
    margin: 0 auto 24px; }
    @media (min-width: 56.25em) {
      .comercio-mundial-page section {
        max-width: 1100px; } }
    .comercio-mundial-page section .card {
      padding: 16px 16px 48px; }
      @media (min-width: 56.25em) {
        .comercio-mundial-page section .card {
          padding: 40px 40px 50px; } }
  .comercio-mundial-page section.companies .section-wrapper {
    max-width: 100%;
    overflow: hidden; }
    .comercio-mundial-page section.companies .section-wrapper table.companies-list {
      margin: 3%;
      position: relative;
      max-width: 100%;
      border-collapse: collapse;
      border: none; }
      .comercio-mundial-page section.companies .section-wrapper table.companies-list tr.companies-list-item td {
        padding: 10px 5px;
        white-space: nowrap;
        color: transparent;
        text-transform: capitalize;
        text-shadow: 0 0 9px rgba(0, 0, 0, 0.5);
        border: none; }
  .comercio-mundial-page section.main .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden; }
    @media (min-width: 56.25em) {
      .comercio-mundial-page section.main .card {
        flex-direction: row-reverse;
        align-items: flex-start; } }
  .comercio-mundial-page section.main .main-info {
    order: 2;
    width: 100%; }
    .comercio-mundial-page section.main .main-info .warning-message {
      font-weight: bold; }
  .comercio-mundial-page section.main .main-country-flag {
    width: 100%;
    max-width: 320px;
    height: 190px;
    box-shadow: 0px 0px 12px 0px rgba(141, 141, 141, 0.14);
    margin-bottom: 20px;
    order: 1; }
    @media (min-width: 56.25em) {
      .comercio-mundial-page section.main .main-country-flag {
        margin-left: 60px; } }
    .comercio-mundial-page section.main .main-country-flag #country-flag {
      height: 100%; }
  .comercio-mundial-page .buttons {
    margin-top: 60px; }
    .comercio-mundial-page .buttons button {
      margin: 0 16px 16px 0;
      min-width: 160px; }
      @media (min-width: 56.25em) {
        .comercio-mundial-page .buttons button {
          margin: 0 16px 0 0; } }
  .comercio-mundial-page .form {
    border-bottom: 1px solid #bebfc2; }
  .comercio-mundial-page h1 {
    font-size: 26px;
    font-weight: 700;
    color: #3b3b3b;
    margin-bottom: 2%; }
  .comercio-mundial-page h2 {
    font-size: 22px;
    font-weight: 900;
    color: #3b3b3b;
    margin-bottom: 2%;
    padding: 1% 3%; }
  .comercio-mundial-page p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 22px; }
  .comercio-mundial-page .countries table td:first-child, .comercio-mundial-page .countries table td:last-child {
    width: 39%; }
  .comercio-mundial-page .countries table td:nth-child(2) {
    width: 22%; }
  .comercio-mundial-page .products {
    overflow-x: auto;
    overflow-y: hidden;
    max-width: unset;
    margin: 0 0 24px; }
    .comercio-mundial-page .products .card {
      min-width: 900px;
      margin-left: 24px; }
      @media (min-width: 56.25em) {
        .comercio-mundial-page .products .card {
          margin-left: 0; } }
    .comercio-mundial-page .products table td:first-child {
      width: 40%; }
    .comercio-mundial-page .products table td:not(:first-child) {
      width: 15%; }
  .comercio-mundial-page .section-data-container {
    display: flex;
    flex-direction: column; }
    @media (min-width: 56.25em) {
      .comercio-mundial-page .section-data-container {
        flex-direction: row;
        justify-content: space-between; } }
    .comercio-mundial-page .section-data-container .section-data-chart {
      width: 100%;
      height: 150px; }
      @media (min-width: 56.25em) {
        .comercio-mundial-page .section-data-container .section-data-chart {
          padding-top: 20px;
          max-height: 300px;
          flex-basis: 55%;
          height: auto;
          max-width: none;
          box-shadow: none;
          margin-right: 24px; } }
    @media (min-width: 56.25em) {
      .comercio-mundial-page .section-data-container .table {
        width: 45%; } }
    .comercio-mundial-page .section-data-container .table td.country-name-flag {
      display: flex;
      justify-content: flex-start;
      align-items: center; }
      .comercio-mundial-page .section-data-container .table td.country-name-flag svg {
        margin-right: 4px; }

.tooltip {
  max-width: 300px; }

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .modal-content .radio-buttons {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: flex-start;
    margin: 2em auto; }
  .modal-content .inversed-hovered-button {
    border-radius: 6px; }

/* EMPRESAS */
#simple-dialog-title h6 {
  position: relative; }
  #simple-dialog-title h6 img {
    margin-bottom: -1px; }
  #simple-dialog-title h6 button {
    position: absolute;
    top: -12px;
    right: -12px; }

