app-root {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #FFF !important;
}

.middle {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.loading-country {
    position: fixed;
    bottom: 10px;
    left: 50%;
}

.init {
    top: 60%;
    left: 50%;
    transform: translate(-50%, 36px);
    position: absolute;
    font-family: "Segoe UI", Helvetica, sans-serif;
    font-size: 13px;
    /*    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);*/
    color: rgba(0,0,0,.4);
}

.logo {
    background-image: url(images/btm-logo228x70.png);
    height: 68px;
    width: 200px;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(0,0,0,.2);
}

i.loading-flag {
    position: relative;
    top: 4px;
}

.btm {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 58px);
    position: absolute;
    font-family: "Segoe UI", Helvetica, sans-serif;
    font-size: 1.2em;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    color: #025AA5;
}

.bar {
    width: 10px;
    height: 70px;
    background: #fff;
    display: inline-block;
    transform-origin: bottom center;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    /*   box-shadow:5px 10px 20px inset rgba(255,23,25.2); */
    animation: loader 1.2s linear infinite;
}

.bar1 {
    animation-delay: 0.1s;
}

.bar2 {
    animation-delay: 0.2s;
}

.bar3 {
    animation-delay: 0.3s;
}

.bar4 {
    animation-delay: 0.4s;
}

.bar5 {
    animation-delay: 0.5s;
}

.bar6 {
    animation-delay: 0.6s;
}

.bar7 {
    animation-delay: 0.7s;
}

.bar8 {
    animation-delay: 0.8s;
}

@keyframes loader {
    0% {
        transform: scaleY(0.1);
        background: transparent;
    }

    50% {
        transform: scaleY(1);
        background: #025AA5;
    }

    100% {
        transform: scaleY(0.1);
        background: transparent;
    }
}
