* {
    margin: 0;
    padding: 0;
    border: none;
    outline: 0;
    text-decoration: none;
    list-style: none;
    transition: 0.5s all;
    color: inherit;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
    font-family: Nunito, sans-serif;
}
a:active,
a:hover,
a:link,
a:visited {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
body {
    background: #f1f5f8;
}
.container {
    width: 1000px;
    margin: auto;
}
.justify-content-space-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header {
    background: #fff;
    padding: 20px 0;
    display: flex;
    flex-direction: row;
}
header > .container > .logo {
    width: 250px;
    cursor: pointer;
}
header > .container > .payment {
    display: flex;
    align-items: center;
}
header > .container > .payment > img {
    width: 50px;
    height: 45px;
}
header > .container > .payment > div {
    margin-left: 5px;
    font-size: 1em;
    font-weight: 700;
    color: #1fb141;
    text-transform: uppercase;
}
header > .container > .payment > div > p {
    color: #000;
}
.box {
    background: #fff;
    width: calc(100% - 40px);
    padding: 20px;
    margin: 60px 0;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 70px 45px -40px rgb(0 0 0 / 10%), 0 10px 30px -5px rgb(0 0 0 / 18%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.box > a > button {
    background: #2489c5;
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    color: #fff;
    cursor: pointer;
}
.steps {
    margin-top: 40px;
    margin-bottom: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.steps > .step {
    background: #fff;
    width: calc(33% - 60px);
    padding: 20px;
    margin: 0.165%;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 70px 45px -40px rgb(0 0 0 / 10%), 0 10px 30px -5px rgb(0 0 0 / 18%);
}
.steps > .step.step-pay {
    min-width: 330px;
    margin: 0 30px;
}
.steps > .step.disabled {
    opacity: 0;
    visibility: hidden;
}
.steps > .step > .step-details {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}
.steps > .step > .step-details > .number {
    background: #2489c5;
    width: 24px;
    height: 24px;
    margin-right: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85em;
    font-weight: 700;
    color: #fff;
}
.steps > .step > .step-details > .title {
    margin-top: -2px;
    font-size: 1.2em;
    font-weight: 700;
    color: #2489c5;
}
.steps > .step > .client > .name {
    width: 100%;
    font-size: 1.2em;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.steps > .step > .client > .email {
    margin-top: 5px;
    font-size: 1em;
    word-wrap: break-word;
}
.steps > .step > .client > .document {
    margin-top: 5px;
    font-size: 1em;
}
.steps > .step > .gateway {
    background: rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    border-radius: 6px;
}
.steps > .step > .gateway > .details {
    width: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.steps > .step > .gateway > .details > img {
    max-width: 24px;
    margin-left: 10px;
}
.steps > .step > .gateway > .details > .name {
    margin-left: 10px;
    font-weight: 700;
}
.steps > .step > .gateway > .pay {
    margin-top: 20px;
}
.steps > .step > .gateway > .pay > .description {
    margin-bottom: 20px;
    font-size: 0.85em;
}
.steps > .step > .gateway > .pay > button {
    background: #1fb141;
    width: 100%;
    padding: 10px 0;
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}
.steps > .step > .step-title {
    font-size: 1.5em;
    font-weight: 700;
}
.steps > .step > .information {
    height: 0;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
}
.steps > .step > .information.active {
    height: auto;
    visibility: visible;
    opacity: 1;
}
.steps > .step > .information > .detail {
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}
.steps > .step > .information > .detail.total {
    margin-top: 10px;
    color: #1fb141;
}
.steps > .step > .information2 {
    display: none;
    text-align: center;
}
.steps > .step > .information2.active {
    display: block;
}
.loader {
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}
.loader.active {
    visibility: visible;
    opacity: 1;
}
.loading,
.loading:after,
.loading:before {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}
.loading {
    color: #36b376;
    font-size: 10px;
    margin: 40px auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
.loading:after,
.loading:before {
    content: "";
    position: absolute;
    top: 0;
}
.loading:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.loading:after {
    left: 3.5em;
}
@-webkit-keyframes load7 {
    0%,
    100%,
    80% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}
@keyframes load7 {
    0%,
    100%,
    80% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}
.loader > .text {
    font-size: 1.5em;
    font-weight: 700;
}
.loader > .text2 {
    font-size: 1em;
    font-weight: 700;
    text-align: center;
    display: none;
}
.loader > .text2.active {
    display: block;
}
.alert {
    padding: 10px 5px;
    border-radius: 3px;
    margin-bottom: 10px;
    font-size: 0.85em;
    display: none;
}
.alert.active {
    display: block;
}
.alert-info {
    background: #cce5ff;
    border: 1px solid #b8daff;
    color: #004085;
}
.alert-danger {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@media (max-width: 1023px){
    .container{
        width:95%;
    }
    header>.container>.logo{
        width:30%;
    }
    header>.container>.logo>img{
        max-width:100%;
    }
    .steps{
        display:block;
    }
    .steps > .step{
        width:calc(100% - 43px);
        margin-bottom:20px;
    }
    .steps > .step.step-pay{
        min-width:calc(100% - 43px);
        margin:0 0 20px 0;
    }
}