@import url(http://fonts.googleapis.com/css?family=Open+Sans:800,800italic,700italic,700,600italic,600,400italic,400,300italic,300);

/* Global Reset & Standards ---------------------- */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
hgroup,
menu,
footer,
header,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Open Sans', sans-serif;

}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px white inset
}

html {
    -webkit-text-size-adjust: 100%;
    /* Automatically adjusted for Safari on iPhone. */
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}

article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
    display: block;
}

fieldset,
img {
    border: 0;
}

html,
body {
    height: 100%;
    background: #efefef;
}

body {
    line-height: 1.42857;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: relative;
}

/* Links ---------------------- */
a {
    color: #0c994e;
    text-decoration: none;
    line-height: inherit;
    outline: none;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

p a,
p a:visited {
    line-height: inherit;
}


/* Reset for strange margins by default on <figure> elements */
figure {
    margin: 0;
}

/* Lists ---------------------- */
ul,
ol,
dl {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul li ul,
ul li ol {
    margin-left: 20px;
    margin-bottom: 0;
}

ol li ul,
ol li ol {
    margin-left: 20px;
    margin-bottom: 0;
}

/* headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
    font-family: 'Open Sans', sans-serif;
    text-transform: capitalize;
    color: #555;
    padding: 0 0 10px 0;
}

h1 {
    font-size: 24px;
    padding: 0;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 15px;
}


/* inpput */
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}


strong {
    font-weight: 700;
}

/* Misc ---------------------- */
.left {
    float: left !important;
}

.right {
    float: right !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.hide {
    display: none !important;
}

.highlight {
    background: #ffff99;
}

.nomargin {
    margin: 0 !important;
}

.nopadding {
    padding: 0 !important;
}

.nopadding_bottom {
    padding-bottom: 0 !important;
}

.noborder {
    border: none !important;
}

.none_transition {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.clearfix {}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.gap {
    height: 15px;
    display: block;
    clear: both;
}

.aligncenter {
    text-align: center !important;
}

.clear {
    clear: both;
    display: block;
}

.nobackground {
    background: none !important;
}

.nomargin_bottom {
    margin-bottom: 0 !important;
}

.nomargin_right {
    margin-right: 0 !important;
}


input,
select,
textarea {
    outline: none;
}

input[type="submit"],
input[type="button"] {
    -webkit-appearance: none;
}

input[type="text"],
input[type="password"],
textarea {
    -webkit-appearance: none;
}


p {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 22px;
    margin: 0 0 15px 0;
}

::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #959595;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #959595;
    opacity: 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #959595;
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #959595;
}


/******************************************************
	wave ripple effects
******************************************************/

/*.ink styles - the elements which will create the ripple effect. The size and position of these elements will be set by the JS code. Initially these elements will be scaled down to 0% and later animated to large fading circles on user click.*/
.ink {
    display: block;
    position: absolute;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
}

/*animation effect*/
.ink.animate {
    -webkit-animation: ripple 0.65s linear;
    animation: ripple 0.65s linear;
}

@keyframes ripple {

    /*scale the element to 250% to safely cover the entire link and fade it out*/
    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
}

@-webkit-keyframes ripple {

    /*scale the element to 250% to safely cover the entire link and fade it out*/
    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
}




/******************************************************
	CUSTOM BTN VALUES
******************************************************/

.themebtn {
    font-size: 14px;
    border-radius: 3px;
    display: inline-block;
    padding: 0 25px;
    border: 0 none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    vertical-align: middle;
    border: none;
    height: 36px;
    line-height: 36px;
}

.themebtn:focus,
.themebtn:active:focus,
.themebtn.active:focus {
    outline: 0 none;
}


/******************************************************
	STANDARD BUTTONS
******************************************************/

.btn-default {
    background: #ffffff;
    /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #f3f3f3 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f3f3f3));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%, #f3f3f3 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%, #f3f3f3 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%, #f3f3f3 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, #ffffff 0%, #f3f3f3 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f3f3f3', GradientType=0);
    /* IE6-9 */
    border: 1px solid #d6d6d6;
    color: #737373;

}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    border-color: #c6c6c6;
    color: #737373;
}

.btn-default:active,
.btn-default.active {
    border-color: #c6c6c6;
    box-shadow: none;
}

.btn-primary {
    background: #0099cc;
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background: #33a6cc;
}

.btn-primary:active,
.btn-primary.active {
    background: #007299;
    box-shadow: none;
}

.btn-success {
    background: #00bf6f;
    color: #ffffff;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
    background: #39bf87;
}

.btn-success:active,
.btn-success.active {
    background: #008c52;
    box-shadow: none;
}

.btn-info {
    background: #31cde8;
    color: #ffffff;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
    background: #5fd4e8;
}

.btn-info:active,
.btn-info.active {
    background: #35a2b5;
    box-shadow: none;
}

.btn-warning {
    background: #eb8f34;
    color: #ffffff;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open > .dropdown-toggle.btn-warning {
    background: #eba259;
}

.btn-warning:active,
.btn-warning.active {
    background: #b87430;
    box-shadow: none;
}

.btn-danger {
    background: #f25454;
    color: #ffffff;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open > .dropdown-toggle.btn-danger {
    background: #f26d6d;
}

.btn-danger:active,
.btn-danger.active {
    background: #bf4343;
    box-shadow: none;
}

/******************************************************
	SHARP BUTTONS
******************************************************/

.themebtn.sharp {
    border-radius: 0;
}

/******************************************************
	OUTLINE BUTTONS
******************************************************/
.themebtn.outline {
    line-height: 30px;
    background: none;
    /*	padding: 10px 22px;*/
}

.btn-primary.outline {
    border: 2px solid #0099cc;
    color: #0099cc;
}

.btn-primary.outline:hover,
.btn-primary.outline:focus,
.btn-primary.outline:active,
.btn-primary.outline.active,
.open > .dropdown-toggle.btn-primary {
    color: #33a6cc;
    border-color: #33a6cc;
}

.btn-primary.outline:active,
.btn-primary.outline.active {
    border-color: #007299;
    color: #007299;
    box-shadow: none;
}

.btn-success.outline {
    border: 2px solid #00bf6f;
    color: #00bf6f;
}

.btn-success.outline:hover,
.btn-success.outline:focus,
.btn-success.outline:active,
.btn-success.outline.active,
.open > .dropdown-toggle.btn-success {
    border-color: #39bf87;
    color: #39bf87;
}

.btn-success.outline:active,
.btn-success.outline.active {
    border-color: #008c52;
    color: #008c52;
    box-shadow: none;
}

.btn-info.outline {
    border: 2px solid #31cde8;
    color: #31cde8;
}

.btn-info.outline:hover,
.btn-info.outline:focus,
.btn-info.outline:active,
.btn-info.outline.active,
.open > .dropdown-toggle.btn-info {
    border-color: #5fd4e8;
    color: #5fd4e8;
}

.btn-info.outline:active,
.btn-info.outline.active {
    border-color: #35a2b5;
    color: #35a2b5;
    box-shadow: none;
}

.btn-warning.outline {
    border: 2px solid #eb8f34;
    color: #eb8f34;
}

.btn-warning.outline:hover,
.btn-warning.outline:focus,
.btn-warning.outline:active,
.btn-warning.outline.active,
.open > .dropdown-toggle.btn-warning {
    border-color: #eba259;
    color: #eba259;
}

.btn-warning.outline:active,
.btn-warning.outline.active {
    border-color: #b87430;
    color: #b87430;
    box-shadow: none;
}

.btn-danger.outline {
    border: 2px solid #f25454;
    color: #f25454;
}

.btn-danger.outline:hover,
.btn-danger.outline:focus,
.btn-danger.outline:active,
.btn-danger.outline.active,
.open > .dropdown-toggle.btn-danger {
    border-color: #f26d6d;
    color: #f26d6d;
}

.btn-danger.outline:active,
.btn-danger.outline.active {
    border-color: #bf4343;
    color: #bf4343;
    box-shadow: none;
}

/******************************************************
	GRADIENT BUTTONS
******************************************************/
.btn-primary.gradient {
    background: -moz-linear-gradient(top, #33a6cc 50%, #0099cc 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #33a6cc), color-stop(50%, #0099cc));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #33a6cc 50%, #0099cc 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #33a6cc 50%, #0099cc 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #33a6cc 50%, #0099cc 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #33a6cc 50%, #0099cc 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#33a6cc', endColorstr='#0099cc', GradientType=0);
    /* IE6-9 */
}

.btn-primary.gradient:hover,
.btn-primary.gradient:focus,
.btn-primary.gradient:active,
.btn-primary.gradient.active,
.open > .dropdown-toggle.btn-primary {
    background: -moz-linear-gradient(top, #66b2cc 50%, #33a6cc 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #66b2cc), color-stop(50%, #33a6cc));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #66b2cc 50%, #33a6cc 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #66b2cc 50%, #33a6cc 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #66b2cc 50%, #33a6cc 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #66b2cc 50%, #33a6cc 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66b2cc', endColorstr='#33a6cc', GradientType=0);
    /* IE6-9 */
}

.btn-primary.gradient:active,
.btn-primary.gradient.active {
    background: -moz-linear-gradient(top, #267c99 50%, #007299 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #267c99), color-stop(50%, #007299));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #267c99 50%, #007299 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #267c99 50%, #007299 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #267c99 50%, #007299 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #267c99 50%, #007299 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#267c99', endColorstr='#007299', GradientType=0);
    /* IE6-9 */
}

.btn-success.gradient {
    background: -moz-linear-gradient(top, #39bf87 50%, #00bf6f 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #39bf87), color-stop(50%, #00bf6f));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #39bf87 50%, #00bf6f 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #39bf87 50%, #00bf6f 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #39bf87 50%, #00bf6f 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #39bf87 50%, #00bf6f 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#39bf87', endColorstr='#00bf6f', GradientType=0);
    /* IE6-9 */
}

.btn-success.gradient:hover,
.btn-success.gradient:focus,
.btn-success.gradient:active,
.btn-success.gradient.active,
.open > .dropdown-toggle.btn-success {
    background: -moz-linear-gradient(top, #73bf9f 50%, #39bf87 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #73bf9f), color-stop(50%, #39bf87));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #73bf9f 50%, #39bf87 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #73bf9f 50%, #39bf87 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #73bf9f 50%, #39bf87 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #73bf9f 50%, #39bf87 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#73bf9f', endColorstr='#39bf87', GradientType=0);
    /* IE6-9 */
}

.btn-success.gradient:active,
.btn-success.gradient.active {
    background: -moz-linear-gradient(top, #2a8c63 50%, #008c52 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #2a8c63), color-stop(50%, #008c52));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #2a8c63 50%, #008c52 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #2a8c63 50%, #008c52 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #2a8c63 50%, #008c52 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #2a8c63 50%, #008c52 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2a8c63', endColorstr='#008c52', GradientType=0);
    /* IE6-9 */
}

.btn-info.gradient {
    background: -moz-linear-gradient(top, #5fd4e8 50%, #31cde8 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #5fd4e8), color-stop(50%, #31cde8));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #5fd4e8 50%, #31cde8 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #5fd4e8 50%, #31cde8 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #5fd4e8 50%, #31cde8 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #5fd4e8 50%, #31cde8 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5fd4e8', endColorstr='#31cde8', GradientType=0);
    /* IE6-9 */
}

.btn-info.gradient:hover,
.btn-info.gradient:focus,
.btn-info.gradient:active,
.btn-info.gradient.active,
.open > .dropdown-toggle.btn-info {
    background: -moz-linear-gradient(top, #8edae8 50%, #5fd4e8 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #8edae8), color-stop(50%, #5fd4e8));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #8edae8 50%, #5fd4e8 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #8edae8 50%, #5fd4e8 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #8edae8 50%, #5fd4e8 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #8edae8 50%, #5fd4e8 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8edae8', endColorstr='#5fd4e8', GradientType=0);
    /* IE6-9 */
}

.btn-info.gradient:active,
.btn-info.gradient.active {
    background: -moz-linear-gradient(top, #6baab5 50%, #35a2b5 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #6baab5), color-stop(50%, #35a2b5));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #6baab5 50%, #35a2b5 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #6baab5 50%, #35a2b5 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #6baab5 50%, #35a2b5 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #6baab5 50%, #35a2b5 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6baab5', endColorstr='#35a2b5', GradientType=0);
    /* IE6-9 */
}

.btn-warning.gradient {
    background: -moz-linear-gradient(top, #eba259 50%, #eb8f34 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eba259), color-stop(50%, #eb8f34));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #eba259 50%, #eb8f34 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #eba259 50%, #eb8f34 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #eba259 50%, #eb8f34 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #eba259 50%, #eb8f34 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eba259', endColorstr='#eb8f34', GradientType=0);
    /* IE6-9 */
}

.btn-warning.gradient:hover,
.btn-warning.gradient:focus,
.btn-warning.gradient:active,
.btn-warning.gradient.active,
.open > .dropdown-toggle.btn-warning {
    background: -moz-linear-gradient(top, #ebb57f 50%, #eba259 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #ebb57f), color-stop(50%, #eba259));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ebb57f 50%, #eba259 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ebb57f 50%, #eba259 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ebb57f 50%, #eba259 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #ebb57f 50%, #eba259 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ebb57f', endColorstr='#eba259', GradientType=0);
    /* IE6-9 */
}

.btn-warning.gradient:active,
.btn-warning.gradient.active {
    background: -moz-linear-gradient(top, #b8824d 50%, #b87430 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #b8824d), color-stop(50%, #b87430));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #b8824d 50%, #b87430 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #b8824d 50%, #b87430 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #b8824d 50%, #b87430 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #b8824d 50%, #b87430 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b8824d', endColorstr='#b87430', GradientType=0);
    /* IE6-9 */
}

.btn-danger.gradient {
    background: -moz-linear-gradient(top, #f26d6d 50%, #f25454 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f26d6d), color-stop(50%, #f25454));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f26d6d 50%, #f25454 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f26d6d 50%, #f25454 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f26d6d 50%, #f25454 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #f26d6d 50%, #f25454 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f26d6d', endColorstr='#f25454', GradientType=0);
    /* IE6-9 */
}

.btn-danger.gradient:hover,
.btn-danger.gradient:focus,
.btn-danger.gradient:active,
.btn-danger.gradient.active,
.open > .dropdown-toggle.btn-danger {
    background: -moz-linear-gradient(top, #f28585 50%, #f26d6d 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f28585), color-stop(50%, #f26d6d));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f28585 50%, #f26d6d 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f28585 50%, #f26d6d 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f28585 50%, #f26d6d 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #f28585 50%, #f26d6d 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f28585', endColorstr='#f26d6d', GradientType=0);
    /* IE6-9 */
}

.btn-danger.gradient:active,
.btn-danger.gradient.active {
    background: -moz-linear-gradient(top, #bf5656 50%, #bf4343 50%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #bf5656), color-stop(50%, #bf4343));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #bf5656 50%, #bf4343 50%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #bf5656 50%, #bf4343 50%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #bf5656 50%, #bf4343 50%);
    /* IE10+ */
    background: linear-gradient(to bottom, #bf5656 50%, #bf4343 50%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bf5656', endColorstr='#bf4343', GradientType=0);
    /* IE6-9 */
}

/******************************************************
	ROUNDED BUTTONS
******************************************************/

.themebtn.round {
    border-radius: 24px;
}

.btn-lg.round {
    border-radius: 32px;
}

.btn-sm.round {
    border-radius: 14px;
}

.btn-xs.round {
    border-radius: 10px;
}

/******************************************************
	RAISED BUTTONS
******************************************************/

.btn-primary.raised {
    box-shadow: 0 3px 0 0 #007299;
}

.btn-primary.raised:active,
.btn-primary.raised.active {
    background: #33a6cc;
    box-shadow: none;
    margin-bottom: -3px;
    margin-top: 3px;
}

.btn-success.raised {
    box-shadow: 0 3px 0 0 #008c52;
}

.btn-success.raised:active,
.btn-success.raised.active {
    background: #39bf87;
    box-shadow: none;
    margin-bottom: -3px;
    margin-top: 3px;
}

.btn-info.raised {
    box-shadow: 0 3px 0 0 #35a2b5;
}

.btn-info.raised:active,
.btn-info.raised.active {
    background: #5fd4e8;
    box-shadow: none;
    margin-bottom: -3px;
    margin-top: 3px;
}

.btn-warning.raised {
    box-shadow: 0 3px 0 0 #b87430;
}

.btn-warning.raised:active,
.btn-warning.raised.active {
    background: #eba259;
    box-shadow: none;
    margin-bottom: -3px;
    margin-top: 3px;
}

.btn-danger.raised {
    box-shadow: 0 3px 0 0 #bf4343;
}

.btn-danger.raised:active,
.btn-danger.raised.active {
    background: #f26d6d;
    box-shadow: none;
    margin-bottom: -3px;
    margin-top: 3px;
}

.btn-inverse {
    background-color: #454545;
    border-color: transparent;
    color: #ffffff;
}

.btn-grey {
    background-color: #999;
    border-color: transparent;
    color: #ffffff;
}

/******************************************************
	BUTTON SIZING
******************************************************/

.btn-xs,
.btn-group-xs > .themebtn {
    font-size: 11px;
    height: auto;
    line-height: normal;
    padding: 4px 6px;
}

.btn-sm,
.btn-group-sm > .themebtn {
    font-size: 12px;
    height: auto;
    line-height: normal;
    padding: 8px 15px;

}

.btn-sm.themebtn.btn-default {
    height: auto;
}

.btn-lg {
    padding: 20px 40px;
    height: auto;
    border-radius: 4px;
}

.btn-xs.btn-default,
.btn-xs.outline {
    padding: 3px 6px;
}

/*.btn-sm.btn-default, .btn-sm.outline {
	padding: 6px 10px;
}*/
/*
.btn-lg.btn-default, .btn-lg.outline {
	padding: 18px 38px;
}
*/

.themebtn.block {
    display: block;
    width: 100%;
    text-align: center;
}



/* grids */
.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
    display: inline;
    float: left;
    margin: 0;
    padding: 0;
    position: relative;
}

.full_grid {
    width: 100%;
}

.half_grid {
    width: 50%;
}

.one_third_grid {
    width: 33.3%;
}

.one_fourth_grid {
    width: 25%;
}

.one_fifth_grid {
    width: 20%;
}

.one_sixth_grid {
    width: 16.6%;
}



.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

@media (min-width: 768px) {

    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }
}

@media (min-width: 992px) {

    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }
}

@media (min-width: 1200px) {

    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }
}

.show-grid [class^="col-"] {
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    padding-top: 10px;
}

.show-grid .row {
    margin: 0;
}

.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block {
    display: none !important;
}


/* container */
.fixed_container {
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
}

.fixed_container:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
}

.row {
    margin-left: -10px;
    margin-right: -10px;
}

/* nav panel */
.navPanel {
    text-align: right;
}

.navPanel:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
}

/*body */
#body {
    padding: 55px 0 0;
}


/* Header */
#header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 120;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.headerwrap {
    display: table;
    width: 100%;
    background: #2196f3;
    table-layout: fixed;
    height: 55px;
}

.headerwrap .one_third_grid {
    display: table-cell;
    vertical-align: middle;
}

.headerwrap .one_third_grid.logo a {
    display: table;
    margin: 0 auto;
}

.headerwrap .one_third_grid.logo img {
    height: 55px;
    padding: 8px;
    display: block;
}


.menutrigger {
    height: 55px;
    width: 65px;
    padding: 0 20px;
    position: relative;
    display: block;
    text-align: center;
    line-height: 55px;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

.menutrigger:before {
    content: "\f20e";
    font-size: 32px;
    color: #fff;
    font-family: "Ionicons";
    position: absolute;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
    left: 20px;
}

.menutrigger.active {
    background-color: rgba(0, 0, 0, 0.1);
}

.menutrigger.active:before {
    content: "\f30f";
    font-size: 32px;
    color: #fff;
    font-family: "Ionicons";
    position: absolute;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.logout {
    float: right;
    background-color: rgba(0, 0, 0, 0.1);
    height: 55px;
    width: 65px;
    padding: 0 20px;
    position: relative;
    display: block;
    text-align: center;
    line-height: 55px;
}

.logout:before {
    content: "\f2a9";
    font-size: 18px;
    color: #fff;
    font-family: "Ionicons";
    position: absolute;
    left: 26px;
}

.iconmenus {
    float: right;
    padding: 9px 0 9px 9px;
    list-style: none;
    margin: 0;
}

.iconmenus > li {
    float: left;
    position: relative;
    margin: 0 5px;
}

.iconmenus > li > a {
    width: 40px;
    height: 35px;
    display: block;
    text-align: center;
    line-height: 38px;
    border-radius: 3px;
    position: relative;
}

.iconmenus > li > a .counts {
    line-height: normal;
    padding: 0 5px 1px;
    font-size: 10px;
    color: #fff;
    border-radius: 3px;
    background: #f44336;
    position: absolute;
    right: 4px;
    top: 2px;
    z-index: 1;
}

.iconmenus > li > a .icon {
    color: #fff;
    font-size: 21px;
    line-height: 1;
    z-index: 1;
    position: relative;
}

.iconmenus > li > a:before {
    left: 0;
    top: 0;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform: scale3d(0, 0, 0);
    -moz-transform: scale3d(0, 0, 0);
    -ms-transform: scale3d(0, 0, 0);
    -o-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
    -webkit-transition: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 0;
    border-radius: 3px;
}

.iconmenus > li a:hover:before,
.iconmenus > li a:focus:before,
.iconmenus > li.active a:before {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.iconmenus > li.searchtoggle.active a:before {
    display: none;
}

.iconmenus > li .subnav {
    min-width: 200px;
    padding: 10px;
    right: 0;
    top: 100%;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
}

.iconmenus > li.active .subnav {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
}





.searchwrap {
    display: none;
    width: 100%;
    background: #2196f3;
    height: 55px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    padding: 11px;
    z-index: 10;
}

.searchwrap .searchform {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.searchwrap .searchform:before {
    content: "\f2f5";
    font-size: 20px;
    color: #fff;
    font-family: "Ionicons";
    position: absolute;
    left: 10px;
    top: 0;
}

.searchwrap .searchform input[type="text"] {
    border: none;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.26);
    height: 30px;
    line-height: 100%;
    border-radius: 3px;
    padding: 0 10px 0 40px;
}

.searchwrap .searchform input[type="text"]:focus {
    background-color: rgba(255, 255, 255, 0.50);
}

.searchwrap .searchclose {
    position: absolute;
    right: 10px;
    top: 10px;
}

.searchwrap .searchclose {
    position: absolute;
    width: 25px;
    height: 25px;
    display: block;
    right: 6px;
    top: 6px;
    text-align: center;
    line-height: 25px;
}

.searchwrap .searchclose:before {
    content: "\f129";
    font-family: "Ionicons";
    font-size: 16px;
    color: #fff;
}

.searchwrap .searchclose:hover {
    background-color: rgba(0, 0, 0, 0.2);
}


.page {
    padding: 30px 0;
}

.cellgrid {
    width: 100%;
    display: table;
    table-layout: fixed;
    margin: 0;
    list-style: none;
}

.cellgrid li {
    display: table-cell;
    vertical-align: top;
    padding: 0 10px;
}

.iconbox {
    width: 100%;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 15px;
    height: 145px;
}

.flipbox.green .value {
    color: #aec785;
}

.flipbox.green .progress-bar {
    background-color: #aec785;
}

.flipbox.green .back {
    background-color: #aec785;
}

.flipbox .themebtn {
    border: none;
    vertical-align: top;
    background: none;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0;
    font-weight: 700;
}

.flipbox .themebtn:hover {
    background-color: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.9);
}

.flipbox.orange .value {
    color: #fa8564;
}

.flipbox.orange .progress-bar {
    background-color: #fa8564;
}

.flipbox.orange .back {
    background-color: #fa8564;
}

.flipbox.purple .value {
    color: #a48ad4;
}

.flipbox.purple .progress-bar {
    background-color: #a48ad4;
}

.flipbox.purple .back {
    background-color: #a48ad4;
}

.flipbox.darkgreen .value {
    color: #1fb5ac;
}

.flipbox.darkgreen .progress-bar {
    background-color: #1fb5ac;
}

.flipbox.darkgreen .back {
    background-color: #1fb5ac;
}

.flipbox.red .value {
    color: #f25454;
}

.flipbox.red .progress-bar {
    background-color: #f25454;
}

.flipbox.red .back {
    background-color: #f25454;
}

.flipbox.yellow .value {
    color: #ffc107;
}

.flipbox.yellow .progress-bar {
    background-color: #ffc107;
}

.flipbox.yellow .back {
    background-color: #ffc107;
}




.iconbox:before {
    position: absolute;
    right: 4px;
    top: 4px;
    border-top: 22px solid #e2e2e2;
    border-left: 22px solid transparent;
    content: "";
}

.iconbox .icon {
    float: left;
    margin: 5px 20px 0 0;
}

.iconbox .value {
    font-size: 30px;
    line-height: 22px;
}

.iconbox .value span {
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
    display: block;
}

.areaprogress {
    width: 100%;
    display: inline-block;
    padding: 20px 0 0;
}

.areaprogress h6 {
    font-size: 11px;
    color: #8f8f8f;
    text-transform: uppercase;
    font-weight: normal;
}

.areaprogress h6 span {
    float: right;
    border-radius: 3px;
    padding: 1px 4px;
    background: #eeeeee;
    font-size: 11px;
    color: #8f8f8f;
    position: relative;
    top: -2px;
}

.areaprogress .progress {
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1) inset;
    height: 10px;
    overflow: hidden;
    margin: 5px 0 0;
}


/* progress bars */
.progress {
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1) inset;
    height: 12px;
    margin: 5px 0 0;
}

.progress-bar {
    position: relative;
    background-color: #2196f3;
    border-radius: 10px;
    float: left;
    height: 100%;
    line-height: 20px;
    width: 0;
    text-align: right;
    padding: 0 10px;
}

.progress-bar .countvalue {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.5);
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    padding: 0 7px 2px;
    font-size: 10px;
    color: #fff;
    border-radius: 3px;
    position: absolute;
    right: 0;
    top: -30px;
}

.progress-bar .countvalue:before {
    position: absolute;
    left: 50%;
    bottom: -5px;
    content: "";
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(0, 0, 0, 0.7);
    margin: 0 0 0 -5px;
}

.progress.info .progress-bar {
    background-color: #31cde8;
}

.progress.success .progress-bar {
    background-color: #00bf6f;
}

.progress.warning .progress-bar {
    background-color: #eb8f34;
}

.progress.danger .progress-bar {
    background-color: #f25454;
}

.animateprogess .progress-bar {
    background-size: 20px 20px;
    background-image: -webkit-gradient(linear, left top, right bottom,
            color-stop(.25, rgba(255, 255, 255, .05)), color-stop(.25, transparent),
            color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .05)),
            color-stop(.75, rgba(255, 255, 255, .05)), color-stop(.75, transparent),
            to(transparent));
    background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
            transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
            transparent 75%, transparent);
    background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
            transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
            transparent 75%, transparent);
    background-image: -ms-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
            transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
            transparent 75%, transparent);
    background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
            transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
            transparent 75%, transparent);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
            transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
            transparent 75%, transparent);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .2);
    -webkit-animation: animate-bg 2s linear infinite;
    animation: animate-bg 2s linear infinite;
}




.flipbox {
    position: relative;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
}

.flipper {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all .4s ease-in-out;
    -moz-transform: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.flipbox:hover .flipper {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.front,
.back {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;

}


.back {
    display: table;
    width: 100%;
    text-align: center;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.back .cell {
    height: 145px;
    display: table-cell;
    vertical-align: middle;
}


.section {
    width: 100%;
    display: inline-block;
    position: relative;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    margin: 20px 0 0 0;
}

.section .sectionhead {
    width: 100%;
    position: relative;
    padding: 15px;
    background: #fafafa;
    border-radius: 3px 3px 0 0;
    border-bottom: 1px solid #eee;
    display: inline-block;
}

.section .sectionhead h4 {
    padding: 0;
    font-size: 18px;
    color: #333;
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.section .sectionhead .actions {
    position: absolute;
    right: 10px;
    top: 12px;
}

.sectionhead-dashboard .actions {
    position: absolute;
    right: 10px;
    top: 0px;
}

.sectionhead-dashboard {
    position: relative;
}

.section .sectionhead .themebtn {
    float: right;
    margin: 0 0 0 10px;
    line-height: 24px;
    font-size: 11px;
    padding: 0 10px;
}

.section .sectionbody {
    width: 100%;
    position: relative;
}

.section .sectionbody:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
}

.section .sectionbody.space {
    padding: 15px;
}

.section.searchform_filter {
    margin: 10px 0 0;
}

.section.searchform_filter .sectionhead {
    cursor: text;
}

.section.searchform_filter .sectionhead h4 {
    color: #999;
    font-style: italic;
    text-transform: capitalize;
    display: block;
}

.section.searchform_filter .sectionhead h4:before {
    font-style: normal;
    position: absolute;
    right: 5px;
    top: -1px;
    content: "\f2f5";
    font-size: 20px;
    color: #999;
    font-family: "Ionicons";
}

.section.searchform_filter .sectionhead.active h4:before {
    content: "\f2d7";
}

.section.searchform_filter .sectionhead:after {
    width: 55px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
    cursor: pointer;
}

.section.first {
    margin-top: 10px;
}

.section .sectionhead .close-form {
    float: right;
    color: #999;
    cursor: pointer;
}

.close-form {
    width: 32px;
    height: 32px;
    color: #999;
    cursor: pointer;
    text-align: center;
    line-height: 30px;
    position: relative;
}

.close-form:before {
    left: 0;
    top: 0;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform: scale3d(0, 0, 0);
    -moz-transform: scale3d(0, 0, 0);
    -ms-transform: scale3d(0, 0, 0);
    -o-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
    -webkit-transition: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 0;
    border-radius: 100%;
}

.close-form:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}



.whitewrap {
    width: 100%;
    position: relative;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0px 3px rgba(0, 0, 0, 0.2);
    position: relative;
}

.chartwrap {
    width: 100%;
    padding: 20px;
}

.chartwrap canvas,
.chartwrap img {
    width: 100%;
}

.wigetbox {
    background: #009688;
    border-radius: 3px;
    min-height: 370px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.wigetbox .top {
    padding: 20px 10px;
    text-align: center;
}

.wigetbox .top img {
    max-width: 100%;
}

.wigetbox .txtsmall {
    padding: 10px 15px;
    text-align: center;
    display: block;
    background: rgba(0, 0, 0, 0.2);
    font-size: 13px;
    color: #fff;
    text-align: left;
}

.wigetbox .vlist {
    margin: 0;
    list-style: none;
}

.wigetbox .vlist li {
    display: block;
    padding: 10px 15px;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 20px;
}

.wigetbox .vlist li small {
    display: block;
    font-size: 12px;
}


.statsbox {
    border-radius: 3px;
    min-height: 370px;
    overflow: hidden;
}

.statsbox small {
    color: #fff;
}

.statsbox .top {
    padding: 15px;
    text-align: center;
    background: #f44336;
    height: 200px;
}

.statsbox .body {
    padding: 0 10px 15px;
    text-align: center;
    width: 100%;
    display: inline-block;
}

.statsbox .body small {
    color: #333;
}

.statsbox .txtsmall {
    display: block;
    font-size: 13px;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
}

.statsbox .vlist {
    margin: 0;
    list-style: none;
}

.statsbox .vlist li {
    display: block;
    padding: 10px 15px;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 20px;
}

.statsbox .vlist li small {
    display: block;
    font-size: 12px;
}

.pieprogress {
    margin: 15px auto 5px;
    display: table;
    width: 90px;
}

.circles-text {
    font-size: 24px !important;
    color: #fff;
}

.even .circles-text {
    font-size: 24px !important;
    color: #333;
}

.circles-integer {
    position: relative;
}

.circles-integer:after {
    content: "%";
}

.countercircle {
    width: 220px;
    height: 220px;
    border-radius: 100%;
    position: relative;
    display: table;
    margin: 0 auto 30px;
}

.countercircle.yellow {
    background: #ffc107;
}

.countercircle.green {
    background: #5bc78b;
}

.countercircle .innercircle {
    border-radius: 100%;
    background: #fff;
    position: absolute;
    left: 20px;
    top: 20px;
    right: 20px;
    bottom: 20px;
    box-shadow: inset 0 2px rgba(0, 0, 0, 0.3);
}

.fourcols {
    margin: 24px 0 0;
    width: 100%;
    display: inline-block;
}

.group {
    font-size: 28px;
    text-align: center;
    position: relative;
    width: 100%;
    display: inline-block;
    color: rgba(0, 0, 0, 0.6);
    padding: 0 0 10px 0;
    margin: 0 0 0 0;
    font-weight: 700;
}

.group:before {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    content: "";
    width: 1px;
    background: rgba(0, 0, 0, 0.2);
}

.group span {
    font-size: 13px;
    display: block;
    font-weight: normal;
}

.coloredbox {
    width: 100%;
    min-height: 370px;
    overflow: hidden;
}

.coloredbox .top {
    width: 100%;
    background: #886cbb;
    height: 200px;
    padding: 15px;
}

.coloredbox .body {
    width: 100%;
    text-align: center;
    background: #fff;
    display: inline-block;
    padding: 15px;
}

.coloredbox .txtsmall {
    display: block;
    font-size: 13px;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
}

.coloredbox .icon {
    display: table;
    line-height: 1;
    margin: 15px auto;
    font-size: 120px;
    color: #fff;
}

.coloredbox h3 {
    font-size: 50px;
    color: #886cbb;
    padding: 0 0 15px 0;
}

.coloredbox h3 span {
    display: block;
    text-transform: uppercase;
    color: #666;
    line-height: 1;
    font-size: 14px;
    font-weight: normal;
}

.coloredbox .themebtn {
    border: 1px solid #886cbb;
    font-weight: normal;
    color: #886cbb;
}

.coloredbox .themebtn:hover {
    background: #886cbb;
    color: #fff;
}

.coloredbox.blue .icon {
    font-size: 120px;
    margin-top: 5px;
}

.coloredbox.blue .top {
    background: #17b9f5;
}

.coloredbox.blue h3 {
    color: #17b9f5;
}

.coloredbox.blue .themebtn {
    border: 1px solid #17b9f5;
    color: #17b9f5;
}

.coloredbox.blue .themebtn:hover {
    background: #17b9f5;
    color: #fff;
}



/* tables */

.table {
    border-spacing: 0;
    border-collapse: collapse;
    font-size: 14px;
    color: #333;
    width: 100%;
}

.table th {
    text-transform: uppercase;
    padding: 15px;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 12px;
}

.table td {
    vertical-align: middle;
    padding: 15px;
    text-align: left;
    font-size: 13px;
    border-bottom: 1px solid #eeeeee;
}

.table tr:last-chid td {
    border-bottom: none;
}

.tablewrap {
    overflow-x: auto;
    width: 100%;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table td.center,
.table th.center {
    text-align: center;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f7f7f7;
}

.table-striped th {
    border-bottom: none;
}

.table-bordered {
    border: 1px solid #f0f0f0;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border: 1px solid #f0f0f0;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
    border-bottom-width: 2px;
}


.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

/*.table-select th .iconsort{ float: right;}*/
.table-select tr.active td {
    background: #fffcbe;
}


/* labels */
.label {
    color: #fff;
    display: inline;
    font-size: 11px;
    line-height: 1;
    padding: 4px 8px 4px;
    text-align: center;
    vertical-align: baseline;
    white-space: nowrap;
    display: inline-block;
}

.label.label-default {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #e5e5e5;
}

.label.label-success {
    background: none repeat scroll 0 0 #22baa0;
}

.label.label-primary {
    background: none repeat scroll 0 0 #7a6fbe;
}

.label.label-info {
    background: none repeat scroll 0 0 #12afcb;
}

.label.label-danger {
    background: none repeat scroll 0 0 #f25656;
}

.label.label-warning {
    background: none repeat scroll 0 0 #f6d433;
}

label {
    font-size: 13px;
    font-weight: 400;
}



/* footer */

#footer {
    width: 100%;
    text-align: center;
    margin: 0 0 30px 0;
}

#footer p {
    color: #888;
    font-size: 13px;
}

#footer p a {
    color: #888;
    font-size: 13px;
    text-decoration: underline;
}

#footer p a:hover {
    color: #000;
}


/* left panel */
.leftside {
    background: none repeat scroll 0 0 #fff;
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.38);
    opacity: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    padding: 55px 0;
    bottom: 0;
    -ms-transform: translate3d(-280px, 0px, 0px);
    /* IE 9 */
    -webkit-transform: translate3d(-280px, 0px, 0px);
    /* Chrome, Safari, Opera */
    transform: translate3d(-280px, 0px, 0px);
    -webkit-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
    width: 280px;
    z-index: 110;
}

body.toggled-left .leftside {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    /* IE 9 */
    -webkit-transform: translate3d(0px, 0px, 0px);
    /* Chrome, Safari, Opera */
}

.leftside .sidebar_inner {
    height: 100%;
    width: 100%;
    width: 400px;
    overflow-y: auto;
}


.rightside {
    background: none repeat scroll 0 0 #fff;
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.38);
    opacity: 0;
    overflow: hidden;
    right: -280px;
    position: fixed;
    top: 0;
    padding: 55px 0 0;
    bottom: 0;
    -webkit-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
    width: 280px;
    z-index: 110;
}

body.toggled-right .rightside {
    opacity: 1;
    right: 0;
}

.rightside .sidebar_inner {
    height: 100%;
    width: 400px;
    overflow-y: auto;
}

.rightside .sidebar_wrap {
    width: 280px;
}

.leftoverlay,
.rightoverlay {
    display: none;
    position: fixed;
    top: 40px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-animation: fade 500ms;
    -moz-animation: fade 500ms;
    -o-animation: fade 500ms;
    animation: fade 500ms;
}


.profilewrap {
    position: relative;
    z-index: 10;
    width: 280px;
}

.profilecover {
    background: url(images/nav_cover_bg.png) no-repeat center center #607d8b;
    width: 100%;
    height: 170px;
    display: block;
    position: relative;
    overflow: hidden;
}

.profilelinkswrap {
    width: 100%;
    background: #607d8b;
    display: none;
}

.profilecover .profilepic {
    border-radius: 100%;
    height: 100px;
    width: 100px;
    position: relative;
    left: 0;
    top: 15px;
    overflow: hidden;
    border: 3px solid rgba(0, 0, 0, 0.14);
    margin: 0 auto
}

.profilecover .profilepic > img {
    height: 100%;
    width: 100%;
    border-radius: 100%;
}

.profilecover .profileinfo {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    margin-top: 20px;
    padding: 8px 34px 8px 14px;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.profilecover .profileinfo:before {
    position: absolute;
    right: 10px;
    top: 2px;
    content: "\f35f";
    font-size: 20px;
    color: #fff;
    font-family: "Ionicons";
}

.profileinfo.active:before {
    content: "\f365";
}



.leftlinks {
    list-style: none;
    margin: 0;
}

.leftlinks > li {
    border-bottom: 1px dotted #395461;
}

.leftlinks > li > a {
    display: block;
    padding: 8px 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    overflow: hidden;
    -webkit-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    position: relative;
    transition: all 300ms ease 0s;
    border-left: 4px solid #2d4550;
}

.leftlinks > li > a:hover {
    background: rgba(0, 0, 0, 0.1);
}

.profilelinkswrap li.active a {
    background: rgba(0, 0, 0, 0.1);
}

.leftmenu {
    width: 280px;
    margin: 0;
    list-style: none;
}

.leftmenu > li {
    border-bottom: 1px dotted #ddd;
}

.leftmenu > li > a {
    display: block;
    padding: 10px;
    font-size: 13px;
    color: #607d8b;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
    border-left: 4px solid #fff;
}

.leftmenu > li > a:hover {
    background: #f8f8f8;
    color: #333;
    border-left: 4px solid #333;
}

.leftmenu > li.haschild > a:before {
    content: "\f218";
    font-size: 13px;
    color: #738a95;
    font-family: "Ionicons";
    position: absolute;
    right: 16px;
    top: 10px;
}

.leftmenu > li.haschild > a.active:before {
    content: "\f209";
}

.leftmenu > li.active > a {
    background: #f8f8f8;
    color: #333;
    border-left: 4px solid #333;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.leftmenu > li ul {
    display: none;
    margin: 0;
    list-style: none;
    padding: 10px 10px 15px;
    border-left: 1px solid #dbdbdb;
    background: #f8f8f8;
    position: relative;
    border-top: 1px solid #e9e9e9;
}

.leftmenu > li ul:before {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    content: "";
    background: #dbdbdb;
    width: 1px;
}

.leftmenu > li ul li {
    position: relative;
}

.leftmenu > li ul li a:before {
    position: absolute;
    left: 0;
    top: 10px;
    height: 1px;
    background: #dbdbdb;
    content: "";
    width: 12px;
    -webkit-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
}

.leftmenu > li ul li a {
    position: relative;
    font-size: 13px;
    font-size: 13px;
    color: #666;
    padding: 4px 4px 4px 20px;
    display: block;
}

.leftmenu > li ul li a:hover {
    color: #000;
}

.leftmenu > li ul li.active a {
    font-weight: 600;
    color: #000;
}

.leftmenu > li.active ul {
    display: block;
}

.leftmenu > li.haschild > a {
    padding-right: 36px;
}

.section .sectionhead .actions {
    position: absolute;
    right: 10px;
    top: 12px;
}


/* actions and dropdowns */
.actions,
.actions > li {
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    list-style: none;
}

.actions > li {
    padding: 0 3px;
}

.actions > li > a {
    /*background: #fff;*/
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 100%;
}

.actions > li > a .icon {
    font-style: normal;
    color: #999;
    font-size: 21px;
    display: block;
    position: relative;
}

.actions > li > a .icon img {
    display: block;
    margin: 9px auto 0;
    width: 15px;
    opacity: 0.4
}

.actions > li > a:before {
    left: 0;
    top: 0;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transform: scale3d(0, 0, 0);
    -moz-transform: scale3d(0, 0, 0);
    -ms-transform: scale3d(0, 0, 0);
    -o-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
    -webkit-transition: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 0;
    border-radius: 100%;
}

.actions > li > a:hover:before {
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.actions > li > a .icon.expand {
    display: block;
    font-size: 19px;
    top: 1px;
}

.actions > li > a.active .icon.expand {
    display: none;
}

.actions > li > a .icon.collapse {
    display: none;
}

.actions > li > a.active .icon.collapse {
    display: block;
}

.table .actions > li > a {
    border: 1px solid #ddd;
    border-radius: 100%;
    width: 38px;
    height: 38px;
    background: #fff;
    padding: 0 10px;
}

.table .actions > li > a .icon {
    line-height: 34px;
}

.actions.center {
    display: table;
    margin: 10px auto 0;
}

.dropwrap:before {
    position: absolute;
    right: 10px;
    top: -7px;
    content: "";
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.dropwrap {
    min-width: 200px;
    z-index: 10;
    right: 0;
    top: 100%;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
    -webkit-transform-origin: top right;
    -moz-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
}

.droplink.active .dropwrap {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
}

.dropwrap ul {
    margin: 0;
    list-style: none;
}

.dropwrap .head {
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.dropwrap .body {
    width: 100%;
    max-height: 250px;
    overflow: hidden;
    overflow-y: auto;
}

.dropwrap .foot {
    width: 100%;
    border-top: 1px solid #ddd;
    padding: 6px 10px;
    text-align: center;
}

.actions.rights .dropwrap {
    right: auto;
    left: 0;
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
}

.actions.rights .dropwrap:before {
    left: 10px;
    right: auto;
}

.linksvertical {
    margin: 0;
    padding: 8px;
    list-style: none;
    margin: 0;
}

.linksvertical li {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.linksvertical li:last-child {
    border-bottom: none;
}

.linksvertical li a {
    text-align: left;
    font-size: 12px;
    color: #333;
    padding: 8px 8px 8px 25px;
    display: block;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    position: relative;
}

.linksvertical li a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.linksvertical li a:hover:before {
    background: #000;
}

.linksvertical li a:before {
    width: 6px;
    height: 6px;
    position: absolute;
    left: 10px;
    top: 14px;
    content: "";
    background: #999;
    border-radius: 100%;
}

.link {
    font-size: 13px;
    color: #2196f3;
    line-height: 1;
}

.link:hover {
    font-size: 13px;
    color: #333;
}



/* tabs */
.sidetabs {
    width: 100%;
    display: table;
    table-layout: fixed;
    border-bottom: 2px solid #ddd;
    margin: 0;
    list-style: none;
}

.sidetabs > li {
    display: table-cell;
    vertical-align: top;
    position: relative;
}

.sidetabs > li > a {
    display: block;
    padding: 10px;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    position: relative;
    text-align: center;
}

.sidetabs > li > a:before {
    bottom: -2px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scale(0);
    width: 100%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 250ms ease 0s;
    -o-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
}

.sidetabs > li.active > a:before {
    background: #2196f3;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.sidetabs > li.active > a:after {
    position: absolute;
    left: 50%;
    bottom: -2px;
    margin: 0 0 0 -6px;
    content: "";
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #2196f3;
}

.sidetabs > li.active > a {
    color: #333;
    background: #f7f7f7;
}


/* listing */
.columlist {
    width: 100%;
    list-style: none;
    margin: 0;
}

.columlist li {
    display: table;
    display: table;
    width: 100%;
}

.columlist li a {
    display: block;
    position: relative;
    overflow: hidden;
}

.columlist li:hover {
    background: #f7f7f7;
}

.columlist li .grid {
    display: table-cell;
    vertical-align: top;
    padding: 10px 10px 10px 0;
}

.columlist li .grid.first {
    padding: 10px;
}

.columlist li .name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 0 0 0;
}

.columlist li .desc {
    font-size: 12px;
    color: #999;
    font-weight: normal;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.columlist li.read .name {
    font-weight: normal;
    color: #666;
}



/* avtar */
.avtar {
    text-transform: uppercase;
    text-align: center;
    line-height: 34px;
    color: #fff;
    border-radius: 100%;
    height: 35px;
    width: 35px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.avtar img {
    height: 100%;
    width: 100%;
    border-radius: 100%;
    border: 1px solid rgba(0, 0, 0, .14);
}


/* background colors and  text colors */
.bgm-white {
    background-color: #ffffff !important;
}

.c-white {
    color: #ffffff !important;
}

.bgm-black {
    background-color: #000000 !important;
}

.c-black {
    color: #000000 !important;
}

.bgm-brown {
    background-color: #795548 !important;
}

.c-brown {
    color: #795548 !important;
}

.bgm-pink {
    background-color: #e91e63 !important;
}

.c-pink {
    color: #e91e63 !important;
}

.bgm-red {
    background-color: #f44336 !important;
}

.c-red {
    color: #f44336 !important;
}

.bgm-blue {
    background-color: #2196f3 !important;
}

.c-blue {
    color: #2196f3 !important;
}

.bgm-purple {
    background-color: #9c27b0 !important;
}

.c-purple {
    color: #9c27b0 !important;
}

.bgm-deeppurple {
    background-color: #673ab7 !important;
}

.c-deeppurple {
    color: #673ab7 !important;
}

.bgm-lightblue {
    background-color: #03a9f4 !important;
}

.c-lightblue {
    color: #03a9f4 !important;
}

.bgm-cyan {
    background-color: #00bcd4 !important;
}

.c-cyan {
    color: #00bcd4 !important;
}

.bgm-teal {
    background-color: #009688 !important;
}

.c-teal {
    color: #009688 !important;
}

.bgm-green {
    background-color: #4caf50 !important;
}

.c-green {
    color: #4caf50 !important;
}

.bgm-lightgreen {
    background-color: #8bc34a !important;
}

.c-lightgreen {
    color: #8bc34a !important;
}

.bgm-lime {
    background-color: #cddc39 !important;
}

.c-lime {
    color: #cddc39 !important;
}

.bgm-yellow {
    background-color: #ffeb3b !important;
}

.c-yellow {
    color: #ffeb3b !important;
}

.bgm-amber {
    background-color: #ffc107 !important;
}

.c-amber {
    color: #ffc107 !important;
}

.bgm-orange {
    background-color: #ff9800 !important;
}

.c-orange {
    color: #ff9800 !important;
}

.bgm-deeporange {
    background-color: #ff5722 !important;
}

.c-deeporange {
    color: #ff5722 !important;
}

.bgm-gray {
    background-color: #9e9e9e !important;
}

.c-gray {
    color: #9e9e9e !important;
}

.bgm-bluegray {
    background-color: #607d8b !important;
}

.c-bluegray {
    color: #607d8b !important;
}

.bgm-indigo {
    background-color: #3f51b5 !important;
}

.c-indigo {
    color: #3f51b5 !important;
}


/* search bar */

.searchbar {
    position: relative;
    width: 100%;
}

.searchbar input[type="text"] {
    background: #f7f7f7;
    border: 1px solid #eee;
    border-radius: 3px;
    padding: 0 10px 0 35px;
    height: 35px;
    line-height: 100%;
    width: 100%;
    font-size: 13px;
}

.searchbar input[type="text"]:focus {
    background: #fff;
    border: 1px solid #ddd;
}

.searchbar:before {
    content: "\f2f5";
    font-size: 20px;
    color: #666;
    font-family: "Ionicons";
    position: absolute;
    left: 10px;
    top: 3px;
}

.rightside .sidebar_wrap .searchbar {
    margin: 15px;
    width: auto;
}


/* sort bar */
.sortbar {
    padding: 15px;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.sortbar:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
}

.sortbar .grid_1 {
    width: 50%;
}

.sortbar .grid_2 {
    width: 50%;
    text-align: right;
    float: right;
}

.sortbar .searchbar {
    width: 70%;
    display: inline-block;
}

.sortbar .fieldselect {
    float: right;
}

.sortbar .fieldselect label {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #666;
    padding: 0 10px;
}

.sortbar select {
    max-width: 150px;
    color: #999;
    background: #f7f7f7;
    border: 1px solid #eee;
    border-radius: 3px;
    padding: 0 10px;
    height: 35px;
    line-height: 100%;
    font-size: 13px;
}

.sortbar select:focus {
    background: #fff;
    border: 1px solid #ddd;
}

.sorticon {
    width: 18px;
    display: block;
    position: relative;
    margin: 10px auto 0;
    height: 2px;
    background: #999;
}

.sorticon:before {
    width: 14px;
    height: 2px;
    background: #999;
    position: absolute;
    top: 5px;
    left: 0;
    content: "";
}

.sorticon:after {
    width: 10px;
    height: 2px;
    background: #999;
    position: absolute;
    top: 10px;
    left: 0;
    content: "";
}

.sortbar .actions > li > a {
    border: 1px solid #ddd;
    border-radius: 3px;
    width: 40px;
    background: #fff;
    height: 35px;
}

.sortbar .actions > li > a:before {
    border-radius: 1px;
}

.iconsort {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 18px;
    text-align: center;
    line-height: 20px;
}

.iconsort:before {
    content: "\f123";
    font-family: "Ionicons";
    font-size: 13px;
    color: #666;
}

.iconsort.active:before {
    content: "\f126";
}


/* foot section  */
.footinfo {
    width: 100%;
    padding: 15px;
}

.footinfo:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
}

.footinfo .grid_1 {
    width: 50%;
}

.footinfo .grid_1 .pagination {
    float: left;
}

.footinfo .grid_2 {
    width: 50%;
    text-align: right;
}

.footinfo .info {
    border: 1px solid #ddd;
    font-size: 13px;
    color: #666;
    padding: 0 10px;
    height: 35px;
    line-height: 32px;
    display: inline-block;
    vertical-align: middle;
    background: #f7f7f7;
    border: 1px solid #ececec;
}


/* paginations */

.pagination {
    text-align: center;
    margin: 0;
    list-style: none;
}

.pagination li {
    display: inline-block;
    vertical-align: top;
    margin: 0 1px;
}

.pagination li a {
    width: 35px;
    line-height: 32px;
    text-align: center;
    background: #f7f7f7;
    height: 35px;
    display: block;
    font-size: 14px;
    color: #333;
    border: 1px solid #ececec;
    border-radius: 100%;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.pagination li a:hover {
    background: #ddd;
    border-color: #ddd;
}

.pagination li.selected a {
    background: #2196f3;
    border-color: #2196f3;
    color: #fff;
}

.pagination li.more a:before {
    content: "\f46a";
    font-family: "Ionicons";
    font-size: 26px;
    color: #666;
}

.pagination li.prev a:before {
    content: "\f3cf";
    font-family: "Ionicons";
    font-size: 20px;
    color: #666;
}

.pagination li.next a:before {
    content: "\f3d1";
    font-family: "Ionicons";
    font-size: 20px;
    color: #666;
}

.pagination li.disabled {
    opacity: 0.7;
}

.pagination li.disabled a {
    cursor: not-allowed;
}



/* radio and checkbox */

.checkbox,
.radio {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    padding: 0 0 0 25px;
    height: 20px;
}

.checkbox input,
.radio input {
    top: 0;
    left: 0;
    margin: 0 !important;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9;
}

.radio.disabled,
.checkbox.disabled {
    cursor: not-allowed;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="text"][disabled],
input[type="password"][disabled] {
    cursor: not-allowed;
}

.inline.radio,
.inline.checkbox {
    padding-right: 20px;
}

.checkbox .input-helper:before,
.radio .input-helper:before,
.checkbox .input-helper:after,
.radio .input-helper:after {
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    content: "";
}

.checkbox .input-helper:before,
.radio .input-helper:before {
    left: 0;
    border: 1px solid #ccc;
    background: #fff;
}

.checkbox.disabled,
.radio.disabled {
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.checkbox input {
    width: 17px;
    height: 17px;
}

.checkbox input:checked + .input-helper:before {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.checkbox input:checked + .input-helper:after {
    -webkit-transform: scale(1) rotate(-50deg);
    -ms-transform: scale(1) rotate(-50deg);
    -o-transform: scale(1) rotate(-50deg);
    transform: scale(1) rotate(-50deg);
    opacity: 1;
    filter: alpha(opacity=100);
}

.checkbox .input-helper:before {
    top: 0;
    width: 17px;
    height: 17px;
}

.checkbox .input-helper:after {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0) rotate(80deg);
    -ms-transform: scale(0) rotate(80deg);
    -o-transform: scale(0) rotate(80deg);
    transform: scale(0) rotate(80deg);
    width: 22px;
    height: 9px;
    border-bottom: 2px solid #2196f3;
    border-left: 2px solid #2196f3;
    border-bottom-left-radius: 2px;
    left: -1px;
    top: 1px;
}

.radio input {
    width: 19px;
    height: 19px;
}

.radio input:checked + .input-helper:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.radio .input-helper:before {
    top: -1px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
}

.radio .input-helper:after {
    width: 11px;
    height: 11px;
    background: #2196f3;
    border-radius: 50%;
    top: 3px;
    left: 4px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

#icons {
    padding: 30px;
    margin: 0;
    list-style: none;
}

#icons li {
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-size: 32px;
    font-weight: normal;
    list-style: outside none none;
    margin: 10px;
    position: relative;
    text-align: center;
    width: 42px;
    z-index: 0;
}

#icons li:hover {
    background: #ddd;
}



/* listings */

ul {
    list-style: disc outside;
    font-size: 14px;
    color: #666;
    margin: 15px;
}

ul li ul {
    margin: 10px 0 10px 10px;
    width: 100%;
    display: inline-block;
}

ol {
    list-style: decimal outside;
    font-size: 14px;
    color: #666;
    margin: 10px;
}

.list-inline {
    margin: 10px 0;
}

.list-inline li {
    display: inline-block;
    padding: 0 2px;
}

.arrowlist {
    margin: 15px 0;
    width: 100%;
    display: inline-block;
    list-style: none;
}

.arrowlist li {
    position: relative;
    font-size: 14px;
    color: #666;
    padding: 0 0 10px 20px;
    text-transform: capitalize;
}

.arrowlist li a {
    font-size: 14px;
    color: #666;
}

.arrowlist li:before {
    position: absolute;
    left: 0;
    top: 4px;
    content: "";
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-left: 5px solid #999;
}

.bulletlist {
    margin: 15px 0;
    width: 100%;
    display: inline-block;
    list-style: none;
}

.bulletlist li {
    position: relative;
    font-size: 14px;
    color: #666;
    padding: 0 0 10px 20px;
}

.bulletlist li:before {
    position: absolute;
    left: 0;
    top: 5px;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #999;
}

.bulletlist li a {
    font-size: 14px;
    color: #666;
}


.squarelist {
    margin: 15px 0;
    width: 100%;
    display: inline-block;
    list-style: none;
}

.squarelist li {
    position: relative;
    font-size: 14px;
    color: #666;
    padding: 0 0 10px 20px;
    text-transform: capitalize;
}

.squarelist li:before {
    position: absolute;
    left: 0;
    top: 5px;
    content: "";
    width: 8px;
    height: 8px;
    background: #999;
}

.squarelist li a {
    font-size: 14px;
    color: #666;
}

.checklist {
    margin: 15px 0;
    width: 100%;
    display: inline-block;
    list-style: none;
}

.checklist li {
    position: relative;
    font-size: 14px;
    color: #666;
    padding: 0 0 10px 20px;
    text-transform: capitalize;
}

.checklist li:before {
    position: absolute;
    left: 0;
    top: -1px;
    content: "\f374";
    font-family: "Ionicons";
    font-size: 16px;
    color: #999;
}

.checklist li a {
    font-size: 14px;
    color: #666;
}

.roundchecklist {
    margin: 15px 0;
    width: 100%;
    display: inline-block;
    list-style: none;
}

.roundchecklist li {
    position: relative;
    font-size: 14px;
    color: #666;
    padding: 0 0 10px 20px;
    text-transform: capitalize;
}

.roundchecklist li:before {
    position: absolute;
    left: 0;
    top: -1px;
    content: "\f3ff";
    font-family: "Ionicons";
    font-size: 16px;
    color: #999;
}

.roundchecklist li a {
    font-size: 14px;
    color: #666;
}

.circlelist {
    margin: 15px 0;
    width: 100%;
    display: inline-block;
    list-style: none;
}

.circlelist li {
    position: relative;
    font-size: 14px;
    color: #666;
    padding: 0 0 10px 20px;
    text-transform: capitalize;
}

.circlelist li:before {
    position: absolute;
    left: 0;
    top: 4px;
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: #fff;
    border: 2px solid #c1c1c1;
}

.circlelist li a {
    font-size: 14px;
    color: #666;
}



/* blockquote */
blockquote {
    border-left: 5px solid #eee;
    font-size: 17.5px;
    margin: 0 0 20px;
    padding: 10px 20px;
}

blockquote p {
    line-height: 1.6em;
}

blockquote .small,
blockquote small {
    color: #777;
    display: block;
    font-size: 80%;
    line-height: 1.42857;
}

blockquote .small:before,
blockquote footer:before,
blockquote small:before {
    content: "— ";
}


/* breadcrumbs */

.breadcrumb {
    list-style: none;
    margin: 10px 0 0;
    width: 100%;
    display: inline-block;
    background: #fafafa;
    color: #aaa;
    padding: 10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.breadcrumb li {
    float: left;
    position: relative;
    font-size: 13px;
    color: #666;
    padding: 0 0 0 20px;
    margin: 0 0 0 15px;
}

.breadcrumb li:first-child:before {
    display: none;
}

.breadcrumb li:first-child {
    margin: 0;
    padding: 0;
}

.breadcrumb li:before {
    position: absolute;
    left: 0;
    top: -1px;
    content: "/";
    font-size: 15px;
    color: #999;
}

.breadcrumb.arrow li:before {
    content: "\f3d3";
    font-family: "Ionicons";
    font-size: 16px;
    color: #999;
}

.breadcrumb li a {
    color: #2196f3;
    display: block;
}

.breadcrumb.flat {
    box-shadow: none;
    background: none;
    margin: 0 0 -20px 0;
    border-bottom: 1px solid #e2e2e2;
    position: relative;
    top: -30px;
}




/* dialog boxes */


.dialog_box_wrap {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
}

.dialog_box_wrap.active {
    z-index: 99999;
    opacity: 1;
}

.dialog_overlay {
    background-color: black;
    /* IE8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    /* IE8 */
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.dialog_box {
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    /* IE 9 */
    -webkit-transform: translate(-50%, -50%);
    /* Chrome, Safari, Opera */
    transform: translate(-50%, -50%);
}

.dialog_box_content {
    position: relative;
    border-radius: 5px;
    text-align: center;
    background-color: white;
    max-width: 500px;
    min-width: 500px;
    padding: 20px;
}


.dialog_box_content .close {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 5px;
    top: 5px;
    text-align: center;
    line-height: 18px;
}

.dialog_box_content .close:before {
    content: "\f2d7";
    font-family: "Ionicons";
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8);
}

.dialog_box_content .close:hover {
    background: #333;
}

.dialog_box_content .close:hover:before {
    color: #fff;
}


.dialog_box_wrap.active .dialog_box_content[data-animation=pop] {
    -webkit-animation: showSweetAlert 0.3s;
    animation: showSweetAlert 0.3s;
}

.dialog_box_wrap.active .dialog_box_content[data-animation=none] {
    -webkit-animation: none;
    animation: none;
}

/*
 * Animations
 */
@-webkit-keyframes showSweetAlert {
    0% {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
    }

    45% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
    }

    80% {
        transform: scale(0.95);
        -webkit-transform: scale(0.95);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

@keyframes showSweetAlert {
    0% {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
    }

    45% {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
    }

    80% {
        transform: scale(0.95);
        -webkit-transform: scale(0.95);
    }

    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}


.dialogicon {
    display: table;
    margin: 0 auto;
}

.dialogicon .icon.green {
    color: #00bf6f;
}

.dialogicon .icon.red {
    color: #f25454;
}

.dialogicon .icon.orange {
    width: 100px;
    text-align: center;
    height: 100px;
    margin: 0 auto 10px;
    border: 4px solid #eb8f34;
    position: relative;
    display: block;
    border-radius: 100%;
}

.dialogicon .icon.orange:before {
    width: 6px;
    border-radius: 10px;
    background: #eb8f34;
    content: "";
    height: 40px;
    top: 20px;
    position: absolute;
    left: 50%;
    margin: 0 0 0 -3px;
}

.dialogicon .icon.orange:after {
    width: 6px;
    border-radius: 10px;
    background: #eb8f34;
    content: "";
    height: 7px;
    top: 65px;
    position: absolute;
    left: 50%;
    margin: 0 0 0 -3px;
}

.dialogicon .icon {
    font-size: 120px;
    line-height: 1;
}




/* siteform */

.field_control {
    position: relative;
    margin: 20px 0;
}

.field_label {
    position: absolute;
    top: 5px;
    font-weight: 400;
    pointer-events: none;
    z-index: 1;
    left: 0;
    white-space: nowrap;
    -ms-transition: all 200ms ease 0s;
    /* IE 9 */
    -webkit-transition: all 200ms ease 0s;
    /* Chrome, Safari, Opera */
    transition: all 200ms ease 0s;
}

.field_control.active .field_label {
    top: -20px;
    font-size: 11px;
}

.field_cover {
    position: relative;
}

.field_cover:after {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    content: "";
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;

}

.field_control.active .field_cover:after {
    background: #2196f3;
    width: 100%;
}

.field_cover .icon {
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 18px;
}

.selectfield {
    position: relative;
}

.selectfield select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.selectfield select::-ms-expand {
    display: none;
}

.selectfield:before {
    width: 35px;
    height: 34px;
    background: #fff;
    content: '';
    right: 0;
    top: 0;
    position: absolute;
    pointer-events: none;
}

.selectfield:after {
    width: 0;
    height: 0;
    border-bottom: 9px solid #bcbcbc;
    border-left: 9px solid transparent;
    content: '';
    right: 0;
    top: 18px;
    position: absolute;
    pointer-events: none;
}



.field_control.horizontal {
    display: table;
    table-layout: fixed;
    margin: 15px 0;
    width: 100%;
}

.field_control.horizontal .field_label {
    position: relative;
    width: 25%;
    display: table-cell;
    vertical-align: top;
    line-height: 35px;
    top: 0;
    text-align: right;
    padding-right: 25px;
}

.field_control.horizontal .field_cover {
    position: relative;
    width: 75%;
    display: table-cell;
    vertical-align: top;
}

.field_control.horizontal.active .field_label {
    font-size: 13px;
}

.field_control.horizontal .field_cover.offset {
    margin-left: 25%;
    display: block;
}

.field_control.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.field_control[disabled],
fieldset[disabled] .field_control.disabled {
    cursor: not-allowed;
}

.selectfield select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


.web_form {
    font-size: 13px;
    color: #959595;
}

.web_form input[type="text"],
.web_form input[type="password"],
.web_form input[type="email"],
.web_form input[type="search"],
.web_form input[type="tel"] {
    display: block;
    width: 100%;
    height: 35px;
    padding: 0;
    font-size: 14px;
    line-height: 1.42857143;
    color: #666;
    background-color: #ffffff;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
}

.web_form select {
    display: block;
    width: 100%;
    height: 35px;
    padding: 0;
    font-size: 14px;
    line-height: 1.42857143;
    color: #666;
    background-color: #ffffff;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAICAYAAADA+m62AAAAJ0lEQVQYlWNgIA6kEauIoMI0YhSmEaMQXRFWhdgUYSjEpSiNWEVpAPIDDlkCClW4AAAAAElFTkSuQmCC);
    background-repeat: no-repeat;
    background-position: 100% 18px;
    background-size: 10px;
}


.web_form textarea {
    display: block;
    width: 100%;
    height: 100px;
    padding: 0;
    font-size: 14px;
    line-height: 1.42857143;
    color: #666;
    background-color: #ffffff;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: vertical;
    font-family: 'Open Sans', sans-serif;
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
}

.web_form input[type="submit"],
.web_form input[type="button"] {
    font-size: 14px;
    border-radius: 3px;
    display: inline-block;
    padding: 10px 24px;
    border: 0 none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    vertical-align: middle;
    border: none;
    background: #0099cc;
    color: #fff;
    margin: 0 5px 3px 0;
    line-height: normal;
}

.web_form input[type="submit"]:hover,
.web_form input[type="button"]:hover {
    background: #333;
}

.web_form input[type="button"] {
    font-size: 14px;
    border-radius: 3px;
    display: inline-block;
    padding: 10px 24px;
    border: 0 none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    vertical-align: middle;
    border: none;
    background: #999;
    color: #fff;
    line-height: normal;
}

.web_form input[type="button"]:hover {
    background: #666;
}

.web_form input[type="reset"] {
    font-size: 14px;
    border-radius: 3px;
    display: inline-block;
    padding: 10px 24px;
    border: 0 none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    vertical-align: middle;
    border: none;
    background: #999;
    color: #fff;
    line-height: normal;
}

.web_form input[type="reset"]:hover {
    background: #666;
}


.web_form input[type="file"] {
    display: block;
    width: 100%;
    height: 35px;
    padding: 0;
    font-size: 14px;
    line-height: 1.42857143;
    color: #666;
    background-color: #ffffff;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
    -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
    -o-transition: border linear 0.2s, box-shadow linear 0.2s;
    transition: border linear 0.2s, box-shadow linear 0.2s;
}


.web_form input[type="text"]:focus,
.web_form input[type="password"]:focus,
.web_form input[type="email"]:focus,
.web_form input[type="search"]:focus,
.web_form input[type="tel"]:focus,
.web_form select:focus,
.web_form textarea:focus {
    border-bottom: 2px solid #2196f3;
}




.filefield {
    position: relative;
    width: 100%;
    height: 35px;
    padding: 0;
    font-size: 13px;
    line-height: 1.42857143;
    color: #666;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.filefield input[type="file"] {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.filefield .filelabel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 8px 15px;
    font-size: 12px;
    color: #666;
    border-bottom: 2px solid #e0e0e0;
}

.filefield .filename {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 8px 0;
    font-size: 12px;
    color: #666;
}

.field_control.active .filefield .filelabel {
    border-bottom: none;
}








/* tabs */
.tabs_nav {
    width: 100%;
    border-bottom: 2px solid #ddd;
    margin: 0;
    list-style: none;
    display: inline-block;
}

.tabs_nav.centered {
    text-align: center;
    display: table;
}

.tabs_nav.centered li {
    display: inline-block;
}

.tabs_nav > li {
    display: table-cell;
    vertical-align: top;
    position: relative;
}

.tabs_nav > li > a {
    display: block;
    padding: 10px 15px;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    position: relative;
    text-align: center;
}

.tabs_nav > li > a:before {
    bottom: -2px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 250ms ease 0s;
    -o-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
}

.tabs_nav > li > a.active:before {
    background: #2196f3;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.tabs_nav > li > a.active:after {
    position: absolute;
    left: 50%;
    bottom: -2px;
    margin: 0 0 0 -8px;
    content: "";
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #2196f3;
}

.tabs_nav > li > a.active {
    color: #2196f3;
}

.tabs_nav > li > a .icon {
    font-size: 16px;
    margin: 0 6px 0 0;
    display: inline-block;
}

.tabs_nav_container {
    width: 100%;
}

.tabs_panel_wrap {
    width: 100%;
    padding: 15px 0 0;
}

.togglehead {
    display: none;
}


.tabs_nav_container.boxbased .tabs_nav {
    padding: 0;
    border-bottom: none;
    background: #fafafa;
    border-bottom: 1px solid #eee;
    border-radius: 3px 3px 0 0;
    position: relative;
    width: 100%;
}

.tabs_nav_container.boxbased {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    display: inline-block;
    margin: 24px 0 0;
    position: relative;
    width: 100%;
}

.tabs_nav_container.boxbased .tabs_nav > li > a {
    padding: 15px 20px;
}

.tabs_nav_container.boxbased .tabs_nav > li > a.active:after {
    display: none;
}

.tabs_nav_container.boxbased .tabs_nav > li > a.active {
    background: #fff;
}

.tabs_nav_container.boxbased .tabs_nav > li > a.active:before {
    background: #fff;
}

.tabs_nav_container.boxbased .tabs_nav > li:first-child > a {
    border-radius: 3px 0 0 0;
}

.tabs_nav_container.boxbased .tabs_nav > li {
    border-right: 1px solid #e5e5e5;
}

.tabs_nav_container.boxbased .tabs_panel_wrap {
    padding: 15px;
}

.tabs_nav_container.boxbased.vertical {
    display: table;
    table-layout: fixed;
}

.tabs_nav_container.boxbased.vertical .tabs_nav {
    display: table-cell;
    vertical-align: top;
    width: 25%;
    border-right: 1px solid #eee;
}

.tabs_nav_container.boxbased.vertical .tabs_panel_wrap {
    display: table-cell;
    vertical-align: top;
    width: 75%;
}

.tabs_nav_container.boxbased.vertical .tabs_nav li {
    display: block;
    border: none;
    border-bottom: 1px solid #eee;
}

.tabs_nav_container.boxbased.vertical .tabs_nav li a {
    text-align: left;
}

.tabs_nav_container.boxbased.vertical .tabs_nav li a.active:before {
    display: none;
}

.tabs_nav_container.boxbased.vertical .tabs_nav li a.active:after {
    background: #fff;
    display: block;
    left: auto;
    border: none;
    position: absolute;
    right: -1px;
    width: 2px;
    content: "";
    top: 0;
    bottom: 0;
}

.tabs_nav_container.boxbased.full .tabs_nav {
    display: table;
    table-layout: fixed;
}

.tabs_nav_container.boxbased.full .tabs_nav > li {
    display: table-cell;
}

.tabs_nav_container.boxbased.full .tabs_nav > li:last-child {
    border-right: none;
}

.tabs_nav_container.boxbased.full .tabs_nav > li:last-child a {
    border-radius: 0 3px 0 0;
}


.tabs_nav_container.flat {
    margin: 20px 0 0;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 3px;
}

.tabs_nav_container.flat .tabs_nav {
    background: #fff;
    border-bottom-color: #2196f3;
    position: relative;
    z-index: 1;
    display: block;
}

.tabs_nav_container.flat .tabs_nav > li {
    border-right: 1px solid #eee;
}

.tabs_nav_container.flat .tabs_nav > li > a {
    background: #fff;
    padding: 15px 25px;
}

.tabs_nav_container.flat .tabs_nav > li > a.active {
    background: #2196f3;
    color: #fff;
}

.tabs_nav_container.flat .tabs_panel_wrap {
    background: #fff;
    padding: 15px;
    position: relative;
    width: 100%;
}

.tabs_nav_container.flat .tabs_panel_wrap:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
}

.tabs_nav_container.flat .tabs_nav > li > a.active:after {
    border-top: 8px solid #2196f3;
    bottom: -10px;
    border-bottom: none;
}



/* accordians */
.accordian_panel {
    width: 100%;
    position: relative;
}

.accordian_title {
    position: relative;
    font-size: 14px;
    color: #999;
    font-weight: 700;
    padding: 10px 15px 10px 25px;
    display: block;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.accordian_body {
    width: 100%;
    padding: 15px 0;
    font-size: 14px;
    color: #999;
}

.accordian_title:before {
    content: "\f218";
    font-size: 16px;
    color: #999;
    font-family: "Ionicons";
    position: absolute;
    left: 0;
    top: 9px;
}

.accordian_title.active:before {
    content: "\f209";
}


.accordian_title:after {
    position: absolute;
    z-index: 3;
    bottom: -1px;
    left: 0;
    height: 2px;
    width: 0;
    content: "";
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

.accordian_title.active:after {
    background: #2196f3;
    width: 100%;
}

.accordians_container.flat .accordian_title {
    background: #2196f3;
    padding: 10px 15px 10px 35px;
    color: #fff;
    border-right: 5px solid rgba(0, 0, 0, 0.2);
}

.accordians_container.flat .accordian_title:before,
.accordians_container.flat .accordian_title:after {
    color: #fff;
}

.accordians_container.flat .accordian_title:before {
    left: 10px;
}


.accordians_container.arrowstyle .accordian_title:before {
    left: 0;
    content: "\f35e";
    font-size: 20px;
    top: 5px;
}

.accordians_container.arrowstyle .accordian_title.active:before {
    left: 0;
    content: "\f364";
    font-size: 20px;
    top: 5px;
}

.accordians_container.arrowright .accordian_title {
    padding-left: 0;
    padding-right: 25px;
}

.accordians_container.arrowright .accordian_title:before {
    left: auto;
    content: "\f35e";
    font-size: 20px;
    top: 5px;
    right: 0;
}

.accordians_container.arrowright .accordian_title.active:before {
    left: auto;
    content: "\f364";
    font-size: 20px;
    top: 5px;
    right: 0;
}

.accordians_container.plusright .accordian_title {
    padding-left: 0;
    padding-right: 25px;
}

.accordians_container.plusright .accordian_title:before {
    left: auto;
    content: "\f218";
    font-size: 16px;
    top: 9px;
    right: 0;
}

.accordians_container.plusright .accordian_title.active:before {
    left: auto;
    content: "\f209";
    font-size: 16px;
    top: 9px;
    right: 0;
}


/* accordians */

.popcontent {
    position: relative;
}

.demo .popover {
    display: inline-block;
    margin: 0 10px 30px;
    opacity: 1;
    position: relative;
    z-index: 0;
}

.demo .popover.left {
    margin-left: 12px;
    float: none !important;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 260px;
    padding: 1px;
    font-size: 13px;
    line-height: 1.42857143;
    text-align: left;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
    white-space: normal;
}

.popover.top {
    margin-top: -10px;
}

.popover.right {
    margin-left: 10px;
    float: none !important;
}

.popover.bottom {
    margin-top: 10px;
}

.popover.left {
    margin-left: -10px;
    float: none !important;
}

.pop_title {
    display: block;
    text-transform: uppercase;
    margin: 0;
    padding: 8px 14px;
    font-size: 13px;
    background-color: #ffffff;
    border-bottom: 1px solid #f2f2f2;
    border-radius: 1px 1px 0 0;
}

.popover_content {
    padding: 9px 14px;
}

.popover.top:before {
    bottom: -12px;
    left: 50%;
    margin: 0 0 0 -12px;
    content: "";
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #fff;
    position: absolute;
}

.popover.right:before {
    right: -12px;
    top: 50%;
    margin: -12px 0 0;
    content: "";
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #fff;
    position: absolute;
}

.popover.bottom:before {
    top: -12px;
    left: 50%;
    margin: 0 0 0 -12px;
    content: "";
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #fff;
    position: absolute;
}

.popover.left:before {
    left: -12px;
    top: 50%;
    margin: -12px 0 0;
    content: "";
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #fff;
    position: absolute;
}


/* tooltips */


.tooltip {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #2196f3;
}

.tooltip .icon {
    color: #333;
    font-size: 24px;
}

.tooltip .hovertxt:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -7px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
}

.tooltip .hovertxt {
    pointer-events: none;
    min-width: 160px;
    text-align: center;
    background: #000;
    font-size: 12px;
    color: #fff;
    border-radius: 3px;
    padding: 6px 6px 10px;
    position: absolute;
    left: 50%;
    bottom: 20px;
    opacity: 0;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -ms-transform: translate(-50%);
    /* IE 9 */
    -webkit-transform: translate(-50%);
    /* Chrome, Safari, Opera */
    transform: translate(-50%);
}

.tooltip:hover .hovertxt {
    opacity: 1;
    bottom: 40px;
}


.tooltip.success .hovertxt {
    background: #00bf6f;
}

.tooltip.success .hovertxt:before {
    border-top: 5px solid #00bf6f;
}

.tooltip.info .hovertxt {
    background: #31cde8;
}

.tooltip.info .hovertxt:before {
    border-top: 5px solid #31cde8;
}

.tooltip.warning .hovertxt {
    background: #eb8f34;
}

.tooltip.warning .hovertxt:before {
    border-top: 5px solid #eb8f34;
}

.tooltip.danger .hovertxt {
    background: #f25454;
}

.tooltip.danger .hovertxt:before {
    border-top: 5px solid #f25454;
}




/* table based forms */
.table_form_vertical {
    width: 100%;
    border-spacing: 20px;
    table-layout: fixed;
    font-size: 13px;
    color: #959595;
}

.table_form_vertical td {
    position: relative;
}

.table_form_horizontal {
    width: 100%;
    border-spacing: 20px;
    table-layout: fixed;
    font-size: 13px;
    color: #959595;
}

.table_form_horizontal td:first-child {
    width: 25%;
    vertical-align: top;
    padding: 10px 0 0;
    text-align: right;
}

.table_form_horizontal td {
    position: relative;
}

.mandatory {
    color: red;
}

.iconcalender {
    position: absolute;
    right: 0;
    bottom: 8px;
    width: 14px;
    opacity: 0.6;
}





.demo .div_msg,
.demo .div_error {
    width: 100%;
    max-width: 100%;
    padding-right: 10px;
}


/* profile page */
.containerwhite {
    width: 100%;
    overflow: hidden;
    display: table;
    table-layout: fixed;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    background: #fff;
    margin: 15px 0 0;
}

.containerwhite > .grid_1 {
    width: 25%;
    padding: 15px;
    display: table-cell;
    vertical-align: top;
    background: #fafafa;
    border-right: 1px solid #ddd;
    float: none;
}

.containerwhite > .grid_2 {
    width: 75%;
    display: table-cell;
    vertical-align: top;
    float: none;
}

.avtararea {
    width: 100%;
    position: relative;
}

.avtararea .pic {
    width: 100%;
    position: relative;
}

.avtararea .pic img {
    width: 100%;
    display: block;
    border: 1px solid #ddd;
    border-bottom: none;
}

.avtararea .picinfo {
    width: 100%;
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: #ffc107;
}

.avtararea .picinfo .name {
    font-weight: 700;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.avtararea .picinfo .mailinfo {
    font-size: 13px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.avtararea .pic .uploadavtar {
    display: none;
    left: 0;
    right: 0;
    top: 0;
    padding: 8px 10px 10px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    vertical-align: top;
}

.avtararea .pic:hover .uploadavtar {
    display: block;
}

.avtararea .pic .uploadavtar input[type="file"] {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    cursor: pointer;
}

.avtararea .pic .uploadavtar .icon {
    font-size: 18px;
    line-height: 1;
    position: relative;
    top: 2px;
    margin-right: 10px;
}


.contactlist {
    margin: 0;
    list-style: none;
}

.contactlist .icon {
    font-size: 20px;
    color: #666;
    position: absolute;
    left: 0;
    top: 6px;
}

.contactlist li {
    padding: 8px 0 8px 30px;
    font-size: 13px;
    color: #666;
    position: relative;
}

.contactarea {
    padding: 20px 0 0;
}


.centered_nav {
    width: 100%;
    border-bottom: 2px solid #ddd;
    margin: 0;
    list-style: none;
    display: table;
    table-layout: fixed;
}

.centered_nav > li {
    display: table-cell;
    vertical-align: top;
    position: relative;
}

.centered_nav > li > a {
    display: block;
    padding: 15px;
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    position: relative;
    text-align: center;
}

.centered_nav > li > a:before {
    bottom: -2px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 250ms ease 0s;
    -o-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
}

.centered_nav > li > a.active:before,
.centered_nav > li > a:hover:before {
    background: #2196f3;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.centered_nav > li > a.active:after {
    position: absolute;
    left: 50%;
    bottom: -2px;
    margin: 0 0 0 -8px;
    content: "";
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #2196f3;
}

.centered_nav > li > a.active {
    color: #2196f3;
}


.areabody {
    padding: 20px;
}

.repeatedrow {
    width: 100%;
    padding: 10px 0;
}

.repeatedrow .rowbody {
    padding: 0 0 0 34px;
}

.repeatedrow h3 .icon {
    font-size: 24px;
    margin: 0 10px 0 0;
}

.listview dl {
    margin-bottom: 18px;
    margin-top: 0;
    font-size: 13px;
    color: #666;
}

.listview .list dt {
    text-align: left;
    clear: left;
    float: left;
    overflow: hidden;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 160px;
}

.listview .list dd {
    margin-left: 180px;
}

/* inbox */
.medialist {
    width: 100%;
    list-style: none;
    margin: 0;
}

.medialist > li {
    display: table;
    width: 100%;
    table-layout: fixed;
    position: relative;
    padding: 6px 12px;
    border-bottom: 1px solid #ededed;
    cursor: pointer;
}

.medialist > li a {
    display: block;
    position: relative;
    overflow: hidden;
}

.medialist > li:hover {
    background: #fafafa;
}

.medialist > li.selected {
    background: #fffcbe;
}

.medialist > li.selected .avtar {
    display: none;
}

.medialist > li.selected .checkbox {
    display: block;
}

.medialist > li .grid {
    display: table-cell;
    vertical-align: middle;
}

.medialist > li .grid.first {
    width: 50px;
    padding-right: 0;
    height: 45px;
}

.medialist > li .grid.second {
    width: 80%;
}

.medialist > li .name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    padding: 0 0 0 0;
    width: 80%;
}

.medialist > li .desc {
    font-size: 12px;
    color: #999;
    font-weight: normal;
}

.medialist > li .date {
    font-size: 12px;
    color: #b3b3b3;
    font-weight: normal;
    float: right;
}

.medialist > li .date .icon {
    font-size: 16px;
    line-height: 1;
    position: relative;
    top: 1px;
}

.medialist > li.read .name {
    font-weight: normal;
    color: #666;
}

.medialist > li .avtar {
    margin-top: 5px;
}

.medialist > li .checkbox {
    display: none;
    position: relative;
    left: 10px;
}

.medialist > li:hover .checkbox {
    display: block;
}

.medialist > li:hover .avtar {
    display: none;
}

.containerwhite > .grid_2 .sortbar {
    background: #fafafa;
}

.containerwhite > .grid_2 .searchbar input[type="text"] {
    background: #fff;
}

.sortbar .txtnormal {
    font-size: 18px;
    color: #666;
    line-height: 34px;
    font-weight: 600;
    padding: 0 0 0 10px;
}

.topwrap {
    text-align: center;
    opacity: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    background: #607d8b;
    height: 55px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 0;
}

.topwrap .txtwhite {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    vertical-align: middle;
    min-height: 55px;
    line-height: 55px;
}

.topwrap .selectedt_txt {
    display: block;
    font-size: 16px;
    color: #fff;
    vertical-align: top;
}

body.selected .topwrap {
    opacity: 1;
    z-index: 130;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDowns;
    animation-name: fadeInDowns;
}


@-webkit-keyframes fadeInDowns {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}


@keyframes fadeInDowns {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}



.topwrap .one_third_grid {
    display: table-cell;
    vertical-align: middle;
}

.topwrap .one_third_grid:first-child {
    text-align: left;
}

.topwrap .one_third_grid:last-child {
    text-align: right;
    padding: 0px;
}

.topwrap .actions > li > a {
    background: none;
}

.topwrap .actions > li > a .icon {
    color: #fff;
}

.backarrow {
    width: 65px;
    min-height: 55px;
    padding: 0 20px;
    position: relative;
    text-align: center;
    float: left;
    line-height: 55px;
}

.backarrow:before {
    content: "\f2ca";
    font-size: 32px;
    color: #fff;
    font-family: "Ionicons";
    position: absolute;
    left: 20px;
    top: -1px;
}

.toptitle {
    width: 100%;
    border-bottom: 1px solid #ddd;
    margin: 0;
    padding: 15px;
}

.toptitle h4 {
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    width: 85%;
    font-weight: 300;
}

.toptitle .actions {
    position: absolute;
    right: 10px;
    top: 10px;
}

.bodyarea .medialist > li .avtar {
    display: inline-block;
}

.lightxt {
    color: #999;
    font-weight: 300;
}

.lightxt span {
    color: #999;
    font-weight: 300;
}

.medialist > li.bodycollapsed .lightxt,
.medialist > li.lastbox .lightxt {
    display: inline-block;
}

.medialist > li .lightxt {
    display: none;
}

.bodyarea .medialist > li:last-child {
    border-bottom: none;
}

.bodyarea .medialist > li.bodycollapsed .grid.second,
.bodyarea .medialist > li.lastbox .grid.second {
    width: 100%;
}

.bodyarea .medialist > li.bodycollapsed .grid.third,
.bodyarea .medialist > li.lastbox .grid.third {
    position: absolute;
    right: 12px;
    top: 10px;
}

.bodyarea .medialist > li.bodycollapsed .descbody,
.bodyarea .medialist > li.lastbox .descbody {
    padding: 20px 0;
    font-size: 13px;
}

.bodyarea .medialist > li .grid.first,
.bodyarea .medialist > li .grid.third {
    vertical-align: top;
}

.bodyarea .medialist > li.bodycollapsed:hover,
.bodyarea .medialist > li.lastbox:hover {
    background: #fff;
    cursor: default;
}

.bodyarea .medialist > li.bodycollapsed .desc,
.bodyarea .medialist > li.lastbox .desc {
    overflow: visible;
    white-space: normal;
    text-overflow: inherit;
    padding: 12px 0 0;
}


.areareply {
    background: #fff;
    min-height: 110px;
    padding: 12px;
    border-top: 1px solid #ededed;
}

.areareply .grid_2 {
    margin: 0 0 0 50px;
    float: none;
    display: block;
}

.areareply .txtlink {
    margin: 6px 0 15px;
    font-size: 14px;
}

.areareply .txtlink a {
    text-decoration: underline;
    color: #666;
}

.areareply .txtlink a:hover {
    color: #000;
}

.boxcontainer {
    width: 100%;
    border: 1px solid #ededed;
    border-radius: 3px;
    background: #fff;
    font-size: 13px;
    color: #999;
}

.boxcontainer .top {
    width: 100%;
    border-bottom: 1px solid #ededed;
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
}

.nametag {
    background: #eee;
    border: 1px solid #ddd;
    padding: 1px 20px 1px 4px;
    font-size: 11px;
    cursor: move;
    position: relative;
    margin: 5px;
    display: inline-block;
}

.nametag .closetag {
    position: absolute;
    right: 5px;
    top: 2px;
}

.nametag .closetag .icon {
    font-size: 10px;
    color: #999;
}

.nametag .closetag:hover .icon {
    font-size: 10px;
    color: #333;
}

.boxcontainer .middle {
    width: 100%;
    padding: 15px;
    position: relative;
}

.boxcontainer .bottom {
    width: 100%;
    border-top: 1px solid #ededed;
    padding: 15px;
    background: #f9f9f9;
    position: relative;
}

.txtarea {
    height: 22px;
    border: none;
    resize: none;
    margin: 5px 0;
    padding: 0;
    width: 100%;
    position: absolute;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #999;
}

.styleright {
    position: absolute;
    right: 10px;
    top: 15px;
    z-index: 1;
}

.styleright .to {
    margin: 0 3px;
}

.styleright a {
    color: #999;
}

.styleright a:hover {
    text-decoration: underline;
    color: #999;
}

.listrow {
    padding: 0 100px 0 0;
    width: 100%;
    display: table;
    table-layout: fixed;
}

.listrow .gridleft {
    width: 40px;
}

.listrow .gridleft,
.listrow .gridright {
    display: table-cell;
}

.boxcontainer .bottom .actions {
    position: absolute;
    right: 15px;
    top: 15px;
}

.boxcontainer .bottom .actions a {
    background: none;
}

.bodytxtarea {
    background: #fff;
    border: none;
    resize: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #999;
    height: 120px;
}

.descbody {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bodycollapsed .descbody {
    display: block;
    overflow: visible;
    text-overflow: inherit;
    white-space: normal;
}

.lastbox .descbody {
    display: block;
    overflow: visible;
    text-overflow: inherit;
    white-space: normal;
}

.repeatedrow .rowbody.formprofile .field_control.horizontal .field_label {
    text-align: left;
}

.areabody .formhorizontal {
    width: 90%;
}

.areabody .formhorizontal .field_control.horizontal .field_label {
    text-align: left;
}


.web_form .themebtn {
    padding: 0 15px;
}


.floatedchecks {
    width: 100%;
    display: inline-block;
    list-style: none;
    margin: 0;
}

.floatedchecks li {
    float: left;
    margin: 0 30px 10px 0;
    font-size: 12px;
    color: #999;
}

.floatedchecks li label {
    font-size: 12px;
}

.table_form_horizontal small {
    font-size: 12px;
    font-style: italic;
    color: #999;
}

.threeCol td {
    width: 33%;
    vertical-align: bottom;
}

.threeCol td input {
    margin-top: 5px !important;
}

.threeCol td select {
    margin-top: 5px !important;
}

.threeCol td:first-child {
    text-align: left;
    width: 33%;
}

.logoWrap {
    margin: 10px 0 5px 0;
    position: relative;
}

.logothumb {
    width: 100%;
    height: 220px;
    border: 1px solid #D8D8D8;
    padding: 0 20px;
    display: block;
    text-align: center;
    vertical-align: middle;
    background: #F2F2F2;
}

.logothumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    /* IE 9 */
    -webkit-transform: translate(-50%, -50%);
    /* Chrome, Safari, Opera */
}

.logothumb .deleteLink {
    width: 20px;
    text-align: center;
    line-height: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.logothumb .deleteLink .icon {
    font-size: 20px;
    color: #333;
}

.logothumb.blackclr {
    background: #252525;
    border: 1px solid #fff;
}

.logothumb.blackclr .deleteLink .icon {
    color: #fff;
}

.wrapcenter {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    left: -60px;
}

.wrapcenter .table_form_horizontal td:first-child {
    width: 35%;
}

.switch_layout .wrapcenter {
    max-width: 100%;
}

.switch_layout .wrapcenter .table_form_horizontal td:first-child {
    width: 25%;
}

.checklistTable {
    width: 100%;
    border-spacing: 0;
}

.checklistTable td {
    display: inline-block;
    margin: 0 2px 0 0;
    padding: 7px 10px 5px 8px !important;
    border: 1px solid #eee;
    border-radius: 3px;
    font-size: 12px;
    background: #f6f6f6;
}

.checklistTable td input[type="checkbox"],
.checklistTable td input[type="radio"] {
    margin: 0;
}

.checklistTable td:first-child {
    width: auto !important;
    text-align: left;
}

.welcome_msg {
    position: fixed;
    right: 20px;
    top: 80px;
    z-index: 1001;
    display: none;
    background: #cddc39;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    padding: 20px 30px 20px 30px;
    min-height: 60px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

/*.welcome_msg:before{font-size:60px;left: 0;line-height: 1;opacity: 0.2;position: absolute;top:4px;vertical-align: middle;content: "\f251";  font-family: "Ionicons";}*/


/* toggle switch */
.statustab.addmarg {
    margin-top: 15px;
}

.statustab {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 82px;
    height: 20px;
    padding: 3px;
    border-radius: 18px;
    margin: 0 0 0;
    cursor: pointer;
}

.switch-inputs {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.switch-labels {
    position: relative;
    display: block;
    height: inherit;
    font-size: 10px;
    text-transform: uppercase;
    background: #00bf6f;
    border-radius: inherit;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
    -webkit-transition: 0.15s ease-out;
    -moz-transition: 0.15s ease-out;
    -o-transition: 0.15s ease-out;
    transition: 0.15s ease-out;
    -webkit-transition-property: opacity background;
    -moz-transition-property: opacity background;
    -o-transition-property: opacity background;
    transition-property: opacity background;
}

.switch-labels:before,
.switch-labels:after {
    position: absolute;
    top: 50%;
    margin-top: -.6em;
    line-height: 1;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}

.switch-labels:before {
    content: attr(data-off);
    right: 11px;
    color: #fff;
}

.switch-labels:after {
    content: attr(data-on);
    left: 11px;
    color: white;
    text-shadow: 0 1px rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.statustab.active .switch-labels {
    background: #f25454;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}

.statustab.active .switch-labels:before {
    opacity: 0;
}

.statustab.active .switch-labels:after {
    opacity: 1;
}

.switch-handles {
    position: absolute;
    top: 1px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 100%;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    background-image: -webkit-linear-gradient(top, white 40%, #f0f0f0);
    background-image: -moz-linear-gradient(top, white 40%, #f0f0f0);
    background-image: -o-linear-gradient(top, white 40%, #f0f0f0);
    background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
    -webkit-transition: left 0.15s ease-out;
    -moz-transition: left 0.15s ease-out;
    -o-transition: left 0.15s ease-out;
    transition: left 0.15s ease-out;
}

.switch-handles:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -6px;
    width: 12px;
    height: 12px;
    background: #f9f9f9;
    border-radius: 6px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
    background-image: -webkit-linear-gradient(top, #eeeeee, white);
    background-image: -moz-linear-gradient(top, #eeeeee, white);
    background-image: -o-linear-gradient(top, #eeeeee, white);
    background-image: linear-gradient(to bottom, #eeeeee, white);
}

.statustab.active .switch-handles {
    left: 62px;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

.companieslist th {
    text-align: center;
}

.companieslist th:first-child,
.companieslist th:nth-child(3) {
    text-align: left;
}

.companieslist th:first-child {
    width: 25%;
}


/*  color pallete */

.color_pallete {
    background: none repeat scroll 0 0 #fff;
    box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 0;
    left: 20px;
    padding: 15px 15px 0 15px;
    transform: translate(0, 100%);
    -webkit-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);

    -webkit-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
    width: 200px;
    z-index: 110;
}

body.switchtoggled .color_pallete {
    opacity: 1;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
}

.color_pallete .pallete_control {
    background: #fff;
    border-radius: 3px 3px 0 0;
    width: 50px;
    height: 40px;
    position: absolute;
    left: 0;
    bottom: 100%;
    display: inline-block;
    padding: 8px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.3);
}

.color_pallete .pallete_control .icon {
    line-height: 1;
    color: #666;
    font-size: 24px;
    position: relative;
    top: 0px;
}

body.switchtoggled .color_pallete .pallete_control {
    box-shadow: none;
}

.controlwrap {
    width: 100%;
    padding: 0 0 15px 0;
    display: inline-block;
}

.controlwrap h5 {
    text-transform: uppercase;
    color: #333;
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 5px;
}

.controlwrap .btngroup .themebtn {
    width: 46%;
    padding: 0 5px;
    text-align: center;
    float: left;
    border-color: #2196f3;
    color: #2196f3;
}

.controlwrap .btngroup .themebtn.active {
    background: #2196f3;
    color: #fff;
}


.colorpallets {
    margin: 0 0 0 -10px;
    list-style: none;
}

.colorpallets:after {
    visibility: hidden;
    clear: both;
    content: "";
    display: block;
    height: 0;
}

.colorpallets li {
    float: left;
    padding: 0 0 10px 10px;
}

.colorpallets li a {
    display: block;
    width: 22px;
    height: 22px;
    background: #ddd;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.colorpallets li:hover a {
    transform: scale(1.2);
}

.colorpallets li.active a {
    transform: scale(1.2);
}

.colorpallets li.red a {
    background: #f25454;
}

.colorpallets li.green a {
    background: #00bf6f;
}

.colorpallets li.yellow a {
    background: #ffc107;
}

.colorpallets li.orange a {
    background: #ff5722;
}

.colorpallets li.darkgrey a {
    background: #607d8b;
}

.colorpallets li.darkblue a {
    background: #3f51b5;
}

.colorpallets li.blue a {
    background: #2196f3;
}

.colorpallets li.brown a {
    background: #795548;
}


/* Loaders & Preloaders */

.circularLoader {
    border-radius: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    width: 80px;
    height: 80px;
    position: relative;
}

.circular {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;

    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;

}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite,
        color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite,
        color 6s ease-in-out infinite;
    stroke-linecap: round;
    stroke: #db652d;
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

@-webkit-keyframes color {
    0% {
        stroke: #db652d;
    }

    20% {
        stroke: #db652d;
    }

    25% {
        stroke: #db652d;
    }

    45% {
        stroke: #db652d;
    }

    50% {
        stroke: #db652d;
    }

    70% {
        stroke: #db652d;
    }

    75% {
        stroke: #db652d;
    }

    95% {
        stroke: #db652d;
    }

}

@keyframes color {
    0% {
        stroke: #3f88f8;
    }

    20% {
        stroke: #3f88f8;
    }

    25% {
        stroke: #dd413b;
    }

    45% {
        stroke: #dd413b;
    }

    50% {
        stroke: #f6ae2e;
    }

    70% {
        stroke: #f6ae2e;
    }

    75% {
        stroke: #259a5d;
    }

    95% {
        stroke: #259a5d;
    }

}



/******************* PRELOADER 1 **********
*******************************************/
#preloader_1 {
    top: 20px;
    position: relative;
}

#preloader_1 span {
    display: block;
    bottom: 0px;
    width: 5px;
    height: 20px;
    background: #9b59b6;
    position: absolute;
    -webkit-animation: preloader_1 1.5s infinite ease-in-out;
    -moz-animation: preloader_1 1.5s infinite ease-in-out;
    -ms-animation: preloader_1 1.5s infinite ease-in-out;
    -o-animation: preloader_1 1.5s infinite ease-in-out;
    animation: preloader_1 1.5s infinite ease-in-out;

}

#preloader_1 span:nth-child(2) {
    left: 11px;
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -ms-animation-delay: .2s;
    -o-animation-delay: .2s;
    animation-delay: .2s;

}

#preloader_1 span:nth-child(3) {
    left: 22px;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -ms-animation-delay: .4s;
    -o-animation-delay: .4s;
    animation-delay: .4s;
}

#preloader_1 span:nth-child(4) {
    left: 33px;
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
}

#preloader_1 span:nth-child(5) {
    left: 44px;
    -webkit-animation-delay: .8s;
    -moz-animation-delay: .8s;
    -ms-animation-delay: .8s;
    -o-animation-delay: .8s;
    animation-delay: .8s;
}

@-webkit-keyframes preloader_1 {
    0% {
        height: 10px;
        -webkit-transform: translateY(0px);
        background: #9b59b6;
    }

    25% {
        height: 50px;
        -webkit-transform: translateY(15px);
        background: #3498db;
    }

    50% {
        height: 10px;
        -webkit-transform: translateY(0px);
        background: #9b59b6;
    }

    100% {
        height: 10px;
        -webkit-transform: translateY(0px);
        background: #9b59b6;
    }
}

@-moz-keyframes preloader_1 {
    0% {
        height: 10px;
        -moz-transform: translateY(0px);
        background: #9b59b6;
    }

    25% {
        height: 50px;
        -moz-transform: translateY(15px);
        background: #3498db;
    }

    50% {
        height: 10px;
        -moz-transform: translateY(0px);
        background: #9b59b6;
    }

    100% {
        height: 10px;
        -moz-transform: translateY(0px);
        background: #9b59b6;
    }
}

@-ms-keyframes preloader_1 {
    0% {
        height: 10px;
        -ms-transform: translateY(0px);
        background: #9b59b6;
    }

    25% {
        height: 50px;
        -ms-transform: translateY(15px);
        background: #3498db;
    }

    50% {
        height: 10px;
        -ms-transform: translateY(0px);
        background: #9b59b6;
    }

    100% {
        height: 10px;
        -ms-transform: translateY(0px);
        background: #9b59b6;
    }
}

@keyframes preloader_1 {
    0% {
        height: 10px;
        transform: translateY(0px);
        background: #9b59b6;
    }

    25% {
        height: 50px;
        transform: translateY(15px);
        background: #3498db;
    }

    50% {
        height: 10px;
        transform: translateY(0px);
        background: #9b59b6;
    }

    100% {
        height: 10px;
        transform: translateY(0px);
        background: #9b59b6;
    }
}





/******************* PRELOADER 4 **********
*******************************************/


#preloader_4 {
    top: 20px;
    position: relative;
}

#preloader_4 span {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #3498db;
    opacity: 0.5;
    border-radius: 20px;
    -webkit-animation: preloader_4 1s infinite ease-in-out;
    -moz-animation: preloader_4 1s infinite ease-in-out;
    -ms-animation: preloader_4 1s infinite ease-in-out;
    -animation: preloader_4 1s infinite ease-in-out;

}

#preloader_4 span:nth-child(2) {
    left: 20px;
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -ms-animation-delay: .2s;
    animation-delay: .2s;
}

#preloader_4 span:nth-child(3) {
    left: 40px;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -ms-animation-delay: .4s;
    animation-delay: .4s;
}

#preloader_4 span:nth-child(4) {
    left: 60px;
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    animation-delay: .6s;
}

#preloader_4 span:nth-child(5) {
    left: 80px;
    -webkit-animation-delay: .8s;
    -moz-animation-delay: .8s;
    -ms-animation-delay: .8s;
    animation-delay: .8s;
}

@-webkit-keyframes preloader_4 {
    0% {
        opacity: 0.3;
        -webkit-transform: translateY(0px);
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    }

    50% {
        opacity: 1;
        -webkit-transform: translateY(-10px);
        background: #f1c40f;
        box-shadow: 0px 20px 3px rgba(0, 0, 0, 0.05);
    }

    100% {
        opacity: 0.3;
        -webkit-transform: translateY(0px);
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    }
}

@-moz-keyframes preloader_4 {
    0% {
        opacity: 0.3;
        -moz-transform: translateY(0px);
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    }

    50% {
        opacity: 1;
        -moz-transform: translateY(-10px);
        background: #f1c40f;
        box-shadow: 0px 20px 3px rgba(0, 0, 0, 0.05);
    }

    100% {
        opacity: 0.3;
        -moz-transform: translateY(0px);
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    }
}

@-ms-keyframes preloader_4 {
    0% {
        opacity: 0.3;
        -ms-transform: translateY(0px);
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    }

    50% {
        opacity: 1;
        -ms-transform: translateY(-10px);
        background: #f1c40f;
        box-shadow: 0px 20px 3px rgba(0, 0, 0, 0.05);
    }

    100% {
        opacity: 0.3;
        -ms-transform: translateY(0px);
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    }
}

@keyframes preloader_4 {
    0% {
        opacity: 0.3;
        transform: translateY(0px);
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    }

    50% {
        opacity: 1;
        transform: translateY(-10px);
        background: #f1c40f;
        box-shadow: 0px 20px 3px rgba(0, 0, 0, 0.05);
    }

    100% {
        opacity: 0.3;
        transform: translateY(0px);
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    }
}



/******************* PRELOADER 6 **********
*******************************************/
#preloader6 {
    position: relative;
    width: 42px;
    height: 42px;
    -webkit-animation: preloader_6 5s infinite linear;
    -moz-animation: preloader_6 5s infinite linear;
    -ms-animation: preloader_6 5s infinite linear;
    animation: preloader_6 5s infinite linear;
}

#preloader6 span {
    width: 20px;
    height: 20px;
    position: absolute;
    background: red;
    display: block;
    -webkit-animation: preloader_6_span 1s infinite linear;
    -moz-animation: preloader_6_span 1s infinite linear;
    -ms-animation: preloader_6_span 1s infinite linear;
    animation: preloader_6_span 1s infinite linear;
}

#preloader6 span:nth-child(1) {
    background: #2ecc71;

}

#preloader6 span:nth-child(2) {
    left: 22px;
    background: #9b59b6;
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -ms-animation-delay: .2s;
    animation-delay: .2s;

}

#preloader6 span:nth-child(3) {
    top: 22px;
    background: #3498db;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -ms-animation-delay: .4s;
    animation-delay: .4s;
}

#preloader6 span:nth-child(4) {
    top: 22px;
    left: 22px;
    background: #f1c40f;
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    animation-delay: .6s;
}

@-webkit-keyframes preloader_6 {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes preloader_6_span {
    0% {
        -webkit-transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
    }
}


@-moz-keyframes preloader_6 {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-moz-keyframes preloader_6_span {
    0% {
        -moz-transform: scale(1);
    }

    50% {
        -moz-transform: scale(0.5);
    }

    100% {
        -moz-transform: scale(1);
    }
}

@-ms-keyframes preloader_6 {
    from {
        -ms-transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
    }
}

@-ms-keyframes preloader_6_span {
    0% {
        -ms-transform: scale(1);
    }

    50% {
        -ms-transform: scale(0.5);
    }

    100% {
        -ms-transform: scale(1);
    }
}

@-ms-keyframes preloader_6 {
    from {
        -ms-transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
    }
}

@keyframes preloader_6_span {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

.wraplayer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
}

.wraplayer .layercontent {
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
    /* IE 9 */
    -webkit-transform: translate(-50%, -50%);
    /* Chrome, Safari, Opera */
    transform: translate(-50%, -50%);
}

.system_message {
    top: 80px;
}

.photosrow {
    width: 100%;
    display: inline-block;
}

.photosquare {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 10px 5px 0 0;
    background: #fff;
    padding: 3px;
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #D6D6D6;
}

.photosquare img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 5px;
}

.photosquare .crossLink {
    position: absolute;
    right: 1px;
    top: 1px;
    z-index: 1;
}

.crossLink {
    width: 14px;
    height: 14px;
    background: #F00;
    position: relative;
    display: inline-block;
    text-align: center;
    line-height: 12px;
}

.crossLink:before {
    content: "\f2d7";
    font-size: 12px;
    color: #fff;
    font-family: "Ionicons";
    line-height: 1;
}

.fieldadd {
    width: 100%;
    display: inline-block;
    padding: 0 0 10px 0;
}

.fieldadd .grid_1 {
    width: 80%;
    float: left;
}

.fieldadd .grid_2 {
    width: 17%;
    float: right;
}

.web_form .actions > li > a {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 100%;
    height: 38px;
    width: 38px;
    display: block;
}

.web_form .actions > li > a .icon {
    line-height: 1.9;
}

.attachment {
    position: relative;
}

.attachment input[type="file"] {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    cursor: pointer;
}

.attachment .icon {
    font-size: 18px;
    line-height: 1;
    position: relative;
}

.spn_must_field,
.mandatory {
    color: #ff0000;
}

.borderedgrid {
    width: 100%;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 3px;
}

.borderedgrid .greywrap {
    width: 100%;
    border: 1px solid #eee;
    border-top: 5px solid #0099cc;
    min-height: 600px;
}

.buttongrp {
    width: 100%;
    display: inline-block;
    text-align: center;
}

.buttongrp .themebtn {
    min-width: 250px;
}

.tabs_panel_wrap .footinfo {
    padding: 15px 0 0;
}


.table_form_horizontal .checkbox.inline {
    margin: 10px 0 0;
}

.tableinner {
    width: 100%;
    table-layout: fixed;
}

.tableinner td {
    padding: 0 0 15px 15px;
}

.tableinner td:first-child {
    padding: 0;
    width: auto;
}

.bannerthumb {
    width: 120px;
    display: block;
    border: 1px solid #ddd;
    background: #fff;
    padding: 3px;
}

.table.table-move td {
    cursor: move;
}

.actions > li > a .icon.list {
    font-size: 20px;
}


.boxes_container {
    margin: 0 0 0 -20px;
}

.boxes_container .boxround {
    padding: 0 0 20px 20px;
    width: 33.3%;
    float: left;
    position: relative;
}

.boxwraplist {
    width: 100%;
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
}

.boxlabel {
    width: 100%;
    display: block;
    background: #ededed;
    padding: 6px;
    font-weight: 600;
    font-size: 13px;
}

.boxlabel label {
    font-weight: 600;
}

.scrollerwrap {
    height: 140px;
    overflow: auto;
    padding: 0;
    margin: 5px 0 0 10px;
}

.verticalcheck_list {
    margin: 0;
}

.verticalcheck_list li {
    padding: 3px 0 3px 0;
    font-size: 12px;
    color: #999;
    line-height: 21px;
    list-style: none;
}

/*.verticalcheck_list li input[type="checkbox"]{margin:0;}*/
.verticalcheck_list li ul {
    margin: 7px 0 0 15px;
    padding: 0;
    width: auto;
}

.verticalcheck_list label {
    display: block;
}

.iconerase {
    width: 20px;
    height: 26px;
    margin: 2px 0 0;
    position: relative;
}


/* yokart dashboard css (added on 3 dec 2015) */

.graphPanel {
    width: 100%;
    display: table;
    table-layout: fixed;
}

.graphPanel .grid_1 {
    width: 60%;
    display: table-cell;
    vertical-align: top;
    float: none;
    padding: 15px;
}

.graphPanel .grid_2 {
    width: 40%;
    display: table-cell;
    vertical-align: top;
    float: none;
    border-left: 1px solid #ddd;
}

.repeatedPanel .section {
    padding: 15px;
}

.paneltop {
    width: 100%;
    display: inline-block;
    margin: 0 0 15px 0;
    position: relative;
}

.paneltop h4 {
    padding: 0;
    font-size: 18px;
    color: #333;
    font-weight: 300;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.paneltop h4 strong {
    font-weight: 600;
}

.graphcontent td {
    font-size: 13px;
    padding: 18px 10px;
}

.graphcontent tr:last-child td {
    border-bottom: none;
}

.graphcontent tr.first td {
    font-size: 19px;
    font-weight: 700;
    color: #fa8564;
}

.graphcontent th {
    padding: 28px 10px;
    font-size: 15px;
}

.graphcontent td:first-child {
    text-transform: uppercase;
    padding-left: 20px;
}

.graphcontent td:last-child,
.graphcontent th:last-child {
    text-align: center;
}

.repeatedPanel {
    width: 100%;
}

.repeatedPanel:after {
    clear: both;
    display: block;
    content: "";
    visibility: hidden;
    height: 0;
}

.paneltop .actions {
    position: absolute;
    right: -10px;
    top: -5px;
}

.horizontal_grids {
    width: 100%;
    display: table;
    table-layout: fixed;
    margin: 20px 0 0;
}

.horizontal_grids li {
    display: table-cell;
    vertical-align: top;
    border-left: 1px solid #ddd;
    padding: 4px 15px 10px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

.horizontal_grids li:first-child {
    border-left: 0;
    color: #2196f3;
    padding-left: 0;
}

.horizontal_grids li:nth-child(2) {
    color: #fa8564;
}

.horizontal_grids li:nth-child(3) {
    color: #f5ba19;
}

.horizontal_grids li:nth-child(4) {
    color: #a48ad4;
}

.horizontal_grids li span {
    display: block;
    font-weight: 300;
    color: #666;
    text-transform: uppercase;
    font-size: 13px;
}


.horizontal_gridsthird {
    width: 100%;
    display: table;
    table-layout: fixed;
    margin: 0 0 0;
}

.horizontal_gridsthird li {
    display: table-cell;
    vertical-align: top;
    padding: 4px 15px 10px;
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    color: #aec785;
}

.horizontal_gridsthird li:first-child {
    padding-left: 0;
}

.horizontal_gridsthird li span {
    display: block;
    font-weight: 300;
    color: #666;
    text-transform: uppercase;
    font-size: 13px;
}

.onehalf_cols .section {
    min-height: 450px;
}

.socialbox {
    background: #fff;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 100%;
    margin: 20px 0 0;
}

.socialbox .boxtop {
    height: 80px;
    position: relative;
    padding: 10px 15px;
    width: 100%;
    background: #ddd;
    text-align: center;
}

.socialbox .boxtop .icon {
    color: #fff;
    font-size: 44px;
    line-height: 1;
}

.socialbox .socialname {
    position: absolute;
    left: 50%;
    border: 1px solid #ddd;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    color: #666;
    padding: 0 15px;
    height: 28px;
    line-height: 24px;
    border-radius: 30px;
    bottom: -15px;
    background: #fff;
    width: 140px;
    margin: 0 0 0 -70px;
}

.socialbox .boxbody {
    height: 64px;
    position: relative;
    padding: 24px 15px 15px;
    width: 100%;
}

.socialbox .boxbody .left {
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
}

.socialbox .boxbody .right {
    color: #666;
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    padding: 6px 0 0;
}

.socialbox.fb .boxtop {
    background: #3a5795;
}

.socialbox.fb .boxbody .left {
    color: #3a5795;
}

.socialbox.pt .boxtop {
    background: #cb2027;
}

.socialbox.pt .boxbody .left {
    color: #cb2027;
}

.socialbox.tw .boxtop {
    background: #55acee;
}

.socialbox.tw .boxbody .left {
    color: #55acee;
}

.socialbox.g .boxtop {
    background: #dc4b3e;
}

.socialbox.g .boxbody .left {
    color: #dc4b3e;
}


.threegrids .section {
    padding: 0;
    display: table;
    table-layout: fixed;
}

.threegrids .panelbottom {
    height: 265px;
    overflow: auto;
}

.threegrids .v_grid {
    border-left: 1px solid #e5e5e5;
    display: table-cell;
    vertical-align: top;
    padding: 20px 20px 10px;
}

.threegrids .v_grid:first-child {
    border-left: none;
}

.repeatedPanel .bulletlist {
    margin: 0;
}

.repeatedPanel .bulletlist li {
    font-size: 13px;
    color: #666;
    padding: 0 100px 10px 20px;
    position: relative;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.repeatedPanel .bulletlist li:before {
    width: 7px;
    height: 7px;
    top: 7px;
}

.repeatedPanel .bulletlist li:last-child {
    padding-bottom: 0;
}

.bulletlist li .count {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 13px;
    font-weight: 600;
}

.bulletlist.countries li:before {
    display: none;
}

.bulletlist.countries li {
    padding: 0 100px 10px 0;
}

.bulletlist.countries li img {
    display: inline-block;
    vertical-align: middle;
}

.bulletlist.purple li:before {
    background: #a48ad4;
}

.bulletlist.purple li .count {
    color: #a48ad4;
}

.bulletlist.green li:before {
    background: #0c9d94;
}

.bulletlist.green li .count {
    color: #0c9d94;
}

.bulletlist.blue li:before {
    background: #2196f3;
}

.bulletlist.blue li .count {
    color: #2196f3;
}

.bulletlist.org li:before {
    background: #fa8564;
}

.bulletlist.org li .count {
    color: #fa8564;
}

.panelmidd .grid_1 {
    width: 60%;
    padding: 20px 0 0 10px;
}

.panelmidd .grid_2 {
    width: 38%;
    float: right;
    padding: 30px 20px 0 0;
}


.vertical_grids {
    width: 100%;
    margin: 0;
}

.vertical_grids li {
    display: block;
    border-top: 1px dashed #ddd;
    padding: 15px 0;
    font-size: 17px;
    font-weight: 600;
}

.vertical_grids li:first-child {
    border-top: 0;
    color: #2196f3;
    padding-left: 0;
}

.vertical_grids li:nth-child(2) {
    color: #fa8564;
}

.vertical_grids li:nth-child(3) {
    color: #88ac4e;
}

.vertical_grids li span {
    display: block;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    font-size: 16px;
}

.vertical_grids li small {
    display: block;
    font-weight: 300;
    color: #666;
    text-transform: uppercase;
    font-size: 14px;
}

.onehalf_cols.new .section {
    min-height: 400px;
}

/*************************************************************** media queries ************************************************************************************/

@media only screen and (min-width:1401px) {
    .switch_layout .leftside {
        opacity: 1;
        transform: translate3d(0px, 0px, 0px);
        -ms-transform: translate3d(0px, 0px, 0px);
        /* IE 9 */
        -webkit-transform: translate3d(0px, 0px, 0px);
        /* Chrome, Safari, Opera */
    }


    .switch_layout .menutrigger {
        display: none;
    }

    .switch_layout .page {
        padding-left: 280px;
    }

    .switch_layout .fixed_container {
        max-width: 100%;
        padding: 0 25px;
    }


    /* toggle switch */
    .switch {
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 75px;
        height: 20px;
        padding: 3px;
        border-radius: 18px;
        margin: 4px 0 0;
        cursor: pointer;
    }

    .switch-input {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }

    .switch-label {
        position: relative;
        display: block;
        height: inherit;
        font-size: 10px;
        text-transform: uppercase;
        background: rgba(0, 0, 0, 0.3);
        border-radius: inherit;
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
        -webkit-transition: 0.15s ease-out;
        -moz-transition: 0.15s ease-out;
        -o-transition: 0.15s ease-out;
        transition: 0.15s ease-out;
        -webkit-transition-property: opacity background;
        -moz-transition-property: opacity background;
        -o-transition-property: opacity background;
        transition-property: opacity background;
    }

    .switch-label:before,
    .switch-label:after {
        position: absolute;
        top: 50%;
        margin-top: -.6em;
        line-height: 1;
        -webkit-transition: inherit;
        -moz-transition: inherit;
        -o-transition: inherit;
        transition: inherit;
    }

    .switch-label:before {
        content: attr(data-off);
        right: 11px;
        color: #fff;
    }

    .switch-label:after {
        content: attr(data-on);
        left: 11px;
        color: white;
        text-shadow: 0 1px rgba(0, 0, 0, 0.2);
        opacity: 0;
    }

    .switch.active .switch-label {
        background: rgba(0, 0, 0, 0.3);
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
    }

    .switch.active .switch-label:before {
        opacity: 0;
    }

    .switch.active .switch-label:after {
        opacity: 1;
    }

    .switch-handle {
        position: absolute;
        top: 1px;
        left: 4px;
        width: 24px;
        height: 24px;
        background: white;
        border-radius: 100%;
        box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
        background-image: -webkit-linear-gradient(top, white 40%, #f0f0f0);
        background-image: -moz-linear-gradient(top, white 40%, #f0f0f0);
        background-image: -o-linear-gradient(top, white 40%, #f0f0f0);
        background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
        -webkit-transition: left 0.15s ease-out;
        -moz-transition: left 0.15s ease-out;
        -o-transition: left 0.15s ease-out;
        transition: left 0.15s ease-out;
    }

    .switch-handle:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -6px 0 0 -6px;
        width: 12px;
        height: 12px;
        background: #f9f9f9;
        border-radius: 6px;
        box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
        background-image: -webkit-linear-gradient(top, #eeeeee, white);
        background-image: -moz-linear-gradient(top, #eeeeee, white);
        background-image: -o-linear-gradient(top, #eeeeee, white);
        background-image: linear-gradient(to bottom, #eeeeee, white);
    }

    .switch.active .switch-handle {
        left: 50px;
        box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
    }


}


@media only screen and (max-width:1050px) {

    body.toggled-left .leftoverlay,
    body.toggled-right .rightoverlay {
        display: block;
    }

    .coloredbox h3 {
        font-size: 30px;
    }

    body.toggled-right,
    body.toggled-left {
        overflow: hidden;
    }

    body.active {
        overflow: hidden;
    }

    .demo .col-sm-2 .themebtn {
        font-size: 13px;
        display: inline-block;
    }

    .tabs_nav {
        text-align: center;
    }

    /*.tabs_nav > li{display: inline-block;} */
    .tabs_nav_container.flat .tabs_nav > li > a {
        font-size: 11px;
        padding: 10px;
    }

    .switch {
        display: none;
    }

    .switch_layout .menutrigger {
        display: block;
    }

    .switch_layout .page {
        padding-left: 0;
    }

    .switch_layout .leftside {
        opacity: 0;
        transform: translate3d(-280px, 0px, 0px);
        -ms-transform: translate3d(-280px, 0px, 0px);
        /* IE 9 */
        -webkit-transform: translate3d(-280px, 0px, 0px);
        /* Chrome, Safari, Opera */
    }

}

@media only screen and (max-width:990px) {
    .color_pallete {
        display: none;
    }

    .table-responsive.table td.center,
    .table-responsive.table th.center {
        text-align: left;
    }

    .breadcrumb.flat {
        top: -10px;
        margin: 0 0 -10px 0;
    }

    .welcome_msg {
        left: 10px;
        right: 10px;
        top: 60px;
    }

    .tabs_nav_container.flat .tabs_nav > li > a {
        padding: 10px;
    }

    .containerwhite > .grid_1 {
        display: none;
    }

    .containerwhite > .grid_1.profile {
        display: table-cell;
    }

    .sortbar {
        padding: 10px 5px;
        display: table;
    }

    .sortbar .grid_1,
    .sortbar .grid_2 {
        width: auto;
        float: none;
        display: table-cell;
        vertical-align: top;
        padding: 0 5px;
    }

    .sortbar .grid_1 {
        width: 85%;
    }

    .sortbar .searchbar input[type="text"] {
        padding-right: 50px;
    }

    .sortbar .col-sm-6 {
        width: 100%;
    }

    .sortbar .searchbar {
        width: 100%;
    }

    .sortbar select {
        width: 50px;
    }

    .headerwrap {
        height: 45px;
    }

    .headerwrap .one_third_grid {
        display: inline-block;
        vertical-align: top;
    }

    .menutrigger {
        padding: 0 5px;
        width: 35px;
        height: 45px;
        line-height: 42px;
    }

    .menutrigger:before {
        left: 10px;
        font-size: 27px;
    }

    .menutrigger.active:before {
        font-size: 22px;
    }

    .headerwrap .one_third_grid.logo {
        width: auto;
    }

    .headerwrap .one_third_grid.logo img {
        height: 40px;
        position: relative;
        top: 3px;
        padding: 8px 0;
    }

    .headerwrap .one_third_grid:last-child {
        width: auto;
        float: right;
    }

    .logout {
        display: none;
    }

    .iconmenus > li > a {
        width: 30px;
        height: 30px;
        line-height: 34px;
    }

    .iconmenus > li {
        margin: 0 3px;
    }

    .headerwrap .one_third_grid:first-child {
        width: auto;
    }

    .iconmenus {
        padding: 7px 0 7px 7px;
    }

    .iconmenus > li > a .counts {
        font-size: 8px;
        padding: 0 3px 1px;
    }

    .iconmenus > li.togglemsg {
        display: none;
    }

    .searchwrap {
        padding: 0;
        height: 45px;
    }

    .searchwrap .searchform {
        max-width: 100%;
    }

    .searchwrap .searchform input[type="text"] {
        height: 45px;
        padding: 0 40px;
    }

    .searchwrap .searchform:before {
        top: 7px;
    }

    .searchwrap .searchform input[type="text"]:focus {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .searchwrap .searchclose {
        top: 8px;
    }

    .menutrigger.active {
        background: none;
    }

    .leftside,
    .rightside {
        padding-top: 45px;
    }

    #body {
        padding: 45px 0 0;
    }

    .page {
        padding: 10px 0;
    }

    .fixed_container {
        padding: 0 10px;
    }

    #footer {
        margin-bottom: 10px;
    }

    .section {
        margin: 15px 0 0;
    }

    .fourcols {
        margin-top: 12px;
    }

    .coloredbox h3 {
        font-size: 40px;
    }



    h1 {
        font-size: 20px;
        text-align: center;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 17px;
    }

    h4 {
        font-size: 16px;
    }

    h5 {
        font-size: 15px;
    }

    h6 {
        font-size: 14px;
    }

    .sortbar .fieldselect label {
        display: none;
    }

    .footinfo {
        padding: 10px;
    }

    .demo .col-sm-2 {
        padding: 5px;
    }


    .alert_position {
        width: auto;
        max-width: 100%;
    }

    .top_left {
        top: 65px;
        left: 10px;
        right: 10px;
    }

    .top_right {
        top: 65px;
        left: 10px;
        right: 10px;
    }

    .top_center {
        top: 65px;
        left: 10px;
        right: 10px;
        margin: 0;
    }

    .bottom_left {
        bottom: auto;
        top: 65px;
        left: 10px;
        right: 10px;
    }

    .bottom_right {
        bottom: auto;
        top: 65px;
        left: 10px;
        right: 10px;
    }

    .bottom_center {
        bottom: auto;
        top: 65px;
        left: 10px;
        right: 10px;
        margin: 0;
    }

    .dialog_box_content {
        min-width: 300px;
        max-width: 100%;
        width: 100%;
    }

    .filefield .filename {
        width: 50%;
    }

    /* responsive tabs */
    .tabs_nav_container.responsive .tabs_nav {
        display: none;
    }

    .tabs_nav_container.responsive .tabs_panel_wrap {
        padding: 0;
    }

    .tabs_nav_container.responsive .tabs_panel {
        padding: 15px 0 0;
    }

    .togglehead {
        display: block;
        position: relative;
        text-align: left;
        display: block;
        position: relative;
        margin: 1px 0 0 0;
        cursor: pointer;
        font-size: 14px;
        text-transform: uppercase;
        padding: 10px 10px 10px 15px;
        color: #2196f3;
        background: #f2f2f2;
        border-left: 5px solid #2196f3;
    }

    .togglehead:before {
        position: absolute;
        right: 15px;
        top: 15px;
        width: 10px;
        height: 2px;
        background: #2196f3;
        content: "";
    }

    .togglehead:after {
        position: absolute;
        right: 15px;
        top: 15px;
        width: 10px;
        height: 2px;
        background: #2196f3;
        content: "";
        -ms-transform: rotate(90deg);
        /* IE 9 */
        -webkit-transform: rotate(90deg);
        /* Chrome, Safari, Opera */
        transform: rotate(90deg);
    }

    .togglehead.active:after {
        display: none;
    }

    .tabs_nav_container.boxbased .tabs_panel {
        padding: 10px;
    }

    .tabs_nav_container.boxbased .togglehead:first-child {
        margin: 0;
    }

    p {
        font-size: 13px;
        line-height: 18px;
        color: #666;
    }

    .tabs_nav_container.boxbased.full .togglehead {
        display: none;
    }

    .tabs_nav_container.flat {
        background: #fff;
        border-radius: 0;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
        display: inline-block;
        margin: 24px 0 0;
        position: relative;
        width: 100%;
    }

    .tabs_nav_container.flat .togglehead:first-child {
        margin: 0;
    }

    .tabs_nav_container.responsive.flat .tabs_panel {
        padding: 10px;
    }

    .topwrap .txtwhite {
        display: none;
    }

    .backarrow:before {
        font-size: 22px;
    }

    .backarrow {
        padding: 0 5px;
        width: 35px;
        text-align: center;
        min-height: 45px;
        line-height: 45px;
    }

    .topwrap .one_third_grid {
        display: inline-block;
        width: auto;
        float: left;
    }

    .topwrap {
        height: 45px;
    }

    .topwrap .selectedt_txt {
        font-size: 14px;
    }

    .topwrap .one_third_grid:last-child {
        padding: 5px 0;
        float: right;
    }

    .backarrow:before {
        left: 10px;
    }

    .topwrap .selectedt_txt {
        min-height: 45px;
        line-height: 45px;
    }

    .nametag {
        display: inline-block;
        margin: 5px;
    }

    .cellgrid li {
        width: 50%;
        float: left;
        padding: 6px 10px;
    }

    .photosquare {
        width: 80px;
    }

    .boxes_container .boxround {
        width: 50%;
    }



}

@media only screen and (max-width:767px) {

    .system_message {
        top: 60px;
    }

    .cellgrid li {
        width: 50%;
        float: left;
    }

    .iconcalender {
        right: 12px;
    }

    p {
        font-size: 12px;
        line-height: 18px;
        color: #666;
    }

    .togglehead {
        font-size: 12px;
    }

    .togglehead:before,
    .togglehead:after {
        top: 17px;
    }

    /* table */
    .table {
        overflow-x: auto;
        width: auto;
        margin: 10px;
        display: block;
    }

    .table td,
    .table th {
        padding: 10px;
        white-space: nowrap;
        font-size: 11px;
    }

    .tablewrap {
        margin: 10px;
        width: auto;
    }

    .table-responsive thead,
    .table-responsive thead tr {
        float: left;
        display: block;
    }

    .table-responsive td,
    .table-responsive th {
        display: block;
        white-space: normal;
    }

    .table-responsive tbody {
        display: block;
        overflow-x: auto;
        position: relative;
        white-space: nowrap;
        width: auto;
    }

    .table-responsive tbody tr {
        display: inline-block;
        vertical-align: top;
    }

    .table-responsive td,
    .table-responsive th {
        border: none;
    }

    .table-responsive.table th {
        font-size: 11px;
        padding-left: 0;
    }

    .table .actions.center {
        margin: 10px 0 0;
    }

    .cellgrid li {
        display: block;
        padding: 6px 10px;
    }

    .cellgrid li .col-sm-6 {
        width: 50%;
        float: left;
    }

    .chartwrap {
        padding: 10px;
    }

    .chartwrap img {
        max-width: 100%;
    }

    .section .sectionhead h4 {
        font-size: 14px;
    }

    .wigetbox,
    .coloredbox {
        margin-bottom: 10px;
        min-height: 1%;
    }

    .statsbox {
        min-height: 1%;
    }

    .coloredbox .top {
        height: 120px;
    }

    .coloredbox .icon,
    .coloredbox.blue .icon {
        font-size: 60px;
        line-height: 1;
        margin: 10px auto;
    }

    .coloredbox .themebtn {
        display: inline-block;
    }

    .coloredbox h3 {
        font-size: 30px;
        padding-bottom: 10px;
    }

    .coloredbox h3 span {
        font-size: 13px;
    }

    .statsbox .top {
        height: auto;
    }

    .section .sectionbody.space {
        padding: 10px;
    }

    .field_control {
        margin: 10px 0;
    }

    .field_control.horizontal .field_label {
        float: left;
        display: block;
        width: 100%;
        text-align: left;
        padding-right: 0;
    }

    .field_control.horizontal .field_cover {
        float: left;
        display: block;
        width: 100%;
    }

    .field_control.horizontal .field_cover.offset {
        margin-left: 0;
    }

    .field_label,
    .field_control.active .field_label {
        position: static;
        font-size: 13px;
    }

    .footinfo .grid_1 {
        width: 100%;
    }

    .footinfo .grid_2 {
        width: 100%;
        text-align: center;
        padding: 10px 0 0;
    }

    .tabs_nav_container.boxbased.vertical .tabs_nav {
        display: none;
    }

    .tabs_nav_container.boxbased.vertical .tabs_panel_wrap {
        width: 100%;
    }

    .tabs_nav > li > a {
        font-size: 11px;
    }

    .demo .list-inline li {
        display: block;
        text-align: center;
        padding: 10px;
    }

    .demo .popover.top {
        margin-top: 0;
    }

    .accordian_title {
        font-size: 12px;
        font-weight: 500;
    }

    .section .sectionhead {
        padding-right: 50px;
    }

    .section.searchform_filter .sectionhead {
        padding: 10px;
    }

    .section.searchform_filter .sectionhead h4:before {
        top: -4px;
    }

    .table_form_vertical {
        border-spacing: 0;
    }

    .table_form_vertical td {
        display: block;
        padding: 10px 10px 0;
        width: auto;
    }

    .table_form_vertical tr:last-child td {
        display: block;
        padding-bottom: 10px;
    }

    .blank {
        display: none !important;
    }

    .table_form_horizontal td:first-child,
    .table_form_horizontal td {
        display: block;
        width: 100%;
        text-align: left;
        padding: 0;
    }

    .table_form_horizontal tr {
        display: inline-block;
        width: 100%;
        padding: 10px 10px 0;
    }

    .table_form_horizontal tr:last-child {
        padding-bottom: 10px;
    }

    .table_form_horizontal {
        border-spacing: 0;
    }

    .containerwhite > .grid_1 {
        width: 100%;
        display: none;
        padding: 0;
    }

    .containerwhite > .grid_1.profile {
        width: 100%;
        display: block;
        padding: 0;
    }

    .containerwhite > .grid_2 {
        width: 100%;
        display: block;
    }

    .avtararea {
        padding: 10px;
        background: #333;
    }

    .avtararea .picinfo {
        background: none;
    }

    .avtararea .pic img {
        border: 4px solid #fff;
        border-radius: 50%;
        box-shadow: 0 8px 17px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
        display: block;
        height: 180px;
        width: 180px;
        margin: 0 auto;
    }

    .avtararea .pic .uploadavtar {
        display: inline-block;
        font-size: 0;
        right: auto;
        width: auto;
        text-align: center;
    }

    .avtararea .pic .uploadavtar input[type="file"] {
        right: auto;
        width: auto;
        width: 45px;
    }

    .avtararea .pic .uploadavtar .icon {
        margin: 0;
        position: relative;
        top: 0px;
    }

    .contactarea {
        display: none;
    }

    .centered_nav > li > a {
        font-size: 11px;
        padding: 10px;
    }

    .areabody {
        padding: 10px;
    }

    .listview .list dt {
        float: none;
    }

    .listview .list dd {
        margin-left: 0;
    }

    .centered_nav {
        display: none;
    }

    .repeatedrow {
        padding-top: 0;
    }

    .sortbar .txtnormal {
        display: none;
    }

    .containerwhite .sortbar .grid_1 {
        width: 10%;
    }

    .containerwhite .sortbar .grid_2 {
        width: 90%;
    }

    .medialist > li .grid.first {
        width: 45px;
    }

    .medialist > li .grid.third {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .footinfo .grid_1 .pagination {
        float: none;
    }

    .pagination li a {
        width: 30px;
        height: 30px;
        font-size: 12px;
        line-height: 28px;
    }

    .footinfo .info {
        font-size: 12px;
        line-height: normal;
        height: auto;
        padding: 6px 10px;
        display: block;
    }

    .toptitle h4 {
        font-size: 15px;
    }

    .toptitle {
        padding: 10px;
    }

    .medialist > li.lastbox .grid.first,
    .medialist > li.bodycollapsed .grid.first {
        float: left;
    }

    .medialist > li.lastbox .grid.second,
    .medialist > li.bodycollapsed .grid.second {
        float: left;
        width: 100%;
    }

    .areareply .grid_2 {
        width: 100%;
        margin: 0;
    }

    .areareply .txtlink {
        margin-left: 50px;
        margin-top: 8px;
    }

    .boxcontainer .top {
        padding: 10px;
    }

    .listrow {
        padding-right: 0;
    }

    .listrow .gridleft,
    .listrow .gridright {
        width: 100%;
        display: inline-block;
    }

    .styleright {
        top: 10px;
    }

    .areareply {
        min-height: 1%;
    }

    .nametag {
        display: block;
        margin: 5px 0;
    }

    .toptitle h4 {
        width: 100%;
        text-align: center;
    }

    .toptitle .actions {
        position: static;
        margin: 0 auto;
        display: table;
    }

    .areabody .formhorizontal {
        width: 100%;
    }

    .areabody .formhorizontal .repeatedrow .rowbody {
        width: 100%;
        padding: 0;
    }

    .areabody .formhorizontal .repeatedrow:last-child {
        padding-bottom: 0;
    }

    .areabody .formhorizontal .repeatedrow:last-child .field_control.horizontal {
        margin-bottom: 0;
    }

    .wrapcenter {
        left: 0;
    }

    .wrapcenter .table_form_horizontal td:first-child {
        width: 100%;
    }

    .wrapcenter .table_form_horizontal td {
        font-size: 12px;
    }

    .threeCol td {
        padding: 10px 0 0;
    }

    .logothumb img {
        width: 200px;
    }

    .photosquare {
        width: 62px;
        height: 62px;
    }

    .breadcrumb li {
        color: #666;
        float: left;
        font-size: 11px;
        margin: 0 0 0 5px;
        padding: 0 0 0 10px;
        position: relative;
    }

    .breadcrumb li::before {
        font-size: 13px;
    }

    h1 {
        text-align: left;
        font-size: 18px;
    }

    .boxes_container .boxround {
        width: 100%;
    }


    /* yokart dashboard css (added on 3 dec 2015) */
    .graphPanel .grid_1 {
        width: 100%;
        display: block;
    }

    .graphPanel .grid_2 {
        width: 100%;
        display: block;
    }

    .graphPanel .grid_2 .table {
        width: 100%;
        margin: 0 auto;
        display: table;
        border-top: 1px solid #ddd;
    }

    .graphcontent th,
    .graphcontent td {
        padding: 10px;
    }

    .graphcontent tr.first td {
        font-size: 14px;
    }

    .horizontal_grids li {
        display: inline-block;
        margin: 0 -2px;
        width: 50%;
    }

    .horizontal_grids li:first-child {
        border-bottom: 1px solid #ddd;
    }

    .horizontal_grids li:nth-child(2) {
        border-bottom: 1px solid #ddd;
    }

    .horizontal_grids li:nth-child(3) {
        border-left: none;
    }

    .onehalf_cols .section {
        min-height: 1%;
    }

    .horizontal_gridsthird li {
        font-size: 17px;
    }

    .horizontal_gridsthird li span {
        font-size: 11px;
    }

    .paneltop h4 {
        font-size: 15px;
    }

    .repeatedPanel .section {
        padding: 10px;
    }

    .section,
    .socialbox {
        margin: 15px 0 0;
    }

    .threegrids .v_grid {
        width: 100%;
        display: block;
        padding: 10px;
        border-left: none;
        border-top: 1px solid #ddd;
    }

    .threegrids .v_grid:first-child {
        border-top: none;
    }

    .threegrids .panelbottom {
        height: auto;
    }

    .panelmidd .grid_1 {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .panelmidd .grid_2 {
        width: 100%;
        padding: 20px 0 0;
    }

    .vertical_grids li {
        text-align: center;
        border-left: 1px solid #ddd;
        padding: 10px 5px 0;
        width: 33.3%;
        display: inline-block;
        vertical-align: top;
        margin: 0 -2px;
        border-top: none;
        font-size: 12px;
        font-weight: normal;
    }

    .vertical_grids li:first-child {
        border-left: none;
        padding-left: 0;
    }

    .vertical_grids li small {
        font-size: 11px;
    }

    .vertical_grids {
        width: auto;
        margin: 0 -6px;
    }

    .vertical_grids li span {
        font-size: 14px;
    }

    .onehalf_cols.new .section {
        min-height: 1%;
    }
}

@media only screen and (max-width:400px) {
    .cellgrid li {
        width: 100%;
    }

    /* yokart dashboard css (added on 3 dec 2015) */
    .horizontal_gridsthird li span {
        height: 35px;
    }


}

@media only screen and (min-width:451px) and (max-width:767px) {
    .nametag {
        display: inline-block;
        margin: 5px;
    }

    .toptitle h4 {
        width: 80%;
        text-align: left;
    }

    .toptitle .actions {
        position: absolute;
    }

    .toptitle {
        padding: 15px;
    }
}

@media only screen and (min-width:768px) and (max-width:990px) {
    .cellgrid li {
        float: left;
        display: block;
        width: 50%;
        padding: 5px 5px;
    }

    .cellgrid {
        width: auto;
        padding: 0 5px;
    }

    .section {
        margin-top: 15px;
    }

    .fourcols {
        width: auto;
        padding: 0 0;
        margin: 5px 0 0;
    }

    .fourcols .col-sm-3 {
        width: 50%;
        padding: 10px 5px 0;
    }

    .table th,
    .table td {
        white-space: nowrap;
    }

    .table {
        display: block;
        margin: 10px;
        overflow-x: auto;
        width: auto;
    }

    .tabs_nav_container.boxbased.vertical .togglehead {
        display: none;
    }

    .tabs_nav_container.flat .togglehead {
        display: none;
    }

    .tabs_nav_container.flat .tabs_nav {
        display: block;
        text-align: left;
    }

    .containerwhite > .grid_1 {
        width: 32%;
    }

    .containerwhite > .grid_2 {
        width: 68%;
    }

    .centered_nav > li > a {
        font-size: 12px;
        padding: 10px;
    }

    .avtararea .picinfo .mailinfo {
        font-size: 12px;
    }

    .centered_nav {
        table-layout: auto;
    }

    .medialist > li .grid.second {
        width: 65%;
    }

    .containerwhite .sortbar .grid_1 {
        width: 50%;
    }

    .containerwhite .sortbar .grid_2 {
        width: 50%;
    }

    .pagination li a {
        width: 30px;
        height: 30px;
        line-height: 28px;
        font-size: 13px;
    }

    .footinfo .info {
        height: 30px;
        line-height: 28px;
        font-size: 13px;
    }

    .areabody .formhorizontal {
        width: 100%;
    }


    /* yokart dashboard css (added on 3 dec 2015) */
    .graphPanel .grid_1 {
        width: 100%;
        display: block;
    }

    .graphPanel .grid_2 {
        width: 100%;
        display: block;
    }

    .graphPanel .grid_2 .table {
        width: 100%;
        margin: 0 auto;
        display: table;
        border-top: 1px solid #ddd;
    }

    .graphcontent th,
    .graphcontent td {
        padding: 10px;
    }

    .repeatedPanel .section {
        margin-top: 15px;
    }

    .threegrids .v_grid {
        padding: 15px 15px 10px;
    }

    .repeatedPanel .bulletlist li {
        padding-right: 60px;
    }

}


@media only screen and (min-width:991px) and (max-width:1050px) {

    /* yokart dashboard css (added on 3 dec 2015) */
    .horizontal_grids li {
        padding: 4px 10px 10px;
        font-size: 20px;
    }

    .horizontal_grids li span,
    .horizontal_gridsthird li span {
        font-size: 11px;
    }

    .horizontal_gridsthird li {
        font-size: 25px;
    }

    .onehalf_cols .section {
        min-height: 400px;
    }

    .panelmidd .grid_2 {
        width: 35%;
        padding-right: 0;
    }


}


.table.table-responsive input {
    border: 1px solid #dddddd;
    padding: 5px;
    text-align: center;
    width: 80px;
}

.sub-categories {
    list-style: outside none none;
}

.fadeText {
    opacity: .6;
}

.unread {
    background: #fff
}

.read {
    background: #f0f0f0
}

#facebox .img-container {
    width: 100%;
    height: 100%;
}

@media only screen and (min-width :240px) and (max-width : 767px) {
    .popup section {
        width: 100% !important;
    }
}

.popup section {
    width: 800px !important;
}

.sectionbody {
    padding-bottom: 15px;
}

.break-me {
    word-break: break-word;
}
