﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

/* navbar */
.navbar-inverse {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
    color: #5e5e5e;
}

    .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus, .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
        color: black;
    }

    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: black;
    }

    .navbar-inverse .navbar-toggle:focus .icon-bar, .navbar-inverse .navbar-toggle:hover .icon-bar {
        background-color: white;
    }
    /* login form*/
.card {
    padding: 30px;
    margin: 5rem auto;
    border-radius: 5px;
    background-color: #eeeeee;
    color: #005670;
    width: 50%;
}

.login-buttons {
    display:flex;
    flex-direction:row;
}

.login-btn {
    margin-right: 5px;
}

.arun-logo {
    background-image: url('../images/logo-arun-2019.png');
    background-position: left;
    background-repeat: no-repeat;
    min-height: 100px;
}

.login-header {
    display: flex;
    flex-direction: row;
    align-items:center;
}

.login-camera-icon {
    background-image: url('../images/virtual-tour-icon-teal.svg');
    background-position: center;
    width: 100px;
    background-repeat: no-repeat;
    min-height: 100px;
    margin-right: 10px;
    background-size: contain;
}
/* Upload Form */
.form-upload {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    padding: 20px;
    align-items: center;
    justify-content: center;
    border-style: dashed;
    border-color: #EEF1F2;
    color: #005670;
}

.file-selector-container {
    display: flex;
    padding: 20px 0;
    justify-content: center;
    flex-direction: column;
}

.propref-input-container {
    display: flex;
    font-size: 16px;
}

.submit-button-container {
    display: flex;
    padding: 20px 0;
    font-size: 18px;
    margin-top: auto;
}

.btn-file, .btn-file:hover {
    position: relative;
    overflow: hidden;
    margin-left: 10px;
    font-size: 18px;
    width:30%;
    font-weight: bold;
}


    .btn-file input[type=file] {
        position: absolute;
        top: 0;
        right: 0;
        min-width: 100%;
        min-height: 100%;
        font-size: 100px;
        text-align: right;
        filter: alpha(opacity=0);
        opacity: 0;
        outline: none;
        background: white;
        cursor: inherit;
        display: block;
    }

.file-field {
    display: flex;
    flex-direction: row;
    width:100%;
}

.file-path, file-path:focus {
    border-left: none;
    border-right: none;
    border-top: none;
    outline:none;
    border-color: #EEF1F2;
    font-size: 20px;
    width: 100%
}

file-path:focus {
    border-color: #005670;
}

.btn-submit {
    position: relative;
    font-size: 18px;
    font-weight: bold;    
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: #005670;
}

.camera-logo {
    background-image: url('../images/virtual-tour-icon-teal.svg');
    background-position: center;
    width: 100%;
    background-repeat: no-repeat;
    min-height: 100px;
    background-size: contain;
}

.property-preview-container {
    border-style: solid;
    border-radius: 20px;
    padding: 0px;
    display: flex;
    flex-direction: row;
    background-color: #005670;
}

.property-preview-image {
    padding:0px;
}

.property-preview-video {
    width: 100%;
    height: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 20px;
}

.property-preview-details {
    padding: 20px;
    font-size: 16px;
    color: #c8d400;
    display:flex;
    flex-direction:column;
}

.property-detail-value {
    font-size: 16px;
    font-weight: normal;
    color: #c8d400;
}

.property-preview-address {
    display: flex;
    flex-direction: column;
    border-top-style: solid;
    padding-top:20px;
    margin-top:20px;
}

video:focus {
    outline: none;
}

/* Instructions*/
.instructions-header {
    padding: 5px 20px;
    align-items: center;
    justify-content: left;
    background-color: #005670;
    color: #c8d400;
}
.row {
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
}

@media (max-width: 767px) {
    .row {
        flex-direction: column;
        align-items: center;
    }
    h1 {
        text-align:center;
    }

    .form-upload {
        margin: 20px;
    }

    .row-text {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .property-preview-container {
        flex-direction: column-reverse;
    }

    .property-preview-video {
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .card {
        width:100%;
    }
    .btn-submit, .btn-file {
        font-size: 14px;
    }

    .row-image {
        width: 100%;
    }

    .branch-picker-container {
        width: 100%;
    }
}

.row-image {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
}

.row-image-ios-stepone {
    background-image: url('../images/iosstepone.jpg');
}

.row-image-ios-steptwo {
    background-image: url('../images/iossteptwo.jpg');
}

.row-image-ios-stepthree {
    background-image: url('../images/iosstepthree.jpg');
}

.row-image-ios-stepfour {
    background-image: url('../images/iosstepfour.jpg');
}

.row-image-ios-stepfive {
    background-image: url('../images/iosstepfive.png');
}

.row-image-android-stepone {
    background-image: url('../images/androidstepone.png');
}

.row-image-android-steptwo {
    background-image: url('../images/androidsteptwo.png');
}

.row-image-android-stepthree {
    background-image: url('../images/androidstepthree.png');
}

.row-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.row-text-title {
    font-size: large;
    font-weight: bold;
    padding: 10px 0;
}

.row-text-para {
    font-size: medium;
    padding-bottom: 10px;
}

.guide-item-header .accordion-toggle:after {
    font-family: 'Glyphicons Halflings';
    content: "\2212";
    float: right;
    color: #c8d400;
}

.guide-item-header .accordion-toggle.collapsed:after {
    content: "\2b";
}

.guide-item-header {
    background-color: white;
    background-color: #005670;
    color: #c8d400;
    padding: 20px;
    margin-top: 20px;
}

.guide-item-content {
    background-color:white;
}

.instructions-step {
    padding: 20px;
    margin: 10px;
    border-style: dashed;
    border-color: #EEF1F2;
    border-radius: 20px;
}

/* Loading screen */
.progress {
    padding: 0px;
}

.progress-bar {
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight: bold;
    margin-left: 10px;
}