/* Trip Sans Font Faces */
@font-face {
  font-family: 'Trip Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./TripSans-Regular.woff2') format('woff2'),
    url('./TripSans-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Trip Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./TripSans-Medium.woff2') format('woff2'),
    url('./TripSans-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Trip Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./TripSans-Medium.woff2') format('woff2'),
    url('./TripSans-Medium.woff') format('woff');
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
    padding: 0;
    margin: 0
}

body{
    margin: 0;
    line-height: 1.3;
    background: #f0f0f0;
    overflow-x: hidden;
    font-family: "Trip Sans", arial, sans-serif;
    color: #000;
}
button{
    margin: 0;
    overflow: visible;
    text-transform: none;
    -webkit-appearance: button;
}
button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

a {
    text-decoration: none;
    font-size: 16px;
}

i.icon {
    color: #444;
    display: inline-block;
    font-size: 21px;
    height: 21px;
    line-height: 21px;
    margin: 0;
    text-decoration: none !important;
    vertical-align: middle;
    width: auto;
    z-index: 0;
}

.migration-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}
.migration-page .icon-arrow-down {
    display: none !important;
}

.migration-page .first-button {
    background: #fff;
}
.migration-page .first-button a {
    color: #000;
    font-weight: 700;
}
.migration-page .line {
    width: 850px;
    height: 1px;
    background: #e0e0e0;
    margin: 32px auto 0;
}
.migration-page ul {
    list-style: none;
}
.migration-page ul li {
    display: inline-block;
    max-width: 250px;
    margin-right: 20px;
}
.migration-page ul li .icon {
    top: 10px !important;
}
.migration-page .second-button {
    padding: 16px 24.5px;
    color: #002b11;
    background-color: #00eb5b;
    border: 1.5px solid #00ab42;
    border-radius: 1000px
}
.migration-page .second-button span {
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
}

.button-container {
    display: flex;
    justify-content: center;
}
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    max-width: 600px;
}

.migration-page .icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: nowrap;
    width: 100%;
}
.migration-page p {
    margin: 0;
}
.migration-page .message {
    max-width: 500px;
    text-align: center;
}
.migration-page .message .title {
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
}
.migration-page .icon {
    display: inline-block;
    position: relative;
    padding: 0;
    margin: 0;
}
.migration-page .icon-tripadvisor-logo {
    background: url(./tripadvisor-logo.svg) no-repeat;
    background-size: contain;
    height: 40px;
    width: 257px;
    flex-shrink: 0;
}
.migration-page .icon-arrow-right {
    background: url(./right_arrow.svg) no-repeat;
    background-position: center;
    height: 40px;
    width: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.migration-page .icon-arrow-right:before {
    width: 0 !important;
    height: 0 !important;
}
.migration-page .icon-arrow-right.ni {
    align-self: center;
}
.migration-page .icon-ni-logo {
    background: url(./niumba_logo.svg) no-repeat;
    height: 44px;
    width: 162px;
    flex-shrink: 0;
}
@media only screen and (min-width: 320px) and (max-width: 600px) {
    .migration-page .message {
        max-width: 300px !important;
    }
    .migration-page .icon-arrow-right {
        display: none !important;
    }
    .migration-page .icon-arrow-down {
        display: block !important;
    }
    .migration-page .icon-arrow-down:before {
        width: 0 !important;
        height: 0 !important;
    }
    .migration-page .icons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .migration-page .icon-arrow-down {
        background: url(./arrow_down.svg) no-repeat;
        height: 25px;
        width: 40px;
    }
    .migration-page .icon-ni-logo {
        align-self: center;
    }
    .migration-page .icon-tripadvisor-logo {
        align-self: center;
    }
}



@media only screen and (min-width: 320px) and (max-width: 767px) {
    * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    body,
    html {
        height: 100%;
        min-height: 100%;
        overflow-y: auto;
    }
    body {
        margin: 0;
        padding: 0;
        position: relative;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        min-height: 100svh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .migration-page {
        min-height: 100vh;
        justify-content: center;
        padding: 20px;
    }
    
    .content-container {
        gap: 25px;
        padding: 0 20px;
        width: 100%;
        max-width: 400px;
    }
}