*, html {
    font-family: 'Roboto', sans-serif;
}

:root {
    --color-blue: #002939;
}

body {
    background-color: var(--color-blue);
}

/* Titles */
.big-title-1 {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
}
.big-title-2 {
    font-size: 18px;
    text-transform: uppercase;
}
.sub-title-1 {
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: solid 1px #BE1823;
}

/* Custom Form */
.custom-input-icon .icon-box {
    position: relative;
}
.custom-input-icon .icon-box i {
    position: absolute;
    font-size: 16px;
    color: #C3C3C3;
    top: 50%;
    left: 8px;
    bottom: 0;
    transform: translateY(-50%);
}

/* Generals */
.travel-detail .travel-od {
    font-size: 32px;
    font-weight: 300;
    line-height: 110%;
}
.travel-detail .travel-date {
    font-size: 18px;
    font-weight: 400;
    line-height: 110%;
}

.time-counter {
    font-size: 56px;
    color: #FF7800;
    font-weight: 600;
}
.btn-time-counter {
    width: 96px;
    height: 96px;
}

.select-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.justify-content-evenly {
    justify-content: space-evenly!important;
}