.upload-success {
    .close {
        width: 18px;
        height: 18px;
        cursor: pointer;
        background: url('../assets/images/submission_success/close.png') no-repeat center;
    }
}

.modal-dialog {
    width: 100%;
    max-width: 1020px !important;
    margin: 1.75rem auto;
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}

.modal-body {
    display: flex;
    flex-direction: column;
    border-radius: 22px;

    .header {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        padding: 10px;
    }
}

.modal-content {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 22px;
    overflow: hidden;
}

.success-icon {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-tip {
    margin-top: 20px;
    background: url('../assets/images/submission_success/top-back.png') no-repeat center;
    width: 100%;
    padding: 20px 40px;

    .tip-title {
        font-weight: 400;
        font-size: 22px;
        color: #FFFFFF;
        line-height: 55px;
    }
    .tip-desc {
        font-weight: 300;
        font-size: 14px;
        color: #FFFFFF;
        line-height: 18px;
    }
}

.service-area {
    width: 100%;
    display: flex;
}
.ser-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 10px;
    min-height: 360px;

    .ser-cont {
        width: 100%;
        padding: 16px;
        background: linear-gradient(0deg, #9FDBF5, #F5FCFF);
        border-radius: 16px;
        opacity: 0.6;

        .ser-title {
            font-weight: bold;
            font-size: 20px;
            color: #1c5975;
            line-height: 36px;
        }
        .ser-desc {
            margin-top: 18px;
            font-size: 14px;
            color: #1c5975;
            line-height: 36px;
        }
        
        .ser-img {
            margin-top: 20px;
            width: 265px;
            height: 203px;
        }
    }
}
.ser-box:hover {
    border: 2px solid #5192AD;
}

.pop-button-row {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;

    .pop-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        background: #FFFFFF;
        border-radius: 6px;
        border: 1px solid #4184A1;
        width: 182px;
        height: 46px;
        font-weight: bold;
        font-size: 14px;
        color: #0C4E6B;
        line-height: 55px;

        &:hover {
            background: #4184A1;
            color: #FFFFFF;
        }
    }

    .primary-btn {
        margin-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        background: linear-gradient(180deg, #075C7E, #1783B0);
        border-radius: 6px;
        border: 1px solid #AECCD7;
        color: #FFFFFF;
        width: 182px;
        height: 46px;
    }
}

