* {
    margin: 0px;
    padding: 0px;
    border: 0px;
}

html, body {
    height: 100%;
}

body {
    color: #4C4C4C;
    font-family: "Roboto","HelveticaNeue", "Helvetica", "Arial", sans-serif;
    font-size: 0.9em;
    display: flex;
    flex-direction: column;
}

input {
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    appearance: none;
    border-radius: 4px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: 400px;
}

input:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

select {
    /* styling */
    background-color: white;
    border: thin solid blue;
    border-radius: 4px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 3.5em 0.5em 1em;

    /* reset */
    margin: 0;      
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select {
    background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
    background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
    background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
    background-repeat: no-repeat;
}

select:focus {
    background-image:
    linear-gradient(45deg, green 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, green 50%),
    linear-gradient(to right, #ccc, #ccc);
    background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    calc(100% - 2.5em) 0.5em;
    background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
    background-repeat: no-repeat;
    border-color: green;
    outline: 0;
}


select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

.input-container {
    margin-top: 10px;
    margin-bottom: 10px;
}

#background {
    position: fixed; 
    top:0; 
    left:0; 
    z-index: -10; 
    background: #F6F6F6; 
    width: 100%; 
    height: 100%;
}

header {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 5px 0px 2px 10px;
    background-color: #FFF;
    box-shadow: 0px 2px 5px #dddddd;
}

.content {
    padding-top: 20px;
    padding-bottom: 40px;
    flex: 1 0 auto;
}

footer img {
    height: 40px;
    margin-left: 10px;
    float: right;
    margin: 0px 20px;
}

footer {
    /* margin-top: 50px; */
    padding-top: 10px;
    border-top: 2px solid #DDDDDD;
    background: #FFF;
    height: 50px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

#loading {
    color: #DDDDDD;
}

main {
    margin: auto;
    padding: 40px 20px;
    margin-top: 40px;
    width: 70%;
    min-width: 800px;
    text-align: center;
    background: #FFF;
    overflow: hidden;

    border-radius: 30px 30px;
    box-shadow: 0px 0px 20px 8px #ddd;
}

#main-text {
    display: none
}

p {
    margin: 12px;
}

.success {
    color: #86b7fe;
    margin: 6px;
}

.error {
    color: #C52626;
}

.txt-product-available {
    color: #86b7fe;
}

.fail {
    color: #f54141e3;
}

.txt-available-message {
    text-align: left;
}

.reminder-list {
    text-align: left;
    padding-left: 30px;
}

/* Font awesmoe modifiers */
.enlarge {
    font-size: 2em;
    vertical-align: middle;
}

.hidden {
    display: none;
}

.sink-more {
    margin-top:25px;
}

/* Buttons */
button {
    border-radius: 100px;
    padding: 15px 32px;
    text-align: center;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    outline: 0;

    background-color: #86b7fe;
    color: #fff;
}


button:hover {
    background-color: #00B8AA;
}

button.btn-prev {
    background-color: #F3F3F3;
    color: #8d8d8d;
}

button.btn-prev:hover {
    background-color: #dbdbdb;
    color: #8d8d8d;
}

.right {
    float: right;
}

.left {
    float: left;
}

/* Modal */


/* Progress */

.title {
    margin: 25px;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    color: #4088FB;
    font-family: "Roboto","Lato", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
}

/* Message-box */
.message-container {
    display: flex;
    justify-content: center;
}

.messages {
    display: flex;
    flex-direction: column;
    width: 700px
}

.message {
    margin-bottom: 30px;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 1px #ddd;
}

.message-title{
    padding: 10px;
    color: #4088FB;
    font-size: 1em;
    font-weight: bold;
    text-align: left;
}

.message-content {
    padding: 10px;
    padding-left: 32px;
    text-align: left;
}

hr {
    border-top: 2px solid #86b7fe;
    margin-top: 10px;
}

.overlay{
    position: fixed; 
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
    background-color: #ffffff;
}


#loading-container > img {
    width: 100px;
}

#loading-modal {
    display: block;
}

.modal {
    width: 400px;
    position: fixed;
    top: 20%; 
    left: 50%;
    margin-left: -200px;

    border-radius: 40px;
    text-align: center;
    z-index: 11; 
}

.modal .logo {
    max-width: 200px;
}

.modal .modal-message {
    margin-top: 20px;
    font-size: 18px;
    color: #b9b9b9;
}

#summary-raw-data {
    border: 1px solid #ccc;
    color: #777;
    margin-bottom: 25px;
    margin-top: 10px;
}

#summary-container {
    margin-top: 20px;
}

.provisioned-link {
    color: #86b7fe;
    text-decoration: none;
}
