@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'Manrope';
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 30px 25px 40px;
    font-family: 'Manrope', sans-serif;
}

.payment-success {
    background-color: rgba(0,0,0,0.5);
}

.payment-confirmation-message {
    text-align: center;
    padding-top: 60px;
}

@media (min-width: 1300px) {
    .payment-confirmation-message {
        padding-top: 100px;
    }
}

.title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: black;
}

.title.mb-20 {
    margin-bottom: 20px;
}

.desc {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    color: black;
}

.desc.mb-10 {
    margin-bottom: 10px;
}

.button-wrap {
    display: inline-flex;
    flex-direction: column;
}

button {
    cursor: pointer;
    border: none;
    align-items: center;
    font-size: 13px;
}

/*.download-button {*/
/*    background: transparent;*/
/*    display: flex;*/
/*    margin-bottom: 8px;*/
/*    color: #212121;*/
/*    font-weight: 400;*/
/*    padding: 5px;*/
/*}*/

/*.download-button:hover {*/
/*    text-decoration: underline;*/
/*}*/

/*.download-button img {*/
/*    margin-right: 16px;*/
/*    line-height: 0;*/
/*}*/

.btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-button {
    height: 45px;
    width: 130px;
    border-radius: 100px;
    background-color: #000000;
    color: white;
    font-weight: 700;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.close-button:hover {
    background-color: rgba(0,0,0,0.6);
}

.success .close-button {
    margin-top: 60px;
}

.success .container {
    max-width: 674px;
    border: 1px solid #ededed;
    background-color: white;
    border-radius: 8px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.success .main-header {
    min-height: 65px;
    border-bottom: 1px solid #ededed;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.success .main-header .redirect-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 27px;
    border: none;
    background: transparent;
    padding: 2px;
    line-height: 0;
    outline: none;
}

.success h2,
.success h3,
.success h4,
.success p {
    margin: 0;
}

.success header .title {
    font-size: 18px;
}

.success .container-2 {
    max-width: 526px;
    margin: 0 auto;
    text-align: left;
}

.success .description-wrapper {
    margin-bottom: 38px;
    @media (max-width: 767px) {
        padding: 0 10px;
    }
}

.success .description-wrapper .sub-title {
    font-size: 16px;
    font-weight: 700;
}

.success .description-wrapper p {
    font-size: 14px;
    font-weight: 300;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.success .transaction-detail .transaction-header {
    border-bottom: 1px solid #ededed;
    padding-bottom: 20px;
}
.success .transaction-detail .header-title-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;

    @media (max-width: 767px) {
        padding: 0 10px;
    }
}

.success .transaction-detail .header-title-wrap .icon {
    width: 26px;
    line-height: 0;
}

.success .transaction-detail .header-title-wrap h4 {
    font-size: 14px;
}

.success .transaction-detail .transaction-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.success .transaction-detail .transaction-item {
    padding-top: 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid #ededed;
}

.success .transaction-detail .content-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-left: 39px;
}

.success .transaction-detail .dt {
    font-size: 12px;
    font-weight: 300;
}

.success .transaction-detail .dd {
    font-size: 12px;
    font-weight: 700;
}

.success .download-button {
    margin-top: 30px;
    width: 160px;
    max-width: 160px;
    height: 32px;
    border-radius: 32px;
    background-color: black;
    color: white;
    justify-content: center;
    transition: all .2s;

    &:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    &.go-to-sc {
        margin-left: 10px;
    }

    @media (min-width: 1300px) {
        max-width: 200px;
        width: 200px;
    }
}

.unsuccessful .close-button {
    margin-top: 120px;
}



