.c2 {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*font-family: arial, sans-serif;*/
}
.hideAlertParameter{
    display: none;
}
.c2_content {
    max-width: 450px;
    margin: 15% auto 0;
    padding: 25px;
    background: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.c2_header {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.c2_title {
    margin: 0;
    flex: 1;
    font-size: 24px;
    text-align: center;
}

.c2_body {
    margin: 15px;
    font-size: 14pt;
    text-align: center;
}

.c2_btn-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    padding: 0;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    background: none;
    border: 1px solid #000;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s;
}

.c2_btn-close:hover {
    opacity: 0.4;
}

.c2_btn-close:before {
    content: 'X';
}

.c2_footer {
    margin-top: 20px;
    text-align: center;
}

.c2_btn-yes,
.c2_btn-no {
    /*margin: 1px 12px;
    padding: 4px 14px; 
    font-size: 18px;
    border-radius: 5px;
    border: 1px solid #05355f;
    cursor: pointer;
    transition: all 0.4s;
    width:110px;*/
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    margin: 15px 5px 0;
    background-color: rgb(48, 133, 214);
    border-left-color: rgb(48, 133, 214);
    border-right-color: rgb(48, 133, 214);
padding-right: 32px;
    padding-left: 32px;
}

.c2_btn-yes {
    background: #2092f5;
    color: WHITE;
}

.c2_btn-no {
    background: #a7a8a9;
    color: #fff;
}

.c2_btn-no:hover {
    border-color: transparent;
    background-color: rgb(123 122 122);
}

.c2_btn-yes:hover{
    border-color: transparent;
    background-color: rgb(8 89 158);
}

.c2_overlay {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
