/*----------------------------

[Table of contents]

1. Custom variables

2. Custom web fonts

3. Sass mixins

4. Body

5. Margins & Paddings

6. Text/Font styles

7. Spacings

8. Background colors

9. Graph heights

10. Header styles

		10.1. Logo / Header actions / Support / Custom search

11. Navbar CSS

12. Dashboard wrapper

13. Mian container

14. Left sidebar
		14.1. Panel / Actions

15. Top bar
		15.1. Page title / Sales stats

16. Widgets - Components
		16.1 	Visitors Stats / Select Date Range Radio Buttons / Activity / Sales Block
					Links / Traffic Sources / Views / Contributions
					Tags / Global VS Local / Todo Container
					Messages Dropdown / Tasks / Users List
					Users Online / Messages / Top Clients
					User Profile / Project Activity / Articles / Social Buttons

17. Footer
		17.1. Scroll Up

18. Plugins Overwrite

19. Loading

20. Icon Sizes

21. Invoice Page

22. Bootstrap Overwrite CSS

----------------*/


/*************** 1. Custom Variables ***************/


/*************** 2. Custom Web Fonts ***************/

@font-face {
    font-family: 'open_sansbold';
    src: url("../fonts/opensans/opensans-bold-webfont.woff2") format("woff2"), url("../fonts/opensans/opensans-bold-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sanslight';
    src: url("../fonts/opensans/opensans-light-webfont.woff2") format("woff2"), url("../fonts/opensans/opensans-light-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansregular';
    src: url("../fonts/opensans/opensans-regular-webfont.woff2") format("woff2"), url("../fonts/opensans/opensans-regular-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sanssemibold';
    src: url("../fonts/opensans/opensans-semibold-webfont.woff2") format("woff2"), url("../fonts/opensans/opensans-semibold-webfont.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}


/*************** 3. Sass Mixins ***************/


/*************** 4. Body CSS ***************/

html {
    height: 100%;
}

body {
    min-height: 100%;
    position: relative;
}

body {
    margin: 0;
    font: normal 13px 'open_sansregular', sans-serif;
    line-height: 18px;
    color: #333333;
    /*background: #e8eff9;*/
    background: #cddde8;
}

a {
    color: #333333;
    text-decoration: none;
}

a:hover {
    color: #000000;
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
    color: #000000;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ul.default {
    margin: inherit;
    padding: 0 30px;
    list-style-type: inherit;
}

ul.default ul {
    list-style-type: circle;
}

ul.default ul ul {
    list-style-type: square;
}

ul.custom-bullets {
    padding-left: 20px;
}

ul.custom-bullets li:before {
    color: red;
    content: "\2022";
    font-size: 30px;
    width: 20px;
    height: 20px;
}

hr {
    margin-top: 10px;
    margin-bottom: 10px;
    border-top: 1px solid #e3ebf4;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'open_sansregular';
    padding: 0;
}


/*************** 5. Margins & Paddings ***************/

.no-margin {
    margin: 0;
}

.no-padding {
    padding: 0;
}

.auto-margin {
    margin: auto;
}

.padding-10 {
    padding: 10px;
}

.padding-15 {
    padding: 15px;
}


/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/


/* HELPERS - MARGINS &  PADDINGS*/


/*================================================*/

.m-auto {
    margin: 0 auto !important;
}

.m-none {
    margin: 0 !important;
}

.m-xs {
    margin: 5px !important;
}

.m-sm {
    margin: 10px !important;
}

.m-md {
    margin: 15px !important;
}

.m-lg {
    margin: 20px !important;
}

.m-xl {
    margin: 25px !important;
}

.m-xlg {
    margin: 30px !important;
}

.mt-none {
    margin-top: 0 !important;
}

.mt-xs {
    margin-top: 5px !important;
}

.mt-sm {
    margin-top: 10px !important;
}

.mt-md {
    margin-top: 15px !important;
}

.mt-lg {
    margin-top: 20px !important;
}

.mt-xl {
    margin-top: 25px !important;
}

.mt-xlg {
    margin-top: 30px !important;
}

.mb-none {
    margin-bottom: 0 !important;
}

.mb-xs {
    margin-bottom: 5px !important;
}

.mb-sm {
    margin-bottom: 10px !important;
}

.mb-md {
    margin-bottom: 15px !important;
}

.mb-lg {
    margin-bottom: 20px !important;
}

.mb-xl {
    margin-bottom: 25px !important;
}

.mb-xlg {
    margin-bottom: 30px !important;
}

.ml-none {
    margin-left: 0 !important;
}

.ml-xs {
    margin-left: 5px !important;
}

.ml-sm {
    margin-left: 10px !important;
}

.ml-md {
    margin-left: 15px !important;
}

.ml-lg {
    margin-left: 20px !important;
}

.ml-xl {
    margin-left: 25px !important;
}

.ml-xlg {
    margin-left: 30px !important;
}

.mr-none {
    margin-right: 0 !important;
}

.mr-xs {
    margin-right: 5px !important;
}

.mr-sm {
    margin-right: 10px !important;
}

.mr-md {
    margin-right: 15px !important;
}

.mr-lg {
    margin-right: 20px !important;
}

.mr-xl {
    margin-right: 25px !important;
}

.mr-xlg {
    margin-right: 30px !important;
}

.mv-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.mv-xs {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.mv-sm {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.mv-md {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.mv-lg {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.mv-xl {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.mv-xlg {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.mh-none {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mh-xs {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.mh-sm {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.mh-md {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

.mh-lg {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.mh-xl {
    margin-left: 25px !important;
    margin-right: 25px !important;
}

.mh-xlg {
    margin-left: 30px !important;
    margin-right: 30px !important;
}

.p-none {
    padding: 0 !important;
}

.p-xs {
    padding: 5px !important;
}

.p-sm {
    padding: 10px !important;
}

.p-md {
    padding: 15px !important;
}

.p-lg {
    padding: 20px !important;
}

.p-xl {
    padding: 25px !important;
}

.p-xlg {
    padding: 30px !important;
}

.pt-none {
    padding-top: 0 !important;
}

.pt-xs {
    padding-top: 5px !important;
}

.pt-sm {
    padding-top: 10px !important;
}

.pt-md {
    padding-top: 15px !important;
}

.pt-lg {
    padding-top: 20px !important;
}

.pt-xl {
    padding-top: 25px !important;
}

.pt-xlg {
    padding-top: 30px !important;
}

.pb-none {
    padding-bottom: 0 !important;
}

.pb-xs {
    padding-bottom: 5px !important;
}

.pb-sm {
    padding-bottom: 10px !important;
}

.pb-md {
    padding-bottom: 15px !important;
}

.pb-lg {
    padding-bottom: 20px !important;
}

.pb-xl {
    padding-bottom: 25px !important;
}

.pb-xlg {
    padding-bottom: 30px !important;
}

.pl-none {
    padding-left: 0 !important;
}

.pl-xs {
    padding-left: 5px !important;
}

.pl-sm {
    padding-left: 10px !important;
}

.pl-md {
    padding-left: 15px !important;
}

.pl-lg {
    padding-left: 20px !important;
}

.pl-xl {
    padding-left: 25px !important;
}

.pl-xlg {
    padding-left: 30px !important;
}

.pr-none {
    padding-right: 0 !important;
}

.pr-xs {
    padding-right: 5px !important;
}

.pr-sm {
    padding-right: 10px !important;
}

.pr-md {
    padding-right: 15px !important;
}

.pr-lg {
    padding-right: 20px !important;
}

.pr-xl {
    padding-right: 25px !important;
}

.pr-xlg {
    padding-right: 30px !important;
}

.pv-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.pv-xs {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.pv-sm {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.pv-md {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.pv-lg {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.pv-xl {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.pv-xlg {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.ph-none {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.ph-xs {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.ph-sm {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.ph-md {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.ph-lg {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.ph-xl {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.ph-xlg {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.bg-none {
    background: none !important;
}

.b-none {
    border: 0 solid #ccc !important;
}


/*************** 6. Text Styles ***************/

.center-text {
    text-align: center;
}

.right-text {
    text-align: right;
}

.text-success {
    color: #3eb15b;
}

.text-danger {
    color: #ea423f;
}

.text-info {
    color: #2c6087;
}

.text-warning {
    color: #ffb400;
}

.text-brown {
    color: #8f6e5a;
}

.text-pink {
    color: #F782AA;
}

.text-white {
    color: #ffffff;
}

.text-grey {
    color: gray;
}

.text-light {
    color: #b3b3b3;
}


/*************** 7. Spacers ***************/

.spacer5 {
    height: 5px;
}

.spacer10 {
    height: 10px;
}

.spacer20 {
    height: 20px;
}

.spacer30 {
    height: 30px;
}


/*************** 8. Background Colors ***************/

.primary-bg {
    background: #2c6087;
}

.green-bg {
    background: #3eb15b;
}

.red-bg {
    background: #2c6087;
}

.dark-red-bg {
    background: #f35454;
}

.blue-bg {
    background: #2c6087;
}

.yellow-bg {
    background: #ffb400;
}

.mustard-bg {
    background: #e3b442;
}

.pink-bg {
    background: #F782AA;
}

.brown-bg {
    background: #8f6e5a;
}

.light-green-bg {
    background: #aed048;
}

.violet-bg {
    background: #c38fbb;
}

.teal-bg {
    background: #47BCC7;
}

.orange-bg {
    background: #ed6d49;
}

.grey-bg {
    background: #4d4d4d;
}

.dark-grey-bg {
    background: #333333;
}

.fb-bg {
    background: #e8eff9;
}

.tw-bg {
    background: #55ACEE;
}

.purple-bg {
    background: #500776;
}


/*************** 9. Chart Heights ***************/

.chart-height {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.chart-height1 {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.chart-height2 {
    position: relative;
    height: 170px;
    overflow: hidden;
}

.chart-height3 {
    position: relative;
    height: 235px;
    overflow: hidden;
}

.chart-height4 {
    position: relative;
    height: 245px;
    overflow: hidden;
}

.chart-height5 {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.chart-height6 {
    position: relative;
    height: 190px;
    overflow: hidden;
}


/*************** 10. Header / Logo / Actions / Support / Custom Search ***************/

header {
    padding: 0 15px;
    vertical-align: middle;
    margin-bottom: 10px;
    border-top: 3px solid #2c6087;
    /*background-color: #807e7e;*/
    background-color: #fbfafa;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.7);
}

@media (max-width: 767px) {
    header {
        padding: 0 20px;
        -webkit-border-radius: 3px 3px 0 0;
        -moz-border-radius: 3px 3px 0 0;
        border-radius: 3px 3px 0 0;
    }
}

.logo {
    margin: 7px 0;
    float: left;
}

.logo h4 {
    margin: 0;
    font-size: 18px;
    font-family: 'open_sansregular';
    color: #e6e6e6;
    line-height: 24px;
}

.logo h4 i {
    color: #3eb15b;
    font-size: 21px;
    margin-left: 2px;
    vertical-align: middle;
}

.logo img {
    max-width: 100%;
    margin: 0;
    /*    filter: brightness(0) invert(1);*/
}

ul#header-actions {
    margin: 0 0 0 10px;
}

ul#header-actions li.list-box {
    position: relative;
    cursor: pointer;
    float: left;
    text-align: center;
    line-height: 100%;
    vertical-align: middle;
}

ul#header-actions li.list-box a {
    padding: 14px 15px;
    display: block;
}

ul#header-actions li.list-box a .info-label {
    color: #ffffff;
    text-align: center;
    height: 28px;
    width: 28px;
    line-height: 28px;
    display: block;
    background: #3b3b3b;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

ul#header-actions li.list-box a .info-icon {
    text-align: center;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-shadow: 0 7px 5px #000000;
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 16px;
}

ul#header-actions li.list-box:hover {
    background: #2e2e2e;
}

ul#header-actions li.list-box:hover .info-label {
    background: #3b3b3b;
}

ul#header-actions li.list-box.open {
    background: #3b3b3b;
}

ul#header-actions li.list-box.open .info-label {
    background: #1a1a1a;
}

ul#header-actions li.list-box.user-admin {
    text-align: right;
    background: transparent;
}

ul#header-actions li.list-box.user-admin .admin-details {
    float: left;
    margin: 10px 10px 0 10px;
    color: #ffffff;
}

ul#header-actions li.list-box.user-admin .admin-details .name {
    line-height: 20px;
    color: #000;
}

ul#header-actions li.list-box.user-admin .admin-details .designation {
    font-size: 12px;
    color: #999999;
}

ul#header-actions li.list-box.user-admin .dropdown-menu {
    min-width: 215px;
    min-height: 180px;
    top: 42px;
    border: 2px solid #2c6087;
}

ul#header-actions li.list-box.user-admin .dropdown-menu .dropdown-content a {
    padding: 7px 12px;
    font-size: 12px;
    color: #000000;
}

ul#header-actions li.list-box.user-admin .dropdown-menu .dropdown-content a i {
    font-size: 21px;
    color: #ffffff;
    margin-right: 10px;
}

ul#header-actions li.list-box.user-admin .dropdown-menu .dropdown-content a:first-child {
    border-bottom: 1px solid #2c6087;
    background-color: #2c6087;
    color: #ffffff;
}

ul#header-actions li.list-box.user-admin .dropdown-menu .dropdown-content a:first-child:hover {
    background: #2c6087;
    color: #ffffff;
    border-bottom: 1px solid #2c6087;
}

ul#header-actions li.list-box.user-admin .dropdown-menu .dropdown-content a:first-child:hover i {
    color: #ffffff;
}

ul#header-actions li.list-box.user-admin a.dropdown-toggle {
    background: #2c6087;
    float: right;
    padding: 4px;
    text-align: center;
    margin-top: 8px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

ul#header-actions li.list-box.user-admin a.dropdown-toggle i {
    color: #ffffff;
    font-size: 30px;
}

ul#header-actions li.list-box:last-child a {
    padding-right: 0;
}

ul#header-actions .dropdown-menu {
    padding: 0;
    min-width: 320px;
    min-height: 210px;
    float: left;
    position: absolute;
    right: 0;
    top: 50px;
    left: inherit;
    border: 2px solid #3b3b3b;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

@media (max-width: 767px) {
    ul#header-actions li.list-box {
        display: none;
    }
    ul#header-actions li.list-box.user-admin {
        display: block;
    }
}

.dropdown-menu {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 0;
}

.dropdown-menu>li a:hover {
    background: #f5f8fb;
}

a.support {
    text-align: center;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    /*text-transform: uppercase;*/
    padding: 5px 10px;
    display: inline-block;
    margin: 16px 10px 0 30px;
    font-size: 12px;
    background: #2c6087;
    color: #ffffff;
    float: right;
    cursor: default;
}

@media (max-width: 767px) {
    a.support {
        display: none;
    }
}

.custom-search {
    margin: 9px auto 0 auto;
    position: relative;
    top: 0;
    line-height: 36px;
    float: right;
}

.custom-search ::-webkit-input-placeholder {
    color: #807e7e;
}

.custom-search :-moz-placeholder {
    color: #807e7e;
}

.custom-search ::-moz-placeholder {
    color: #807e7e;
}

.custom-search :-ms-input-placeholder {
    color: #807e7e;
}

.custom-search .search-query {
    padding: 7px 15px;
    margin-bottom: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    line-height: 20px;
    border: 1px solid #2aaf75;
    width: 240px;
}

.custom-search .search-query:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #333333;
    width: 280px;
}

.custom-search i {
    padding: 0 20px;
    height: 36px;
    line-height: 36px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff;
    border-left: 1px solid #2aaf75;
    font-size: 16px;
}

@media (max-width: 991px) {
    .custom-search {
        display: none;
    }
}


/*************** 11. Navbar ***************/

.navbar-default {
    border: none;
    background: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin: 0;
    min-height: 36px;
}

.navbar-default .navbar-toggle {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border-color: #2c6087;
    padding: 9px 12px;
    margin: 0;
    background: #2c6087;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #ffffff;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #2c6087;
    border-color: #2c6087;
}

.navbar-default .navbar-toggle:hover .icon-bar,
.navbar-default .navbar-toggle:focus .icon-bar {
    background-color: #ffffff;
}

.navbar-default .navbar-collapse {
    border-top: 0;
    padding: 0;
    box-shadow: none;
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
}

.navbar-default .navbar-nav>li {
    margin-right: 1px;
}

.navbar-default .navbar-nav>li>a {
    text-align: center;
    padding: 15px 20px;
    min-width: 110px;
    background: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'open_sanssemibold';
    color: #4d4d4d;
    -webkit-border-radius: 0 4px 0 0;
    -moz-border-radius: 0 4px 0 0;
    border-radius: 0 0 0 0;
}

.navbar-default .navbar-nav>li>a i {
    font-size: 21px;
    display: block;
    line-height: 20px;
    display: none;
}

.navbar-default .navbar-nav>li>a:hover {
    color: #ffffff;
    background: #2c6087;
}

.navbar-default .navbar-nav>li>a:hover i {
    color: #ffffff;
}

.navbar-default .navbar-nav>li>a .caret {
    position: absolute;
    font-family: 'icomoon';
    border: none;
    /*top: 10px;*/
}

.navbar-default .navbar-nav>li>a .caret:before {
    content: "\e313";
}

.navbar-default .navbar-nav>li>.dropdown-menu {
    border: 0;
    background: #2c6087;
}

.navbar-default .navbar-nav>li>.dropdown-menu li a {
    color: #ffffff;
    padding: 5px 15px;
    font-size: 13px;
}

.navbar-default .navbar-nav>li>.dropdown-menu li a:hover,
.navbar-default .navbar-nav>li>.dropdown-menu li a:focus {
    background: #e3a814;
    /* #75a7ef */
}

.navbar-default .navbar-nav>.open>a {
    color: #ffffff;
    background: #2c6087;
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
}

.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    color: #ffffff;
    background: #2c6087;
}

.navbar-default .navbar-nav>.open>a i {
    color: #ffffff;
}

.navbar-default .navbar-nav>.active>a {
    position: relative;
    background-color: #2c6087;
    /* #2c6087 */
    color: #ffffff;
}

.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    background-color: #2c6087;
    color: #ffffff;
}

.navbar-default .navbar-nav>.active>a i {
    color: #ffffff;
}

@media (min-width: 768px) {
    .navbar-default .navbar-nav>li:hover>a {
        color: #ffffff;
        background: #2c6087;
        /*background: -moz-linear-gradient(145deg, transparent 10%, #2c6087 10%);*/
        /*background: -webkit-linear-gradient(145deg, transparent 10%, #2c6087 10%);*/
        /*background: linear-gradient(145deg, transparent 10%, #2c6087 10%);*/
    }
    .navbar-default .navbar-nav>li:hover>.dropdown-menu {
        display: block;
    }
}

@media (min-width: 768px) {
    .navbar-default .navbar-nav>li {
        margin-right: 1px;
    }
    .navbar-default .navbar-nav>li>a {
        background: #ffffff;
        /*background: -moz-linear-gradient(145deg, transparent 10%, #ffffff 10%);*/
        /*background: -webkit-linear-gradient(145deg, transparent 10%, #ffffff 10%);*/
        /*background: linear-gradient(145deg, transparent 10%, #ffffff 10%);*/
    }
    .navbar-default .navbar-nav>li>a:hover {
        background: #2c6087;
        /*background: -moz-linear-gradient(145deg, transparent 10%, #2c6087 10%);*/
        /*background: -webkit-linear-gradient(145deg, transparent 10%, #2c6087 10%);*/
        /*background: linear-gradient(145deg, transparent 10%, #2c6087 10%);*/
    }
    .navbar-default .navbar-nav>.active>a {
        background: #2c6087;
        /*background: -moz-linear-gradient(145deg, transparent 10%, #2c6087 10%);*/
        /*background: -webkit-linear-gradient(145deg, transparent 10%, #2c6087 10%);*/
        /*background: linear-gradient(145deg, transparent 10%, #2c6087 10%);*/
    }
    .navbar-default .navbar-nav>.active>a:hover {
        background: #2c6087;
        /*background: -moz-linear-gradient(145deg, transparent 10%, #2c6087 10%);*/
        /*background: -webkit-linear-gradient(145deg, transparent 10%, #2c6087 10%);*/
        /*background: linear-gradient(145deg, transparent 10%, #2c6087 10%);*/
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-default .navbar-nav>li a {
        padding: 8px 12px;
        min-width: 92px;
    }
}

@media (max-width: 767px) {
    .navbar {
        position: inherit;
        top: 0;
    }
    .navbar-default .navbar-collapse {
        padding: 0 15px;
    }
    .navbar-default .navbar-nav>li a {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        text-align: left;
        margin-right: 0;
        padding: 10px 15px;
    }
    .navbar-default .navbar-nav>li a i {
        float: left;
        margin-right: 10px;
    }
    .navbar-default .navbar-nav>li a .caret {
        top: 12px;
        right: 30px;
    }
    .navbar-default .navbar-nav>li a:focus {
        background-color: #2c6087;
        color: #ffffff;
    }
    .navbar-default .navbar-nav>li.active {
        border-bottom: 1px solid #2c6087;
    }
    .navbar-default .navbar-nav>li.active a {
        background-color: #2c6087;
    }
    .navbar-default .navbar-nav>li:first-child a {
        -webkit-border-radius: 3px 3px 0 0;
        -moz-border-radius: 3px 3px 0 0;
        border-radius: 3px 3px 0 0;
    }
    .navbar-default .navbar-nav>li:last-child {
        border-bottom: 0;
    }
    .navbar-default .navbar-nav>li:last-child a {
        -webkit-border-radius: 0 0 3px 3px;
        -moz-border-radius: 0 0 3px 3px;
        border-radius: 0 0 3px 3px;
    }
    .navbar-default .navbar-nav .open a {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }
    .navbar-default .navbar-nav .open .dropdown-menu {
        top: 55px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        padding: 0;
    }
    .navbar-default .navbar-nav .open .dropdown-menu>li {
        background-color: #2c6087;
    }
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        color: #ffffff;
        padding: 7px 40px 7px 45px;
    }
    .navbar-default .navbar-nav .open .dropdown-menu>li:hover {
        background: #e3a814;
        /*#75a7ef*/
    }
    .navbar-default .navbar-nav .open .dropdown-menu>li:hover a {
        color: #ffffff;
    }
}


/*************** 12. Dashboard Wrapper ***************/

.dashboard-wrapper {
    margin: 15px 0 20px 210px;
    position: relative;
    padding: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

@media (max-width: 1199px) {
    .dashboard-wrapper {
        margin: 20px 5px;
    }
}

.dashboard-wrapper-full {
    margin: 15px 10px 20px 10px;
    position: relative;
    padding: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}


/*************** 13. Mian Container ***************/

.main-container {
    position: relative;
    padding: 20px;
    /*min-height: 700px;*/
    background: #f5f8fb;
}


/*************** 14. Left Sidebar ***************/

.user-wrapper {
    display: block;
    margin: 0 0 6px 0;
}

.user-wrapper .user-avatar {
    float: left;
    text-align: center;
}

.user-wrapper .user-avatar img {
    max-width: 48px;
    max-height: 48px;
    border: 2px solid #2c6087;
}

.user-wrapper .profile-status {
    margin: 10px 0 0 60px;
    text-align: right;
}

.user-wrapper .profile-status p.welcome {
    margin: 0;
    font-size: 12px;
    line-height: 24px;
    color: gray;
}

.user-wrapper .profile-status p.name {
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    line-height: 100%;
}

.user-wrapper .profile-status .progress {
    margin-bottom: 0;
}

ul.color-theme li {
    width: 20px;
    height: 20px;
    margin: 5px 3px 5px 0;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul.color-theme li a {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

ul.color-theme li a.theme-brick {
    background: #c0504d;
}

ul.color-theme li a.theme-instagram {
    background: #5280a4;
}

ul.color-theme li a.theme-facebook {
    background: #e8eff9;
}

ul.color-theme li a.theme-maroon {
    background: #b1442f;
}

ul.color-theme li a.theme-brown {
    background: #8f6e5a;
}

ul.color-theme li a.theme-teal {
    background: #47BCC7;
}

ul.color-theme li a.theme-green {
    background: #3eb15b;
}

ul.color-theme li a.main {
    background: #2c6087;
}

ul.color-theme li a.theme-violet {
    background: #616ca9;
}

ul.color-theme li a.theme-grey {
    background: #666666;
}

ul.color-theme li a.theme-light-grey {
    background: gray;
}

ul.color-theme li:last-child {
    margin-right: 0;
}

ul.color-theme li:hover {
    opacity: 0.8;
}

.left-sidebar {
    position: absolute;
    left: 15px;
    top: 85px;
    width: 200px;
    min-height: 400px;
}

.left-sidebar .panel-group .panel {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin: 0 !important;
    border: 0;
}

.left-sidebar .panel-group .panel .panel-heading {
    background: #75a7ef;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-bottom: 1px solid #4589ba;
    padding: 0;
}

.left-sidebar .panel-group .panel .panel-heading h4.panel-title {
    display: block;
}

.left-sidebar .panel-group .panel .panel-heading h4.panel-title a {
    font-size: 13px;
    color: #ffffff;
    display: block;
    position: relative;
    padding: 14px 15px;
}

.left-sidebar .panel-group .panel .panel-heading h4.panel-title a .label {
    position: absolute;
    right: 10px;
    top: 14px;
    min-width: 26px;
    font-family: 'open_sansregular';
    padding: 1px;
    font-size: 10px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.left-sidebar .panel-group .panel .panel-body {
    border: 0 !important;
}

@media (max-width: 1199px) {
    .left-sidebar {
        display: none;
    }
}


/*************** 15. Top Bar  ***************/

.top-bar {
    padding: 0 5px;
    background: #ffffff;
    border-top: 5px solid #2c6087;
    border-bottom: 1px solid #d1dfec;
}

.top-bar h3.page-title {
    margin: 0px 0px 2px 0px;
    padding: 0;
    line-height: 35px;
    font-family: 'open_sansregular';
}

@media (max-width: 767px) {
    .top-bar {
        margin-top: 15px;
        -webkit-border-radius: 4px 4px 0 0;
        -moz-border-radius: 4px 4px 0 0;
        border-radius: 4px 4px 0 0;
    }
    .top-bar h3.page-title {
        text-align: center;
    }
}

ul.tasks {
    margin: 6px 0 0 0;
    border: 1px solid #d1dfec;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: #ffffff;
    width: 100%;
}

ul.tasks li {
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 12px;
    width: 33.333%;
    color: #000000;
    text-align: center;
    font-weight: 600;
}

ul.tasks li:last-child {
    border-right: none;
}

ul.tasks li:last-child .task-num {
    color: #2c6087;
}

ul.tasks li:nth-child(2) {
    border-right: none;
}

ul.tasks li:nth-child(2) .task-num {
    color: #3eb15b;
}

ul.tasks li a {
    padding: 10px 0;
    display: block;
}

ul.tasks li a:hover {
    color: inherit;
}

ul.tasks li .task-num {
    color: #2c6087;
    font-size: 21px;
    padding: 0;
    margin: 0 0 4px 0;
    font-weight: 600;
    line-height: 100%;
}

ul.tasks li p.task-type {
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 100%;
}

@media (max-width: 767px) {
    ul.tasks {
        margin: 0 auto 20px auto;
        max-width: 300px;
        float: none !important;
        text-align: center;
    }
}

.widget {
    margin: 0 0 25px 0;
    display: block;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.widget .widget-heading {
    padding: 7px 15px;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    text-transform: uppercase;
    text-align: center;
    background: #2c6087;
    color: #ffffff;
}

.widget .widget-heading .pull-right {
    color: #ffffff;
}

.widget .widget-heading .pull-right i {
    line-height: 100%;
    margin-right: 2px;
}

.widget .widget-body {
    padding: 10px 15px;
    font-size: 36px;
    font-family: 'open_sanslight';
    background: #2c6087;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
}

.widget .widget-body i {
    color: #4284b3;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -ms-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
    transition: All 0.5s ease-in;
    font-size: 60px;
    line-height: 60px;
}

.widget .widget-body .number {
    font-size: 36px;
    line-height: 60px;
    color: #ffffff;
}

.widget-red .widget-heading {
    background: #ed5956;
    color: #ffffff;
}

.widget-red .widget-heading .pull-right {
    color: #ffffff;
}

.widget-red .widget-body {
    background: #2c6087;
}

.widget-red .widget-body i {
    color: #ef6f6d;
}

.widget-red .widget-body .number {
    color: #ffffff;
}

.widget-yellow .widget-heading {
    background: #ffb400;
    color: #ffffff;
}

.widget-yellow .widget-heading .pull-right {
    color: #ffffff;
}

.widget-yellow .widget-body {
    background: #e6a200;
}

.widget-yellow .widget-body i {
    color: #ffc333;
}

.widget-yellow .widget-body .number {
    color: #ffffff;
}

.widget-green .widget-heading {
    background: #49bf67;
    color: #ffffff;
}

.widget-green .widget-heading .pull-right {
    color: #ffffff;
}

.widget-green .widget-body {
    background: #3eb15b;
}

.widget-green .widget-body i {
    color: #5cc677;
}

.widget-green .widget-body .number {
    color: #ffffff;
}

.widget-grey .widget-heading {
    background: #666666;
    color: #ffffff;
}

.widget-grey .widget-heading .pull-right {
    color: #ffffff;
}

.widget-grey .widget-body {
    background: #595959;
}

.widget-grey .widget-body i {
    color: gray;
}

.widget-grey .widget-body .number {
    color: #ffffff;
}


/*************** 16. Widgets/Components  ***************/

ul.visitor-stats {
    margin-top: 10px;
}

ul.visitor-stats li {
    margin-top: 15px;
}

ul.visitor-stats li .block {
    padding: 15px;
    min-height: 92px;
    border: 1px solid #c9d9ea;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: -moz-linear-gradient(top, #ffffff 0%, #eef3f8 95%, #d8e4ef 100%);
    background: -webkit-linear-gradient(top, #ffffff 0%, #eef3f8 95%, #d8e4ef 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #eef3f8 95%, #d8e4ef 100%);
}

ul.visitor-stats li .block h5.visitor-title {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}

ul.visitor-stats li .block h5.visitor-title span.growth {
    float: right;
    color: #000000;
}

ul.visitor-stats li .block h5.visitor-title span.growth i {
    font-size: 10px;
    font-weight: 600;
    margin-right: 5px;
}

ul.visitor-stats li .block h5.visitor-title span.growth i.up {
    color: #3eb15b;
}

ul.visitor-stats li .block h5.visitor-title span.growth i.down {
    color: #2c6087;
}

ul.visitor-stats li .block h2.num-stats {
    margin: 5px 0;
    color: #000000;
    letter-spacing: 1px;
}

ul.visitor-stats li .block h3.avg-time {
    margin: 20px 0 0 0;
    color: #000000;
    letter-spacing: 1px;
}

ul.visitor-stats li .block .progress {
    margin: 0;
    background-color: #ffffff;
}

.info-stats {
    padding: 10px 15px;
    border: 1px solid #c9d9ea;
    margin-bottom: 5px;
}

.info-stats .sale-num {
    margin: 0 0 0 48px;
}

.info-stats .sale-num h4 {
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 100%;
    font-family: 'open_sansregular';
}

.info-stats .sale-num p {
    font-size: 13px;
    margin: 0;
    padding: 0;
    line-height: 100%;
    color: #4d4d4d;
}

.info-stats .icon-type {
    height: 36px;
    width: 36px;
    float: left;
    position: relative;
    margin-right: 10px;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.info-stats .icon-type i {
    font-size: 18px;
    line-height: 36px;
    text-align: center;
    color: #ffffff;
}

.info-stats.green .icon-type {
    background: #3eb15b;
    box-shadow: -3px 3px 0 #33934b;
}

.info-stats.green-one .icon-type {
    background: #6dc6cd;
    box-shadow: -3px 3px 0 #4fbac3;
}

.info-stats.green-two .icon-type {
    background: #52bf8a;
    box-shadow: -3px 3px 0 #3fa976;
}

.info-stats.green-three .icon-type {
    background: #638ca5;
    box-shadow: -3px 3px 0 #52778e;
}

.info-stats.blue .icon-type {
    background: #2c6087;
    box-shadow: -3px 3px 0 #2f71aa;
}

.info-stats.yellow .icon-type {
    background: #e3b442;
    box-shadow: -3px 3px 0 #dca521;
}

.info-stats.pink .icon-type {
    background: #F782AA;
    box-shadow: -3px 3px 0 #f55c90;
}

.info-stats.violet .icon-type {
    background: #c38fbb;
    box-shadow: -3px 3px 0 #b574ab;
}

.info-stats.teal .icon-type {
    background: #47BCC7;
    box-shadow: -3px 3px 0 #35a5b0;
}

.info-stats.red .icon-type {
    background: #2c6087;
    box-shadow: -3px 3px 0 #e61e1a;
}

.info-stats.tw .icon-type {
    background: #55ACEE;
    box-shadow: -3px 3px 0 #309aea;
}

.info-stats.fb .icon-type {
    background: #e8eff9;
    box-shadow: -3px 3px 0 #30487b;
}

.links {
    margin-bottom: 7px;
}

.links .link-details {
    margin-left: 80px;
    text-align: center;
}

.links .link-details li {
    width: 25%;
    float: left;
    margin-right: 5px;
    border-bottom: 3px solid #2c6087;
}

.links .link-details li h4 {
    font-weight: 600;
    margin: 15px 0 0 0;
}

.links .link-details li p {
    margin: 0 0 5px 0;
}

.links .link-details.domestic li:nth-child(1) {
    border-color: #2c6087;
}

.links .link-details.domestic li:nth-child(2) {
    border-color: #2c6087;
}

.links .link-details.domain li {
    width: 17%;
}

.links .link-details.domain li:nth-child(1) {
    border-color: #fa9255;
}

.links .link-details.domain li:nth-child(2) {
    border-color: #fee074;
}

.links .link-details.domain li:nth-child(3) {
    border-color: #47BCC7;
}

.links .link-details.domain li:nth-child(4) {
    border-color: #F782AA;
}

.links .link-details.domain li:nth-child(5) {
    border-color: #aed048;
}

.links .link-details.img-fonts li {
    width: 25%;
}

.links .link-details.img-fonts li:nth-child(1) {
    border-color: #c38fbb;
}

.links .link-details.img-fonts li:nth-child(2) {
    border-color: #2c6087;
}

.links .link-details.img-fonts li:nth-child(3) {
    border-color: #F782AA;
}

.links:last-child {
    margin-bottom: 1px;
}

ul.views {
    padding: 0;
}

ul.views li {
    position: relative;
    padding: 3px 0;
}

ul.views li i {
    font-size: 9px;
    padding-right: 7px;
    float: left;
    line-height: 19px;
}

ul.views li i.red {
    color: #2c6087;
}

ul.views li i.green {
    color: #3eb15b;
}

ul.views li i.blue {
    color: #2c6087;
}

ul.views li i.yellow {
    color: #ffb400;
}

ul.views li i.orange {
    color: #ed6d49;
}

ul.views li i.violet {
    color: #c38fbb;
}

ul.views li i.teal {
    color: #47BCC7;
}

ul.views li p.detail-info {
    text-transform: uppercase;
    font-size: 11px;
    padding: 0;
    margin: 0;
}

ul.contributions {
    padding: 0;
}

ul.contributions li {
    margin-bottom: 15px;
}

ul.contributions li .progress {
    margin: 0;
    height: 4px;
    background: #e6e6e6;
}

ul.contributions li p {
    margin: 0;
    font-size: 11px;
    color: #333333;
}

ul.contributions li p span {
    color: #000000;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
}

ul.contributions li:last-child {
    margin-bottom: 0;
}

.tags {
    padding: 0;
}

.tags a {
    font-size: 11px;
    margin: 1px 1px 0 0;
    float: left;
    padding: 1px 12px;
    color: #ffffff;
    background: #33668a;
}

.tags a:nth-child(2n) {
    background: #376e95;
}

.tags a:nth-child(3n) {
    background: #2c6087;
}

.tags a:nth-child(4n) {
    background: #3f7eab;
}

.tags a:nth-child(5n) {
    background: #4386b6;
}

.tags a:nth-child(6n) {
    background: #4c8ebd;
}

.tags a:nth-child(7n) {
    background: #5795c1;
}

.tags a:nth-child(8n) {
    background: #629cc5;
}

.tags a:nth-child(9n) {
    background: #6da3c9;
}

.tags a:nth-child(10n) {
    background: #79aacd;
}

.global-local {
    margin: 10px 0 0 0;
}

.global-local i {
    color: #52bf8a;
    font-size: 60px;
    line-height: 100%;
    vertical-align: middle;
    float: left;
}

.global-local i.small {
    font-size: 24px;
    float: none;
}

.global-local h3 {
    margin: 0 0 5px 72px;
    font-size: 36px;
    color: #52bf8a;
    font-weight: 600;
    line-height: 100%;
    vertical-align: middle;
}

.global-local p {
    margin: 0 0 -20px 72px;
    padding: 0;
}

.todo {
    padding: 15px;
}

.todo .todo-list-item {
    padding: 12px 0px;
    cursor: pointer;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    border-bottom: 1px solid #ebebeb;
    position: relative;
}

.todo .todo-list-item:first-child {
    padding-top: 0;
}

.todo .todo-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.todo .todo-list-cb {
    display: none;
}

.todo .todo-list-mark {
    position: relative;
    float: left;
    margin-right: 10px;
    width: 16px;
    height: 16px;
    border: 2px solid #b3b3b3;
    vertical-align: middle;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.todo .todo-list-mark:before {
    content: '';
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -3px 0 0 -4px;
    height: 5px;
    width: 8px;
    border: solid #2c6087;
    border-width: 0 0 3px 3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.todo .todo-list-cb:checked~.todo-list-mark {
    border-color: #2c6087;
}

.todo .todo-list-cb:checked~.todo-list-mark:before {
    display: block;
}

.todo .todo-list-cb.overdue:checked~.todo-list-mark {
    border-color: #2c6087;
}

.todo .todo-list-cb.overdue:checked~.todo-list-mark:before {
    border: solid #2c6087;
    border-width: 0 0 3px 3px;
}

.todo .todo-list-desc {
    font-weight: 600;
    margin-left: 30px;
    display: block;
}

.todo small.scheduled {
    font-family: 'open_sansregular';
    font-size: 10px;
    display: block;
    margin: 5px 0 0 30px;
    color: #999999;
    line-height: 100%;
}

.todo .todo-list-cb:checked~.todo-list-desc {
    color: #2c6087;
    text-decoration: line-through;
}

.todo .todo-list-cb.overdue:checked~.todo-list-desc {
    color: #2c6087;
    text-decoration: line-through;
}

ul.imp-notify li {
    padding: 12px 10px 10px 10px;
    border-bottom: 1px solid #ededed;
}

ul.imp-notify li .thumb {
    float: left;
}

ul.imp-notify li .thumb img {
    width: 48px;
    height: 48px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

ul.imp-notify li .details {
    font-size: 12px;
    display: block;
    background: transparent;
    border: none;
    width: auto;
    margin-left: 60px;
}

ul.imp-notify li .details strong {
    font-weight: 600;
    display: block;
    color: #35404f;
}

ul.imp-notify li .details p {
    margin: 5px 0 0 0;
    line-height: 18px;
}

ul.imp-notify li .details small.date {
    display: block;
    padding: 5px 0 0 0;
    font-weight: 600;
    color: #b3b3b3;
}

.task-list li {
    display: block;
    padding: 10px 0;
    margin: 0;
    cursor: pointer;
    line-height: 16px;
    border-bottom: 1px solid #f2f2f2;
}

.task-list li.list span:before {
    margin-right: 10px;
    font-size: 14px;
    content: "\e876";
    font-family: 'icomoon';
    vertical-align: middle;
    background: #666666;
    color: #ffffff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    padding: 5px;
}

.task-list li.completed {
    text-decoration: line-through;
    color: #2c6087;
}

.task-list li.completed span:before {
    color: #ffffff;
    background: #2c6087;
    content: "\e877";
    font-family: 'icomoon';
    text-decoration: none;
}

.task-list li.pending {
    text-decoration: line-through;
    color: #2c6087;
}

.task-list li.pending span:before {
    color: #ffffff;
    background: #2c6087;
    content: "\e877";
    font-family: 'icomoon';
    text-decoration: none;
}

.task-list li:first-child {
    padding-top: 0;
}

.task-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

ul.friends-list {
    margin: 0;
}

ul.friends-list li {
    width: 50px;
    height: 50px;
    margin: 2px;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul.friends-list li img {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    width: 100%;
    height: 100%;
}

ul.friends-list li:hover {
    opacity: 0.8;
}

ul.friends-list li.lg {
    width: 48px;
    height: 48px;
    margin: 3px;
}

ul.online-users li a {
    position: relative;
    display: block;
    padding: 5px 0;
}

ul.online-users li a img {
    margin-right: 3px;
    width: 16px;
    height: 16px;
}

ul.online-users li a .user-name {
    display: inline-block;
}

ul.online-users li a .online,
ul.online-users li a .busy,
ul.online-users li a .away {
    position: absolute;
    top: 10px;
    right: 0;
    width: 8px;
    height: 8px;
    background: #3eb15b;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

ul.online-users li a .online.busy,
ul.online-users li a .busy.busy,
ul.online-users li a .away.busy {
    background: #2c6087;
}

ul.online-users li a .online.away,
ul.online-users li a .busy.away,
ul.online-users li a .away.away {
    background: #ffb400;
}

ul.online-users li a:hover {
    color: #2c6087;
}

ul.online-users li:last-child {
    border-bottom: 0;
}

.message-wrapper li {
    padding: 10px 0 15px 0;
    border-bottom: 1px solid #ededed;
}

.message-wrapper li img.avatar {
    height: 48px;
    width: 48px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.message-wrapper li .empty-avatar {
    height: 48px;
    width: 48px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    border: 2px solid #e6e6e6;
    color: #ffffff;
    text-align: center;
    line-height: 44px;
}

.message-wrapper li .empty-avatar.green {
    background: #3eb15b;
    border: 2px solid #318b48;
}

.message-wrapper li .empty-avatar.red {
    background: #2c6087;
    border: 2px solid #c71916;
}

.message-wrapper li .empty-avatar.yellow {
    background: #ffb400;
    border: 2px solid #e6a200;
}

.message-wrapper li .empty-avatar.pink {
    background: #F782AA;
    border: 2px solid #f56a9a;
}

.message-wrapper li .empty-avatar.blue {
    background: #2c6087;
    border: 2px solid #2d6ca2;
}

.message-wrapper li.in img.avatar {
    margin-right: 10px;
    float: left;
}

.message-wrapper li.in .empty-avatar {
    margin-right: 10px;
    float: left;
}

.message-wrapper li .name {
    font-weight: 600;
}

.message-wrapper li .date-time {
    color: gray;
    font-size: 11px;
}

.message-wrapper li.out img.avatar {
    float: right;
    margin-left: 10px;
}

.message-wrapper li.out .empty-avatar {
    margin-left: 10px;
    float: right;
}

.message-wrapper li .message {
    display: block;
    padding: 0 15px;
    position: relative;
}

.message-wrapper li.in .message {
    text-align: left;
    margin-left: 54px;
}

.message-wrapper li.out {
    text-align: right;
}

.message-wrapper li.out .message {
    margin-right: 54px;
    text-align: right;
}

.message-wrapper li .message .body {
    display: block;
    color: #333333;
    padding-top: 6px;
}

.message-wrapper li .message .body span {
    font-style: italic;
    font-weight: 600;
    color: #1a1a1a;
}

.message-wrapper li:first-child {
    padding-top: 0;
}

.message-wrapper li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

ul.top-clients li {
    position: relative;
    height: 54px;
    display: block;
    padding: 6px 0;
    width: 100%;
    margin-bottom: 13px;
    cursor: pointer;
    overflow: hidden;
}

ul.top-clients li .progress {
    opacity: .8;
    position: absolute;
    height: 3px;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    transition: opacity 0.2s ease-in-out;
}

ul.top-clients li .avatar {
    position: relative;
    float: left;
    width: 36px;
    height: 36px;
    background: #ffffff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    z-index: 2;
    overflow: hidden;
}

ul.top-clients li .avatar img {
    width: 36px;
    height: 36px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

ul.top-clients li .value {
    margin-top: 10px;
    float: right;
    font-weight: 600;
    color: #333333;
}

ul.top-clients li .biz {
    margin-top: 10px;
    margin-left: 10px;
    font-size: 12px;
    float: left;
}

ul.top-clients li .biz p.biz-name {
    float: left;
    font-weight: 600;
    margin: 0;
}

ul.top-clients li .biz .biz-date {
    float: left;
    font-size: 10px;
    font-style: italic;
    margin-left: 15px;
}

ul.top-clients li:last-child {
    margin-bottom: 0;
}

.mini-widget {
    margin: 0 0 15px 0;
    display: block;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.mini-widget .mini-widget-heading {
    padding: 7px 15px;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    text-transform: uppercase;
    text-align: center;
    background: #2c6087;
    color: #ffffff;
}

.mini-widget .mini-widget-heading .pull-right {
    color: #ffffff;
    opacity: 0.7;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -ms-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
    transition: All 0.5s ease-in;
}

.mini-widget .mini-widget-heading .pull-right i {
    line-height: 100%;
    margin-right: 2px;
}

.mini-widget .mini-widget-body {
    padding: 10px 15px;
    font-size: 36px;
    font-family: 'open_sanslight';
    background: #75a7ef;
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

.mini-widget .mini-widget-body i {
    color: rgba(255, 255, 255, 0.3);
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -ms-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
    transition: All 0.5s ease-in;
    font-size: 60px;
    line-height: 60px;
    text-shadow: -4px -3px 3px #000;
}

.mini-widget .mini-widget-body .number {
    font-size: 36px;
    line-height: 60px;
    color: #ffffff;
}

.mini-widget .mini-widget-footer {
    color: #ffffff;
    background: #2d5b7b;
    padding: 5px 15px;
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    position: relative;
}

.mini-widget .mini-widget-footer i {
    float: right;
    position: relative;
    top: 2px;
    display: none;
}

.mini-widget-red .mini-widget-heading {
    background: #2c6087;
    color: #ffffff;
}

.mini-widget-red .mini-widget-heading .pull-right {
    color: #ffffff;
}

.mini-widget-red .mini-widget-body {
    background: #ef6f6d;
}

.mini-widget-red .mini-widget-body .number {
    color: #ffffff;
}

.mini-widget-red .mini-widget-footer {
    color: #ffffff;
    background: #c71916;
}

.mini-widget-grey .mini-widget-heading {
    background: #4d4d4d;
    color: #ffffff;
}

.mini-widget-grey .mini-widget-heading .pull-right {
    color: #ffffff;
}

.mini-widget-grey .mini-widget-body {
    background: #666666;
}

.mini-widget-grey .mini-widget-body .number {
    color: #ffffff;
}

.mini-widget-grey .mini-widget-footer {
    color: #ffffff;
    background: #2aaf75;
}

a.block-60 {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    display: block;
    height: 90px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    color: #ffffff;
}

a.block-60 i {
    font-size: 32px;
    margin: 0 auto 3px auto;
}

a.block-60 h5 {
    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 140%;
}

a.block-60 h1 {
    margin: 0 0 2px 0;
    padding: 0;
}

a.block-195 {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 15px;
    padding: 15px;
    display: block;
    height: 190px;
    text-align: center;
}

a.block-195 .photos {
    background: url(../img/street.jpg) no-repeat top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: relative;
    height: 100%;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

a.block-195 .photos p {
    padding: 0;
    margin: 0;
    width: 70%;
    font-size: 18px;
    color: #ffffff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    text-align: left;
    text-shadow: 3px 2px 5px #000000;
}

a.block-195 .photos h4 {
    margin: 0 0 5px 0;
    padding: 0;
    color: #ffffff;
}

a.block-195.no-padding {
    padding: 0;
}

.block-240 {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 15px;
    padding: 15px;
    display: block;
    height: 239px;
    text-align: center;
}

.block-300 {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 15px;
    padding: 15px;
    display: block;
    height: 299px;
    text-align: center;
}

.user-profile {
    color: #000;
    padding: 0 10px !important;
    margin: 0 auto !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.user-profile img.profile-thumb {
    width: 72px;
    height: 72px;
    background: #FFF;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    /*border : 1px solid #000;*/
    margin: 0 auto 5px auto;
}

.user-profile h4.profile-name {
    margin: 0 0 10px 0;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.user-profile h5.profile-designation {
    margin: 0 0 5px 0;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.user-profile p.profile-location {
    margin: 0 0 5px 0;
    font-family: 'open_sansregular';
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

a.blog-sm img.blog-thumb {
    margin-bottom: 10px;
}

a.blog-sm h5.blog-title {
    margin: 0 0 5px 0;
    font-size: 13px;
    color: #4d4d4d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

a.blog-sm p.blog-date {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 11px;
    color: gray;
}

ul.project-activity {
    margin-bottom: 7px;
}

ul.project-activity li.activity-list {
    position: relative;
    border-left: 1px solid #bed2e5;
}

ul.project-activity li.activity-list:after {
    background-color: #ffffff;
    border-color: #F782AA;
    border-radius: 10px;
    border-style: solid;
    border-width: 2px;
    bottom: 0;
    content: "";
    height: 9px;
    left: 0;
    margin-left: -5px;
    position: absolute;
    width: 9px;
}

ul.project-activity li.activity-list .detail-info {
    margin: 0 0 0 15px;
    padding-bottom: 15px;
}

ul.project-activity li.activity-list p.message {
    padding: 0;
    margin: 0;
}

ul.project-activity li.activity-list.success {
    border-left-color: #3eb15b;
}

ul.project-activity li.activity-list.success:after {
    border-color: #3eb15b;
}

ul.project-activity li.activity-list.danger {
    border-left-color: #2c6087;
}

ul.project-activity li.activity-list.danger:after {
    border-color: #2c6087;
}

ul.project-activity li.activity-list.info {
    border-left-color: #2c6087;
}

ul.project-activity li.activity-list.info:after {
    border-color: #2c6087;
}

ul.project-activity li.activity-list.warning {
    border-left-color: #ffb400;
}

ul.project-activity li.activity-list.warning:after {
    border-color: #ffb400;
}

ul.project-activity li.activity-list.pink {
    border-left-color: #F782AA;
}

ul.project-activity li.activity-list.pink:after {
    border-color: #F782AA;
}

ul.project-activity li.activity-list.brown {
    border-left-color: #8f6e5a;
}

ul.project-activity li.activity-list.brown:after {
    border-color: #8f6e5a;
}

ul.project-activity li.activity-list:before {
    content: " ";
    display: table;
}

ul.project-activity li.activity-list:after {
    content: " ";
    display: table;
    clear: both;
    bottom: auto;
    top: 6px;
}

ul.project-activity li.activity-list:last-child .detail-info {
    padding-bottom: 0;
}

ul.articles {
    margin: 0;
}

ul.articles li {
    padding: 10px 0;
    border-bottom: 1px dotted #d4e1ee;
}

ul.articles li a {
    position: relative;
    color: #4d4d4d;
    display: block;
    line-height: 16px;
    padding-left: 20px;
    text-decoration: underline;
}

ul.articles li a:hover {
    text-decoration: none;
}

ul.articles li a .label-bullet {
    position: absolute;
    left: 0;
    top: 4px;
    width: 0;
    height: 0;
    border: 4px solid #2c6087;
}

ul.articles li a .date {
    margin-top: 5px;
    font-size: 11px;
    font-weight: normal;
    display: block;
    font-style: italic;
}

ul.articles li:nth-child(1n+1) a .label-bullet {
    border: 4px solid #2c6087;
}

ul.articles li:nth-child(2n+1) a .label-bullet {
    border: 4px solid #3eb15b;
}

ul.articles li:nth-child(3n+1) a .label-bullet {
    border: 4px solid #ffb400;
}

ul.articles li:nth-child(4n+1) a .label-bullet {
    border: 4px solid #2c6087;
}

ul.articles li:first-child {
    padding-top: 0;
}

ul.articles li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}


/*************** 17. Footer CSS  ***************/

.footer {
    border-top: 1px solid #d1dfec;
    height: 60px;
    line-height: 60px;
    text-align: left;
    font-size: 12px;
    width: 100%;
    padding: 0 20px;
    background: #ffffff;
    position: relative;
}

.footer span {
    color: #2c6087;
}

#scrollUp {
    bottom: 25px;
    right: 35px;
    width: 36px;
    height: 48px;
    padding: 0;
    font-size: 21px;
    line-height: 48px;
    text-align: center;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    color: #ffffff;
    background-color: #d4a139;
    -webkit-transition: bottom 150ms linear;
    -moz-transition: bottom 150ms linear;
    -ms-transition: bottom 150ms linear;
    -o-transition: bottom 150ms linear;
    transition: bottom 150ms linear;
}

#scrollUp:hover {
    background-color: #d4a139;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fdd163), to(#e6b12c));
    background-image: -webkit-linear-gradient(top, #fdd163, #e6b12c);
    background-image: -moz-linear-gradient(top, #fdd163, #e6b12c);
    background-image: -ms-linear-gradient(top, #fdd163, #e6b12c);
    background-image: -o-linear-gradient(top, #fdd163, #e6b12c);
    background-image: linear-gradient(top, #fdd163, #e6b12c);
}

@media (max-width: 767px) {
    #scrollUp {
        bottom: 20px;
    }
}


/*************** 18. Plugin Overwrite CSS  ***************/

.jqstooltip {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    background: #000000;
    border: 1px solid #000000;
}

.jvectormap-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    touch-action: none;
}

.jvectormap-tip {
    position: absolute;
    display: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: #000000;
    color: #ffffff;
    font-size: 12px;
    padding: 6px 12px;
}

.legendLabel {
    padding-left: 5px;
    padding-right: 10px;
    font-size: 13px;
}

.legendColorBox div {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.tickLabel {
    color: #4d4d4d;
    font-weight: 400;
    font-size: 11px;
    text-align: left;
}

#flotTip {
    padding: 0.9em;
    border-radius: 0.2em;
    font-size: 1em;
    font-weight: 600;
    z-index: 110;
}

.legend div {
    background: transparent;
}


/*************** 19. Loading CSS  ***************/

.loader-wrapper {
    margin-bottom: 16px;
    position: relative;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 15px;
    height: 160px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#loading-wrapper,
#processing-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
}

#loading-wrapper #loader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -35px;
    margin-top: -35px;
    width: 70px;
    height: 30px;
}

#loading-wrapper #loader>div {
    border: 2px solid #2c6087;
    height: 100%;
    width: 6px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    display: inline-block;
    -moz-animation: linedelay 1.1s infinite ease-in-out;
    -webkit-animation: linedelay 1.1s infinite ease-in-out;
    animation: linedelay 1.1s infinite ease-in-out;
}

#loading-wrapper #loader .line2 {
    border-color: #2c6087;
    -moz-animation-delay: -1.0s;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

#loading-wrapper #loader .line3 {
    border-color: #ffb400;
    -moz-animation-delay: -0.9s;
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

#loading-wrapper #loader .line4 {
    border-color: #3eb15b;
    -moz-animation-delay: -0.8s;
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

#loading-wrapper #loader .line5 {
    border-color: #c38fbb;
    -moz-animation-delay: -0.7s;
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

#loading-wrapper #loader .line6 {
    border-color: #F782AA;
    -moz-animation-delay: -0.6s;
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

@-moz-keyframes linedelay {
    0%,
    50%,
    100% {
        -moz-transform: scaleY(0.4);
    }
    30% {
        -moz-transform: scaleY(1);
    }
}

@-webkit-keyframes linedelay {
    0%,
    50%,
    100% {
        -webkit-transform: scaleY(0.4);
    }
    30% {
        -webkit-transform: scaleY(1);
    }
}

@keyframes linedelay {
    0%,
    50%,
    100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }
    30% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.loaded #loading-wrapper {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}


/*************** 20. Icon Sizes  ***************/

.icon-2x {
    font-size: 2em;
}

.icon-3x {
    font-size: 3em;
}

.icon-4x {
    font-size: 4em;
}

.icon-5x {
    font-size: 5em;
}

.icons {
    text-align: center;
}

.icons span {
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #595959;
    background: #f5f8fb;
    margin-bottom: 3px;
}

.icons span:hover {
    background-color: #2c6087;
    color: #ffffff;
    text-shadow: 0 10px 10px #000000;
}


/*************** 21. Invoice Page  ***************/

.invoice a .logo {
    width: 110px;
    margin: 0 auto;
    text-align: center;
}

.invoice .invoice-num {
    margin-bottom: 30px;
}

.invoice p {
    margin: 0 0 7px 0;
}

.invoice address h4 {
    margin: 0 0 10px 0;
}

.invoice .table .btn {
    min-width: 36px;
}

.invoice .btn-group {
    margin-bottom: 7px;
    float: right;
}

.invoice address.from {
    border-left: 3px solid #3eb15b;
    padding: 0 10px 0 20px;
}

.invoice address.to {
    border-left: 3px solid #2c6087;
    padding: 0 10px 0 20px;
}

.invoice-stats h3 {
    margin: 0;
    padding: 0;
    font-weight: 600;
}

.invoice-stats h5 {
    margin: 0;
}


/***************** 22. Bootstrap Overwrite CSS ****************/

.panel {
    margin-bottom: 16px;
    background-color: #ffffff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #2c6087;
}

.panel.no-margin {
    margin: 0;
}

.panel-heading {
    position: relative;
    border: 0;
    padding: 13px 15px;
    background: #2c6087;
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
}

.panel-heading h4 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    display: inline-block;
}

.panel-heading h6 {
    margin: 5px 0 0 0;
    font-size: 12px;
    font-family: 'open_sansregular';
    color: gray;
}

.panel-heading .actions {
    position: absolute;
    right: 15px;
    top: 13px;
}

.panel-heading .actions .label {
    border: 0;
}

.panel-heading .actions .label:hover {
    border: 0;
}

.faq {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.faq .panel-heading {
    padding: 0;
}

.faq .panel-heading h4.panel-title {
    display: block;
}

.faq .panel-heading h4.panel-title a.accordion-toggle {
    padding: 15px;
    font-size: 15px;
    display: block;
    color: #ffffff;
}

.faq .panel-heading [data-toggle="collapse"]:after {
    font-family: 'icomoon';
    content: "\e95d";
    color: #ffffff;
    position: absolute;
    right: 15px;
    top: 13px;
    font-size: 21px;
}

.faq .panel-heading [data-toggle="collapse"].collapsed:after {
    font-family: 'icomoon';
    content: "\e968";
    color: #ffffff;
    position: absolute;
    right: 15px;
    top: 13px;
    font-size: 21px;
}

.faq .panel-body {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.panel-body {
    padding: 15px;
    position: relative;
    background: #ffffff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.panel-footer {
    border: 0;
    margin-top: -1px;
    background: #ededed;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.panel-blue {
    background: #2c6087;
    border: 1px solid #2c6087;
}

.panel-blue .panel-heading {
    background: #357ebe;
}

.panel-blue .panel-heading h4 {
    color: #ffffff;
}

.panel-blue .panel-footer {
    background: #357ebe;
}

.panel-green {
    background: #3eb15b;
    border: 1px solid #3eb15b;
}

.panel-green .panel-heading {
    background: #379e51;
}

.panel-green .panel-heading h4 {
    color: #ffffff;
}

.panel-green .panel-footer {
    background: #379e51;
}

.panel-green-one {
    background: #6dc6cd;
    border: 1px solid #6dc6cd;
}

.panel-green-one .panel-heading {
    background: #5abfc6;
}

.panel-green-one .panel-heading h4 {
    color: #ffffff;
}

.panel-green-one .panel-footer {
    background: #5abfc6;
}

.panel-green-two {
    background: #52bf8a;
    border: 1px solid #52bf8a;
}

.panel-green-two .panel-heading {
    background: #43b57d;
}

.panel-green-two .panel-heading h4 {
    color: #ffffff;
}

.panel-green-two .panel-footer {
    background: #43b57d;
}

.panel-red {
    background: #2c6087;
    border: 1px solid #2c6087;
}

.panel-red .panel-heading {
    background: #2c6087;
}

.panel-red .panel-heading h4 {
    color: #ffffff;
}

.panel-red .panel-footer {
    background: #2c6087;
}

.panel-yellow {
    background: #ffb400;
    border: 1px solid #ffb400;
}

.panel-yellow .panel-heading {
    background: #e6a200;
}

.panel-yellow .panel-heading h4 {
    color: #ffffff;
}

.panel-yellow .panel-footer {
    background: #e6a200;
}

.panel-grey {
    background: #666666;
    border: 1px solid #666666;
}

.panel-grey .panel-heading {
    background: #595959;
}

.panel-grey .panel-heading h4 {
    color: #ffffff;
}

.panel-grey .panel-footer {
    background: #595959;
}

.panel-darkgrey {
    background: #2aaf75;
    border: 1px solid #2aaf75;
}

.panel-darkgrey .panel-heading {
    background: #333333;
}

.panel-darkgrey .panel-heading h4 {
    color: #ffffff;
}

.panel-darkgrey .panel-footer {
    background: #333333;
}

.panel-pink {
    background: #F782AA;
    border: 1px solid #F782AA;
}

.panel-pink .panel-heading {
    background: #f674a0;
}

.panel-pink .panel-heading h4 {
    color: #ffffff;
}

.panel-pink .panel-footer {
    background: #f674a0;
}

.panel-brown {
    background: #8f6e5a;
    border: 1px solid #8f6e5a;
}

.panel-brown .panel-heading {
    background: #866754;
}

.panel-brown .panel-heading h4 {
    color: #ffffff;
}

.panel-brown .panel-footer {
    background: #866754;
}

.panel-violet {
    background: #c38fbb;
    border: 1px solid #c38fbb;
}

.panel-violet .panel-heading {
    background: #be85b5;
}

.panel-violet .panel-heading h4 {
    color: #ffffff;
}

.panel-violet .panel-footer {
    background: #be85b5;
}

.panel-mustard {
    background: #e3b442;
    border: 1px solid #e3b442;
}

.panel-mustard .panel-heading {
    background: #e0ab2c;
}

.panel-mustard .panel-heading h4 {
    color: #ffffff;
}

.panel-mustard .panel-footer {
    background: #e0ab2c;
}

.panel-orange {
    background: #ed6d49;
    border: 1px solid #ed6d49;
}

.panel-orange .panel-heading {
    background: #eb5a32;
}

.panel-orange .panel-heading h4 {
    color: #ffffff;
}

.panel-orange .panel-footer {
    background: #eb5a32;
}

.panel-teal {
    background: #47BCC7;
    border: 1px solid #47BCC7;
}

.panel-teal .panel-heading {
    background: #39b0bb;
}

.panel-teal .panel-heading h4 {
    color: #ffffff;
}

.panel-teal .panel-footer {
    background: #39b0bb;
}

.panel-dark-blue {
    background: #2a303e;
    border: 1px solid #2a303e;
}

.panel-dark-blue .panel-heading {
    background: #20242f;
}

.panel-dark-blue .panel-heading h4 {
    color: #ffffff;
}

.panel-dark-blue .panel-footer {
    background: #20242f;
}

.panel-purple {
    background: #500776;
    border: 1px solid #500776;
}

.panel-purple .panel-heading {
    background: #430663;
}

.panel-purple .panel-heading h4 {
    color: #ffffff;
}

.panel-purple .panel-footer {
    background: #430663;
}

.panel-facebook {
    background: #e8eff9;
    border: 1px solid #e8eff9;
}

.panel-facebook .panel-heading {
    background: #355089;
}

.panel-facebook .panel-heading h4 {
    color: #ffffff;
}

.panel-facebook .panel-footer {
    background: #355089;
}

.panel-twitter {
    background: #55ACEE;
    border: 1px solid #55ACEE;
}

.panel-twitter .panel-heading {
    background: #42a3ec;
}

.panel-twitter .panel-heading h4 {
    color: #ffffff;
}

.panel-twitter .panel-footer {
    background: #42a3ec;
}

.panel-linkedin {
    background: #007BB5;
    border: 1px solid #007BB5;
}

.panel-linkedin .panel-heading {
    background: #006da1;
}

.panel-linkedin .panel-heading h4 {
    color: #ffffff;
}

.panel-linkedin .panel-footer {
    background: #006da1;
}

.panel-gplus {
    background: #E02F2F;
    border: 1px solid #E02F2F;
}

.panel-gplus .panel-heading {
    background: #da2121;
}

.panel-gplus .panel-heading h4 {
    color: #ffffff;
}

.panel-gplus .panel-footer {
    background: #da2121;
}

.panel-instagram {
    background: #5280a4;
    border: 1px solid #5280a4;
}

.panel-instagram .panel-heading {
    background: #4b7596;
}

.panel-instagram .panel-heading h4 {
    color: #ffffff;
}

.panel-instagram .panel-footer {
    background: #4b7596;
}

.panel-peach {
    background: #f5907c;
    border: 1px solid #f5907c;
}

.panel-peach .panel-heading {
    background: #f48069;
}

.panel-peach .panel-heading h4 {
    color: #ffffff;
}

.panel-peach .panel-footer {
    background: #f48069;
}

.panel-danger {
    color: #ffffff;
    background-color: #ea423f;
    border-color: #ea423f;
}

.panel-success {
    color: #ffffff;
    background-color: #3eb15b;
    border-color: #3eb15b;
}

.progress {
    background-color: #eef3f8;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.progress-bar-danger {
    background-color: #2c6087;
    box-shadow: none;
}

.progress-bar-success {
    background-color: #3eb15b;
    box-shadow: none;
}

.progress-bar-warning {
    background-color: #ffb400;
    box-shadow: none;
}

.progress-bar-info {
    background-color: #2c6087;
    box-shadow: none;
}

.progress-sm {
    height: 6px;
}

.progress-md {
    height: 9px;
}

.progress-xs {
    height: 3px;
}

.progress-rounded {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.btn {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    box-shadow: none;
    border: 0;
}

.btn:hover {
    box-shadow: none;
    border: 0;
}

.btn:focus,
.btn.active,
.btn:active,
.btn:focus,
.btn.active.focus,
.btn:active.focus,
.btn:active:focus {
    box-shadow: none;
    border: 0;
}

.btn .caret {
    margin-left: 7px;
}

.btn i {
    font-size: 15px;
    vertical-align: middle;
}

.btn i.icon-left {
    margin-right: 5px;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: none;
    box-shadow: none;
    overflow: hidden;
}

.btn-light-grey {
    background-color: #eaf0f7;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f5fa), to(#eaf0f7));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #f1f5fa, #eaf0f7);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #f1f5fa, #eaf0f7);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #f1f5fa, #eaf0f7);
    /* IE10 */
    background-image: -o-linear-gradient(top, #f1f5fa, #eaf0f7);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #f1f5fa, #eaf0f7);
    border: 1px solid #dbe6f1;
    color: #000000;
}

.btn-light-grey:hover {
    color: #000000;
    border: 1px solid #dbe6f1;
    background-color: #e3ebf4;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f5fa), to(#e3ebf4));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #f1f5fa, #e3ebf4);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #f1f5fa, #e3ebf4);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #f1f5fa, #e3ebf4);
    /* IE10 */
    background-image: -o-linear-gradient(top, #f1f5fa, #e3ebf4);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #f1f5fa, #e3ebf4);
}

.btn-light-grey:focus,
.btn-light-grey.active,
.btn-light-grey:active,
.btn-light-grey:focus,
.btn-light-grey.active.focus,
.btn-light-grey:active.focus,
.btn-light-grey:active:focus {
    background-color: #eaf0f7;
    border: 1px solid #dbe6f1;
    color: #000000;
}

.btn-inverse {
    background-color: #4d4d4d;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#666666), to(#4d4d4d));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #666666, #4d4d4d);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #666666, #4d4d4d);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #666666, #4d4d4d);
    /* IE10 */
    background-image: -o-linear-gradient(top, #666666, #4d4d4d);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #666666, #4d4d4d);
    color: #ffffff;
}

.btn-inverse:hover {
    color: #ffffff;
    background-color: #333333;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#4d4d4d), to(#333333));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #4d4d4d, #333333);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #4d4d4d, #333333);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #4d4d4d, #333333);
    /* IE10 */
    background-image: -o-linear-gradient(top, #4d4d4d, #333333);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #4d4d4d, #333333);
}

.btn-inverse:focus,
.btn-inverse.active,
.btn-inverse:active,
.btn-inverse:focus,
.btn-inverse.active.focus,
.btn-inverse:active.focus,
.btn-inverse:active:focus {
    background: #595959;
    color: #ffffff;
}

.btn-default {
    background-color: #d8e4ef;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f5fa), to(#d8e4ef));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #f1f5fa, #d8e4ef);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #f1f5fa, #d8e4ef);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #f1f5fa, #d8e4ef);
    /* IE10 */
    background-image: -o-linear-gradient(top, #f1f5fa, #d8e4ef);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #f1f5fa, #d8e4ef);
    color: #000000;
}

.btn-default:hover {
    color: #000000;
    background-color: #d1dfec;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#eaf0f7), to(#d1dfec));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #eaf0f7, #d1dfec);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #eaf0f7, #d1dfec);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #eaf0f7, #d1dfec);
    /* IE10 */
    background-image: -o-linear-gradient(top, #eaf0f7, #d1dfec);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #eaf0f7, #d1dfec);
}

.btn-default:focus,
.btn-default.active,
.btn-default:active,
.btn-default:focus,
.btn-default.active.focus,
.btn-default:active.focus,
.btn-default:active:focus {
    background-color: #c9d9ea;
    color: #000000;
}

.btn-primary {
    background-color: #333333;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#4d4d4d), to(#333333));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #4d4d4d, #333333);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #4d4d4d, #333333);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #4d4d4d, #333333);
    /* IE10 */
    background-image: -o-linear-gradient(top, #4d4d4d, #333333);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #4d4d4d, #333333);
    color: #ffffff;
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #1a1a1a;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#333333), to(#1a1a1a));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #333333, #1a1a1a);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #333333, #1a1a1a);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #333333, #1a1a1a);
    /* IE10 */
    background-image: -o-linear-gradient(top, #333333, #1a1a1a);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #333333, #1a1a1a);
}

.btn-primary:focus,
.btn-primary.active,
.btn-primary:active,
.btn-primary:focus,
.btn-primary.active.focus,
.btn-primary:active.focus,
.btn-primary:active:focus {
    background-color: #595959;
}

.btn-danger {
    background-color: #ff0000;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#d9534f));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #d9534f, #d9534f);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #d9534f, #d9534f);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #d9534f, #d9534f);
    /* IE10 */
    background-image: -o-linear-gradient(top, #d9534f, #d9534f);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #d9534f, #d9534f);
    color: #ffffff;
}

.btn-danger:hover {
    color: #ffffff;
    background-color: #be1815;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#c9302c), to(#be1815));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #c9302c, #be1815);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #c9302c, #be1815);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #c9302c, #be1815);
    /* IE10 */
    background-image: -o-linear-gradient(top, #c9302c, #be1815);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #c9302c, #be1815);
}

.btn-danger:focus,
.btn-danger.active,
.btn-danger:active,
.btn-danger:focus,
.btn-danger.active.focus,
.btn-danger:active.focus,
.btn-danger:active:focus {
    background-color: #2c6087;
}

.btn-success {
    background-color: #318b48;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3eb15b), to(#318b48));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #3eb15b, #318b48);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #3eb15b, #318b48);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #3eb15b, #318b48);
    /* IE10 */
    background-image: -o-linear-gradient(top, #3eb15b, #318b48);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #3eb15b, #318b48);
    color: #ffffff;
}

.btn-success:hover {
    color: #ffffff;
    background-color: #2a783e;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3eb15b), to(#2a783e));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #3eb15b, #2a783e);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #3eb15b, #2a783e);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #3eb15b, #2a783e);
    /* IE10 */
    background-image: -o-linear-gradient(top, #3eb15b, #2a783e);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #3eb15b, #2a783e);
}

.btn-success:focus,
.btn-success.active,
.btn-success:active,
.btn-success:focus,
.btn-success.active.focus,
.btn-success:active.focus,
.btn-success:active:focus {
    background-color: #318b48;
}

.btn-info {
    background-color: #e3a814;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#e3a814), to(#e3a814));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #e3a814, #e3a814);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #e3a814, #e3a814);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #e3a814, #e3a814);
    /* IE10 */
    background-image: -o-linear-gradient(top, #e3a814, #e3a814);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #e3a814, #e3a814);
    color: #ffffff;
}

.btn-info:hover {
    color: #ffffff;
    background-color: #e3a814;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fdd163), to(#e6b12c));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #fdd163, #e6b12c);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #fdd163, #e6b12c);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #fdd163, #e6b12c);
    /* IE10 */
    background-image: -o-linear-gradient(top, #fdd163, #e6b12c);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #fdd163, #e6b12c);
}

.btn-info:focus,
.btn-info.active,
.btn-info:active,
.btn-info:focus,
.btn-info.active.focus,
.btn-info:active.focus,
.btn-info:active:focus {
    background-color: #e3a814;
}

.btn-warning {
    background-color: #e6a200;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ffb400), to(#e6a200));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #ffb400, #e6a200);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #ffb400, #e6a200);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #ffb400, #e6a200);
    /* IE10 */
    background-image: -o-linear-gradient(top, #ffb400, #e6a200);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #ffb400, #e6a200);
    color: #ffffff;
}

.btn-warning:hover {
    color: #ffffff;
    background-color: #c28900;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ffb400), to(#c28900));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #ffb400, #c28900);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #ffb400, #c28900);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #ffb400, #c28900);
    /* IE10 */
    background-image: -o-linear-gradient(top, #ffb400, #c28900);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #ffb400, #c28900);
}

.btn-warning:focus,
.btn-warning.active,
.btn-warning:active,
.btn-warning:focus,
.btn-warning.active.focus,
.btn-warning:active.focus,
.btn-warning:active:focus {
    background-color: #cc9000;
}

.btn-fb {
    background-color: #344e86;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#e8eff9), to(#344e86));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #e8eff9, #344e86);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #e8eff9, #344e86);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #e8eff9, #344e86);
    /* IE10 */
    background-image: -o-linear-gradient(top, #e8eff9, #344e86);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #e8eff9, #344e86);
    color: #ffffff;
}

.btn-fb:hover {
    color: #ffffff;
    background-color: #263961;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#e8eff9), to(#263961));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #e8eff9, #263961);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #e8eff9, #263961);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #e8eff9, #263961);
    /* IE10 */
    background-image: -o-linear-gradient(top, #e8eff9, #263961);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #e8eff9, #263961);
}

.btn-fb:focus,
.btn-fb.active,
.btn-fb:active,
.btn-fb:focus,
.btn-fb.active.focus,
.btn-fb:active.focus,
.btn-fb:active:focus {
    background-color: #2d4373;
}

.btn-tw {
    background-color: #3ea1ec;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#55ACEE), to(#3ea1ec));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #55ACEE, #3ea1ec);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #55ACEE, #3ea1ec);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #55ACEE, #3ea1ec);
    /* IE10 */
    background-image: -o-linear-gradient(top, #55ACEE, #3ea1ec);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #55ACEE, #3ea1ec);
    color: #ffffff;
}

.btn-tw:hover {
    color: #ffffff;
    background-color: #1689e0;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#55ACEE), to(#1689e0));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #55ACEE, #1689e0);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #55ACEE, #1689e0);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #55ACEE, #1689e0);
    /* IE10 */
    background-image: -o-linear-gradient(top, #55ACEE, #1689e0);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #55ACEE, #1689e0);
}

.btn-tw:focus,
.btn-tw.active,
.btn-tw:active,
.btn-tw:focus,
.btn-tw.active.focus,
.btn-tw:active.focus,
.btn-tw:active:focus {
    background-color: #2795e9;
}

.btn-gp {
    background-color: #d62020;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#E02F2F), to(#d62020));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #E02F2F, #d62020);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #E02F2F, #d62020);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #E02F2F, #d62020);
    /* IE10 */
    background-image: -o-linear-gradient(top, #E02F2F, #d62020);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #E02F2F, #d62020);
    color: #ffffff;
}

.btn-gp:hover {
    color: #ffffff;
    background-color: #a91919;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#E02F2F), to(#a91919));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #E02F2F, #a91919);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #E02F2F, #a91919);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #E02F2F, #a91919);
    /* IE10 */
    background-image: -o-linear-gradient(top, #E02F2F, #a91919);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #E02F2F, #a91919);
}

.btn-gp:focus,
.btn-gp.active,
.btn-gp:active,
.btn-gp:focus,
.btn-gp.active.focus,
.btn-gp:active.focus,
.btn-gp:active:focus {
    background-color: #bf1d1d;
}

.btn-lkdn {
    background-color: #006a9c;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#007BB5), to(#006a9c));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #007BB5, #006a9c);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #007BB5, #006a9c);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #007BB5, #006a9c);
    /* IE10 */
    background-image: -o-linear-gradient(top, #007BB5, #006a9c);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #007BB5, #006a9c);
    color: #ffffff;
}

.btn-lkdn:hover {
    color: #ffffff;
    background-color: #004769;
    /* Fallback Color */
    background-image: -webkit-gradient(linear, left top, left bottom, from(#007BB5), to(#004769));
    /* Saf4+, Chrome */
    background-image: -webkit-linear-gradient(top, #007BB5, #004769);
    /* Chrome 10+, Saf5.1+, iOS 5+ */
    background-image: -moz-linear-gradient(top, #007BB5, #004769);
    /* FF3.6 */
    background-image: -ms-linear-gradient(top, #007BB5, #004769);
    /* IE10 */
    background-image: -o-linear-gradient(top, #007BB5, #004769);
    /* Opera 11.10+ */
    background-image: linear-gradient(top, #007BB5, #004769);
}

.btn-lkdn:focus,
.btn-lkdn.active,
.btn-lkdn:active,
.btn-lkdn:focus,
.btn-lkdn.active.focus,
.btn-lkdn:active.focus,
.btn-lkdn:active:focus {
    background-color: #005882;
}

.btn-rounded {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}

.btn-group.open .dropdown-toggle {
    box-shadow: none;
}

.btn-link {
    padding: 6px 0;
    font-size: 12px;
    border: 0;
}

.btn-link i {
    font-size: 16px;
    float: left;
    margin-right: 5px;
}

.btn-transparent {
    background: transparent;
    background-image: none;
    border: 1px solid #c9d9ea;
}

.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent:active {
    background-image: none;
    background: none !important;
    border: 1px solid #88abcf;
}

.btn-transparent.btn-danger {
    color: #2c6087;
}

.btn-transparent.btn-danger:focus,
.btn-transparent.btn-danger:active {
    color: #ffffff;
}

.btn-transparent.btn-warning {
    color: #ffb400;
}

.btn-transparent.btn-warning:focus,
.btn-transparent.btn-warning:active {
    color: #ffffff;
}

.btn-transparent.btn-success {
    color: #3eb15b;
}

.btn-transparent.btn-success:focus,
.btn-transparent.btn-success:active {
    color: #ffffff;
}

.btn-transparent.btn-info {
    color: #2c6087;
}

.btn-transparent.btn-info:focus,
.btn-transparent.btn-info:active {
    color: #ffffff;
}

.demo-btn-group .btn {
    min-width: 80px;
}

.blog-btn-group .btn {
    margin-left: 2px;
    float: left;
    margin-bottom: 2px;
}

@media (max-width: 767px) {
    .demo-btn-group {
        text-align: center;
    }
    .demo-btn-group .btn {
        margin-bottom: 3px;
    }
}

.badge {
    color: #ffffff;
    font-weight: 600;
    padding: .3em .8em;
}

.badge-default {
    background: #d1dfec;
    border: 1px solid #d1dfec;
    color: #2a303e;
}

.badge-default[href]:hover,
.badge-default[href]:focus {
    background: #bed2e5;
    border: 1px solid #bed2e5;
    color: #2a303e;
}

.badge-success {
    background-color: #3eb15b;
    border: 1px solid #3eb15b;
}

.badge-success[href]:hover,
.badge-success[href]:focus {
    background-color: #318b48;
    border: 1px solid #318b48;
}

.badge-info {
    background-color: #2c6087;
    border: 1px solid #2c6087;
}

.badge-info[href]:hover,
.badge-info[href]:focus {
    background-color: #2d6ca2;
    border: 1px solid #2d6ca2;
}

.badge-warning {
    background-color: #ffb400;
    border: 1px solid #ffb400;
}

.badge-warning[href]:hover,
.badge-warning[href]:focus {
    background-color: #cc9000;
    border: 1px solid #cc9000;
}

.badge-danger {
    background-color: #2c6087;
    border: 1px solid #2c6087;
}

.badge-danger[href]:hover,
.badge-danger[href]:focus {
    background-color: #de1c18;
    border: 1px solid #de1c18;
}

.badge-grey {
    background-color: #4d4d4d;
    border: 1px solid #4d4d4d;
    color: #ffffff;
}

.badge-grey[href]:hover,
.badge-grey[href]:focus {
    background-color: #333333;
    border: 1px solid #333333;
}

.badge-bdr {
    background-color: transparent;
}

.badge-bdr.badge-default {
    color: #4d4d4d;
}

.badge-bdr.badge-danger {
    color: #2c6087;
}

.badge-bdr.badge-success {
    color: #3eb15b;
}

.badge-bdr.badge-warning {
    color: #ffb400;
}

.badge-bdr.badge-info {
    color: #2c6087;
}

.badge-bdr.badge-grey {
    color: #000000;
}

.labels-inline .label {
    margin: 2px;
    float: left;
}

.label {
    color: #ffffff;
    font-weight: 600;
    padding: .3em .8em;
}

.label-default {
    background: #d1dfec;
    border: 1px solid #d1dfec;
    color: #2a303e;
}

.label-default[href]:hover,
.label-default[href]:focus {
    background-color: #bed2e5;
    border: 1px solid #bed2e5;
    color: #2a303e;
}

.label-primary {
    background-color: #2a303e;
    border: 1px solid #2a303e;
}

.label-primary[href]:hover,
.label-primary[href]:focus {
    background-color: #151820;
    border: 1px solid #151820;
}

.label-success {
    background-color: #3eb15b;
    border: 1px solid #3eb15b;
}

.label-success[href]:hover,
.label-success[href]:focus {
    background-color: #318b48;
    border: 1px solid #318b48;
}

.label-info {
    background-color: #2c6087;
    border: 1px solid #2c6087;
}

.label-info[href]:hover,
.label-info[href]:focus {
    background-color: #2d6ca2;
    border: 1px solid #2d6ca2;
}

.label-warning {
    background-color: #ffb400;
    border: 1px solid #ffb400;
}

.label-warning[href]:hover,
.label-warning[href]:focus {
    background-color: #cc9000;
    border: 1px solid #cc9000;
}

.label-danger {
    background-color: #2c6087;
    border: 1px solid #2c6087;
}

.label-danger[href]:hover,
.label-danger[href]:focus {
    background-color: #de1c18;
    border: 1px solid #de1c18;
}

.label-violet {
    background-color: #c38fbb;
    border: 1px solid #c38fbb;
}

.label-violet[href]:hover,
.label-violet[href]:focus {
    background-color: #b16ea7;
    border: 1px solid #b16ea7;
}

.label-orange {
    background-color: #ed6d49;
    border: 1px solid #ed6d49;
}

.label-orange[href]:hover,
.label-orange[href]:focus {
    background-color: #e8481b;
    border: 1px solid #e8481b;
}

.label-teal {
    background-color: #47BCC7;
    border: 1px solid #47BCC7;
}

.label-teal[href]:hover,
.label-teal[href]:focus {
    background-color: #339ea8;
    border: 1px solid #339ea8;
}

.label-grey {
    background-color: #4d4d4d;
    border: 1px solid #4d4d4d;
    color: #ffffff;
}

.label-grey[href]:hover,
.label-grey[href]:focus {
    background-color: #333333;
    border: 1px solid #333333;
}

.label-bdr {
    background-color: transparent;
}

.label-bdr.label-default {
    color: #4d4d4d;
}

.label-bdr.label-danger {
    color: #2c6087;
}

.label-bdr.label-success {
    color: #3eb15b;
}

.label-bdr.label-warning {
    color: #ffb400;
}

.label-bdr.label-info {
    color: #2c6087;
}

.label-bdr.label-grey {
    color: #000000;
}

.label-light {
    font-family: 'open_sansregular';
    padding: 4px 10px;
}

.label-light.label-default {
    background: #f2f2f2;
    border: 1px solid #d9d9d9;
    color: gray;
}

.label-light.label-danger {
    background: #fdeeee;
    border: 1px solid #f7b3b2;
    color: #2c6087;
}

.label-light.label-success {
    background: #c6ebcf;
    border: 1px solid #6fcd87;
    color: #3eb15b;
}

.label-light.label-warning {
    background: #fffbf0;
    border: 1px solid #ffd266;
    color: #cc9000;
}

.label-light.label-info {
    background: #edf4fa;
    border: 1px solid #9ec3e4;
    color: #2c6087;
}

.label-light.label-grey {
    background-color: #e6e6e6;
    border: 1px solid #bfbfbf;
    color: #000000;
}

.pager li>a,
.pager li>span {
    background-color: #2c6087;
    border-color: #2c6087;
    color: #ffffff;
}

.pager li>a:hover,
.pager li>span:hover {
    color: #ffffff;
    background-color: #3379b6;
    border: 1px solid #3379b6;
}

.pager li>a:focus,
.pager li>span:focus {
    color: #ffffff;
    background-color: #2d6ca2;
    border: 1px solid #2d6ca2;
}

.list-group-item {
    border: 1px solid #ededed;
    background-color: #ffffff;
}

.list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.list-group-item:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.list-group-item i {
    font-size: 16px;
    vertical-align: middle;
}

a.list-group-item-info {
    background-color: #2c6087;
    color: #ffffff;
    border: 1px solid #2c6087;
}

a.list-group-item-info:hover,
a.list-group-item-info:focus {
    background-color: #4e92ce;
    border: 1px solid #4e92ce;
    color: #ffffff;
}

a.list-group-item-warning {
    background-color: #ffb400;
    color: #ffffff;
    border: 1px solid #ffb400;
}

a.list-group-item-warning:hover,
a.list-group-item-warning:focus {
    background-color: #ffbc1a;
    border: 1px solid #ffbc1a;
    color: #ffffff;
}

a.list-group-item-success {
    background-color: #3eb15b;
    color: #ffffff;
    border: 1px solid #3eb15b;
}

a.list-group-item-success:hover,
a.list-group-item-success:focus {
    background-color: #49bf67;
    border: 1px solid #49bf67;
    color: #ffffff;
}

a.list-group-item-danger {
    background-color: #2c6087;
    color: #ffffff;
    border: 1px solid #2c6087;
}

a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
    background-color: #ed5956;
    border: 1px solid #ed5956;
    color: #ffffff;
}

a.list-group-item-inverse {
    background-color: #4d4d4d;
    color: #ffffff;
    border: 1px solid #4d4d4d;
}

a.list-group-item-inverse:hover,
a.list-group-item-inverse:focus {
    background-color: #2aaf75;
    border: 1px solid #2aaf75;
    color: #ffffff;
}

.modal-content {
    box-shadow: 0 0 10px #cedcec;
    border: 1px solid #bed2e5;
}

.breadcrumb {
    background: #e3ebf4;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin: 0 0 10px 0;
}

.breadcrumbs {
    font-size: 14px;
    padding: 15px;
    background: #e3ebf4;
    margin: 0 0 10px 0;
}

.breadcrumbs i {
    vertical-align: middle;
}

.breadcrumbs>li {
    display: inline-block;
    margin: 0 10px 0 0;
    position: relative;
    vertical-align: middle;
    color: #666666;
    padding: 0 10px;
}

.breadcrumbs>li:before,
.breadcrumbs>li:after {
    display: block;
    position: absolute;
    vertical-align: middle;
    color: transparent;
    font-size: 0;
    content: "";
    height: 1px;
    width: 7px;
    background-color: #1d1d1d;
    top: 50%;
    left: 100%;
    margin-left: 5px;
}

.breadcrumbs>li:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -2px;
}

.breadcrumbs>li:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 2px;
}

.breadcrumbs>li>a {
    color: inherit;
    display: inline-block;
    line-height: 1;
}

.breadcrumbs>li:last-child {
    color: #000000;
    font-weight: bolder;
}

.breadcrumbs>li:last-child a {
    cursor: default;
}

.breadcrumbs>li:last-child:before,
.breadcrumbs>li:last-child:after {
    background-color: transparent;
}

.breadcrumbs>li:hover {
    color: #1d1d1d;
}

.breadcrumbs img,
.breadcrumbs .icon {
    display: inline-block;
    line-height: .8;
    height: 1rem;
    width: 1rem;
    font-size: 1rem;
    vertical-align: -15%;
}

.breadcrumbs.dark {
    background-color: #333333;
}

.breadcrumbs.dark>li:hover,
.breadcrumbs.dark>li:last-child {
    color: #ffffff;
}

.breadcrumbs.dark>li:before,
.breadcrumbs.dark>li:after {
    background-color: #ffffff;
}

.breadcrumbs.primary {
    background-color: #2c6087;
}

.breadcrumbs.primary>li {
    color: #9ec3e4;
}

.breadcrumbs.primary>li:hover,
.breadcrumbs.primary>li:last-child {
    color: #ffffff;
}

.breadcrumbs.primary>li:before,
.breadcrumbs.primary>li:after {
    background-color: #ffffff;
}

.breadcrumbs2 {
    margin: 0 0 10px 0;
    overflow: hidden;
    width: 100%;
}

.breadcrumbs2 i {
    vertical-align: middle;
}

.breadcrumbs2 li {
    float: left;
    margin: 0 .2em 0 1em;
}

.breadcrumbs2 a {
    background: #dbe6f1;
    padding: 2px 3px;
    float: left;
    text-decoration: none;
    color: #2a303e;
    position: relative;
}

.breadcrumbs2 a:hover {
    background: #2c6087;
    color: #ffffff;
}

.breadcrumbs2 a:hover:before {
    border-color: #2c6087 #2c6087 #2c6087 transparent;
}

.breadcrumbs2 a:hover:after {
    border-left-color: #2c6087;
}

.breadcrumbs2 a:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -20px;
    border-width: 20px 0 20px 12px;
    border-style: solid;
    border-color: #dbe6f1 #dbe6f1 #dbe6f1 transparent;
    left: -13px;
    margin-left: 1px;
}

.breadcrumbs2 a:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -20px;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 12px solid #dbe6f1;
    right: -13px;
    margin-right: 1px;
}

.breadcrumbs2>li:first-child {
    margin-left: 0;
}

.breadcrumbs2>li:first-child a:before {
    content: normal;
}

.breadcrumbs2>li:last-child {
    background: #d1dfec;
}

.breadcrumbs2>li:last-child a {
    color: #2c6087;
}

.breadcrumbs2>li:last-child:after,
.breadcrumbs2>li:last-child:before {
    content: normal;
}

.breadcrumbs2>li:last-child:hover a {
    color: #ffffff;
}

.breadcrumbs2 .active {
    background: none;
}

.breadcrumbs2 .active:hover {
    background: none;
}

.breadcrumbs2 .active a {
    color: #1d1d1d;
}

.breadcrumbs2 .active:hover a {
    color: #1d1d1d;
    color: #ffffff;
}

.breadcrumbs2 .active:after,
.breadcrumbs2 .active:before {
    content: normal;
}

.breadcrumbs2.small a {
    padding: .2em 1em;
    font-size: 11.9px;
}

.breadcrumbs2>li>a>[class*=mif] {
    vertical-align: -10%;
}

.alert-dismissable .close {
    right: 0;
}

.alert {
    padding: 15px 15px 15px 45px;
    margin-bottom: 10px;
    font-size: 15px;
    position: relative;
    background: #F8F8F9;
    border: 1px solid #aaaaaa;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.alert i {
    margin-right: 10px;
    font-size: 21px;
    vertical-align: middle;
    position: absolute;
    left: 15px;
    top: 14px;
}

.alert.no-margin {
    margin: 0;
}

.alert.alert-transparent {
    background-color: transparent;
}

.alert.alert-transparent.alert-success {
    color: #2C662D;
    border-color: #A3C293;
}

.alert.alert-transparent.alert-info {
    color: #276F86;
    border-color: #A9D5DE;
}

.alert.alert-transparent.alert-danger {
    color: #9F3A38;
    border-color: #E0B4B4;
}

.alert.alert-transparent.alert-warning {
    color: #573A08;
    border-color: #C9BA9B;
}

.alert-success {
    color: #ffffff;
    background-color: #3eb15b;
    border-color: #3eb15b;
}

.alert-success.light {
    background-color: #FCFFF5;
    color: #2C662D;
    border-color: #A3C293;
}

.alert-info {
    color: #ffffff;
    background-color: #2c6087;
    border-color: #2c6087;
}

.alert-info.light {
    background-color: #F8FFFF;
    color: #276F86;
    border-color: #A9D5DE;
}

.alert-warning {
    color: #ffffff;
    background-color: #ffb400;
    border-color: #ffb400;
}

.alert-warning.light {
    background-color: #FFFAF3;
    color: #573A08;
    border-color: #C9BA9B;
}

.alert-danger {
    color: #ffffff;
    background-color: #ea423f;
    border-color: #ea423f;
}

.alert-danger.light {
    background-color: #FFF6F6;
    color: #9F3A38;
    border-color: #E0B4B4;
}

.alert-borderd {
    background: transparent;
    color: #4d4d4d;
}

.tooltip-inner {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.popover {
    background: #1a1a1a;
    border: 1px solid #1a1a1a;
    color: #ffffff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.popover.left>.arrow:after {
    border-left-color: #1a1a1a;
}

.popover.right>.arrow:after {
    border-right-color: #1a1a1a;
}

.popover.top>.arrow:after {
    border-top-color: #1a1a1a;
}

.popover.bottom>.arrow:after {
    border-bottom-color: #1a1a1a;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 8px 12px;
}

.table-condensed>tbody>tr>td,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>td,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>thead>tr>th {
    padding: 6px 12px;
}

.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td,
.table>tfoot>tr>td {
    border-top: 1px solid #dbe6f1;
}

.table>thead>tr>th,
.table>thead>tr>td {
    font-size: 13px;
    font-family: 'open_sansregular';
}

.table>thead>tr>th {
    border-bottom: 2px solid #dbe6f1;
}

.table.info>thead>tr>th {
    border-bottom: 1px solid #2c6087;
    background: #2c6087;
    color: #ffffff;
}

.table.success>thead>tr>th {
    border-bottom: 1px solid #3eb15b;
    background: #3eb15b;
    color: #ffffff;
}

.table.danger>thead>tr>th {
    border-bottom: 1px solid #2c6087;
    background: #2c6087;
    color: #ffffff;
}

.table.warning>thead>tr>th {
    border-bottom: 1px solid #ffb400;
    background: #ffb400;
    color: #ffffff;
}

.table-striped>tbody>tr:nth-child(odd)>td,
.table-striped>tbody>tr:nth-child(odd)>th {
    background: #f1f5fa;
}

.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 #e3ebf4;
}

.table-bordered {
    border: 1px solid #e3ebf4;
}

.table-hover>tbody>tr:hover>td,
.table-hover>tbody>tr:hover>th {
    background: #eef3f8;
}

.table>thead>tr>td.success,
.table>tbody>tr>td.success,
.table>tfoot>tr>td.success,
.table>thead>tr>th.success,
.table>tbody>tr>th.success,
.table>tfoot>tr>th.success,
.table>thead>tr.success>td,
.table>tbody>tr.success>td,
.table>tfoot>tr.success>td,
.table>thead>tr.success>th,
.table>tbody>tr.success>th,
.table>tfoot>tr.success>th {
    background: #5cc677;
    color: #ffffff;
    border-top: 0;
}

.table-hover>tbody>tr>td.success:hover,
.table-hover>tbody>tr>th.success:hover,
.table-hover>tbody>tr.success:hover>td,
.table-hover>tbody>tr:hover>.success,
.table-hover>tbody>tr.success:hover>th {
    background: #3eb15b;
}

.table>thead>tr>td.danger,
.table>tbody>tr>td.danger,
.table>tfoot>tr>td.danger,
.table>thead>tr>th.danger,
.table>tbody>tr>th.danger,
.table>tfoot>tr>th.danger,
.table>thead>tr.danger>td,
.table>tbody>tr.danger>td,
.table>tfoot>tr.danger>td,
.table>thead>tr.danger>th,
.table>tbody>tr.danger>th,
.table>tfoot>tr.danger>th {
    background: #2c6087;
    color: #ffffff;
    border-top: 0;
}

.table-hover>tbody>tr>td.danger:hover,
.table-hover>tbody>tr>th.danger:hover,
.table-hover>tbody>tr.danger:hover>td,
.table-hover>tbody>tr:hover>.danger,
.table-hover>tbody>tr.danger:hover>th {
    background: #e8302d;
}

.table>thead>tr>td.warning,
.table>tbody>tr>td.warning,
.table>tfoot>tr>td.warning,
.table>thead>tr>th.warning,
.table>tbody>tr>th.warning,
.table>tfoot>tr>th.warning,
.table>thead>tr.warning>td,
.table>tbody>tr.warning>td,
.table>tfoot>tr.warning>td,
.table>thead>tr.warning>th,
.table>tbody>tr.warning>th,
.table>tfoot>tr.warning>th {
    background: #ffb400;
    color: #ffffff;
    border-top: 0;
}

.table-hover>tbody>tr>td.warning:hover,
.table-hover>tbody>tr>th.warning:hover,
.table-hover>tbody>tr.warning:hover>td,
.table-hover>tbody>tr:hover>.warning,
.table-hover>tbody>tr.warning:hover>th {
    background: #e09e00;
}

.table>thead>tr>td.info,
.table>tbody>tr>td.info,
.table>tfoot>tr>td.info,
.table>thead>tr>th.info,
.table>tbody>tr>th.info,
.table>tfoot>tr>th.info,
.table>thead>tr.info>td,
.table>tbody>tr.info>td,
.table>tfoot>tr.info>td,
.table>thead>tr.info>th,
.table>tbody>tr.info>th,
.table>tfoot>tr.info>th {
    background: #2c6087;
    color: #ffffff;
    border-top: 0;
}

.table-hover>tbody>tr>td.info:hover,
.table-hover>tbody>tr>th.info:hover,
.table-hover>tbody>tr.info:hover>td,
.table-hover>tbody>tr:hover>.info,
.table-hover>tbody>tr.info:hover>th {
    background: #3174ae;
}

@media screen and (max-width: 767px) {
    .table-responsive {
        border: 1px solid #e6e6e6;
    }
}

.table-middle>tbody>tr>td,
.table-middle>tbody>tr>th,
.table-middle>tfoot>tr>td,
.table-middle>tfoot>tr>th,
.table-middle>thead>tr>td,
.table-middle>thead>tr>th {
    vertical-align: middle;
}

.table-no-border>tbody>tr>td,
.table-no-border>tbody>tr>th,
.table-no-border>tfoot>tr>td,
.table-no-border>tfoot>tr>th,
.table-no-border>thead>tr>td,
.table-no-border>thead>tr>th {
    border: none;
    padding: 10px 0px;
}

.table>tbody>tr>td.td-v-align {
    vertical-align: middle;
}

.pagination>li>a,
.pagination>li>span {
    background: #eef3f8;
    border: 1px solid #d1dfec;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    color: #2c6087;
    background-color: #d1dfec;
    border-color: #d1dfec;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    color: #ffffff;
    background-color: #2c6087;
    border-color: #2c6087;
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
    background-color: white;
    border-color: white;
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.form-control {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: none;
    -webkit-box-shadow: none;
    border: 1px solid #d4dae2;
    background: #ffffff;
    padding: 6px 10px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.form-control:focus {
    border: 1px solid #97a5b9;
    box-shadow: none;
    outline: none;
    -webkit-box-shadow: none;
    color: #000000;
}

.input-group-addon {
    border: 1px solid #bed2e5;
    background: #f5f8fb;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background: #d1dfec;
}

.has-feedback label~.form-control-feedback {
    top: 23px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
    color: #3eb15b;
}

.has-success .form-control {
    border-color: #3eb15b;
    box-shadow: none;
    -webkit-box-shadow: none;
    color: #3eb15b;
}

.has-success .form-control:focus {
    border-color: #318b48;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.has-success .form-control-feedback {
    color: #3eb15b;
}

.has-success .input-group-addon {
    border-color: #3eb15b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
    color: #de1c18;
}

.has-error .form-control {
    border-color: #de1c18;
    box-shadow: none;
    -webkit-box-shadow: none;
    color: #2c6087;
}

.has-error .form-control:focus {
    border-color: #de1c18;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.has-error .form-control-feedback {
    color: #de1c18;
}

.has-error .input-group-addon {
    border-color: #de1c18;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
    color: #ffb400;
}

.has-warning .form-control {
    border-color: #ffb400;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.has-warning .form-control:focus {
    border-color: #cc9000;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.has-warning .form-control-feedback {
    color: #ffb400;
}

.has-warning .input-group-addon {
    border-color: #ffb400;
}

.has-info .help-block,
.has-info .control-label,
.has-info .radio,
.has-info .checkbox,
.has-info .radio-inline,
.has-info .checkbox-inline {
    color: #2c6087;
}

.has-info .form-control {
    border-color: #2c6087;
    box-shadow: none;
    -webkit-box-shadow: none;
    color: #2c6087;
}

.has-info .form-control:focus {
    border-color: #2d6ca2;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.has-info .form-control-feedback {
    color: #2c6087;
}

.has-info .input-group-addon {
    border-color: #2c6087;
}

legend {
    padding: 0 0 6px 0;
    font-size: 16px;
    line-height: inherit;
    border: 0;
    border-bottom: 1px solid #e0e0e0;
}

label {
    font-size: 14px;
    font-family: 'open_sansregular';
}

.help-block {
    font-size: 11px;
}

input[type=checkbox],
input[type=radio] {
    margin-top: 2px;
}

.nav-tabs {
    border-bottom: 1px solid #d1dfec;
}

.nav-tabs li a {
    margin-right: 1px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 1px solid #e3ebf4;
    background: #e3ebf4;
}

.nav-tabs li a:hover {
    background: #d8e4ef;
    border: 1px solid #d8e4ef;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    background: transparent;
    color: #000000;
    border: 1px solid #d1dfec;
    border-bottom: 1px solid #ffffff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.tab-content {
    padding: 20px;
    border: 1px solid #d1dfec;
    border-top: 0;
}

.mark,
mark {
    background-color: #ffb400;
    color: #000000;
}

.gutter.row {
    margin-right: -8px;
    margin-left: -8px;
}

.gutter>[class^="col-"],
.gutter-10>[class^=" col-"] {
    padding-right: 8px;
    padding-left: 8px;
}

.panel-sortable {
    cursor: move;
}

.panel-sortable .panel {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.panel-sortable .panel:after {
    content: "\e5c8";
    font-family: 'icomoon';
    position: absolute;
    right: 30px;
    bottom: 30px;
    font-size: 20px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.panel-sortable .panel:hover {
    border: 1px dotted #2c6087;
    background: #212730;
    background-color: #ffffff;
}

.panel-sortable .panel:hover:after {
    color: #2c6087;
    font-size: 32px;
}

.panel-sortable .panel .panel-body {
    min-height: 100px;
}


/*DNB developer CSS START*/

.padding-left-0 {
    padding-left: 0px !important;
}

.padding-right-0 {
    padding-right: 0px !important;
}

.btn-action {
    display: inline-block;
    padding: 0px 5px;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.128571;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 10px;
}

.font-gray {
    color: #4d4d4d;
}

.block-365 {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 15px;
    padding: 15px;
    display: block;
    height: 495px;
    /*365*/
    text-align: center;
}

.chart-height7 {
    position: relative;
    height: 445px;
    /*315*/
    overflow: hidden;
}

.news-heading {
    background-color: #d4a139;
    padding: 10px 5px 10px 5px;
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
}

.news-body {
    background-color: #FFF;
    color: #000;
    padding: 10px 5px 10px 5px;
}

.news-home-main {
    margin: 5px 0px 5px 0px;
    border: 1px solid #d4a139;
}

.button-home {
    margin: 0 0 15px 0;
    display: block;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.button-home .button-home-body {
    padding: 9px 15px;
    font-size: 36px;
    font-family: 'open_sanslight';
    /*background: #2aaf75;*/
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0px 0xp 3px 3px;
    border: 1px solid #2c6087;
}

.button-home .button-home-body i {
    color: #2c6087;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -ms-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
    transition: All 0.5s ease-in;
    font-size: 40px;
    line-height: 40px;
    /*       text-shadow: -4px -3px 3px #000;*/
}

.button-home:hover {
    box-shadow: 0px 4px 8px #2c6087;
}

.button-home .button-home-body .number {
    color: #2c6087;
    font-weight: bold;
    padding-top: 7%;
    /*    text-shadow: -4px -3px 3px #000;*/
    font-size: 14px;
}

.lable-alignment {
    text-align: right;
    padding-top: 7px;
}


/* Custom Radio */

.custom-radio:checked,
.custom-radio:not(:checked) {
    position: absolute;
    left: -9999px;
}

.custom-radio:checked+label,
.custom-radio:not(:checked)+label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    line-height: 18px;
    display: inline-block;
    /* color: #666; */
}

.custom-radio:checked+label:before,
.custom-radio:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #c5c2c2;
    border-radius: 100%;
    background: #fff;
}

.custom-radio:checked+label:after,
.custom-radio:not(:checked)+label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #255a71;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custom-radio:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custom-radio:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* Custom Checkboxes */

.custom-checkbox>[type="checkbox"],
.custom-checkbox>label {
    margin-bottom: 0px !important;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-checkbox>[type="checkbox"]:not(:checked),
.custom-checkbox>[type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

.custom-checkbox>[type="checkbox"]:not(:checked)+label,
.custom-checkbox>[type="checkbox"]:checked+label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

.custom-checkbox>[type="checkbox"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
    width: 23px;
    height: 23px;
    border: 1px solid #c5c2c2;
    background: #ffffff;
    border-radius: 2px;
    transition: all .5s;
}

.custom-checkbox>[type="checkbox"]:checked+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
    width: 23px;
    height: 23px;
    border: 1px solid #ddd;
    background: #068c4f;
    border-radius: 2px;
    transition: all .5s;
}

.custom-checkbox>[type="checkbox"]:not(:checked)+label:after {
    font: normal normal normal 14px/1 icomoon;
    /*content: '\f00c';*/
    content: '\e5ca';
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 4px;
    color: #068c4f;
    transition: all .2s;
}

.custom-checkbox>[type="checkbox"]:checked+label:after {
    font: normal normal normal 14px/1 icomoon;
    content: '\e5ca';
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 4px;
    color: #FFFFFF;
    transition: all .2s;
}

.custom-checkbox>[type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
    transform: scale(0);
}

.custom-checkbox>[type="checkbox"]:checked+label:after {
    opacity: 1;
    transform: scale(1);
}

.custom-checkbox>[type="checkbox"][data-indeterminate]+label:after,
.custom-checkbox>[type="checkbox"][data-indeterminate]+label:after {
    content: '\e5ca';
    left: 6px;
    opacity: 1;
    transform: scale(1);
}

.custom-checkbox>[type="checkbox"]:disabled:not(:checked)+label:before,
.custom-checkbox>[type="checkbox"]:disabled:checked+label:before {
    box-shadow: none;
    background-color: #eeeeee;
    border-color: #eeeeee;
    cursor: not-allowed;
    opacity: 1;
    color: #dadada;
}

.custom-checkbox>[type="checkbox"]:disabled:checked+label:after {
    color: #dadada;
    cursor: not-allowed;
}

.custom-checkbox>[type="checkbox"]:disabled+label {
    color: #aaa;
    cursor: not-allowed;
}

.custom-checkbox>[type="checkbox"]:checked:focus+label:before,
.custom-checkbox>[type="checkbox"]:not(:checked):focus+label:before {
    border: 1px solid #66afe9;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.custom-checkbox>label:hover:before {
    border: 1px solid #88D2FF !important;
}

.custom-checkbox>[type="checkbox"]:disabled:not(:checked)+label:hover:before,
.custom-checkbox>[type="checkbox"]:disabled:checked+label:hover:before {
    border: 1px solid #E4E4E4 !important;
}

.text-large {
    font-size: 20px;
}

.btn-link-1 {
    font-size: 13px;
    font-weight: bold;
    color: #3737ff;
    text-decoration: underline;
}

span.separator {
    padding: 5px;
    vertical-align: middle;
}


/*DNB developer CSS END*/


/*# sourceMappingURL=main.css.map */

.panel-heading button {
    float: right;
    margin-top: -7px;
}


/* ************************************************************************** */

.top-bar h3.page-title {
    line-height: 40px;
    font-size: 20px;
}

p.page-title {
    font-size: 18;
    font-weight: bold;
}

button.btn.edit {
    width: 100%;
    color: blue;
    /* color:blue; */
}

button.btn.delete {
    width: 100%;
    color: red;
    /* color:red; */
}

.ed {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.next {
    margin-top: 200px;
}

input.form-control-plaintext {
    /* height: 25px; */
    width: 100%;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    box-shadow: none;
    -webkit-box-shadow: none;
    border: 1px solid #d4dae2;
    background: #ffffff;
    padding: 6px 10px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

label.cus-id {
    padding: 7px 10px;
    font-size: x-large;
}

.address-container,
.currency-payment-container {
    align-items: center;
    width: 100%;
    padding: 15px;
}

.address-container .address__button,
.currency-payment-container .currency-payment__button {
    min-height: 50px;
    align-items: center;
    width: 100%;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    border: solid 1px #ddd;
    background: #FFF;
    cursor: pointer;
    text-align: center;
}

.address-container input[type=radio],
.currency-payment-container input[type=radio] {
    display: none;
}

.address-container input[type=radio]:checked+label,
.currency-payment-container input[type=radio]:checked+label {
    border: solid 1px #6E8CA0;
    background: #ccc8c8;
}

.resize-vertical-only {
    resize: vertical;
    min-height: 60px;
}

* {
    box-sizing: border-box;
}


/* Create three equal columns that floats next to each other */

.column {
    float: left;
    width: 33.33%;
    padding: 0 10px;
    height: 337px;
    /* Should be removed. Only for demonstration */
}


/* Remove extra left and right margins, due to padding */

.row {
    margin: 0 -5px;
}


/* Clear floats after the columns */

.row:after {
    content: "";
    display: table;
    clear: both;
}


/* Responsive columns */

@media screen and (max-width: 600px) {
    .column {
        width: 100%;
        display: block;
        height: 420px!important;
        margin-bottom: 20px;
    }
    .next {
        margin-top: 10px;
    }
    .card {
        background-color: #ffffff;
    }
    lable-cus-id {
        margin-top: 25px;
    }
    input.form-control-plaintext.ex-cust {
        margin-top: 5px;
        height: 25px;
        width: 100%;
    }
}


/* Style the counter cards */

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 16px;
    text-align: center;
    background-color: #ffffff;
}


/* Button For existing customer*/

.btn {
    border: none;
    background-color: inherit;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
}

.btn.edit:hover {
    background: #318b48;
    color: white;
}

.btn.delete:hover {
    background: #e84747;
    color: white;
}

.edit {
    color: green;
}

.delete {
    color: red;
}

.font-weight-bold {
    font-weight: bold;
}

.terms a:hover {
    text-decoration: underline;
}

ul.list-disc {
    list-style: disc;
    padding-left: 20px;
}

ul.list-disc li {
    margin-bottom: 5px;
}


@-webkit-keyframes ring {
  0% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }

  2% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  4% {
    -webkit-transform: rotate(-18deg);
    transform: rotate(-18deg);
  }

  6% {
    -webkit-transform: rotate(18deg);
    transform: rotate(18deg);
  }

  8% {
    -webkit-transform: rotate(-22deg);
    transform: rotate(-22deg);
  }

  10% {
    -webkit-transform: rotate(22deg);
    transform: rotate(22deg);
  }

  12% {
    -webkit-transform: rotate(-18deg);
    transform: rotate(-18deg);
  }

  14% {
    -webkit-transform: rotate(18deg);
    transform: rotate(18deg);
  }

  16% {
    -webkit-transform: rotate(-12deg);
    transform: rotate(-12deg);
  }

  18% {
    -webkit-transform: rotate(12deg);
    transform: rotate(12deg);
  }

  20% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes ring {
  0% {
    -webkit-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }

  2% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  4% {
    -webkit-transform: rotate(-18deg);
    -ms-transform: rotate(-18deg);
    transform: rotate(-18deg);
  }

  6% {
    -webkit-transform: rotate(18deg);
    -ms-transform: rotate(18deg);
    transform: rotate(18deg);
  }

  8% {
    -webkit-transform: rotate(-22deg);
    -ms-transform: rotate(-22deg);
    transform: rotate(-22deg);
  }

  10% {
    -webkit-transform: rotate(22deg);
    -ms-transform: rotate(22deg);
    transform: rotate(22deg);
  }

  12% {
    -webkit-transform: rotate(-18deg);
    -ms-transform: rotate(-18deg);
    transform: rotate(-18deg);
  }

  14% {
    -webkit-transform: rotate(18deg);
    -ms-transform: rotate(18deg);
    transform: rotate(18deg);
  }

  16% {
    -webkit-transform: rotate(-12deg);
    -ms-transform: rotate(-12deg);
    transform: rotate(-12deg);
  }

  18% {
    -webkit-transform: rotate(12deg);
    -ms-transform: rotate(12deg);
    transform: rotate(12deg);
  }

  20% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.faa-ring.animated,
.faa-ring.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-ring {
  -webkit-animation: ring 2s ease infinite;
  animation: ring 2s ease infinite;
  transform-origin-x: 50%;
  transform-origin-y: 0px;
  transform-origin-z: initial;
}

@-webkit-keyframes burst {
  0% {
    opacity: .6;
  }

  50% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes burst {
  0% {
    opacity: .6;
  }

  50% {
    -webkit-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.faa-burst.animated,
.faa-burst.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-burst {
  -webkit-animation: burst 3s infinite linear;
  animation: burst 3s infinite linear;
}


@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  50% {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.faa-pulse.animated,
.faa-pulse.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-pulse {
  -webkit-animation: pulse 2s linear infinite;
  animation: pulse 2s linear infinite;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(.9) rotate(-8deg);
    transform: scale(.9) rotate(-8deg);
  }

  30%, 50%, 70% {
    -webkit-transform: scale(1.2) rotate(8deg);
    transform: scale(1.2) rotate(8deg);
  }

  40%, 60% {
    -webkit-transform: scale(1.2) rotate(-8deg);
    transform: scale(1.2) rotate(-8deg);
  }

  80% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(.9) rotate(-8deg);
    -ms-transform: scale(.9) rotate(-8deg);
    transform: scale(.9) rotate(-8deg);
  }

  30%, 50%, 70% {
    -webkit-transform: scale(1.2) rotate(8deg);
    -ms-transform: scale(1.2) rotate(8deg);
    transform: scale(1.2) rotate(8deg);
  }

  40%, 60% {
    -webkit-transform: scale(1.2) rotate(-8deg);
    -ms-transform: scale(1.2) rotate(-8deg);
    transform: scale(1.2) rotate(-8deg);
  }

  80% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.faa-tada.animated,
.faa-tada.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-tada {
  -webkit-animation: tada 2s linear infinite;
  animation: tada 2s linear infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  50% {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.faa-pulse.animated,
.faa-pulse.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-pulse {
  -webkit-animation: pulse 2s linear infinite;
  animation: pulse 2s linear infinite;
}


/* OVERLAP */

.div-overlap {
    position: fixed;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    display: none;
}

.div-overlap div {
    justify-content: center;
    position: relative;
    height: 100%;
    width: auto;
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column;
    color: #FFF;
}

.separator span:first-child:after {
    content: "";
    margin: 0 10px;
    border: 1px solid #6b6b6b;
    width: 10px;
    height: 100px;
    left: 0;
    top: 0px;
}

.coupon-box {
    border-radius: 10px;
}
.coupon-box form input {
    display: inline-block;
    width: 264px;
    margin-right: 13px;
    height: 44px;
    border-radius: 25px;
    border: solid 2px #cccccc;
    padding: 5px 15px;
    font-size: 14px;
}
.coupon-box input:focus {
	outline: none;
	box-shadow: none;
}
.coupon-box .round-black-btn {
	border-radius: 25px;
    background: #212529;
    color: #fff;
    padding: 8px 35px;
    display: inline-block;
    border: solid 2px #212529; 
    transition: all 0.5s ease-in-out 0s;
    cursor: pointer;
}
.coupon-box .round-black-btn:hover,
.coupon-box .round-black-btn:focus {
	background: transparent;
	color: #212529;
	text-decoration: none;
}


.table>thead>tr>td.pink,
.table>tbody>tr>td.pink,
.table>tfoot>tr>td.pink,
.table>thead>tr>th.pink,
.table>tbody>tr>th.pink,
.table>tfoot>tr>th.pink,
.table>thead>tr.pink>td,
.table>tbody>tr.pink>td,
.table>tfoot>tr.pink>td,
.table>thead>tr.pink>th,
.table>tbody>tr.pink>th,
.table>tfoot>tr.pink>th {
    background: #ffd8f7;
    color: #000;
    border-top: 0;
}

.table-body-scroll tbody {
    display : block;
    max-height : 400px;
    overflow : auto;
}

.table-body-scroll thead, 
.table-body-scroll tbody tr {
    display : table;
    width : 100%;
    table-layout : fixed;
}

.label-input {
    display: block;
    font-weight: normal;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #eee;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 2px;
}