/*
Created by: Jyostna Designs

[TABLE OF CONTENTS]

1.  RESET STYLES
2.  HEADER STYLES
    2.1 HEADER LEFT
    2.2 HEADER RIGHT SIDE DROPDOWNS
3. LEFT SIDE BAR
4. MAIN WRAPPER STYLES
5. LEFT MENU COLLAPSE STYLES
6. CUSTOM STYLES
7. MEDIA QUERIES

*/
/*****  1.RESET STYLES  *****/


/******  2.HEADER STYLES   ******/
#form > .header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

    #form > .header .navbar {
        margin-bottom: 0;
        background-color: #f6f6f6;
        border-width: 0;
    }

        #form > .header .navbar .nav > li > a > .label {
            border-radius: 50%;
            position: absolute;
            top: 16px;
            right: 14px;
            font-size: 8px;
            font-weight: normal;
            width: 13px;
            height: 13px;
            line-height: 1.0em;
            text-align: center;
            padding: 2px;
        }

        #form > .header .navbar .nav > li > a:hover > .label {
            top: 12px;
        }

    #form > .header .logo {
        display: block;
        float: left;
        height: 59px;
        line-height: 50px;
        padding: 3px 10px;
        text-align: center;
        width: 240px;
        background-color: #f6f6f6;
    }

/* Define 2 column template */
.right-aside,
.left-aside {
    padding: 0;
    display: table-cell;
}

.wrapper.hide_menu > .left-aside {
    display: none;
}

@media (max-width: 992px) {
    .wrapper > .right-aside {
        width: 90vw;
        min-width: 90vw;
    }
}

@media (max-width: 767px) {
    .wrapper > .right-aside {
        width: 100vw;
        min-width: 100vw;
    }
}

/******* 2.1 HEADER LEFT ******/
/*side bar nav */
.sidebar {
    display: block;
    width: 240px !important;
    float: none !important;
    padding: 0px !important;
}

.content {
    display: block;
    width: auto;
    overflow-x: hidden;
    padding: 0 15px;
}

/* left side profile css */
.nav_profile .profile-left {
    padding: 7px 15px 9px 15px;
    min-height: 85px;
    border-bottom: 1px solid #EEE;
}

    .nav_profile .profile-left .profile-thumb {
        border-radius: 50px;
        display: inline-block;
        padding-top: 8px;
    }

    .nav_profile .profile-left .media-heading {
        margin-top: 20px;
        font-weight: 600;
        font-size: 16px;
        color: #2E576B;
    }

    .nav_profile .profile-left .profile-thumb img {
        width: 54px;
    }

/******* 2.2 HEADER RIGHT SIDE DROPDOWNS  *****/
/*
   Dropdown menus
----------------------------
*/
.dropdown-menu {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    z-index: 2300;
}

/*
   Navbar custom dropdown menu
------------------------------------
*/
.navbar .navbar-right > .nav {
    margin-right: 15px;
}

.navbar-nav > .notifications-menu > .dropdown-menu {
    width: 320px;
    padding: 0;
    border: 1px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.navbar-nav > .user-menu > .dropdown-menu {
    padding: 0;
    margin-top: 1px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border: 0;
}

.navbar .nav a {
    color: #555;
}

.navbar-right {
    margin-right: 0;
}

.navbar .navbar-right {
    float: right;
}

.navbar-right .nav > li > a {
    padding: 13px 15px 14px 15px;
}

.navbar-right .nav > li.notifications-menu > a {
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-right .nav > li > a img {
    width: 35px;
    height: 35px;
    border: 1px solid #e1e1e1;
}

.navbar-right .nav > li > a:hover,
.navbar-right .nav > li > a:focus {
    background-color: #f6f6f6;
}

.navbar-nav > .user-menu .user-name {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 15px;
    font-weight: 600;
    color: #2283bf;
}

.navbar-nav > .user-menu > .dropdown-menu > li a {
    font-size: 14px;
    padding: 7px 17px;
}

    .navbar-nav > .user-menu > .dropdown-menu > li a i {
        color: #888;
    }

/* Add fade animation to dropdown menus */
.navbar-right .open > .dropdown-menu {
    animation-name: fadeAnimation;
    animation-duration: 1.2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    -webkit-animation-name: fadeAnimation;
    -webkit-animation-duration: 1.2s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-name: fadeAnimation;
    -moz-animation-duration: 1.2s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease;
    -moz-animation-fill-mode: forwards;
    overflow: hidden;
}

@keyframes fadeAnimation {
    from {
        max-height: 0;
    }

    to {
        max-height: 500px;
    }
}

.dropdown-menu .menu i {
    display: inline-block;
    margin: 4px 12px;
    float: left;
    padding: 10px 30px 30px 10px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #E2E2E2;
}

.dropdown-menu .menu a {
    line-height: 42px;
}

    .dropdown-menu .menu a .clearfix {
        color: #FFF;
        line-height: 31px;
    }

.notifications-menu .notification .notif-image {
    display: block;
    float: left;
    height: 45px;
    margin-right: 15px;
    margin-top: 8px;
    text-align: center;
}

.notifications-menu .notification .notif-body {
    padding: 0 32px;
}

li.dropdown-footer {
    padding: 10px 10px 10px 17px;
    background: #F5F5F5;
    border-top: 1px solid #ccc;
}

    li.dropdown-footer a {
        font-size: 15px;
        padding: 0;
    }

.dropdown-menu .notification:hover {
    background: #efefef;
}

.dropdown-menu:after {
    border-color: transparent;
    bottom: 100%;
    content: " ";
    height: 0;
    margin-left: -10px;
    pointer-events: none;
    position: absolute;
    right: 10px;
    width: 0;
}

.navbar-right .nav .open > a:hover > i,
.navbar-right .nav .open > a:focus > i,
.navbar-right .nav > li > a:hover > i,
.navbar-right .nav > li > a:focus > i {
    color: #555;
}

.riot {
    padding: 5px 0 5px 40px;
}

.user-menu a:hover > .riot {
    color: #555;
}

.riot .caret {
    margin-top: 0;
}

.navbar-nav > .user-menu > .dropdown-menu:after {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: transparent;
}

.navbar-right .nav > li > a .black {
    padding-top: 5px;
    color: #666;
    font-size: 21px;
}

.dropdown-notifications {
    min-width: 320px;
}

    .dropdown-notifications > li {
        border-bottom: 1px solid #F5F5F5;
    }

        .dropdown-notifications > li > .notification {
            line-height: 20px;
            white-space: normal;
            font-size: 12px;
            padding: 5px 15px;
        }

        .dropdown-notifications > li:last-child {
            border-bottom: none;
        }

.dropdown-notifications {
    min-width: 260px;
}

.msg-lable {
    float: right;
    margin-top: -19px;
}

.striped-col {
    background-color: #F9F9F9;
}

/**** END HEADER RIGHT SIDE DROPDOWNS ****/
/****** 3.LEFT SIDEBAR ******/
.left-aside {
    width: 240px;
    background: #FFF;
    border-right: 5px solid #EEE;
}

li.active a,
a:hover,
a {
    text-decoration: none !important;
}

.content-header h1 {
    font-size: 20px;
    line-height: 1.5;
}

.badge {
    background-color: #66CC99;
    font-weight: 400;
    float: right;
}

.sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#menu li.active > a {
    padding: 11px 20px 11px 17px;
    background: #f8f8f8;
    color: #2283bf;
    border-left: 3px solid #2283bf;
    transition: none;
}

#menu li > a {
    border-right: 5px solid #EEE;
}

#menu .profile-left li > a:hover {
    color: #0A1414;
}

#menu li > a:hover {
    color: #2283bf;
}

#menu li.active > a i {
    color: #2283bf;
}

#menu .menu-dropdown > ul > li > a {
    padding-left: 37px;
}

#menu .menu-dropdown > ul > li.active > a {
    padding-left: 34px;
}

#menu .menu-dropdown > ul,
#menu .menu-dropdown-open-ul {
    background: #FFF;
}

#menu .navigation .menu-icon {
    display: inline-block;
    margin-right: 5px;
    line-height: 20px;
    height: 20px;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

#menu .navigation {
    padding: 0 0 15px 0;
}

    #menu .navigation a {
        text-align: left;
        color: #666;
        position: relative;
        display: block;
        font-size: 16px;
        line-height: 20px;
        padding: 11px 20px;
        transition: none;
    }

        #menu .navigation a i {
            color: #888;
        }

#menu .fa.arrow:before {
    content: "\f105";
}

#menu .active > a > .fa.arrow:before {
    content: "\f107";
}

/******* END LEFT SIDEBAR *****/
/********* 4. MAIN WRAPPER STYLES *********/
.wrapper:before,
.wrapper:after {
    display: table;
    content: " ";
}

.wrapper:after {
    clear: both;
}

.wrapper {
    display: table;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
}

/****** wrapper RIGHT SIDE  *******/
.right-aside {
    padding: 0 10px 10px 10px;
    width: 100%;
    max-width: 100%;
}

    .right-aside > .content-header > h1 {
        margin: 2px;
        padding-left: 13px;
        padding-top: 18px;
    }

    .right-aside > .content-header {
        margin: -2px -10px 25px -10px;
        height: 65px;
        background: #FFF;
        box-shadow: 0 0 18px #E5E5E5;
    }

.view-port-height {
    height: 100vh;
}

/********* END MAIN WRAPPER STYLES *********/
/********* 5. LEFT MENU COLLAPSE STYLES *********/
#form > .header .navbar .sidebar-toggle {
    float: left;
    color: #666;
    font-size: 23px;
    font-weight: bold;
}

    #form > .header .navbar .sidebar-toggle:hover > i {
        color: #555;
    }

/********* END LEFT MENU COLLAPSE STYLES *********/
/*********7. CUSTOM STYLES *********/
body.modal-open {
    padding-right: 0 !important;
}

.progress_task {
    margin-top: 8px;
    margin-bottom: 12px;
}

.progress {
    height: 15px;
}

.progress-bar {
    font-size: 10px;
    line-height: 15px;
}

.progress-xs {
    height: 5px;
}

.panel-heading small {
    line-height: 23px;
    font-size: 12px;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #555;
    background-color: #FFF;
    border-top: 3px solid #6699CC;
    border-bottom-color: transparent;
    cursor: default;
    font-weight: 500;
    margin-top: -2px;
}

.p-t-3 {
    padding-top: 3px;
}

.p-0 {
    padding: 0;
}

.p-10 {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.m-t-10 {
    margin-top: 10px !important;
}

.m-l-18 {
    margin-left: 18px;
}

.m-l-30 {
    margin-left: 30px;
}

.text-white {
    color: #FFFFFF;
}

.input-group-addon {
    padding: 5px 12px;
}

.radio label,
.checkbox label,
.checkbox-inline,
.radio-inline {
    padding-left: 0;
}

.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    margin-left: 10px;
}

.form-control.focus, .form-control:focus {
    border-color: #7EC4E7;
    box-shadow: none;
}

.rounded {
    border-radius: 20px;
    padding: 7px 20px;
}

.btn-white {
    background-color: white;
    border-color: #cccccc;
}

.m-t-25 {
    margin-top: 25px;
}

.m-l-10 {
    margin-left: 10px;
}

.btn-block {
    display: block;
    width: 100%;
}

.margin-bottom-10 {
    padding-bottom: 10px;
}

.alert-success {
    background-color: #e0f4e9;
    border-color: #75D1A3;
    color: #75D1A3;
}

.alert-warning {
    background-color: #fffdcc;
    border-color: #FFCE56;
    color: #FFBF23;
}

.swal2-modal.swal2-show {
    border-radius: 0;
    font-family: 'Open Sans', sans-serif;
}

/*
Customized Bootstrap toastr
*/
.radio,
.checkbox {
    display: inline;
    min-height: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

div.radio,
div.checker {
    margin-right: 0;
    margin-left: 3px;
}

div.selector,
div.checker,
div.button,
div.uploader {
    display: -moz-inline-box;
    display: inline-block;
    zoom: 1;
    vertical-align: middle;
}

.resize_vertical {
    resize: vertical;
}

.input-group-addon {
    background-color: #FFF;
    border: 1px solid #CCC;
}

/***Session Timeout custom css***/
#idle-time .note.note-success {
    background-color: #eef7ea;
    margin: 0 0 20px 0;
    padding: 27px 15px 15px 15px;
    border-left: 5px solid #bbdba1;
}

#idle-time .note .alert-information {
    font-size: 16px;
}

/* layout css ends*/
/**** 7.MEDIA QUERIES ****/
@media (max-width: 768px) {
    .group_radios {
        margin-top: 10px;
    }
}

@media screen and (min-width: 993px) {
    .left-aside {
        top: 60px;
    }
}

/*Give content full width on xs screens*/
@media screen and (max-width: 992px) {
    .right-aside {
        margin-left: 0;
    }
}


@media screen and (max-width: 560px) {
    .right-aside {
        padding: 0 10px 10px 10px;
    }
}

@media screen and (max-width: 767px) {
    .navbar .navbar-nav > li {
        float: left;
    }

    .navbar-nav {
        margin: 0;
        float: left;
    }

        .navbar-nav > li > a {
            padding-top: 15px;
            padding-bottom: 15px;
            line-height: 20px;
        }
}

/* Fix dropdown menu for small screens to display correctly on small screens */
@media screen and (max-width: 767px) {
    .navbar-nav > .user-menu > .dropdown-menu,
    .navbar-nav > .notifications-menu > .dropdown-menu {
        position: absolute;
        top: 100%;
        right: -60px;
        left: auto;
        background: #FFFFFF;
    }

    .navbar-nav .open .dropdown-menu > li > a,
    .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 15px;
    }

    .navbar-nav > .notifications-menu > .dropdown-menu {
        width: 295px;
    }

    .navbar-nav > .user-menu > .dropdown-menu {
        right: 7px;
        margin-top: 8px;
    }

    .navbar-nav .user-menu .dropdown-menu > li > a {
        padding: 4px 20px;
    }

    .navbar-right .nav > li > a {
        padding: 13px 15px 14px 15px;
    }

        .navbar-right .nav > li > a .black {
            padding-top: 9px;
        }

    .navbar-right .nav > li.notifications-menu > a {
        padding-top: 12px;
        padding-bottom: 14px;
    }

    #form > .header .navbar .nav > li > a > .label {
        top: 17px;
        right: 13px;
    }

    .repeater-btn {
        margin-top: 10px;
    }
}

/* Fix menu positions on xs screens to appear correctly and fully */
@media screen and (max-width: 480px) {
    .navbar-nav > .notifications-menu > .dropdown-menu > li.header:after {
        border-width: 0;
    }
}

@media screen and (max-width: 560px) {
    #form > .header .logo,
    #form > .header .navbar {
        width: 100%;
        float: none;
        position: relative;
        height: initial;
    }

    #form > .header .navbar {
        margin: 0;
    }

        #form > .header .navbar .sidebar-toggle {
            position: fixed;
            top: 3.5em;
            right: 0.5em;
            border-radius: 0px;
            border: 1px solid #666;
            padding: 0.3em;
            background: white;
        }
}

@media screen and (max-width: 350px) {
    .navbar-nav > .notifications-menu > .dropdown-menu {
        right: -76px;
        margin-top: 7px;
    }
}

@media (min-width: 1440px) and (max-width: 2560px) {
    #menu .menu-dropdown > ul,
    #menu .menu-dropdown-open-ul {
        margin-top: -1px;
    }
}

@media (min-width: 768px) {
    .label_padding {
        padding-right: 32px;
    }

    .repeater-form {
        text-align: center;
    }
}

/****** END MEDIA QUERIES ****/



table {
    background-color: transparent;
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #dcdcdc;
    text-align: left;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

    .table > thead > tr > th,
    .table > thead > tr > td,
    .table > tbody > tr > th,
    .table > tbody > tr > td,
    .table > tfoot > tr > th,
    .table > tfoot > tr > td {
        padding: 8px;
        line-height: 1.428571429;
        vertical-align: top;
        border-top: 1px solid #ddd;
    }

    .table > thead > tr > th {
        vertical-align: bottom;
        border-bottom: 2px solid #ddd;
    }

    .table > caption + thead > tr:first-child > th,
    .table > caption + thead > tr:first-child > td,
    .table > colgroup + thead > tr:first-child > th,
    .table > colgroup + thead > tr:first-child > td,
    .table > thead:first-child > tr:first-child > th,
    .table > thead:first-child > tr:first-child > td {
        border-top: 0;
    }

    .table > tbody + tbody {
        border-top: 2px solid #ddd;
    }

    .table .table {
        background-color: #fff;
    }

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
    padding: 5px;
}

.table-bordered {
    border: 1px solid #ddd;
}

    .table-bordered > thead > tr > th,
    .table-bordered > thead > tr > td,
    .table-bordered > tbody > tr > th,
    .table-bordered > tbody > tr > td,
    .table-bordered > tfoot > tr > th,
    .table-bordered > tfoot > tr > td {
        border: 1px solid #ddd;
    }

    .table-bordered > thead > tr > th,
    .table-bordered > thead > tr > td {
        border-bottom-width: 2px;
    }

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
    background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
    background-color: #75D1A3;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
    background-color: #62cb96;
}

.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
    background-color: #7EC4E7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
    background-color: #69bae3;
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
    background-color: #FFCE56;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
    background-color: #ffc73d;
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
    background-color: #FF7A7A;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
    background-color: #ff6161;
}

.table-responsive {
    overflow-x: auto;
    min-height: 0.01%;
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }

        .table-responsive > .table {
            margin-bottom: 0;
        }

            .table-responsive > .table > thead > tr > th,
            .table-responsive > .table > thead > tr > td,
            .table-responsive > .table > tbody > tr > th,
            .table-responsive > .table > tbody > tr > td,
            .table-responsive > .table > tfoot > tr > th,
            .table-responsive > .table > tfoot > tr > td {
                white-space: nowrap;
            }

        .table-responsive > .table-bordered {
            border: 0;
        }

            .table-responsive > .table-bordered > thead > tr > th:first-child,
            .table-responsive > .table-bordered > thead > tr > td:first-child,
            .table-responsive > .table-bordered > tbody > tr > th:first-child,
            .table-responsive > .table-bordered > tbody > tr > td:first-child,
            .table-responsive > .table-bordered > tfoot > tr > th:first-child,
            .table-responsive > .table-bordered > tfoot > tr > td:first-child {
                border-left: 0;
            }

            .table-responsive > .table-bordered > thead > tr > th:last-child,
            .table-responsive > .table-bordered > thead > tr > td:last-child,
            .table-responsive > .table-bordered > tbody > tr > th:last-child,
            .table-responsive > .table-bordered > tbody > tr > td:last-child,
            .table-responsive > .table-bordered > tfoot > tr > th:last-child,
            .table-responsive > .table-bordered > tfoot > tr > td:last-child {
                border-right: 0;
            }

            .table-responsive > .table-bordered > tbody > tr:last-child > th,
            .table-responsive > .table-bordered > tbody > tr:last-child > td,
            .table-responsive > .table-bordered > tfoot > tr:last-child > th,
            .table-responsive > .table-bordered > tfoot > tr:last-child > td {
                border-bottom: 0;
            }
}



.panelss {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
    padding: 15px;
}

    .panel-body:before, .panel-body:after {
        content: " ";
        display: table;
    }

    .panel-body:after {
        clear: both;
    }

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

    .panel-heading > .dropdown .dropdown-toggle {
        color: inherit;
    }

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

    .panel-title > a,
    .panel-title > small,
    .panel-title > .small,
    .panel-title > small > a,
    .panel-title > .small > a {
        color: inherit;
    }

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panelss > .list-group,
.panelss > .panel-collapse > .list-group {
    margin-bottom: 0;
}

    .panelss > .list-group .list-group-item,
    .panelss > .panel-collapse > .list-group .list-group-item {
        border-width: 1px 0;
        border-radius: 0;
    }

    .panelss > .list-group:first-child .list-group-item:first-child,
    .panelss > .panel-collapse > .list-group:first-child .list-group-item:first-child {
        border-top: 0;
        border-top-right-radius: 3px;
        border-top-left-radius: 3px;
    }

    .panelss > .list-group:last-child .list-group-item:last-child,
    .panelss > .panel-collapse > .list-group:last-child .list-group-item:last-child {
        border-bottom: 0;
        border-bottom-right-radius: 3px;
        border-bottom-left-radius: 3px;
    }

.panelss > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}

.list-group + .panel-footer {
    border-top-width: 0;
}

.panelss > .table,
.panelss > .table-responsive > .table,
.panelss > .panel-collapse > .table {
    margin-bottom: 0;
}

    .panelss > .table caption,
    .panelss > .table-responsive > .table caption,
    .panelss > .panel-collapse > .table caption {
        padding-left: 15px;
        padding-right: 15px;
    }

    .panelss > .table:first-child,
    .panelss > .table-responsive:first-child > .table:first-child {
        border-top-right-radius: 3px;
        border-top-left-radius: 3px;
    }

        .panelss > .table:first-child > thead:first-child > tr:first-child,
        .panelss > .table:first-child > tbody:first-child > tr:first-child,
        .panelss > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
        .panelss > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
        }

            .panelss > .table:first-child > thead:first-child > tr:first-child td:first-child,
            .panelss > .table:first-child > thead:first-child > tr:first-child th:first-child,
            .panelss > .table:first-child > tbody:first-child > tr:first-child td:first-child,
            .panelss > .table:first-child > tbody:first-child > tr:first-child th:first-child,
            .panelss > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
            .panelss > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
            .panelss > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
            .panelss > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
                border-top-left-radius: 3px;
            }

            .panelss > .table:first-child > thead:first-child > tr:first-child td:last-child,
            .panelss > .table:first-child > thead:first-child > tr:first-child th:last-child,
            .panelss > .table:first-child > tbody:first-child > tr:first-child td:last-child,
            .panelss > .table:first-child > tbody:first-child > tr:first-child th:last-child,
            .panelss > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
            .panelss > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
            .panelss > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
            .panelss > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
                border-top-right-radius: 3px;
            }

    .panelss > .table:last-child,
    .panelss > .table-responsive:last-child > .table:last-child {
        border-bottom-right-radius: 3px;
        border-bottom-left-radius: 3px;
    }

        .panelss > .table:last-child > tbody:last-child > tr:last-child,
        .panelss > .table:last-child > tfoot:last-child > tr:last-child,
        .panelss > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
        .panelss > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
            border-bottom-left-radius: 3px;
            border-bottom-right-radius: 3px;
        }

            .panelss > .table:last-child > tbody:last-child > tr:last-child td:first-child,
            .panelss > .table:last-child > tbody:last-child > tr:last-child th:first-child,
            .panelss > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
            .panelss > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
            .panelss > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
            .panelss > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
            .panelss > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
            .panelss > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
                border-bottom-left-radius: 3px;
            }

            .panelss > .table:last-child > tbody:last-child > tr:last-child td:last-child,
            .panelss > .table:last-child > tbody:last-child > tr:last-child th:last-child,
            .panelss > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
            .panelss > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
            .panelss > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
            .panelss > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
            .panelss > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
            .panelss > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
                border-bottom-right-radius: 3px;
            }

    .panelss > .panel-body + .table,
    .panelss > .panel-body + .table-responsive,
    .panelss > .table + .panel-body,
    .panelss > .table-responsive + .panel-body {
        border-top: 1px solid #ddd;
    }

    .panelss > .table > tbody:first-child > tr:first-child th,
    .panelss > .table > tbody:first-child > tr:first-child td {
        border-top: 0;
    }

.panelss > .table-bordered,
.panelss > .table-responsive > .table-bordered {
    border: 0;
}

    .panelss > .table-bordered > thead > tr > th:first-child,
    .panelss > .table-bordered > thead > tr > td:first-child,
    .panelss > .table-bordered > tbody > tr > th:first-child,
    .panelss > .table-bordered > tbody > tr > td:first-child,
    .panelss > .table-bordered > tfoot > tr > th:first-child,
    .panelss > .table-bordered > tfoot > tr > td:first-child,
    .panelss > .table-responsive > .table-bordered > thead > tr > th:first-child,
    .panelss > .table-responsive > .table-bordered > thead > tr > td:first-child,
    .panelss > .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .panelss > .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .panelss > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .panelss > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }

    .panelss > .table-bordered > thead > tr > th:last-child,
    .panelss > .table-bordered > thead > tr > td:last-child,
    .panelss > .table-bordered > tbody > tr > th:last-child,
    .panelss > .table-bordered > tbody > tr > td:last-child,
    .panelss > .table-bordered > tfoot > tr > th:last-child,
    .panelss > .table-bordered > tfoot > tr > td:last-child,
    .panelss > .table-responsive > .table-bordered > thead > tr > th:last-child,
    .panelss > .table-responsive > .table-bordered > thead > tr > td:last-child,
    .panelss > .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .panelss > .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .panelss > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .panelss > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0;
    }

    .panelss > .table-bordered > thead > tr:first-child > td,
    .panelss > .table-bordered > thead > tr:first-child > th,
    .panelss > .table-bordered > tbody > tr:first-child > td,
    .panelss > .table-bordered > tbody > tr:first-child > th,
    .panelss > .table-responsive > .table-bordered > thead > tr:first-child > td,
    .panelss > .table-responsive > .table-bordered > thead > tr:first-child > th,
    .panelss > .table-responsive > .table-bordered > tbody > tr:first-child > td,
    .panelss > .table-responsive > .table-bordered > tbody > tr:first-child > th {
        border-bottom: 0;
    }

    .panelss > .table-bordered > tbody > tr:last-child > td,
    .panelss > .table-bordered > tbody > tr:last-child > th,
    .panelss > .table-bordered > tfoot > tr:last-child > td,
    .panelss > .table-bordered > tfoot > tr:last-child > th,
    .panelss > .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .panelss > .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .panelss > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
    .panelss > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
        border-bottom: 0;
    }

.panelss > .table-responsive {
    border: 0;
    margin-bottom: 0;
}

.panel-group {
    margin-bottom: 20px;
}

    .panel-group .panelss {
        margin-bottom: 0;
        border-radius: 4px;
    }

        .panel-group .panelss + .panelss {
            margin-top: 5px;
        }

    .panel-group .panel-heading {
        border-bottom: 0;
    }

        .panel-group .panel-heading + .panel-collapse > .panel-body,
        .panel-group .panel-heading + .panel-collapse > .list-group {
            border-top: 1px solid #ddd;
        }

    .panel-group .panel-footer {
        border-top: 0;
    }

        .panel-group .panel-footer + .panel-collapse .panel-body {
            border-bottom: 1px solid #ddd;
        }

.panel-default {
    border-color: #E1E1E1;
}

    .panel-default > .panel-heading {
        color: #333;
        background-color: #E1E1E1;
        border-color: #E1E1E1;
    }

        .panel-default > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #E1E1E1;
        }

        .panel-default > .panel-heading .badge {
            color: #E1E1E1;
            background-color: #333;
        }

    .panel-default > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #E1E1E1;
    }

.panel-primary {
    border-color: #2283BF;
}

    .panel-primary > .panel-heading {
        color: #fff;
        background-color: #2283BF;
        border-color: #2283BF;
    }

        .panel-primary > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #2283BF;
        }

        .panel-primary > .panel-heading .badge {
            color: #2283BF;
            background-color: #fff;
        }

    .panel-primary > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #2283BF;
    }

.panel-success {
    border-color: #75D1A3;
}

    .panel-success > .panel-heading {
        color: #fff;
        background-color: #75D1A3;
        border-color: #75D1A3;
    }

        .panel-success > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #75D1A3;
        }

        .panel-success > .panel-heading .badge {
            color: #75D1A3;
            background-color: #fff;
        }

    .panel-success > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #75D1A3;
    }

.panel-info {
    border-color: #7EC4E7;
}

    .panel-info > .panel-heading {
        color: #fff;
        background-color: #7EC4E7;
        border-color: #7EC4E7;
    }

        .panel-info > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #7EC4E7;
        }

        .panel-info > .panel-heading .badge {
            color: #7EC4E7;
            background-color: #fff;
        }

    .panel-info > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #7EC4E7;
    }

.panel-warning {
    border-color: #FFCE56;
}

    .panel-warning > .panel-heading {
        color: #fff;
        background-color: #FFCE56;
        border-color: #FFCE56;
    }

        .panel-warning > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #FFCE56;
        }

        .panel-warning > .panel-heading .badge {
            color: #FFCE56;
            background-color: #fff;
        }

    .panel-warning > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #FFCE56;
    }

.panel-danger {
    border-color: #FF7A7A;
}

    .panel-danger > .panel-heading {
        color: #fff;
        background-color: #FF7A7A;
        border-color: #FF7A7A;
    }

        .panel-danger > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #FF7A7A;
        }

        .panel-danger > .panel-heading .badge {
            color: #FF7A7A;
            background-color: #fff;
        }

    .panel-danger > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #FF7A7A;
    }

.panelss {
    margin-bottom: 25px;
    box-shadow: none;
}

.panel-heading {
    border-bottom: 1px solid #E1E1E1;
}

.panel-title {
    font-size: 18px;
    font-weight: bold;
}


.widetool .tooltest, #BodyPlaceHolder_LTYDAdd .tooltest {
    width: 170px !important;
}

a#BodyPlaceHolder_ltyd_home {
    width: 40px;
    height: 40px;
    padding-top: 10px;
    margin: 0 2em;
}

div#divAccountDetails span {
    font-size: 15PX;
}

a#BodyPlaceHolder_LinkButton4, a#BodyPlaceHolder_LinkButton5, a#BodyPlaceHolder_bLTYD {
    display: inline-block;
}

select#BodyPlaceHolder_coLocationRSV, select#BodyPlaceHolder_coLocationPL, select#BodyPlaceHolder_coLocationCart {
    width: 30%;
}

div#BodyPlaceHolder_pNoLog {
    width: 25%;
    margin: 0 auto;
    text-align: right;
    border: 1px solid #eee;
    padding: 1em;
}

    div#BodyPlaceHolder_pNoLog div {
        margin-bottom: 1.0em;
    }

div#BodyPlaceHolder_preloaders {
    text-align: center;
    margin-top: 2em;
}


.RadGrid_MetroTouch .rgSelectedCell a, .RadGrid_MetroTouch .rgSelectedRow a {
    color: #000 !important;
}

div#ctl00_BodyPlaceHolder_RadPrevious > .rgHeaderWrapper, div#ctl00_BodyPlaceHolder_RadReserves > .rgHeaderWrapper {
    width: 100%;
}

@media (max-width: 1024) {
    span.tooltest {
        font-size: 12px;
        position: relative;
        color: #333;
        left: 40px;
        bottom: 22px;
        text-transform: capitalize;
        text-align: left;
        display: block;
        width: 110px;
    }
}

@media (max-width: 786px) {

    .twogether h4, .twogether span {
        display: block !important;
        width: 90% !important;
        padding-left: 3% !important;
    }

    div#acc-details {
        padding-right: 0em !Important;
    }

    #divOtherDetails {
        display: none;
    }

    #ctl00_BodyPlaceHolder_RadGridOdilo, #ctl00_BodyPlaceHolder_RadGridOver, .balader_grid, .balader_grid + h3 {
        display: none;
    }

    #mobmember h3 {
        background-color: #677382;
        padding: 0.5em;
        color: white;
        margin: 1.5em 0em;
    }

    .btn-icon + div, .btn-icon + span {
        display: block !Important;
        margin-top: 2em;
    }

    span#BodyPlaceHolder_upcondetails {
        display: none !important;
    }

    .hrukle {
        margin-bottom: 52px;
    }

    .btn-icon {
        display: inline-block;
        width: 45px !important;
        float: initial !important;
        height: 45px !important;
        margin-bottom: 0.5em !important;
        margin-right: 2em !important;
        margin-bottom: 2em !important;
    }

    a.button.btn-icon.round.big.nmain {
        margin-bottom: 0.5em !important;
    }

    .twogether input {
        width: 85% !important;
        margin-left: 3% !important;
        padding: 0.5em;
    }

    a.button.btn-icon.round.big.nmain {
    }

    div#acc-details > h5 {
        display: none;
    }

    select {
        width: 75% !important;
        display: inline-block;
        margin-top: 3.5em;
        padding: 0.5em;
        position: relative;
        top: -17px;
    }
}

div#BodyPlaceHolder_last_form select {
    width: 65%;
    margin-bottom: 1em;
    padding: 1em;
    display: inline-block;
}

select#BodyPlaceHolder_coLocationRSV, select#BodyPlaceHolder_coLocationPL, select#BodyPlaceHolder_coLocationCart {
    margin-bottom: 1em;
    padding: 1em;
    display: inline-block;
}

div#BodyPlaceHolder_last_form > span {
    font-size: 15px !important;
    width: 15%;
    color: #606060;
    display: inline-block;
}

div#divOtherDetails input {
    color: #888;
    border: 1px solid #ccc;
    font-size: 15px;
    width: 300px;
    height: 35px;
    padding: 0 25px;
    margin: 10px 0;
    display: inline-block;
    width: 3%;
    display: inline-block;
}

div#divOtherDetails label {
    display: inline-block !important;
    width: 44%;
    position: relative;
    top: -10px;
    left: 3px;
    color: #666;
    font-size: 15px;
    line-height: 14px;
}

span#BodyPlaceHolder_rblGender,
span#BodyPlaceHolder_rblPost_AddressType,
span#BodyPlaceHolder_rbCouncilStaff,
span#BodyPlaceHolder_rblNoticeDelivery {
    width: 70% !important;
}

    span#BodyPlaceHolder_rblGender input,
    span#BodyPlaceHolder_rblPost_AddressType input,
    span#BodyPlaceHolder_rbCouncilStaff input,
    span#BodyPlaceHolder_rblNoticeDelivery input {
        width: 5%;
    }

    span#BodyPlaceHolder_rblGender label {
        width: 11% !important;
    }

    span#BodyPlaceHolder_rblPost_AddressType label {
        width: 17% !important;
    }

    span#BodyPlaceHolder_rblNoticeDelivery label,
    span#BodyPlaceHolder_rbCouncilStaff label {
        width: 17% !important;
    }



span.tooltest {
    font-size: 12px;
    color: #333;
    text-transform: capitalize;
    text-align: left;
    top: 1em;
    right: 0.4em;
    position: relative;
    display: block;
}

div#acc-details span.tooltest {
    top: 1.3em !important;
    right: 0.2em !important;
}

span#BodyPlaceHolder_RadBarcode1 {
    width: 140px !important;
    height: 60px !important;
    font-size: 16px !important;
}

section span, section input, section label {
    font-size: 15px !important;
}

.printlink {
    width: 45px;
    height: 45px;
}


.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase, .initialism {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-muted {
    color: #dcdcdc;
}

.text-primary {
    color: #2283BF;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #1a6594;
}

.text-success {
    color: #3f8433;
}

a.text-success:hover,
a.text-success:focus {
    color: #4fc48a;
}

.text-info {
    color: #0062c7;
}

a.text-info:hover,
a.text-info:focus {
    color: #53b0df;
}

.text-warning {
    color: #ad8523;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #a27c20;
}

.text-danger {
    color: #cc0000;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #ff4747;
}


.section-container.tabs {
}

input[readonly] {
    background-color: #cdcdcd;
    ;
}

.twogether h4 {
    font-size: 15px !important;
    width: 15%;
    display: inline-block;
}

a.button.btn-icon.round.big.nmain {
    margin-bottom: 2em !important;
}


.twogether input {
    width: 65%;
    display: inline-block;
}

.separ {
    left: 10.5em;
    height: 95%;
}

.post-info .content > ul li a {
    left: 13em;
}

.hruler {
    width: 35%;
    border-top: 1px solid #ccc;
    margin-bottom: 15px;
}

.exists h4, .nochangepass h4, .nochangepin h4 {
    color: #cc0000;
    font-size: 14px;
}

.exists, .nochangepass, .nochangepin {
    display: none;
}

.noexists h4, .changepass h4, .changepin h4 {
    color: green;
    font-size: 14px;
}

.noexists, .changepass, .changepin {
    display: none;
}

.comments {
    position: relative;
    top: -90px;
    left: 200px;
}


@media (max-width: 3000px) {



    #BodyPlaceHolder_tbHomeStreet, #BodyPlaceHolder_tbHomeStreet, #BodyPlaceHolder_tbPostalStreet, #BodyPlaceHolder_tbPostalSuburb, #BodyPlaceHolder_tbHomeSuburb {
        width: 17%;
    }

    #BodyPlaceHolder_tbLandline, #BodyPlaceHolder_tbMobile, #BodyPlaceHolder_tbEmail {
        width: 30%;
    }

    #BodyPlaceHolder_tbHomeHouse, #BodyPlaceHolder_tbHomePostcode, #BodyPlaceHolder_tbHomeState, #BodyPlaceHolder_tbPostalHouse, #BodyPlaceHolder_tbPostalPostcode, #BodyPlaceHolder_tbPostalState {
        width: 7%;
    }
}



@media (max-width: 1700px) {
    .blog-post {
        width: 24.98%;
    }



    #BodyPlaceHolder_tbHomeStreet, #BodyPlaceHolder_tbHomeStreet, #BodyPlaceHolder_tbPostalStreet, #BodyPlaceHolder_tbPostalSuburb, #BodyPlaceHolder_tbLandline, #BodyPlaceHolder_tbMobile, #BodyPlaceHolder_tbEmail, #BodyPlaceHolder_tbHomeSuburb {
        width: 20%;
    }

    #BodyPlaceHolder_tbHomeHouse, #BodyPlaceHolder_tbHomePostcode, #BodyPlaceHolder_tbHomeState, #BodyPlaceHolder_tbPostalHouse, #BodyPlaceHolder_tbPostalPostcode, #BodyPlaceHolder_tbPostalState {
        width: 5%;
    }
}


@media (max-width: 1300px) {
    .image_clone {
        width: 33.3%;
    }

    #divContactDetails .twogether h4 {
        display: block !important;
    }

    #BodyPlaceHolder_tbHomeStreet, #BodyPlaceHolder_tbHomeStreet, #BodyPlaceHolder_tbPostalStreet, #BodyPlaceHolder_tbPostalSuburb, #BodyPlaceHolder_tbLandline, #BodyPlaceHolder_tbMobile, #BodyPlaceHolder_tbEmail, #BodyPlaceHolder_tbHomeSuburb {
        width: 30%;
    }

    #BodyPlaceHolder_tbHomeHouse, #BodyPlaceHolder_tbHomePostcode, #BodyPlaceHolder_tbHomeState, #BodyPlaceHolder_tbPostalHouse, #BodyPlaceHolder_tbPostalPostcode, #BodyPlaceHolder_tbPostalState {
        width: 10%;
    }
}

@media (max-width: 991px) {



    .image_clone {
        width: 49.99%;
    }

    #divContactDetails .twogether h4 {
        display: block !important;
    }

    #BodyPlaceHolder_tbHomeStreet, #BodyPlaceHolder_tbHomeStreet, #BodyPlaceHolder_tbPostalStreet, #BodyPlaceHolder_tbPostalSuburb, #BodyPlaceHolder_tbLandline, #BodyPlaceHolder_tbMobile, #BodyPlaceHolder_tbEmail, #BodyPlaceHolder_tbHomeSuburb {
        width: 33%;
    }

    #BodyPlaceHolder_tbHomeHouse, #BodyPlaceHolder_tbHomePostcode, #BodyPlaceHolder_tbHomeState, #BodyPlaceHolder_tbPostalHouse, #BodyPlaceHolder_tbPostalPostcode, #BodyPlaceHolder_tbPostalState {
        width: 10%;
    }
}



table.rgMasterTable {
    border: 0px solid transparent;
}
