@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.ttf');
}
@font-face {
    font-family: 'OpenSans-Light';
    src: url('../fonts/OpenSans-Light.ttf');
}
@font-face {
    font-family: 'OpenSans-Semibold';
    src: url('../fonts/OpenSans-SemiBold.ttf');
}
@font-face {
    font-family: 'OpenSans-Bold';
    src: url('../fonts/OpenSans-Bold.ttf');
}
@font-face {
   font-family: 'GeosansLight';
   src: url('../fonts/GeosansLight.ttf');
}
.ns-dashboard-icons p {    margin-top: -16px; }

body {
    font-family: 'Open Sans' !important;
}

textarea.search {
    background-image: url(../../assets/icons/message_placeholder.svg);
    background-repeat: no-repeat;
    text-indent: 20px;
    background-position: 10px 10px;
}
.bg-color {
    background: -moz-linear-gradient(45deg, rgba(29,196,233,1) 0%, rgba(0,160,176,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(29,196,233,1)), color-stop(100%, rgba(0,160,176,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(45deg, rgba(29,196,233,1) 0%, rgba(0,160,176,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(45deg, rgba(29,196,233,1) 0%, rgba(0,160,176,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(45deg, rgba(29,196,233,1) 0%, rgba(0,160,176,1) 100%); /* ie10+ */
    background: linear-gradient(45deg, rgba(29,196,233,1) 0%, rgba(0,160,176,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00A0B0', endColorstr='#1DC4E9',GradientType=1 ); /* ie6-9 */
}
.logincard {
    margin: auto;
    position: relative;
    top: 50%;
    max-width: 432px;
    transform: translate(0px, -50%);
}
.img-circle {
    border-radius: 50%;
}
.pmd-sidebar-nav a {
    color: #fff;
    text-decoration: none;
    outline: none;
}
.pmd-sidebar-nav a:hover {
    color: #edc951 !important;
}
.nav>li>a:focus, .nav>li>a:hover {
    text-decoration: none;
    background-color: transparent;
}
/*Start Wizard*/

.bootstrapWizard {
    display: block;
    list-style: none;
    padding: 0;
    position: relative;
    width: 100%
}

.bootstrapWizard a:hover,.bootstrapWizard a:active,.bootstrapWizard a:focus {
    text-decoration: none
}

.bootstrapWizard li {
    display: block;
    float: left;
    width: 33%;
    text-align: center;
    padding-left: 0
}

.media-left:hover .overlay-real {
    opacity: 1;
}

.overlay-real {
    position: absolute;
    top: 70%;
    bottom: 0;
    left:21px;
    right: 0;
    height: 20%;
    width: 345px;
    opacity: 0;
    transition: .3s ease;
    background-color: #00000047;
    /*padding: 5px;*/
}
.bootstrapWizard li:before {
    border-top: 1px solid #eaeaea;
    content: "";
    display: block;
    font-size: 0;
    overflow: hidden;
    position: relative;
    top: 14px;
    right: 1px;
    width: 100%;
    z-index: 1
}

.bootstrapWizard li:first-child:before {
    left: 50%;
    max-width: 50%
}

.bootstrapWizard li:last-child:before {
    max-width: 50%;
    width: 50%
}

.bootstrapWizard li.complete .step {
    background: #0aa66e;
    padding: 1px 6px;
    border: 3px solid rgb(68, 95, 128)
}

.bootstrapWizard li .step i {
    font-size: 10px;
    font-weight: 400;
    position: relative;
    top: -1.5px
}

.bootstrapWizard li .step {
    background: #eaeaea;
    color: #fff;
    display: inline;
    font-size: 6px;
    font-weight: 700;
    line-height: 12px;
    padding: 1px 5px;
    /*border: 3px solid transparent;*/
    border-radius: 50%;
    line-height: normal;
    position: relative;
    text-align: center;
    z-index: 2;
    transition: all .1s linear 0s
}
.ns-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.ns-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid rgba(29,196,233,1);
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */


/* When the radio button is checked, add a blue background */
.ns-checkbox input:checked ~ .checkmark {
    border: 1px solid #00a0b0;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.ns-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.ns-checkbox .checkmark:after {
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(225deg, rgba(0,160,176,1) 0%, rgba(29,196,233,1) 100%);
}
.bootstrapWizard li.active .step,.bootstrapWizard li.active.complete .step {
    background: linear-gradient(225deg, rgba(0,160,176,1) 0%, rgba(29,196,233,1) 100%);
    color: #fff;
    font-weight: 700;
    padding: 5px 11px;
    font-size: 9px;
    border-radius: 50%;
}

.bootstrapWizard li.complete .title,.bootstrapWizard li.active .title {
    color: #393C40;
    font-weight: 300;
    font-family: OpenSans-Light, "Open Sans";
    font-size: 14px;
}

.bootstrapWizard li .title {
    color: #AAAEB3;
    display: block;
    font-size: 14px;
    line-height: 15px;
    max-width: 100%;
    position: relative;
    table-layout: fixed;
    text-align: center;
    top: 20px;
    word-wrap: break-word;
    z-index: 104;
    font-family: OpenSans-Light, "Open Sans";
    font-weight: 300;
}

.wizard-actions {
    display: block;
    list-style: none;
    padding: 0;
    position: relative;
    width: 100%
}

.wizard-actions li {
    display: inline
}

.tab-content.transparent {
    background-color: transparent
}
/*label*/
.control-label{
    display: inline-block;
    max-width: 100%;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgb(71, 75, 79);
    /*color: rgb(170, 174, 179);*/
    font-size: 10px;
    font-family: OpenSans-Semibold, "Open Sans";
    text-transform: uppercase;
}
.fontAwesome {
    font-family: Helvetica, 'Material Icons', "Open Sans";
    padding: 11px;
}
.btn.prev_btn {background-image: linear-gradient(to left, rgb(237, 201, 81) 50%, #FFFFFF 150%)}
.prev_btn:hover { background-position: right center; }
.btn.next {background-image: linear-gradient(to left, #01a3b2 11%, #1cc4e8 80%);}
.btn-danger {
    background-image: linear-gradient(to left, #CC333F 0%, #9F041B 80%) !important;
    font-family: OpenSans-Bold, "Open Sans" !important;
    font-size: 10px !important;
    font-weight: bold;
    letter-spacing: 1px;
    color: rgb(255, 255, 255);
}
.pmd-checkbox [type="checkbox"]:not(:checked) + .pmd-checkbox-label:before, .pmd-checkbox [type="checkbox"]:checked + .pmd-checkbox-label:before {
    position: absolute;
    top: 1px;
    left: 0;
    width: 18px;
    height: 18px;
    content: '';
    border-color: #01a3b2 !important;
    border-style: solid;
    border-width: 1px;
    border-radius: 1px;
}
.pmd-checkbox [type="checkbox"]:checked + .pmd-checkbox-label:before {
    background-image: linear-gradient(to left, #01a3b2 0%, #1cc4e8 185% );
}

.pmd-table.table thead th {
    border-bottom: 1px solid #eceeef !important;
}

.btn-default.pmd-btn-outline {
    border: solid 1px #e1e1e1 !important;
}
.theme_color {
    color: #01a3b2;
}
h3, .h3 {
    font-size: 1.2rem !important;
}
.form-control:focus {
    border-color: #7c7c7c;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(190, 190, 190, 0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(190, 190, 190, 0.6);
}
span > i {
    color: white;
}
span > input {
    background: none;
    color: white;
    padding: 0;
    border: 0;
}
.rw-card {
    padding: 16px;
}
.pmd-card {
    padding: 1px 0;
    margin-bottom: 30px;
    background-color: #e7f6f9 !important;
    border-radius: 2px;
}
.realestate>h3 {
    font-size: 18px;
    color: rgb(57, 60, 64);
}
.reset_txt {
    color: rgb(237, 201, 81);
    line-height: 2px;
    font-family: OpenSans-Light, "Open Sans";
    font-size: 14px;
    font-weight: 300;
    padding-top: 19px;
}
.realestate .pmd-card-title-text{
    font-family: OpenSans-Light, "Open Sans";
    font-size: 18px;
    font-weight: 300;
    color: rgb(57, 60, 64);
}
.ttl_prop,.total_link {
    font-family: OpenSans-Light, "Open Sans";
    font-size: 22px;
    font-weight: 300;
    color: rgb(0, 160, 176);
}
.realestate-subtitle-text {
    margin-bottom: 0;
    font-size: 12px;
    color: rgb(170, 174, 179);
}
.realestate-subtitle-detail{
    font-family: OpenSans-Semibold, "Open Sans";
    font-weight: 500;
}
.realestate-title-text {
    margin-top: 0;
    margin-bottom: 8px;
    color: inherit;
    font-family: OpenSans-Light, "Open Sans";
    font-weight: 300;
}
.personalbelongings .nav-tabs {
    border-bottom: none;
}
.personalbelongings .nav-tabs>li {
    float: left;
    margin-bottom: -1px;
    padding: 0px 7px;
}
.personalbelongings .nav-tabs>li.active>a,
.personalbelongings .nav-tabs>li.active>a:focus,
.personalbelongings.nav-tabs>li.active>a:hover {
    font-size: 12px;
    color: #fff;
    cursor: default;
    background-image: linear-gradient(to left, #01a3b2 50%, #1cc4e8 108%);
    border: transparent;
    border-radius: 50px !important;
    padding: 7px 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,.19), 0 6px 6px rgba(0,0,0,.23);
    /* border-bottom-color: transparent; */
}
.personalbelongings .nav-tabs>li>a:hover {
    border-color: #eee #eee #ddd;
    border-radius: 50px;
    padding: 7px 20px;
}
.personalbelongings .nav-tabs>li>a {
    font-size: 12px;
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 50px;
    background-color: #EAEAEA;
    padding: 7px 20px;
    font-family: OpenSans-Light, "Open Sans";
    font-weight: 300;
    color: rgb(57, 60, 64);
    opacity: 1 !important;
}
.personal-title-text {
    margin-top: 10px !important;
    margin-bottom: 0;
    color: rgb(57, 60, 64);
    font-family: OpenSans-Light, "Open Sans";
    font-size: 18px !important;
    font-weight: 300;
}
.personal>h3{
    font-size: 1.0rem !important;
}
.personal-subtitle-price {
    margin-bottom: 0;
    font-size: 12px;
    color: rgb(0, 160, 176);
    font-family: OpenSans, "Open Sans";
    font-weight: normal;
}
.personal-subtitle-text {
    margin-bottom: 0;
    font-size: 12px;
    color:  rgb(57, 60, 64);
    font-family: OpenSans, "Open Sans";
    font-weight: normal;
}
p .personal-subtitle-price{
    font-family: OpenSans-Light, "Open Sans";
    font-weight: 300;
}
.personal-card-media {
    padding: 16px 16px 16px 16px;
}
.pmd-card-actions {
    padding: 4px 0px !important;
}
.personal > h3 {margin-top: 0px !important;}
.inner-addon {
    position: relative;
}


.inner-addon .glyphicon {
    position: absolute;
    padding: 10px;
    pointer-events: none;
}

/* align glyph */
.left-addon .glyphicon  { left:  0px;}
.right-addon .glyphicon { right: 0px; opacity: 0.3;}

/* add padding  */
.left-addon input  { padding-left:  30px; }
.right-addon input { padding-right: 30px; }
.select::-ms-expand {
    display: none;
}

.select:after {
    content: '>';
    font: 16px "Consolas", monospace;
    color: #333;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 25px;
    /*Adjust for position however you want*/
    top: 10px;
    padding: 0 0 2px;
    opacity: 0.5;
    /*left line */
    position: absolute;
    pointer-events: none;
}
.select>select{-webkit-appearance: none;}
.select-label ::-ms-expand {
    display: none;
}
.select-label:after {
    content: '>';
    font: 16px "Consolas", monospace;
    color: #333;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 25px;
    /*Adjust for position however you want*/
    top: 39px;
    padding: 0 0 2px;
    opacity: 0.5;
    /*left line */
    position: absolute;
    pointer-events: none;
}
.select-label>select{-webkit-appearance: none;-moz-appearance: none;-ms-appearance: none;}

.btn.logout {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    box-shadow: none !important;
    line-height: 1.6;
}
.logout-btn {
    padding: 10px 10px;
    /*    position: fixed;
        bottom: 40px;*/
}
.inner-addon .glyphicon {
    position: absolute;
    padding: 10px;
    pointer-events: none;
    margin-top: 2px;
}
.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
    background-color: transparent;
    border-color: #337ab7;
}
.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #edc951;
    white-space: nowrap;
}
.pmd-dropdown i
/*.dropdown-submenu i*/
{color:white;}

.show_total{display: block !important;}

.hide_total{display: none !important;}

.personal-btn{float:right;margin-right: 10px;}

.ns-body {
    margin-top: 0px !important;
}
.ns-body .realestate-subtitle-text{
    font-family: OpenSans-Semibold, "Open Sans";
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgb(170, 174, 179);
}
.pd-right{padding-right: 0px !important;}

h3 > span{font-size: 12px !important;}
.rw-card.img-responsive {
    display: block;
    max-width: 100%;
    height: 200px;
}
.form-control {
    font-size: 0.700rem;
    color:#333 !important;
}
.help-block,.photo_error,.stock_error {
    margin-top: 0;
    font-size: 0.700rem !important;
}
.ns-hide{
    display: none;
}
.ns-show{
    display: block;
    opacity: 1 !important;
    padding-right: 16px !important;
}
.ns-family-office .pmd-card-subtitle-text {
    color:#00a0b0 !important;
    font-size: 12px;
    font-family: OpenSans, "Open Sans";
    font-weight: normal;
}
.ns-sub-titles{
    font-family: OpenSans, "Open Sans";
    font-size: 12px;
    font-weight: normal;
    letter-spacing: -0.5px;
    color: rgb(57, 60, 64);
}
.ns-phone_no{
    font-family: OpenSans, "Open Sans";
    font-size: 12px;
    font-weight: normal;
    color: rgb(57, 60, 64);
}
.ns-sub-details{
    font-family: OpenSans-Semibold, "Open Sans";
    font-weight: 500;
}
.ns-family-office .pmd-card-title-text {
    font-size: 18px;
    color: #393C40;
    font-family:Open Sans-Light, Open Sans;
    font-weight: 300;
}
.ns-family-office{
    word-wrap: break-word;
}
/*.ns-family-office img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}*/
.ns-onduty {
    margin: 3px 7px;
}
.ns-onduty span{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    color:#00a0b0 !important;
    font-family: OpenSans-Semibold, "Open Sans";
    font-weight: 500;
}
.ns-onleave span{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    color: #edc951 !important;
    font-family: OpenSans-Semibold, "Open Sans";
    font-weight: 500;
}
.ns-onleave{
    margin: 3px 7px;
}
/*,span*/
.ns-fo-detail {
    font-size: 12px;
    line-height: 2;
    padding-bottom: 5px;
    word-wrap: break-word;
    color:#393c40;
}
.ns-fo-detail span .material-icons {
    font-size: 13px;
    color:#00a0b0;
    font-weight: bold;
    vertical-align: middle;
}
.ns-fo-detail {
    padding-right: 5px !important;
    padding-left: 5px !important;
    margin-bottom: 8px !important;
}
.ns-fo-detail p {
    color:#00a0b0; 
    margin-bottom: 0px;
}
.ns-fo-img{
    width: 100px; 
    height: 100px; 
    border-radius: 50%;
}
.select-label-fs,.select>select{
    font-family: OpenSans-Light, "Open Sans";
    font-size: 14px;
    font-weight: 300;
    color: rgb(170, 174, 179) !important;
}
.select-label-fs ::-ms-expand {
    display: none;
}
.select-label-fs:after {
    content: '>';
    font: 16px "Consolas", monospace;
    color: #333;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 25px;
    /*Adjust for position however you want*/
    top: 10px;
    padding: 0 0 2px;
    opacity: 0.5;
    /*left line */
    position: absolute;
    pointer-events: none;
}
.select-label-fs>select{-webkit-appearance: none;-moz-appearance: none;-ms-appearance: none;}
.search-icon i {color: #555;}	
.ns-realEstateCreate li {
    display: block;
    float: left;
    width: 20%;
    text-align: center;
    padding-left: 0
}

.form-control,select,input[type=file],input[type=text] {
    height: 39px;
}
.form-control, select {
    padding-right: 30px;
}
::-webkit-file-upload-button {
    background: #fff;
    color: #333;
    padding: 4px;
    box-shadow: none !important;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.form-control.my-form-control {
    height: auto;
}
.btn {
    font-family: OpenSans-Semibold, "Open Sans";
    font-size: 10px !important;
    font-weight: 500;
    letter-spacing: 1px !important;
    color: rgb(255, 255, 255);
    padding: 15px 14px !important;
    border-radius: 5px !important;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,-0.19) !important;
    /*    height: 50px;*/
}
.btn.focus, .btn:focus, .btn:hover {
    color: #fff !important;
    text-decoration: none;
}
.realEstatetabs .pmd-tab-active-bar {
    background: #ecc850 !important;
}
.text-danger,
#instruction-error,#layout-error,#stock-error,#stock_as_of_date-error,#staff_working-error,
#datetimepicker-default-error{
    color:#a94442 !important;
}
.error{
    color:#a94442 ;
    font-size: 0.700rem;
    font-weight: normal;
}
.img-pic {
    position: relative;
    text-align: center;
}
.bottom-right {
    position: absolute;
    right: 5%;
    bottom: 8%;
    color: #fff;
}
.bottom-right a {
    color: #fff;
}
.dropdown-submenu {
    position: relative;
    /*background-color: #00a0b0;*/
}

.dropdown-submenu .dropdown-menu>li>a {
    padding: 12px 16px;
    /*background-color: #00a0b0;*/
    color: white;
}
.pmd-table.table > thead > tr > th {
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1.5;
    border-top: none;
    border-bottom-width: 1px;
    color:rgb(170, 174, 179) !important;
    font-family: OpenSans-Semibold, "Open Sans";
    letter-spacing: 2px;
}
.table .form-group {
    margin-bottom: 0px;
}
select + i.material-icons {
    float: right;
    margin-top: -30px;
    margin-right: 5px;
    pointer-events: none;
    background-color: #fff;
    padding-right: 5px;
    color: #D8D8D8;
}
.bootstrap-select .show-tick .btn{
    padding: 12px 14px !important;
}
.add-vehical-title {
    font-size: 26px;
    color: #393C40;
    font-weight: 300;
}
.pb-add-model-body{padding: 30px 60px 10px !important;}
.add-vehical-title {
    font-size: 26px;
    color: #393C40;
    font-weight: 300;
}
.viewRequestTitle {
    font-size: 26px;
    color: #393C40;
    font-weight: 300;
    font-family: OpenSans-Light, "Open Sans";
}
.viewRequestTitle span {
    font-family: OpenSans-Light, "Open Sans";
    color: #00A0B0;
    font-size: 26px;
    font-weight: 300;
    line-height: 1.6;
}
.mrViewRqDesleft p {
    color: #474B4F;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: OpenSans-Semibold, "Open Sans";
}
.mrViewRqDesright p {
    color: #393C40;
    font-size: 12px;
    font-weight: normal;
    font-family: OpenSans, "Open Sans";
}
.request-from-user{
    font-family: OpenSans-Semibold, "Open Sans" !important;
    font-weight: 500 !important;
    color: rgb(57, 60, 64) !important;
}
.myRequestTabs .nav-tabs { border-bottom: 1px solid #EAEAEA; }
.myRequestTabs .nav-tabs > li.active > a, .myRequestTabs .nav-tabs > li.active > a:focus,
.myRequestTabs .nav-tabs > li.active > a:hover { 
    border-width: 0;
}
.myRequestTabs .nav-tabs > li > a {
    border: none; 
    font-size: 14px;
    opacity: 1; 
    font-family: OpenSans-Light, "Open Sans";
    font-weight: 300;
    color: rgb(170, 174, 179);
}
.myRequestTabs .nav-tabs > li.active > a, .myRequestTabs .nav-tabs > li > a:hover {
    border: none;
    color: #393C40 !important;
    background: transparent;

}
.myRequestTabs .nav-tabs > li > a::after { content: ""; background: #EDC951; height: 2px; position: absolute; width: 100%; left: 0px; bottom: -1px; transition: all 250ms ease 0s; transform: scale(0); }
.myRequestTabs .nav-tabs > li.active > a::after, .myRequestTabs .nav-tabs > li:hover > a::after { transform: scale(1); }

.adminRequestTabs .nav-tabs { border-bottom: none; }
.adminRequestTabs .nav-tabs > li.active > a, .adminRequestTabs .nav-tabs > li.active > a:focus, .adminRequestTabs .nav-tabs > li.active > a:hover { border-width: 0; }
.adminRequestTabs .nav-tabs > li > a {
    border: none; color: #AAAEB3; font-weight:500; 
    font-size: 10px;
    opacity: 1;
    letter-spacing:2px;
    text-transform: uppercase;}
.adminRequestTabs .nav-tabs > li.active > a, .adminRequestTabs .nav-tabs > li > a:hover {
    border: none;
    color: #EDC951 !important;
    background: transparent; 
    font-family: OpenSans-Bold, "Open Sans";
    font-weight: bold;
}
.adminRequestTabs .nav-tabs > li > a::after { content: ""; ; height: 2px; position: absolute; width: 100%; left: 0px; bottom: -1px; transition: all 250ms ease 0s; transform: scale(0); }
.adminRequestTabs .nav-tabs > li.active > a::after, .adminRequestTabs .nav-tabs > li:hover > a::after { transform: scale(1); }
.myRequest-thead{
    display: table-header-group;
    vertical-align: middle;
    border-color: inherit;
}
.media-left {
    position: relative;
    max-width: 400px;
}

.per-image {
    display: block;    
} 
.overlay {
    position: absolute;
    top: 80%;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    width: 110px;
    opacity: 0;
    transition: .3s ease;
    background-color: #00000047;
    /*padding: 5px;*/
}
.media-left:hover .overlay {
    opacity: 1;
}
.media-left a{ color: white !important;}
.media-left span a{ padding: 3px;}
.media-left a:focus, .media-left a:hover {
    color: white !important;
}
.icon {
    color: white !important;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    /*padding: 8px;*/
}
.icon .material-icons {
    padding-top: 2px;
}
tfoot {
    display: table-header-group !important;
    vertical-align: middle;
    border-color: inherit;
}
.customized-top-right {
    position: absolute;
    top: 8px;
    right: 16px;
    color: #cfd0d4;
}
.customized-top-right a{color: #cfd0d4;}
.customized-container {
    position: relative;
}
.customized-card {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 2px;
}
.doc{
    font-size: 12px;
    font-weight: normal;
}
p .approved,p .req-requested,p .p_approved,p .rejected{
    font-size: 12px;
}
.approved{
    font-family: OpenSans, "Open Sans";
    font-size: 18px;
    font-weight: normal;
    color: rgb(0, 160, 176);
}
.p_approved{
    color:#3FFABC; 
    font-family: OpenSans, "Open Sans";
    font-size: 18px;
    font-weight: normal;
}

.rejected{
    color:#CC333F;
    font-family: OpenSans, "Open Sans";
    font-size: 18px;
    font-weight: normal;
}
.action{
    display:none;
}
.dataTable .form-control{
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB2ZXJzaW9uPSIxLjEiICAgaWQ9InN2ZzQ0ODUiICAgdmlld0JveD0iMCAwIDIxLjk5OTk5OSAyMS45OTk5OTkiICAgaGVpZ2h0PSIyMiIgICB3aWR0aD0iMjIiPiAgPGRlZnMgICAgIGlkPSJkZWZzNDQ4NyIgLz4gIDxtZXRhZGF0YSAgICAgaWQ9Im1ldGFkYXRhNDQ5MCI+ICAgIDxyZGY6UkRGPiAgICAgIDxjYzpXb3JrICAgICAgICAgcmRmOmFib3V0PSIiPiAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+ICAgICAgICA8ZGM6dHlwZSAgICAgICAgICAgcmRmOnJlc291cmNlPSJodHRwOi8vcHVybC5vcmcvZGMvZGNtaXR5cGUvU3RpbGxJbWFnZSIgLz4gICAgICAgIDxkYzp0aXRsZT48L2RjOnRpdGxlPiAgICAgIDwvY2M6V29yaz4gICAgPC9yZGY6UkRGPiAgPC9tZXRhZGF0YT4gIDxnICAgICB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLC0xMDMwLjM2MjIpIiAgICAgaWQ9ImxheWVyMSI+ICAgIDxnICAgICAgIHN0eWxlPSJvcGFjaXR5OjAuNSIgICAgICAgaWQ9ImcxNyIgICAgICAgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNjAuNCw4NjYuMjQxMzQpIj4gICAgICA8cGF0aCAgICAgICAgIGlkPSJwYXRoMTkiICAgICAgICAgZD0ibSAtNTAuNSwxNzkuMSBjIC0yLjcsMCAtNC45LC0yLjIgLTQuOSwtNC45IDAsLTIuNyAyLjIsLTQuOSA0LjksLTQuOSAyLjcsMCA0LjksMi4yIDQuOSw0LjkgMCwyLjcgLTIuMiw0LjkgLTQuOSw0LjkgeiBtIDAsLTguOCBjIC0yLjIsMCAtMy45LDEuNyAtMy45LDMuOSAwLDIuMiAxLjcsMy45IDMuOSwzLjkgMi4yLDAgMy45LC0xLjcgMy45LC0zLjkgMCwtMi4yIC0xLjcsLTMuOSAtMy45LC0zLjkgeiIgICAgICAgICBjbGFzcz0ic3Q0IiAvPiAgICAgIDxyZWN0ICAgICAgICAgaWQ9InJlY3QyMSIgICAgICAgICBoZWlnaHQ9IjUiICAgICAgICAgd2lkdGg9IjAuODk5OTk5OTgiICAgICAgICAgY2xhc3M9InN0NCIgICAgICAgICB0cmFuc2Zvcm09Im1hdHJpeCgwLjY5NjQsLTAuNzE3NiwwLjcxNzYsMC42OTY0LC0xNDIuMzkzOCwyMS41MDE1KSIgICAgICAgICB5PSIxNzYuNjAwMDEiICAgICAgICAgeD0iLTQ2LjIwMDAwMSIgLz4gICAgPC9nPiAgPC9nPjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-color: #fff;
    /* background-position: 3px 7px !important; */
    background-size: 3px 7px 100% !important;
    background-repeat: no-repeat;
    background-position: right 7px center;
    font-size: 12px;
    font-weight: 300;
    fill: rgb(198, 201, 207);
}
.pagination>li>a, .pagination>li>span {
    border: none !important;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    z-index: 3;
    color: rgb(198, 201, 207);;
    cursor: default;
    background-color:transparent;
}
div.dataTables_wrapper div.dataTables_info {
    font-size: 12px;
    font-weight: 300;
    color: rgb(170, 174, 179);
    font-family: OpenSans-Light, "Open Sans";
}
.dataTables_length label{
    font-size: 12px;
    font-weight: 300;
    color: rgb(170, 174, 179);
}
.dataTables_length .form-control, select {
    padding-right: 0px; 
}
.dataTables_length, .dataTables_info, .dataTables_paginate {
    margin-top: 20px !important;
    text-align: center;
}
.dataTables_info {
    text-align: left;
}
div.dataTables_wrapper div.dataTables_length select {
    width: 65px !important;
}
table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child:before, table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child:before {
    background-color: #00A0B0 !important;
    /*top: auto !important;*/
    top: 17px !important;
}
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before, table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before {
    content: '-';
    background-color: #edc951 !important;
}
.dashboardtitle {
    font-family: OpenSans-Light, "Open Sans";
    font-size: 44px !important;
    font-weight: 300;
    fill: rgb(57, 60, 64);
}
.dashboard-card {
    padding: 21px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 2px;
    overflow-y: auto;
    height: 473px;
}
.dashboard-card::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}
.dashboard-card-title {
    padding: 0px 16px 16px 16px;
    background-color:white;
}
.dashboard-card-title h2 {
    font-size: 18px;
    font-weight: 300;
    color: #393C40;
    margin-top: 15px;
}
.dashboard-body {
    vertical-align: middle !important;
}
.dashboard-card .post {
    vertical-align: middle !important;
}
/*.dashboard-notification-card {
    overflow-y: auto;
    height: 473px;
}*/
.dashboard-notification-card::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}
.dashboard-notification-card .post {
    vertical-align: middle !important;

}
.dashboard-notification-card .media-left,.dashboard-card .media-left{
    vertical-align: middle !important;
}
.dashboard-body h3 {
    font-size: 12px !important;
    font-weight: 300;
    color: rgb(57, 60, 64);
    line-height: 2.8;
}
.dashboard-body span {
    font-size: 12px !important;
    font-weight: 300;
    color: #AAAEB3;
    display:inline-block;
    width:180px;
    white-space: nowrap;
    overflow: visible !important;
    text-overflow: ellipsis;
}
.dashboard-card .pmd-list-avatar .list-group-item {
    padding-top: 8px;
    padding-bottom: 12px;
}
.badge {
    display: inline-block;
    padding: 4px 4px !important;
    font-size: 12.025px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    vertical-align: -webkit-baseline-middle;
    border-radius: 50% !important;
    height: 22px !important;
    width: 22px !important;
    background-color: #EDC951 !important;
}
.dashboard-notification-card {

    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 2px;
}
.dashboard-notification-card .dashboard-card-title {
    padding: 21px 21px 8px 28px;
    background-color:white;
}
.dashboard-menu-color span {
    opacity: 0.901098;
    font-family: OpenSans-Semibold, "Open Sans";
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.2px;
}
.user_name{
    font-family: OpenSans-Light, "Open Sans";
    font-size: 18px;
    font-weight: 300;
    fill: rgb(255, 255, 255);
}
.dropdown-submenu .dropdown-menu li a {
    stroke: none;
    fill: none;
    font-family: OpenSans, "Open Sans";
    font-size: 14px;
    font-weight: normal;
}
.recent-post ul{ margin-top:0;}
.recent-post .card-body{ min-height:289px;}
.reload{ float:right;}
.reload:hover { color: #4d575d;}
.dashboard-notification-card .post{ width: 24%; text-align:right;}
.post-time{ font-size:11px; color:#a5a4a4;}
.ns-dashboard-icons p {
    font-family: OpenSans-Semibold, "Open Sans";
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgb(71, 75, 79);
}
.upcoming_events {
    padding-right: 30px !important;
    padding-left: 12px;
}
.upcoming_events span{
    font-size: 26px;
    line-height: 1.5;
}
.dashboard-menu-color {
    color: rgb(71, 75, 79) !important;
}

.raiseRequesticon .media-body h1 {
    font-size: 44px !important;
    margin-bottom: 10px !important;
    color: #00A0B0;
    font-weight: bold;
}
.raiseRequesticon .media-body p {
    font-size: 26px ;
    color: #00A0B0;
    font-weight: normal;
}
.btnFixedBottom {
    position:relative;
    margin-top:10%;
    margin-bottom: 5%;
}
.pmd-sidebar .pmd-sidebar-nav li .dropdown-submenu .dropdown-menu li a.active {
    opacity: 1;
    color: #fff;
}
.dropdown-submenu .dropdown-menu {
    background-color: transparent;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    background-color: transparent;
}
.page-title{
    font-family: OpenSans-Light, "Open Sans";
    font-size: 44px;
    font-weight: 300;
    color: rgb(57, 60, 64);
    padding-bottom: 25px;
    margin-top: 0px;
}

.page-title-review
{
    font-family: OpenSans-Light, "Open Sans";
    font-size: 36px;
    font-weight: 300;
    color: rgb(57, 60, 64);
    padding-bottom: 25px;
    margin-top: 8px; 
}
#select-to-selectized,select-to{
    left:8px !important;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    font-family: OpenSans-Light, "Open Sans";
    font-size: 14px;
    font-weight: 300;
    color: rgb(198, 201, 207);
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-family: OpenSans-Light, "Open Sans";
    font-size: 14px;
    font-weight: 300;
    color: rgb(198, 201, 207);
}

::-ms-input-placeholder { /* Microsoft Edge */
    font-family: OpenSans-Light, "Open Sans";
    font-size: 14px;
    font-weight: 300;
    color: rgb(198, 201, 207);
}
.withdraw{
    font-family: OpenSans-Semibold, "Open Sans";
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgb(204, 51, 63);
    opacity: 0.6;
}
.delete{
    color: rgb(204, 51, 63);
    text-transform: uppercase;
}
.view{
    color:  #00A0B0;
    cursor: pointer; 
}
.text-danger{
    color: rgb(204, 51, 63) !important;
}
.dropdown-menu>.active>a, .dropdown-menu>.active>a:focus, .dropdown-menu>.active>a:hover {
    text-decoration: none;
    background-color: transparent !important; 
    outline: 0;
    font-family: OpenSans-Bold, "Open Sans" !important;
    font-size: 14px;
    font-weight: bold;
    color: rgb(237, 201, 81) !important;
    /*text-shadow: 2px 2px 1px rgba(147, 150, 150, 1);*/
    text-shadow:0px 0.07rem 2px rgb(56, 58, 58)
}
.dataTable th{
    /*text-align: center !important;*/
}
.dataTable td{
    font-family: OpenSans-Light, "Open Sans";
    font-size: 16px;
    font-weight: 300;
    color: rgb(57, 60, 64);
    /*text-align: center !important;*/
}
.req-requested{
    font-family: OpenSans, "Open Sans";
    font-size: 18px;
    font-weight: normal;
    color: rgb(237, 201, 81);
}
.request-strip{
    background-image: linear-gradient(to left, #01a3b2 11%, #1cc4e8 80%);
    color: white;
}
.row>div[class*="col-"]> .span4{
    background-color: #fcfcfc;
    padding: 10px;
}
.modalPaddingrght {
    padding-right: 5px;
}
.modalPaddingleft {
    padding-left: 5px;
}
.workflowTitle {
    font-family: OpenSans-Bold, "Open Sans";
    font-size: 26px !important;
    font-weight: bold;
    color: rgb(57, 60, 64);
}
.workflowSubtitle {
    font-family: OpenSans-Light, "Open Sans";;
    font-size: 26px  !important;
    font-weight: 300;
    color: rgb(57, 60, 64);
}
.workflowRightText {
    font-family: OpenSans-Light, "Open Sans";
    font-size: 26px !important;
    font-weight: 300;
    color: rgb(0, 160, 176);
}
.nsfloat{
    position:absolute;
    width:45px;
    height:45px;
    bottom:60px;
    right:40px;
    background-image: linear-gradient(to left, #01a3b2 11%, #1cc4e8 80%);
    color:#FFF;
    border-radius:50px;
    text-align:center;
    box-shadow: 2px 2px 3px #999;
}
.my-float{
    margin-top:13px;
}
.notification-li{
    padding: 20px 28px !important;border-top: 1px solid #ECEDEF !important;
}
.notificationhover {
    background: url('../../assets/images/notification_icon_normal.png') no-repeat 0 0;
    width: 42px;
    height: 46px;
}
.notificationhover:hover {
    background: url('../../assets/images/notification_icon_hover.png') no-repeat 0 0;
    width: 42px;
    height: 46px;
}
.pmd-radio > span.pmd-radio-label:before {
    position: absolute;
    top: 2px;
    left: 0;
    display: block;
    width: 20px;
    height: 20px;
    content: "";
    border: 1px solid rgba(29,196,233,1) !important;
    border-radius: 18px;
}
.pmd-radio > span.pmd-radio-label:after {
    position: absolute;
    top: 12px;
    left: 5px;
    display: block;
    width: 8px;
    height: 8px;
    margin-top: -5px;
    content: "";
    background: linear-gradient(225deg, rgba(0,160,176,1) 0%, rgba(29,196,233,1) 100%) !important;
    border-radius: 4px;
    transition: .2s ease-in-out;
    -ms-transform: scale(0);
    transform: scale(0);
}
.text{
    font-size: 12px;
    font-family: OpenSans-Light;
    color: rgb(71, 75, 79);
    padding-right: 12px;
}
.img {
    border-radius: 100%;
    display: flex;
    flex: 0 0 150px;
    /*height: 150px;*/
    justify-content: center;
    overflow: hidden;
    position: relative;
    /*width: 150px;*/
}
.img img {
    /*height: 100%;*/
}
.img__overlay {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.25s;
    z-index: 1;
}
.img__overlay:hover {
    opacity: 1;
}
.img__overlay {
    background-color: rgba(46,204,113,0.4);
    background: linear-gradient(65deg, rgba(46,204,113,0.4), rgba(243,156,18,0.4));
    color: #fafafa;
    font-size: 24px;
}
.showme{ 
    display: none;
}
.showhim:hover .showme{
    display : block;
}
.showhim:hover .ok{
    display : none;
}.pmd-btn-outline.btn-send-email {
    color: #00a0b0;
    background-color: transparent;
    border: solid 1px #00a0b0;
}
.pmd-btn-outline.btn-send-email:hover, .pmd-btn-outline.btn-send-email:focus{
    color: #fff;
    background-image: linear-gradient(to left, #01a3b2 11%, #1cc4e8 80%);
    border: solid 1px transparent;
}
.document-link{
    color: #00a0b0 !important;
}
.svg-icon{
    width:18px; 
    height:21px;
}
.card-footer {
    padding: 0px 16px;
    text-align: center;
    background: linear-gradient(225deg, #00a0b0 0%, #1dc4e9 100%);
}
.card-footer img{
    width: 25px;
    height: 25px;
}
.realEstatetabs .nav > li > a {
    font-family: OpenSans-Light, "Open Sans" !important;
    font-weight: 300;
    color: rgb(170, 174, 179);
}
.realEstatetabs .nav-tabs > li > a {
    text-transform: none !important;
}
.selectize-input > input {
    left: 8px !important;
}
#request_types .control-label {
    text-transform: capitalize;
}
.onduty {
    text-align: right;
    padding:10px;
    color: rgb(0, 160, 176);
    font-family: OpenSans-Semibold, "Open Sans";
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
}
#childTabs a {
    text-transform: uppercase !important;
}
.dataTables_length .form-control {
    margin-left: 10px;
    margin-right: 10px;
}
sup {
    top: 0;
}
textarea:focus,
input[type="text"]:focus,
input[type="file"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {   
    border-color: rgb(71, 75, 79);
    box-shadow: none;
    outline: 0 none;
}
.form-control {
    box-shadow: none;
}
:focus {
    outline: -webkit-focus-ring-color auto 5px;
    outline-color: -webkit-focus-ring-color;
    outline-style: auto;
    outline-width: 2px;
}
.cancel_btn {
    box-shadow: none !important;
    line-height: 1.6;
}

#outputst {
    font-family: OpenSans-Semibold, "Open Sans";
    font-size: 12px !important;
    font-weight: 500;
    letter-spacing: 2.4px;
    color: rgb(170, 174, 179);
}
.btn {
    height: 50px !important;
}
.headerbtn {
    height: 40px !important;
}
/**
*MEDIA QUERY START FROM HERE
**/
@media  (min-width: 768px) { 
    div.col-sm-7.five-three {
        width: 60% !important;
    }

    div.col-sm-5.five-two {
        width: 40% !important;
    }
}
@media (min-width: 320px) and (max-width: 480px) {
    h3, .h3 {
        font-size: 0.8rem !important;
    }
}

@media (min-width: 320px) and (max-width: 1024px) {
    .btn.prev_btn {
        margin-bottom: 10px;
    }
    .btn.cancel_btn {
        margin-bottom: 10px;
    }
    .personalbelongings .nav-tabs>li {
        margin-bottom: 10px;
    }
    .component-section .pmd-card {
        margin-bottom: 15px;
    }
    .right-addon {
        margin-bottom: 10px;
    }
    .btn.upload-layout {
        margin-bottom: 15px;
    }
    .ttl_prop{
        float: left;
    }

}
.ns-phone_no a {
    color: #393c40 !important;
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
    /* For portrait layouts only */
    .page-title {
        font-family: OpenSans-Light, "Open Sans";
        font-size: 33px;
        font-weight: 300;
        color: rgb(57, 60, 64);
        padding-bottom: 25px;
        margin-top: 0px;
    }
    .myRequestTabs .nav-tabs > li > a {
        font-size: 11px;
    }
    .raiseRequesticon .media-body h1 {
        font-size: 40px !important;
        margin-bottom: 10px !important;
        color: #00A0B0;
        font-weight: bold;
    }
    .raiseRequesticon .media-body p {
        font-size: 24px;
        color: #00A0B0;
        font-weight: normal;
    }
}
@media only screen  and (min-width : 1824px) {
    .form-control {
        box-shadow: none;    
    }
}
@media screen and (max-width: 768px) {

}

.realEstatetabs .nav > li > a {
    font-family: OpenSans-Light, "Open Sans" !important;
    font-weight: 300;
    color: rgb(170, 174, 179);
}
.realestate_title h1 {
    font-family: OpenSans-Light, "Open Sans";
    font-size: 44px !important;
    font-weight: 300;
    color: rgb(57, 60, 64);
    margin-bottom: 4px !important;
    margin-top: 0px;
}
.delete_pro {
    font-family: OpenSans-Semibold, "Open Sans";
    font-size: 10px !important;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgb(204, 51, 63) !important;
    opacity: 0.6;
}
.edit_pro {
    font-family: OpenSans-Semibold, "Open Sans";
    font-size: 10px !important;
    font-weight: 500;
    letter-spacing: 2px;
    color: #337ab7 !important;
    /*opacity: 0.6;*/
}
/*
.landing-card .media-left {
    vertical-align: middle;
    text-align: center;
    margin: 0;
    width: 70px;
    height: 70px;
    padding: 10px;
    background: linear-gradient(-126deg, #1DE9B6, #1DC4E9);
    border-radius: 50px;
    background-clip: padding-box;
    padding-right: 10px !important;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,-0.19) !important;
}*/
.landing-card h3 {
    font-size: 24px !important;
    color: rgb(57, 60, 64);    
    font-family: OpenSans-Light, "Open Sans";
    font-weight: 300;
    margin-top: 8px;
    margin-bottom: 3px;
}
.landing-card p {
    font-size: 12px;
    color: rgb(170, 174, 179);
    font-family: OpenSans-Light, "Open Sans";
}
.pmd-z-depth-1 {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0), 0 3px 6px rgba(0, 0, 0, 0.16) !important;
}

.landing-card .pmd-card-media {
   padding: 25px 25px 20px 25px;
}
.landing-card .media-body {
   width:0px;
}
/*
.landing-card .pmd-card-media {
    padding: 30px;
}
.landing-card .media-body {
    width:0px; 
    padding-left:20px;
}*/
.lifestyleTitle h1 {
    font-family: OpenSans-Light, "Open Sans";
    font-size: 26px !important;
    font-weight: 300;
    color: rgb(57, 60, 64);
    margin-bottom: 30px !important;
    margin-top: -2px;
}

@media (min-width: 320px) and (max-width: 480px) {

    .landing-card h3 {
        font-size: 19px !important;
    }
}

.logo-text {
   font-family: GeosansLight !important;
}

table#datatable tr {
    cursor: pointer;
}