/*
 * Version 2 of Updox Bonita Deploy CSS
 */

body {
    font-family: "Open Sans", "Arial", sans-serif;
}

/* General */
.center-items {
    display: flex;
    align-items: center;
    justify-content: center;
}
.updox-dark-blue-background {
    background-color: #003462;
    color: #FFFFFF;
    padding: 20px 45px;
}
.updox-calendar-icon {
    background-color: #003462;
    color: #FFFFFF;
    height: 33px;
    width: 33px;
    border-radius: 90px;
    padding: 5px 7px;
    margin: 10px;
}
.updox-calendar-icon > img {
    width: 18px;
    height: 18px;
}
.updox-success-check-mark {
    padding: 30px;
}
.display-none {
    display: none;
}

/* Id specifics land */
#logIntoUpdox {
    margin: 30px;
}

/* Link land! */
.updox-link {
    color: #007FAD;
}
.updox-link:hover {
    color: #007FAD;
    border-bottom-width: 1px;
    border-bottom-color: #007FAD;
    border-bottom-style: dotted;
    text-decoration: none;
}


/* Button land! */
.updox-btn-primary {
    border-radius: 4px;
    background-color: #007FAD;
    background-size: cover;
}
.updox-btn-primary:hover {
    background-color: #006594;
}
.updox-btn-primary:focus {
    background-color: #006594;
    box-shadow: 0px 0px 5px rgba(0, 127, 173, 0.7);
}
.updox-btn-primary.btn-primary  {
    border-color: #007FAD;
    /* override bunch of bootstrap things */
    box-shadow: none;
    background-image: none;
    background-repeat: no-repeat;
}


/* Alerts */
.updox-info, .updox-info-icon {
    /*border: 1px solid #00AEEF;*/
    border: 1px solid rgba(00, 174, 239, 0.3);
    border-radius: 2px;
    background-color: rgba(00, 174, 239, 0.1);
    color: #222222;
}
.updox-info-icon {
    display: flex;
    align-items: center;
}
.updox-info-icon .fa-exclamation-circle {
    color: #00AEEF;
    font-size: 20px;
    margin-right: 10px;
}

.updox-error, .updox-error-icon {
    border: 1px solid #CC0000;
    border-radius: 2px;
    background-color: #FADBD9;
    color: #000000;
}
.updox-error-icon {
    padding-left: 50px;
}
.updox-error-icon .fa-exclamation-circle {
    color: #CC0000;
    font-size: 20px;
    position: absolute;
    margin-left: -30px; /* Style it to not warp the line height */
}

/* Form land! */
.in-error {
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(204,00,00,.6)
}

.password-warning {
    display: none; /* Initial start state */
    color: #cc0000;
}

.password-details-spans .fa-times {
    color: #cc0000;
}

.password-details-spans .fa-check-square {
    color: green;
}

.no-card-on-file {
    color: #cc0000;
}

.zuora-centered {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.zuora-active {
    bottom: 0;
}

.zuora-active #z-container {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Submission Message */
#submission-message-section {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0;
}
.submission-message-background {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(250, 250, 250, 0.75);
    background-size: cover;
}
.submission-message {
    width: max-content;
    height: min-content;
    padding: 50px 75px;
    position: relative;
    z-index: 1;
    filter: none;
}
