body {
    margin: 0px !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding-top: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% top;
    background-attachment: fixed;
}

.body_background_with_image {
    padding-top: 50px;
    padding-bottom: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% top;
    background-attachment: fixed;
    background-image: url(../images/login_background_new.png);
}

.body_background_with_image_monochrome {
    padding-top: 50px;
    padding-bottom: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% top;
    background-attachment: fixed;
    background-image: url(../images/login_background_monochrome.png);
}

.body_background_with_image_monochrome_dark {
    padding-top: 50px;
    padding-bottom: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% top;
    background-attachment: fixed;
    background-image: url(../images/login_background_monochrome_dark.png);
}

.body_background_with_image_monochrome_light {
    padding-top: 50px;
    padding-bottom: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% top;
    background-attachment: fixed;
    background-image: url(../images/login_background_monochrome_light.png);
}

.top_menu_logo {
    border: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/unimaze_logo_new.png);
    background-position: center;
    width: 155px;
    height: 35px;
}

.top_menu_logo_dk {
    border: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/dk_logo.png);
    background-position: center;
    width: 185px;
    height: 35px;
}

.top_menu_logo_uniconta {
    border: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/uniconta_logo.svg);
    background-position: center;
    width: 195px;
    height: 35px;
}

.top_menu_logo_ebconnect {
    border: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/ebconnect_logo.gif);
    background-position: center;
    width: 155px;
    height: 35px;
}

.top_menu_logo_stolpi {
    border: none;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../images/stolpi_logo.svg);
    background-position: center;
    width: 120px;
    height: 50px;
}


h4 {
    font-weight: 500 !important;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.container:before,
.container:after {
    display: table;
    content: " ";
}

.container-box {
    min-height: 100px;
    overflow: hidden;
    margin-top: 32px;
    /*padding: 32px;*/
    border: 1px solid lightgrey;
    border-radius: 5px;
    background-color: #ffffff;
}

.body-content {
    line-height: 1.42857143;
    font-weight: 500 !important;
    color: #333;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}

.oidc_status {
    margin-top: 38px;
    margin-left: 32px;
}

.logo-header {
    padding: 20px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.eidas {
    padding: 20px;
    font-size: 1.5em;
}

.cloud_background {
    background-image: url(../images/login_background_new.png);
    padding-top: 50px;
    padding-bottom: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% top;
    background-attachment: fixed;
}

.container-box-no-padding {
    min-height: 100px;
    overflow: hidden;
    margin-top: 32px;
    border: 1px solid lightgrey;
    border-radius: 5px;
    background-color: #ffffff;
}

.center-spinning-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotating .5s linear infinite;
}

@-webkit-keyframes rotating /* Safari and Chrome */
{
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.box {
    margin-top: 32px;
    padding: 32px;
    border-radius: 5px;
    height: auto;
    background-color: #ffffff;
    min-width: 500px;
    height: auto;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wrapper-box {
    width: 390px;
    min-height: 1px;
    padding: 0 15px;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 240px;
    margin-bottom: 10em;
    min-width: 500px;
}

.loading:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(4, end) 900ms infinite;
    animation: ellipsis steps(4, end) 900ms infinite;
    content: "\2026"; /* ascii code for the ellipsis character */
    width: 0px;
}

@keyframes ellipsis {
    to {
        width: 20px;
    }
}

@-webkit-keyframes ellipsis {
    to {
        width: 20px;
    }
}

@media screen and (min-width: 40em) and (max-width: 90.9375em) {
    .wrapper-box {
        width: 420px
    }

    .top-content {
        padding: 0 32px;
    }
}

@media screen and (max-width: 39.9375em) {
    .wrapper-box {
        width: 420px
    }

    .top-content {
        padding: 0 20px;
    }
}
