﻿html, body {
    height: 100%;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.3;
    color: #435270;
}

p {
    line-height: 1.5em;
    color: #999;
}

.float-main {
    margin-right: 50px;
}

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-box {
    width: 360px;
    border: .2rem solid #fff;
    border-radius: .8rem;
    background-color: white;
    -webkit-box-shadow: 0 3px 22px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 22px 0 rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.title {
    margin: 0 0 5px 0;
}

.login-logo {
    font-size: 35px;
    text-align: center;
    font-weight: 300;
    margin-top: 10px;
}

.logo img {
    display: inline;
    padding-bottom: 4px;
    max-height: 100%;
    max-width: 60px;
}

.login-box-body {
    background: #fff;
    padding: 10px 20px 10px 20px;
    border-top: 0;
    color: #666;
}

.login-head {
    text-align: center;
}

.error-summary {
    color: red;
    text-align: center;
    margin-top: 10px;
    font-size: 0.8rem;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.spinner-wrapper {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3); /* Black w/ opacity */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.spinner-circle {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: transparent;
    border: 0.3rem solid #c2d7ff;
    border-top-color: #1a61e6;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.price-box {
    width: 220px;
    height: 300px;
    border-radius: .8rem;
    background-color: white;
    -webkit-box-shadow: 0 3px 22px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 22px 0 rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-box-header {
    width: 100%;
    height: 80px;
    border-top-left-radius: .8rem;
    border-top-right-radius: .8rem;
    background-color: #007bff;
}

.price-box-circle {
    width: 100px;
    height: 100px;
    background-color: rgb(128,174,227);
    border-radius: 50%;
    border: 3px solid white;
    margin-top: -50px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-box-circle-money {
    color: white;
    font-weight: 500;
    font-size: 22pt;
}

.price-box-circle-validity {
    color: white;
}

.price-box-text {
    color: black;
    font-size: 10pt;
    margin-top: 0.8rem;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.separator {
    height: 0.05rem;
    width: 100%;
    background-color: #8f9ebc;
}
