@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700&subset=vietnamese');

* {
    margin: 0;
    padding: 0;
    border: 0;
}

*,
*:after,
*:before {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    font: 14px/18px 'Roboto', sans-serif;
    background: url('../img/backgroundVPBank.jpg') no-repeat;
    background-size: cover;
}

.navbar {
    background: #fff;
}

.navbar:after {
    display: block;
    content: '';
    clear: both;
}

.navbar .logo {
    background: url('../img/vpbankLogo.png') no-repeat 50% 50%;
    width: 150px;
    height: 60px;
    text-indent: -99999px;
    overflow: hidden;
    float: left;
}

.info {
    float: right;
    color: #008446;
    line-height: 60px;
}

.lang-selector-wrapper {
    float: right;
    padding: 11px 10px;
}

.lang-selector {
    border: 1px solid #e2e2e2;
    border-radius: 30px;
    padding: 6px 20px;
    width: 198px;
    position: relative;
    background: #fff;
    cursor: pointer;
}

.lang-selector:after {
    display: block;
    content: '';
    position: absolute;
    background: url('../img/icon_down.png') no-repeat;
    width: 7px;
    height: 4px;
    top: 50%;
    margin-top: -2px;
    right: 26px;
}

.lang-selector .lang {
    display: block;
    padding-left: 42px;
    background: no-repeat;
    height: 21px;
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    user-select: none;
}

.lang-selector .lang.lang-vi {
    background-image: url('../img/vi_VN_flag.png');
}

.lang-selector .lang.lang-en {
    background-image: url('../img/en_US_flag.png');
}

.lang-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 2px 3px;
    border-radius: 4px;
    margin-top: 1px;
    list-style: none;
}

.lang-list li {
    padding: 2px 5px;
}

.lang-list li:hover {
    background-color: #d5eec5;
}

.lang-list li:hover a {
    color: #fff;
}

.lang-list li a {
    color: blue;
    text-decoration: none;
}

.lang-selector.active {
    background-color: #d5eec5;
    color: #008445;
}

.lang-selector.active .lang-list {
    display: block;
}

.main-content {
    padding: 0 15px;
}

.main-content .content {
    margin: 12px auto 0;
    background: #FFFFFF;
	opacity: 0.86;
    border-radius: 3px;
    border: 1px solid #666;
    max-width: 650px;
    padding: 15px 15px 30px;
    color: #008446;
    text-align: center;
}

.main-content img {
    display: block;
    margin: 0 auto 15px;
    width: 113px;
    height: auto;
    max-width: 100%;
}

.main-content p {
    margin: 0;
}

.main-content p span {
    color: #fff044;
    font-weight: 300;
}

@media (max-width: 1023px) {
    body {
        background-size: cover;
    }
}

@media (max-width: 750px) {
    .navbar {
        padding-left: 5px;
    }

    .info {
        clear: both;
        float: none;
        line-height: 22px;
        text-align: center;
        padding: 0 5px 10px;
    }

    .main-content p br {
        display: none;
    }
}

@media (max-width: 479px) {
    .navbar .logo {
        background-size: contain;
        width: 130px;
    }

    .lang-selector {
        padding: 6px 10px;
        width: 160px;
    }

    .lang-selector:after {
        right: 10px;
    }
}