body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    background-color: #eeeeee;
    color: #797C7E;
}
img {
    max-width: 100%;
}
a {
    cursor: pointer;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

@media (min-height:620px) {
    html,
    body,
    .wrapper {
        height: 100%;
    }
}
.wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 440px;
    background-color: #ffffff;
}
.wrapper > * {
    flex: 1;
}
.wrapper .main-content {
    flex: 10;
}

.menu-bars {
    display: inline-block;
    padding: 0.8em;
    width: 2em;
}
.menu-bars span {
    display: block;
    margin: 4px 0;
    width: 100%;
    height: 3px;
    background-color: #eeeeee;
}
.btn-login {
    display: block;
    padding: 0.8em 5px;
    width: 100%;
    border-radius: 2px;
    box-sizing: border-box;
    background-color: #7FCD89;
    text-align: center;
    text-decoration: none;
    font-size: 1.1em;
    color: #ffffff;
}
.btn-facebook {
    display: inline-block;
    padding: 0.8em 0.8em 0.8em 2.7em;
    border-radius: 5px;
    background-image: url(/img/_btns/icon-facebook2.svg);
    background-repeat: no-repeat;
    background-position: 7px center;
    background-size: 35px;
    background-color: #3C5A99;
    font-size: 1.1em;
    color: #ffffff;
}
.btn-login:hover,
.btn-facebook:hover {
    text-decoration: none;
}
.btn-app {
    display: block;
    margin: 15px auto;
    max-width: 55%;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    font-size: 0;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.4);
}
.separate {
    position: relative;
    display: inline-block;
}
.separate:before,
.separate:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    height: 1px;
    background-color: #797C7E;
    width: 50px;
}
.separate:before {
    left: -60px;
}
.separate:after {
    right: -60px;
}

.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1em 0.5em;
    border-bottom: 2px solid #DE7C8D;
}
.header > * {
    flex: 1;
    text-align: right;
}
.header .logo {
    flex: 2;
    text-align: left;
}
.header .logo img {
    width: 100%;
}
.header .menu-bars {
    margin-right: 1em;
}

.main-content {
    text-align: center;
}
.main-content > * {
    display: block;
    margin: 2em 0;
}
.main-content i {
    font-size: 0.8em;
    font-style: normal;
}



.footer {
    padding: 0.7em 16%;
    background-color: #505152;
    font-size: 0.8em;
    text-align: center;
}
.footer,
.footer a {
    color: #939495;
}
.footer ul {
    list-style: none;
    margin: 0 0 0.4em 0;
    padding: 0;

}
.footer ul li {
    display: inline-block;
    margin: 3px 0;
}
.footer ul li + li {
    margin-left: 5px;
    padding-left: 10px;
    border-left: 1px solid #939495;
}
.footer ul li.icon-globe {
    padding-left: 20px;
    background-image: url(/img/_btns/icon-globe.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}