/*
	GLOBAL
*/
.parkingpro-customer-portal-block {
    background-color: #FFFFFF;
    padding: 15px;
    box-shadow: 0px 0px 5px #00000026;
    border-radius: 8px;
    margin-bottom: 30px;
}


/* PAGINATION */
.parkingpro-customer-portal-pagination {
	text-align: center;
}
.parkingpro-customer-portal-pagination ul,
.parkingpro-customer-portal-pagination li {
    list-style: none;
    list-style-type: none;
}
.parkingpro-customer-portal-pagination li {
    display: inline-block;
}
.parkingpro-customer-portal-pagination a {
    display: inline-block;
    padding: 5px;
    opacity: 0.7;
}
.parkingpro-customer-portal-pagination li.active a {
    opacity: 1;
    font-weight: bold;
}

/* ICONS */
.parkingpro-customer-portal-svg-icon {
	width: 1em;
	height: 1em;
	display: inline-block;

    
	
}
.parkingpro-customer-portal-svg-icon-car {
	background-image: url(../images/icons/car-front-fill.svg);
	background-size: contain;
}
.parkingpro-customer-portal-svg-icon-plane {
	background-image: url(../images/icons/airplane.svg);
	background-size: contain;
}
.parkingpro-customer-portal-svg-icon-arrival {
	background-image: url(../images/icons/box-arrow-in-right.svg);
	background-size: contain;
}
.parkingpro-customer-portal-svg-icon-departure {
	background-image: url(../images/icons/box-arrow-right.svg);
	background-size: contain;
}
.parkingpro-customer-portal-svg-icon-dashboard {
	background-image: url(../images/icons/house-door-fill.svg);
	background-size: contain;
}
.parkingpro-customer-portal-svg-icon-account {
	background-image: url(../images/icons/person-fill.svg);
	background-size: contain;
}
.parkingpro-customer-portal-svg-icon-calendar {
	background-image: url(../images/icons/calendar-check-fill.svg);
	background-size: contain;
}
.parkingpro-customer-portal-svg-icon-add-reservation {
	background-image: url(../images/icons/bag-plus-fill.svg);
	background-size: contain;
}
.parkingpro-customer-portal-svg-icon-walking {
	background-image: url(../images/icons/person-walking.svg);
	background-size: contain;
}
.parkingpro-customer-portal-svg-icon-bus {
	background-image: url(../images/icons/bus-front-fill.svg);
	background-size: contain;
}
.parkingpro-customer-portal-svg-icon-trash {
	background-image: url(../images/icons/trash.svg);
	background-size: contain;
}
.parkingpro-customer-portal-svg-icon-invoice {
	background-image: url(../images/icons/receipt.svg);
	background-size: contain;
}
.parkingpro-customer-portal-svg-icon-logout {
    background-image: url(../images/icons/logout.svg);
    background-size: contain;
}

/* MENU */
.parkingpro-customer-portal-menu ul {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.parkingpro-customer-portal-menu li a {
    color: #302D55 !important;
    text-decoration: none !important;
    padding: 10px 0;
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    font-weight: bold;
}
@media screen and (max-width: 991px) {
    .parkingpro-customer-portal-menu li {
        display: inline-block;
    }
    .parkingpro-customer-portal-menu li a {
        font-size: 17px;
        padding-right: 5px;
    }
    .parkingpro-customer-portal-menu .parkingpro-customer-portal-svg-icon {
        width: 0.8em;
        height: 0.8em;
    }
}
@media screen and (max-width: 576px) {
    .parkingpro-customer-portal-menu li a {
        font-size: 16px;
        padding-right: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

}

/* SECTIONS */
.parkingpro-customer-portal-section {
	padding: 10px;
}
/* .parkingpro-customer-portal-section:not(:last-child) {
	margin-bottom: 20px;
} */
.parkingpro-customer-portal-section-loading-spinner {
    position: relative;
}
.parkingpro-customer-portal-section-loading-spinner-active {
    cursor: progress;
    color: #b3b3b3;
}
.parkingpro-customer-portal-section-loading-spinner-active:after {
    content: "";
    position: absolute;
    width: 48px;
    height: 48px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 6px solid transparent;
    border-top-color: #333;
    border-radius: 50%;
    animation: parkingpro-btn-loading-spinner 1s ease infinite;
}

/* BIG BOX LIST */
.parkingpro-customer-portal-big-box-list {
	display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	margin: 0 -10px;
}
.parkingpro-customer-portal-big-box-list-item {
	-webkit-flex: 0 0 25%;
    -moz-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
	padding: 10px;
}
@media screen and (max-width: 1199px) {
    .parkingpro-customer-portal-big-box-list-item {
        -webkit-flex: 0 0 33.33333333333%;
        -moz-flex: 0 0 33.33333333333%;
        -ms-flex: 0 0 33.33333333333%;
        flex: 0 0 33.33333333333%;
        max-width: 33.33333333333%;
    }
}
@media screen and (max-width: 991px) {
    .parkingpro-customer-portal-big-box-list-item {
        -webkit-flex: 0 0 50%;
        -moz-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media screen and (max-width: 767px) {
    .parkingpro-customer-portal-big-box-list-item {
        -webkit-flex: 0 0 100%;
        -moz-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.parkingpro-customer-portal-big-box-list-item input {
	opacity: 0;
    width: 1px;
    height: 1px;
    position: absolute;
}
.parkingpro-customer-portal-big-box-list-item label {
    display: block;
    height: 100%;
    padding: 10px 10px 25px 10px;
    position: relative;
	cursor: pointer;
    
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    font-weight: bold;

    background: #fff;
    border: 1px solid var(--parkingpro-color-primary);
    box-shadow: 2px 2px 4px var(--parkingpro-color-primary);
    color: #0A0A0A;
    border-radius: 8px;
}
.parkingpro-customer-portal-big-box-list-item:hover label {
    transform: scale(1.05);
}
.parkingpro-customer-portal-big-box-list-item label.active {
    background: #e6fef1;
}

.parkingpro-customer-portal-big-box-list-item .check {
    display: none;
    position: absolute;
    bottom: -15px;
    left: calc(50% - 15px);
    width: 30px;
    height: 30px;
    border-radius: 15px;
    line-height: 30px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;

    border: 1px solid var(--parkingpro-color-primary);
    background-color: #ffffff;
    color: var(--parkingpro-color-primary);
}
.parkingpro-customer-portal-big-box-list-item label.active .check {
	display: block;
}

/* AUTOCOMPLETE*/
.parkingpro-customer-portal.autocomplete-suggestions {
    border: 1px solid #999;
    background: #FFF;
    overflow: auto;
}
.parkingpro-customer-portal.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
}
.parkingpro-customer-portal.autocomplete-selected {
    background: #F0F0F0;
}
.parkingpro-customer-portal.autocomplete-suggestions strong {
    font-weight: normal;
    color: var(--pp-customer-portal-main-color);
}
.parkingpro-customer-portal.autocomplete-group {
    padding: 2px 5px;
}
.parkingpro-customer-portal.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000;
}
