.popup-dialog-container {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
}

.popup-dialog-content {
    background: #FFFFFF;
    border: 1px solid #888;
    border-radius: 19px;
    width: 536px;
    margin:0 auto;
    position: absolute;
    left: 0;
    right:0;
    top: 50%;
    padding: 40px;
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    -o-transform:translateY(-50%);
    transform:translateY(-50%);
    display: flex;
    align-items: center;
}

.popup-dialog-content .popup-dialog-body {
    margin: auto;
    padding: 30px 16px;
    display: flex;
    align-items: center;
    width: 100%;
}

.popup-dialog-body #dialog-container {
    margin: auto;
    text-align: center;
    width: 100%;
}
.popup-dialog-button {
    margin: auto;
    margin-top: 10%;
}

.dialog-title-container {
    text-align: center;
}

.first-title-dialog {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    color: #0034C5;
}

.second-title-dialog {
    font-family: 'PoppinsBold';
    font-style: normal;
    font-weight: bold;
    font-weight: 500;
    font-size: 25px;
    color:  #0034C5;
}
.first-title-error-dialog {
    font-family: 'Poppins';
    font-style: normal;
    font-size: 25px;
    color: #EB4D3D;
    font-weight: 700;
}

.second-title-error-dialog {
    font-family: 'Poppins';
    font-style: normal;
    font-size: 25px;
    color: #EB4D3D;
    font-weight: 500;
}
.dialog-sub-title {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: #858585;
}
.dialog-browse-title {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color:  #5077FF;
    cursor: pointer;
}

#dialog-container .dialog-description-container {
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

#dialog-container .dialog-description {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #858585;
    margin-top: 20px;
}

#dialog-container .dialog-button {
    margin: auto;
}
.dialog-button {
    text-align: center;
    width: 100%;
    height: 54px;
    background: #2860D7;
    border: none;
    border: 2px solid #2860D7;
    border-radius: 8px;
    margin: auto;
    margin-top: 20px;
    cursor: pointer;
}
.dialog-button-text {
    font-family: PoppinsMedium;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}
