@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');

/* Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins'
}

body {
    height: 100vh;
    background-color: #D3E1E1
}

.success {
    color: green !important;
}

.error {
    color: #ed3330 !important;
}

button.proceed {
    width: 100%;
    color: #fff !important;
    text-transform: uppercase;
    text-decoration: none;
    background: darkgreen;
    padding: 20px;
    border-radius: 5px;
    display: inline-block;
    border: none;
    transition: all 0.4s ease 0s;
}

button.success {
    background: darkgreen !important;
}

button.error {
    background: #ed3330 !important;
}

div.wrapper {
    box-sizing:border-box;
    width:100%;
    padding:2em;
}

/* The Receipt */
.receipt {
    /*width: 360px;*/
    height: auto;
    background-color: white;
    border-radius: 30px;
    position: relative;
    box-shadow: 14px 14px 22px -18px;
    padding: 20px;
}

/* Heading */
.name {
    text-transform: uppercase;
    text-align: center;
    color: #6c8b8e;
    letter-spacing: 5px;
    font-size: 1.2em;
    margin-top: 10px
}

/* Big thank */
.status {
    font-size: 2em;
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    margin-top: 10px;
}

.greeting {
    font-size: 1em;
    text-transform: capitalize;
    text-align: center;
    color: #6f8d90;
    margin: 15px 0;
    letter-spacing: 1.2px
}

/* Order info */
.order p {
    font-size: 13px;
    color: #aaa;
    padding-left: 10px;
    letter-spacing: .7px
}

/* Our line */
hr {
    border: .7px solid #ddd;
    margin: 15px 0;
}

/* Order details */
.details {
    padding-left: 10px;
    margin-bottom: 35px;
    overflow: hidden;
}

.details h3 {
    font-weight: 400;
    color: #6c8b8e;
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* Image and the info of the order */
.product {
    float: left;
    width: 100%;
}

.product img {
    width: 65px;
    float: left;
}

.product .info {
    float: left;
    width: 60%;
}

.product .price {
    float: left;
    width: 40%;
}

.product .info h4 {
    color: #6f8d90;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 10px;
}

.product .info p {
    font-size: 12px;
    color: #aaa;
}

.product .price {
    text-align: right;
    padding-top: 10px;
}

.product .price p {
    color: #6f8d90;
    font-size: 15px;
    text-align: right;
}

/* Net price */
.details > p {
    color: #6f8d90;
    margin-top: 25px;
    font-size: 15px;
    text-align: right;
}

/* Total price */
.totalprice p {
    padding-left: 10px
}

.totalprice .sub,
.totalprice .del {
    font-size: 13px;
    color: #aaa;
}

.totalprice span {
    float: right;
    /*margin-right: 17px*/
}

.totalprice .tot {
    color: #6f8d90;
    font-size: 15px;
}

/* Footer */
footer {
    font-size: 14px;
    text-align: center;
    margin-top: 100px; /* You can make it with position try it */
    color: #aaa;
}

footer p {
    margin-bottom: 10px;
}