﻿#loadingDiv {
    display: none;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: #666;
    background-image: url('../images/loder.gif');
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10000000;
    opacity: 0.4;
    filter: alpha(opacity=40);
}
/******************************Bootbox Modal******************************/
.modal-title {
    font-size: 18px;
    font-family: 'dinotregular';
}

.modal-header .btn-close {
    font-size: 20px;
    color: #848484;
}

.bootbox .modal-header {
    padding: 8px 20px;
    text-align: center;
    background: #fff;
    position: relative;
    color: #848484;
    font-size: 28px;
    border-bottom: 5px solid #3f9cc8;
    height: auto;
    background-color: #112d711c;
}

.bootbox .modal-footer {
    display: block;
}

.bootbox .modal-header .modal-title {
    font-size: 25px;
    font-weight: 600;
    color: #3f9cc8;
}

.bootbox .modal-body {
    padding: 10px;
}

.bootbox .modal-footer {
    border-top: none;
    text-align: center;
    z-index: 9999;
}

.bootbox-body {
    padding: 10px;
    color: #848484;
}

.button-tab-green {
    font-size: 18px;
    font-weight: 700;
    padding: 5px 12px;
    min-width: 85px;
    background: #1cf5cb;
    color: #3f9cc8;
    border: 1px solid #1cf5cb;
}

.button-tab-blue {
    font-size: 18px;
    font-weight: 700;
    padding: 5px 12px;
    min-width: 85px;
    background-color: #3f9cc8;
    color: #fff;
    border: 1px solid #3f9cc8;
}

.bootbox-close-button {
    border: 0px;
    background-color: transparent;
    font-weight: bold;
}

.button-tab-blue:hover, .button-tab-blue:focus {
    border-color: #3f9cc8;
    background-color: transparent;
    color: #3f9cc8;
}

.button-tab-green:hover, .button-tab-green:focus {
    border-color: #1cf5cb;
    background-color: transparent;
    color: #1cf5cb;
}

.signeinsertwithoutcomment {
    color: white !important;
    background: red;
}

    .signeinsertwithoutcomment:hover {
        color: red !important;
        background-color: transparent;
        border: 1px solid red;
    }

.signeinsertcomment {
    color: white !important;
    background: green;
}

    .signeinsertcomment:hover {
        color: green !important;
        background-color: transparent;
        border: 1px solid green;
    }
/******************************Bootbox Modal End******************************/
.title-border-bottom {
    width: fit-content;
    margin: auto;
    border-bottom: 4px solid;
    border-image: linear-gradient(to right, #042c4c, #e2e3e5) 1;
    color: #042c4c;
}

.validation {
    color: red;
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #bbb;
    border-radius: 4px;
    position: relative;
    transition: background-color 0.3s, border-color 0.3s;
    margin-right: 5px;
}



.checkbox-custom::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s;
}

.checkbox-input:checked + .checkbox-custom::after {
    opacity: 1;
}

.checkbox-wrapper:hover .checkbox-custom {
    border-color: #888;
}


