.wrapper-img {
    position: relative;
    display: inline-block;
}

.deleteImage:before
{
    content: '✕';
}

.check-with-label:checked .label-for-check {
    background-color:red;
    width:100%
}
.label-for-check {
    background-color: #f7f7f7;

}
.wizard-form .inputGroup {
height:40px !important;
}

    .wizard-form .inputGroup label {
padding-top:10px;
    }

.chck-label {
    height: 100% !important;
}
.deleteImage
{
    padding: 0px;
    position: absolute;
    top: 4px;
    left: 8px;
    cursor: pointer;
    color: Red;
    width: 24px;
    height: 24px;
    background-color: White;
    border: thin solid #FF0000;
    border-radius: 12px;
    text-align: center;
}

.confirm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    box-sizing: border-box;
    opacity: 0;
    animation-name: confirm---open;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirm--close {
    animation-name: confirm---close;
}

.confirm__window {
    width: 100%;
    max-width: 600px;
    background: white;
    font-size: 14px;
    font-family: 'Noto Sans', sans-serif;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.75);
    animation-name: confirm__window---open;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
}

.confirm__titlebar,
.confirm__content,
.confirm__buttons {
    padding: 1.25em;
    font-family:'Cairo';
}

.confirm__titlebar {
    background: #222222;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.confirm__title {
    font-weight: bold;
    font-size: 1.1em;
}

.confirm__close {
    background: none;
    outline: none;
    border: none;
    transform: scale(2.5);
    color: #ffffff;
    transition: color 0.15s;
}

    .confirm__close:hover {
        color: #ff0000;
        cursor: pointer;
    }

.confirm__content {
    line-height: 1.8em;
}

.confirm__buttons {
    background: #eeeeee;
    display: flex;
    justify-content: flex-end;
}

.confirm__button {
    padding: 0.4em 0.8em;
    border: 2px solid #2B7B8D;
    border-radius: 5px;
    background: rgba(43,123,141,0.3);
    color: #2B7B8D;
    font-weight: bold;
    font-size: 1.1em;
    font-family: 'Cairo';
    margin-left: 0.6em;
    cursor: pointer;
    outline: none;
    
}

    .confirm__button:hover {
        background: #2B7B8D;
        color: #e4e4e4;
    }

.confirm__button--fill {
    background: rgba(145,140,0,0.3);
    border: 2px solid #F58C00;
    color: #F58C00;
}

    .confirm__button--fill:hover {
        background: #F58C00;
        color: #e4e4e4;
    }

.confirm__button:focus {
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

@keyframes confirm---open {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes confirm---close {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes confirm__window---open {
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.paging
        {

        }
         
        .paging a
        {
            background-color: #2B7B8D;
            padding: 9px 17px;
            text-decoration: none;
            border: 2px solid black ;
            font-size : medium;
            
        }
         
        .paging a:hover
        {
            background-color: #F58C00;
            color: #fff;
            border: 1px solid #2B7B8D;
        }
         
        .paging span
        {
            background-color: #F58C00;
            padding: 9px 17px;
            color: #fff;
            border: 2px solid black;
            font-size : medium;
        }
         
        tr.paging
        {
            background: none !important;
        }
         
        tr.paging tr
        {
            background: none !important;
        }
        tr.paging td
        {
            border: none;
        }
        
   