@font-face {
    font-family: 'Infra';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/infra-regular.WOFF');
}

@font-face {
    font-family: 'Infra';
    font-style: normal;
    font-weight: 200;
    src: url('/fonts/infra-light.WOFF');
}

* {
    font-family: 'Infra', BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}

html,
body {
    margin: 0 auto;
    height: 100%;
}

a,
a:visited,
a:hover {
  text-decoration: none;
  color: #6161FF;
}

h1,
h2 {
    color: #6161FF;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    line-height: 130%;
    color: #000;
}

#container-warning {
    max-width: 320px;
}

#container-warning,
#container-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#wrapper-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.messages {
    margin: 20px;
    text-align: center;
    max-width: 350px;
}

.messages-error {
    color: crimson;
}

.loading-gif {
    width: 80px;
    height: 80px;
}

#refresh-button {
    display: none;
}

.btn {
    border: 0px;
    background: rgb(77, 70, 223);
    color: rgb(242, 244, 255);
    /*width: 100%;*/
    border-radius: 0.5rem;
    padding: 0.7rem 1rem;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;

}

.btn img {
    width: 24px;
    height: 24px;
    transition: transform .1s ease-in-out;
    margin-left: 5px;
}

.btn:hover {
    transition: 0.3s ease-in-out;
    background: #2f28b8;
    cursor: pointer;
}

.btn:hover img {
    transform: rotate(180deg);
}