/* lato-regular - latin */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/lato-v23-latin/lato-v23-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('/assets/fonts/lato-v23-latin/lato-v23-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/assets/fonts/lato-v23-latin/lato-v23-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('/assets/fonts/lato-v23-latin/lato-v23-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('/assets/fonts/lato-v23-latin/lato-v23-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('/assets/fonts/lato-v23-latin/lato-v23-latin-regular.svg#Lato') format('svg'); /* Legacy iOS */
  font-display: swap;
}

html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: var(--color-background);
    font-family: "Lato", sans-serif;
    font-size: 14pt;
    font-weight: 400;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
.nav-tabs .nav-link {
    background-color: var(--color-foreground) !important;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

a,
a:hover {
    text-decoration: none !important;
    color: inherit;
}

.hidden {
    display: none!important;
}
.text-left {
    text-align: left;
}

.ek::before {
    content: "T";
    background-color: var(--color-primary);
    color: #fff;
    font-style: normal;
    font-size: x-small;
    padding: 2px 5px;
    border-radius: 4px;
    border: 1px solid #fff;
    margin-right: 5px;
}
.ek:hover {
cursor: pointer;
}

#content {
    width: 100%;
    z-index: 0;

    /* Fade animation */
    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 1s; /* Firefox < 16 */
    -ms-animation: fadein 1s; /* Internet Explorer */
    -o-animation: fadein 1s; /* Opera < 12.1 */
    animation: fadein 1s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

[data-letters]:before {
    content: attr(data-letters);
    display: inline-block;
    font-size: 12px;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    background: var(--color-background-text);
    vertical-align: middle;
    margin-right: 12px;
    color: white;
}

.top-bar [data-letters]:before {
    margin-top: -8px;
}

.dataTables_wrapper {
    overflow: auto;
}

/******************************Generic overlay**********************************/
#genericOverlay {
    display: block;
    position: fixed;
    z-index: 3000;
    width: calc(100%);
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    height: 100%;
    margin: auto;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.5);
}
/*******************************/ /*Generic overlay*/ /****************************************/
.customFlatPickerConfirm {
    width: 200px;
    padding: 15px;
    background: var(--color-positive);
    visibility: visible;
    color: white;
    margin-left: -1px;
    margin-right: -1px;
    /* margin-bottom: -16px; */
    margin: auto;
    border-radius: 20px;
    margin-top: 20px;
}
.currentContainerDatePicker {
    height: 100%;
    margin: auto;
    width: fit-content;
    position: relative;
    top: 50%;
    transform: translateY(-20%);
}
/********************POPUP LANGUAGE*******************************/
#customLanguagePopup {
    display: block;
    position: absolute;
    z-index: 3000;
    width: calc(100%);
    left: 0px;
    right: 0px;
    height: 100%;
    margin: auto;
    transition: 0.3s;
    background: rgba(0, 0, 0, 0.5);
}
#customLanguageOptions {
    display: block;
    position: relative;
    background: white;
    width: calc(100% - 60px);
    left: 0px;
    right: 0px;
    height: auto;
    text-align: center;
    padding: 50px;
    margin: auto;
    margin-top: 30px;
    box-shadow: 0 4px 8px 0 rgba(245, 245, 245, 0.6);
    transition: 0.3s;
}

#customLanguagePopup #customLanguageOptions > button {
    width: fit-content;
    margin: auto;
    padding: 15px;
    margin-bottom: 10px;
    background: none;
    border: none;
    display: block;
    border-radius: 20px;
    max-width: calc(100%);
}
#customLanguageClose {
    position: absolute;
    right: 35px;
    top: 35px;
    z-index: 3000;
    background: none;
    border: none;
    font-size: 30px;
}
#customLanguageCurrent {
    display: flex;
    align-items: center;
}
#customLanguageCurrentSelection {
    font-size: 0.8em;
    padding-right: 10px;
}
#customLanguageClose:hover {
    color: var(--color-primary);
}
#customLanguagePopup #customLanguageOptions > button > span {
    width: 250px;
    display: inline-block;
    max-width: calc(100%);
}

#customLanguagePopup #customLanguageOptions > button:hover {
    color: white;
    background: var(--color-primary);
}
#customLanguagePopup #customLanguageOptions .active {
    border: solid 1px var(--color-primary);
}
#customLanguageCurrent img {
    vertical-align: baseline;
}
/***************************/ /***********************************/
/********************POPUP Dialog orders************************/
.rowFlex {
    display: flex;
    flex-wrap: wrap;
}
.rowFlex .leftItem {
    flex: 0 0 73%;
    padding-bottom: 12px;
}
/***************** TOP BAR *****************/
.top-bar {
    width: 100%;
    padding: 20px;
    overflow: hidden;
    background-color: var(--color-background);
    color: var(--color-background-text);
    z-index: 1;
    display: grid;
    grid-template-columns: 20% auto auto;
    grid-gap: 3px;
    align-items: center;
}
.headerUserEmailContainer {
    text-align: end;
}
.userEmail {
    font-size: 1.4em;
    text-align: end;
}
.topMenuRight {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-gap: 20px;
    align-items: center;
    justify-content: end;
}
.top-bar-logo {
    max-width: 100%;
    height: auto;
}
.top-bar input {
    border: none;
    width: calc(100% - 40px);
    margin-left: 10px;
}

.top-bar .top-bar-icons {
    display: inline-block;
    width: 211px;
    padding-top: 5px;
    padding-right: 4px;
}

.top-bar .user-area {
    display: inline-block;
    float: right;
    cursor: pointer;
    margin-left: 20px;
}

.top-bar .user-name {
    display: inline-block;
    float: right;
    margin-left: 14px;
    max-width: 137px;
}

.top-bar .user-name-span {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    max-width: 75px;
    margin-top: 2px;
}

/***************** MAIN CONTENT *****************/
.main-content {
    width: 100%;
    height: 100%;
    /* padding: 140px 40px 40px 240px; */
    padding-left: 40px;
    padding-right: 40px;
    display: inline-block;
    vertical-align: top;
    overflow-y: auto;
}

.main-content .title {
    font-size: 1.3em;
    font-weight: 400;
    margin: 0px 0px 20px 0px;
    color: var(--color-dark);
}
.lockerInterface {
    border-radius: 16px;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    background-color: #fff;
    padding: 20px;
}

.lockerTitle {
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 5px;
}
.grid-container {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto auto;
    grid-gap: 5px;
    padding: 10px;
    background-color: #f6f6f6;
    border-radius: 8px;
    border: 2px solid lightgrey;
}
.grid-item {
    border: 2px solid #221f1f;
    border-radius: 8px;
    padding: 20px;
    font-size: 30px;
    text-align: center;
    height: 300px;
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.grid-item:hover {
    cursor: pointer;
}
.free {
    background: linear-gradient(30deg, rgba(70,173,213,0.3) 0%, rgba(169,249,158,0.3) 100%);
}
.free:hover {
    background: linear-gradient(30deg, rgba(70,173,213,1) 0%, rgba(169,249,158,1) 100%);
    color: white;
}

.occupied {
    background: linear-gradient(30deg, rgba(247,166,0,0.3) 0%, rgba(236,102,25,0.3) 55%, rgba(201,10,22,0.3) 85%, rgba(156,14,17,0.3) 100%);
}
.occupied:hover {
    background: linear-gradient(30deg, rgba(247,166,0,1) 0%, rgba(236,102,25,1) 55%, rgba(201,10,22,1) 85%, rgba(156,14,17,1) 100%);
    color: white;
}
@media screen and (max-width: 768px) {
    .lockerInterface {
        margin-top: 10px;
    }
    .grid-container {
        grid-template-columns: auto auto auto auto auto auto;
    }
    .grid-item {
        height: 100px;
    }
}

@media screen and (max-width: 425px) {
    .lockerInterface {
        margin-top: 20px;
    }
    .grid-container {
        grid-template-columns: auto auto;
        grid-gap: 10px;
    }
    .grid-item {
        height: 55px;
        flex-direction: initial;
        font-size: 20px;
    }
    .item-1, .item-12{
        grid-row: 1;
    }
    .item-2, .item-11{
        grid-row: 2;
    }
    .item-3, .item-10{
        grid-row: 3;
    }
    .item-4, .item-9{
         grid-row: 4;
    }
    .item-5, .item-8{
        grid-row: 5;
    }
    .item-6, .item-7{
        grid-row: 6;
    }
    .top-bar {
        padding: 10px;
        grid-template-columns: auto auto auto;
    }
    .top-bar .headerLogoHrefContainer a img {
        height: 55px;
    }
}

/***************** CUSTOM CARD *****************/
.custom-card {
    display: inline-block;

    background-color: var(--color-foreground);
    color: var(--color-foreground-text);

    border-radius: 4px;
    padding: 40px 30px;

    -webkit-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 2px 2px 10px 1px rgba(0, 0, 0, 0.05);
}

.custom-card .title {
    display: inline-block;
    font-size: 28px;
}

.custom-card .title-info {
    display: inline-block;
    vertical-align: top;
    margin: 0px 0px 0px 6px;
}

.custom-card .separator {
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
}

.custom-card.locker-info {
    padding: 30px 20px;
}

.custom-card.locker-info .title {
    width: 100%;
}

.custom-card .locker-icon-area {
    padding-top: 13px;
}

/***************** CUSTOM BUTTON *****************/
.custom-button {
    display: inline-block;
    background-color: var(--color-positive);
    color: var(--color-positive-text);
    border-radius: 10px;
    padding: 10px 20px;
    min-width: 150px;
    width: 100%;
    text-align: center;
    cursor: pointer;

    -webkit-box-shadow: 4px 4px 9px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 4px 4px 9px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 9px 1px rgba(0, 0, 0, 0.1);
}

.custom-button svg {
    margin-right: 10px;
}
/***************** Footer *****************/
#footerPareva {
    text-align: center;
    position: fixed;
    bottom: 0px;
    width: 100%;
}

#footerPareva #poweredby {
    background: #000000c4;
    padding: 10px 20px;
    color: white;
    bottom: 0px;
    display: inline-block;

    -webkit-border-top-left-radius: 7px;
    -webkit-border-top-right-radius: 7px;
    -moz-border-radius-topleft: 7px;
    -moz-border-radius-topright: 7px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.main-content {
    padding-bottom: 50px; /* Extra spacing to make sure the footer is not on top of content*/
}

/***************** TOOLTIPS *****************/
.tooltip {
    position: fixed;
    z-index: 1;
}

.tooltip-inner {
    white-space: pre-wrap;
    height: auto;
    text-align: left;
}

/***************** MODAL *****************/
#pinModal .first-row {
display: grid;
grid-template-columns: auto auto auto;
grid-gap: 5px;
}
.modal,
.modal-header,
.modal-body,
.modal-footer {
    text-align: center;
    border-top: none;
    border-bottom: none;
}

.modal-title {
    font-size: 1.2em;
    color: var(--color-tertiary);
}

@media screen and (min-width: 768px) {
    .modal:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    color: var(--color-foreground-text);
    width: 100%;
}

/***************** PHONE VALIDATOR *****************/
.iti-flag {
    background-image: url("../intl-tel-input-13.0.0/img/flags.png");
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
    only screen and (min--moz-device-pixel-ratio: 2),
    only screen and (-o-min-device-pixel-ratio: 2 / 1),
    only screen and (min-device-pixel-ratio: 2),
    only screen and (min-resolution: 192dpi),
    only screen and (min-resolution: 2dppx) {
    .iti-flag {
        background-image: url("../intl-tel-input-13.0.0/img/flags@2x.png");
    }
}

.overdue {
    color: var(--color-negative-light);
}

.admin-open-door-toggle {
    border: 1px solid lightgrey !important;
    color: lightgrey !important;
    background-color: white !important;
    float: right;
}

.admin-door-toggle-blocked {
    border: 1px solid var(--color-negative) !important;
    color: var(--color-negative) !important;
    display: none;
}

.processDebugShow {
    float: left;
}

.processDebug {
    display: none;
    text-align: left;
    user-select: text;
}

.userSettingButtonContainer {
    display: inline-block;
    margin-right: 15px;
    margin-top: 10px;
    position: relative;
    height: 29px;
}

.userSettingButton {
    background: none;
    border-radius: 20px;
    padding: 2.5px;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
    transition: 0.33s;
    border: none;
    outline: none;
    font-size: 15px;
    color: white;
    height: 37px;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 26px;
}

.userSettingButton img {
    max-height: 100%;
}

.userSettingButton:hover {
    color: var(--color-primary);
}

.mobileOnly {
    display: none;
}

.print-only {
  display: none;
}

#passwordError {
    color: red;
    margin-left: 5px;
    margin-top: 20px;
    margin-bottom: -25px;
}

.pointer {
    cursor: pointer;
}

/********** COPY TO CLIPBOARD BUTTON *********/
.copy-btn {
  color: white;
  cursor: pointer;
  margin-left: 10px;

  opacity: 0.4;
}


.copy-btn:hover {
  opacity: 1;
}


.copy-btn:active {
  color: var(--color-primary);
}

.ellipsisLeft {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    direction: rtl;
}
/** Devices **/

.deviceBox {
    text-align: left;
    border-radius: 5px;
    padding: 10px 30px;
    margin-bottom: 20px;
    max-width: 500px;
    position: relative;

    background-color: white;
    color: black;
}

.deviceBox .btn {
    width: 100%;
    right: 20px;
    top: 20px;
    padding: 3px 30px;
}

.deviceBox h2, .deviceBox h3 {
    padding: 0px;
    margin-top: 10px;
}

.deviceBox.notSetup {
    border: 2px dashed #FFFFFF55;
    background-color: transparent;
    color: white;
}

.x-transition {
    -webkit-transition: all ease-out 0.5s;
    -moz-transition: all ease-out 0.5s;
    -o-transition: all ease-out 0.5s;
    transition: all ease-out 0.5s;
}

.cardLogin .errorMessage {
    color: var(--color-negative);
}

.pointer {
    cursor: pointer;
}

.no-padding {
    padding: 0px;
}

.additionalButtons .btn {
    margin-top: 20px;
}


.menu-right-item {
    float: right;
    cursor: pointer;
}

.menu-right-item:hover {
    color: var(--color-primary);
}

#plannedEndTime {
    margin-top: 20px;
}

/************************************** RESPONSIVE **************************************/
@media only screen and (max-width: 1024px) {

}
@media only screen and (max-width: 840px) {
    .managerForm .form-control {
        width: 100%;
        width: 100% !important;
        margin-bottom: 5px !important;
    }
    .managerForm .btn.btn-primary {
        width: 100%;
    }
}
@media only screen and (max-width: 768px) {
    .top-bar {
        padding: 10px;
    }
    .userEmail {
        font-size: 20px;
    }
    .headerUserEmailContainer {
        padding: 0;
    }

}
@media only screen and (max-width: 767px) {
    .managerForm .form-control {
        width: 100% !important;
        margin-bottom: 5px !important;
    }
    .managerForm .btn.btn-primary {
        width: 100%;
    }
    .marketplace-item,
    .rental-item {
        margin-bottom: 20px;
    }
    .marketplace-item:nth-child(3n),
    .rental-item:nth-child(3n) {
        margin-bottom: -10px !important;
    }
    .mobileOnly {
        display: unset;
        font-family: system-ui;
        margin-right: 5px;
    }

    table.adjustMobile thead {
        display: none;
    }
    table.adjustMobile {
        border-collapse: collapse !important;
    }
    table.adjustMobile thead th {
        display: block;
    }
    table.adjustMobile td {
        padding: 0px !important;
    }
    table.adjustMobile tr td:first-child {
        padding-top: 25px !important;
    }
    table.adjustMobile tr td:last-child {
        padding-bottom: 25px !important;
    }
    table.adjustMobiletr {
        border-bottom: 1px solid lightgrey;
        padding-bottom: 30px;
        padding-top: 30px;
    }
    table.adjustMobile tbody {
        /*float: left;*/
    }

    table.adjustMobile tbody td {
        display: block;
    }
    .mobileAdjustCenter {
        text-align: center;
    }
    #customLanguageCurrentSelection {
        display: none;
    }
    .userEmail {
        display: none;
    }
    #logoutButton {
        display: flex;
        align-items: center;
    }
    #logoutButton a span {
        font-size: 20px;
    }

    .logoutTimeout {
        font-size: 9px;
        background-color: red;
        border-radius: 8px;
        padding: 5px;
        color: #fff !important;
        position: relative;
        top: -15px;
    }
    .menu-right-item {
        margin-right: 0;
    }
}

@media only screen and (max-width: 650px) {
    .user-box {
        top: 80px;
        right: 36px;
    }
}

@media screen and (max-width: 375px) {
    .top-bar .headerLogoHrefContainer a img {
        height: 70px;
    }
}

@media screen and (max-width: 320px) {
    .top-bar .headerLogoHrefContainer a img {
        height: 50px;
    }
    .col-sm-6.text-center.headerUserEmailContainer {
        padding: 0;
    }
}

.pin-code {
    color: var(--color-positive);
}
.pin-code::before {
    content: 'PIN: ';
}