html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    color: #000000;
}

.font-2 {
    font-family: 'Jost', sans-serif;
}

.container {
    max-width: 1150px;
}

header {
    z-index: 101;
}

[v-cloak] {
    display: none !important;
}

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

.bg-1 {
    background-color: #d40511;
}
.color-1 {
    color: #d40511;
}

.bg-2 {
    background-color: #ffcc00;
}
.color-2 {
    color: #ffcc00;
}

.bg-3 {
    background-color: #67a31d;
}
.color-3 {
    color: #67a31d;
}

.bg-4 {
    background-color: #f2f2f2;
}
.color-4 {
    color: #f2f2f2;
}

.b-border {
    border: 0.1rem solid #8c8c8c;
}
.b-border-b {
    border-bottom: 0.1rem solid #8c8c8c;
}
.r-border {
    border: 0.1rem solid #ff0f0f;
}

.text-2xs {
    font-size: .65rem;
    line-height: 1rem;
}

.z-200 {
    z-index: 200;
}

.input-focus:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}

.top-gradient {
    background: linear-gradient(90deg,#ffcc00 0,#ffcc00 48%,#ffe57f 70%,#fff0b2);
}

.nav {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.nav span {
    height: 4px;
    width: 22px;
    background-color: #d40511;
}

.arr-down {
    position: relative;
}
.arr-down:after {
    content: ">";
    display: block;
    font-size: 2.2rem;
    line-height: 1;
    margin-left: 0.4rem;
}


.t-result {
    position: relative;
    padding-bottom: 1.2rem;
    padding-left: 2rem;
    border-left: 1px solid #8c8c8c;
}
.t-result::before {
    content: url("../img/triangle.svg");
    background-color: #ffffff;
    top: -2px;
    left: -9.5px;
    width: 1.1rem;
    position: absolute;
    z-index: 1;

}

.last-t-result::before {
    top: 62px;
}

.expand-next {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height;
    transition-duration: 300ms;
    transition-timing-function: linear;
}
.expanded {
    max-height: 40rem;
}
.city, .country {
    text-transform: uppercase;
}
