.shared-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #00000080;
    width: 100vw;
    height: 100vh;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shared-modal-container .shared-modal {
    width: 90vw;
    max-width: 500px;
    position: relative;
}

.shared-modal-container .shared-modal .shared-modal-x {
    position: absolute;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    border: solid 1px #dee2e6;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    right: 24px;
    top: 16px;
}

.shared-modal-container .shared-modal .title {
    margin: 0;
    padding: 18px 66px 18px 20px;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: #ee3939;
}

.bg-error {
    background-image: linear-gradient(to right, #fffeff, #fce3e4, #f9e0e0);
}

.bg-white {
    background: #fff;
}

.shared-modal-container .shared-modal-body {
    padding: 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shared-modal-container .shared-modal-body .message {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    margin: 24px 0 0;
    color: #373a40;
}

.shared-modal-container .shared-modal-body .desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    margin: 12px 0 0;
    color: #868e96;
}

.shared-modal-container .shared-modal-body .btn-control {
    margin: 24px 0 0;
    width: 100%;
    display: flex;
    column-gap: 8px;
}

.shared-modal-container .btn-control button {
    font-weight: 600;
    font-size: 14px;
    padding: 12px 0;
    width: 50%;
    border-radius: 8px;
}

.shared-modal-container .cancel-btn {
    color: #151618;
    background-color: #ffffff;
    border: solid 2px #dee2e6;
}

.shared-modal-container .accept-btn {
    color: #ffffff;
    background-color: #ee3939;
    border: solid 2px #ee3939;
}

.shared-modal-container .success-btn,
.shared-modal-container .reload-btn  {
    background-color: #4af73e;
    border: solid 2px #4af73e;
    padding: 10px 32px;
    border-radius: 8px;
    margin-top: 20px;
}