/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
 * Remove default margin.
 */
body {
    margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

    /**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
    audio:not([controls]) {
        display: none;
        height: 0;
    }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
    background-color: transparent;
}

    /**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
    a:active,
    a:hover {
        outline: 0;
        cursor: pointer;
        cursor: hand;
    }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
    background: #ff0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
    border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
    margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
    overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}

    /**
 * Re-set default cursor for disabled elements.
 */
    button[disabled],
    html input[disabled] {
        cursor: default;
    }

    /**
 * Remove inner padding and border in Firefox 4+.
 */
    button::-moz-focus-inner,
    input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
    line-height: normal;
}

    /**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
    input[type="checkbox"],
    input[type="radio"] {
        box-sizing: border-box;
        /* 1 */
        padding: 0;
        /* 2 */
    }

    /**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

    /**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
    input[type="search"] {
        -webkit-appearance: textfield;
        /* 1 */
        box-sizing: content-box;
        /* 2 */
    }

        /**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

html {
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
}

body {
    background-color: #f6f6f6;
    color: #535353;
    font-family: "Open Sans", sans-serif;
    font-size: 10px;
}

img {
    height: auto;
    width: 100%;
}

.wrap {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

.content .wrap {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.content .navigation {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 250px;
    flex: 0 0 250px;
    position: absolute;
}

.content .title-note {
    font-size: 1.3em;
}

    .content .title-note a {
        color: #535353;
    }

@media (min-width: 1000px) {
    .content .navigation {
        position: relative;
    }
}

.content main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    font-family: "Lato", sans-serif;
    padding: 60px 0 10px 0;
}

@media (min-width: 1000px) {
    .content main {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        padding: 30px 10px 30px 30px;
    }
}

.alt {
    background-color: #fff;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .row.full .block {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .row.half .block {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

@media (min-width: 600px) {
    .row.half .block {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
        flex: 0 0 49%;
    }
}

.row.third .block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
}

@media (min-width: 600px) {
    .row.third .block {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
        flex: 0 0 32%;
    }
}

.row.third .block:first-child {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

@media (min-width: 600px) {
    .row.third .block:first-child {
        -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    }
}

.row.quarter .block {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

@media (min-width: 600px) {
    .row.quarter .block {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 24%;
        flex: 0 0 24%;
    }
}

input[type="text"], select,
textarea, input[type="password"] {
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.125em;
  height: 2.5em !important;
  line-height: 2.5em;
  margin-bottom: 1em;
  padding: 0 10px;
  width: 100%; }

.ad-change input[type="text"], .ad-change select, .ad-change
textarea, .ad-change input[type="password"] {
    font-size: 1em;
    line-height: 1;
}

input[type="button"] {
    border: 0;
    border-radius: 5px;
    color: #fff;
    display: block;
    font-size: 1.125em;
    height: 2.5em;
    line-height: 2.5em;
    margin: 1em 0;
    width: 100%;
}

    input[type="button"]:hover {
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

.ad-change input[type="button"] {
    color: #535353;
    background-color: #ddd;
    display: inline-block;
    font-size: 1.6em;
    line-height: 2em;
    margin: 10px auto 10px 10px;
    padding: 5px 30px;
    width: auto;
}

    .ad-change input[type="button"]:hover {
        background-color: #d0d0d0;
    }

input.submit {
    color: #fff !important;
}

input[type="submit"], input.submit {
    border: 0;
    border-radius: 5px;
    color: #fff;
    display: block;
    font-size: 1.125em;
    height: 2.5em;
    line-height: 2.5em;
    margin: 1em 0;
    width: 100%;
}

    input[type="submit"]:hover, input.submit:hover {
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }

.login input[type="submit"], .login input.submit {
    background-color: #00bcc9;
}

    .login input[type="submit"]:hover, .login input.submit:hover {
        background-color: #00a9ca;
    }

.ad-change input[type="submit"], .ad-change input.submit {
    background-color: #f38900;
    display: inline-block;
    font-size: 1.6em;
    line-height: 2em;
    margin: 10px auto;
    padding: 5px 30px;
    width: auto;
}

    .ad-change input[type="submit"]:hover, .ad-change input.submit:hover {
        background-color: #da7b00;
    }

.my-profile input[type="submit"], .my-profile input.submit {
    background-color: transparent;
    border: 1px solid #535353;
    color: #535353;
    display: inline-block;
    font-size: 1.125em;
    padding: 0 2em;
    width: auto;
}

    .my-profile input[type="submit"]:hover, .my-profile input.submit:hover {
        background-color: #ddd;
    }

input[type="password"], input.user {
    padding-left: 40px;
}

input.user {
    background: url("Images/icons-login-username.png") 10px center no-repeat;
}

input[type="password"] {
    background: url("Images/icons-login-password.png") 10px center no-repeat;
}

select,
textarea {
    padding: 5px;
}

.wrap textarea {
    height: 15em;
    line-height: 1.5;
    padding: 10px;
}

.my-messages select {
    background-color: #ddd;
    border: 0;
    font-size: .9em;
    height: 2em;
    margin: 0;
}

.my-profile select {
    padding: 9px 5px;
}

label {
    display: inline-block;
    font-weight: 600;
    margin-bottom: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
}

h2 {
    border-left: 5px solid #00a9ca;
    color: #035671;
    font-size: 2.0em;
    letter-spacing: -1px;
    line-height: 1.1;
    padding-left: 10px;
}

@media (min-width: 600px) {
    h2 {
        font-size: 2.5em;
    }
}

main h2 {
    margin: .5em 10px;
}

@media (min-width: 1000px) {
    main h2 {
        margin: .5em 0;
    }
}

h2 span {
    color: #000;
}

.my-messages h2 {
    display: inline-block;
}

    .my-messages h2 span {
        color: #035671;
    }

.login h2 {
    display: inline-block;
    font-size: 1.3em;
}

@media (min-width: 600px) {
    .login h2 {
        font-size: 1.6em;
    }
}

h3 {
    color: #00a9ca;
    font-size: 2em;
    font-weight: 400;
    margin: .4em .2em;
}

@media (min-width: 600px) {
    h3 {
        margin-left: 0;
    }
}

.response h3 {
    font-weight: 600;
}

.success h3 {
    color: #647e49;
}

.error h3 {
    color: #ea2b37;
}

.register h3 {
    font-size: 1.2em;
    margin: .2em 0;
}

@media (min-width: 600px) {
    .register h3 {
        font-size: 1.6em;
    }
}

h4 {
    font-size: 1.7em;
    font-weight: 600;
    line-height: 1.5;
    margin: .4em .2em;
}

@media (min-width: 600px) {
    h4 {
        margin-left: 0;
    }
}

h4 .price {
    font-weight: 800;
}

h4 .offers {
    float: right;
    margin: 0 1em 0 0;
}

    h4 .offers span {
        background-color: #ea2b37;
        color: #fff;
        display: inline-block;
        padding: 0 10px;
    }

.btn, .contact, .my-listings a.offers, .my-listings a.details, .change a {
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
}

    .btn:hover, .contact:hover, .my-listings a.offers:hover, .my-listings a.details:hover, .change a:hover {
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in;
    }

.btn-orange, .contact, .my-listings a.details, .change a, .message-details a.contact {
    background-color: #f38900;
}

    .btn-orange:hover, .contact:hover, .my-listings a.details:hover, .change a:hover, .message-details a.contact:hover {
        background-color: #da7b00;
    }

.btn-blue, .my-listings a.offers {
    background-color: #00a9ca;
}

    .btn-blue:hover, .my-listings a.offers:hover {
        background-color: #0094b1;
    }

.btn-teal, .message main .contact {
    background-color: #00bcc9;
}

    .btn-teal:hover, .message main .contact:hover {
        background-color: #008c96;
    }

.btn-green {
    border: 1px solid #647e49;
    color: #647e49;
    margin-top: 1em;
}

    .btn-green:hover {
        background-color: #d6e1cb;
    }

.contact {
    float: right;
    font-size: 1.3em;
    line-height: 1.7;
    margin-top: 10px;
    padding: 5px 20px;
}

@media (min-width: 600px) {
    .contact {
        line-height: 1.5;
        padding: 10px 20px;
    }
}

.contact i {
    display: inline-block;
    font-size: 1.5em;
    margin-right: 10px;
}

.contact span {
    display: none;
}

@media (min-width: 600px) {
    .contact span {
        display: inline;
    }
}

table {
    font-size: 1.5em;
    line-height: 1.5;
    margin: 20px 0 40px;
    width: 100%;
}

    table thead {
        display: none;
    }

@media (min-width: 1000px) {
    table thead {
        display: table-header-group;
    }
}

table thead tr {
    background-color: #035671;
    color: #fff;
    line-height: 3;
}

table tbody tr {
    background-color: #eeeeee;
    position: relative;
}

    table tbody tr:nth-child(odd) {
        background-color: #fff;
    }

table td {
    display: block;
    padding: 5px;
}

@media (min-width: 1000px) {
    table td {
        display: table-cell;
        padding: 20px 10px;
    }
}

table td.resort, table td.listing, table td.price, table td.type, table td.offer-id, table td.offer-date, table td.offer-type, table td.offer-link {
    padding-left: 100px;
}

@media (min-width: 1000px) {
    table td.resort, table td.listing, table td.price, table td.type, table td.offer-id, table td.offer-date, table td.offer-type, table td.offer-link {
        padding-left: 10px;
    }
}

table td.resort:before, table td.listing:before, table td.price:before, table td.type:before, table td.offer-id:before, table td.offer-date:before, table td.offer-type:before, table td.offer-link:before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    left: 5px;
    position: absolute;
    width: 100px;
}

@media (min-width: 1000px) {
    table td.resort:before, table td.listing:before, table td.price:before, table td.type:before, table td.offer-id:before, table td.offer-date:before, table td.offer-type:before, table td.offer-link:before {
        display: none;
    }
}

@media (min-width: 1000px) {
    table td.resort {
        padding-left: 20px;
        width: 44%;
    }
}

@media (min-width: 1000px) {
    table td.listing, table td.price {
        width: 95px;
    }
}

@media (min-width: 1000px) {
    table td.type {
        text-align: center;
        width: 65px;
    }
}

table td.offer, table td.details {
    display: inline-block;
    padding-bottom: 20px;
}

@media (min-width: 1000px) {
    table td.offer, table td.details {
        display: table-cell;
        text-align: right;
    }
}

table td.details {
    min-width: 150px;
}

table td:first-child {
    padding-top: 20px;
}

table td:last-child {
    padding-bottom: 20px;
}

@media (min-width: 1000px) {
    table td.offer-id, table td.offer-date, table td.offer-type, table td.offer-link {
        text-align: center;
        width: 30%;
    }
}

@media (min-width: 1000px) {
    table td.offer-type, table td.offer-link {
        width: 20%;
    }
}

.response {
    border-radius: 5px;
    padding: 1em;
    position: relative;
    text-align: center;
}

@media (min-width: 600px) {
    .response {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        text-align: left;
    }
}

.response.success {
    background-color: #e3eadc;
    border: 1px solid #a4bc8b;
    color: #647e49;
}

.response.error {
    background-color: #fce5e6;
    border: 1px solid #f59fa4;
    color: #ea2b37;
}

.response .close {
    color: #535353;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

@media (min-width: 600px) {
    .response > h3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 240px;
        flex: 0 0 240px;
    }

    .register .response > h3 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
}

@media (min-width: 600px) {
    .response > p {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 200px;
        flex: 1 0 200px;
        padding-right: 1em;
    }
}

.response .btn, .response .contact, .response .my-listings a.offers, .my-listings .response a.offers, .response .my-listings a.details, .my-listings .response a.details, .response .change a, .change .response a {
    margin: 1em auto;
}

.register .response {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.modal-blur {
    background-color: #535353;
    background-color: rgba(83, 83, 83, 0.5);
    height: 100%;
    left: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    overflow: auto;
}

.modal {
    background-color: #f6f6f6;
    border-radius: 5px;
    color: #535353;
    font-size: 1.6em;
    /*left: 57%;
  padding: 1.25em;
  position: absolute;
  top: 60%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 50%;*/
    z-index: 1001;
    /*max-height:700px;*/
}

.modal-content {
    /*max-height: 700px;*/
    overflow: auto;
    font-size: .7em;
}

.modal .close {
    background-color: #f6f6f6;
    border: 2px solid #f38900;
    border-radius: 50%;
    color: #f38900;
    display: block;
    padding: 0 6px;
    position: absolute;
    right: -.5em;
    text-decoration: none;
    top: -1.5em;
}

.modal img {
    height: auto !important;
    width: auto !important;
}


.SmsPopUpBoxStyle {
    width: 350px !important;
    max-height: 450px;
    font-size: 12px;
}


.form-control {
    font-family: "FontAwesome";
}

.SmsPopUpInnerStyle {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 30px;
}

.SmsPopUpBtn {
    width: 100%;
    background-color: orange;
    border: none;
}

section.header {
    background-color: #fff;
    box-shadow: 0 0 6px 0 #bbb;
    position: relative;
    z-index: 200;
}

    section.header .wrap {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
    }

    section.header .block-logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
        flex: 0 1 40%;
        max-width: 250px;
        padding: 7px 0;
        text-align: center;
    }

        section.header .block-logo img {
            max-width: 145px;
        }

    section.header .block-profile {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 60%;
        flex: 0 1 60%;
        font-family: "Lato", sans-serif;
        padding-right: 20px;
        text-align: right;
    }

        section.header .block-profile > div {
            display: inline-block;
        }

    section.header .notifications {
        position: relative;
    }

        section.header .notifications .icon {
            color: #035671;
            font-size: 2em;
        }

        section.header .notifications .count {
            background-color: #ea2b37;
            border-radius: 50%;
            color: #fff;
            font-size: .9em;
            padding: 1px 0;
            position: absolute;
            right: -7px;
            text-align: center;
            width: 14px;
        }

    section.header .profile {
        margin-left: 15px;
        position: relative;
    }

        section.header .profile a {
            color: #535353;
            text-decoration: none;
        }

        section.header .profile .menu {
            color: #535353;
            font-size: 1.3em;
            text-decoration: none;
        }

@media (min-width: 1000px) {
    section.header .profile .menu {
        font-size: 1.7em;
    }
}

section.header .profile .menu i {
    color: #035671;
}

section.header .profile ul {
    background-color: #fff;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    display: none;
    list-style: none;
    margin: 5px 0 0 0;
    padding: 10px 15px;
    position: absolute;
    right: -5px;
    width: 150px;
}

section.header .profile li {
    font-size: 1.4em;
    line-height: 2;
    text-align: left;
}

    section.header .profile li i {
        margin-right: 15px;
    }

.navigation {
    background-color: #fff;
    display: none;
    min-height: 100%;
    padding: 60px 10px 10px 10px;
    width: 250px;
    z-index: 1;
}

@media (min-width: 1000px) {
    .navigation {
        display: inline-block;
        padding-top: 30px;
    }
}

.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation a {
    border: 1px solid #bbbbbb;
    border-radius: 5px;
    color: #035671;
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 1.5em;
    line-height: 2.7;
    margin-bottom: 10px;
    padding: 0 15px;
    text-decoration: none;
}

    .navigation a i {
        color: #00bcc9;
        margin-right: 10px;
    }

    .navigation a:hover {
        background-color: #eeeeee;
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in;
    }

a.mobile {
    background-color: #ddd;
    border-radius: 3px;
    color: #888888;
    display: block;
    font-size: 2em;
    left: 10px;
    line-height: 0;
    padding: 10px;
    position: absolute;
    top: 10px;
    z-index: 100;
}

@media (min-width: 1000px) {
    a.mobile {
        display: none;
    }
}

.login .logo {
    display: block;
    margin: 0 auto 2em;
    max-width: 223px;
}

.login main {
    font-size: 1.6em;
    margin: 10% auto 5%;
    max-width: 400px;
}

    .login main > div {
        text-align: center;
    }

.login form {
    padding: 2em .5em;
}

    .login form div {
        font-size: .8em;
    }

        .login form div > * {
            display: inline-block;
        }

.login a.forgot {
    color: #00a9ca;
    float: right;
    text-decoration: none;
}

.login a.register {
    border: 1px solid #535353;
    border-radius: 5px;
    color: #535353;
    display: inline-block;
    font-weight: 600;
    line-height: 2.5em;
    margin: .5em 0;
    padding: 0 30px;
    text-decoration: none;
}

.register main {
    max-width: 700px;
}

.register form {
    background-color: #fff;
    font-size: 1.2em;
    text-align: center;
}

    .register form div {
        margin: 0 auto;
        max-width: 400px;
        text-align: left;
    }

        .register form div.response {
            text-align: center;
        }

.my-listings a.offers {
    font-size: .8em;
    position: relative;
}

    .my-listings a.offers span {
        background-color: #ea2b37;
        display: block;
        font-size: .8em;
        padding: 0 5px;
        position: absolute;
        right: 7px;
        top: -7px;
    }

.my-listings a.details {
    font-size: .8em;
}

.my-listings .response {
    font-size: 1.6em;
}

.detail {
    background-color: #eeeeee;
    border-radius: 0 0 5px 5px;
    line-height: 1.5;
}

    .detail .grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        padding: 10px;
    }

@media (min-width: 600px) {
    .detail .grid {
        padding: 10px 20px;
    }
}

.detail .grid > .item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    padding: 5px 0;
}

@media (min-width: 600px) {
    .detail .grid > .item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3%;
        flex: 0 0 33.3%;
    }
}

.detail .grid > .item strong {
    display: block;
}

@media (min-width: 600px) {
    .detail .grid > .item strong {
        display: inline;
    }
}

.detail .overview {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

@media (min-width: 600px) {
    .detail .overview {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
        flex: 0 0 44%;
        padding-right: 30px;
    }
}

.detail .alt {
    border-radius: 5px 5px 0 0;
}

    .detail .alt .specs {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

@media (min-width: 600px) {
    .detail .alt .specs {
        border-left: 1px solid #ddd;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
        flex: 0 0 55%;
    }
}

.detail .alt .specs .item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

    .detail .alt .specs .item img {
        display: inline-block;
        margin-right: 10px;
        max-width: 20px;
    }

.detail .item {
    font-size: 1.5em;
}

.detail .description {
    font-size: 1.5em;
    padding: 10px;
}

@media (min-width: 600px) {
    .detail .description {
        padding: 10px 20px;
    }
}

.change {
    text-align: center;
    font-size: 1.8em;
    padding: 1.5em 0;
}

    .change .cta {
        margin-bottom: 1em;
    }

@media (min-width: 600px) {
    .change .cta {
        display: inline-block;
        padding-right: 1em;
    }
}

.change a {
    font-size: .8em;
}

.ad-change main .btn, .ad-change main .contact, .ad-change main .my-listings a.offers, .my-listings .ad-change main a.offers, .ad-change main .my-listings a.details, .my-listings .ad-change main a.details, .ad-change main .change a, .change .ad-change main a {
    background-color: #ddd;
    border-radius: 5px;
    display: inline-block;
    color: #535353;
    font-size: 1.5em;
    margin-right: 15px;
    padding: 2px 10px;
    text-decoration: none;
}

    .ad-change main .btn:first-child, .ad-change main .contact:first-child, .ad-change main .my-listings a.offers:first-child, .my-listings .ad-change main a.offers:first-child, .ad-change main .my-listings a.details:first-child, .my-listings .ad-change main a.details:first-child, .ad-change main .change a:first-child, .change .ad-change main a:first-child {
        display: none;
    }

@media (min-width: 600px) {
    .ad-change main .btn:first-child, .ad-change main .contact:first-child, .ad-change main .my-listings a.offers:first-child, .my-listings .ad-change main a.offers:first-child, .ad-change main .my-listings a.details:first-child, .my-listings .ad-change main a.details:first-child, .ad-change main .change a:first-child, .change .ad-change main a:first-child {
        display: inline-block;
    }
}

.ad-change main {
    background-color: #eeeeee;
}

    .ad-change main > .row {
        -webkit-box-align: start;
        -ms-flex-align: start;
        -ms-grid-row-align: flex-start;
        align-items: flex-start;
        font-size: .7em;
    }

    .ad-change main p {
        font-size: 1.6em;
        line-height: 1.5;
        padding: 0 10px;
    }

    .ad-change main label {
        display: block;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .ad-change main .row {
        font-size: 1.5em;
    }

        .ad-change main .row.quarter {
            padding: 10px 0;
        }

    .ad-change main .center {
        text-align: center;
    }

.ad-change .title h2 {
    font-size: 1.9em !important;
}

.ad-change .buttons {
    font-size: 1em !important;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding: 0 10px 3px 0;
    text-align: right;
}

.ad-change .comments {
    margin-bottom: 40px;
}

    .ad-change .comments table {
        margin-bottom: 0px;
    }

.ad-change .i-footer {
    font-size: 10pt;
    font-style: italic;
    margin-left: 5px;
    margin-bottom: 30px;
}

.my-messages main {
    padding-left: 10px;
    padding-right: 10px;
}

@media (min-width: 1000px) {
    .my-messages main {
        padding-left: 30px;
        padding-right: 0;
    }
}

.my-messages main > .row {
    border-top: 1px solid #ddd;
    font-size: 1.3em;
    line-height: 1.5;
    padding: 10px;
    width: 100%;
}

    .my-messages main > .row:last-of-type {
        border-bottom: 1px solid #ddd;
    }

@media (min-width: 600px) {
    .my-messages main > .row {
        font-size: 1.6em;
    }
}

.my-messages .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
}

    .my-messages .row.read a, .my-messages .row.unread a {
        color: #535353;
        display: block;
        text-decoration: none;
    }

    .my-messages .row.previous {
        background-color: #fefefe !important;
    }

    .my-messages .row.read {
        background-color: #eeeeee;
    }

    .my-messages .row.unread {
        background-color: #fff;
        font-weight: 600;
    }

    .my-messages .row.ordering {
        background-color: #fff;
        font-weight: 600;
        color: #00a9ca;
    }

        .my-messages .row.ordering a {
            color: #00a9ca;
            display: block;
            text-decoration: none;
        }

.my-messages .head {
    background-color: #fff;
    margin-top: 2em;
}

    .my-messages .head a,
    .my-messages .head .select span {
        background-color: #ddd;
        border-radius: 5px;
        display: inline-block;
        color: #535353;
        font-size: 1.15em;
        padding: 5px 7px;
        text-decoration: none;
    }

    .my-messages .head .select {
        line-height: 1;
    }

    .my-messages .head .reload {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
        flex: 0 0 40px;
    }

        .my-messages .head .reload a {
            color: #00bcc9;
        }

    .my-messages .head .pager {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        font-size: .8em;
        text-align: right;
    }

        .my-messages .head .pager a {
            line-height: 1;
        }

    .my-messages .head .navigate {
        display: inline-block;
        margin-left: 1em;
    }

        .my-messages .head .navigate a {
            display: inline-block;
            font-size: 1.4em;
            padding: 5px 10px;
        }

        .my-messages .head .navigate .disabled {
            color: #bbb;
            cursor: default;
        }

        .my-messages .head .navigate .prev {
            border-radius: 5px 0 0 5px;
            margin-right: -3px;
        }

        .my-messages .head .navigate .next {
            border-left: 1px solid #bbb;
            border-radius: 0 5px 5px 0;
        }

.my-messages .select {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17.5px;
    flex: 0 0 17.5px;
}

@media (min-width: 600px) {
    .my-messages .select {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
        flex: 0 0 30px;
    }
}

.my-messages .direction {
    margin-top: 5px;
}

@media (min-width: 600px) {
    .my-messages .direction {
        display: inline-block;
        margin-top: 0;
    }
}

.my-messages .collapse {
    margin-top: 5px;
}

@media (min-width: 600px) {
    .my-messages .collapse {
        display: inline-block;
        margin-left: 0;
        margin-top: 0;
    }
}

.my-messages .collapse a {
    color: #d8d8d8;
    text-decoration: none;
}

    .my-messages .collapse a:hover {
        color: #535353;
    }

.my-messages .dek {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

    .my-messages .dek .row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .my-messages .dek .from {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    }

@media (min-width: 600px) {
    .my-messages .dek .from {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    }
}

.my-messages .dek .subject {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
}

@media (min-width: 600px) {
    .my-messages .dek .subject {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 65%;
        flex: 0 0 65%;
    }
}

.my-messages .dek .bodySummary {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    line-height: 1.3;
    margin-top: 5px;
}

@media (min-width: 600px) {
    .my-messages .dek .bodySummary {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        line-height: 1.5;
        margin-top: 0;
    }
}

.my-messages .datetime {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    text-align: right;
}

.my-messages .ordering .from {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
}

@media (min-width: 600px) {
    .my-messages .ordering .from {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    }
}

.my-messages .ordering .subject {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
}

@media (min-width: 600px) {
    .my-messages .ordering .subject {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 65%;
        flex: 0 0 65%;
    }
}

.my-messages .ordering .bodySummary {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    line-height: 1.3;
    margin-top: 5px;
}

@media (min-width: 600px) {
    .my-messages .ordering .bodySummary {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        line-height: 1.5;
        margin-top: 0;
    }
}

.my-messages .response {
    font-size: 1.6em;
    margin-top: 1em;
}

.message main {
    font-size: 1.6em;
}

    .message main .btn, .message main .contact, .message main .my-listings a.offers, .my-listings .message main a.offers, .message main .my-listings a.details, .my-listings .message main a.details, .message main .change a, .change .message main a {
        background-color: #ddd;
        border-radius: 5px;
        display: inline-block;
        color: #535353;
        font-size: 2em;
        margin-right: 15px;
        padding: 2px 10px;
        text-decoration: none;
    }

        .message main .btn:first-child, .message main .contact:first-child, .message main .my-listings a.offers:first-child, .my-listings .message main a.offers:first-child, .message main .my-listings a.details:first-child, .my-listings .message main a.details:first-child, .message main .change a:first-child, .change .message main a:first-child {
            display: none;
        }

@media (min-width: 600px) {
    .message main .btn:first-child, .message main .contact:first-child, .message main .my-listings a.offers:first-child, .my-listings .message main a.offers:first-child, .message main .my-listings a.details:first-child, .my-listings .message main a.details:first-child, .message main .change a:first-child, .change .message main a:first-child {
        display: inline-block;
    }
}

.message main .contact {
    background-color: #00bcc9;
    color: #fff;
    font-size: 1.5em;
    margin: 0;
    padding: 4px 20px;
}

    .message main .contact i {
        font-size: 1em;
    }

@media (min-width: 600px) {
    .message main .contact i {
        margin: 0 0 0 10px;
    }
}

.message main > .row {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -ms-grid-row-align: flex-start;
    align-items: flex-start;
    font-size: .7em;
}

.message main .alt {
    border-radius: 5px;
    padding: 15px;
}

.message .title {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

    .message .title span {
        display: none;
    }

@media (min-width: 600px) {
    .message .title span {
        display: inline-block;
        margin-right: .35em;
    }
}

.message .buttons {
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    padding: 0 10px 3px 0;
    text-align: right;
}

.message .response {
    font-size: 1em;
    margin-top: 0;
}

.message .send-message {
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.message-details main > .row {
    border-top: 0;
    font-size: 1em;
    padding: 0;
}

    .message-details main > .row:first-of-type {
        margin-top: 0;
    }

.message-details .send-message {
    -ms-flex-item-align: end;
    align-self: flex-end;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.message-details a.contact {
    color: #fff;
    margin: 5px 0 15px 0;
    padding: 10px 20px;
}

.message-details .alt {
    font-size: 1.6em;
    padding: 2em 1em;
}

.message-details .header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

    .message-details .header .btn, .message-details .header .contact, .message-details .header .my-listings a.offers, .my-listings .message-details .header a.offers, .message-details .header .my-listings a.details, .my-listings .message-details .header a.details, .message-details .header .change a, .change .message-details .header a {
        font-size: 1.1em;
    }

    .message-details .header .return {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30px;
        flex: 0 0 30px;
    }

    .message-details .header .datetime {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
        flex: 1 0 auto;
        padding: 0 1em;
        text-align: right;
    }

        .message-details .header .datetime span {
            display: none;
        }

@media (min-width: 600px) {
    .message-details .header .datetime span {
        display: inline-block;
    }
}

.message-details .header .star {
    background-color: #fff;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45px;
    flex: 0 0 45px;
    padding-right: 1em;
}

.message-details .header .reply {
    -ms-flex-line-pack: end;
    align-content: flex-end;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
}

    .message-details .header .reply .btn:first-child, .message-details .header .reply .contact:first-child, .message-details .header .reply .my-listings a.offers:first-child, .my-listings .message-details .header .reply a.offers:first-child, .message-details .header .reply .my-listings a.details:first-child, .my-listings .message-details .header .reply a.details:first-child, .message-details .header .reply .change a:first-child, .change .message-details .header .reply a:first-child {
        border-radius: 5px 0 0 5px;
    }

    .message-details .header .reply .btn:last-child, .message-details .header .reply .contact:last-child, .message-details .header .reply .my-listings a.offers:last-child, .my-listings .message-details .header .reply a.offers:last-child, .message-details .header .reply .my-listings a.details:last-child, .my-listings .message-details .header .reply a.details:last-child, .message-details .header .reply .change a:last-child, .change .message-details .header .reply a:last-child {
        border-left: 1px solid #535353;
        border-radius: 0 5px 5px 0;
    }

.message-details .btn, .message-details .contact, .message-details .my-listings a.offers, .my-listings .message-details a.offers, .message-details .my-listings a.details, .my-listings .message-details a.details, .message-details .change a, .change .message-details a {
    background-color: #ddd;
    border-radius: 5px;
    display: inline-block;
    color: #535353;
    padding: 5px 10px;
    position: relative;
    text-decoration: none;
}

    .message-details .btn .drop, .message-details .contact .drop, .message-details .my-listings a.offers .drop, .my-listings .message-details a.offers .drop, .message-details .my-listings a.details .drop, .my-listings .message-details a.details .drop, .message-details .change a .drop, .change .message-details a .drop {
        background: #ddd;
        border-radius: 5px 0 5px 5px;
        display: none;
        position: absolute;
        right: 0;
        padding: .5em 0;
        width: 120px;
    }

        .message-details .btn .drop a, .message-details .contact .drop a, .message-details .my-listings a.offers .drop a, .my-listings .message-details a.offers .drop a, .message-details .my-listings a.details .drop a, .my-listings .message-details a.details .drop a, .message-details .change a .drop a, .change .message-details a .drop a {
            color: #535353;
            display: block;
            font-size: .9em;
            padding: .25em .75em;
            text-decoration: none;
        }

.message-details .meta {
    margin: 1em 0;
}

    .message-details .meta span {
        display: none;
    }

@media (min-width: 600px) {
    .message-details .meta span {
        display: inline-block;
    }
}

.message-details .message-subject {
    font-weight: 600;
}

.message-details .message-body img {
    height: auto !important;
    width: auto !important;
}

.message-details .response {
    font-size: 1.6em;
    margin-bottom: 1em;
}

.my-profile .response {
    font-size: 1.6em;
    margin: 1em;
}

.my-profile .row {
    font-size: 1.4em;
    margin: .5em 1em;
}

    .my-profile .row:first-of-type {
        margin-top: 2em;
    }

html.site-activity {
    height: 100%;
}

body.site-activity {
    height: 100%;
}

    body.site-activity .content {
        height: 100%;
    }

        body.site-activity .content .wrap {
            height: 100%;
        }

            body.site-activity .content .wrap main {
                padding: 0px;
                height: 100%;
            }

    body.site-activity iframe {
        border: 0;
        height: 100%;
    }

        body.site-activity iframe.desktop {
            overflow: hidden;
            width: 1020px;
        }

@media (max-width: 480px) {
    body.site-activity iframe.desktop {
        display: none;
    }
}

@media (min-width: 600px) {
    body.site-activity iframe.desktop {
        display: block;
    }
}

body.site-activity iframe.mobile {
    width: 100%;
}

@media (max-width: 480px) {
    body.site-activity iframe.mobile {
        display: block;
    }
}

@media (min-width: 600px) {
    body.site-activity iframe.mobile {
        display: none;
    }
}

.content .navigation a.active {
    background-color: #eeeeee;
}

/********DATE TIME PICKER FOR REQUEST *******/
.ad-change .ui-datepicker {
    width: 29em;
}

.ui-datepicker table.ui-datepicker-calendar {
    margin: 0;
}

table.ui-datepicker-calendar td:first-child, table.ui-datepicker-calendar td:last-child {
    padding: 0;
}

.ui-datepicker .ui-datepicker-title, table.ui-datepicker-calendar th, table.ui-datepicker-calendar td a {
    font-size: 1.6em;
    padding: 5px;
}
/********FORGOT PASSWORD DIALOG*******/
.md-button.md-default-theme:not([disabled]):hover, .md-button:not([disabled]):hover {
    background-color: transparent;
}

md-dialog.md-transition-in, md-dialog.md-transition-out {
    border: 1px solid #a4bc8b;
    background-color: #e3eadc;
    color: #647e49;
    width: 380px;
    font-size: 1.4em;
}

md-dialog .md-dialog-content {
    padding-bottom: 10px;
    font-family: "Open Sans", sans-serif;
}

md-dialog md-dialog-content h2.md-title {
    font-size: 1.6em;
    font-weight: 600;
    color: #647e49;
    border-left: none;
    text-align: center;
    width: 100%;
    margin: 0;
}

md-dialog md-dialog-content p {
    text-align: center;
    font-weight: 500;
    font-size: 1.2em;
}

md-dialog md-dialog-actions .md-button:first-child {
    display: none;
}

md-dialog md-dialog-actions {
    width: 100%;
    justify-content: center;
}

md-dialog button {
    background: #035671 !important;
    margin-bottom: 10px;
}

md-dialog md-dialog-actions .md-button.md-default-theme:not([disabled]):hover {
    background: #035671;
}

md-dialog md-dialog-actions .md-button span {
    color: #fff;
    font-weight: 600;
}

.ktooltip {
    height: auto;
    max-width: 250px;
    text-align: justify;
    font-size: 1.2em;
    padding: 5px;
}

div.k-window {
    border-radius: 5px;
}

    div.k-window h3 {
        font-size: 2.6em;
    }

    div.k-window p {
        font-size: 1.6em;
    }

    div.k-window .kbutton {
        text-align: center;
        display: inline-block;
        width: 100%;
    }

    div.k-window .btnSubmit {
        background: #035671;
        border: none;
        padding: 5px 20px;
        color: #fff;
        font-size: 1.2em;
    }

#offerDetailsModal {
    margin: 0;
    padding: 0;
    /*width: 100%;*/
    border-radius: 5px;
    overflow: visible;
    max-width: 600px;
}

.k-window {
    top: 50% !important;
    left: 40% !important;
}

@media (max-width: 480px) {
    .k-window {
        top: 30% !important;
        left: 5px !important;
        max-width: 320px;
    }

    #offerDetailsModal {
        max-width: 320px;
    }

    table {
        margin: 0;
    }
}

@media (min-width: 600px) {
    .k-window {
        top: 50% !important;
        left: 40% !important;
    }
}

.my-messages .childUnread.row {
    background: #d9f1d5;
}


.borderRadiusTop {
    border-radius: 0px 5px 0 0 !important;
}

.borderRadius0 {
    border-radius: 0 !important;
}

.paddingtop0 {
    padding-top: 0 !important;
}

.paddingbottom0 {
    padding-bottom: 0 !important;
}

.address .map {
    width: 30px;
    float: left;
    margin-top: 6px;
}

.address b {
    color: #29849a;
}

.address .address1 {
}

.address .address2 {
}

.ad-value {
    color: #535353;
}

.header h4 {
    margin: 0;
}

.header .price-label {
    width: 100%;
}

.carousel-item {
    width: 300px;
    height: 205px;
    margin: 0 auto;
    text-align: left;
}

.photos {
    width: 700px;
    margin: 0 auto;
    text-align: left;
    min-height: 240px;
}

    .photos img {
        width: auto !important;
    }


.first-header {
    padding-left:20px;
    text-align:left;
}

.register .alert-message-body {
    width:400px;
}

.register .k-window {
    right: 0 !important;
    left: 0 !important;
    margin: auto !important;
    width: 420px !important;
}
.kbutton a {
    background-color: #647e49;
    color: #e3eadc;
}

    .kbutton a:hover {
        background-color: #647e49;
        color: #e3eadc;
    }

.reset-password .alert-message-body {
    width: 420px;
    text-align: center;
}

.reset-password .alert-text {
    font-size:1.2em;
}

.previous .child-message {
    margin-right: 30px !important;
}

.previous .child-subject {
    margin-left: -20px !important;
}

.mark-all-as-read {
    background-color: #00bcc9 !important;       
}

.mark-selected-as-read {
    background-color: #035671 !important;    
}

.messages-buttons {
    font-size: 13px !important;
    font-family: Lato, sans-serif !important;
    border-radius: 5px !important;
    color: white !important ;
}

.message-head > div {
    width: 33%;
}
.limit-message {
    font-size: 11px;
    color: #035671;
    float: right;
}

.exceeded {    
    color: red;
}

.password-container {
    width: 400px;
    position: relative;
}

.fa-eye {
    position: absolute;
    top: 18%;
    right: 4%;
    cursor: pointer;
    color: lightgray;
}

.fa-eye-login {
    position: absolute;
    top: 55%;
    right: 4%;
    cursor: pointer;
    color: lightgray;
}



