html,
body {
    height: 100%;
}

.mt-30 {
    margin-top: 30px;
}

.blue-bg {
    background: rgb(71, 51, 221);
    background: linear-gradient(180deg, rgba(71, 51, 221, 1) 0%, rgba(147, 71, 156, 1) 100%);
    color: #fff;
}

.login-form {
    margin-top: 70px;
}

.login-block {
    /* background: rgb(71,51,221);
background: linear-gradient(180deg, rgba(71,51,221,1) 0%, rgba(147,71,156,1) 100%); */
    background: url("../img/headerbanner.png") repeat-y;
    float: left;
    width: 100%;
    padding: 50px 0;
    height: 100%;
}

.login-logo-container {
    margin-bottom: 20px;
}

.banner-sec {
    background: url(../img/login-img.jpg) no-repeat left bottom;
    background-size: cover;
    min-height: 500px;
    border-radius: 0 10px 10px 0;
    padding: 0;
}

.container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 15px 20px 0px rgba(0, 0, 0, 0.1);
}

.carousel-inner {
    border-radius: 0 10px 10px 0;
}

.carousel-caption {
    text-align: left;
    left: 5%;
}

.login-sec {
    padding: 50px 30px;
    position: relative;
}

.login-sec .copy-text {
    position: absolute;
    width: 80%;
    bottom: 20px;
    font-size: 13px;
    text-align: center;
}

.login-sec .copy-text i {
    color: #2ab6ea;
}

.login-sec .copy-text a {
    color: #2ab6ea;
}

.login-sec h2 {
    margin-bottom: 30px;
    font-weight: 800;
    font-size: 30px;
    color: #2ab6ea;
}

.login-sec h2:after {
    content: " ";
    width: 100px;
    height: 2px;
    background: #2ab6ea;
    display: block;
    margin-top: 20px;
    border-radius: 0px;
    margin-left: auto;
    margin-right: auto
}

.btn-login {
    background: #2ab6ea;
    color: #fff;
    font-weight: 600;
}

.banner-text {
    width: 70%;
    position: absolute;
    bottom: 40px;
    padding-left: 20px;
}

.banner-text h2 {
    color: #fff;
    font-weight: 600;
}

.banner-text h2:after {
    content: " ";
    width: 100px;
    height: 5px;
    background: #FFF;
    display: block;
    margin-top: 20px;
    border-radius: 3px;
}

.banner-text p {
    color: #fff;
}

.listing-block {
    background: #fff;
    height: 500px;
    padding-top: 20px;
    overflow-y: scroll;
}

.slimScrollDiv {
    width: 41%!important;
}

.media {
    position: relative;
}

.media img {
    margin: 0;
}

.media-body {
    border-left: 0;
}

.media .price {
    float: left;
    width: 100%;
    font-size: 20px;
    font-weight: 400;
    color: #ff6600;
}

.media .price small {
    display: block;
    font-size: 17px;
    color: #232323;
}

.media .stats {
    float: left;
    width: 100%;
    margin-top: 10px;
}

.media .stats span {
    float: left;
    margin-right: 30px;
    font-size: 15px;
}

.media .stats span i {
    margin-right: 7px;
    color: #a9afbb;
}

.media-dash .stats {
    float: left;
    width: 100%;
    margin-top: 10px;
}

.media-dash .stats span {
    float: left;
    margin-right: 30px;
    font-size: 15px;
}

.media-dash .stats span i {
    margin-right: 7px;
    color: #a9afbb;
}

.media .address {
    float: left;
    width: 100%;
    font-size: 14px;
    margin-top: 5px;
    color: #888;
}

.media .fav-box {
    position: absolute;
    right: 10px;
    font-size: 20px;
    top: 4px;
    color: #E74C3C;
}

.table-location-icon {
    padding: 15px;
    background: #ffa726;
    border-radius: 3px;
    width: 54px;
    height: 54px;
}

.table-location-icon i {
    font-size: 24px;
    color: #ffffff;
}

.table-location-success {
    padding: 15px;
    background: green;
    border-radius: 3px;
    width: 54px;
    height: 54px;
}

.table-location-success i {
    font-size: 24px;
    color: #ffffff;
}

.map-box {
    background-color: #A3CCFF;
}

.card-inner-title {
    font-size: 20px !important;
    font-weight: 400 !important;
    color: #ff6600 !important;
    line-height: 24px !important;
}

.iti {
    width: 100% !important;
}

select {
    /* Reset Select */
    appearance: none;
    outline: 0;
    border: 0;
    box-shadow: none;
    /* Personalize */
    flex: 1;
    padding: 0 1em;
    color: #333;
    background-color: #ffffff;
    background-image: none;
    cursor: pointer;
    border: 1px solid #d2d2d2;
}


/* Remove IE arrow */

select::-ms-expand {
    display: none;
}


/* Custom Select wrapper */

.form-select {
    position: relative;
    display: flex;
    margin: 20px 0;
    height: 3em;
    border-radius: .25em;
    overflow: hidden;
}


/* Arrow */

.form-select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: .7em 1em;
    color: #fff;
    background-color: #2ab6ea;
    transition: .25s all ease;
    pointer-events: none;
}


/* Transition */

.form-select:hover::after {
    color: #ffffff;
}