﻿/* Colors */
.form-signin {
    width: 100%;
    max-width: 650px;
    padding: 15px;
    margin: 0 auto;
}

    .form-signin .form-control {
        position: relative;
        box-sizing: border-box;
        height: auto;
        padding: 10px;
        font-size: 16px;
    }

        .form-signin .form-control:focus {
            z-index: 2;
        }

/* hide placeholders on form field focus */
:focus::-webkit-input-placeholder {
    color: transparent;
}

:focus::-moz-placeholder {
    color: transparent;
}

::placeholder {
    opacity: 0.4 !important;
}

::-ms-input-placeholder {
    opacity: 0.4 !important;
}

:-ms-input-placeholder {
    opacity: 0.4 !important;
}

.input-validation-error {
    border: solid 1px red;
}

#checkinPage .form-fields-group {
    background-color: rgba(202, 202, 202, 0.1);
    border-radius: .3rem;
    padding: 30px 15px;
}

#checkinPage .input-group-text {
    justify-content: center;
    width: 3em;
}

#checkinPage .form-field-help-button {
    background-color: transparent;
    border: none;
    color: rgba(0, 123, 255, 0.4);
    cursor: help;
}

    #checkinPage .form-field-help-button .fa,
    #checkinPage .form-field-help-button .fas {
        font-size: 1.4em;
    }

        #checkinPage .form-field-help-button .fa:hover,
        #checkinPage .form-field-help-button .fas:hover {
            color: #007bff;
        }

#checkinPage .btn-group button {
    background-color: rgba(202, 202, 202, 0.55);
    border-bottom: 4px solid transparent;
    box-shadow: none;
    color: #cacaca;
    outline: none;
}

    #checkinPage .btn-group button:hover, #checkinPage .btn-group button:active, #checkinPage .btn-group button:focus, #checkinPage .btn-group button.active {
        border-bottom-color: #007bff;
        color: white;
    }

#checkinPage .left-indented-text:not(:empty) {
    display: inline-block;
    margin-left: 3em;
}

#checkinPage .right-indented-text:not(:empty) {
    display: inline-block;
    margin-right: 3em;
}

#tenantLogo {
    max-width: 225px;
    max-height: 90px;
}
#submitButtonUploadPhotos:disabled {
    cursor: not-allowed;
}

.damage-photo-container {
    padding: 10px;
    display: flex;
    flex-direction: row;
    /*height: 300px;*/
}

    .damage-photo-container .item {
        height: 100%;
        padding: 5px;
        flex: 1;
    }

    .damage-photo-container img {
        border-radius: 1.25rem !important;
        height: 300px !important;
    }

@media (max-width: 768px) {
    .damage-photo-container {
        flex-direction: column;
    }
}

.damage-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 4px 6px 6px #a1a1a1;
    border: 1px solid #a1a1a1;
}

.damage-photo-container .enlarged-image-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.damage-photo-container .enlarged-image {
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    height: 100% !important;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.damage-photo-container .close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}



.validation-summary-errors ul {
    padding-left: 20px;
}

.flag-icon-container-active {
    opacity: 0.5;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.flag-icon {
    font-size: 1.50rem;
}

    .flag-icon:hover {
        text-decoration: none;
    }

.pulsing {
    animation: pulse 1s linear infinite;
    color: #007bff;
    font-size: 6rem;
}

@keyframes pulse {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(1, 1);
    }
}

.datepicker:active, .datepicker:hover {
    opacity: 1;
}

.datepicker .table-condensed {
    width: 16em;
}

.popover {
    border-color: #cacaca;
    border-style: dashed !important;
}

@media screen and (min-width: 1348px) {
    .popover {
        opacity: .8;
    }
}

.popover .popover-header {
    color: #007bff;
}

.popover hr {
    margin: .5rem 0;
}

select option {
    background-color: #cacaca;
    color: rgba(16, 16, 16, 0.7);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.nav-item {
    cursor: pointer;
}

.payment-button {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: center; 
    gap: 10px;
    height: auto; 
    min-height: 50px; 
    text-align: center;
    white-space: normal
}
