* {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    height: 100vh;
    background-color: #fafcff !important;
}

#m-oops {
    font-size: 80px;
    font-weight: bold;
    color: #000000;
    text-shadow: 0 0 4px #00000022;
}

.m-error {
    font-size: 60px;
    font-weight: bold;
    color: #000000;
    text-shadow: 0 0 4px #00000022;
}

.m-suc-card {
    font-size: 40px;
    font-weight: bold;
    color: #06ad08;
    text-shadow: 0 0 4px #06ad0822;
}

.m-fai-card {
    font-size: 40px;
    font-weight: bold;
    color: #ad0606;
    text-shadow: 0 0 4px rgba(173, 6, 6, 0.13);
}

#m-303 {
    color: #ff9507;
    text-shadow: 0 0 4px #ffae0022;
}

.card-dialog {
    display: flex;
    flex-direction: column;
    width: 326px;
    height: 280px;
    padding: 33px !important;
    gap: 23px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 14px 50px #00000010;
}

.card-dialog * {
    font-family: 'vazirmatn';
}

.card-dialog .details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 90%;
    user-select: none;
    padding-bottom: 30px !important;
    border-bottom: dashed 2px #ececec;
}

.card-dialog .details .title {
    font-size: 18px;
    font-weight: bolder;
}

.card-dialog .details .title.info {
    color: #00a8ff;
}

.card-dialog .details .title.suc {
    color: #1cca7e;
}

.card-dialog .details .title.err {
    color: #ec3737;
}

.card-dialog .details .description {
    text-align: center;
    direction: rtl;
}

.card-dialog .details .icon {
    display: flex;
    height: 60px;
    width: 60px;
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
}

/*.card-dialog .details .icon.info {*/
/*    fill: #00a8ff;*/
/*}*/

.card-dialog .details .icon.suc {
    background-image: url("/src/svg/Successfully.svg");
}

.card-dialog .details .icon.err {
    background-image: url("/src/svg/Failed.svg");
    background-size: 100%;
}

.card-dialog .button {
    display: flex;
    width: 100%;
    height: 54px;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: ease .3s;
}

.card-dialog .button.info {
    background-color: #00a8ff;
}

.card-dialog .button.info:hover {
    background-color: #078ae7;
}

.card-dialog .button.suc {
    background-color: #1cca7e;
}

.card-dialog .button.suc:hover {
    background-color: #15a968;
}

.card-dialog .button.err {
    background-color: #ec3737;
}

.card-dialog .button.err:hover {
    background-color: #ce2323;
}