﻿@import url('color.css');


.btnOutline {
    padding: 7px 15px;
    color: var(--mainBg);
    border: 1px solid;
    border-color: var(--mainBg);
    background: #fff;
    transition: all 500ms ease
}

.btnIcon {
    margin-right: 5px;
}


.btnOutline:hover {
    color: var(--fntBtn);
    background: var(--mainBg);
    transition: all 500ms ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.btnFull {
    padding: 7px 20px !important;
    color: var(--fntBtn);
    transition: all 500ms ease;
    border: none;
    border-radius:5px !important;
}

    .btnFull:hover {
        transition: all 500ms ease;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

.btnAdd {
    padding: 0px 10px 0px 10px;
    background: var(--mainDark);
    border: none;
    color: var(--fntBtn);
    font-weight: 600;
}

.btnCancel {
    background: var(--btnCancel)
}

.btnSave {
    background: var(--btnSave)
}
.btnOrg{
    background: var(--btnOrg)
}
.btnBack{
    background-color:var(--btnBack);
}

.btnActive {
    background: #e0f9ff;
    border-left: 5px solid var(--mainBg) !important;
    color: var(--mainBg);
    font-weight: 600;
}

    .btnActive:hover {
        background: #fff;
        border-left: 5px solid var(--primaryLite);
        color: var(--fntBtn);
        font-weight: 600;
    }

.btnInput {
    position: absolute;
    top: 10px;
}

.select2-choice {
    border: none !important;
}

.modalBtnCls {
    border: none;
    background: var(--btnCancel);
    color: var(--fntBtn);
    padding: 2px 8px;
    border-radius: 3px !important;
}

/*Animation Spin*/
@keyframes spin {
    100% {
        transform: rotate(-180deg);
    }
}


/*newcheckbox*/

/*input[type="checkbox"] {
    margin:0;
    position: relative;
    width: 43px !important;
    height: 21px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #c6c6c6;
    outline: none;
    border-radius: 20px !important;
     box-shadow: inset 0 0 5px rgb(0 0 0 / 20%); 
    transition: 0.5s;
    outline: none !important;
}

input:checked[type='checkbox'] {
    background: var(--mainDark);
    outline: none !important;
}

input[type='checkbox']:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 4px;
    width: 15px;
    height: 15px;
    border-radius: 20px;
    background: #fff;
    transform: scale(1.1);
     box-shadow: 0 2px 5px rgb(0 0 0 / 40%); 
    transition: 0.5s;
    outline: none !important;
}

input:checked[type='checkbox']:before {
    left: 24px;
    outline: none !important;
}*/


.modalHead {
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--modalHead)
}

    .modalHead h5 {
        display: inline-block;
        font-size: 13pt;
        font-weight: 600;
        color: var(--fntHead);
    }





.modal-header {
    min-height: 16.43px;
    /*padding: 0px !important;*/
    border-bottom: 1px solid rgb(229, 229, 229);
}

    .modal-header button {
        margin-right: 10px;
        padding: 5px 10px;
        font-weight: 300;
        border-radius: 2px;
    }
