/* css3 (cascading style sheet 3)
Last update:29-08-2018
*/
@font-face {
    font-family: 'Google Sans';
    src: url('../fonts/GoogleSans-Regular.eot');
    src: url('../fonts/GoogleSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GoogleSans-Regular.woff2') format('woff2'),
        url('../fonts/GoogleSans-Regular.woff') format('woff'),
        url('../fonts/GoogleSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Google Sans';
    src: url('../fonts/GoogleSans-Italic.eot');
    src: url('../fonts/GoogleSans-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GoogleSans-Italic.woff2') format('woff2'),
        url('../fonts/GoogleSans-Italic.woff') format('woff'),
        url('../fonts/GoogleSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Google Sans';
    src: url('../fonts/GoogleSans-Bold.eot');
    src: url('../fonts/GoogleSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GoogleSans-Bold.woff2') format('woff2'),
        url('../fonts/GoogleSans-Bold.woff') format('woff'),
        url('../fonts/GoogleSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Google Sans';
    src: url('../fonts/GoogleSans-MediumItalic.eot');
    src: url('../fonts/GoogleSans-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GoogleSans-MediumItalic.woff2') format('woff2'),
        url('../fonts/GoogleSans-MediumItalic.woff') format('woff'),
        url('../fonts/GoogleSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Google Sans';
    src: url('../fonts/GoogleSans-BoldItalic.eot');
    src: url('../fonts/GoogleSans-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GoogleSans-BoldItalic.woff2') format('woff2'),
        url('../fonts/GoogleSans-BoldItalic.woff') format('woff'),
        url('../fonts/GoogleSans-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Google Sans';
    src: url('../fonts/GoogleSans-Medium.eot');
    src: url('../fonts/GoogleSans-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GoogleSans-Medium.woff2') format('woff2'),
        url('../fonts/GoogleSans-Medium.woff') format('woff'),
        url('../fonts/GoogleSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/*	reset css*/
*{
	margin:0px;
	padding:0px;
}
body{
	font-family:  'Google Sans';
    font-size:14px;
    line-height:1.5;
    overflow-x: hidden;
}  
/*-----------header----------*/
header{
    background-color: #4873b6;
}
label{
	font-weight: bold;
}
.top-header{
	display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.nav li a{
	color: #fff;
	padding: 8px 24px;
	font-size: 15px; 
}
.nav li a.active{
	font-weight: bold;
	border-bottom: 5px solid #fff;
}
/*--------parking-block---------*/
.parking-block{
	margin: 20px;
	border-top: 5px solid #3464ae;
	border-radius: 5px;
	padding: 15px;
	box-shadow: 1px 1px 20px 2px #ececec;
}
.parking-details{
	border-right: 2px dotted #b0b0b0;
    justify-content: center;
}
.parking-images{
	display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: space-evenly;
}
.parking-images-block h4{
	font-size: 16px;
	font-weight: bold;
}
.parking-images-block img.img-fluid{
	width: 500px;
    display: block;
    border-radius: 4px;
    border: 1px solid #ced4da;
}
.parking-images-block img.img-plate{
    /* width: 100px;
    max-width: 100%; */
    margin-top: 10px;
}
/*---------checkboxes------------*/
.radio-content{
	margin-top: 20px;
	padding-top: 10px;
}
.radio-content label{
	padding-top: 0;
    width: 26%;
    color: #868a91;
    font-weight: normal;
}
.radio-container {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 20px;
}
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 19px;
    width: 19px;
    border: 1px solid #e8e8eb;
    background-color: #ffffff;
    border-radius: 50%;
}
/*.radio-container input:checked ~ .checkmark {
    border: 1px solid #d61722;
}*/
.checkmark:before {
    content: "";
    position: absolute;
    display: none;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.radio-container input:checked ~ .checkmark:before {
    display: block;
}
.radio-container .checkmark:before {
 	top: 0;
    left: 0;
    width: 18px;
    display: none;
    height: 18px;
    border-radius: 50%;
    background-color: #4873b6;
}
.radio-container input:checked ~ .checkmark:after {
    display: block;
}
.radio-container .checkmark:after {
 	content: '\f00c';
    font-family: FontAwesome;
    top: 2px;
    left: 4px;
    color: #fff;
    font-size: 10px;
}
.radio-container input + span{
	vertical-align: text-top;
}
.radio-container input:checked + span{
	color: #4873b6;
	font-weight: bold;
}
/*---------button-block-------*/
.radio-block  .button-block{
	margin-top: 25px;
}
.button-block .btn{
	padding: 7px 28px;
	font-weight: bold;
	margin: 0 4px;
}
.btn-submit{
	background-color: #4873b6;
}
.btn-blacklist{
	background-color: #191919;
}
.btn-cancel{
	background-color: #b0b0b0;
}
/*------------parking-data------------*/
.overstay-vehicle{
    display: block;
    max-height: 400px;
    overflow-y: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
.overstay-person{
    display: block;
    overflow-y: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
.capture-image{
    display: block;
    overflow-y: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
.barrier-control{
    border-top: 2px dotted #b0b0b0;
    padding-top: 20px;
}
.action{
    border-right: 2px dotted #b0b0b0;
    padding: 5px 0px 10px 0px;
}
.parking-data{
	margin:35px 30px;
}
.parking-data form{
	padding: 5px 20px 24px 20px;
}
.plate-no{
	color: #4873b6;
}
.parking-data .parking-block{
	margin: 0;
	padding: 40px 0 0 0;
}
.parking-details form{
	padding: 25px 20px 10px 20px;
}
.parking-data .nav-tabs .nav-item{
	margin-right: 10px;
	margin-bottom: -5px;
}
.form-control{
	font-size: 14px;
	padding: 8px 10px;
}
.nav-tabs .nav-link{
	background-color: #bebebe;
	font-weight: bold;
}
.nav-tabs .nav-link.active{
	background-color: #4873b6;
	color: #fff;
	border-color: #4873b6;
}
.parking-block .grid-custom{
    display: flex;
    justify-content: space-evenly;
    margin-right: 10px;
}
.grid-custom .input-block{
	width: 50%;
}

/*---------table---------*/
.show-entry{
	padding: 20px;
	background-color: #e3e9f3;
	border-bottom: 1px solid #fff;
}
.show-entry select{
	padding: 5px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    margin: 0 6px;
}
.table-block .table thead th{
	border-bottom: 0;
}
.table-block table{
	border-top: 1px solid #fff;
}
.table-block table > thead, .table-block table > tbody tr:first-child{
	background-color: #e3e9f3;	
}
.table-block table > tbody tr:first-child td{
	border-top: 0;
}
/*------------modal-------*/

.modal-backdrop + .modal-backdrop {
z-index: 2000;
}

.modal{
	width: 100%;
    max-width: 100%;
    right: auto;
    bottom: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modal-header{
	justify-content: center;
	padding-top: 0;
}
.modal-header h5{
	font-size: 18px;
}
.modal-content{
	padding: 10px 20px;
}
.modal-body{
	padding-bottom: 0;	
}
.modal-footer{
	border-top: 0;
    margin-top: 0;
    padding: 0 15px 15px 15px;
    justify-content: flex-start;
}
.modal-backdrop.show{
	opacity: .75;
}
textarea{
	resize: none;
}
.point{ 
    cursor: pointer;
}
.modal-open .modal{
    overflow: visible;
}
.modal-body .col-md-6:last-child .col-md-12{
    text-align: end;
}
.modal-header {
    padding-bottom: 10px;
    border-bottom: 1px solid #a5a5a5;
}
.modal-header a{
    position: absolute;
    right: -12px;
    top: -12px;
    padding: 0px 6px;
    font-size: 20px;
    color: #fff !important;
    border-radius: 50%;
    background-color: #ccc;
    z-index: 9999999999;
    visibility: visible;
}
/* 21-09-2018--- */
.custom-check{
    list-style-type: none;
}
.custom-check li{
    width: 30%;
    display: inline-block;
}
.custom-check li label{
    font-weight: normal;
}
.form-custom{
    width: 100%;
    display: block;
}
#nric .fa ,
#car_plate .fa{
    margin-top: 13px;
}
/* ------5-10-2018-------- */
.button-block .btn-danger{
    border-radius: 5px;
    display: inline-block;
    border: 1px solid transparent;
}
.table-block{
    padding-bottom: 20px;
}
.table-block table > tbody tr td:last-child > p{
    display: inline-block;
    margin-right: 15px;
}
.pagination{
    padding-left: 50px;
}
.edit-data .modal-content{
    max-height: 600px;
    overflow-y: auto;
}
.modal-header {
    display: inline-block;
}
.entry-per-page{
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.entry-per-page select{
    background-color: transparent;
    padding: 5px 10px;
    border-radius: 4px;
    width: 60px;
    border-color: #4873b6;
    height: 38px;
    margin-top: 10px;
}

.custom-radio{
    diaplay:inline-block;
    position: relative;
    margin-right:20px;
}
.custom-radio span{
    display:block;
    position: relative;
    padding-left:24px;
}
.custom-radio input[type=radio]{
    display:none;
}
.custom-radio span:after,
.custom-radio span:before{
    position: absolute;
    content:"";
    display:block;
    top:0;
    left: 0;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
    background-color:#ccc;
    -webkit-transition: all 0.5 ease-in-out;
    -moz-transition: all 0.5 ease-in-out;
    transition: all 0.5 ease-in-out;
}
.custom-radio span:after{
    width:14px;
    height:14px;
    border:2px solid #fff;
    top: 2px;
    left: 2px;
    background-color:#fff;
}
.custom-radio span:before{
    width:18px;
    height:18px;
}
.custom-radio input[type=radio]:checked + span:before,
.custom-radio input[type=radio]:checked + span:after{
    background-color:#4873b6;
    -webkit-transition: all 0.5 ease-in-out;
    -moz-transition: all 0.5 ease-in-out;
    transition: all 0.5 ease-in-out;
}
.dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: inline-block;
  }

  .order-card {
    color: #fff;
}

.bg-c-blue {
    background: linear-gradient(45deg, #4099ff, #73b4ff);
}

.bg-c-green {
    background: linear-gradient(45deg, #2ed8b6, #59e0c5);
}

.bg-c-pink {
    background: linear-gradient(45deg, #FF5370, #ff869a);
}

.notification {
    max-width: 300px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px;
    display: none;
    margin-bottom: 10px; /* Add margin to separate notifications vertically */
}