.modal-container {
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 1000;
    background: #080808d9;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
}

.modal-body {
    width: 347px;
    height: auto;
    margin: 3% auto;
    background: #000;
    border-radius: 8px;
    color: white;
    position: relative;
    border: solid 1px #2d87f7;
    margin: 10 15px;
    /* max-width: 400px; */
}

.modal-header {
    height: 50px;
    width: 100%;
    /* background: linear-gradient(to right, #00bddd 5%, #0059c7 100%) !important; */
    background: linear-gradient(180deg,#0cbfde,#003354) !important;
    color: black;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.modal-header h6 {
    font-size: 16px;
    font-weight: normal;
    margin: unset;
}

.modal-close {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: white;
    color: black;
    padding: 5px;
    border-radius: 100px;
    position: absolute;
    margin-top: -7px;
    margin-right: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    text-align: center;
}

.modal-content {
    padding: 13px 22px;
}

.modal-content-wrapper {
    overflow-y: auto;
}

#modal-container-bad .modal-content {
    min-height: 450px;
}

.modal-content .row {
    margin-bottom: 5px;
}

.modal-content .row:last-child {
    margin-bottom: 0px;
}

.modal-label {
    text-align: center;
    padding: 10px
}

.modal-footer {
    width: 100%;
}