﻿#memberpanel-tabs {
    border: none;
    background: #fff;
    display: none;
}

.hide {
    display: none;
}

.ui-widget-header {
    background: none;
    border: none;
}

.ui-tabs .ui-tabs-nav li {
    margin: 0 10px 0 -2px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    background: #e4edf0;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
    background: #fff;
}


.ui-tabs .ui-tabs-panel {
    border: solid 1px #ddd;
    padding: 5px 15px;
    display: block;
    max-width: 100%;
}


@media (max-width: 900px) {
    .ui-tabs .ui-tabs-nav li {
        margin: 0;
        width: 25%;
    }
}

@media (max-width: 780px) {
    .ui-tabs .ui-tabs-nav li {
        margin: 0;
        width: 33%;
    }
}

@media (max-width: 600px) {
    .ui-tabs .ui-tabs-nav li {
        margin: 0;
        width: 50%;
    }
}


@media (max-width: 480px) {
    .ui-tabs .ui-tabs-nav li {
        margin: 0;
        width: 100%;
    }
}

.panel-heading {
    color: #fff;
    background-color: #232627;
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0 0 10px 0;
}

/*************** DASHBOARD ***********/
.widget-box {
    margin: 12px 0;
    padding: 15px;
    border-radius: 5px;
    min-height: 100px;
}

    .widget-box i.fas {
        font-size: 30px;
        text-align: center;
        color: #ffffff;
    }

.widget-content {
    font-weight: bold;
    padding-top: 5px;
    font-size: 16px;
    padding-left: 20px;
    color: #fff;
}

.yellowbox-bg {
    background: linear-gradient(to right, #fe9365, #feb798);
}

.greenbox-bg {
    background: linear-gradient(to right, #0ac282, #0df3a3);
}

.pinkbox-bg {
    background: linear-gradient(to right, #fe5d70, #fe909d);
}

.bluebox-bg {
    background: linear-gradient(to right, #01a9ac, #01dbdf);
}



/*************** FORM FIELD TEMPLATE ***********/
.row-fluid [class*="span"] {
    width: auto;
}

#field-list-pane, #available-field-pane {
    float: right;
    width: 60%;
    border: solid 1px #d4cbc8;
    padding: 10px;
    height: 500px;
    margin-bottom: 20px;
    overflow-x: hidden;
    overflow-y: auto;
}

#available-field-pane {
    float: left;
    width: 35%;
}

.note, .video-note {
    background: #fcfcd9;
    padding: 10px;
    margin: 10px 0;
}

.field-item {
    margin-bottom: 2px;
    border: solid 1px #9a9ca0;
    background: #cfdcf7;
    border-radius: 5px;
    padding: 5px;
}

    .field-item:hover {
        background: #1989d1;
        color: #fff;
    }

    .field-item[data-required="true"] {
        background: #950b0b;
        color: #fff;
    }

.span-add-item, .span-remove-item, .span-edit-item, .span-list-item {
    cursor: pointer;
    margin-left: 5px;
    margin-right: 10px;
}

.row-fluid .span-remove-item {
    float: right;
}

.row-fluid .icon-button {
    float: none;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
}

select.form-control {
    padding: 0px 10px;
}

#edit-form-fields {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 700px;
    margin-top: -350px;
    margin-left: -400px;
    background: #fff;
    padding: 10px;
    z-index: 10001;
}

table.tbl-categories {
    border-left: solid 1px #ccc;
    border-top: solid 1px #ccc;
}

    table.tbl-categories tr td {
        padding: 5px 10px;
        border-right: solid 1px #ccc;
        border-bottom: solid 1px #ccc;
    }

.category-delete-link {
    cursor: pointer;
}

.category-delete-link {
    cursor: pointer;
}

.tbl-category-multi {
    border: solid 1px #ccc;
    margin-bottom: 10px;
}

.panel-steps {
    margin-bottom: 20px;
    padding: 10px;
    width: 100%;
    margin-top: 25px;
    border-radius: 5px;
    position: relative;
}

    .panel-steps:after {
        /* CSS for creating horizontal line*/
        content: '';
        position: absolute;
        width: 100%;
        height: 4px;
        background-color: #ddd;
        top: 45px;
        left: 0;
    }

.box-step, .box-step-third {
    width: 22%;
    margin-right: 2%;
    float: left;
    text-align: center;
}

.box-step-third {
    width:31%
}

.ball-step, .ball-step-current {
    display: inline-block;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #3191E7;
    box-shadow: inset -25px -15px 40px rgba(0,0,0,.3);
    background-image: linear-gradient(-45deg, rgba(255,255,220,.3) 0%, transparent 100%);
    text-align: center;
    color: #ffffff;
    font-size: 2em;
    line-height: 55px;
    font-weight: bold;
    margin-top: 10px;
    position: relative;
    z-index: 10;
}

.ball-step-current {
    background-color: #AC1222;
}

.step-label {
    font-weight: bold;
    font-size: 16px;
    color: #3F3E43;
    margin-top: 15px;
}

/******************** MISC ****************/
.header-title, .row-title {
    color: #fff;
    background-color: #234466;
    border-color: #000;
    padding: 12px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 10px;
}

.row-title {
    background: #63645a;
    padding: 10px 20px;
    font-size: 16px;
}

.tokens-box {
    background: #f4f4f2;
    border: solid 1px #e1e0da;
    margin: 10px 0;
    padding: 15px;
}

.tokens-value {
    background: #fbf6cc;
    padding: 15px;
    border: solid 1px #61605b;
}

.m-bot20 {
    margin-bottom: 20px;
}

.m-left10 {
    margin-left: 10px;
}

.clearboth {
    clear: both;
}

.box-info {
    margin: 15px 0;
    border: solid 1px #e1e1de;
    background: #fef1f7;
    border-radius: 5px;
    padding: 15px 40px;
    display: inline-block;
}
/******************* REJECT BOX ******************/
.reject-box {
    padding: 5px;
    background: #d01818;
    margin-bottom: 20px;
}

.check-note {
    padding: 10px;
    color: #fff;
}

/******************* GRID ******************/
.grid-data {
    padding: 15px 5px;
    border: solid 1px #ccc;
    border-radius: 5px;
    min-height: 150px;
    position: relative;
}

.form-data {
    min-height: 200px;
    position: relative;
}

.transparency-bg {
    background: #b6b2ad;
    opacity: 0.8;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    position: absolute;
}

.loading-message {
    position: absolute;
    line-height: 30px;
    min-width: 200px;
    min-height: 30px;
    text-align: center;
    border: solid 1px #787571;
    left: 50%;
    bottom: 50%;
    margin-left: -100px;
    margin-top: -15px;
    background: #fdf576;
    border-radius: 5px;
    z-index: 99999;
    padding: 10px;
}

.image-loading {
    margin-right: 5px;
}

table.table-grid {
    border-left: solid 1px #d9d7d4;
    border-top: solid 1px #d9d7d4;
    width: 100%;
}

    table.table-grid td {
        border-right: solid 1px #d9d7d4;
        border-bottom: solid 1px #d9d7d4;
        padding: 8px;
        line-height: 1.42857143;
        vertical-align: top;
    }

    table.table-grid tr:nth-child(even) {
        background: #e6eff5;
    }

.grid-top-buttons {
    text-align: right;
    float: right;
}

    .grid-top-buttons span.glyphicon {
        cursor: pointer;
    }

.grid-header {
    background: #312f2d;
    color: #fff;
    text-transform: uppercase;
}

.refresh-button, .cursor {
    cursor: pointer;
}

.fullscreen {
    position: fixed;
    z-index: 100000;
    width: 99.5%;
    height: 99.5%;
    left: 0;
    top: 0;
    background: #fff;
    padding: 15px;
    box-sizing: border-box;
}

.grid-delete-link, .grid-edit-link, .grid-view-link, .grid-review-link, .grid-configure-link, .grid-approve-link, .coupon-delete-link, .youtube-delete-link, .pending-request-link, .upgrade-link, .awaiting-payment-link {
    cursor: pointer;
    margin-right: 20px;
}


.pending-request-link, .resubmit-link, .pending-resubmit-link, .upgrade-link, .reject-status-link, .awaiting-payment-link {
    border-radius: 5px;
    background: #8d330b;
    color: #fff;
    margin: 8px 5px;
    padding: 5px 10px;
    display: inline-block;
}

    .pending-request-link i, .resubmit-link i, .pending-resubmit-link i, .upgrade-link i, .reject-status-link i, .awaiting-payment-link i {
        margin-right: 5px;
    }

.resubmit-link {
    background: #faf97d;
    color: #000000;
    cursor: pointer;
}

.reject-status-link {
    cursor: pointer;
}

.upgrade-link {
    background: #19a0df;
    color: #fff;
}

.awaiting-payment-link {
    background: #dd466a;
}

.m-top5 {
    margin-top: 5px;
}

.records-found {
    text-align: right;
    padding: 5px 0;
    font-size: 12px;
    font-style: italic;
    margin-right: 15px;
    display: inline-block;
}

ul.ul-property-features, ul.ul-property-features li {
    margin: 0;
    padding: 0;
    list-style: none;
}

    ul.ul-property-features li {
        float: left;
        margin: 5px 10px;
        max-width: 200px;
        min-width: 200px;
    }

        ul.ul-property-features li input[type=checkbox] {
            margin-right: 5px;
        }

#div-row-AUCTIONDATE, #tr-row-AUCTIONDATE {
    display: none;
}

.width-30 {
    width: 30%;
}

.grid-listing-title {
    font-size: 16px;
    margin-bottom: 8px;
    color: #61615c;
    font-weight: bold;
}

.grid-item-info {
    background: #faa448;
    color: #fff;
    padding: 3px;
    border-radius: 5px;
    width: 120px;
    margin-bottom: 3px;
    display: inline-block;
}

/*************** COUPONS ***********/
ul.ul-coupons, ul.ul-coupons li {
    margin: 0;
    padding: 0;
    list-style: none;
}

    ul.ul-coupons li {
    }

.coupon-box {
    border-radius: 5px;
    border: solid 1px #ddd;
    padding: 15px;
    background: #f4fbd8;
    margin-bottom: 20px;
}

.coupon-code {
    padding: 10px;
    font-weight: bold;
    font-size: 13px;
    background: #b0e8fd;
    border: dashed 3px #c6c8c9;
    margin-bottom: 10px;
    display: inline-block;
}

.coupon-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.coupon-description {
    margin-bottom: 10px;
}
/*************** END COUPONS ***********/

/*************** YOUTUBES ***********/
ul.ul-youtubes, ul.ul-youtubes li {
    margin: 0;
    padding: 0;
    list-style: none;
}

    ul.ul-youtubes li {
    }

.youtube-box {
    margin: 0;
    padding: 0;
    padding: 15px;
    margin-bottom: 20px;
}

.youtube-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.youtube-description {
    margin-bottom: 10px;
}
/*************** END COUPONS ***********/

/*************** CLASSIFIED PACKAGES ***********/
.package-box {
    border: solid 1px #abbabf;
    border-radius: 5px;
    background: #e4f4f9;
    margin: 15px 0;
    padding: 15px;
}

.package-title {
    font-weight: bold;
    font-size: 18px;
    color: #32464c;
}

.pricingTable {
    text-align: center;
    transition: all 0.5s ease 0s;
    border: solid 1px #feeded;
    margin:15px 0;
}

    .pricingTable:hover {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .pricingTable .pricingTable-header {
        color: #feffff;
    }

    .pricingTable .heading {
        display: block;
        padding-top: 25px;
    }

        .pricingTable .heading .price-name {
            font-size: 20px;
            margin: 0;
            text-transform: capitalize;
        }

    .pricingTable .subtitle {
        display: block;
        font-size: 13px;
        margin-top: 5px;
        text-transform: capitalize;
    }

    .pricingTable .price-value {
        display: block;
        font-size: 24px;
        font-weight: 700;
        padding-bottom: 25px;
        margin-top: 10px;
    }

        .pricingTable .price-value span {
            display: block;
            font-size: 14px;
            line-height: 20px;
            text-transform: uppercase;
        }

    .pricingTable .pricingContent {
        text-transform: capitalize;
        background: #fbfbfb;
        padding:15px;
    }

        .pricingTable .pricingContent ul {
            list-style: none;
            padding: 15px 20px 10px;
            margin: 0;
            text-align: left;
        }

            .pricingTable .pricingContent ul li {
                font-size: 14px;
                padding: 12px 0;
                border-bottom: 1px dashed #e1e1e1;
                color: #9da1ad;
            }

                .pricingTable .pricingContent ul li i {
                    font-size: 14px;
                    float: right;
                }

    .pricingTable .pricingTable-sign-up {
        padding: 20px 0;
        background: #fbfbfb;
        color: #fff;
        text-transform: capitalize;
    }

    .pricingTable .btn-block {
        width: 60%;
        margin: 0 auto;
        font-size: 17px;
        color: #fff;
        text-transform: capitalize;
        border: none;
        border-radius: 5px;
        padding: 10px;
        transition: all 0.5s ease 0s;
    }


    .pricingTable.blue .pricingTable-header,
    .pricingTable.blue .btn-block {
        background: #727cb6;
    }

    .pricingTable.pink .pricingTable-header,
    .pricingTable.pink .btn-block {
        background: #ed687c;
    }

    .pricingTable.orange .pricingTable-header,
    .pricingTable.orange .btn-block {
        background: #e67e22;
    }

    .pricingTable.green .pricingTable-header,
    .pricingTable.green .btn-block {
        background: #008b8b;
    }

        .pricingTable.blue .btn-block:hover,
        .pricingTable.pink .btn-block:hover,
        .pricingTable.orange .btn-block:hover,
        .pricingTable.green .btn-block:hover {
            background: #e6e6e6;
            color: #939393;
        }

@media screen and (max-width: 990px) {
    .pricingTable {
        margin-bottom: 20px;
    }
}
/*************** END CLASSIFIED PACKAGES ***********/

/*************** MESSAGES, JOB APPLICANTS ***********/
.box {
    border: solid 1px #abbabf;
    border-radius: 5px;
    padding: 15px;
}

/*************** END MESSAGES, JOB APPLICANTS ***********/

/*************** FAVOURITES ***********/
.fav-item {
    padding: 10px;
    margin-bottom: 10px;
    border-bottom: solid 1px #e3dbe2;
}

.fav-image {
    float: left;
}

    .fav-image img {
        width: 80px;
        margin-right: 20px;
    }

.fav-info {
    float: left;
}

.fav-title {
    font-size: 16px;
    font-weight: bold;
}

.fav-desc {
    font-size: 12px;
}

.fav-control {
    clear: both;
    padding-top: 10px;
}

.fav-delete, .fav-delete:hover {
    cursor: pointer;
    font-size: 14px;
}
/*************** END FAVOURITES ***********/

/************** OVERWRITE DNN DEFAULT SKIN ******/
button, input, select, textarea {
    margin: 0;
    font-size: 100%;
    vertical-align: auto;
}

    input[type="text"], select, textarea, input[type="email"], input[type="search"], input[type="password"] {
        margin-bottom: 0;
    }

    input[type=file].form-control {
        max-width: 300px;
        border: none;
    }
