﻿/* Always set the map height explicitly to define the size of the div
       * element that contains the map. */
#map {
    height: 100%;
    
}

/* Optional: Makes the sample page fill the window. */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/*for color-profile upload functionality*/
.clearfix {
    overflow: auto;
}

.dropzone {
    position: relative;
    height: 100px;
    border: 2px dashed #b3b3b3;
    border-radius: 4px;
    background-color: #f3f3f3;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .dropzone .msg {
        font-size: 20px;
        font-weight: bold;
        color: #c3c3c3;
        padding: 0 10px;
    }

input.fileUpload {
    display: none;
}

.preview {
    margin: 10px 0;
    padding: 5px;
}

.previewData img {
    width: 100px;
    height: 100px;
    float: left;
    margin: 5px;
}

.previewDetails {
    display: inline-block;
    float: left;
    margin: 5px;
    padding: 8px;
}

.detail {
    font-family: arial;
    padding: 5px;
    overflow: hidden;
    max-width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.previewControls {
    display: inline-block;
    float: left;
    margin: 40px 30px;
}

.circle {
    border: 2px solid #5B93F5;
    border-radius: 20px;
    display: inline-block;
    height: 25px;
    width: 25px;
    margin: 5px;
    cursor: pointer;
    color: #5B93F5;
}

    .circle.upload:hover {
        border: 2px solid green;
    }

        .circle.upload:hover i.fa-check {
            color: green;
        }

    .circle.remove:hover {
        border: 2px solid red;
    }

        .circle.remove:hover i.fa-close {
            color: red;
        }

    .circle i {
        position: relative;
        font-size: 14px;
    }

        .circle i.fa-check {
            top: 3px;
            left: 5px;
        }

        .circle i.fa-close {
            top: 0px;
            left: 0px;
        }

/*feedback form css*/
ul.user-review, ul.review-list {
    display: inline-block;
    width: 100%;
    padding: 0;
}
    ul.user-review > li {
        display: inline-block;
        width: 100%;
    }

.review-listing-wrapper {
    display: inline-block;
    width: 100%;
}
.form-check {
    float: left;
    display: inline-block;
}

ul.review-list > li:first-child {
    text-align: left;
}

ul.review-list li {
    display: inline-block;
    width: 33%;
    text-align: left;
    padding: 10px;
    height: 40px;
    font-weight: bold;
}
ul.review-list.title li {
    font-weight: bold;
}

.leave-rating-wrap {
    float: left;
    margin: 0px !important;
    width: 100%;
    padding: 0;
}

.btn-feedback {
    margin: 12px;
}

textarea {
    width: 100%;
}

/*ErrorPage css*/

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

#notfound {
    position: relative;
    height: 100vh;
}

    #notfound .notfound {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.notfound {
    max-width: 560px;
    width: 100%;
    padding-left: 160px;
    line-height: 1.1;
}

    .notfound .notfound-404 {
        position: absolute;
        left: 0;
        top: 0;
        display: inline-block;
        width: 140px;
        height: 140px;
        background-image: url('../images/emoji.png');
        background-size: cover;
    }

        .notfound .notfound-404:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-transform: scale(2.4);
            -ms-transform: scale(2.4);
            transform: scale(2.4);
            border-radius: 50%;
            background-color: #f8f9fa;
            z-index: -1;
        }

    .notfound h1 {
        font-family: 'Nunito', sans-serif;
        font-size: 65px;
        font-weight: 700;
        margin-top: 0px;
        margin-bottom: 10px;
        color: #151723;
        text-transform: uppercase;
    }

    .notfound h2 {
        font-family: 'Nunito', sans-serif;
        font-size: 21px;
        font-weight: 400;
        margin: 0;        
        color: #151723;
    }

    .notfound p {
        font-family: 'Nunito', sans-serif;
        color: #999fa5;
        font-weight: 400;
    }

    .notfound a {
        font-family: 'Nunito', sans-serif;
        display: inline-block;
        font-weight: 700;
        border-radius: 40px;
        text-decoration: none;
        color: #388dbc;
    }

@media only screen and (max-width: 767px) {
    .notfound .notfound-404 {
        width: 110px;
        height: 110px;
    }

    .notfound {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 110px;
    }
}
