﻿/* site settings */
* {
    font-family: "Roboto";
    font-weight: 400;
}

.pointer {
    cursor: pointer;
}

/* input */
::-webkit-input-placeholder { /* Edge */
    color: #999999;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #999999;
}

::placeholder {
    color: #999999;
}

input {
    border-radius: 12px;
    padding: 5px 10px;
    border: none;
    outline: none;
    height: 60px;
}

    input[type=search] {
        background: url('../img/search_icon.png') no-repeat scroll 8px 22px;
        background-color: white;
        padding-left: 35px;
    }

    input.with_button {
        padding-right: 150px;
    }

/* a */
a.button {
    display: flex;
    justify-content: center;
    align-items: center;
}

a.like_span:hover {
    text-decoration: none;
}

    a.like_span.white:hover {
        color: white
    }
a.like_span.black:hover {
    color: black
}

/* opacity */
.op_05 {
    opacity: 0.5;
}

/* margin */
.mr_20 {
    margin-right: 20px;
}

.mr_40 {
    margin-right: 40px;
}

.mt_20 {
    margin-top: 20px;
}

.mt_40 {
    margin-top: 40px;
}

.mt_80 {
    margin-top: 80px;
}

.mt_100 {
    margin-top: 100px;
}

.mb_80 {
    margin-bottom: 80px;
}

/* padding */
.page_padding {
    padding: 40px 120px;
}

.p_20 {
    padding: 20px;
}

.pt_130 {
    padding-top: 130px;
}

/* dimensions */
.w_30p {
    width: 30%;
}

.w_100p {
    width: 100%;
}

.w_90 {
    width: 90px;
}

.w_130 {
    width: 130px;
}

.w_320 {
    width: 320px;
}

.w_460 {
    width: 460px;
}

.w_760 {
    width: 760px;
}

.h_14 {
    height: 14px;
}

.h_16 {
    height: 16px;
}

.h_44 {
    height: 44px !important;
}

.h_100p {
    height: 100%;
}

.mh_250 {
    min-height: 250px;
}

/* background */
.bg_green {
    background-color: #01C48D;
}

.bg_blue {
    background-color: #03004D;
}

.bg_yellow {
    background-color: #FDBC2A;
}

.bg_transparent {
    background-color: transparent;
}

.bg_white {
    background-color: white;
}

/* buttons */
.button {
    height: 50px;
    border-radius: 10px;
    border: none;
    outline: none;
}

/* text */
.white {
    color: white;
}

.black {
    color: black;
}

.grey {
    color: #999999;
}

.fs_18 {
    font-size: 18px;
    letter-spacing: 0;
    line-height: 22px;
}

.fs_24 {
    font-size: 24px;
    letter-spacing: 0;
    line-height: 40px;
}

.fs_30 {
    font-size: 30px;
    line-height: 35px;
    letter-spacing: 0;
}

.fs_52 {
    font-size: 52px;
    letter-spacing: 0;
    line-height: 78px;
}

.fs_110 {
    font-size: 110px;
    letter-spacing: -7px;
    line-height: 132px;
}

.fw_600 {
    font-weight: 600;
}

.text_center {
    text-align: center;
}

/* display */
.d_block {
    display: block;
}

/* flex */
.flex {
    display: flex;
}

.direction_column {
    flex-direction: column;
}

.shrink_0 {
    flex-shrink: 0;
}

.jc_center {
    justify-content: center;
}

.jc_between {
    justify-content: space-between;
}

.ai_center {
    align-items: center;
}

/* position */
.pos_relative {
    position: relative;
}

/* Home */
.homepage_header {
    background-image: url(../img/homepage_background.png);
    height: 100vh;
    width: 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

    .homepage_header .search_button {
        position: absolute;
        right: 8px;
        top: 8px;
    }

.absolute_yellow_line {
    position: absolute;
    right: -47px;
    bottom: 14px;
}

/* box container */
.container_shadow {
    border-radius: 12px;
    box-shadow: 0 5px 40px 0 rgba(3,0,77,0.04);
}

/* circle */
.circle {
    height: 80px;
    width: 80px;
    border-radius: 50%;
}

/* map */
.map {
    width: 70%;
    height: 60vh;
    flex-shrink: 0;
}

/* navbar */
nav {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    padding: 10px 40px;
}

    nav.nav_active {
        background-color: #03004D;
    }
