.btn-primary{
    background: #54b862;
    border-radius: 9999px;
    border: 1px solid #54b862;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    padding: 8px 22px;
    transition: all .25s;
    outline: none;
    box-shadow: none;
    display: inline-block;
    font-weight: 500;
    font-family: "Bricolage Grotesque", sans-serif;
}
.btn-primary:hover,
.btn-primary:focus{
    color: #fff;
    background: #48A259;
    border: 1px solid #48A259;
}

.custom-notification-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
@-webkit-keyframes notification-show{
    0% {
        transform: scale(.7)
    }

    45% {
        transform: scale(1.05)
    }

    80% {
        transform: scale(.95)
    }

    100% {
        transform: scale(1)
    }
}
@keyframes notification-show{
    0% {
        transform: scale(.7)
    }

    45% {
        transform: scale(1.05)
    }

    80% {
        transform: scale(.95)
    }

    100% {
        transform: scale(1)
    }
}
.custom-notification{
    display: flex;
    max-width: 396px;
    width: 100%;
    padding: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 12px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    box-shadow: 0px 0px 30px 0px rgba(0, 26, 57, 0.15);
    position: relative;
    z-index: 2;
    -webkit-animation: notification-show .3s;
            animation: notification-show .3s;
}
.custom-notification-area-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.2);
}
.custom-notification-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    align-self: stretch;
}
.custom-notification-title{
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
.custom-notification-des{
    color: #737373;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}
.custom-notification-title,
.custom-notification-des{
    text-align: center;
    font-family: "Bricolage Grotesque", sans-serif;
}

@-webkit-keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.custom-notification-icon-item{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-notification-icon-item svg,
.custom-notification-icon-item img{
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}

.notification-icon-loading{
    transform-origin: center;
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
}
.notification-content-error .custom-notification-title{
    color: #F54A45;
}
.notification-content-error .custom-notification-des{
    color: #1E1E1E;
}
.notification-content-loading .custom-notification-title{
    color: #1E1E1E;
}
.notification-content-loading .custom-notification-des{
    color: #737373;
}