@import url(../../themes/fonts.css);
@import url(../../themes/icons.css);


/* GENERAL STYLES */
*, *:after, *:before{
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body{
    height: 100%;
}
body{
    background: #f3f4f4;
    font-size: 14px;
}
body[dir="rtl"]{
    direction: rtl;
}
body,
input,
textarea{
    font-family: "Open Sans", sans-serif;
    -webkit-appearance:  none;
}
input,
textarea{
    font-size: 12px;
    background: #fff;
    padding: 0 10px;
    border-radius: 3px;
    border: 1px solid #ccc;
    display: block;
    width: 100%;
}
input[type="file"]{
    border: none;
    padding: 0;
}
input[readonly="readonly"]{
    background: rgba(255, 255, 255, .5);
    border: none;
}
input:focus,
textarea:focus{
    outline: none;
    border-color: #aaa;
}
input,
input[type="text"]{
    height: 40px;
}
input[type="date"],
input[type="datetime-local"]{
    line-height: 40px;
}
textarea{
    padding: 2px 10px;
}
textarea.body-textarea{
    min-height: 100px;
    padding:  10px;
    font-size: 12px;
}
input.isNarrow,
input[type="text"].isNarrow{
    width: 50px;
}
input.isHalf,
input[type="text"].isHalf{
    width: calc(50% - 7px);
}
input.isWide,
input[type="text"].isWide{
    width: 100%;
}
input.isSmall,
input[type="text"].isSmall{
    height: 25px;
    vertical-align: top;
}
strong{
    font-weight: 700;
}
fieldset{
    margin: 0;
    padding: 0;
    border: none;
}
textarea.isWide{
    width: 100%;
}
li{
    list-style: none;
}
::-webkit-input-placeholder { /* WebKit browsers */
    color:    #aaa;
    opacity: 1!important;
}
:-moz-placeholder { /* Firefox 18- */
   color: #aaa;
   opacity: 1!important;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #aaa;
   opacity: 1!important;
}
:-ms-input-placeholder {
  color: #aaa;
  opacity: 1!important;
}

/** clear fix */
.cf:before,
.cf:after {
    content: ""; /* 1 */
    display: table; /* 2 */
}
.cf:after {
    clear: both;
}
.cf {
    zoom: 1;
}

.np-btn {
        cursor: pointer;
        background: #3fba84;
        color: #fff;
        text-align: center;
        display: inline-block;
        border-radius: 3px;
        height: 40px;
        line-height: 40px;
        color: #fff;
        font-weight: 700;
        font-size: 12px;
        margin: 0 auto;
        font-family: "Open Sans", sans-serif;
        border: 2px solid #3fba84;
        text-transform: uppercase;
        padding: 0 20px;
        outline: none;
    }
    .np-btn.isWhite {
        border-color: #fff!important;
        color: #fff!important;
    }
    .np-btn.isXsmall{
        height: 20px;
        line-height: 20px;
        padding: 0 10px;
        font-size: 9px;
        font-weight: 600;
        border-width: 1px;
    }
    .np-btn.isSmall {
        font-size: 10px;
        border-width: 1px;
        height: 25px;
        line-height: 25px;
        padding: 0 10px;
    }
    .np-btn.isDark{
        background: #35404d;
        border: none;
    }
    .np-btn.isDark:hover{
        background: #3d4958;
        box-shadow: inset 0 -2px 0 rgba(0,0,0,.2);
    }
    .np-btn.np-btn-secondary {
        background: none;
        color: #FFF;
        border-color: #999;
    }
    .np-btn:hover{
        color: #fff;
    }
    .np-btn.np-btn-primary:hover{
        background: #289376;
        border-color: #289376;
    }
    .np-btn.np-btn-secondary:hover{
        border-color: #289376;
        color: #289376;
    }
    .np-btn.np-btn-primary:focus{
        box-shadow: inset 0 0 15px rgba(0,0,0,.3);
        border-color: rgb(32, 119, 96);
    }

    .np-btn-dtp.np-btn-secondary {
        background: none;
        color: #4c5b6e;
        border-color: #4c5b6e;
    }
    .np-btn-dtp.np-btn-primary:hover{
        background: #4c5b6e;
        border-color: #4c5b6e;
    }
    .np-btn-dtp.np-btn-secondary:hover{
        border-color: #4c5b6e;
        color: #4c5b6e;
    }
    .np-btn-dtp.np-btn-primary:focus{
        box-shadow: inset 0 0 15px rgba(0,0,0,.3);
        border-color: #4c5b6e;
    }

    .np-btn.hasIcon{
        padding: 0 10px;
    }
    .np-btn.hasIcon i{
        font-size: 18px;
        vertical-align: top;
        line-height: 25px;
        height: 26px;
    }
    .np-btn.hasIcon input,
    .np-btn.hasIcon span{
        background: none;
        cursor: pointer;
        border: none;
        color: #fff;
        height: 26px;
        display: inline-block;
        text-transform: uppercase;
        vertical-align: top;
    }


/* GENERAL CLASSES */
html:not(.compact) .root{
    min-width: 1250px;
}
.hide{
    display: none;
}
.floatLeft{
    float:left!important;
}
.floatRight{
    float:right!important;
}

.inlineBlock{
    display: inline-block;
}
.valignMiddle{
    vertical-align: middle;
}

.marginLeft10{
    margin-left: 10px!important;
}

.marginRight10{
    margin-right: 10px!important;
}

.marginBottom30{
    margin-bottom: 30px;
}
.marginBottom20{
    margin-bottom: 20px;
}
.marginBottom10{
    margin-bottom: 10px;
}
.marginTop10{
    margin-top: 10px;
}
.marginTop30{
    margin-top: 30px;
}
.margin0{
    margin: 0;
}

.padding0{
    padding: 0!important;
}
.paddintTop70{
    padding-top: 70px;
}
.positionLeft{
    position: absolute;
}

body[dir="ltr"] .positionLeft{
    left: 0;
}
body[dir="rtl"] .positionLeft{
    right: 0;
}

.noUnderline{
    text-decoration: none!important;
}

.colorGreen{
    color: #3fba84;
}
.colorGray{
    color: #999;
}

.colorRed{
    color: #c20040;
}
.isCenter {
    text-align: center;
}

/* PURE CSS CUSTOM SELECT */
.np-slct-styled{
    border: 1px solid #ccc;
    border-radius: 3px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
    height: 40px;
    padding-right: 20px;
}
.np-slct-styled:after{
    content: "";
    width: 7px;
    height: 7px;
    border-left: 1px solid #666;
    border-bottom: 1px solid #666;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform-origin: center;
    -moz-transform-origin: center;
    -webkit-transform-origin: center;
    position: absolute;
    top: 50%;
    display: block;
    margin-top: -5px;
    z-index: 0;
    right: 10px;
}
.np-slct-styled.isMulti{
    height: 150px;
    padding: 10px 0;
}
.np-slct-styled.isMulti:after{
    display: none;
}
.np-slct-styled.isMulti select{
    width: 100%!important;
    height: 100%;
}

.np-multi-slct.np-slct-styled:after{
    display: none;
}

.np-slct-styled select {
    cursor: pointer;
    padding: 0 10px;
    height: 38px;
    width: 100%;
    border: none;
    font-size: 12px;
    box-shadow: none;
    outline: 0;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    font-family: "Open Sans", sans-serif;
}
.np-slct-styled select:focus {
    outline: none;
}

.np-slct-styled.isWide{
    width: 100%;
}
.np-slct-styled.isInline{
    display: inline-block;
    vertical-align: middle;
}
.np-slct-styled.isNarrow{
    width: 100px;
}
.np-slct-styled.isTransparent{
    border: none;
    background: none;
    border-radius: 0;
}
.np-slct-styled.isDark{
    border-color: rgba(255, 255, 255, .1);
    background: rgba(0,0,0,.2);
}
.np-slct-styled.isDark select{
    color: #fff;
}
.np-slct-styled.isDark select option{
    background: rgba(32,38,46,0.7);
}
.np-slct-styled.isDark:after,
.np-slct-styled.isTransparent:after{
    border-left-color: #aaa;
    border-bottom-color: #aaa;
}

.np-slct-styled.isSmall,
.np-slct-styled.isSmall select{
    height: 25px;
    font-size: 10px;
}
.np-slct-styled.isSmall select{
    height: 23px;
}

.np-slct-styled.isLarge,
.np-slct-styled.isLarge select{
    height: 35px;
    font-size: 12px;
}

.np-slct-styled.np-icon-slct{
    height: 40px;
    width: 40px;
    border: none;
    cursor: pointer;
    padding: 0!important;
}

.np-slct-styled.np-icon-slct:hover{
    background: #f3f4f4;
    border-radius: 3px;
}

.np-slct-styled.np-icon-slct:after{
    content: "\e947";
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 40px;
    border: none;
    transform: initial;
    font-family: "icomoon";
    top: 0;
/*    left: 0;*/
    margin: 0;
    color: #666;
    font-size: 16px;
    left:0;
}

.np-slct-styled.np-icon-slct select{
    opacity: 0;
    height: 40px;
}

.np-slct-sideBySide .np-slct-styled{
    display: inline-block;
    vertical-align: top;
}
.np-slct-sideBySide .np-slct-styled + .np-slct-styled{
    padding-left: 10px;
}

/* LOGIN */
.body-login {
    background: #4c5b6e;
}
.body-login .login{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -60%);
    -moz-transform: translate(-50%, -60%);
    transform: translate(-50%, -60%);
}
.body-login .login .loginBox{
    background: #fff;
    padding: 30px;
    border-radius: 3px;
}
.body-login .loginBox img{
    margin: auto;
/*  display: block;*/
}
.login .form input {
    width: 100%;
    margin-bottom: 15px;
}
.login .form input[type="text"],
.login .form input[type="password"] {
    border: 1px solid #ccc;
    color: #333;
    background: #efefef;
    height: 40px;
    outline: none;
    font-size: 12px;
}
.body-login .np-btn{
    height: 45px;
    margin: 0;
    font-size: 16px;
}
.body-login input::-webkit-input-placeholder { /* WebKit browsers */
    color: #999;
}
.body-login input:-moz-placeholder { /* Firefox 18- */
   color: #999;
}

.body-login input::-moz-placeholder {  /* Firefox 19+ */
   color: #999;
}
.body-login input:-ms-input-placeholder {
  color: #999;
}
.body-login .rightsReserved{
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, .3);
}
.body-login .rightsReserved a{
    color: #fff;
}
.body-login .logInSocialMediaFollow {
    text-align: center;
    padding: 20px;
}
.body-login .logInSocialMediaFollow a {
    display: inline-block;
    vertical-align: middle;
    background: rgba(0,0,0,.2);
    border-radius: 20px;
    width: 40px;
    height: 40px;
    margin: 5px;
    color: rgba(255, 255, 255, .4);
    line-height: 40px;
    font-size: 20px;
}
.body-login .logInSocialMediaFollow a:hover {
    color: #fff;
}
.body-login .inline-message{
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    padding: 15px 10px;
}
.body-login .inline-message.red_message{
    background: #aa0020;
}


.navbar-grey
{
    background-color: grey;
}

.np-logo
{
    background: url('../imgs/np5_logo.png') no-repeat 100%;
    background-size: contain;
    width: 150px;
    height: 45px;
    margin-left: 10px;
}

#selectWrapper
{
    padding: 0 10px 20px 10px;
}



.colorC1 {
    color: #000000;
}

.textL6 {
    font-size: 12px;
    font-weight: bold;
}

*::-moz-placeholder {
    color: #aaa;
}

.center
{
    margin: 0 auto !important;
}

.mobileOnly
{
    font-size: 26px;
    margin-top: 30%;
    text-align: center;
}

.rightsReserved
{
    margin: 10px auto 0;
    text-align: center;
}

.colorC4
{
    color: #6e6e6e;
}

.textL2
{
    font-size: 10px;
    font-weight: bold;
}

.articleContainer
{
    padding:10px;
}

.AjaxLoader
{
    display: none;
    text-align: center;
}
.AjaxLoader img{
    width: 25px;
    height: 25px;
}
/*
* Overriding bootstrap classes
*/
.well
{
    padding:8px;
    margin-bottom:5px;
}
.container
{
    padding-top:70px;
    padding-bottom: 10px;
}
.page-header{
    margin: 20px 0 0 0;
}

.table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th{
    border-top: none;
}

.btn{
    margin-top: 10px;
}

#MANAGE_ARTICLE fieldset:not(:first-of-type) {
    display: none;
}

.fileinput-button, .progress{
    width: 100%;
}

/*#files div {
    width: 33.33%;
    display: inline-block;
}*/
.imgDiv
{
    height: 75px;
    overflow: hidden;
}
.linkedImages div.col-xs-4{
    height: 120px;
}

.linkedImagesView img{
    height: 105px;
    margin: 0 auto;
}

.removeImage{
    position: relative;
    width: 100%;
    margin-top: 2px;
    margin-bottom: 15px;
}
ul.holder li {
    float: left;
    height: 25px;
    list-style-type: none;
    margin: 0;
    white-space: nowrap;
}

ul.holder li.bit-box {
        background: #666;
    border-radius: 3px;
    padding: 0 30px 0 10px;
    font-size: 12px;
    margin: 0 5px;
    min-height: 0;
    height: 30px;
    line-height: 30px;
}
ul.holder li.bit-box a{
    color: #fff;
    width: auto;
    display: inline-block;
    position: unset!important;
    right: 0;
    padding: 0 5px;
    height: 100%;
    text-align: center;
    width: 30px;
    text-decoration: none;
    background: transparent;
}
ul.holder li.bit-box, #apple-list ul.holder li.bit-box {
    padding-right: 0px !important;
    background-color: #666!important;
    color: #fff!important;
    position: relative;
    z-index: 1000;
    width: unset;
}
ul.holder li.bit-box a.fonticon-cancel, #apple-list ul.holder li.bit-box a.fonticon-cancel{
    position: unset!important;
}

.maininput{
    width: 200px !important;
    background-color: transparent !important;
    border: none !important;
}
.facebook-auto{
    width: 100% !important;
}
.facebook-auto .default {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #ccc;
    border-image: none;
    border-style: solid;
    border-width: 0 1px 1px;
    color: #000000;
    font-size: 11px;
    padding: 5px 7px;
}
.facebook-auto ul {
    display: none;
    margin: 0;
    overflow: auto;
    padding: 0;
    position: absolute;
    z-index: 9999;
    width: 100% !important;
}

.facebook-auto ul li {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #eee;
    border-color: #ccc;
    border-image: none;
    border-style: solid;
    border-width: 0 1px 1px;
    color: #000000;
    cursor: pointer;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    z-index: 1000;
}
ul.holder {
    height: auto !important;
    max-height: none !important;
}

.unreadComments{
    background-color: red;
}

.files video{
    width: 100%;
}

.container-fluid>.navbar-header{
    height: 50px;
}
.navbar-default{
    background: #4c5b6e;
    border: none;
}

.navbar-header{
	display: flex;
	flex-flow: row;
	width: 100%;
	margin-right: 0;
	margin-left: 0;
	align-items: center;
	justify-content: center;
}

.navbar .logo{
    height: 34px;

}
.navbar-toggle{
    float: none;
    position: absolute;
    right: 0;
}
a.header-btn{
    position: fixed;
    top: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 22px;
    z-index: 2000;
}
.nav-back,
.nav-close {
    left: 0;
}
.nav-logout{
    right: 0;

}

.nav-logout{
	width: 25px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}
.nav-logout a{
	text-decoration: none;
	color: #fff;
	font-size: 23px;
}

.nav-back:before{
    content: "";
    width: 15px;
    height: 15px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
    margin: 18px 0 0 20px;
}

.nav-close{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);

}
.nav-close:before,
.nav-close:after{
    content: "";
    background: #fff;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
}
.nav-close:before{
    width: 2px;
    height: 24px;
    margin: -12px 0 0 -1px;
}
.nav-close:after{
    width: 24px;
    height: 2px;
    margin: -1px 0 0 -12px;
}

.np-card{
    background: #fff;
    border: none;
}
.panel{
    margin-bottom: 10px;
}
.panel-default.np-card>.panel-heading{
    background: none;
    border: none;
    padding: 15px;
}
.np-card h4,
.np-card h5{
font-weight: 700;
    line-height: 1.5em;
}
.np-card h4 {
    font-size: 16px;
}
.np-card h5{
    font-size: 14px;
}
.np-card time{
    font-size: 11px;
}
.np-card li + li {
    margin-top: 6px;
}
.panel-group .panel+.panel{
    margin-top: 10px;
}

.sticky-top{
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: #353e4e;
}
.sticky-top + *{
    padding-top: 200px;
}
.sticky-top.nav-tabs + *{
    padding-top: 50px;
}
.filters{
    padding: 15px;
}

.nav-tabs.nav a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    padding: 15px;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
}
.nav-tabs a.active {
    color: #fff;
}
.nav-tabs>li>a:hover {
    background: none;
    border-color: transparent;
    color: #fff;
}
.nav-tabs .np-btn{
    margin: 11px 15px 0 0;
}

.article-details .panel-group + .panel-group {
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.article-meta-data {
    font-size: 11px;
}
.article-subtitle:not(:empty){
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.np-card h4.article-title{
    font-size: 20px;
    line-height: 1.2em;
}
.article-meta-data ul{
    padding-top: 10px;
}
.article-meta-data li + li {
    margin-top: 4px;
}
.article-meta-data strong {
    text-transform: capitalize;
}

.caption{
    font-size: 11px;
    padding-top: 5px;
}

.comment-details,
.logs-details{
    font-size: 12px;
}
.logs-listing a{
    color: #333;
}

/* FLOATING BTN */
.fb-btn-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  height: 70px;
}

a.fb-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  border-radius: 50%;
  background-color: #3fba84;
  vertical-align: middle;
  text-decoration: none;
  text-align: center;
  transition: 0.2s ease-out;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  color: #FFF;
}
a.fb-btn.fb-btn-facebook,
a.fb-btn.fb-btn-twitter{
    font-size: 24px;
}
.fb-btn-wrap.open a.fb-btn-main {
  background-color: #289376;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
}

a.fb-btn-main {
    width: 70px;
    height: 70px;
    line-height: 73px;
    font-size: 24px;
}
.fb-btn-wrap.open a.fb-btn-main{
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
}

.fb-menu {
  position: absolute;
  right: 0;
  bottom: 100%;

  width: 100%;
  list-style: none;
  text-align: center;
}

.fb-menu li {
  display: inline-block;
  margin-bottom: 10px;
}

.scale-transition { transition: transform 0.3s cubic-bezier(0.53, 0.01, 0.36, 1.63) !important; }

.scale-transition.scale-out {
  transform: scale(0);
  transition: transform 0.2s !important;
}

.pagesSearch label{
	color: white;
}

.pagesManager{
	width: 100px;
	display: flex;
/*	align-items: center;*/
	justify-content: normal;
}
.pagesManager a{
	color: white;
	text-decoration: none;
	font-size: 14px;
}

.articlesHeader{
	width: calc(100% - 25px - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
}



.page-title{
    background: #4c5b6e;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1999;
    height: 50px;
    text-align: center;
    color: #fff;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
}
.sticky-btns{
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,.1);
}
.add-article{
    padding-bottom: 70px;
}
.add-article .panel{
    background: none;
        border: none;
    box-shadow: none;
}

/* Autocomplete */
.np-slct-styled.np-autocomplete{
    overflow: visible;
    min-height: 40px;
    height: auto;
}
.np-slct-styled.np-autocomplete:after{
    display: none;
}

.np-autocomplete .holder{
	font-size: 12px;
/*    background: #fff;*/
    border-radius: 3px;
    border: none;
    margin: 0;
    min-height: 38px;
    padding: 3px;
}
.np-autocomplete.isNotRoundedCorner .holder{
    border-radius: 3px;
}
.np-autocomplete.isWide .holder{
    width: 100%;
}
.np-autocomplete .holder .bit-input {
    display: inline-block;
}
.np-autocomplete .holder .bit-box .closebutton {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    font-size: 16px;
}
.np-autocomplete.isSmall input,
.np-autocomplete.isSmall input[type="text"]{
    height: 25px;
}

/* Checkbox & Radio component */
    .np-checkbox,
    .np-radiobtn{
        display: inline-block;
        vertical-align: middle;
        border: 1px solid #ccc;
        width: 25px;
        height: 25px;
        background: #eee;
        cursor: pointer;
        position: relative;
        margin-right: 5px;
    }
    .np-checkbox label{
        font-size: 10px;
        position: static;
        text-transform: uppercase;
        line-height: 23px;
        padding: 0 5px;
        border-radius: 2px;
        text-align: center;
    }
    .np-checkbox input:checked + label {
        color: #fff;
    }
    .np-checkbox input:checked + label:before{
        display: none;

    }
    .np-checkbox input,
    .np-radiobtn input{
        display: none;
    }
    .np-checkbox label,
    .np-radiobtn label{
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
        left :0;
    }
    .np-checkbox label:before,
    .np-radiobtn label:before{
        display: none;
        content: "";
        position: absolute;
        cursor: pointer;
    }
    .np-checkbox label:before{
        top: 7px;
        left: 7px;
        width: 10px;
        height: 6px;
        line-height: 18px;
        text-align: center;
        border-left: 2px solid #666;
        border-bottom: 2px solid #666;

        transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);

        transform-origin: center;
        -moz-transform-origin: center;
        -webkit-transform-origin: center;
    }
    .np-checkbox input:checked + label:before{
        display: block;
    }
    .np-checkbox input[disabled="disabled"] + label{
        cursor: default;
    }

    #articleResults{
        padding-bottom: 50px;
    }

    .file-uploaded{
        position: relative;
    }
    .file-uploaded canvas,
    .file-name{
        display: inline-block;
        vertical-align: middle;
    }
    .file-uploaded canvas{
        width: 80px;
        margin-right: 10px;
    }
    .file-uploaded + .file-uploaded{
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }
    .file-uploaded .pluginDelete{
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        font-size: 20px;
        color: #999;
    }
    .uploaded-img{
        position: relative;
    }
    .uploaded-img img{
        width: 100%;
    }
    .uploaded-img .deleteTemp{
        position: absolute;
        top: 0;
        right: 10px;
        background: #fff;
        font-size: 20px;
        box-shadow: -1px 1px 4px rgba(0,0,0,.2);
        width: 30px;
        height: 30px;
        text-align: center;
        color: #999;
    }

    .np-inline-notification{
        display: block;
        position: absolute;
        left: 50%;
        margin: 0 auto;
        bottom: -40px;
        z-index: 10001;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        background: rgba(76,91,110,0.8);
        border-radius: 30px;
        padding: 0 20px;
        line-height: 34px;
        color: #fff;
        width: 200px;
        text-align: center;
        margin-right: 5px;
    }

/*********** albilad login style ********/

/* mobile */

.albilad_style_2.body-login {
background: black !important;
}

.albilad_style_2 .mobileOnly{
margin-top: 15% !important;
margin-bottom: 15% !important;
color: white !important;
font-size:18px !important;
}


.albilad_style_2 .rightsReserved, .albilad_style_2 .rightsReserved * {
color: white !important;
font-size: 11px !important;
padding-bottom: 20px;
}

@media (max-width:767px) {

.albilad_style_2.body-login {
 background: white !important;
 }

 .albilad_style_2 .marginBottom30{
 margin-bottom: 0px !important;
 margin-top: -66px !important;
 }

 .albilad_style_2 .rightsReserved, .albilad_style_2 .rightsReserved *{
 color: black !important;
 }

 .albilad_style_2 img#MOBILE_LOGO{
 filter: invert(1) !important;
 }

}

.albilad_style_2 #loginForm input#USERNAME, .albilad_style_2  #loginForm input#PASSWORD{
background: white !important;
border-radius: 0px !important;
}

.albilad_style_2 .loginBox input:focus{
border: 2px solid black !important;
}

.albilad_style_2 #loginForm [name="loginSubmit"].np-btn-primary:active{
background: #333 !important;
color: white !important;
border: 1px solid #ccc !important;
}

.albilad_style_2 #loginForm [name="loginSubmit"]{
background: black !important;
border-color: black !important;
color: white !important;
border-radius: 0px !important;
font-size: 12px !important;
font-weight: normal !important;
}


.albilad_style_2 .loginContent{
max-width: 377px !important;
margin: 0 auto !important;
}

@media (min-width:768px) {
.albilad_style_2 #COPYRIGHT_LOGO{
filter: invert(0.6) !important;
 }
}
.media_gallery_browser{
    background: white;
    position: fixed;
    top: 10px;
    left: 10px;
    width: calc(100vw - 20px);
    height: calc(100vh - 20px);
    z-index: 1000;
    padding: 10px;
    box-shadow: 0px 0px 5px rgba(0,0,0,.3);
    border-radius: 3px;
    display: none;
}