@font-face {
    font-family: textFont;
    src: url(../fonts/Lato-Regular.ttf);
}
html{
    position:relative;
    min-height: 100%;
}

/*Normalize html and body elements,this style is just good to have*/
html,body{
    margin:0;
    padding:0;
}

.cssPageMarginTop{
    margin: 65px 0 20px;
}
@media only screen and (max-width: 600px) {
    .cssPageMarginTop{
        margin: 105px 0 10px;
    }
    .w3-modal-content {
        margin: 0;
        width: 90% !important;
    }
}

.cssPageMarginBottom{
    margin-bottom:  100px;
}

.cssCardMainDiv{
    background-color: #363636;
    border-radius: 5px;
    position: relative;
}

.cssCardHeader1{
    width: 100%;
    padding:10px;
    height: 60px;
    text-align: center;
    background-color: #D9D9D9;
    border-radius: 5px 5px 10px 10px;
    font-size: 20px;
}

.cssCardFooter{
    width: 100%;
    padding: 10px;
    height: 60px;
    text-align: center;
    background-color: #D9D9D9;
    border-radius: 10px 10px 5px 5px;
    position: absolute;
    bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cssBtnShadow{
    box-shadow: 2px 4px 2px #282828;
}

/*20-02-2023*/
body{
    font-family: textFont;
    font-size: 10pt;
    background-color: #000;
    color: #fff;
}

input,
textArea,
select{
    font-size: 10pt;
    outline: none;
    color: #fff;
    background:transparent;
}

option {
    background-color: #fff;
    color: #000;
    font-size: 10pt;
}
option:hover {
    background-color: #1A8DFF;
}

::placeholder {
    font-size: 9pt;
    font-family: textFont;
}
/*For the textbox */
.cssTxtEnable{
    color : #ffffff;
    background: transparent;
    border: 1px solid #d9d9d9;
}

.cssTxtDisable{
    border: 1px solid #d9d9d9;
    opacity: 0.6;
}

/*Used to hightlight the textbox when there is an error*/
.cssTxtError{
    color:#f35d5e;
    border: 1px solid #ff0000;
    box-shadow:  2px 4px 5px #ff0000;
}
/*Error Message*/
.labError {
    color: #ff0000;
}

/*For Main Card*/
.mainCard {
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 6px 1px #1A8DFF;
    border-radius: 10px;
}

/*For Button*/
.cssBtn {
    background: #90CEFF;
    color: #000;
    border-radius: 25px;
    padding: 5px 30px;
    margin-inline: 5px;
    border: 1px solid #90CEFF;
    font-size: 8pt;
}

.cssCloseBtn {
    background: #000;
    color: #90CEFF;
    border-radius: 25px;
    padding: 5px 30px;
    margin-inline: 5px;
    border: 1px solid #90CEFF;
    font-size: 8pt;
}

.cssBackBtn {
    color: #fff;
    font-size: 14pt;
    padding: 0;
}

.cssDelConfBtn {
    background: #90CEFF;
    color: #000;
    border-radius: 15px;
    padding: 3px 20px;
    margin-inline: 5px;
    border: 1px solid #90CEFF;
    font-size: 8pt;
}

.cssDelCancelBtn {
    border: 1px solid #000;
    border-radius: 15px;
    padding: 3px 20px;
    color: #000;
    font-size: 8pt;
    margin-left: 10px
}

.cssBackBtn img {
    object-fit: contain;
    margin-bottom: 4px;
}

.iBtn {
    height: 20px;
    object-fit: contain;
    float: right;
    cursor: pointer;
}

.masterCount {
    margin-left: 20px;
    border: 2px solid #00FF00;
    border-radius: 25px;
    padding: 1px 2px;
}

/*Table heading*/

.cssHeading {
    padding: 10px;
    font-size: 13pt;
    font-weight: bold;
    position: sticky;
    background: #fff;
    color: #000;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.cursor {
    cursor: pointer;
}

.cssError {
    color: red;
    background: #fff;
    border: 1px solid red;
    padding: 2px 10px;
    border-radius: 10px;
}

.tableHeader{
    position: sticky;
    top:0;
    z-index:1;
}

/*Scroll bar*/
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #8FFF00;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8FFF00;
    border-radius: 5px;
}

/*Input Type Button*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield; /* Removes the Firefox spin button */
}

/*Main Header*/
#main-header {
    top:0px;
    position: fixed;
    width: 100%;
    z-index: 20;
    border-radius: 0 0 35px 35px;
}

.rtpi-logo {
    width: 100px;
    padding: 5px 15px 0px;
}
.comp-logo {
    height: 55px;
    min-width: 200px;
    text-align: center;
    padding: 2px 15px;
    width: calc(100% - 410px);
}
.comp-logo img {
    height: 100%;
    max-width: 150px;
    object-fit: contain;
}
.icons {
    width: 310px;
    text-align: right;
    padding-right: 15px;
}
.header-icon {
    min-width: 40px;
    padding: 10px 4px;
    display: inline-block;
    position: relative;
}
.header-icon img {
    height: 20px;
    cursor: pointer;
    object-fit: contain;
}
.header-icon label {
    font-size: 7pt;
    cursor: pointer;
    display: block;
}
.icon-selected {
    position: absolute;
    height: 8px;
    width: 40px;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
}
@media only screen and (max-width: 600px) {
    .comp-logo {
        text-align: right;
        width: calc(100% - 100px);
    }
    .comp-logo img {
        height: 90%;
    }
    .icons {
        width: 100%;
        text-align: center;
    }
    .header-icon {
        padding: 4px;
    }
    .icon-selected {
        bottom: -8px;
    }
}

/*Header end*/

/*Sidebar*/
.sidebar-icon {
    padding: 7px 5px;
    text-align: center;
    position: relative;

}
.sidebar-icon img {
    width: 20px;
    cursor: pointer;
    object-fit: contain;
}
.sidebar-icon label {
    font-size: 7pt;
    cursor: pointer;
    display: block;
}
.div-gap {
    height: calc(100vh - 590px)
}
.assc-sidebar {
    width:60px;
    border-radius: 0px 18px 18px 0px;
}
.assc-sidebar::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/*Sidebar End*/

/*Footer*/

.mainFooter {
    background-color: #000;
    position:absolute;
    bottom: 0;
    width: 100%;
    border-radius: 25px 25px 0px 0px;
    box-shadow: 2px 6px 5px 8px #1A8DFF;
    z-index: 10;
}
/*Footer End*/

/*Notification*/
#divNotification {
    display: none;
}
.notification-pop {
    z-index: 9999;
    position: fixed;
    width: 350px;
}

.master-notifi {
    top: 55px;
    right: 10px;
}

.associate-notifi {
    left: 60px;
    top: 250px;
}

.master-noti-card-pointer {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    position: absolute;
    left: 25%;
    top: 41px;
}

.associate-noti-card-pointer {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #fff;
    position: absolute;
    right: 0;
    top: 0;
}

@media only screen and (max-width: 600px) {
    .associate-notifi {
        width: 300px;
    }
    .master-notifi {
        top: 100px;
    }
    .noti-card-pointer {
        top: 31px;
    }
}

.notiBody {
    position: relative;
}
.notiBodyContent {
    height: 50px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    position: relative;
    padding: 0px 5px 0px 15px;
    width: calc(100% - 50px);
}
.notiDateTime {
    line-height: 1.2;
    position: absolute;
    right: 0;
    top: 2px;
}
.notiVewBtn {
    line-height: 1.2;
    position: absolute;
    right: 0;
    bottom: 2px;
}
.notiReadBtn {
    width: 50px;
    height: 50px;
    text-align: center;
}

#notificationDot {
    font-size: 8pt;
    padding: 1px;
    position:absolute;
    min-width: 18px;
    border-radius: 50%;
    cursor: pointer;
    background: orange;
    top: 5px;
    right: 10px;
    display: none;
}