/*bookings list*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap');

.footerLoginEmailSty, .footerLeftLoginEmailSty {
    display: inline-block;
    vertical-align: middle !important;
    color: #444444;
    margin-right: 1em;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.95em;
    
}

.sidebarLeftLoginEmailSty {
    display: inline-block;
    vertical-align: middle !important;
    color: #444444;
    margin-right: 1em;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.9em;
    
}
.sidebar {
    height: 100%;
    width: 350px;
    position: fixed;
    z-index: 10000000;
    top: 0;
    left: 0;
    background-color: #EEEEEE;
    overflow-x: hidden;
    padding-top: 20px;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
}

.downloadAppointmentsButton,
.downloadAppointmentsButton:hover,
.downloadAppointmentsButton:active,
.downloadAppointmentsButton:visited,
.downloadAppointmentsButton:focus {
    border: 0px !important;
    background-color: #555555 !important;
    color: white !important
}

.slide-in {
    animation: slide-in 0.3s ease-in-out forwards;
    -webkit-animation: slide-in 0.3s ease-in-out forwards;
}

.slide-out {
    animation: slide-out 0.3s ease-in-out forwards;
    -webkit-animation: slide-out 0.3s ease-in-out forwards;
}
    
@keyframes slide-in {
    100% { transform: translateX(0%); }
}

@-webkit-keyframes slide-in {
    100% { -webkit-transform: translateX(0%); }
}
    
@keyframes slide-out {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

@-webkit-keyframes slide-out {
    0% { -webkit-transform: translateX(0%); }
    100% { -webkit-transform: translateX(-100%); }
}


@media (max-width: 768px) {
    .sidebar {
        width: 200px;
    }
    .slide-in {
        animation: slide-in 0.5s forwards;
        -webkit-animation: slide-in 0.5s forwards;
    }

    .slide-out {
        animation: slide-out 0.5s forwards;
        -webkit-animation: slide-out 0.5s forwards;
    }
}

.bookings {
    background-color: #eeeeee;
    padding: 15px;
    margin-top: 1em !important;
    border-radius: 1em;
    display: inline-block;
}

.booking-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
}

.booking-content p {
    margin-left: 10px;
    margin-right: 10px;
}


.oneEighthWhiteGap {
    height: 2px !important;
    background-color: white;
    white-space: nowrap !important;
}

.quarterWhiteGap {
    height: 4px !important;
    background-color: white;
}

.halfWhiteGap {
    height: 8px !important;
    background-color: white;
}

.whiteGap {
    height: 15px !important;
    background-color: white;
}



.btn {
    border-radius: 0;
    margin: 5px;
}

.button-group {
    display: flex;
    justify-content: flex-end;
}

.rejected {
    color: red;
    padding: 4px;
    /*background-color: #EE6666;*/
    border-radius: 3px;
    font-weight: 500;
}
.scheduled,
.approved,
.confirmed {
    color: forestgreen;
    padding: 4px;
    /*background-color: forestgreen;*/
    border-radius: 3px;
    font-weight: 500;
}

.pendingApproval {
    color: orange;
    padding: 4px;
    /*background-color: orange;*/
    border-radius: 3px;
    font-weight: 600;
}

.DROP {
    font-weight: 600;
    padding: 4px;
    /*background-color: #ffc21c;*/
    /*background-color: #D0A070;*/
    /*color: rgba(208,160,112,0.9);*/
    color: #C09060;
    border-radius: 3px;
}

.PICKUP {
    font-weight: 600;
    padding: 4px;
    /*background-color: #bbff1c;*/
    /*background-color: #5C935C;*/
    /*color: rgba(92,147,92, 0.95);*/
    color: #5C935C;
    border-radius: 3px;
    background-color:
}

.edit-panel {
    position: fixed;
    top: 10%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, 10%);
    background-color: #eeeeee;
    overflow-y: scroll !important;
    max-height: 70%;
}

.edit-panel-content {
    margin: 10px;
    padding-top: 20px;
}

/*
input[type="search"], input[type="text"], input[type="tel"] {
    border: 0;
    padding-left: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    margin-bottom: 10px;
}
*/

input[type=search] {
    -webkit-appearance: none;
}

input[type=number] {
    -webkit-appearance: none;
}

input[type=text] {
    -webkit-appearance: none;
}


.black-screen {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh !important;
    background-color: #000;
    opacity: 80%;
}

label {
    font-weight: 500;
}

.edit-panel-content select {
    max-width: 300px;
}

select {
    border-radius: 0 !important;
}


/*booking form*/

.item-input {
    border: 1px solid #AAAAAA;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}



/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

.cursorPointer {
    cursor: pointer !important;
}

.noBorder {
    border: none !important;
}

.noMargin {
    margin: none !important;
}

.noPadding {
    padding: none !important;
}

.verticalAlignMiddle {
    vertical-align: middle !important;
}

.closeBookingFormSty {
    /*color: #888888;*/
    color: black;
    float: right;
    margin-right: 0.25em;
}

.newBookingBtn {
    border: 0px !important;
    background-color: #085DAD !important;
    color: #EEEEEE !important
}

.removeAttachmentSty {
    display: inline-block;
    color: #EE8080;
    float: right;
    margin-left: 0.15em;
}

.uploadAttachmentProgressBarFrameSize {
    width: 50%;
    font-size: 25%;
}

.uploadProgressBarFrameColor {
    background-color: #DDDDDD;
    border: 2px solid #BBBBBB;
}

.uploadProgressBarColor {
    background-color: #CCCCCC;
    border: 2px solid #BBBBBB;
}

.uploadProgressBarCompletedColor {
    background-color: #8CC739;
    border: 2px solid #BBBBBB;
}

.undoSelectedFileSize {
    font-size: 1.2em;
    font-weight: 600;
    padding-left: 0.25em;
    padding-right: 0.25em;
    padding-top: 0.25em;
}

.undoSelectedFileColor {
    color: #333333;
}

.attachmentSelectButton {
    background-color: #085DAD !important;
    color: #EEEEEE !important;
}

.attachmentSelectButtonClicked {
    background-color: #58ADED !important;
    color: #EEEEEE !important;
}

.attachmentDeleteButtonColor {
    background-color: #DD5555 !important;
    color: white !important;
}

.attachmentDocumentBadge {
    background-color: transparent;
    margin: 0.25em;
    color: #000000;
    border: 1px solid #888888;
    text-transform: uppercase;
    font-weight: 500;
}

.uploadBtnSty {
	background-color: #085DAD !important;
}
.fetchSlotsBtnSty {
	background-color: #085DAD !important;
}

.queueFormPageSubmitButtonSty {
    margin-top: 20px !important;
    background-color: #085DAD !important;
    width: 9em !important;
    height: 3em !important;
    font-size: 1em !important;
    font-weight: 400 !important;
    color: #EEEEEE !important;
}

.scrollcontent {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 1px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.warningTextBig {
    color: #EE6666;
    font-size: 1.25em;
}

.warningText {
    color: #EE6666;
    font-size: 1em;
}

.warningTextSmall {
    color: #EE6666;
    font-size: 0.8em;
}

.calendarDateInputWidth {
    width: 100%;
}

.calendarDatePickerDateSty {
    font-size: 1.125em;
    font-weight: 500;
    background-color: #888888;
    padding: 0.25em;
    border-radius: 0.25em;
    border: 1px solid #CCCCCC;
	
	/*
	background-color: #666666;
	border: 1px solid black;
	*/
	
    color: white;
    width: 10em;
}

.placeSelectSty {
    padding: 0.2em;
    padding-left: 0.5em;
    padding-right: 0.5em;
    border-radius: 0.15em;
    color: beige;
    /*background-color:#99CC77;*/
    /*background-color:#006a4e;*/
    background-color: #888888;
}

.placeCaretSty {
    margin-left: 0.25em;
    width: 0.5em;
}

.placeSelectorColSty {
    background-color: #AAAAAA;
    color: white;
    font-weight: 600;
    border-radius: 0.25em;
    width: 15em;
    padding: 0.1em;
    text-align: center;
}

.undefinedPlaceSty {
    border: 2px solid red !important;
}

.fieldsGroup {
    display: inline-block;
    width: 15ch;
}

.formFieldsContainer {
    width: 40%;
}

@media (max-width:900px) {
    .formFieldsContainer {
        width: 70%;
    }
}


/*mobile*/

@media (max-width:768px) {
    .formFieldsContainer {
        width: 90%;
    }
    .item-input {
        font-size: 110%;
        /* scales with the body tag*/
        padding-bottom: 0px;
        padding-top: 0px;
    }
    .item {
        font-size: 110%;
        /* scales with the body tag*/
        padding-bottom: 0px;
        padding-top: 0px;
    }
    .input {
        font-size: 110%;
        /* scales with the body tag*/
        padding-bottom: 0px;
        padding-top: 0px;
    }
}

.centeredFormFieldsContainer {
    margin-left: 20%;
    margin-right: 20%;
}

@media (max-width:900px) {
    .centeredFormFieldsContainer {
        margin-left: 15%;
        margin-right: 15%;
    }
}


/*mobile*/

@media (max-width:768px) {
    .centeredFormFieldsContainer {
        margin-left: 2%;
        margin-right: 2%;
    }
}

.formFieldsLongContainer {
    width: 70%;
}

.bookingFormPageBackgroundSty {
    margin-top: 1em;
    padding-top: 1em;
    /*
            background-color: #F5F5F5;
            border: 1px solid #F5F5F5;
            */
    background-color: #EEEEEE;
    border: 1px solid #EEEEEE;
    border-radius: 1em;
    z-index: 100000;
    margin-left: 20%;
    margin-right: 20%;
    /*min-height: 25em;*/
}

@media (max-width:768px) {
    .bookingFormPageBackgroundSty {
        margin-left: 0.25em;
        margin-right: 0.25em;
        margin-top: 0.25em;
    }
}


.spinnerSty {
    /*color: #888888;*/
    color: #888888;
    vertical-align: middle !important;
    font-size: 1.75em;
}

.bookingFormLoadingSpinnerSty {
    /*color: #888888;*/
    color: #666666;
    vertical-align: middle !important;
    font-size: 2.75em;
}

.addFieldsRow {
    color: #085DAD !important;
}

.deleteFieldsRow, .removeFieldsRow {
    /*display:inline-block;color:#EE8888;margin-left:0.15em;*/
    display: inline-block;
    color: #EE8080;
    margin-left: 0.15em;
}

.myscrollouter {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    height: 7.2em;
    border-top: 2px solid #EEEEEE;
    text-align: center;
    float: center;
}

.myscrollinner {
    height: calc(100% + 1px);
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.container-fluid-no-padding {
    margin-right: auto;
    margin-left: auto
}

.mobile-linear-fields {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    width: 100%;
}

.mobile-linear-field-item {
    padding: 1px;
    padding-left: 2px;
    margin: 2px;
}

.mobile-linear-button-item {
    margin: 5px;
}

@media (max-width:768px) {
    .mobile-linear-fields {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }
}

.subSlotOccupiedColor {
    /*background-color:#FFCCCB;*/
    /*background-color:#BBAAAA !important;
            border-bottom: 1px solid #BBAAAA !important;*/
    background-color: #BBB5B5AA !important;
    border-bottom: 1px solid #BBAAAAAA !important;
    cursor: not-allowed;
}

.subSlotSelectedColor {
    /*background-color:#FFCCCB;*/
    /*background-color:#AACCFF !important;
            border-bottom: 1px solid #AACCFF !important;*/
    background-color: #88BBDD99 !important;
    border-bottom: 1px solid #88BBDDBB !important;
}


/*hover is detected by ng-mouseover and not by css :hover event*/

.subSlotHoverColor {
    /*background-color:#FFCCCB;*/
    /*background-color:#AACCFF !important;
            border-bottom: 1px solid #AACCFF !important;*/
    background-color: #88BBDD44;
    border-bottom: 1px solid #88BBDD88;
    cursor: pointer !important;
}

.subSlotHoverNotFittingETAColor {
    /*background-color:#FFCCCB;*/
    /*background-color:#AACCFF !important;
            border-bottom: 1px solid #AACCFF !important;*/
    background-color: #88BBDD44;
    border-bottom: 1px solid #88BBDD88;
    cursor: pointer !important;
}

html,
body {
    overflow-y: scroll;
}

.scrollableTimeSelector {
    overflow-y: scroll;
    height: 450px;
    min-height: 101%;
    width: 28%;
    min-width: 10em;
}

.shortScrollableTimeSelector {
    overflow-y: scroll;
    height: 120px;
    min-height: 101%;
    width: 28%;
    min-width: 10em;
}

@media (max-width:768px) {
    .scrollableTimeSelector {
        width: 60%;
        height: 350px;
    }
}

.vehicleTypeNameSty,
.itemNameSty,
.loadCategoryNameSty {
    font-size: 1em;
}

.vehicleTypeWidthSty,
.itemWidthSty,
.loadCategoryWidthSty,
.warehousingServiceWidthSty {
    width: 20%;
    font-size: 0.9em;
}

.unitsWidthSty {
    width: 15%;
    font-size: 0.9em;
}

@media (max-width:768px) {
    .vehicleTypeNameSty,
    .itemNameSty,
    .loadCategoryNameSty,
    .unitsWidthSty {
        font-size: 0.9em;
    }
    .vehicleTypeWidthSty,
    .itemWidthSty,
    .loadCategoryWidthSty,
    .unitsWidthSty,
    .warehousingServiceWidthSty {
        width: 20%;
    }
}

.servicesSty, .warehousingServicesSty {
    margin-right: 0.5em;
    margin-top: 0.5em;
    font-size: 1em;
    color: #222222;
}


/*START ADDRESS FORM*/
.fromToAddressGap {
    display:inline-block;width:4%;
}
.addressFormWidth {
    display:inline-block;width:45%;
}

@media (max-width:768px) {
    .fromToAddressGap {
        display:block;width:0%;height:10px;/*vertical gap instead of horizontalgap*/
    }
    .addressFormWidth {
        display:block;width:100%;
    }
}

/*END ADDRESS FORM*/

/*START LOGIN CLASSES*/

.loginFormWidth {
    /*width: 45%;*/
    width: 70ch;
    min-width: 35%;
    font-size: 90%;
}


/*iPad portrait 768px x 1024px*/

@media only screen and (device-width:768px) and (device-height:1024px) {
    .loginFormWidth {
        width: 70ch;
        min-width: 60%;
        max-width: 90%;
    }
}

@media (max-width:768px) {
    .loginFormWidth {
        width: 95%;
    }
}

.loginHighlightedButtonColor {
    background-color: #21BEDE !important;
    border: none !important;
}

.logoutButtonSty {
    color: white !important;
    border: none !important;
    background-color: #DD5555 !important;
    border-radius: 0.25em !important;
}


/*START SETTINGS CLASSES*/

.settingsFont {
    color: #222222;
    font-weight: 500;
    font-size: 0.85em;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

table.settingsFont tr td {
    cursor: pointer;
}


/*END SETTINGS CLASSES*/

.responsiveGapBelowQueue {
    height: 1000px;
}

.responsiveGapBelowQueueHalf {
    height: 400px;
}


.responsiveGapBelowQueueOneFourth {
    height: 200px;
}


.responsiveGapAboveLogo {
    height: 20px;
}

.responsiveLogoHeight {
    height: 80px;
}

.responsiveGapBelowLogo {
    height: 20px;
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.container-fluid-no-padding {
    margin-right: auto;
    margin-left: auto
}

input[type=search] {
    -webkit-appearance: none;
}

input[type=number] {
    -webkit-appearance: none;
}

input[type=text] {
    -webkit-appearance: none;
}

input[type=password] {
    -webkit-appearance: none;
}

.item-input {
    border: 1px solid #AAAAAA;
}


/*START LOGIN CLASSES*/

.loginFormWidth {
    /*width: 45%;*/
    width: 70ch;
    min-width: 35%;
    font-size: 90%;
}


/*iPad portrait 768px x 1024px*/

@media only screen and (device-width:768px) and (device-height:1024px) {
    .loginFormWidth {
        width: 70ch;
        min-width: 60%;
        max-width: 90%;
    }
}

@media (max-width:768px) {
    .loginFormWidth {
        width: 95%;
    }
}

.loginHighlightedButtonColor {
    background-color: #21BEDE !important;
    border: none !important;
}


/*END LOGIN CLASSES*/