:root {
    --primary: #25316a;
    --accent: #00AEEF;
    --btnppal: #307BBF;
    --ok: #85BE57;
    --err: #E94256;
    --bg: #307BBF;
    --bgother: #f2f0fe;
}

* {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    box-sizing: border-box;
}

header {
    height: 80px;
    box-shadow: 0px 0px 8px 0px #25316a;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    align-self: center;
    background: white;
}

input {
    width: 70%;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
}

button {
    padding: 10px !important;
    background: var(--btnppal);
    color: white;
    border: 0;
    border-radius: 5px !important;
    cursor: pointer;
    margin-left: 10px !important;
}

button:hover {
    opacity: .9;
}

.status {
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 20px;
}

.status.ok {
    background: #e6f9ed;
    color: var(--ok);
}

.status.proc {
    background: #fff4e5;
    color: #EE7326;
}

.status.err {
    background: #fdecea;
    color: var(--err);
}

.steps {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    width: 18%;
    min-width: 120px;
}

.circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    line-height: 35px;
    margin: auto;
    font-weight: bold;
}

.done {
    background: var(--ok);
    color: white;
}

.pending {
    background: #ccc;
    color: white;
}

.timeline {
    margin-top: 20px;
    border-left: 3px solid #ddd;
    padding-left: 15px;
}

.event {
    margin-bottom: 15px;
}

.time {
    font-size: 12px;
    color: #777;
}

.msg {
    font-size: 14px;
}

.loader {
    margin-top: 25px;
    font-weight: 700;
    opacity: .7;
}

h5 {
    font-weight: 700 !important;
    margin-bottom: 0% !important;
    color: #25316a !important;
}

.welcome-title {
    font-style: normal;
    font-size: 30px;
    text-align: center;
}

.subtitle {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 22px;
    text-transform: uppercase;
}

.font-bold {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.card {
    border: none !important;
    border-radius: 20px !important;
    background: white;
    padding: 50px;
    border-radius: 20%;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08);
}

.card-body {
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
    justify-content: center;
    text-align: justify;
}

.images {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px #f2f2f2;
    margin-top: 10px;
    margin-bottom: 10px;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}

.linear-h {
    height: 3px;
    width: 100px;
    background-color: #212529;
    margin-bottom: 4px;
    margin-top: 2px;
}

.text-personalization {
    text-align: justify;
}

.goToTopcss {
    position: fixed;
    z-index: 2;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    font-size: x-large;
    outline: none;
    border: none;
    background: #307BBF;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5;
}

.show {
    opacity: 1 !important;
}

footer {
    color: #25316a;
    box-shadow: 0px 0px 8px 0px #25316a;
    padding: 10px 30px;
    background: white;
}

footer span {
    font-weight: 600;
}
