@import url(https://fonts.googleapis.com/css?family=Open+Sans:800,800italic,700italic,700,600italic,600,400italic,400,300italic,300);


*,
*:before,
*:after {
    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: #2196f3;
    text-decoration: none;
    line-height: inherit;
    outline: none;
    -webkit-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;
    transition: none;
}

.nowrap {
    white-space: nowrap;
}

.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;
    padding: 5px;
}

::-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);
    }
}


.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;
}



.btn-default {
    background: #ffffff;
    /* Old browsers */
    /* 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+ */
    /* Opera 11.10+ */
    /* 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-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;
}





.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;
    transition: all 300ms;
}

.menutrigger:before {
    content: "\f20e";
    font-size: 32px;
    color: #fff;
    font-family: "Ionicons";
    position: absolute;
    -webkit-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;
    transition: all 300ms;
    -webkit-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);
    transform: scale3d(0, 0, 0);
    -webkit-transition: all 250ms;
    transition: all 250ms;
    -webkit-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);
    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);
    transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 300ms;
    transition: all 300ms;
    -webkit-transform-origin: bottom left;
    transform-origin: top right;
}

.iconmenus > li.active .subnav {
    -webkit-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;
}

.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: -webkit-linear-gradient(315deg, 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;
    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);
    transform: rotateY(180deg);
}

.front,
.back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-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);
    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: 24px 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 .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: #777;
    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: #777;
    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;
}

.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;
}

.wigetbox .vlist li a {
    color: rgba(255, 255, 255, 0.9);
}

.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: 20px;
    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;
}

.coloredbox.red .top {
    background: #f44336;
}

.coloredbox.red h3 {
    color: #f44336;
}

.coloredbox.red .themebtn {
    border: 1px solid #f44336;
    color: #f44336;
}

.coloredbox.red .themebtn:hover {
    background: #f44336;
    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;
}

.ordertable th {
    font-weight: 600;
    font-size: 14px !important;
}

.table td {
    vertical-align: top;
    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: 2px solid #f0f0f0;
}

.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;
    font-size: 13px;
    line-height: 1.5;
    padding: 4px 8px 4px;
    text-align: left;
    vertical-align: baseline;
    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;
}

#attribute .table,
#attribute .table th,
#attribute .table td {
    border: 1px solid #f0f0f0;
    border-collapse: collapse;
}


/* 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 0;
    bottom: 0;
    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;
    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;
    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;
    animation: fade 500ms;
}

.profilewrap {
    position: relative;
    z-index: 10;
    width: 280px;
}

.profilecover {
    background: url(../images/admin/nav_cover_bg.png) no-repeat center center #607d8b;
    width: 100%;
    height: 120px;
    display: block;
    position: relative;
    overflow: hidden;
}

.profilelinkswrap {
    width: 100%;
    background: #607d8b;
    display: none;
}

.profilecover .profilepic {
    border-radius: 100%;
    height: 50px;
    width: 50px;
    position: relative;
    left: 15px;
    top: 15px;
    overflow: hidden;
    display: inline-block;
    border: 3px solid rgba(0, 0, 0, 0.14);
}

.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);
}

.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;
    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;
    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;
    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;
}

.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 > a {
    /*background: #fff;*/
    height: 30px;
    width: 30px;
    text-align: center;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 100%;
}

.actions > li > a .icon {
    font-style: normal;
    line-height: 28px;
    color: #777;
    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);
    transform: scale3d(0, 0, 0);
    -webkit-transition: all 250ms;
    transition: all 250ms;
    -webkit-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);
    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;
}

.actions > li > a.deactivated {
    background-color: #E9E9E9 !important;
}

.table .actions > li > a {
    border: 1px solid #ddd;
    border-radius: 100%;
    width: 38px;
    height: 38px;
    background: #fff;
}

.table .actions > li > a .icon {
    line-height: 34px;
}

.actions.center {
    display: table;
    margin: 10px auto 0;
}

.enabled > .icon {
    color: #8dbc14 !important;
}

.disabled > .icon {
    opacity: 0.5 !important;
}

.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);
    transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 300ms;
    transition: all 300ms;
    -webkit-transform-origin: top right;
    transform-origin: top right;
}

.droplink.active .dropwrap {
    -webkit-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;
    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: #777;
    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: #777;
    text-transform: uppercase;
    position: relative;
    text-align: center;
}

.sidetabs > li > a:before {
    bottom: -2px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    -webkit-transform: scale(0);
    transform: scale(0);
    width: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
}

.sidetabs > li.active > a:before {
    background: #2196f3;
    -webkit-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: #777;
    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: #777;
    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: #777;
}

.sorticon:before {
    width: 14px;
    height: 2px;
    background: #777;
    position: absolute;
    top: 5px;
    left: 0;
    content: "";
}

.sorticon:after {
    width: 10px;
    height: 2px;
    background: #777;
    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;
}


/* .radio + .radio, .checkbox + .checkbox { margin-top: -5px; } */

.checkbox .input-helper:before,
.radio .input-helper:before,
.checkbox .input-helper:after,
.radio .input-helper:after {
    -webkit-transition: all;
    transition: all;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    -webkit-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);
    transform: scale(0);
}

.checkbox input:checked + .input-helper:after {
    -webkit-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);
    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);
    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);
    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;
    text-transform: capitalize;
}

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;
    text-transform: capitalize;
}

.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 #777;
}

.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;
    text-transform: capitalize;
}

.bulletlist li:before {
    position: absolute;
    left: 0;
    top: 5px;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #777;
}

.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: #777;
}

.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: #777;
}

.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: #777;
}

.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: #777;
}

.breadcrumb.arrow li:before {
    content: "\f3d3";
    font-family: "Ionicons";
    font-size: 16px;
    color: #777;
}

.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;
}


/* alerts */


/* .alert { font-size: 13px; color: #fff; width: 100%; position: relative; padding: 15px; margin-bottom: 18px; border: 1px solid transparent; background-size: 40px 40px; 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: -webkit-linear-gradient(315deg, 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; } @-webkit-keyframes animate-bg { from { background-position: 0 0; } to { background-position: -80px 0; } } @keyframes animate-bg { from { background-position: 0 0; } to { background-position: -80px 0; } } .alert h5 { font-size: 18px; font-weight: 500; padding: 0; color: #fff; } .alert .close { width: 20px; height: 20px; position: absolute; right: 5px; top: 5px; text-align: center; line-height: 20px; } .alert .close:before { content: "\f2d7"; font-family: "Ionicons"; font-size: 16px; color: rgba(255, 255, 255, 0.8); } .alert .close:hover:before { color: rgba(255, 255, 255, 1); } .alert h4 { margin-top: 0; color: inherit; } .alert > p, .alert > ul { margin-bottom: 0; } .alert > p + p { margin-top: 5px; } .alert_success { background-color: rgba(76, 175, 80, 0.9); border-color: rgba(49, 152, 53, 0.9); } .alert_info { background-color: rgba(33, 150, 243, 0.9); border-color: rgba(33, 150, 243, 0.9); } .alert_warning { background-color: rgba(255, 152, 0, 0.9); border-color: rgba(255, 152, 0, 0.9); } .alert_danger { background-color: rgba(244, 67, 54, 0.9); border-color: rgba(244, 67, 54, 0.9); } .alert_inverse { background: rgba(51, 51, 51, 0.9); box-shadow: 0 0 5px rgba(51, 51, 51, 0.5); color: #fff; } .alert_position { position: fixed; opacity: 0; max-width: 500px; z-index: -1; } .alert_position.animated { opacity: 1; z-index: 9999; }*/

.top_left {
    top: 75px;
    left: 20px;
}

.top_right {
    top: 75px;
    right: 20px;
}

.top_center {
    top: 75px;
    left: 50%;
    margin: 0 0 0 -250px;
}

.bottom_left {
    bottom: 10px;
    left: 20px;
}

.bottom_right {
    bottom: 10px;
    right: 20px;
}

.bottom_center {
    bottom: 10px;
    left: 50%;
    margin: 0 0 0 -250px;
}


/* 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%;
    /* 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;
    /* 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;
    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;
}

.dateTimeFld {
    width: 96% !important;
    display: inline !important;
}

.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: 12px;
    line-height: 1.42857143;
    color: #777;
    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;
    transition: border linear 0.2s, box-shadow linear 0.2s;
}

.web_form select {
    display: block;
    width: 100%;
    height: 35px;
    padding: 0;
    font-size: 12px;
    line-height: 1.42857143;
    color: #777;
    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;
    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 select option {
    padding: 4px;
}



.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: #777;
    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);
    transform: scale(0);
    -webkit-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
}

.tabs_nav > li > a.active:before {
    background: #2196f3;
    -webkit-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 20px;
}

.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: #777;
    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: #777;
}

.accordian_title:before {
    content: "\f218";
    font-size: 16px;
    color: #777;
    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;
    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;
    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;
    transition: all 0.3s ease-in-out;
    /* 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;
    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;
}

.table_form_horizontal h6 {
    text-align: left;
}

.clear_btn {
    background: #777;
    border: medium none;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    line-height: normal;
    overflow: hidden;
    padding: 10px 24px;
    position: relative;
    text-transform: uppercase;
    vertical-align: middle;
}

.clear_btn:hover {
    background: #333;
}

.demo .div_msg,
.demo .div_error {
    width: 100%;
    max-width: 100%;
    padding-right: 10px;
}


/*#dtTable.table th:last-child{text-align: center;}*/


/* 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 {
    max-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;
    text-transform: none;
}

.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: #777;
    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);
    transform: scale(0);
    -webkit-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);
    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: #777;
    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: #777;
    font-weight: 300;
}

.lightxt span {
    color: #777;
    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: #777;
}

.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: #777;
}

.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: #777;
}

.styleright {
    position: absolute;
    right: 10px;
    top: 15px;
    z-index: 1;
}

.styleright .to {
    margin: 0 3px;
}

.styleright a {
    color: #777;
}

.styleright a:hover {
    text-decoration: underline;
    color: #777;
}

.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: #777;
    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: #777;
}

.floatedchecks li label {
    font-size: 12px;
}

.table_form_horizontal small {
    font-size: 12px;
    font-style: italic;
    color: #777;
}

.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: 4px 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;
    transition: 0.15s ease-out;
    -webkit-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;
    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: linear-gradient(to bottom, white 40%, #f0f0f0);
    -webkit-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: 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%;
}

.cellcaption {
    display: none;
}


/*  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:-300px; left:20px;padding: 15px 15px 0 15px; -webkit-transition: all 300ms ease 0s; -o-transition:  all 300ms ease 0s; transition: all 300ms ease 0s; width:290px; z-index:110; }*/

.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%);
    -ms-transform: translate(0, 100%);
    /* IE 9 */
    -webkit-transform: translate(0, 100%);
    /* Chrome, Safari, Opera */
    -webkit-transition: all 300ms ease 0s;
    transition: all 300ms ease 0s;
    width: 300px;
    z-index: 110;
}

body.switchtoggled .color_pallete {
    opacity: 1;
    transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    /* IE 9 */
    -webkit-transform: translate(0, 0);
    /* Chrome, Safari, Opera */
}

.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;
    transition: all 0.4s ease-in-out 0s;
}

.colorpallets li:hover a {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.colorpallets li.active a {
    -webkit-transform: scale(1.2);
    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;
}

.fronttheme li.theme-1 a {
    background: #474747;
}

.fronttheme li.theme-2 a {
    background: #1a8fe3;
}

.fronttheme li.theme-3 a {
    background: #ff9900;
}

.fronttheme li.theme-4 a {
    background: #003b64;
}

.fronttheme li.theme-5 a {
    background: #007dc6;
}

.fronttheme li.theme-6 a {
    background: #ed372e;
}

.fronttheme li.theme-7 a {
    background: #ffdd62;
}

.fronttheme li.theme-8 a {
    background: #dc0028;
}


/* 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 {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        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;
    animation: preloader_1 1.5s infinite ease-in-out;
}

#preloader_1 span:nth-child(2) {
    left: 11px;
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

#preloader_1 span:nth-child(3) {
    left: 22px;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

#preloader_1 span:nth-child(4) {
    left: 33px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

#preloader_1 span:nth-child(5) {
    left: 44px;
    -webkit-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;
    }
}

@keyframes preloader_1 {
    0% {
        height: 10px;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        background: #9b59b6;
    }
    25% {
        height: 50px;
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        background: #3498db;
    }
    50% {
        height: 10px;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        background: #9b59b6;
    }
    100% {
        height: 10px;
        -webkit-transform: translateY(0px);
        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;
    animation-delay: .2s;
}

#preloader_4 span:nth-child(3) {
    left: 40px;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

#preloader_4 span:nth-child(4) {
    left: 60px;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

#preloader_4 span:nth-child(5) {
    left: 80px;
    -webkit-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);
    }
}

@keyframes preloader_4 {
    0% {
        opacity: 0.3;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
    }
    50% {
        opacity: 1;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        background: #f1c40f;
        box-shadow: 0px 20px 3px rgba(0, 0, 0, 0.05);
    }
    100% {
        opacity: 0.3;
        -webkit-transform: translateY(0px);
        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;
    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;
    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;
    animation-delay: .2s;
}

#preloader6 span:nth-child(3) {
    top: 22px;
    background: #3498db;
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

#preloader6 span:nth-child(4) {
    top: 22px;
    left: 22px;
    background: #f1c40f;
    -webkit-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);
    }
}

@keyframes preloader_6_span {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    100% {
        -webkit-transform: scale(1);
        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%;
    /* IE 9 */
    -webkit-transform: translate(-50%, -50%);
    /* Chrome, Safari, Opera */
    transform: translate(-50%, -50%);
}

.system_message {
    top: 80px;
}


/*.dropdown-menu{margin: 0 0; max-height: 300px; overflow-y: auto; width: 100%; display:none; list-style: none!important; position: absolute; z-index: 100;background: #fff; border-radius: 3px; box-shadow: 0 0 10px rgba(0,0,0,0.3); padding: 10px;} .dropdown-menu li{position:relative;font-size: 14px; text-align: left; color: #666; padding: 0 0 3px 8px; text-transform: capitalize;} /*.dropdown-menu li:before{position:absolute; left: 0; top: 5px; content: "";width:8px; height: 8px; border-radius: 100%; background: #777;}*/


/*.dropdown-menu li a{font-size: 13px; color: #666; cursor:pointer; } .dropdown-menu li:last-child{ padding-bottom: 0;}*/

.inner-table td:first-child,
.inner-table th:first-child,
.inner-table th,
.uploadImages td:first-child {
    width: auto;
    text-align: left;
}

.wrapphoto {
    border: 1px solid #ddd;
    display: inline-block;
    margin: 0 0 10px;
    padding: 10px;
    text-align: center;
    vertical-align: top;
    width: 120px;
}

.table_form_horizontal td table td:first-child {
    width: auto;
    text-align: left;
    padding: 0;
}

.mini {
    width: 200px!important;
    float: left;
    margin: 0 0 0 10px;
}

.mini:first-child {
    margin-left: 0;
}

.sectionbody.space.togglewrap {
    padding: 0;
}

.table_listing {
    width: 100%;
    border-spacing: 0;
    border: 1px solid #ddd;
}

.table_listing th {
    text-align: left;
    padding: 10px;
    background: #f1f1f1;
    border-bottom: 1px solid #ddd;
}

.table_listing td {
    text-align: left;
    padding: 10px;
    position: relative;
}

.table_listing td:first-child {
    text-align: left!important;
    padding: 10px!important;
}

.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;
    cursor: pointer;
}

.web_form .actions > li > a .icon {
    line-height: 1.7;
}

.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 {
    width: 100%;
    height: 100%;
}

.photosquare .crossLink {
    position: absolute;
    right: 3px;
    top: 3px;
    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;
}

#option.table_form_vertical {
    width: 100%;
    border-spacing: 0;
}

#option.table_form_vertical th {
    padding: 0;
}

#option.table_form_vertical th:first-child {
    width: 22%;
    border: 1px solid #ddd;
    padding: 0;
}

.tblBorderTop td {
    text-align: left;
    padding: 10px;
    background: #eee;
}

.tblBorderTop td input[type="text"] {
    padding-left: 15px;
}

.fieldSmall {
    width: 30%!important;
    display: inline-block!important;
    vertical-align: top;
}

.fieldNormal {
    width: 58%!important;
    display: inline-block!important;
    vertical-align: top;
    margin: 0 0 0 10px;
}

.about-me {
    display: inline-block;
}

.about-me .avatar,
.avatar {
    width: 50px;
    height: 50px;
    float: left;
    overflow: hidden;
    border-radius: 100%;
    border: solid 2px #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.31);
    margin-right: 10px;
}

.about-me .avatar img,
.avatar img {
    width: 100%;
    height: auto;
}

.about-me .name {
    color: #000;
    display: block;
    line-height: 1.2;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 0;
}

.about-me .name span {
    display: block;
    color: #5a5858;
    font-size: 15px;
    font-weight: 400;
}


/*************************************************************** 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;
        transition: 0.15s ease-out;
        -webkit-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;
        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: linear-gradient(to bottom, white 40%, #f0f0f0);
        -webkit-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: 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 */
    }
    /* 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;
    }
}

@media only screen and (max-width:990px) {
    .cellcaption {
        display: block;
    }
    .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: 10px 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%;
    }
    .min50 {
        width: 50%;
    }
    .min33 {
        width: 33%;
    }
    /* 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: "";
        /* 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;
        height: 80px;
    }
}

@media only screen and (max-width:767px) {
    .mini {
        width: 100%!important;
        float: left;
        margin: 0 0 0 0;
    }
    .table_form_horizontal tr table tr {
        display: inline-block;
        vertical-align: top;
        width: auto;
        padding: 0;
    }
    .table_form_horizontal tr table td {
        display: table-cell;
        width: auto;
        padding: 0;
    }
    .table_form_horizontal td table td:first-child {
        display: inline-block;
        vertical-align: top;
    }
    .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;
    }
    .cellcaption {
        display: none;
    }
    .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;
    }
    .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;
    }
}


/* 7th december 2015 */

.fixed-demo-btn {
    line-height: 1.8;
    position: fixed;
    right: -100px;
    top: 300px;
    z-index: 10;
    background: #ff3a59;
    border-radius: 2px 2px 0px 0px;
    -ms-transform: rotate(-90deg);
    /* IE 9 */
    -webkit-transform: rotate(-90deg);
    /* Safari */
    transform: rotate(-90deg);
    display: block;
    height: 50px;
    width: 228px;
    color: #fff;
    font-size: 21px;
    font-weight: 600;
    text-align: center;
}

.fixed-demo-btn #btn-demo {
    color: #fff;
}


/*.fixed-demo-btn { position: fixed; right: 0; top: 120px; width: auto; z-index: 10; } .fixed-demo-btn #btn-demo { background: url("../images/demo-btn.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); display: block; float: left; height: 225px; width: 54px; }*/

.break-me {
    -ms-word-break: break-all;
    padding: 0 10px 0 0;
    word-break: break-all;
    word-break: break-word;
}

.spn_must_field {
    color: #FF0000;
}

span.cutTxt {
    text-decoration: line-through;
    color: #FF0000;
}

.table_form_horizontal .auto {
    width: 30%!important;
    display: inline-block;
    vertical-align: top;
}

.table_form_horizontal .spacer {
    height: 35px;
    line-height: 35px;
    width: 5%;
    text-align: center;
    display: inline-block;
    vertical-align: top;
}

.iconbox .icon svg {
    width: 48px;
    height: 48px;
}

.iconwrap {
    width: 100px;
    margin: 20px auto 0;
    display: block;
}

.iconwrap svg {
    width: 100px;
    height: 100px;
}

.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 7px 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: 11px;
}

.onehalf_cols .section {
    min-height: 470px;
}

.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.li .boxtop {
    background: #0177b5;
}

.socialbox.li .boxbody .left {
    color: #0177b5;
}

.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;
}

.grids--onethird {
    margin: 0 0 0 -30px;
    list-style: none;
}

.grids--onethird li {
    float: left;
    padding: 0 0 30px 30px;
    width: 33.3%;
    position: relative;
}

.grids--onethird li.last {
    width: 100%;
    text-align: center;
}

@media only screen and (max-width:400px) {
    .fixed-demo-btn {
        display: none;
    }
    .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;
    }
    /* 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%;
    }
    .grids--onethird {
        margin: 0;
        width: 100%;
        display: inline-block;
    }
    .grids--onethird li {
        padding: 0 0 30px 0;
        width: 100%;
        position: relative;
    }
}

@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: 10px;
    }
    .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%;
    }
    .headerwrap .one_third_grid {
        display: table-cell;
    }
    .logout {
        display: block;
    }
    /* 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;
    }
    .grids--onethird li {
        width: 50%;
    }
}


/**theme style*/

.theme-box {
    position: relative;
    height: auto;
    border: solid 1px #E1E1E1;
    background: rgba(255, 255, 255, 1);
}

.theme-box .theme-img {
    margin: 10px;
}

.theme-box .theme-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.theme-box .theme-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    left: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}

.theme-box:hover {
    border: solid 1px rgba(0, 0, 0, 0.5);
}

.theme-box:hover .theme-overlay {
    opacity: 1;
}

.theme-box .btn-grp {
    position: relative;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.theme-box .theme-name {
    background: rgba(255, 58, 89, 1);
    border-top: solid 1px rgba(0, 0, 0, 0.10);
    padding: 10px;
    color: #fff;
    text-align: center;
    display: block;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
}

.theme-box.theme-0 .theme-name {
    background: #ff3a59;
}


/*.theme-box.theme-1 { border-color:#474747; }*/

.theme-box.theme-1 .theme-name {
    background: #474747;
}


/*.theme-box.theme-2 { border-color:#1a8fe3; }*/

.theme-box.theme-2 .theme-name {
    background: #1a8fe3;
}


/*.theme-box.theme-3 { border-color:#ff9900; }*/

.theme-box.theme-3 .theme-name {
    background: #ff9900;
}


/*.theme-box.theme-4 { border-color:#003b64; }*/

.theme-box.theme-4 .theme-name {
    background: #003b64;
}


/*.theme-box.theme-5 { border-color:#007dc6; }*/

.theme-box.theme-5 .theme-name {
    background: #007dc6;
}


/*.theme-box.theme-6 { border-color:#ed372e; }*/

.theme-box.theme-6 .theme-name {
    background: #ed372e;
}


/*.theme-box.theme-7 { border-color:#ffdd62; }*/

.theme-box.theme-7 .theme-name {
    background: #ffdd62;
}


/*.theme-box.theme-8 { border-color:#dc0028; } */

.theme-box.theme-8 .theme-name {
    background: #dc0028;
}

.theme-box.theme-9 .theme-name {
    background: #14c06e;
}

.theme-box.activated {
    border: 5px solid #008000;
    margin: 5px;
}


/*.toggleswitch{background:url(../images/admin/active_inactive.png) no-repeat top; width:26px; height:24px; display:inline-block;} .toggleswitch.actives{background:url(../images/admin/active_inactive.png) no-repeat 0 -24px;}*/

@media only screen and (max-width:1401px) {
    .controlwrap.hideLayout {
        display: none;
    }
}

.admin-logo img {
    max-height: 50px;
}

.morecontent span {
    display: none;
}

.morelink {
    display: block;
}

#sortable-list {
    padding: 0;
    width: 100%;
    margin: 0px;
}

#sortable-list li {
    float: left;
    cursor: move;
    list-style: none;
    margin: 0px 10px 00 0;
    position: relative;
}

#sortable-list .controls-wrapper {
    margin: 5px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
}

#sortable-list .controls-wrapper .leftRotate,
#sortable-list .controls-wrapper .rightRotate,
#sortable-list .controls-wrapper .saveImageOrientation,
#sortable-list .controls-wrapper .delete {
    text-align: center;
    display: inline-block;
    border: 1px solid #2196f3;
    background: none;
    border-radius: 50%;
    color: #2196f3;
    vertical-align: top;
    width: 30px;
    height: 30px;
    padding: 4px;
    text-align: center;
    cursor: pointer;
}

#sortable-list .controls-wrapper .leftRotate:after,
#sortable-list .controls-wrapper .rightRotate:after,
#sortable-list .controls-wrapper .saveImageOrientation:after {
    content: "\f21e";
    font-family: "Ionicons";
    color: #2196f3;
    font-size: 18px;
}

#sortable-list .controls-wrapper .rightRotate:after {
    content: "\f13a";
}

#sortable-list .controls-wrapper .saveImageOrientation:after {
    content: "\f122";
}

#sortable-list .wrapphoto {
    width: 150px;
    padding-top: 50px;
}


/*request for demo*/

.popup-title {
    text-align: center;
}

.popup-title h4 {
    font-size: 32px;
    margin-bottom: 20px;
}

.demo-tabs {}

.pop-us-tabs {
    text-align: center;
}

.pop-us-tabs ul {
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 25px;
}

.pop-us-tabs li {
    display: inline-block;
    text-align: center;
    padding: 0;
    min-width: 250px;
    margin: 0 -2px;
    border: solid 1px #dedddd;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    vertical-align: top;
}

.pop-us-tabs li.active {
    color: #fff;
    background: #ff3a59;
    border-color: #ff3a59;
}

.pop-us-tabs li a {
    padding: 10px 20px;
    display: block;
    color: inherit;
}

.pop-us-tabs li:first-child {
    border-radius: 3px 0 0 3px;
    border-right: none;
}

.pop-us-tabs li:last-child {
    border-left: none;
    border-radius: 0 3px 3px 0;
}

.demo-tabs .tabs_content {
    display: none;
}

.demo-tabs .tabs_content.show_tab_content {
    display: block;
}


/*end**/

.siteForm input[type="text"],
.siteForm input[type="file"],
.siteForm input[type="password"],
.siteForm select,
.siteForm textarea {
    background: #fff;
    color: #000;
    font-size: 14px;
    font-family: 'Open Sans';
    width: 100%;
    padding: 4px 5px;
    border: 1px solid #e1dfdf;
    height: 38px;
    border-radius: 3px;
    -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;
    margin-bottom: 9px;
    position: relative;
}

.siteForm textarea {
    resize: none;
}

.siteForm select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url("../images/select-bg.png");
    background-repeat: no-repeat;
    background-position: right center;
}

.siteForm textarea {
    height: 138px;
}

.custom-file {}

.siteForm input.uploadFile {
    width: calc(100% - 114px);
    background: #fff;
    color: #000;
    font-size: 14px;
    font-family: 'Open Sans';
    padding: 4px 5px;
    border: 1px solid #e1dfdf;
    height: 38px;
    border-radius: 3px;
    -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;
    margin-bottom: 9px;
}

.siteForm .fileUpload input.upload {
    cursor: pointer;
    font-size: 20px;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.siteForm .fileUpload {
    position: relative;
    overflow: hidden;
    background: #727272;
    font-size: 12px;
    width: 94px;
    margin: 0;
    padding-top: 11px;
    float: right;
    border-radius: 3px;
    font-size: 16px;
    color: #fff;
    padding: 6px 25px;
    height: 38px;
    margin: 0px;
    display: inline-block;
    vertical-align: top;
    border: solid 1px transparent;
    width: auto;
}

.siteForm .fileUpload:hover {
    background: #ff3a59;
}

.siteForm .fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.siteForm table td .custom-width .small {
    width: 70%;
    display: inline-block;
}

.siteForm table td .custom-width .anchor-popup {
    display: inline-block;
    margin-left: 15px;
}

.siteForm .width22 {
    width: 22%;
}

.siteForm .width33 {
    width: 33%;
}

.siteForm .width44 {
    width: 44%;
}

.siteForm .width55 {
    width: 55%;
}

.siteForm .height120 {
    height: 120px;
}

.siteForm .shop_description {
    height: 112px;
}

.siteForm input[type="text"]:focus,
.siteForm input[type="file"]:focus,
.siteForm input[type="password"]:focus,
.siteForm select:focus,
.siteForm textarea:focus,
.customfile-input:focus {
    border-color: rgba(45, 93, 195, 0.8);
    outline: 0;
    outline: thin dotted \9;
    /* IE6-9 */
    /*	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);*/
}

.siteForm input[type="submit"],
.siteForm input[type="reset"],
.siteForm input[type="button"],
.siteForm button[type="button"],
.siteForm button[type="file"],
.btn-submit {
    background: #ff3a59;
    border-radius: 3px;
    font-size: 14px;
    color: #fff;
    padding: 0px 25px;
    height: 38px;
    margin: 0px;
    display: inline-block;
    vertical-align: top;
    border: solid 1px transparent;
    width: auto;
    cursor: pointer;
}

.siteForm input[type="button"] {
    background: #727272;
}

.siteForm input[type="submit"]:hover,
.siteForm input[type="reset"]:hover,
.siteForm input[type="button"]:hover,
.btn-submit:hover {
    background: #727272;
}

.siteForm select {
    width: 100%;
    padding: 7px 10px 7px 7px;
}

.siteForm input.calendar {
    background-image: url(../images/calendar.png);
    background-position: 97% center;
    background-repeat: no-repeat;
}

.siteForm input.clock {
    background-image: url(../images/clock.png);
    background-position: 97% center;
    background-repeat: no-repeat;
}

.siteForm.ondark {}

.siteForm.ondark table tr td:last-child {
    padding-right: 0;
}

.siteForm.ondark input,
.siteForm.ondark select {
    margin-bottom: 0px;
    border: none;
    display: inline-block;
    width: 100%;
}

.siteForm.ondark input[type="submit"],
.siteForm.ondark input[type="reset"] {
    width: auto;
}

.siteForm .width49 {
    width: 49%;
    float: left;
}

.siteForm.ondark input.custom-widht-10 {
    width: 10%;
}

table.tbl-twocell {}

table.tbl-twocell td:first-child {
    padding-right: 20px;
}

.siteForm.ondark input.custom-widht-10 {
    width: 10%;
}


/* alerts */

.alert {
    color: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 2px;
    position: relative;
    padding-right: 32px;
}

.alert .close {
    text-indent: -99999px;
    background: url(../images/retina/close.svg) no-repeat center;
    background-size: cover;
    border: none;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -10px;
    text-align: center;
    line-height: 15px;
    cursor: pointer;
    opacity: 0.8;
}

.alert .close:hover {
    opacity: 1;
}

.alert a {
    color: #fff;
    text-decoration: underline;
}

.alert-success {
    background-color: #00b6ad;
}

.alert-info {
    background-color: #02b4d1;
}

.alert-warning {
    background-color: #f3c532;
}

.alert-danger {
    background-color: #f35f5f;
}

.alert-inverse {
    background: #1a1a1a;
    color: #fff;
}

.smallalert {
    color: #fff;
    padding: 0 3px;
    border: 1px solid transparent;
    border-radius: 1px;
}


/******************** start personal.css ***************/

.remove_param {
    margin: 3px;
}

a.more {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 13px;
    list-style: none;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

.dropdown-header {
    display: block;
    padding: 3px 5px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #777;
    font-weight: 600;
    white-space: nowrap;
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto;
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    color: #333333;
    white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    color: #ffffff;
    text-decoration: none;
    background-color: #428bca;
    outline: 0;
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    color: #999999;
}

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
}


/*.morecontent span { display: none; } .morelink { display:inline-block; } */

.disabledRow {
    color: #AAAAAA !important;
}

#option_value button {
    display: none;
}

.green {
    color: #248716;
}


/************** End personal.css *******************/


/************** Start ionicons.css *******************/

@charset "UTF-8";

/*! Ionicons, v2.0.0 Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ https://twitter.com/benjsperry  https://twitter.com/ionicframework MIT License: https://github.com/driftyco/ionicons Android-style icons originally built by Google’s Material Design Icons: https://github.com/google/material-design-icons used under CC BY http://creativecommons.org/licenses/by/4.0/ Modified icons to fit ionicon’s grid from original. */

@font-face {
    font-family: "Ionicons";
    src: url("../fonts/ionicons.eot?v=2.0.0");
    src: url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("../fonts/ionicons.woff?v=2.0.0") format("woff"), url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");
    font-weight: normal;
    font-style: normal;
}

.ion,
.ionicons,
.ion-alert:before,
.ion-alert-circled:before,
.ion-android-add:before,
.ion-android-add-circle:before,
.ion-android-alarm-clock:before,
.ion-android-alert:before,
.ion-android-apps:before,
.ion-android-archive:before,
.ion-android-arrow-back:before,
.ion-android-arrow-down:before,
.ion-android-arrow-dropdown:before,
.ion-android-arrow-dropdown-circle:before,
.ion-android-arrow-dropleft:before,
.ion-android-arrow-dropleft-circle:before,
.ion-android-arrow-dropright:before,
.ion-android-arrow-dropright-circle:before,
.ion-android-arrow-dropup:before,
.ion-android-arrow-dropup-circle:before,
.ion-android-arrow-forward:before,
.ion-android-arrow-up:before,
.ion-android-attach:before,
.ion-android-bar:before,
.ion-android-bicycle:before,
.ion-android-boat:before,
.ion-android-bookmark:before,
.ion-android-bulb:before,
.ion-android-bus:before,
.ion-android-calendar:before,
.ion-android-call:before,
.ion-android-camera:before,
.ion-android-cancel:before,
.ion-android-car:before,
.ion-android-cart:before,
.ion-android-chat:before,
.ion-android-checkbox:before,
.ion-android-checkbox-blank:before,
.ion-android-checkbox-outline:before,
.ion-android-checkbox-outline-blank:before,
.ion-android-checkmark-circle:before,
.ion-android-clipboard:before,
.ion-android-close:before,
.ion-android-cloud:before,
.ion-android-cloud-circle:before,
.ion-android-cloud-done:before,
.ion-android-cloud-outline:before,
.ion-android-color-palette:before,
.ion-android-compass:before,
.ion-android-contact:before,
.ion-android-contacts:before,
.ion-android-contract:before,
.ion-android-create:before,
.ion-android-delete:before,
.ion-android-desktop:before,
.ion-android-document:before,
.ion-android-done:before,
.ion-android-done-all:before,
.ion-android-download:before,
.ion-android-drafts:before,
.ion-android-exit:before,
.ion-android-expand:before,
.ion-android-favorite:before,
.ion-android-favorite-outline:before,
.ion-android-film:before,
.ion-android-folder:before,
.ion-android-folder-open:before,
.ion-android-funnel:before,
.ion-android-globe:before,
.ion-android-hand:before,
.ion-android-hangout:before,
.ion-android-happy:before,
.ion-android-home:before,
.ion-android-image:before,
.ion-android-laptop:before,
.ion-android-list:before,
.ion-android-locate:before,
.ion-android-lock:before,
.ion-android-mail:before,
.ion-android-map:before,
.ion-android-menu:before,
.ion-android-microphone:before,
.ion-android-microphone-off:before,
.ion-android-more-horizontal:before,
.ion-android-more-vertical:before,
.ion-android-navigate:before,
.ion-android-notifications:before,
.ion-android-notifications-none:before,
.ion-android-notifications-off:before,
.ion-android-open:before,
.ion-android-options:before,
.ion-android-people:before,
.ion-android-person:before,
.ion-android-person-add:before,
.ion-android-phone-landscape:before,
.ion-android-phone-portrait:before,
.ion-android-pin:before,
.ion-android-plane:before,
.ion-android-playstore:before,
.ion-android-print:before,
.ion-android-radio-button-off:before,
.ion-android-radio-button-on:before,
.ion-android-refresh:before,
.ion-android-remove:before,
.ion-android-remove-circle:before,
.ion-android-restaurant:before,
.ion-android-sad:before,
.ion-android-search:before,
.ion-android-send:before,
.ion-android-settings:before,
.ion-android-share:before,
.ion-android-share-alt:before,
.ion-android-star:before,
.ion-android-star-half:before,
.ion-android-star-outline:before,
.ion-android-stopwatch:before,
.ion-android-subway:before,
.ion-android-sunny:before,
.ion-android-sync:before,
.ion-android-textsms:before,
.ion-android-time:before,
.ion-android-train:before,
.ion-android-unlock:before,
.ion-android-upload:before,
.ion-android-volume-down:before,
.ion-android-volume-mute:before,
.ion-android-volume-off:before,
.ion-android-volume-up:before,
.ion-android-walk:before,
.ion-android-warning:before,
.ion-android-watch:before,
.ion-android-wifi:before,
.ion-aperture:before,
.ion-archive:before,
.ion-arrow-down-a:before,
.ion-arrow-down-b:before,
.ion-arrow-down-c:before,
.ion-arrow-expand:before,
.ion-arrow-graph-down-left:before,
.ion-arrow-graph-down-right:before,
.ion-arrow-graph-up-left:before,
.ion-arrow-graph-up-right:before,
.ion-arrow-left-a:before,
.ion-arrow-left-b:before,
.ion-arrow-left-c:before,
.ion-arrow-move:before,
.ion-arrow-resize:before,
.ion-arrow-return-left:before,
.ion-arrow-return-right:before,
.ion-arrow-right-a:before,
.ion-arrow-right-b:before,
.ion-arrow-right-c:before,
.ion-arrow-shrink:before,
.ion-arrow-swap:before,
.ion-arrow-up-a:before,
.ion-arrow-up-b:before,
.ion-arrow-up-c:before,
.ion-asterisk:before,
.ion-at:before,
.ion-backspace:before,
.ion-backspace-outline:before,
.ion-bag:before,
.ion-battery-charging:before,
.ion-battery-empty:before,
.ion-battery-full:before,
.ion-battery-half:before,
.ion-battery-low:before,
.ion-beaker:before,
.ion-beer:before,
.ion-bluetooth:before,
.ion-bonfire:before,
.ion-bookmark:before,
.ion-bowtie:before,
.ion-briefcase:before,
.ion-bug:before,
.ion-calculator:before,
.ion-calendar:before,
.ion-camera:before,
.ion-card:before,
.ion-cash:before,
.ion-chatbox:before,
.ion-chatbox-working:before,
.ion-chatboxes:before,
.ion-chatbubble:before,
.ion-chatbubble-working:before,
.ion-chatbubbles:before,
.ion-checkmark:before,
.ion-checkmark-circled:before,
.ion-checkmark-round:before,
.ion-chevron-down:before,
.ion-chevron-left:before,
.ion-chevron-right:before,
.ion-chevron-up:before,
.ion-clipboard:before,
.ion-clock:before,
.ion-close:before,
.ion-close-circled:before,
.ion-close-round:before,
.ion-closed-captioning:before,
.ion-cloud:before,
.ion-code:before,
.ion-code-download:before,
.ion-code-working:before,
.ion-coffee:before,
.ion-compass:before,
.ion-compose:before,
.ion-connection-bars:before,
.ion-contrast:before,
.ion-crop:before,
.ion-cube:before,
.ion-disc:before,
.ion-document:before,
.ion-document-text:before,
.ion-drag:before,
.ion-earth:before,
.ion-easel:before,
.ion-edit:before,
.ion-egg:before,
.ion-eject:before,
.ion-email:before,
.ion-email-unread:before,
.ion-erlenmeyer-flask:before,
.ion-erlenmeyer-flask-bubbles:before,
.ion-eye:before,
.ion-eye-disabled:before,
.ion-female:before,
.ion-filing:before,
.ion-film-marker:before,
.ion-fireball:before,
.ion-flag:before,
.ion-flame:before,
.ion-flash:before,
.ion-flash-off:before,
.ion-folder:before,
.ion-fork:before,
.ion-fork-repo:before,
.ion-forward:before,
.ion-funnel:before,
.ion-gear-a:before,
.ion-gear-b:before,
.ion-grid:before,
.ion-hammer:before,
.ion-happy:before,
.ion-happy-outline:before,
.ion-headphone:before,
.ion-heart:before,
.ion-heart-broken:before,
.ion-help:before,
.ion-help-buoy:before,
.ion-help-circled:before,
.ion-home:before,
.ion-icecream:before,
.ion-image:before,
.ion-images:before,
.ion-information:before,
.ion-information-circled:before,
.ion-ionic:before,
.ion-ios-alarm:before,
.ion-ios-alarm-outline:before,
.ion-ios-albums:before,
.ion-ios-albums-outline:before,
.ion-ios-americanfootball:before,
.ion-ios-americanfootball-outline:before,
.ion-ios-analytics:before,
.ion-ios-analytics-outline:before,
.ion-ios-arrow-back:before,
.ion-ios-arrow-down:before,
.ion-ios-arrow-forward:before,
.ion-ios-arrow-left:before,
.ion-ios-arrow-right:before,
.ion-ios-arrow-thin-down:before,
.ion-ios-arrow-thin-left:before,
.ion-ios-arrow-thin-right:before,
.ion-ios-arrow-thin-up:before,
.ion-ios-arrow-up:before,
.ion-ios-at:before,
.ion-ios-at-outline:before,
.ion-ios-barcode:before,
.ion-ios-barcode-outline:before,
.ion-ios-baseball:before,
.ion-ios-baseball-outline:before,
.ion-ios-basketball:before,
.ion-ios-basketball-outline:before,
.ion-ios-bell:before,
.ion-ios-bell-outline:before,
.ion-ios-body:before,
.ion-ios-body-outline:before,
.ion-ios-bolt:before,
.ion-ios-bolt-outline:before,
.ion-ios-book:before,
.ion-ios-book-outline:before,
.ion-ios-bookmarks:before,
.ion-ios-bookmarks-outline:before,
.ion-ios-box:before,
.ion-ios-box-outline:before,
.ion-ios-briefcase:before,
.ion-ios-briefcase-outline:before,
.ion-ios-browsers:before,
.ion-ios-browsers-outline:before,
.ion-ios-calculator:before,
.ion-ios-calculator-outline:before,
.ion-ios-calendar:before,
.ion-ios-calendar-outline:before,
.ion-ios-camera:before,
.ion-ios-camera-outline:before,
.ion-ios-cart:before,
.ion-ios-cart-outline:before,
.ion-ios-chatboxes:before,
.ion-ios-chatboxes-outline:before,
.ion-ios-chatbubble:before,
.ion-ios-chatbubble-outline:before,
.ion-ios-checkmark:before,
.ion-ios-checkmark-empty:before,
.ion-ios-checkmark-outline:before,
.ion-ios-circle-filled:before,
.ion-ios-circle-outline:before,
.ion-ios-clock:before,
.ion-ios-clock-outline:before,
.ion-ios-close:before,
.ion-ios-close-empty:before,
.ion-ios-close-outline:before,
.ion-ios-cloud:before,
.ion-ios-cloud-download:before,
.ion-ios-cloud-download-outline:before,
.ion-ios-cloud-outline:before,
.ion-ios-cloud-upload:before,
.ion-ios-cloud-upload-outline:before,
.ion-ios-cloudy:before,
.ion-ios-cloudy-night:before,
.ion-ios-cloudy-night-outline:before,
.ion-ios-cloudy-outline:before,
.ion-ios-cog:before,
.ion-ios-cog-outline:before,
.ion-ios-color-filter:before,
.ion-ios-color-filter-outline:before,
.ion-ios-color-wand:before,
.ion-ios-color-wand-outline:before,
.ion-ios-compose:before,
.ion-ios-compose-outline:before,
.ion-ios-contact:before,
.ion-ios-contact-outline:before,
.ion-ios-copy:before,
.ion-ios-copy-outline:before,
.ion-ios-crop:before,
.ion-ios-crop-strong:before,
.ion-ios-download:before,
.ion-ios-download-outline:before,
.ion-ios-drag:before,
.ion-ios-email:before,
.ion-ios-email-outline:before,
.ion-ios-eye:before,
.ion-ios-eye-outline:before,
.ion-ios-fastforward:before,
.ion-ios-fastforward-outline:before,
.ion-ios-filing:before,
.ion-ios-filing-outline:before,
.ion-ios-film:before,
.ion-ios-film-outline:before,
.ion-ios-flag:before,
.ion-ios-flag-outline:before,
.ion-ios-flame:before,
.ion-ios-flame-outline:before,
.ion-ios-flask:before,
.ion-ios-flask-outline:before,
.ion-ios-flower:before,
.ion-ios-flower-outline:before,
.ion-ios-folder:before,
.ion-ios-folder-outline:before,
.ion-ios-football:before,
.ion-ios-football-outline:before,
.ion-ios-game-controller-a:before,
.ion-ios-game-controller-a-outline:before,
.ion-ios-game-controller-b:before,
.ion-ios-game-controller-b-outline:before,
.ion-ios-gear:before,
.ion-ios-gear-outline:before,
.ion-ios-glasses:before,
.ion-ios-glasses-outline:before,
.ion-ios-grid-view:before,
.ion-ios-grid-view-outline:before,
.ion-ios-heart:before,
.ion-ios-heart-outline:before,
.ion-ios-help:before,
.ion-ios-help-empty:before,
.ion-ios-help-outline:before,
.ion-ios-home:before,
.ion-ios-home-outline:before,
.ion-ios-infinite:before,
.ion-ios-infinite-outline:before,
.ion-ios-information:before,
.ion-ios-information-empty:before,
.ion-ios-information-outline:before,
.ion-ios-ionic-outline:before,
.ion-ios-keypad:before,
.ion-ios-keypad-outline:before,
.ion-ios-lightbulb:before,
.ion-ios-lightbulb-outline:before,
.ion-ios-list:before,
.ion-ios-list-outline:before,
.ion-ios-location:before,
.ion-ios-location-outline:before,
.ion-ios-locked:before,
.ion-ios-locked-outline:before,
.ion-ios-loop:before,
.ion-ios-loop-strong:before,
.ion-ios-medical:before,
.ion-ios-medical-outline:before,
.ion-ios-medkit:before,
.ion-ios-medkit-outline:before,
.ion-ios-mic:before,
.ion-ios-mic-off:before,
.ion-ios-mic-outline:before,
.ion-ios-minus:before,
.ion-ios-minus-empty:before,
.ion-ios-minus-outline:before,
.ion-ios-monitor:before,
.ion-ios-monitor-outline:before,
.ion-ios-moon:before,
.ion-ios-moon-outline:before,
.ion-ios-more:before,
.ion-ios-more-outline:before,
.ion-ios-musical-note:before,
.ion-ios-musical-notes:before,
.ion-ios-navigate:before,
.ion-ios-navigate-outline:before,
.ion-ios-nutrition:before,
.ion-ios-nutrition-outline:before,
.ion-ios-paper:before,
.ion-ios-paper-outline:before,
.ion-ios-paperplane:before,
.ion-ios-paperplane-outline:before,
.ion-ios-partlysunny:before,
.ion-ios-partlysunny-outline:before,
.ion-ios-pause:before,
.ion-ios-pause-outline:before,
.ion-ios-paw:before,
.ion-ios-paw-outline:before,
.ion-ios-people:before,
.ion-ios-people-outline:before,
.ion-ios-person:before,
.ion-ios-person-outline:before,
.ion-ios-personadd:before,
.ion-ios-personadd-outline:before,
.ion-ios-photos:before,
.ion-ios-photos-outline:before,
.ion-ios-pie:before,
.ion-ios-pie-outline:before,
.ion-ios-pint:before,
.ion-ios-pint-outline:before,
.ion-ios-play:before,
.ion-ios-play-outline:before,
.ion-ios-plus:before,
.ion-ios-plus-empty:before,
.ion-ios-plus-outline:before,
.ion-ios-pricetag:before,
.ion-ios-pricetag-outline:before,
.ion-ios-pricetags:before,
.ion-ios-pricetags-outline:before,
.ion-ios-printer:before,
.ion-ios-printer-outline:before,
.ion-ios-pulse:before,
.ion-ios-pulse-strong:before,
.ion-ios-rainy:before,
.ion-ios-rainy-outline:before,
.ion-ios-recording:before,
.ion-ios-recording-outline:before,
.ion-ios-redo:before,
.ion-ios-redo-outline:before,
.ion-ios-refresh:before,
.ion-ios-refresh-empty:before,
.ion-ios-refresh-outline:before,
.ion-ios-reload:before,
.ion-ios-reverse-camera:before,
.ion-ios-reverse-camera-outline:before,
.ion-ios-rewind:before,
.ion-ios-rewind-outline:before,
.ion-ios-rose:before,
.ion-ios-rose-outline:before,
.ion-ios-search:before,
.ion-ios-search-strong:before,
.ion-ios-settings:before,
.ion-ios-settings-strong:before,
.ion-ios-shuffle:before,
.ion-ios-shuffle-strong:before,
.ion-ios-skipbackward:before,
.ion-ios-skipbackward-outline:before,
.ion-ios-skipforward:before,
.ion-ios-skipforward-outline:before,
.ion-ios-snowy:before,
.ion-ios-speedometer:before,
.ion-ios-speedometer-outline:before,
.ion-ios-star:before,
.ion-ios-star-half:before,
.ion-ios-star-outline:before,
.ion-ios-stopwatch:before,
.ion-ios-stopwatch-outline:before,
.ion-ios-sunny:before,
.ion-ios-sunny-outline:before,
.ion-ios-telephone:before,
.ion-ios-telephone-outline:before,
.ion-ios-tennisball:before,
.ion-ios-tennisball-outline:before,
.ion-ios-thunderstorm:before,
.ion-ios-thunderstorm-outline:before,
.ion-ios-time:before,
.ion-ios-time-outline:before,
.ion-ios-timer:before,
.ion-ios-timer-outline:before,
.ion-ios-toggle:before,
.ion-ios-toggle-outline:before,
.ion-ios-trash:before,
.ion-ios-trash-outline:before,
.ion-ios-undo:before,
.ion-ios-undo-outline:before,
.ion-ios-unlocked:before,
.ion-ios-unlocked-outline:before,
.ion-ios-upload:before,
.ion-ios-upload-outline:before,
.ion-ios-videocam:before,
.ion-ios-videocam-outline:before,
.ion-ios-volume-high:before,
.ion-ios-volume-low:before,
.ion-ios-wineglass:before,
.ion-ios-wineglass-outline:before,
.ion-ios-world:before,
.ion-ios-world-outline:before,
.ion-ipad:before,
.ion-iphone:before,
.ion-ipod:before,
.ion-jet:before,
.ion-key:before,
.ion-knife:before,
.ion-laptop:before,
.ion-leaf:before,
.ion-levels:before,
.ion-lightbulb:before,
.ion-link:before,
.ion-load-a:before,
.ion-load-b:before,
.ion-load-c:before,
.ion-load-d:before,
.ion-location:before,
.ion-lock-combination:before,
.ion-locked:before,
.ion-log-in:before,
.ion-log-out:before,
.ion-loop:before,
.ion-magnet:before,
.ion-male:before,
.ion-man:before,
.ion-map:before,
.ion-medkit:before,
.ion-merge:before,
.ion-mic-a:before,
.ion-mic-b:before,
.ion-mic-c:before,
.ion-minus:before,
.ion-minus-circled:before,
.ion-minus-round:before,
.ion-model-s:before,
.ion-monitor:before,
.ion-more:before,
.ion-mouse:before,
.ion-music-note:before,
.ion-navicon:before,
.ion-navicon-round:before,
.ion-navigate:before,
.ion-network:before,
.ion-no-smoking:before,
.ion-nuclear:before,
.ion-outlet:before,
.ion-paintbrush:before,
.ion-paintbucket:before,
.ion-paper-airplane:before,
.ion-paperclip:before,
.ion-pause:before,
.ion-person:before,
.ion-person-add:before,
.ion-person-stalker:before,
.ion-pie-graph:before,
.ion-pin:before,
.ion-pinpoint:before,
.ion-pizza:before,
.ion-plane:before,
.ion-planet:before,
.ion-play:before,
.ion-playstation:before,
.ion-plus:before,
.ion-plus-circled:before,
.ion-plus-round:before,
.ion-podium:before,
.ion-pound:before,
.ion-power:before,
.ion-pricetag:before,
.ion-pricetags:before,
.ion-printer:before,
.ion-pull-request:before,
.ion-qr-scanner:before,
.ion-quote:before,
.ion-radio-waves:before,
.ion-record:before,
.ion-refresh:before,
.ion-reply:before,
.ion-reply-all:before,
.ion-ribbon-a:before,
.ion-ribbon-b:before,
.ion-sad:before,
.ion-sad-outline:before,
.ion-scissors:before,
.ion-search:before,
.ion-settings:before,
.ion-share:before,
.ion-shuffle:before,
.ion-skip-backward:before,
.ion-skip-forward:before,
.ion-social-android:before,
.ion-social-android-outline:before,
.ion-social-angular:before,
.ion-social-angular-outline:before,
.ion-social-apple:before,
.ion-social-apple-outline:before,
.ion-social-bitcoin:before,
.ion-social-bitcoin-outline:before,
.ion-social-buffer:before,
.ion-social-buffer-outline:before,
.ion-social-chrome:before,
.ion-social-chrome-outline:before,
.ion-social-codepen:before,
.ion-social-codepen-outline:before,
.ion-social-css3:before,
.ion-social-css3-outline:before,
.ion-social-designernews:before,
.ion-social-designernews-outline:before,
.ion-social-dribbble:before,
.ion-social-dribbble-outline:before,
.ion-social-dropbox:before,
.ion-social-dropbox-outline:before,
.ion-social-euro:before,
.ion-social-euro-outline:before,
.ion-social-facebook:before,
.ion-social-facebook-outline:before,
.ion-social-foursquare:before,
.ion-social-foursquare-outline:before,
.ion-social-freebsd-devil:before,
.ion-social-github:before,
.ion-social-github-outline:before,
.ion-social-google:before,
.ion-social-google-outline:before,
.ion-social-googleplus:before,
.ion-social-googleplus-outline:before,
.ion-social-hackernews:before,
.ion-social-hackernews-outline:before,
.ion-social-html5:before,
.ion-social-html5-outline:before,
.ion-social-instagram:before,
.ion-social-instagram-outline:before,
.ion-social-javascript:before,
.ion-social-javascript-outline:before,
.ion-social-linkedin:before,
.ion-social-linkedin-outline:before,
.ion-social-markdown:before,
.ion-social-nodejs:before,
.ion-social-octocat:before,
.ion-social-pinterest:before,
.ion-social-pinterest-outline:before,
.ion-social-python:before,
.ion-social-reddit:before,
.ion-social-reddit-outline:before,
.ion-social-rss:before,
.ion-social-rss-outline:before,
.ion-social-sass:before,
.ion-social-skype:before,
.ion-social-skype-outline:before,
.ion-social-snapchat:before,
.ion-social-snapchat-outline:before,
.ion-social-tumblr:before,
.ion-social-tumblr-outline:before,
.ion-social-tux:before,
.ion-social-twitch:before,
.ion-social-twitch-outline:before,
.ion-social-twitter:before,
.ion-social-twitter-outline:before,
.ion-social-usd:before,
.ion-social-usd-outline:before,
.ion-social-vimeo:before,
.ion-social-vimeo-outline:before,
.ion-social-whatsapp:before,
.ion-social-whatsapp-outline:before,
.ion-social-windows:before,
.ion-social-windows-outline:before,
.ion-social-wordpress:before,
.ion-social-wordpress-outline:before,
.ion-social-yahoo:before,
.ion-social-yahoo-outline:before,
.ion-social-yen:before,
.ion-social-yen-outline:before,
.ion-social-youtube:before,
.ion-social-youtube-outline:before,
.ion-soup-can:before,
.ion-soup-can-outline:before,
.ion-speakerphone:before,
.ion-speedometer:before,
.ion-spoon:before,
.ion-star:before,
.ion-stats-bars:before,
.ion-steam:before,
.ion-stop:before,
.ion-thermometer:before,
.ion-thumbsdown:before,
.ion-thumbsup:before,
.ion-toggle:before,
.ion-toggle-filled:before,
.ion-transgender:before,
.ion-trash-a:before,
.ion-trash-b:before,
.ion-trophy:before,
.ion-tshirt:before,
.ion-tshirt-outline:before,
.ion-umbrella:before,
.ion-university:before,
.ion-unlocked:before,
.ion-upload:before,
.ion-usb:before,
.ion-videocamera:before,
.ion-volume-high:before,
.ion-volume-low:before,
.ion-volume-medium:before,
.ion-volume-mute:before,
.ion-wand:before,
.ion-waterdrop:before,
.ion-wifi:before,
.ion-wineglass:before,
.ion-woman:before,
.ion-wrench:before,
.ion-xbox:before {
    display: inline-block;
    font-family: "Ionicons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ion-alert:before {
    content: "\f101";
}

.ion-alert-circled:before {
    content: "\f100";
}

.ion-android-add:before {
    content: "\f2c7";
}

.ion-android-add-circle:before {
    content: "\f359";
}

.ion-android-alarm-clock:before {
    content: "\f35a";
}

.ion-android-alert:before {
    content: "\f35b";
}

.ion-android-apps:before {
    content: "\f35c";
}

.ion-android-archive:before {
    content: "\f2c9";
}

.ion-android-arrow-back:before {
    content: "\f2ca";
}

.ion-android-arrow-down:before {
    content: "\f35d";
}

.ion-android-arrow-dropdown:before {
    content: "\f35f";
}

.ion-android-arrow-dropdown-circle:before {
    content: "\f35e";
}

.ion-android-arrow-dropleft:before {
    content: "\f361";
}

.ion-android-arrow-dropleft-circle:before {
    content: "\f360";
}

.ion-android-arrow-dropright:before {
    content: "\f363";
}

.ion-android-arrow-dropright-circle:before {
    content: "\f362";
}

.ion-android-arrow-dropup:before {
    content: "\f365";
}

.ion-android-arrow-dropup-circle:before {
    content: "\f364";
}

.ion-android-arrow-forward:before {
    content: "\f30f";
}

.ion-android-arrow-up:before {
    content: "\f366";
}

.ion-android-attach:before {
    content: "\f367";
}

.ion-android-bar:before {
    content: "\f368";
}

.ion-android-bicycle:before {
    content: "\f369";
}

.ion-android-boat:before {
    content: "\f36a";
}

.ion-android-bookmark:before {
    content: "\f36b";
}

.ion-android-bulb:before {
    content: "\f36c";
}

.ion-android-bus:before {
    content: "\f36d";
}

.ion-android-calendar:before {
    content: "\f2d1";
}

.ion-android-call:before {
    content: "\f2d2";
}

.ion-android-camera:before {
    content: "\f2d3";
}

.ion-android-cancel:before {
    content: "\f36e";
}

.ion-android-car:before {
    content: "\f36f";
}

.ion-android-cart:before {
    content: "\f370";
}

.ion-android-chat:before {
    content: "\f2d4";
}

.ion-android-checkbox:before {
    content: "\f374";
}

.ion-android-checkbox-blank:before {
    content: "\f371";
}

.ion-android-checkbox-outline:before {
    content: "\f373";
}

.ion-android-checkbox-outline-blank:before {
    content: "\f372";
}

.ion-android-checkmark-circle:before {
    content: "\f375";
}

.ion-android-clipboard:before {
    content: "\f376";
}

.ion-android-close:before {
    content: "\f2d7";
}

.ion-android-cloud:before {
    content: "\f37a";
}

.ion-android-cloud-circle:before {
    content: "\f377";
}

.ion-android-cloud-done:before {
    content: "\f378";
}

.ion-android-cloud-outline:before {
    content: "\f379";
}

.ion-android-color-palette:before {
    content: "\f37b";
}

.ion-android-compass:before {
    content: "\f37c";
}

.ion-android-contact:before {
    content: "\f2d8";
}

.ion-android-contacts:before {
    content: "\f2d9";
}

.ion-android-contract:before {
    content: "\f37d";
}

.ion-android-create:before {
    content: "\f37e";
}

.ion-android-delete:before {
    content: "\f37f";
}

.ion-android-desktop:before {
    content: "\f380";
}

.ion-android-document:before {
    content: "\f381";
}

.ion-android-done:before {
    content: "\f383";
}

.ion-android-done-all:before {
    content: "\f382";
}

.ion-android-download:before {
    content: "\f2dd";
}

.ion-android-drafts:before {
    content: "\f384";
}

.ion-android-exit:before {
    content: "\f385";
}

.ion-android-expand:before {
    content: "\f386";
}

.ion-android-favorite:before {
    content: "\f388";
}

.ion-android-favorite-outline:before {
    content: "\f387";
}

.ion-android-film:before {
    content: "\f389";
}

.ion-android-folder:before {
    content: "\f2e0";
}

.ion-android-folder-open:before {
    content: "\f38a";
}

.ion-android-funnel:before {
    content: "\f38b";
}

.ion-android-globe:before {
    content: "\f38c";
}

.ion-android-hand:before {
    content: "\f2e3";
}

.ion-android-hangout:before {
    content: "\f38d";
}

.ion-android-happy:before {
    content: "\f38e";
}

.ion-android-home:before {
    content: "\f38f";
}

.ion-android-image:before {
    content: "\f2e4";
}

.ion-android-laptop:before {
    content: "\f390";
}

.ion-android-list:before {
    content: "\f391";
}

.ion-android-locate:before {
    content: "\f2e9";
}

.ion-android-lock:before {
    content: "\f392";
}

.ion-android-mail:before {
    content: "\f2eb";
}

.ion-android-map:before {
    content: "\f393";
}

.ion-android-menu:before {
    content: "\f394";
}

.ion-android-microphone:before {
    content: "\f2ec";
}

.ion-android-microphone-off:before {
    content: "\f395";
}

.ion-android-more-horizontal:before {
    content: "\f396";
}

.ion-android-more-vertical:before {
    content: "\f397";
}

.ion-android-navigate:before {
    content: "\f398";
}

.ion-android-notifications:before {
    content: "\f39b";
}

.ion-android-notifications-none:before {
    content: "\f399";
}

.ion-android-notifications-off:before {
    content: "\f39a";
}

.ion-android-open:before {
    content: "\f39c";
}

.ion-android-options:before {
    content: "\f39d";
}

.ion-android-people:before {
    content: "\f39e";
}

.ion-android-person:before {
    content: "\f3a0";
}

.ion-android-person-add:before {
    content: "\f39f";
}

.ion-android-phone-landscape:before {
    content: "\f3a1";
}

.ion-android-phone-portrait:before {
    content: "\f3a2";
}

.ion-android-pin:before {
    content: "\f3a3";
}

.ion-android-plane:before {
    content: "\f3a4";
}

.ion-android-playstore:before {
    content: "\f2f0";
}

.ion-android-print:before {
    content: "\f3a5";
}

.ion-android-radio-button-off:before {
    content: "\f3a6";
}

.ion-android-radio-button-on:before {
    content: "\f3a7";
}

.ion-android-refresh:before {
    content: "\f3a8";
}

.ion-android-remove:before {
    content: "\f2f4";
}

.ion-android-remove-circle:before {
    content: "\f3a9";
}

.ion-android-restaurant:before {
    content: "\f3aa";
}

.ion-android-sad:before {
    content: "\f3ab";
}

.ion-android-search:before {
    content: "\f2f5";
}

.ion-android-send:before {
    content: "\f2f6";
}

.ion-android-settings:before {
    content: "\f2f7";
}

.ion-android-share:before {
    content: "\f2f8";
}

.ion-android-share-alt:before {
    content: "\f3ac";
}

.ion-android-star:before {
    content: "\f2fc";
}

.ion-android-star-half:before {
    content: "\f3ad";
}

.ion-android-star-outline:before {
    content: "\f3ae";
}

.ion-android-stopwatch:before {
    content: "\f2fd";
}

.ion-android-subway:before {
    content: "\f3af";
}

.ion-android-sunny:before {
    content: "\f3b0";
}

.ion-android-sync:before {
    content: "\f3b1";
}

.ion-android-textsms:before {
    content: "\f3b2";
}

.ion-android-time:before {
    content: "\f3b3";
}

.ion-android-train:before {
    content: "\f3b4";
}

.ion-android-unlock:before {
    content: "\f3b5";
}

.ion-android-upload:before {
    content: "\f3b6";
}

.ion-android-volume-down:before {
    content: "\f3b7";
}

.ion-android-volume-mute:before {
    content: "\f3b8";
}

.ion-android-volume-off:before {
    content: "\f3b9";
}

.ion-android-volume-up:before {
    content: "\f3ba";
}

.ion-android-walk:before {
    content: "\f3bb";
}

.ion-android-warning:before {
    content: "\f3bc";
}

.ion-android-watch:before {
    content: "\f3bd";
}

.ion-android-wifi:before {
    content: "\f305";
}

.ion-aperture:before {
    content: "\f313";
}

.ion-archive:before {
    content: "\f102";
}

.ion-arrow-down-a:before {
    content: "\f103";
}

.ion-arrow-down-b:before {
    content: "\f104";
}

.ion-arrow-down-c:before {
    content: "\f105";
}

.ion-arrow-expand:before {
    content: "\f25e";
}

.ion-arrow-graph-down-left:before {
    content: "\f25f";
}

.ion-arrow-graph-down-right:before {
    content: "\f260";
}

.ion-arrow-graph-up-left:before {
    content: "\f261";
}

.ion-arrow-graph-up-right:before {
    content: "\f262";
}

.ion-arrow-left-a:before {
    content: "\f106";
}

.ion-arrow-left-b:before {
    content: "\f107";
}

.ion-arrow-left-c:before {
    content: "\f108";
}

.ion-arrow-move:before {
    content: "\f263";
}

.ion-arrow-resize:before {
    content: "\f264";
}

.ion-arrow-return-left:before {
    content: "\f265";
}

.ion-arrow-return-right:before {
    content: "\f266";
}

.ion-arrow-right-a:before {
    content: "\f109";
}

.ion-arrow-right-b:before {
    content: "\f10a";
}

.ion-arrow-right-c:before {
    content: "\f10b";
}

.ion-arrow-shrink:before {
    content: "\f267";
}

.ion-arrow-swap:before {
    content: "\f268";
}

.ion-arrow-up-a:before {
    content: "\f10c";
}

.ion-arrow-up-b:before {
    content: "\f10d";
}

.ion-arrow-up-c:before {
    content: "\f10e";
}

.ion-asterisk:before {
    content: "\f314";
}

.ion-at:before {
    content: "\f10f";
}

.ion-backspace:before {
    content: "\f3bf";
}

.ion-backspace-outline:before {
    content: "\f3be";
}

.ion-bag:before {
    content: "\f110";
}

.ion-battery-charging:before {
    content: "\f111";
}

.ion-battery-empty:before {
    content: "\f112";
}

.ion-battery-full:before {
    content: "\f113";
}

.ion-battery-half:before {
    content: "\f114";
}

.ion-battery-low:before {
    content: "\f115";
}

.ion-beaker:before {
    content: "\f269";
}

.ion-beer:before {
    content: "\f26a";
}

.ion-bluetooth:before {
    content: "\f116";
}

.ion-bonfire:before {
    content: "\f315";
}

.ion-bookmark:before {
    content: "\f26b";
}

.ion-bowtie:before {
    content: "\f3c0";
}

.ion-briefcase:before {
    content: "\f26c";
}

.ion-bug:before {
    content: "\f2be";
}

.ion-calculator:before {
    content: "\f26d";
}

.ion-calendar:before {
    content: "\f117";
}

.ion-camera:before {
    content: "\f118";
}

.ion-card:before {
    content: "\f119";
}

.ion-cash:before {
    content: "\f316";
}

.ion-chatbox:before {
    content: "\f11b";
}

.ion-chatbox-working:before {
    content: "\f11a";
}

.ion-chatboxes:before {
    content: "\f11c";
}

.ion-chatbubble:before {
    content: "\f11e";
}

.ion-chatbubble-working:before {
    content: "\f11d";
}

.ion-chatbubbles:before {
    content: "\f11f";
}

.ion-checkmark:before {
    content: "\f122";
}

.ion-checkmark-circled:before {
    content: "\f120";
}

.ion-checkmark-round:before {
    content: "\f121";
}

.ion-chevron-down:before {
    content: "\f123";
}

.ion-chevron-left:before {
    content: "\f124";
}

.ion-chevron-right:before {
    content: "\f125";
}

.ion-chevron-up:before {
    content: "\f126";
}

.ion-clipboard:before {
    content: "\f127";
}

.ion-clock:before {
    content: "\f26e";
}

.ion-close:before {
    content: "\f12a";
}

.ion-close-circled:before {
    content: "\f128";
}

.ion-close-round:before {
    content: "\f129";
}

.ion-closed-captioning:before {
    content: "\f317";
}

.ion-cloud:before {
    content: "\f12b";
}

.ion-code:before {
    content: "\f271";
}

.ion-code-download:before {
    content: "\f26f";
}

.ion-code-working:before {
    content: "\f270";
}

.ion-coffee:before {
    content: "\f272";
}

.ion-compass:before {
    content: "\f273";
}

.ion-compose:before {
    content: "\f12c";
}

.ion-connection-bars:before {
    content: "\f274";
}

.ion-contrast:before {
    content: "\f275";
}

.ion-crop:before {
    content: "\f3c1";
}

.ion-cube:before {
    content: "\f318";
}

.ion-disc:before {
    content: "\f12d";
}

.ion-document:before {
    content: "\f12f";
}

.ion-document-text:before {
    content: "\f12e";
}

.ion-drag:before {
    content: "\f130";
}

.ion-earth:before {
    content: "\f276";
}

.ion-easel:before {
    content: "\f3c2";
}

.ion-edit:before {
    content: "\f2bf";
}

.ion-egg:before {
    content: "\f277";
}

.ion-eject:before {
    content: "\f131";
}

.ion-email:before {
    content: "\f132";
}

.ion-email-unread:before {
    content: "\f3c3";
}

.ion-erlenmeyer-flask:before {
    content: "\f3c5";
}

.ion-erlenmeyer-flask-bubbles:before {
    content: "\f3c4";
}

.ion-eye:before {
    content: "\f133";
}

.ion-eye-disabled:before {
    content: "\f306";
}

.ion-female:before {
    content: "\f278";
}

.ion-filing:before {
    content: "\f134";
}

.ion-film-marker:before {
    content: "\f135";
}

.ion-fireball:before {
    content: "\f319";
}

.ion-flag:before {
    content: "\f279";
}

.ion-flame:before {
    content: "\f31a";
}

.ion-flash:before {
    content: "\f137";
}

.ion-flash-off:before {
    content: "\f136";
}

.ion-folder:before {
    content: "\f139";
}

.ion-fork:before {
    content: "\f27a";
}

.ion-fork-repo:before {
    content: "\f2c0";
}

.ion-forward:before {
    content: "\f13a";
}

.ion-funnel:before {
    content: "\f31b";
}

.ion-gear-a:before {
    content: "\f13d";
}

.ion-gear-b:before {
    content: "\f13e";
}

.ion-grid:before {
    content: "\f13f";
}

.ion-hammer:before {
    content: "\f27b";
}

.ion-happy:before {
    content: "\f31c";
}

.ion-happy-outline:before {
    content: "\f3c6";
}

.ion-headphone:before {
    content: "\f140";
}

.ion-heart:before {
    content: "\f141";
}

.ion-heart-broken:before {
    content: "\f31d";
}

.ion-help:before {
    content: "\f143";
}

.ion-help-buoy:before {
    content: "\f27c";
}

.ion-help-circled:before {
    content: "\f142";
}

.ion-home:before {
    content: "\f144";
}

.ion-icecream:before {
    content: "\f27d";
}

.ion-image:before {
    content: "\f147";
}

.ion-images:before {
    content: "\f148";
}

.ion-information:before {
    content: "\f14a";
}

.ion-information-circled:before {
    content: "\f149";
}

.ion-ionic:before {
    content: "\f14b";
}

.ion-ios-alarm:before {
    content: "\f3c8";
}

.ion-ios-alarm-outline:before {
    content: "\f3c7";
}

.ion-ios-albums:before {
    content: "\f3ca";
}

.ion-ios-albums-outline:before {
    content: "\f3c9";
}

.ion-ios-americanfootball:before {
    content: "\f3cc";
}

.ion-ios-americanfootball-outline:before {
    content: "\f3cb";
}

.ion-ios-analytics:before {
    content: "\f3ce";
}

.ion-ios-analytics-outline:before {
    content: "\f3cd";
}

.ion-ios-arrow-back:before {
    content: "\f3cf";
}

.ion-ios-arrow-down:before {
    content: "\f3d0";
}

.ion-ios-arrow-forward:before {
    content: "\f3d1";
}

.ion-ios-arrow-left:before {
    content: "\f3d2";
}

.ion-ios-arrow-right:before {
    content: "\f3d3";
}

.ion-ios-arrow-thin-down:before {
    content: "\f3d4";
}

.ion-ios-arrow-thin-left:before {
    content: "\f3d5";
}

.ion-ios-arrow-thin-right:before {
    content: "\f3d6";
}

.ion-ios-arrow-thin-up:before {
    content: "\f3d7";
}

.ion-ios-arrow-up:before {
    content: "\f3d8";
}

.ion-ios-at:before {
    content: "\f3da";
}

.ion-ios-at-outline:before {
    content: "\f3d9";
}

.ion-ios-barcode:before {
    content: "\f3dc";
}

.ion-ios-barcode-outline:before {
    content: "\f3db";
}

.ion-ios-baseball:before {
    content: "\f3de";
}

.ion-ios-baseball-outline:before {
    content: "\f3dd";
}

.ion-ios-basketball:before {
    content: "\f3e0";
}

.ion-ios-basketball-outline:before {
    content: "\f3df";
}

.ion-ios-bell:before {
    content: "\f3e2";
}

.ion-ios-bell-outline:before {
    content: "\f3e1";
}

.ion-ios-body:before {
    content: "\f3e4";
}

.ion-ios-body-outline:before {
    content: "\f3e3";
}

.ion-ios-bolt:before {
    content: "\f3e6";
}

.ion-ios-bolt-outline:before {
    content: "\f3e5";
}

.ion-ios-book:before {
    content: "\f3e8";
}

.ion-ios-book-outline:before {
    content: "\f3e7";
}

.ion-ios-bookmarks:before {
    content: "\f3ea";
}

.ion-ios-bookmarks-outline:before {
    content: "\f3e9";
}

.ion-ios-box:before {
    content: "\f3ec";
}

.ion-ios-box-outline:before {
    content: "\f3eb";
}

.ion-ios-briefcase:before {
    content: "\f3ee";
}

.ion-ios-briefcase-outline:before {
    content: "\f3ed";
}

.ion-ios-browsers:before {
    content: "\f3f0";
}

.ion-ios-browsers-outline:before {
    content: "\f3ef";
}

.ion-ios-calculator:before {
    content: "\f3f2";
}

.ion-ios-calculator-outline:before {
    content: "\f3f1";
}

.ion-ios-calendar:before {
    content: "\f3f4";
}

.ion-ios-calendar-outline:before {
    content: "\f3f3";
}

.ion-ios-camera:before {
    content: "\f3f6";
}

.ion-ios-camera-outline:before {
    content: "\f3f5";
}

.ion-ios-cart:before {
    content: "\f3f8";
}

.ion-ios-cart-outline:before {
    content: "\f3f7";
}

.ion-ios-chatboxes:before {
    content: "\f3fa";
}

.ion-ios-chatboxes-outline:before {
    content: "\f3f9";
}

.ion-ios-chatbubble:before {
    content: "\f3fc";
}

.ion-ios-chatbubble-outline:before {
    content: "\f3fb";
}

.ion-ios-checkmark:before {
    content: "\f3ff";
}

.ion-ios-checkmark-empty:before {
    content: "\f3fd";
}

.ion-ios-checkmark-outline:before {
    content: "\f3fe";
}

.ion-ios-circle-filled:before {
    content: "\f400";
}

.ion-ios-circle-outline:before {
    content: "\f401";
}

.ion-ios-clock:before {
    content: "\f403";
}

.ion-ios-clock-outline:before {
    content: "\f402";
}

.ion-ios-close:before {
    content: "\f406";
}

.ion-ios-close-empty:before {
    content: "\f404";
}

.ion-ios-close-outline:before {
    content: "\f405";
}

.ion-ios-cloud:before {
    content: "\f40c";
}

.ion-ios-cloud-download:before {
    content: "\f408";
}

.ion-ios-cloud-download-outline:before {
    content: "\f407";
}

.ion-ios-cloud-outline:before {
    content: "\f409";
}

.ion-ios-cloud-upload:before {
    content: "\f40b";
}

.ion-ios-cloud-upload-outline:before {
    content: "\f40a";
}

.ion-ios-cloudy:before {
    content: "\f410";
}

.ion-ios-cloudy-night:before {
    content: "\f40e";
}

.ion-ios-cloudy-night-outline:before {
    content: "\f40d";
}

.ion-ios-cloudy-outline:before {
    content: "\f40f";
}

.ion-ios-cog:before {
    content: "\f412";
}

.ion-ios-cog-outline:before {
    content: "\f411";
}

.ion-ios-color-filter:before {
    content: "\f414";
}

.ion-ios-color-filter-outline:before {
    content: "\f413";
}

.ion-ios-color-wand:before {
    content: "\f416";
}

.ion-ios-color-wand-outline:before {
    content: "\f415";
}

.ion-ios-compose:before {
    content: "\f418";
}

.ion-ios-compose-outline:before {
    content: "\f417";
}

.ion-ios-contact:before {
    content: "\f41a";
}

.ion-ios-contact-outline:before {
    content: "\f419";
}

.ion-ios-copy:before {
    content: "\f41c";
}

.ion-ios-copy-outline:before {
    content: "\f41b";
}

.ion-ios-crop:before {
    content: "\f41e";
}

.ion-ios-crop-strong:before {
    content: "\f41d";
}

.ion-ios-download:before {
    content: "\f420";
}

.ion-ios-download-outline:before {
    content: "\f41f";
}

.ion-ios-drag:before {
    content: "\f421";
}

.ion-ios-email:before {
    content: "\f423";
}

.ion-ios-email-outline:before {
    content: "\f422";
}

.ion-ios-eye:before {
    content: "\f425";
}

.ion-ios-eye-outline:before {
    content: "\f424";
}

.ion-ios-fastforward:before {
    content: "\f427";
}

.ion-ios-fastforward-outline:before {
    content: "\f426";
}

.ion-ios-filing:before {
    content: "\f429";
}

.ion-ios-filing-outline:before {
    content: "\f428";
}

.ion-ios-film:before {
    content: "\f42b";
}

.ion-ios-film-outline:before {
    content: "\f42a";
}

.ion-ios-flag:before {
    content: "\f42d";
}

.ion-ios-flag-outline:before {
    content: "\f42c";
}

.ion-ios-flame:before {
    content: "\f42f";
}

.ion-ios-flame-outline:before {
    content: "\f42e";
}

.ion-ios-flask:before {
    content: "\f431";
}

.ion-ios-flask-outline:before {
    content: "\f430";
}

.ion-ios-flower:before {
    content: "\f433";
}

.ion-ios-flower-outline:before {
    content: "\f432";
}

.ion-ios-folder:before {
    content: "\f435";
}

.ion-ios-folder-outline:before {
    content: "\f434";
}

.ion-ios-football:before {
    content: "\f437";
}

.ion-ios-football-outline:before {
    content: "\f436";
}

.ion-ios-game-controller-a:before {
    content: "\f439";
}

.ion-ios-game-controller-a-outline:before {
    content: "\f438";
}

.ion-ios-game-controller-b:before {
    content: "\f43b";
}

.ion-ios-game-controller-b-outline:before {
    content: "\f43a";
}

.ion-ios-gear:before {
    content: "\f43d";
}

.ion-ios-gear-outline:before {
    content: "\f43c";
}

.ion-ios-glasses:before {
    content: "\f43f";
}

.ion-ios-glasses-outline:before {
    content: "\f43e";
}

.ion-ios-grid-view:before {
    content: "\f441";
}

.ion-ios-grid-view-outline:before {
    content: "\f440";
}

.ion-ios-heart:before {
    content: "\f443";
}

.ion-ios-heart-outline:before {
    content: "\f442";
}

.ion-ios-help:before {
    content: "\f446";
}

.ion-ios-help-empty:before {
    content: "\f444";
}

.ion-ios-help-outline:before {
    content: "\f445";
}

.ion-ios-home:before {
    content: "\f448";
}

.ion-ios-home-outline:before {
    content: "\f447";
}

.ion-ios-infinite:before {
    content: "\f44a";
}

.ion-ios-infinite-outline:before {
    content: "\f449";
}

.ion-ios-information:before {
    content: "\f44d";
}

.ion-ios-information-empty:before {
    content: "\f44b";
}

.ion-ios-information-outline:before {
    content: "\f44c";
}

.ion-ios-ionic-outline:before {
    content: "\f44e";
}

.ion-ios-keypad:before {
    content: "\f450";
}

.ion-ios-keypad-outline:before {
    content: "\f44f";
}

.ion-ios-lightbulb:before {
    content: "\f452";
}

.ion-ios-lightbulb-outline:before {
    content: "\f451";
}

.ion-ios-list:before {
    content: "\f454";
}

.ion-ios-list-outline:before {
    content: "\f453";
}

.ion-ios-location:before {
    content: "\f456";
}

.ion-ios-location-outline:before {
    content: "\f455";
}

.ion-ios-locked:before {
    content: "\f458";
}

.ion-ios-locked-outline:before {
    content: "\f457";
}

.ion-ios-loop:before {
    content: "\f45a";
}

.ion-ios-loop-strong:before {
    content: "\f459";
}

.ion-ios-medical:before {
    content: "\f45c";
}

.ion-ios-medical-outline:before {
    content: "\f45b";
}

.ion-ios-medkit:before {
    content: "\f45e";
}

.ion-ios-medkit-outline:before {
    content: "\f45d";
}

.ion-ios-mic:before {
    content: "\f461";
}

.ion-ios-mic-off:before {
    content: "\f45f";
}

.ion-ios-mic-outline:before {
    content: "\f460";
}

.ion-ios-minus:before {
    content: "\f464";
}

.ion-ios-minus-empty:before {
    content: "\f462";
}

.ion-ios-minus-outline:before {
    content: "\f463";
}

.ion-ios-monitor:before {
    content: "\f466";
}

.ion-ios-monitor-outline:before {
    content: "\f465";
}

.ion-ios-moon:before {
    content: "\f468";
}

.ion-ios-moon-outline:before {
    content: "\f467";
}

.ion-ios-more:before {
    content: "\f46a";
}

.ion-ios-more-outline:before {
    content: "\f469";
}

.ion-ios-musical-note:before {
    content: "\f46b";
}

.ion-ios-musical-notes:before {
    content: "\f46c";
}

.ion-ios-navigate:before {
    content: "\f46e";
}

.ion-ios-navigate-outline:before {
    content: "\f46d";
}

.ion-ios-nutrition:before {
    content: "\f470";
}

.ion-ios-nutrition-outline:before {
    content: "\f46f";
}

.ion-ios-paper:before {
    content: "\f472";
}

.ion-ios-paper-outline:before {
    content: "\f471";
}

.ion-ios-paperplane:before {
    content: "\f474";
}

.ion-ios-paperplane-outline:before {
    content: "\f473";
}

.ion-ios-partlysunny:before {
    content: "\f476";
}

.ion-ios-partlysunny-outline:before {
    content: "\f475";
}

.ion-ios-pause:before {
    content: "\f478";
}

.ion-ios-pause-outline:before {
    content: "\f477";
}

.ion-ios-paw:before {
    content: "\f47a";
}

.ion-ios-paw-outline:before {
    content: "\f479";
}

.ion-ios-people:before {
    content: "\f47c";
}

.ion-ios-people-outline:before {
    content: "\f47b";
}

.ion-ios-person:before {
    content: "\f47e";
}

.ion-ios-person-outline:before {
    content: "\f47d";
}

.ion-ios-personadd:before {
    content: "\f480";
}

.ion-ios-personadd-outline:before {
    content: "\f47f";
}

.ion-ios-photos:before {
    content: "\f482";
}

.ion-ios-photos-outline:before {
    content: "\f481";
}

.ion-ios-pie:before {
    content: "\f484";
}

.ion-ios-pie-outline:before {
    content: "\f483";
}

.ion-ios-pint:before {
    content: "\f486";
}

.ion-ios-pint-outline:before {
    content: "\f485";
}

.ion-ios-play:before {
    content: "\f488";
}

.ion-ios-play-outline:before {
    content: "\f487";
}

.ion-ios-plus:before {
    content: "\f48b";
}

.ion-ios-plus-empty:before {
    content: "\f489";
}

.ion-ios-plus-outline:before {
    content: "\f48a";
}

.ion-ios-pricetag:before {
    content: "\f48d";
}

.ion-ios-pricetag-outline:before {
    content: "\f48c";
}

.ion-ios-pricetags:before {
    content: "\f48f";
}

.ion-ios-pricetags-outline:before {
    content: "\f48e";
}

.ion-ios-printer:before {
    content: "\f491";
}

.ion-ios-printer-outline:before {
    content: "\f490";
}

.ion-ios-pulse:before {
    content: "\f493";
}

.ion-ios-pulse-strong:before {
    content: "\f492";
}

.ion-ios-rainy:before {
    content: "\f495";
}

.ion-ios-rainy-outline:before {
    content: "\f494";
}

.ion-ios-recording:before {
    content: "\f497";
}

.ion-ios-recording-outline:before {
    content: "\f496";
}

.ion-ios-redo:before {
    content: "\f499";
}

.ion-ios-redo-outline:before {
    content: "\f498";
}

.ion-ios-refresh:before {
    content: "\f49c";
}

.ion-ios-refresh-empty:before {
    content: "\f49a";
}

.ion-ios-refresh-outline:before {
    content: "\f49b";
}

.ion-ios-reload:before {
    content: "\f49d";
}

.ion-ios-reverse-camera:before {
    content: "\f49f";
}

.ion-ios-reverse-camera-outline:before {
    content: "\f49e";
}

.ion-ios-rewind:before {
    content: "\f4a1";
}

.ion-ios-rewind-outline:before {
    content: "\f4a0";
}

.ion-ios-rose:before {
    content: "\f4a3";
}

.ion-ios-rose-outline:before {
    content: "\f4a2";
}

.ion-ios-search:before {
    content: "\f4a5";
}

.ion-ios-search-strong:before {
    content: "\f4a4";
}

.ion-ios-settings:before {
    content: "\f4a7";
}

.ion-ios-settings-strong:before {
    content: "\f4a6";
}

.ion-ios-shuffle:before {
    content: "\f4a9";
}

.ion-ios-shuffle-strong:before {
    content: "\f4a8";
}

.ion-ios-skipbackward:before {
    content: "\f4ab";
}

.ion-ios-skipbackward-outline:before {
    content: "\f4aa";
}

.ion-ios-skipforward:before {
    content: "\f4ad";
}

.ion-ios-skipforward-outline:before {
    content: "\f4ac";
}

.ion-ios-snowy:before {
    content: "\f4ae";
}

.ion-ios-speedometer:before {
    content: "\f4b0";
}

.ion-ios-speedometer-outline:before {
    content: "\f4af";
}

.ion-ios-star:before {
    content: "\f4b3";
}

.ion-ios-star-half:before {
    content: "\f4b1";
}

.ion-ios-star-outline:before {
    content: "\f4b2";
}

.ion-ios-stopwatch:before {
    content: "\f4b5";
}

.ion-ios-stopwatch-outline:before {
    content: "\f4b4";
}

.ion-ios-sunny:before {
    content: "\f4b7";
}

.ion-ios-sunny-outline:before {
    content: "\f4b6";
}

.ion-ios-telephone:before {
    content: "\f4b9";
}

.ion-ios-telephone-outline:before {
    content: "\f4b8";
}

.ion-ios-tennisball:before {
    content: "\f4bb";
}

.ion-ios-tennisball-outline:before {
    content: "\f4ba";
}

.ion-ios-thunderstorm:before {
    content: "\f4bd";
}

.ion-ios-thunderstorm-outline:before {
    content: "\f4bc";
}

.ion-ios-time:before {
    content: "\f4bf";
}

.ion-ios-time-outline:before {
    content: "\f4be";
}

.ion-ios-timer:before {
    content: "\f4c1";
}

.ion-ios-timer-outline:before {
    content: "\f4c0";
}

.ion-ios-toggle:before {
    content: "\f4c3";
}

.ion-ios-toggle-outline:before {
    content: "\f4c2";
}

.ion-ios-trash:before {
    content: "\f4c5";
}

.ion-ios-trash-outline:before {
    content: "\f4c4";
}

.ion-ios-undo:before {
    content: "\f4c7";
}

.ion-ios-undo-outline:before {
    content: "\f4c6";
}

.ion-ios-unlocked:before {
    content: "\f4c9";
}

.ion-ios-unlocked-outline:before {
    content: "\f4c8";
}

.ion-ios-upload:before {
    content: "\f4cb";
}

.ion-ios-upload-outline:before {
    content: "\f4ca";
}

.ion-ios-videocam:before {
    content: "\f4cd";
}

.ion-ios-videocam-outline:before {
    content: "\f4cc";
}

.ion-ios-volume-high:before {
    content: "\f4ce";
}

.ion-ios-volume-low:before {
    content: "\f4cf";
}

.ion-ios-wineglass:before {
    content: "\f4d1";
}

.ion-ios-wineglass-outline:before {
    content: "\f4d0";
}

.ion-ios-world:before {
    content: "\f4d3";
}

.ion-ios-world-outline:before {
    content: "\f4d2";
}

.ion-ipad:before {
    content: "\f1f9";
}

.ion-iphone:before {
    content: "\f1fa";
}

.ion-ipod:before {
    content: "\f1fb";
}

.ion-jet:before {
    content: "\f295";
}

.ion-key:before {
    content: "\f296";
}

.ion-knife:before {
    content: "\f297";
}

.ion-laptop:before {
    content: "\f1fc";
}

.ion-leaf:before {
    content: "\f1fd";
}

.ion-levels:before {
    content: "\f298";
}

.ion-lightbulb:before {
    content: "\f299";
}

.ion-link:before {
    content: "\f1fe";
}

.ion-load-a:before {
    content: "\f29a";
}

.ion-load-b:before {
    content: "\f29b";
}

.ion-load-c:before {
    content: "\f29c";
}

.ion-load-d:before {
    content: "\f29d";
}

.ion-location:before {
    content: "\f1ff";
}

.ion-lock-combination:before {
    content: "\f4d4";
}

.ion-locked:before {
    content: "\f200";
}

.ion-log-in:before {
    content: "\f29e";
}

.ion-log-out:before {
    content: "\f29f";
}

.ion-loop:before {
    content: "\f201";
}

.ion-magnet:before {
    content: "\f2a0";
}

.ion-male:before {
    content: "\f2a1";
}

.ion-man:before {
    content: "\f202";
}

.ion-map:before {
    content: "\f203";
}

.ion-medkit:before {
    content: "\f2a2";
}

.ion-merge:before {
    content: "\f33f";
}

.ion-mic-a:before {
    content: "\f204";
}

.ion-mic-b:before {
    content: "\f205";
}

.ion-mic-c:before {
    content: "\f206";
}

.ion-minus:before {
    content: "\f209";
}

.ion-minus-circled:before {
    content: "\f207";
}

.ion-minus-round:before {
    content: "\f208";
}

.ion-model-s:before {
    content: "\f2c1";
}

.ion-monitor:before {
    content: "\f20a";
}

.ion-more:before {
    content: "\f20b";
}

.ion-mouse:before {
    content: "\f340";
}

.ion-music-note:before {
    content: "\f20c";
}

.ion-navicon:before {
    content: "\f20e";
}

.ion-navicon-round:before {
    content: "\f20d";
}

.ion-navigate:before {
    content: "\f2a3";
}

.ion-network:before {
    content: "\f341";
}

.ion-no-smoking:before {
    content: "\f2c2";
}

.ion-nuclear:before {
    content: "\f2a4";
}

.ion-outlet:before {
    content: "\f342";
}

.ion-paintbrush:before {
    content: "\f4d5";
}

.ion-paintbucket:before {
    content: "\f4d6";
}

.ion-paper-airplane:before {
    content: "\f2c3";
}

.ion-paperclip:before {
    content: "\f20f";
}

.ion-pause:before {
    content: "\f210";
}

.ion-person:before {
    content: "\f213";
}

.ion-person-add:before {
    content: "\f211";
}

.ion-person-stalker:before {
    content: "\f212";
}

.ion-pie-graph:before {
    content: "\f2a5";
}

.ion-pin:before {
    content: "\f2a6";
}

.ion-pinpoint:before {
    content: "\f2a7";
}

.ion-pizza:before {
    content: "\f2a8";
}

.ion-plane:before {
    content: "\f214";
}

.ion-planet:before {
    content: "\f343";
}

.ion-play:before {
    content: "\f215";
}

.ion-playstation:before {
    content: "\f30a";
}

.ion-plus:before {
    content: "\f218";
}

.ion-plus-circled:before {
    content: "\f216";
}

.ion-plus-round:before {
    content: "\f217";
}

.ion-podium:before {
    content: "\f344";
}

.ion-pound:before {
    content: "\f219";
}

.ion-power:before {
    content: "\f2a9";
}

.ion-pricetag:before {
    content: "\f2aa";
}

.ion-pricetags:before {
    content: "\f2ab";
}

.ion-printer:before {
    content: "\f21a";
}

.ion-pull-request:before {
    content: "\f345";
}

.ion-qr-scanner:before {
    content: "\f346";
}

.ion-quote:before {
    content: "\f347";
}

.ion-radio-waves:before {
    content: "\f2ac";
}

.ion-record:before {
    content: "\f21b";
}

.ion-refresh:before {
    content: "\f21c";
}

.ion-reply:before {
    content: "\f21e";
}

.ion-reply-all:before {
    content: "\f21d";
}

.ion-ribbon-a:before {
    content: "\f348";
}

.ion-ribbon-b:before {
    content: "\f349";
}

.ion-sad:before {
    content: "\f34a";
}

.ion-sad-outline:before {
    content: "\f4d7";
}

.ion-scissors:before {
    content: "\f34b";
}

.ion-search:before {
    content: "\f21f";
}

.ion-settings:before {
    content: "\f2ad";
}

.ion-share:before {
    content: "\f220";
}

.ion-shuffle:before {
    content: "\f221";
}

.ion-skip-backward:before {
    content: "\f222";
}

.ion-skip-forward:before {
    content: "\f223";
}

.ion-social-android:before {
    content: "\f225";
}

.ion-social-android-outline:before {
    content: "\f224";
}

.ion-social-angular:before {
    content: "\f4d9";
}

.ion-social-angular-outline:before {
    content: "\f4d8";
}

.ion-social-apple:before {
    content: "\f227";
}

.ion-social-apple-outline:before {
    content: "\f226";
}

.ion-social-bitcoin:before {
    content: "\f2af";
}

.ion-social-bitcoin-outline:before {
    content: "\f2ae";
}

.ion-social-buffer:before {
    content: "\f229";
}

.ion-social-buffer-outline:before {
    content: "\f228";
}

.ion-social-chrome:before {
    content: "\f4db";
}

.ion-social-chrome-outline:before {
    content: "\f4da";
}

.ion-social-codepen:before {
    content: "\f4dd";
}

.ion-social-codepen-outline:before {
    content: "\f4dc";
}

.ion-social-css3:before {
    content: "\f4df";
}

.ion-social-css3-outline:before {
    content: "\f4de";
}

.ion-social-designernews:before {
    content: "\f22b";
}

.ion-social-designernews-outline:before {
    content: "\f22a";
}

.ion-social-dribbble:before {
    content: "\f22d";
}

.ion-social-dribbble-outline:before {
    content: "\f22c";
}

.ion-social-dropbox:before {
    content: "\f22f";
}

.ion-social-dropbox-outline:before {
    content: "\f22e";
}

.ion-social-euro:before {
    content: "\f4e1";
}

.ion-social-euro-outline:before {
    content: "\f4e0";
}

.ion-social-facebook:before {
    content: "\f231";
}

.ion-social-facebook-outline:before {
    content: "\f230";
}

.ion-social-foursquare:before {
    content: "\f34d";
}

.ion-social-foursquare-outline:before {
    content: "\f34c";
}

.ion-social-freebsd-devil:before {
    content: "\f2c4";
}

.ion-social-github:before {
    content: "\f233";
}

.ion-social-github-outline:before {
    content: "\f232";
}

.ion-social-google:before {
    content: "\f34f";
}

.ion-social-google-outline:before {
    content: "\f34e";
}

.ion-social-googleplus:before {
    content: "\f235";
}

.ion-social-googleplus-outline:before {
    content: "\f234";
}

.ion-social-hackernews:before {
    content: "\f237";
}

.ion-social-hackernews-outline:before {
    content: "\f236";
}

.ion-social-html5:before {
    content: "\f4e3";
}

.ion-social-html5-outline:before {
    content: "\f4e2";
}

.ion-social-instagram:before {
    content: "\f351";
}

.ion-social-instagram-outline:before {
    content: "\f350";
}

.ion-social-javascript:before {
    content: "\f4e5";
}

.ion-social-javascript-outline:before {
    content: "\f4e4";
}

.ion-social-linkedin:before {
    content: "\f239";
}

.ion-social-linkedin-outline:before {
    content: "\f238";
}

.ion-social-markdown:before {
    content: "\f4e6";
}

.ion-social-nodejs:before {
    content: "\f4e7";
}

.ion-social-octocat:before {
    content: "\f4e8";
}

.ion-social-pinterest:before {
    content: "\f2b1";
}

.ion-social-pinterest-outline:before {
    content: "\f2b0";
}

.ion-social-python:before {
    content: "\f4e9";
}

.ion-social-reddit:before {
    content: "\f23b";
}

.ion-social-reddit-outline:before {
    content: "\f23a";
}

.ion-social-rss:before {
    content: "\f23d";
}

.ion-social-rss-outline:before {
    content: "\f23c";
}

.ion-social-sass:before {
    content: "\f4ea";
}

.ion-social-skype:before {
    content: "\f23f";
}

.ion-social-skype-outline:before {
    content: "\f23e";
}

.ion-social-snapchat:before {
    content: "\f4ec";
}

.ion-social-snapchat-outline:before {
    content: "\f4eb";
}

.ion-social-tumblr:before {
    content: "\f241";
}

.ion-social-tumblr-outline:before {
    content: "\f240";
}

.ion-social-tux:before {
    content: "\f2c5";
}

.ion-social-twitch:before {
    content: "\f4ee";
}

.ion-social-twitch-outline:before {
    content: "\f4ed";
}

.ion-social-twitter:before {
    content: "\f243";
}

.ion-social-twitter-outline:before {
    content: "\f242";
}

.ion-social-usd:before {
    content: "\f353";
}

.ion-social-usd-outline:before {
    content: "\f352";
}

.ion-social-vimeo:before {
    content: "\f245";
}

.ion-social-vimeo-outline:before {
    content: "\f244";
}

.ion-social-whatsapp:before {
    content: "\f4f0";
}

.ion-social-whatsapp-outline:before {
    content: "\f4ef";
}

.ion-social-windows:before {
    content: "\f247";
}

.ion-social-windows-outline:before {
    content: "\f246";
}

.ion-social-wordpress:before {
    content: "\f249";
}

.ion-social-wordpress-outline:before {
    content: "\f248";
}

.ion-social-yahoo:before {
    content: "\f24b";
}

.ion-social-yahoo-outline:before {
    content: "\f24a";
}

.ion-social-yen:before {
    content: "\f4f2";
}

.ion-social-yen-outline:before {
    content: "\f4f1";
}

.ion-social-youtube:before {
    content: "\f24d";
}

.ion-social-youtube-outline:before {
    content: "\f24c";
}

.ion-soup-can:before {
    content: "\f4f4";
}

.ion-soup-can-outline:before {
    content: "\f4f3";
}

.ion-speakerphone:before {
    content: "\f2b2";
}

.ion-speedometer:before {
    content: "\f2b3";
}

.ion-spoon:before {
    content: "\f2b4";
}

.ion-star:before {
    content: "\f24e";
}

.ion-stats-bars:before {
    content: "\f2b5";
}

.ion-steam:before {
    content: "\f30b";
}

.ion-stop:before {
    content: "\f24f";
}

.ion-thermometer:before {
    content: "\f2b6";
}

.ion-thumbsdown:before {
    content: "\f250";
}

.ion-thumbsup:before {
    content: "\f251";
}

.ion-toggle:before {
    content: "\f355";
}

.ion-toggle-filled:before {
    content: "\f354";
}

.ion-transgender:before {
    content: "\f4f5";
}

.ion-trash-a:before {
    content: "\f252";
}

.ion-trash-b:before {
    content: "\f253";
}

.ion-trophy:before {
    content: "\f356";
}

.ion-tshirt:before {
    content: "\f4f7";
}

.ion-tshirt-outline:before {
    content: "\f4f6";
}

.ion-umbrella:before {
    content: "\f2b7";
}

.ion-university:before {
    content: "\f357";
}

.ion-unlocked:before {
    content: "\f254";
}

.ion-upload:before {
    content: "\f255";
}

.ion-usb:before {
    content: "\f2b8";
}

.ion-videocamera:before {
    content: "\f256";
}

.ion-volume-high:before {
    content: "\f257";
}

.ion-volume-low:before {
    content: "\f258";
}

.ion-volume-medium:before {
    content: "\f259";
}

.ion-volume-mute:before {
    content: "\f25a";
}

.ion-wand:before {
    content: "\f358";
}

.ion-waterdrop:before {
    content: "\f25b";
}

.ion-wifi:before {
    content: "\f25c";
}

.ion-wineglass:before {
    content: "\f2b9";
}

.ion-woman:before {
    content: "\f25d";
}

.ion-wrench:before {
    content: "\f2ba";
}

.ion-xbox:before {
    content: "\f30c";
}


/**************** End ionicons.css ******************/


/**************** Start system_messages.css *******************/


/** system messag **/

.system_message {
    top: 20px;
    right: 20px;
    position: fixed;
    z-index: 1000;
}

.system_message .closeMsg,
#mbsmessagex .close {
    padding: 0;
    font-size: 0;
    cursor: pointer;
    text-decoration: none;
    position: absolute;
    width: 25px;
    height: 25px;
    display: block;
    right: 10px;
    top: 6px;
    text-align: center;
    line-height: 25px;
    z-index: 1;
}

.system_message .closeMsg:before,
#mbsmessagex .close:before {
    content: "\f129";
    font-family: "Ionicons";
    font-size: 16px;
    color: #fff;
}

.div_error {
    text-align: left;
    font-weight: 700;
    min-width: 400px;
    max-width: 500px;
    box-shadow: 0 0 5px rgba(51, 51, 51, 0.5), inset 0 -1px 0 rgba(255, 255, 255, .2);
    background-size: 40px 40px;
    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);
    border: 1px solid;
    color: #fff;
    padding: 10px 40px 10px 15px;
    font-size: 16px;
    position: relative;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .5);
    -webkit-animation: animate_bg 2s linear infinite;
    animation: animate_bg 2s linear infinite;
    background-color: #fa6561;
    border-color: #de2b26;
}

.div_error ul {
    display: block;
    vertical-align: middle;
    margin: 10px 0 0;
    list-style: none;
}

.div_error li {
    font-weight: normal;
    font-size: 13px;
    color: #fff;
    position: relative;
    padding: 0 0 5px 20px;
}

.div_error li a {
    font-weight: normal;
    color: #fff;
    position: relative;
    text-decoration: none;
    cursor: default;
}

.div_error li:before {
    content: "\f100";
    font-size: 15px;
    color: #fff;
    font-family: "Ionicons";
    line-height: 1;
    position: absolute;
    left: -2px;
    top: 1px;
    text-shadow: none;
}

@-webkit-keyframes animate_bg {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -80px 0;
    }
}

@-moz-keyframes animate_bg {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -80px 0;
    }
}

@keyframes animate_bg {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -80px 0;
    }
}

.div_msg,
#mbsmessagex {
    font-weight: 700;
    min-width: 400px;
    max-width: 500px;
    box-shadow: 0 0 5px rgba(51, 51, 51, 0.5), inset 0 -1px 0 rgba(255, 255, 255, .2);
    background-size: 40px 40px;
    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);
    border: 1px solid;
    color: #fff;
    padding: 10px 40px 10px 15px;
    font-size: 16px;
    position: relative;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .5);
    -webkit-animation: animate_bg_green 2s linear infinite;
    animation: animate_bg_green 2s linear infinite;
    background-color: #61ba74;
    border-color: #3d9450;
}

.div_msg ul {
    display: block;
    vertical-align: middle;
    list-style: none;
    margin: 10px 0 0;
}

.div_msg li {
    font-weight: normal;
    font-size: 13px;
    position: relative;
    padding: 0 0 5px 20px;
    color: #fff;
}

.div_msg li a {
    font-weight: normal;
    font-size: 13px;
    text-decoration: none;
    color: #fff;
    cursor: default;
}

.div_msg li:before {
    width: 3px;
    height: 12px;
    background: #fff;
    position: absolute;
    left: 5px;
    bottom: 8px;
    content: "";
    -webkit-transform: rotate(44deg);
    -moz-transform: rotate(44deg);
    -ms-transform: rotate(44deg);
    -o-transform: rotate(44deg);
    transform: rotate(44deg);
}

.div_msg li:after {
    width: 3px;
    height: 7px;
    background: #fff;
    position: absolute;
    left: -1px;
    bottom: 8px;
    content: "";
    -webkit-transform: rotate(-55deg);
    -moz-transform: rotate(-55deg);
    -ms-transform: rotate(-55deg);
    -o-transform: rotate(-55deg);
    transform: rotate(-55deg);
}

@-webkit-keyframes animate_bg_green {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -80px 0;
    }
}

@-moz-keyframes animate_bg_green {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -80px 0;
    }
}

@keyframes animate_bg_green {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -80px 0;
    }
}

#mbsmessagex {
    top: 80px;
    right: 20px;
    position: fixed;
    z-index: 1000;
}


/* validation error messages */

.error {
    border-color: #f25454!important;
}

.errorlist {
    margin: 0;
    list-style: none;
    padding: 2px 10px 4px;
    position: relative;
    background: #fdf7f6;
}

.errorlist li:before {
    content: "\f100";
    font-size: 15px;
    color: #f44336;
    font-family: "Ionicons";
    line-height: 1;
    position: absolute;
    left: 0;
    top: 0;
}

.errorlist li a {
    color: #f44336;
    font-size: 12px;
    text-transform: none;
    text-decoration: none;
}

.errorlist li:last-child {
    padding-bottom: 0;
}

.errorlist li {
    font-size: 12px;
    position: relative;
    padding: 0 0 0 20px;
}

@media only screen and (max-width:990px) {
    .system_message,
    #mbsmessagex {
        left: 10px;
        right: 10px;
        top: 10px;
    }
    .div_msg,
    .div_error,
    #mbsmessagex {
        font-size: 14px;
        min-width: 1%;
        padding: 8px 35px 8px 8px;
        width: 100%;
        min-width: 1%;
        max-width: 100%;
    }
}

.text-danger {
    color: #F00;
}


/**************** End system_messages.css *******************/


/*********** Start animate.css ***************/

@charset "UTF-8";

/*! Animate.css - http://daneden.me/animate Licensed under the MIT license - http://opensource.org/licenses/MIT Copyright (c) 2015 Daniel Eden */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}

@-webkit-keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    0%,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

@keyframes shake {
    0%,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    100% {
        opacity: 0;
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    100% {
        opacity: 0;
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}


/************** End animate.css **********************/


/*********** Start jquery.datetimepicker.css.css ***************/

.xdsoft_datetimepicker {
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.506);
    background: #FFFFFF;
    border-bottom: 1px solid #BBBBBB;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    border-top: 1px solid #CCCCCC;
    color: #333333;
    font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    padding: 8px;
    padding-left: 0;
    padding-top: 2px;
    position: absolute;
    z-index: 999999;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
}

.xdsoft_datetimepicker iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 75px;
    height: 210px;
    background: transparent;
    border: none;
}


/*For IE8 or lower*/

.xdsoft_datetimepicker button {
    border: none !important;
}

.xdsoft_noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.xdsoft_noselect::selection {
    background: transparent;
}

.xdsoft_noselect::-moz-selection {
    background: transparent;
}

.xdsoft_datetimepicker.xdsoft_inline {
    display: inline-block;
    position: static;
    box-shadow: none;
}

.xdsoft_datetimepicker * {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.xdsoft_datetimepicker .xdsoft_datepicker,
.xdsoft_datetimepicker .xdsoft_timepicker {
    display: none;
}

.xdsoft_datetimepicker .xdsoft_datepicker.active,
.xdsoft_datetimepicker .xdsoft_timepicker.active {
    display: block;
}

.xdsoft_datetimepicker .xdsoft_datepicker {
    width: 224px;
    float: left;
    margin-left: 8px;
}

.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker {
    width: 256px;
}

.xdsoft_datetimepicker .xdsoft_timepicker {
    width: 58px;
    float: left;
    text-align: center;
    margin-left: 8px;
    margin-top: 0;
}

.xdsoft_datetimepicker .xdsoft_datepicker.active+.xdsoft_timepicker {
    margin-top: 8px;
    margin-bottom: 3px
}

.xdsoft_datetimepicker .xdsoft_mounthpicker {
    position: relative;
    text-align: center;
}

.xdsoft_datetimepicker .xdsoft_label i,
.xdsoft_datetimepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_next,
.xdsoft_datetimepicker .xdsoft_today_button {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC);
}

.xdsoft_datetimepicker .xdsoft_label i {
    opacity: 0.5;
    background-position: -92px -19px;
    display: inline-block;
    width: 9px;
    height: 20px;
    vertical-align: middle;
}

.xdsoft_datetimepicker .xdsoft_prev {
    float: left;
    background-position: -20px 0;
}

.xdsoft_datetimepicker .xdsoft_today_button {
    float: left;
    background-position: -70px 0;
    margin-left: 5px;
}

.xdsoft_datetimepicker .xdsoft_next {
    float: right;
    background-position: 0 0;
}

.xdsoft_datetimepicker .xdsoft_next,
.xdsoft_datetimepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_today_button {
    background-color: transparent;
    background-repeat: no-repeat;
    border: 0 none currentColor;
    cursor: pointer;
    display: block;
    height: 30px;
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    outline: medium none currentColor;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-indent: 100%;
    white-space: nowrap;
    width: 20px;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next {
    float: none;
    background-position: -40px -15px;
    height: 15px;
    width: 30px;
    display: block;
    margin-left: 14px;
    margin-top: 7px;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev {
    background-position: -40px 0;
    margin-bottom: 7px;
    margin-top: 0;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
    height: 151px;
    overflow: hidden;
    border-bottom: 1px solid #DDDDDD;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div {
    background: #F5F5F5;
    border-top: 1px solid #DDDDDD;
    color: #666666;
    font-size: 12px;
    text-align: center;
    border-collapse: collapse;
    cursor: pointer;
    border-bottom-width: 0;
    height: 25px;
    line-height: 25px;
}

.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div > div:first-child {
    border-top-width: 0;
}

.xdsoft_datetimepicker .xdsoft_today_button:hover,
.xdsoft_datetimepicker .xdsoft_next:hover,
.xdsoft_datetimepicker .xdsoft_prev:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.xdsoft_datetimepicker .xdsoft_label {
    display: inline;
    position: relative;
    z-index: 9999;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
    float: left;
    width: 182px;
    text-align: center;
    cursor: pointer;
}

.xdsoft_datetimepicker .xdsoft_label:hover>span {
    text-decoration: underline;
}

.xdsoft_datetimepicker .xdsoft_label:hover i {
    opacity: 1.0;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select {
    border: 1px solid #ccc;
    position: absolute;
    right: 0;
    top: 30px;
    z-index: 101;
    display: none;
    background: #fff;
    max-height: 160px;
    overflow-y: hidden;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect {
    right: -7px;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect {
    right: 2px;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
    color: #fff;
    background: #ff8000;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option {
    padding: 2px 10px 2px 5px;
    text-decoration: none !important;
}

.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
    background: #33AAFF;
    box-shadow: #178FE5 0 1px 3px 0 inset;
    color: #fff;
    font-weight: 700;
}

.xdsoft_datetimepicker .xdsoft_month {
    width: 100px;
    text-align: right;
}

.xdsoft_datetimepicker .xdsoft_calendar {
    clear: both;
}

.xdsoft_datetimepicker .xdsoft_year {
    width: 48px;
    margin-left: 5px;
}

.xdsoft_datetimepicker .xdsoft_calendar table {
    border-collapse: collapse;
    width: 100%;
}

.xdsoft_datetimepicker .xdsoft_calendar td > div {
    padding-right: 5px;
}

.xdsoft_datetimepicker .xdsoft_calendar th {
    height: 25px;
}

.xdsoft_datetimepicker .xdsoft_calendar td,
.xdsoft_datetimepicker .xdsoft_calendar th {
    width: 14.2857142%;
    background: #F5F5F5;
    border: 1px solid #DDDDDD;
    color: #666666;
    font-size: 12px;
    text-align: right;
    vertical-align: middle;
    padding: 0;
    border-collapse: collapse;
    cursor: pointer;
    height: 25px;
}

.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td,
.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th {
    width: 12.5%;
}

.xdsoft_datetimepicker .xdsoft_calendar th {
    background: #F1F1F1;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today {
    color: #33AAFF;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current {
    background: #33AAFF;
    box-shadow: #178FE5 0 1px 3px 0 inset;
    color: #fff;
    font-weight: 700;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled,
.xdsoft_datetimepicker .xdsoft_time_box >div >div.xdsoft_disabled {
    opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled {
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div:hover {
    color: #fff !important;
    background: #ff8000 !important;
    box-shadow: none !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_disabled:hover {
    color: inherit !important;
    background: inherit !important;
    box-shadow: inherit !important;
}

.xdsoft_datetimepicker .xdsoft_calendar th {
    font-weight: 700;
    text-align: center;
    color: #999;
    cursor: default;
}

.xdsoft_datetimepicker .xdsoft_copyright {
    color: #ccc !important;
    font-size: 10px;
    clear: both;
    float: none;
    margin-left: 8px;
}

.xdsoft_datetimepicker .xdsoft_copyright a {
    color: #eee !important;
}

.xdsoft_datetimepicker .xdsoft_copyright a:hover {
    color: #aaa !important;
}

.xdsoft_time_box {
    position: relative;
    border: 1px solid #ccc;
}

.xdsoft_scrollbar >.xdsoft_scroller {
    background: #ccc !important;
    height: 20px;
    border-radius: 3px;
}

.xdsoft_scrollbar {
    position: absolute;
    width: 7px;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
}

.xdsoft_scroller_box {
    position: relative;
}

.xdsoft_datetimepicker.xdsoft_dark {
    box-shadow: 0 5px 15px -5px rgba(255, 255, 255, 0.506);
    background: #000000;
    border-bottom: 1px solid #444444;
    border-left: 1px solid #333333;
    border-right: 1px solid #333333;
    border-top: 1px solid #333333;
    color: #cccccc;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box {
    border-bottom: 1px solid #222222;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div {
    background: #0a0a0a;
    border-top: 1px solid #222222;
    color: #999999;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label {
    background-color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select {
    border: 1px solid #333;
    background: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover {
    color: #000;
    background: #007fff;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current {
    background: #cc5500;
    box-shadow: #b03e00 0 1px 3px 0 inset;
    color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==);
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
    background: #0a0a0a;
    border: 1px solid #222222;
    1 color: #999999;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
    background: #0e0e0e;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today {
    color: #cc5500;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div.xdsoft_current {
    background: #cc5500;
    box-shadow: #b03e00 0 1px 3px 0 inset;
    color: #000;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover,
.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box >div >div:hover {
    color: #000 !important;
    background: #007fff !important;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th {
    color: #666;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright {
    color: #333 !important;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a {
    color: #111 !important;
}

.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover {
    color: #555 !important;
}

.xdsoft_dark .xdsoft_time_box {
    border: 1px solid #333;
}

.xdsoft_dark .xdsoft_scrollbar >.xdsoft_scroller {
    background: #333 !important;
}


/************** End animate.css **********************/


/************** Start cal-css/calendar-blue.css **********************/


/* The main calendar widget.  DIV containing a table. */

div.calendar {
    position: relative;
    z-index: 199;
}

.calendar,
.calendar table {
    border: 1px solid #556;
    font-size: 11px;
    color: #000;
    cursor: default;
    background: #eef;
    font-family: tahoma, verdana, sans-serif;
}


/* Header part -- contains navigation buttons and day names. */

.calendar .button {
    /* "<<", "<", ">", ">>" buttons have this class */
    text-align: center;
    /* They are the navigation buttons */
    padding: 2px;
    /* Make the buttons seem like they're pressing */
}

.calendar .nav {
    background: #778 url(menuarrow.gif) no-repeat 100% 100%;
}

.calendar thead .title {
    /* This holds the current "month, year" */
    font-weight: bold;
    /* Pressing it will take you to the current date */
    text-align: center;
    background: #fff;
    color: #000;
    padding: 2px;
}

.calendar thead .headrow {
    /* Row <TR> containing navigation buttons */
    background: #778;
    color: #fff;
}

.calendar thead .daynames {
    /* Row <TR> containing the day names */
    background: #bdf;
}

.calendar thead .name {
    /* Cells <TD> containing the day names */
    border-bottom: 1px solid #556;
    padding: 2px;
    text-align: center;
    color: #000;
}

.calendar thead .weekend {
    /* How a weekend day name shows in header */
    color: #a66;
}

.calendar thead .hilite {
    /* How do the buttons in header appear when hover */
    background-color: #aaf;
    color: #000;
    border: 1px solid #04f;
    padding: 1px;
}

.calendar thead .active {
    /* Active (pressed) buttons in header */
    background-color: #77c;
    padding: 2px 0px 0px 2px;
}


/* The body part -- contains all the days in month. */

.calendar tbody .day {
    /* Cells <TD> containing month days dates */
    width: 2em;
    color: #456;
    text-align: right;
    padding: 2px 4px 2px 2px;
}

.calendar tbody .day.othermonth {
    font-size: 80%;
    color: #bbb;
}

.calendar tbody .day.othermonth.oweekend {
    color: #fbb;
}

.calendar table .wn {
    padding: 2px 3px 2px 2px;
    border-right: 1px solid #000;
    background: #bdf;
}

.calendar tbody .rowhilite td {
    background: #def;
}

.calendar tbody .rowhilite td.wn {
    background: #eef;
}

.calendar tbody td.hilite {
    /* Hovered cells <TD> */
    background: #def;
    padding: 1px 3px 1px 1px;
    border: 1px solid #bbb;
}

.calendar tbody td.active {
    /* Active (pressed) cells <TD> */
    background: #cde;
    padding: 2px 2px 0px 2px;
}

.calendar tbody td.selected {
    /* Cell showing today date */
    font-weight: bold;
    border: 1px solid #000;
    padding: 1px 3px 1px 1px;
    background: #fff;
    color: #000;
}

.calendar tbody td.weekend {
    /* Cells showing weekend days */
    color: #a66;
}

.calendar tbody td.today {
    /* Cell showing selected date */
    font-weight: bold;
    color: #00f;
}

.calendar tbody .disabled {
    color: #999;
}

.calendar tbody .emptycell {
    /* Empty cells (the best is to hide them) */
    visibility: hidden;
}

.calendar tbody .emptyrow {
    /* Empty row (some months need less than 6 rows) */
    display: none;
}


/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow {
    /* The <TR> in footer (only one right now) */
    text-align: center;
    background: #556;
    color: #fff;
}

.calendar tfoot .ttip {
    /* Tooltip (status bar) cell <TD> */
    background: #fff;
    color: #445;
    border-top: 1px solid #556;
    padding: 1px;
}

.calendar tfoot .hilite {
    /* Hover style for buttons in footer */
    background: #aaf;
    border: 1px solid #04f;
    color: #000;
    padding: 1px;
}

.calendar tfoot .active {
    /* Active (pressed) style for buttons in footer */
    background: #77c;
    padding: 2px 0px 0px 2px;
}


/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
    position: absolute;
    display: none;
    top: 0px;
    left: 0px;
    width: 4em;
    cursor: default;
    border: 1px solid #655;
    background: #def;
    color: #000;
    font-size: 90%;
    z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
    text-align: center;
    padding: 1px;
}

.calendar .combo .label-IEfix {
    width: 4em;
}

.calendar .combo .hilite {
    background: #acf;
}

.calendar .combo .active {
    border-top: 1px solid #46a;
    border-bottom: 1px solid #46a;
    background: #eef;
    font-weight: bold;
}

.calendar td.time {
    border-top: 1px solid #000;
    padding: 1px 0px;
    text-align: center;
    background-color: #f4f0e8;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
    padding: 0px 3px 0px 4px;
    border: 1px solid #889;
    font-weight: bold;
    background-color: #fff;
}

.calendar td.time .ampm {
    text-align: center;
}

.calendar td.time .colon {
    padding: 0px 2px 0px 3px;
    font-weight: bold;
}

.calendar td.time span.hilite {
    border-color: #000;
    background-color: #667;
    color: #fff;
}

.calendar td.time span.active {
    border-color: #f00;
    background-color: #000;
    color: #0f0;
}


/************** End cal-css/calendar-blue.css **********************/


/***************** Start front_autocomplete.css ******************/


/*.container { width: 800px; margin: 0 auto; }*/

.autocomplete-suggestions {
    border: 1px solid #999;
    font-size: 14px;
    background: #FFF;
    cursor: default;
    overflow: auto;
    -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
    box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
}

.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    background: #fff;
}

.autocomplete-no-suggestion {
    padding: 2px 5px;
}

.autocomplete-selected {
    background: #F0F0F0;
}

.autocomplete-suggestions strong {
    font-weight: bold;
    color: #000;
}

.autocomplete-group {
    padding: 2px 5px;
}

.autocomplete-group strong {
    font-weight: bold;
    font-size: 16px;
    color: #000;
    display: block;
    border-bottom: 1px solid #000;
}


/***************** End front_autocomplete.css ******************/

.text-danger {
    color: #F00;
}

.text-danger a {
    color: #654AE1;
}


/* progress bar */

.progress-wrapper {
    border: 2px solid #E2E2E2;
    padding: 2px;
    position: relative;
    border-radius: 3px;
    margin: 10px 0;
    text-align: left;
    background: #fff;
    box-shadow: inset 1px 3px 6px rgba(0, 0, 0, 0.12);
    width: 100%;
    float: left;
}

.progress-wrapper .progress-bar {
    height: 7px;
    border-radius: 1px;
    background-color: #13A428;
    width: 0;
    box-shadow: inset 1px 1px 10px rgba(0, 0, 0, 0.11);
}

.progress-wrapper .status {
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    display: inline-block;
    color: #000000;
}

table#shipping td:first-child {
    padding: 15px;
}

#mbsmessage {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    z-index: 999;
}

#mbsmessage > div {
    background: #fff1a8;
    padding: 5px 10px;
    width: auto;
    display: inline-block;
    border-radius: 1px;
    font-size: 13px;
    border: solid 1px #fff1a8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

#mbsmessage .content {
    color: #000;
    font-weight: 600;
    display: inline-block;
}

#mbsmessage img.close {
    float: right;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
    margin-left: 15px;
    margin-top: 4px;
}

#mbsmessage .content a {
    text-decoration: underline;
}

#mbsmessage .content a:hover {
    text-decoration: none;
}

#frmStrengthPassword input[type="password"] {
    background: transparent;
    -webkit-transition: border .25s linear, color .25s linear;
    -moz-transition: border .25s linear, color .25s linear;
    -o-transition: border .25s linear, color .25s linear;
    transition: border .25s linear, color .25s linear;
    -webkit-backface-visibility: hidden;
    width: 100%;
}


/* #frmRegistration input[type="password"]:focus{ outline:0; }*/

#frmStrengthPassword {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

#check-password-result {
    position: relative;
    z-index: 1;
}

.strength_meter {
    position: absolute;
    left: 0px;
    top: 1px;
    width: 100%;
    height: 34px;
    z-index: -1;
    border-radius: 1px;
}

.button_strength {
    text-decoration: none;
    color: #FF3A59;
    font-size: 13px;
    float: left;
}

.strength_meter div {
    width: 0%;
    height: 34px;
    text-align: right;
    color: #000;
    line-height: 37px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding-right: 12px;
    border-radius: 2px;
}

.strength_meter div p {
    position: absolute;
    top: 36px;
    right: 0px;
    color: #FF3A59;
    font-size: 13px;
}

.password-text {
    float: right;
}

.veryweakpassword {
    background-color: #FFA0A0;
    border-color: #F04040!important;
    width: 25%!important;
}

.weakpassword {
    background-color: #FFB78C;
    border-color: #FF853C!important;
    width: 50%!important;
}

.mediumpassword {
    background-color: #FFEC8B;
    border-color: #FC0!important;
    width: 75%!important;
}

.strongpassword {
    background-color: #C3FF88;
    border-color: #8DFF1C!important;
    width: 100%!important;
}

.show {
    display: block !important;
}

.hide {
    display: none !important;
}

.a {
    background: #069 !important;
}

.b {
    background: #3F3 !important;
}

#facebox {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000;
    text-align: left;
}

#facebox .popup {
    position: relative;
}

#facebox table {
    border-collapse: collapse;
}

#facebox td {
    border-bottom: 0;
    /*padding: 0;*/
}

#facebox .body {
    background: #fff;
    max-width: 700px;
    /* border:5px solid #1cb049; */
    border-radius: 3px;
    min-height: 300px !important;
    /*display:block;*/
}

#facebox .loading {
    text-align: center;
}

#facebox .image {
    text-align: center;
}

#facebox img {
    border: 0;
    margin: 0;
}


/* #facebox .footer { border-top: 1px solid #DDDDDD; padding-top: 5px; margin-top: 10px; text-align: right; } */

#facebox_overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.facebox_hide {
    z-index: -100;
}

.facebox_overlayBG {
    background-color: #000;
    z-index: 1005;
}

#facebox .footer {
    position: absolute;
    top: 4px;
    right: 4px;
    margin: 0;
}

#facebox .close {
    /* background:#ef2d24; */
    width: 28px;
    height: 26px;
    position: relative;
    border-radius: 0;
    display: inline-block;
    padding: 4px 0;
    background: #fff;
    border-radius: 50%;
    border: solid 1px #ccc;
}

#facebox .close img {
    display: block!important;
    width: 12px;
    margin: 2px auto 0!important;
}

* html #facebox_overlay {
    /* ie6 hack */
    position: absolute;
    height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight: document.body.offsetHeight + 'px');
}

#facebox .body .content {
    margin: 0;
    padding: 25px;
    position: relative;
    /*  min-height:200px; border:1px solid #ccc;*/
    box-sizing: border-box;
    background: #fff;
    z-index: auto;
}


/* #facebox .body .content:before { left: 25px; right: 25px; position: absolute; top: -6px; content: ""; border-radius: 10px 10px 0 0; } #facebox .body .content:after { left: 25px; right: 25px; position: absolute; bottom: -6px; content: ""; border-radius: 0 0 10px 10px; } */

#facebox.profile-popup .body {
    min-width: 600px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    #facebox {
        left: 0!important;
        top: 0!important;
        right: 0;
        bottom: 0;
    }
    #facebox .body .content {
        padding: 10px;
    }
    #facebox.profile-popup .body {
        min-width: 280px!important;
    }
    #facebox.profile-popup .body .content {
        padding: 10px;
    }
    #facebox table {
        width: 100%!important;
    }
}


/*  Recaptcha Style Captcha  ======================= re-Captcha Style Captcha with php and jQuery  Created By: Zeeshan Rasool  URL : http://www.99Points.info  Get JQuery, PHP, AJAX, Codeigniter and MYSQL Tutorials and Demos on Blog */

#captcha-wrap {
    border: solid #870500 1px;
    width: 300px;
    -webkit-border-radius: 10px;
    float: left;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: #870500;
    text-align: left;
    padding: 3px;
    margin-top: 3px;
    height: auto;
    margin-left: 0px;
}

#captcha-wrap .captcha-box {
    -webkit-border-radius: 7px;
    background: #fff;
    -moz-border-radius: 7px;
    border-radius: 7px;
    text-align: center;
    border: solid #fff 1px;
}

#captcha-wrap .text-box {
    -webkit-border-radius: 7px;
    background: #ffdc73;
    -moz-border-radius: 7px;
    width: 160px;
    height: 52px;
    float: left;
    margin: 4px;
    border-radius: 7px;
    text-align: center;
    border: solid #ffdc73 1px;
}

.contact-us .text-box {
    height: 60px !important;
}

#captcha-wrap .text-box input {
    width: 90%;
    height: 25px;
}

#captcha-wrap .text-box label {
    color: #000000;
    font-family: helvetica, sans-serif;
    font-size: 12px;
    width: 150px;
    padding-top: 3px;
    padding-bottom: 0px;
}

#captcha-wrap .captcha-action {
    float: right;
    width: 117px;
    background: url(../images/logos.jpg) top right no-repeat;
    height: 44px;
    margin-top: 3px;
}

#captcha-wrap img#captcha-refresh {
    margin-top: 9px;
    border: solid #333333 1px;
    margin-right: 6px;
    cursor: pointer;
}

#captcha-code {
    border: none;
    line-height: normal;
    font-size: 13px;
    padding: 0px;
    margin-bottom: 14px;
}


/* Magnific Popup CSS */

.mfp-bg {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 100001;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    z-index: 10000;
    min-height: 300px !important;
    /*display:block;*/
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 700px;
    margin: 20px auto;
    border-radius: 8px;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: #fff;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 5px;
    top: 5px;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}


/* Main image in popup */

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}


/* The shadow behind the image */

.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

.mfp-content .wrapform {
    margin-bottom: 0;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
    /** * Remove all paddings around the image on small screen */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding: 6px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .mfp-content {
        padding: 0;
        margin: 0;
    }
    .mfp-content .content {
        margin: 0;
        padding-top: 30px;
    }
}

@import url(https://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;
}

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: #fff;
}


/* inpput */

input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

strong {
    font-weight: 700;
}

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: 14px;
    color: #333;
    line-height: 24px;
    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;
}


/* headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
    font-family: 'Ubuntu', sans-serif;
    text-transform: capitalize;
    color: #555;
    padding: 0 0 10px 0;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

button {
    outline: none;
}


/****************************************************** 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);
    }
}

.enterpage {
    background: #fff;
}

.pagewrapper {
    width: 100%;
    display: table;
    table-layout: fixed;
    height: 100%;
    position: absolute;
}

.pagewrapper .grid_1 {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    position: relative;
}

.pagewrapper .grid_1:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    content: "";
    background: rgba(33, 150, 243, 0.7);
    background-size: cover;
    background-attachment: fixed;
}

.pagewrapper .grid_2 {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}

.formcontainer {
    max-width: 500px;
    /*border: 1px solid #ddd; */
    padding: 20px 100px 20px 0;
    position: relative;
    margin: 0 auto;
    display: block;
    top: 50%;
    -ms-transform: translate(0, -50%);
    /* IE 9 */
    -webkit-transform: translate(0, -50%);
    /* Chrome, Safari, Opera */
    transform: translate(0, -50%);
    -ms-transition: all 200ms ease 0s;
    /* IE 9 */
    -webkit-transition: all 200ms ease 0s;
    /* Chrome, Safari, Opera */
    transition: all 200ms ease 0s;
}

.left .field_control {
    margin-left: 0;
}

.circlebutton input[type="submit"] {
    opacity: 0;
    padding: 0!important;
    width: 60px;
    height: 60px;
}

.circlebutton {
    text-decoration: none;
    background-color: #f44336;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
    text-align: center;
    line-height: 60px;
    position: absolute;
    right: -90px;
    top: 60px;
    border: none;
    cursor: pointer;
    font-size: 0;
}

.circlebutton:active,
.circlebutton:focus {
    background-color: #f44336;
}

.circlebutton:before {
    content: "\f30f";
    font-size: 30px;
    color: #fff;
    font-family: "Ionicons";
    position: absolute;
    left: 20px;
    top: 0px;
    -ms-transition: all 500ms ease 0s;
    /* IE 9 */
    -webkit-transition: all 500ms ease 0s;
    /* Chrome, Safari, Opera */
    transition: all 500ms ease 0s;
}

.circlebutton:hover:before {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
}


/* siteform */

.field_control {
    position: relative;
    margin: 20px 0;
    display: inline-block;
    width: 100%;
}

.field_label {
    position: absolute;
    top: 5px;
    left: 0;
    font-weight: 400;
    pointer-events: none;
    z-index: 1;
    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: -10px;
    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;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.field_control.active .field_cover:after {
    background: #2196f3;
    width: 100%;
}

.field_control.fieldicon {
    padding: 0 0 0 40px;
    position: relative;
    margin: 20px 0;
    display: inline-block;
    width: 100%;
}

.field_control.fieldicon input[type="text"],
.field_control.fieldicon input[type="password"] {
    padding: 0 0 0 25px;
}

.field_control.fieldicon.user:before {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    position: absolute;
    background: #dadada;
    text-align: center;
    line-height: 1.6;
    content: "\f47e";
    font-size: 24px;
    color: #fff;
    font-family: "Ionicons";
    left: 20px;
    top: 0;
    z-index: 1;
}

.field_control.fieldicon.mail:before {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    position: absolute;
    background: #dadada;
    text-align: center;
    line-height: 2;
    content: "\f2eb";
    font-size: 18px;
    color: #fff;
    font-family: "Ionicons";
    left: 20px;
    top: 0;
    z-index: 1;
}

.field_control.fieldicon.key:before {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    position: absolute;
    background: #dadada;
    text-align: center;
    line-height: 33px;
    content: "\f4c9";
    font-size: 20px;
    color: #fff;
    font-family: "Ionicons";
    left: 20px;
    top: 0;
    z-index: 1;
}

.field_control.fieldicon.secure:before {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    position: absolute;
    background: #dadada;
    text-align: center;
    line-height: 33px;
    content: "\f4c9";
    font-size: 20px;
    color: #fff;
    font-family: "Ionicons";
    left: 20px;
    top: 0;
    z-index: 1;
}

.field_control.fieldicon.secure input[type="text"] {
    padding-right: 180px;
}

.field_control.fieldicon .field_label {
    left: 65px;
}

.field_control.active.fieldicon.user:before {
    background: #2196f3;
}

.field_control.active.fieldicon.key:before {
    background: #2196f3;
}

.field_control.active.fieldicon.mail:before {
    background: #2196f3;
}

.field_control.active.fieldicon.secure:before {
    background: #2196f3;
}

.left .formcontainer h5 {
    padding-left: 20px;
}

.left .formcontainer h6 {
    padding-left: 20px;
    font-size: 14px;
}

.web_form {
    font-size: 13px;
    color: #959595;
    position: relative;
}

.web_form input[type="text"],
.web_form input[type="password"],
.web_form input[type="email"],
.web_form input[type="search"] {
    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;
}

.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;
}

.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;
}


.linkright {
    float: right;
    text-decoration: none;
    text-transform: uppercase;
    color: #f44336;
}

.linkleft {
    float: left;
    text-decoration: none;
    text-transform: uppercase;
    color: #f44336;
    margin-left: 25px;
}

.linkright:hover {
    color: #333;
}

.web_form label {
    text-transform: uppercase;
}

.web_form .leftlabel {
    float: left;
    margin: 0 0 0 25px;
}


/* 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;
}

.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;
}

.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);
}

.backlayer .logo {
    display: table;
    position: relative;
    z-index: 1;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    /* IE 9 */
    -webkit-transform: translate(-50%, -50%);
    /* Chrome, Safari, Opera */
    transform: translate(-50%, -50%);
}

.backlayer {
    height: 100%;
    position: absolute;
    width: 100%;
}

.backlayer .layerLeft {
    background-size: cover;
    background-position: 50% 50%;
    height: 100%;
    position: absolute;
    right: 0;
    width: 50%;
}

.backlayer .layerLeft:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    content: "";
    /*background: rgba(33,150,243,0.7);*/
    background: rgba(0, 0, 0, 0.80);
    background-size: cover;
    background-attachment: fixed;
}

.backlayer .layerRight {
    background-size: cover;
    background-position: 50% 50%;
    height: 100%;
    left: 0;
    position: absolute;
    width: 50%;
}

.login100-form-btn
{

font-size: 14px;
    border-radius: 3px;
    display: inline-block;
    padding: 10px 52px;
    border: 0 none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    vertical-align: middle;
    border: none;
    /* background: #0099cc; */
    color: #fff;
    background: linear-gradient(to right, #208ae9 , #03d4e1);
    border-radius: 19px;	
}
.backlayer .layerRight:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    content: "";
   
    background-size: cover;
    background-attachment: fixed;
}

.innerpanel {
    height: 100%;
    left: -100%;
    position: relative;
    width: 200%;
}

.left {
    background: #2c3034;
    height: 100%;
    left: 0;
    position: absolute;
    width: 50%;
    background: #fff;
    z-index: 1;
}

.right {
    height: 100%;
    position: absolute;
    right: 0;
    width: 50%;
    background: #fff;
    z-index: 1;
}

.panels {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    height: 100%;
    margin-left: 50%;
    max-height: 100%;
    overflow: hidden;
    position: absolute;
    width: 50%;
}

.backlayer .layerRight:after,
.backlayer .layerLeft:after {
    background: url("../images/pattern.png") repeat;
    content: "";
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.mandatory {
    color: red;
}

.field_cover .captchapic {
    position: absolute;
    width: 130px;
    top: 0;
    right: 40px;
    opacity: 0.5;
    margin: 0;
}

.field_cover .reloadlink {
    position: absolute;
    top: 0;
    right: 0;
}

.captchapic {
    display: inline-block;
    vertical-align: top;
    margin: 2px 0 0 0;
}

.reloadlink {
    display: inline-block;
    vertical-align: top;
    position: relative;
    text-decoration: none;
    margin: 0 0 0 10px;
    line-height: 1;
}

.reloadlink:before {
    content: "\f49a";
    font-family: "Ionicons";
    font-size: 30px;
    color: #999;
}

.reloadlink:hover:before {
    color: #333;
}

.field_cover .errorlist {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #f44336;
    padding: 6px 10px;
}

.field_control.error.fieldicon.mail:before {
    background: #f44336;
}

.field_control.error.fieldicon.user:before {
    background: #f44336;
}

.field_control.error.fieldicon.key:before {
    background: #f44336;
}

.field_control.error.fieldicon.secure:before {
    background: #f44336;
}

.field_control.error .field_cover:after {
    background: #f44336;
    width: 100%;
}

.field_cover .errorlist ul {
    margin: 10px 0;
}

.field_cover .errorlist li {
    font-size: 12px;
    position: relative;
    padding: 0 0 0 20px;
}

.field_cover .errorlist li:before {
    content: "\f100";
    font-size: 15px;
    color: #fff;
    font-family: "Ionicons";
    line-height: 1;
    position: absolute;
    left: 0;
    top: 0;
}

.field_cover .errorlist li a {
    color: #fff!important;
    font-size: 12px;
    text-transform: none;
    text-decoration: none;
}

.field_cover .errorlist li:last-child {
    padding-bottom: 0;
}


/** media queries **/

@media only screen and (max-width:990px) {
    .backlayer .layerLeft {
        width: 100%;
        height: 240px;
    }
    .backlayer .layerRight {
        display: none;
    }
    .panels {
        margin-left: 0;
        width: 100%;
        height: 100%;
        padding-top: 240px;
		background: white;
        position: relative;
        overflow: visible;
        box-shadow: none;
    }
    .innerpanel {
        height: 100%;
        left: 0;
        width: 100%;
        position: relative;
    }
    .left {
        height: 100%;
        width: 100%;
        position: absolute;
        opacity: 0;
        left: 0;
        right: 0;
        transform: translate3d(-300px, 0px, 0px);
        -ms-transform: translate3d(-300px, 0px, 0px);
        /* IE 9 */
        -webkit-transform: translate3d(-300px, 0px, 0px);
        /* Chrome, Safari, Opera */
        transform: translate3d(-300px, 0px, 0px);
        -webkit-transition: all 300ms ease 0s;
        -o-transition: all 300ms ease 0s;
        transition: all 300ms ease 0s;
    }
    body.active-left .left {
        opacity: 1;
        transform: translate3d(0px, 0px, 0px);
        -ms-transform: translate3d(0px, 0px, 0px);
        /* IE 9 */
        -webkit-transform: translate3d(0px, 0px, 0px);
        /* Chrome, Safari, Opera */
    }
    body.active-left .right {
        opacity: 0;
        transform: translate3d(-300px, 0px, 0px);
        -ms-transform: translate3d(-300px, 0px, 0px);
        /* IE 9 */
        -webkit-transform: translate3d(-300px, 0px, 0px);
        /* Chrome, Safari, Opera */
        transform: translate3d(-300px, 0px, 0px);
        -webkit-transition: all 300ms ease 0s;
        -o-transition: all 300ms ease 0s;
        transition: all 300ms ease 0s;
        visibility: hidden;
    }
    .right {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        transform: translate3d(0, 0px, 0px);
        -ms-transform: translate3d(0, 0px, 0px);
        /* IE 9 */
        -webkit-transform: translate3d(0, 0px, 0px);
        /* Chrome, Safari, Opera */
        transform: translate3d(0, 0px, 0px);
        -webkit-transition: all 300ms ease 0s;
        -o-transition: all 300ms ease 0s;
        transition: all 300ms ease 0s;
    }
    .formcontainer {
        top: 0;
        -ms-transform: translate(0, 0);
        /* IE 9 */
        -webkit-transform: translate(0, 0);
        /* Chrome, Safari, Opera */
        transform: translate(0, 0);
    }
    .backlayer .logo img {
        width: 180px;
    }
    .formcontainer {
        padding: 10px;
    }
    .field_control.fieldicon.user:before {
        left: 0;
    }
    .field_control.fieldicon.key:before {
        left: 0;
    }
    .field_control.fieldicon.mail:before {
        left: 0;
    }
    .field_control.fieldicon.secure:before {
        left: 0;
    }
    .field_control.fieldicon .field_label {
        left: 45px;
    }
    .field_control.fieldicon {
        padding-left: 20px;
        margin: 15px 0;
    }
    .circlebutton {
        position: relative;
        right: 0;
        top: 0;
        display: block;
        overflow: hidden;
        width: 100%;
        border-radius: 3px;
        height: 35px;
        font-size: 14px;
        text-transform: uppercase;
        color: #fff;
        line-height: 35px;
    }
    .circlebutton:before {
        display: none;
    }
    .web_form .leftlabel {
        margin-left: 0px;
    }
    .web_form {
        font-size: 11px;
    }
    .field_label {
        top: 8px;
    }
    .field_control {
        margin: 10px 0;
    }
   
   
    .left .formcontainer h6,
    .left .formcontainer h5 {
        padding-left: 0;
        text-align: center;
    }
    .left .formcontainer h5 {
        font-size: 18px;
    }
    .left .formcontainer h6 {
        font-size: 12px;
    }
    /*.field_cover .captchapic, .field_cover .reloadlink{position: static; margin: 10px 0 0;}*/
    .field_cover .captchapic {
        width: 100px;
        right: 20px;
    }
    #moveright.linkslide {
        display: block;
        margin: 10px 0 0;
        float: none;
        text-align: center;
    }
    .errorlist li a {
        font-size: 10px;
    }
    .field_cover .errorlist {
        padding: 6px;
    }
    .field_label,
    .field_control.active .field_label {
        position: absolute;
    }
}