/**** Minimal Start ****/
.pace .pace-progress {
    background: #ff7878;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    height: 2px;

    -webkit-transition: width 1s;
    -moz-transition: width 1s;
    -o-transition: width 1s;
    transition: width 1s;
}

.pace-inactive {
    display: none;
}

/**** Minimal End  ****/


/**** Big Counter Start  ****/
/*.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace.pace-inactive .pace-progress {
    display: none;
}

.pace .pace-progress {
    position: fixed;
    z-index: 2000;
    top: 50px;
    right: 0;
    height: 5rem;
    width: 5rem;
}

.pace .pace-progress:after {
    display: block;
    position: absolute;
    top: 0;
    right: .5rem;
    content: attr(data-progress-text);
    font-weight: 100;
    font-size: 70px;
    line-height: 1;
    text-align: right;
    color: rgba(255, 120, 120, 0.50);
}*/

/**** Big Counter End  ****/


/**** Bounce Start  ****/

/*.pace {
    width: 140px;
    height: 300px;
    position: fixed;
    top: -90px;
    right: -20px;
    z-index: 2000;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all 2s linear 0s;
    -moz-transition: all 2s linear 0s;
    transition: all 2s linear 0s;
}

.pace.pace-active {
    -webkit-transform: scale(.25);
    -moz-transform: scale(.25);
    -ms-transform: scale(.25);
    -o-transform: scale(.25);
    transform: scale(.25);
    opacity: 1;
}

.pace .pace-activity {
    width: 140px;
    height: 140px;
    border-radius: 70px;
    background: rgba(255, 120, 120, 0.80);
    position: absolute;
    top: 0;
    z-index: 1911;
    -webkit-animation: pace-bounce 1s infinite;
    -moz-animation: pace-bounce 1s infinite;
    -o-animation: pace-bounce 1s infinite;
    -ms-animation: pace-bounce 1s infinite;
    animation: pace-bounce 1s infinite;
}

.pace .pace-progress {
    position: absolute;
    display: block;
    left: 50%;
    bottom: 0;
    z-index: 1910;
    margin-left: -30px;
    width: 60px;
    height: 75px;
    background: rgba(20, 20, 20, .1);
    box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
    border-radius: 30px / 40px;
    -webkit-transform: scaleY(.3);
    -moz-transform: scaleY(.3);
    -ms-transform: scaleY(.3);
    -o-transform: scaleY(.3);
    transform: scaleY(.3);
    -webkit-animation: pace-compress .5s infinite alternate;
    -moz-animation: pace-compress .5s infinite alternate;
    -o-animation: pace-compress .5s infinite alternate;
    -ms-animation: pace-compress .5s infinite alternate;
    animation: pace-compress .5s infinite alternate;
}

@-webkit-keyframes pace-bounce {
    0% {
        top: 0;
        -webkit-animation-timing-function: ease-in;
    }
    40% {}
    50% {
        top: 140px;
        height: 140px;
        -webkit-animation-timing-function: ease-out;
    }
    55% {
        top: 160px;
        height: 120px;
        border-radius: 70px / 60px;
        -webkit-animation-timing-function: ease-in;
    }
    65% {
        top: 120px;
        height: 140px;
        border-radius: 70px;
        -webkit-animation-timing-function: ease-out;
    }
    95% {
        top: 0;
        -webkit-animation-timing-function: ease-in;
    }
    100% {
        top: 0;
        -webkit-animation-timing-function: ease-in;
    }
}

@-moz-keyframes pace-bounce {
    0% {
        top: 0;
        -moz-animation-timing-function: ease-in;
    }
    40% {}
    50% {
        top: 140px;
        height: 140px;
        -moz-animation-timing-function: ease-out;
    }
    55% {
        top: 160px;
        height: 120px;
        border-radius: 70px / 60px;
        -moz-animation-timing-function: ease-in;
    }
    65% {
        top: 120px;
        height: 140px;
        border-radius: 70px;
        -moz-animation-timing-function: ease-out;}
    95% {
        top: 0;
        -moz-animation-timing-function: ease-in;
    }
    100% {top: 0;
        -moz-animation-timing-function: ease-in;
    }
}

@keyframes pace-bounce {
    0% {
        top: 0;
        animation-timing-function: ease-in;
    }
    50% {
        top: 140px;
        height: 140px;
        animation-timing-function: ease-out;
    }
    55% {
        top: 160px;
        height: 120px;
        border-radius: 70px / 60px;
        animation-timing-function: ease-in;
    }
    65% {
        top: 120px;
        height: 140px;
        border-radius: 70px;
        animation-timing-function: ease-out;
    }
    95% {
        top: 0;
        animation-timing-function: ease-in;
    }
    100% {
        top: 0;
        animation-timing-function: ease-in;
    }
}

@-webkit-keyframes pace-compress {
    0% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
        border-radius: 30px / 40px;
        -webkit-animation-timing-function: ease-in;
    }
    100% {
        bottom: 30px;
        margin-left: -10px;
        width: 20px;
        height: 5px;
        background: rgba(20, 20, 20, .3);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
        border-radius: 20px / 20px;
        -webkit-animation-timing-function: ease-out;
    }
}

@-moz-keyframes pace-compress {
    0% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
        border-radius: 30px / 40px;
        -moz-animation-timing-function: ease-in;
    }
    100% {
        bottom: 30px;
        margin-left: -10px;
        width: 20px;
        height: 5px;
        background: rgba(20, 20, 20, .3);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
        border-radius: 20px / 20px;
        -moz-animation-timing-function: ease-out;
    }
}

@keyframes pace-compress {
    0% {
        bottom: 0;
        margin-left: -30px;
        width: 60px;
        height: 75px;
        background: rgba(20, 20, 20, .1);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .1);
        border-radius: 30px / 40px;
        animation-timing-function: ease-in;
    }
    100% {
        bottom: 30px;
        margin-left: -10px;
        width: 20px;
        height: 5px;
        background: rgba(20, 20, 20, .3);
        box-shadow: 0 0 20px 35px rgba(20, 20, 20, .3);
        border-radius: 20px / 20px;
        animation-timing-function: ease-out;
    }
}*/
/**** Bounce End  ****/
/*!
 * Bootstrap v3.2.0 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.1 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../bundles/kanguraerpadministracio/fonts/glyphicons-halflings-regular.eot);src:url(../bundles/kanguraerpadministracio/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../bundles/kanguraerpadministracio/fonts/glyphicons-halflings-regular.woff) format('woff'),url(../bundles/kanguraerpadministracio/fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../bundles/kanguraerpadministracio/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;width:100% \9;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;width:100% \9;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:400;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}mark,.mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.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 #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.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-color:#dff0d8}.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-color:#d0e9c6}.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-color:#d9edf7}.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-color:#c4e3f3}.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-color:#fcf8e3}.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-color:#faf2cc}.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-color:#f2dede}.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-color:#ebcccc}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=radio],input[type=checkbox]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#777;opacity:1}.form-control:-ms-input-placeholder{color:#777}.form-control::-webkit-input-placeholder{color:#777}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}input[type=date],input[type=time],input[type=datetime-local],input[type=month]{line-height:34px;line-height:1.42857143 \0}input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;min-height:20px;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{position:absolute;margin-top:4px \9;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type=radio][disabled],input[type=checkbox][disabled],input[type=radio].disabled,input[type=checkbox].disabled,fieldset[disabled] input[type=radio],fieldset[disabled] input[type=checkbox]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm,.form-horizontal .form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg,.form-horizontal .form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:25px;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center}.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;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:4px}.btn:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#3071a9;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px solid}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn>input[type=radio],[data-toggle=buttons]>.btn>input[type=checkbox]{position:absolute;z-index:-1;filter:alpha(opacity=0);opacity:0}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=radio],.input-group-addon input[type=checkbox]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030;-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#777}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#777}.navbar-inverse .navbar-nav>li>a{color:#777}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#777}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#777}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#428bca;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar[aria-valuenow="1"],.progress-bar[aria-valuenow="2"]{min-width:30px}.progress-bar[aria-valuenow="0"]{min-width:30px;color:#777;background-color:transparent;background-image:none;-webkit-box-shadow:none;box-shadow:none}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:#777;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#428bca}.panel-primary>.panel-heading .badge{color:#428bca;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate3d(0,-25%,0);-o-transform:translate3d(0,-25%,0);transform:translate3d(0,-25%,0)}.modal.in .modal-dialog{-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{min-height:16.43px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-size:12px;line-height:1.4;visibility:visible;filter:alpha(opacity=0);opacity:0}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{display:table;content:" "}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed;-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none!important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
/* ========================================================================
 * bootstrap-switch - v3.0.0
 * http://www.bootstrap-switch.org
 * ========================================================================
 * Copyright 2012-2013 Mattia Larentis
 *
 * ========================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================================
 */

.bootstrap-switch{display:inline-block;cursor:pointer;border-radius:4px;border:1px solid;border-color:#ccc;position:relative;text-align:left;overflow:hidden;line-height:8px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;min-width:100px;-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-switch.bootstrap-switch-mini{min-width:71px}.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label{padding-bottom:4px;padding-top:4px;font-size:10px;line-height:9px}.bootstrap-switch.bootstrap-switch-small{min-width:79px}.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label{padding-bottom:3px;padding-top:3px;font-size:12px;line-height:18px}.bootstrap-switch.bootstrap-switch-large{min-width:120px}.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label{padding-bottom:9px;padding-top:9px;font-size:16px;line-height:normal}.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container{-webkit-transition:margin-left .5s;transition:margin-left .5s}.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-container{margin-left:0}.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label{border-bottom-right-radius:3px;border-top-right-radius:3px}.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-container{margin-left:-50%}.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label{border-bottom-left-radius:3px;border-top-left-radius:3px}.bootstrap-switch.bootstrap-switch-disabled,.bootstrap-switch.bootstrap-switch-readonly{opacity:.5;filter:alpha(opacity=50);cursor:default!important}.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label{cursor:default!important}.bootstrap-switch.bootstrap-switch-focused{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.bootstrap-switch .bootstrap-switch-container{display:inline-block;width:150%;top:0;border-radius:4px;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.bootstrap-switch .bootstrap-switch-handle-on,.bootstrap-switch .bootstrap-switch-handle-off,.bootstrap-switch .bootstrap-switch-label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:inline-block!important;height:100%;padding-bottom:4px;padding-top:4px;font-size:14px;line-height:20px}.bootstrap-switch .bootstrap-switch-handle-on,.bootstrap-switch .bootstrap-switch-handle-off{text-align:center;z-index:1;width:33.33333333%}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary{color:#fff;background:#428bca}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info{color:#fff;background:#5bc0de}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success{color:#fff;background:#5cb85c}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning{background:#f0ad4e;color:#fff}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger{color:#fff;background:#d9534f}.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default{color:#000;background:#eee}.bootstrap-switch .bootstrap-switch-handle-on{border-bottom-left-radius:3px;border-top-left-radius:3px}.bootstrap-switch .bootstrap-switch-handle-off{border-bottom-right-radius:3px;border-top-right-radius:3px}.bootstrap-switch .bootstrap-switch-label{text-align:center;margin-top:-1px;margin-bottom:-1px;z-index:100;width:33.33333333%;color:#333;background:#fff}.bootstrap-switch input[type=radio],.bootstrap-switch input[type=checkbox]{position:absolute!important;top:0;left:0;opacity:0;filter:alpha(opacity=0);z-index:-1}
/*!
 * Ladda
 * http://lab.hakim.se/ladda
 * MIT licensed
 *
 * Copyright (C) 2014 Hakim El Hattab, http://hakim.se
 */.ladda-button{position:relative}.ladda-button .ladda-spinner{position:absolute;z-index:2;display:inline-block;width:32px;height:32px;top:50%;margin-top:-16px;opacity:0;pointer-events:none}.ladda-button .ladda-label{position:relative;z-index:3}.ladda-button .ladda-progress{position:absolute;width:0;height:100%;left:0;top:0;background:rgba(0,0,0,0.2);visibility:hidden;opacity:0;-webkit-transition:0.1s linear all !important;-moz-transition:0.1s linear all !important;-ms-transition:0.1s linear all !important;-o-transition:0.1s linear all !important;transition:0.1s linear all !important}.ladda-button[data-loading] .ladda-progress{opacity:1;visibility:visible}.ladda-button,.ladda-button .ladda-spinner,.ladda-button .ladda-label{-webkit-transition:0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;-moz-transition:0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;-ms-transition:0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;-o-transition:0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important;transition:0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) all !important}.ladda-button[data-style=zoom-in],.ladda-button[data-style=zoom-in] .ladda-spinner,.ladda-button[data-style=zoom-in] .ladda-label,.ladda-button[data-style=zoom-out],.ladda-button[data-style=zoom-out] .ladda-spinner,.ladda-button[data-style=zoom-out] .ladda-label{-webkit-transition:0.3s ease all !important;-moz-transition:0.3s ease all !important;-ms-transition:0.3s ease all !important;-o-transition:0.3s ease all !important;transition:0.3s ease all !important}.ladda-button[data-style=expand-right] .ladda-spinner{right:14px}.ladda-button[data-style=expand-right][data-size="s"] .ladda-spinner,.ladda-button[data-style=expand-right][data-size="xs"] .ladda-spinner{right:4px}.ladda-button[data-style=expand-right][data-loading]{padding-right:56px}.ladda-button[data-style=expand-right][data-loading] .ladda-spinner{opacity:1}.ladda-button[data-style=expand-right][data-loading][data-size="s"],.ladda-button[data-style=expand-right][data-loading][data-size="xs"]{padding-right:40px}.ladda-button[data-style=expand-left] .ladda-spinner{left:14px}.ladda-button[data-style=expand-left][data-size="s"] .ladda-spinner,.ladda-button[data-style=expand-left][data-size="xs"] .ladda-spinner{left:4px}.ladda-button[data-style=expand-left][data-loading]{padding-left:56px}.ladda-button[data-style=expand-left][data-loading] .ladda-spinner{opacity:1}.ladda-button[data-style=expand-left][data-loading][data-size="s"],.ladda-button[data-style=expand-left][data-loading][data-size="xs"]{padding-left:40px}.ladda-button[data-style=expand-up]{overflow:hidden}.ladda-button[data-style=expand-up] .ladda-spinner{top:-32px;left:50%;margin-left:-16px}.ladda-button[data-style=expand-up][data-loading]{padding-top:54px}.ladda-button[data-style=expand-up][data-loading] .ladda-spinner{opacity:1;top:14px;margin-top:0}.ladda-button[data-style=expand-up][data-loading][data-size="s"],.ladda-button[data-style=expand-up][data-loading][data-size="xs"]{padding-top:32px}.ladda-button[data-style=expand-up][data-loading][data-size="s"] .ladda-spinner,.ladda-button[data-style=expand-up][data-loading][data-size="xs"] .ladda-spinner{top:4px}.ladda-button[data-style=expand-down]{overflow:hidden}.ladda-button[data-style=expand-down] .ladda-spinner{top:62px;left:50%;margin-left:-16px}.ladda-button[data-style=expand-down][data-size="s"] .ladda-spinner,.ladda-button[data-style=expand-down][data-size="xs"] .ladda-spinner{top:40px}.ladda-button[data-style=expand-down][data-loading]{padding-bottom:54px}.ladda-button[data-style=expand-down][data-loading] .ladda-spinner{opacity:1}.ladda-button[data-style=expand-down][data-loading][data-size="s"],.ladda-button[data-style=expand-down][data-loading][data-size="xs"]{padding-bottom:32px}.ladda-button[data-style=slide-left]{overflow:hidden}.ladda-button[data-style=slide-left] .ladda-label{position:relative}.ladda-button[data-style=slide-left] .ladda-spinner{left:100%;margin-left:-16px}.ladda-button[data-style=slide-left][data-loading] .ladda-label{opacity:0;left:-100%}.ladda-button[data-style=slide-left][data-loading] .ladda-spinner{opacity:1;left:50%}.ladda-button[data-style=slide-right]{overflow:hidden}.ladda-button[data-style=slide-right] .ladda-label{position:relative}.ladda-button[data-style=slide-right] .ladda-spinner{right:100%;margin-left:-16px}.ladda-button[data-style=slide-right][data-loading] .ladda-label{opacity:0;left:100%}.ladda-button[data-style=slide-right][data-loading] .ladda-spinner{opacity:1;left:50%}.ladda-button[data-style=slide-up]{overflow:hidden}.ladda-button[data-style=slide-up] .ladda-label{position:relative}.ladda-button[data-style=slide-up] .ladda-spinner{left:50%;margin-left:-16px;margin-top:1em}.ladda-button[data-style=slide-up][data-loading] .ladda-label{opacity:0;top:-1em}.ladda-button[data-style=slide-up][data-loading] .ladda-spinner{opacity:1;margin-top:-16px}.ladda-button[data-style=slide-down]{overflow:hidden}.ladda-button[data-style=slide-down] .ladda-label{position:relative}.ladda-button[data-style=slide-down] .ladda-spinner{left:50%;margin-left:-16px;margin-top:-2em}.ladda-button[data-style=slide-down][data-loading] .ladda-label{opacity:0;top:1em}.ladda-button[data-style=slide-down][data-loading] .ladda-spinner{opacity:1;margin-top:-16px}.ladda-button[data-style=zoom-out]{overflow:hidden}.ladda-button[data-style=zoom-out] .ladda-spinner{left:50%;margin-left:-16px;-webkit-transform:scale(2.5);-moz-transform:scale(2.5);-ms-transform:scale(2.5);-o-transform:scale(2.5);transform:scale(2.5)}.ladda-button[data-style=zoom-out] .ladda-label{position:relative;display:inline-block}.ladda-button[data-style=zoom-out][data-loading] .ladda-label{opacity:0;-webkit-transform:scale(0.5);-moz-transform:scale(0.5);-ms-transform:scale(0.5);-o-transform:scale(0.5);transform:scale(0.5)}.ladda-button[data-style=zoom-out][data-loading] .ladda-spinner{opacity:1;-webkit-transform:none;-moz-transform:none;-ms-transform:none;-o-transform:none;transform:none}.ladda-button[data-style=zoom-in]{overflow:hidden}.ladda-button[data-style=zoom-in] .ladda-spinner{left:50%;margin-left:-16px;-webkit-transform:scale(0.2);-moz-transform:scale(0.2);-ms-transform:scale(0.2);-o-transform:scale(0.2);transform:scale(0.2)}.ladda-button[data-style=zoom-in] .ladda-label{position:relative;display:inline-block}.ladda-button[data-style=zoom-in][data-loading] .ladda-label{opacity:0;-webkit-transform:scale(2.2);-moz-transform:scale(2.2);-ms-transform:scale(2.2);-o-transform:scale(2.2);transform:scale(2.2)}.ladda-button[data-style=zoom-in][data-loading] .ladda-spinner{opacity:1;-webkit-transform:none;-moz-transform:none;-ms-transform:none;-o-transform:none;transform:none}.ladda-button[data-style=contract]{overflow:hidden;width:100px}.ladda-button[data-style=contract] .ladda-spinner{left:50%;margin-left:-16px}.ladda-button[data-style=contract][data-loading]{border-radius:50%;width:52px}.ladda-button[data-style=contract][data-loading] .ladda-label{opacity:0}.ladda-button[data-style=contract][data-loading] .ladda-spinner{opacity:1}.ladda-button[data-style=contract-overlay]{overflow:hidden;width:100px;box-shadow:0px 0px 0px 2000px rgba(0,0,0,0)}.ladda-button[data-style=contract-overlay] .ladda-spinner{left:50%;margin-left:-16px}.ladda-button[data-style=contract-overlay][data-loading]{border-radius:50%;width:52px;box-shadow:0px 0px 0px 2000px rgba(0,0,0,0.8)}.ladda-button[data-style=contract-overlay][data-loading] .ladda-label{opacity:0}.ladda-button[data-style=contract-overlay][data-loading] .ladda-spinner{opacity:1}


.humane,
.humane-bigbox {
    position: fixed;
    -moz-transition: all 0.3s ease-out;
    -webkit-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;
    z-index: 100000;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}

.humane,
.humane-bigbox {
    font-family: Ubuntu, Verdana, sans-serif;
    line-height: 40px;
    font-size: 35px;
    top: 25%;
    left: 25%;
    opacity: 0;
    width: 50%;
    min-height: 40px;
    padding: 30px;
    text-align: center;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAc0lEQVQokb2RQQ6EMAwDx/7/n80BtIEC3RYhLlXrVLGTAYiBWBIGtkPSP01SfreTVoV5re9Rcee1scwDk9NurbR62sZJcpzy9O+2X5KsXabyPaQFYNuvkqkRviDTp9Vs8opC0TpkHvJtVjeReW/5kEyX1gKeLEKE9peeWAAAAABJRU5ErkJggg==');
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000), color-stop(1, rgba(0, 0, 0, 0.9))) no-repeat;
    background: -moz-linear-gradient(top, #000 0%, rgba(0, 0, 0, 0.9) 100%) no-repeat;
    background: -webkit-linear-gradient(top, #000 0%, rgba(0, 0, 0, 0.9) 100%) no-repeat;
    background: -ms-linear-gradient(top, #000 0%, rgba(0, 0, 0, 0.9) 100%) no-repeat;
    background: -o-linear-gradient(top, #000 0%, rgba(0, 0, 0, 0.9) 100%) no-repeat;
    background: linear-gradient(top, #000 0%, rgba(0, 0, 0, 0.9) 100%) no-repeat;
    *background-color: #000;
    color: #fff;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    text-shadow: 0 -1px 1px #ddd;
    -webkit-box-shadow: 0 15px 15px -15px #000;
    box-shadow: 0 15px 15px -15px #000;
    -moz-transform: scale(0.1);
    -webkit-transform: scale(0.1);
    -ms-transform: scale(0.1);
    -o-transform: scale(0.1);
    transform: scale(0.1);
}

.humane p,
.humane-bigbox p,
.humane ul,
.humane-bigbox ul {
    margin: 0;
    padding: 0;
}

.humane ul,
.humane-bigbox ul {
    list-style: none;
}

.humane.humane-bigbox-info,
.humane-bigbox.humane-bigbox-info {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAQElEQVQokWNgYEj5z8TAwPCfiYGBgQGVIEKMTG2DTYwRVez/IHIaNcUGyBnYgpORel6gpvFEJhBqpxIaG8/AAADsKDq/HhYQ2AAAAABJRU5ErkJggg==');
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000064), color-stop(1, rgba(0, 0, 100, 0.9))) no-repeat;
    background: -moz-linear-gradient(top, #000064 0%, rgba(0, 0, 100, 0.9) 100%) no-repeat;
    background: -webkit-linear-gradient(top, #000064 0%, rgba(0, 0, 100, 0.9) 100%) no-repeat;
    background: -ms-linear-gradient(top, #000064 0%, rgba(0, 0, 100, 0.9) 100%) no-repeat;
    background: -o-linear-gradient(top, #000064 0%, rgba(0, 0, 100, 0.9) 100%) no-repeat;
    background: linear-gradient(top, #000064 0%, rgba(0, 0, 100, 0.9) 100%) no-repeat;
    *background-color: #030;
}

.humane.humane-bigbox-success,
.humane-bigbox.humane-bigbox-success {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAPklEQVQokWNgSGH4z8TAACEYUAkixMjUNsjEGFHF/g8ip1FVbGCcgS04GannBaoaT1wCwWkvmXbQ2HgGBgYA8Yw6v+m4Kh8AAAAASUVORK5CYII=');
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #006400), color-stop(1, rgba(0, 100, 0, 0.9))) no-repeat;
    background: -moz-linear-gradient(top, #006400 0%, rgba(0, 100, 0, 0.9) 100%) no-repeat;
    background: -webkit-linear-gradient(top, #006400 0%, rgba(0, 100, 0, 0.9) 100%) no-repeat;
    background: -ms-linear-gradient(top, #006400 0%, rgba(0, 100, 0, 0.9) 100%) no-repeat;
    background: -o-linear-gradient(top, #006400 0%, rgba(0, 100, 0, 0.9) 100%) no-repeat;
    background: linear-gradient(top, #006400 0%, rgba(0, 100, 0, 0.9) 100%) no-repeat;
    *background-color: #030;
}

.humane.humane-bigbox-error,
.humane-bigbox.humane-bigbox-error {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAPklEQVQokWNIYWD4z8QAJRhQCSLEyNQ2uMQYUcX+DyKnUVdsQJyBLTgZqecF6hpPVALBaS+ZdtDYeAYGBgYA9vA6v4OR3MkAAAAASUVORK5CYII=');
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #640000), color-stop(1, rgba(100, 0, 0, 0.9))) no-repeat;
    background: -moz-linear-gradient(top, #640000 0%, rgba(100, 0, 0, 0.9) 100%) no-repeat;
    background: -webkit-linear-gradient(top, #640000 0%, rgba(100, 0, 0, 0.9) 100%) no-repeat;
    background: -ms-linear-gradient(top, #640000 0%, rgba(100, 0, 0, 0.9) 100%) no-repeat;
    background: -o-linear-gradient(top, #640000 0%, rgba(100, 0, 0, 0.9) 100%) no-repeat;
    background: linear-gradient(top, #640000 0%, rgba(100, 0, 0, 0.9) 100%) no-repeat;
    *background-color: #300;
}

.humane.humane-animate,
.humane-bigbox.humane-bigbox-animate {
    opacity: 1;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.humane.humane-animate:hover,
.humane-bigbox.humane-bigbox-animate:hover {
    opacity: 0.6;
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

.humane.humane-js-animate,
.humane-bigbox.humane-bigbox-js-animate {
    opacity: 1;
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.humane.humane-js-animate:hover,
.humane-bigbox.humane-bigbox-js-animate:hover {
    opacity: 0.6;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
}

html,
body {
    min-height: 100%;
}

.humane,
.humane-libnotify {
    position: fixed;
    -moz-transition: all 0.3s ease-out;
    -webkit-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;
    z-index: 100000;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}

.humane,
.humane-libnotify {
    font-family: Ubuntu, Arial, sans-serif;
    text-align: center;
    font-size: 15px;
    top: 10px;
    right: 10px;
    opacity: 0;
    width: 150px;
    color: #fff;
    padding: 10px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABQCAYAAADYxx/bAAAABmJLR0QA/wD/AP+gvaeTAAAANElEQVQYlWNgYGB4ysTAwMDAxMjICCUQXDQWAwMDAxMTExMedcRyB6d5CAMQ5hGrjSrmAQBQdgIXlosSTwAAAABJRU5ErkJggg==');
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.9)), color-stop(1, rgba(50, 50, 50, 0.9))) no-repeat;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.9) 0%, rgba(50, 50, 50, 0.9) 100%) no-repeat;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.9) 0%, rgba(50, 50, 50, 0.9) 100%) no-repeat;
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.9) 0%, rgba(50, 50, 50, 0.9) 100%) no-repeat;
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.9) 0%, rgba(50, 50, 50, 0.9) 100%) no-repeat;
    background: linear-gradient(top, rgba(0, 0, 0, 0.9) 0%, rgba(50, 50, 50, 0.9) 100%) no-repeat;
    *background-color: #000;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 4px -4px #000;
    box-shadow: 0 4px 4px -4px #000;
    -moz-transform: translateY(-40px);
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
}

.humane p,
.humane-libnotify p,
.humane ul,
.humane-libnotify ul {
    margin: 0;
    padding: 0;
}

.humane ul,
.humane-libnotify ul {
    list-style: none;
}

.humane.humane-libnotify-info,
.humane-libnotify.humane-libnotify-info {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABQCAYAAADYxx/bAAAABmJLR0QA/wD/AP+gvaeTAAAAMUlEQVQYlWNgYDB6ysTAwMDAxMDACCcYUFkMDEwMDEwMBNVhkxg65jGhmke6M6hgHgBSdgHnpZwADwAAAABJRU5ErkJggg==');
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 50, 0.9)), color-stop(1, rgba(0, 0, 100, 0.9))) no-repeat;
    background: -moz-linear-gradient(top, rgba(0, 0, 50, 0.9) 0%, rgba(0, 0, 100, 0.9) 100%) no-repeat;
    background: -webkit-linear-gradient(top, rgba(0, 0, 50, 0.9) 0%, rgba(0, 0, 100, 0.9) 100%) no-repeat;
    background: -ms-linear-gradient(top, rgba(0, 0, 50, 0.9) 0%, rgba(0, 0, 100, 0.9) 100%) no-repeat;
    background: -o-linear-gradient(top, rgba(0, 0, 50, 0.9) 0%, rgba(0, 0, 100, 0.9) 100%) no-repeat;
    background: linear-gradient(top, rgba(0, 0, 50, 0.9) 0%, rgba(0, 0, 100, 0.9) 100%) no-repeat;
    *background-color: #030;
}

.humane.humane-libnotify-success,
.humane-libnotify.humane-libnotify-success {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABQCAYAAADYxx/bAAAABmJLR0QA/wD/AP+gvaeTAAAAMUlEQVQYlWNgMGJ4ysTAwMDAxMAIJxhQWQwMDEwMTKgS2NRhkxg65jGhmke6M6hhHgBS2QHn2LzhygAAAABJRU5ErkJggg==');
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 50, 0, 0.9)), color-stop(1, rgba(0, 100, 0, 0.9))) no-repeat;
    background: -moz-linear-gradient(top, rgba(0, 50, 0, 0.9) 0%, rgba(0, 100, 0, 0.9) 100%) no-repeat;
    background: -webkit-linear-gradient(top, rgba(0, 50, 0, 0.9) 0%, rgba(0, 100, 0, 0.9) 100%) no-repeat;
    background: -ms-linear-gradient(top, rgba(0, 50, 0, 0.9) 0%, rgba(0, 100, 0, 0.9) 100%) no-repeat;
    background: -o-linear-gradient(top, rgba(0, 50, 0, 0.9) 0%, rgba(0, 100, 0, 0.9) 100%) no-repeat;
    background: linear-gradient(top, rgba(0, 50, 0, 0.9) 0%, rgba(0, 100, 0, 0.9) 100%) no-repeat;
    *background-color: #030;
}

.humane.humane-libnotify-error,
.humane-libnotify.humane-libnotify-error {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAPklEQVQokWMwYmB4ysTAwMCATjASFsOmBBvBRJ7x+O0g0wCS7CDTH/RwH7X9MVDuwyaG032D2M2UeIYO7gMAqt8C19Bn7+YAAAAASUVORK5CYII=');
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(50, 0, 0, 0.9)), color-stop(1, rgba(100, 0, 0, 0.9))) no-repeat;
    background: -moz-linear-gradient(top, rgba(50, 0, 0, 0.9) 0%, rgba(100, 0, 0, 0.9) 100%) no-repeat;
    background: -webkit-linear-gradient(top, rgba(50, 0, 0, 0.9) 0%, rgba(100, 0, 0, 0.9) 100%) no-repeat;
    background: -ms-linear-gradient(top, rgba(50, 0, 0, 0.9) 0%, rgba(100, 0, 0, 0.9) 100%) no-repeat;
    background: -o-linear-gradient(top, rgba(50, 0, 0, 0.9) 0%, rgba(100, 0, 0, 0.9) 100%) no-repeat;
    background: linear-gradient(top, rgba(50, 0, 0, 0.9) 0%, rgba(100, 0, 0, 0.9) 100%) no-repeat;
    *background-color: #300;
}

.humane.humane-animate,
.humane-libnotify.humane-libnotify-animate {
    opacity: 1;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.humane.humane-animate:hover,
.humane-libnotify.humane-libnotify-animate:hover {
    opacity: 0.2;
}

.humane.humane-animate,
.humane-libnotify.humane-libnotify-js-animate {
    opacity: 1;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.humane.humane-animate:hover,
.humane-libnotify.humane-libnotify-js-animate:hover {
    opacity: 0.2;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
}

html,
body {
    min-height: 100%;
}

.humane,
.humane-jackedup {
    position: fixed;
    -moz-transition: all 0.6s ease-in-out;
    -webkit-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
    z-index: 100000;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}

.humane,
.humane-jackedup {
    font-family: Helvetica Neue, Helvetica, san-serif;
    font-size: 18px;
    letter-spacing: -1px;
    top: 20px;
    left: 30%;
    opacity: 0;
    width: 40%;
    color: #333;
    padding: 10px;
    text-align: center;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAACWCAYAAAAfduJyAAAABmJLR0QA/wD/AP+gvaeTAAAAIklEQVQokWNgYGCQZGJgYGDARTDSQnboGDqsnDt0DKWNLAAkiQFdC+vZNQAAAABJRU5ErkJggg==');
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.1)), color-stop(1, rgba(0, 0, 0, 0.2))) no-repeat;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%) no-repeat;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%) no-repeat;
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%) no-repeat;
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%) no-repeat;
    background: linear-gradient(top, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%) no-repeat;
    background-color: #fff;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    -moz-transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
}

.humane p,
.humane-jackedup p,
.humane ul,
.humane-jackedup ul {
    margin: 0;
    padding: 0;
}

.humane ul,
.humane-jackedup ul {
    list-style: none;
}

.humane.humane-jackedup-info,
.humane-jackedup.humane-jackedup-info {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAAR0lEQVQokWNISfn/n4mBgeE/EwMDAwMqQYQYmdoGlxgjI4rY//+Dx2nUFRsQZ2ALTrQQp8QL1DWeqASC014y7aCx8QwMDAwA1aZBIulmpvwAAAAASUVORK5CYII=');
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0.7)), color-stop(1, rgba(0, 0, 0, 0.85))) no-repeat;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%) no-repeat;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%) no-repeat;
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%) no-repeat;
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%) no-repeat;
    background: linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%) no-repeat;
    background-color: #fff;
    color: #fff;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.35);
}

.humane.humane-jackedup-success,
.humane-jackedup.humane-jackedup-success {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAYAAAAp8ov1AAAABmJLR0QA/wD/AP+gvaeTAAAASElEQVQokc2SMQ4AIAgDD9/K/79QVzWaENTownAJbWnA5SqACkA/Aiy59hczrGVC30Q7y57EmNU5NL5zwln50IMsfZMel+UBKtFBQSLWM9wLAAAAAElFTkSuQmCC');
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #62c462), color-stop(1, #57a957)) no-repeat;
    background: -moz-linear-gradient(top, #62c462 0%, #57a957 100%) no-repeat;
    background: -webkit-linear-gradient(top, #62c462 0%, #57a957 100%) no-repeat;
    background: -ms-linear-gradient(top, #62c462 0%, #57a957 100%) no-repeat;
    background: -o-linear-gradient(top, #62c462 0%, #57a957 100%) no-repeat;
    background: linear-gradient(top, #62c462 0%, #57a957 100%) no-repeat;
    background-color: #64ff64;
    color: #fff;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.35);
}

.humane.humane-jackedup-error,
.humane-jackedup.humane-jackedup-error {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADICAIAAACmkByiAAAABmJLR0QA/wD/AP+gvaeTAAAAf0lEQVQokY2TOQ7AIAwER/5mivy/yRc2RQDhA0jhghFYO5bhuS+TZMAoIUMEhhH4loGhfu71cenM3DutWMsaeGKjv3zO5N17KLPJ0+fQD8cpv5uVLPo4vnX0PpXj0nuaaeVzdmw+yXG1O96n2p3kozB757Ni1Z5UPsU9SP8AeAG1kHXE+7RlPAAAAABJRU5ErkJggg==');
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ee5f5b), color-stop(1, #c43c35)) no-repeat;
    background: -moz-linear-gradient(top, #ee5f5b 0%, #c43c35 100%) no-repeat;
    background: -webkit-linear-gradient(top, #ee5f5b 0%, #c43c35 100%) no-repeat;
    background: -ms-linear-gradient(top, #ee5f5b 0%, #c43c35 100%) no-repeat;
    background: -o-linear-gradient(top, #ee5f5b 0%, #c43c35 100%) no-repeat;
    background: linear-gradient(top, #ee5f5b 0%, #c43c35 100%) no-repeat;
    background-color: #ee5f5b;
    color: #fff;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.35);
}

.humane-animate,
.humane-jackedup.humane-jackedup-animate {
    opacity: 1;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.humane-animate:hover,
.humane-jackedup.humane-jackedup-animate:hover {
    opacity: 0.7;
}

.humane-js-animate,
.humane-jackedup.humane-jackedup-js-animate {
    opacity: 1;
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.humane-js-animate:hover,
.humane-jackedup.humane-jackedup-js-animate:hover {
    opacity: 0.7;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
}

/*------------------------------------------------------------------
[Master Stylesheet]

Project     :	Fickle Responsive Admin Template
Version     :	1.0
Author      : 	AimMateTeam
URL         :   http://aimmate.com
Support     :   aimmateteam@gmail.com
Primary use :	Dashboard

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

@import "../bundles/kanguraerpadministracio/css/font-awesome/css/font-awesome.min.css";
@import url(https://fonts.googleapis.com/css?family=PT+Sans|Montserrat:700,400);

@import "../bundles/kanguraerpadministracio/css/plugins/nanoscroller.css";
@import "../bundles/kanguraerpadministracio/css/plugins/switchery.min.css";
@import "../bundles/kanguraerpadministracio/css/plugins/bootstrap-switch.css";


@font-face {
    font-family: 'Armata';
    src:url('../bundles/kanguraerpadministracio/fonts/Armata-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}


/*------------------------------------------------------------------
[Table of contents]

+ BODY
+ HEADER
+ NAVIGATION
+ BREADCRUMB
+ MAIN WRAPPER
+ RIGHT WRAPPER
+ DASHBOARD
+ EMAIL
+ CHARTS
+ FORM STAFFS
+ TIME-LINE
+ TABLE
+ NOTIFICATION
+ TASK & NOTE
+ CALENDER
+ MAPS
+ GALLERY
+ MEDIA
+ PRICING TABLE
+ PROFILE
+ LOGIN
+ COMING SOON
+ WIDGETS
+ PANEL
+ ICONS
+ FOOTER
+ UI ELEMENTS
+ MEDIA PLAYER @NEW v1.1
+ TREE VIEW    @NEW v1.1
+ FLUID BOX    @NEW v1.1

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

/*------------------------------------------------------------------
# [Color codes]

# Black ( navigation background ) : #3F414D;
# Blue ( navigation background ) : #5EBFD8;
# Deep Blue ( navigation background ) : #3A515A;
# Red ( navigation background ) : #FF7878;
# Light Green ( navigation background ) : #1FB5AD;
# Light Purple ( hover navigation background ) : #7a8b83;

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

/*------------------------------------------------------------------
[Typography]

Headers Logo:		28px 'Montserrat', sans-serif;
Body copy:		    14px 'PT Sans', sans-serif;
Headers:		    20px 'Armata', sans-serif;
Panel heading:	    15px 'Armata', sans-serif;
Input, textarea:	14px 'PT Sans', sans-serif;

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

/*------------------------------------------------------------------
   -------------------------BODY---------------------------------
-------------------------------------------------------------------*/
body{
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    height: 100%;
    background: #f9f9f9;
}
body.single-page{
    background: #565656;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Armata', sans-serif;
}
ul.mainNav li a {
    font-family: 'Armata', sans-serif;
}
h1{
    font-size: 24px;
}
h2{
    font-size: 22px;
}
h3{
    font-size: 20px;
}
h4{
    font-size: 18px;
}

h5{
    font-size: 16px;
}

h6{
    font-size: 14px;
}
p{
    line-height: 23px;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px dashed #e0e0e0;
    margin: 1em 0;
    padding: 0;
}

pre{
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
}

label{
    font-weight: 400;
}

text{
    font-weight: normal;
}

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

/*------------- CUSTOM --------------------------------------------*/

.body-overlay{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(255,255,255,.5);
    z-index: 2;
    display: none;
}

.body-overlay img{
    position: absolute;
    top: 50%;
    left:50%;
    margin: -80px 0 0 -30px;
}

/*------------------------------------------------------------------
   -------------------------HEADER---------------------------------
-------------------------------------------------------------------*/
.ls-header{
    font-size: 15px;
}

.ls-top-header{
    margin-bottom: 15px;
    margin-top: 5px;
}

nav{
    background: #555557;
}
.header-logo{
    text-align: center;
    width: 180px;
    float: left;
}
.header-logo a{
    line-height: 50px;
}
.header-logo a span{
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
    color: #f2f2f2;
    margin: 0;
    padding: 0;
    line-height: 50px;
    text-transform: uppercase;
}
.header-logo a:hover{
    text-decoration: none;
}

#main-container{
    width: 100%;
    height: 100%;
    background: #ffffff;
    color: #565656;
}

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


/*------------------------------------------------------------------
  -------------------------- NAVIGATION -------------------------
-------------------------------------------------------------------*/
/*** Top Navigation ***/
.menu-control{
    float: left;
    line-height: 38px;
    margin-left: 5px;
    text-align: center;
}
.menu-control a{
    color: #ffffff;
    outline: none;
}
.menu-control a:hover{
    color: #FF7878;
}
.menu-control a i{
    line-height: 25px;
    font-size: 18px;
}
.top-navigation ul{
    list-style: none;
    padding: 0;
    margin: 0;
    float: right;
}
.top-navigation ul li{
    display: inline-block;
}

.top-navigation ul li a{
    color: #ffffff;
    text-decoration: none;
    line-height: 17px;
    outline: none;
    padding: 10px 15px;
    display:inline-block;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 18px;

}
.top-navigation ul li a:hover{
    background: #7a8b83;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.top-navigation ul li a.right-sidebar, .top-navigation ul li a.right-sidebar-setting{
    -webkit-transition: none 0.3s ease-in-out;
    -moz-transition: none 0.3s ease-in-out;
    -o-transition: none 0.3s ease-in-out;
    transition: none 0.3s ease-in-out;
}
.top-navigation ul li.only-phone{
    display: none;
}
.top-navigation ul li.only-phone a{
    -webkit-transition: none 0.3s ease-in-out;
    -moz-transition: none 0.3s ease-in-out;
    -o-transition: none 0.3s ease-in-out;
    transition: none 0.3s ease-in-out;
}
.top-navigation ul li.only-phone a:hover{
    background: none;
    color: #FF7878;
    -webkit-transition: none 0.3s ease-in-out;
    -moz-transition: none 0.3s ease-in-out;
    -o-transition: none 0.3s ease-in-out;
    transition: none 0.3s ease-in-out;
}
.search-box{
    float: left;
    margin-left: 5px;
    text-align: center;
}
.search-box ul li a span{
    font-size: 18px;
    line-height: 12px;
}
.search-box input[type=search] {
    background: url("../bundles/kanguraerpadministracio/images/b.png") no-repeat scroll 9px center / 19px 19px #f2f2f2;
    border: none;
    color: #000;
    cursor: auto;
    height: 40px;
    outline: 0;
    padding-left: 32px;
    width: 320px;
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    font-family: inherit;
    font-size: 100%;
}
.search-box input::-webkit-input-placeholder {
    color: #999;
}
.search-box input::-webkit-search-decoration,
.search-box input::-webkit-search-cancel-button {
    display: none;
}

/*Top dropDown navigation Start*/
.top-navigation li.open:after{
    border-bottom: 6px solid #FF7878;
    border-left: 6px solid rgba(0, 0, 0, 0);
    border-right: 6px solid rgba(0, 0, 0, 0);
    content: "";
    display: inline-block;
    position: absolute;
    right: 18px;
    top: 33px;
    z-index: 1;
}
.red-color .top-navigation li.open:after{
    border-bottom: 6px solid #C45C5C;
}
.top-navigation li a span.badge{ /**** Issue Fixed @new ***/
    font-size: 10px;
    font-weight: normal;
    padding: 0;
    position: absolute;
    right: 5px;
    text-align: center;
    top: 4px;
    font-family: 'Pontano Sans', sans-serif;
    height: 15px;
    width: 15px;
    line-height: 15px;
    display: block;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.top-navigation .dropdown-menu.right {
    left: auto;
    right: 0;
}
.top-navigation .dropdown-menu {
    margin: 0;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    padding: 0;
    border: none;
    min-width: 275px;
}
.top-navigation .dropdown-menu h4 {
    padding: 10px;
    margin: 0;
    font-size: 14px;
    color: white;
    background: #ff7878;
}
.red-color .top-navigation h4{
    background: #C45C5C;
}
.top-navigation .dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    float: none;
}
.top-navigation .dropdown-menu ul li.only-link {
    text-align: center;
    padding: 5px 0;
    border-bottom: none;
    margin-top: 0;
}
.top-navigation .dropdown-menu ul li.only-link a {
    font-size: 14px;
}
.ls-feed {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ls-feed li {
    background-color: #e0e0e0;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 10px;
    padding: 10px 0 10px 33px;
    position: relative;
}
.top-navigation ul.ls-feed li{
    display: block;
}
.top-navigation ul.ls-feed li a{
    padding: 0;
    color: #6e6e6e;
    display: block;
    line-height: 22px;
    font-size: 14px;
}
.top-navigation ul.ls-feed li a:hover{
    background: none;
}
.ls-feed li .label {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    left: 7px;
    line-height: 11px;
    padding: 5px;
    position: absolute;
    top: 11px;
    height: 20px;
    width: 20px;
}
.feed-box .ls-feed li .label{
    top: 7px;
    padding: 5px 0;
}
.ls-feed li .date {
    padding-right: 10px;
    text-align: right;
    font-style: italic;
    font-size: 12px;
    float: right;
}
.dropdown-menu.top-notification h4 {
    color: white;
    background: #ff7878;
}
.red-color .dropdown-menu.top-notification h4{
    background: #C45C5C;
}
.dropdown-menu.top-notification .ls-feed li {
    margin-bottom: 0;
    border-bottom: 1px dotted #cbc5ba;
    background: white;
    color: dimgrey;
}
/*Top dropDown navigation end*/

/*** Left Navigation ***/
#left-navigation{
    width: 200px;
    background: #58595B;
    float: left;
    position: absolute;
    left: 0;
    height: 100%;
    overflow: visible !important;
}
#left-navigation.active{
    width: 50px;
}
#left-navigation .user-image{
    margin: 10px auto;
    width: 80px;
    position: relative;

}
#left-navigation.active .user-image{
    width: 40px;
}
#left-navigation .user-image img{
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    overflow: hidden;
}
#left-navigation.active .user-image{
    width: 40px;
}
#left-navigation.active .user-image img{
    width: 40px;
}
#left-navigation .user-online-status {
    display: block;
    left: 0;
    position: absolute;
    top: 10px;
}
#left-navigation.active .user-online-status {
    top: -5px;
}
#left-navigation.active .social-icon{
    display: none;
}
#left-navigation .social-icon{
    list-style: none;
    margin: 0 0 5px;
    padding: 0;
    text-align: center;
}
#left-navigation .social-icon li{
    display: inline-block;
    margin: 0 5px;
}
#left-navigation .social-icon li a{
    color: #FF7878;
    font-size: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#left-navigation .social-icon li a:hover{
    color: #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.black-color #left-navigation{
    background: #444755;
}
.blue-color #left-navigation{
    background: #53A2B8;
}
.deep-blue-color #left-navigation{
    background: #324E59;
}
.red-color #left-navigation{
    background: #DD7878;
}
.light-green-color #left-navigation .social-icon li a{
    color: #FFFFFF;
}
.light-green-color #left-navigation .social-icon li a:hover{
    color: #565656;
}
.blue-color #left-navigation .social-icon li a{
    color: #FFFFFF;
}
.blue-color #left-navigation .social-icon li a:hover{
    color: #FF7878;
}
.red-color #left-navigation .social-icon li a{
    color: #FFFFFF;
}
.red-color #left-navigation .social-icon li a:hover{
    color: #3F414D;
}
.light-green-color #left-navigation{
    background: #4FADA8;
}

ul.mainNav{
    padding: 0;
    margin: 0;
    list-style: none;
    background: #555557;
}
ul.mainNav.mobile{
    display: none;
}
.red-color ul.mainNav{
    background: #ff7878;
}
.blue-color ul.mainNav{
    background: #5EBFD8;
}
.light-green-color ul.mainNav{
    background: #1FB5AD;
}
.black-color ul.mainNav{
    background: #3F414D;
}
.deep-blue-color ul.mainNav{
    background: #3A515A;
}

ul.mainNav li {
    border-top: 1px solid #58595B;
    position: relative;
}
ul.mainNav.active li ul li{
    border: none;
}
ul.mainNav li:last-child {
    border-bottom: 1px solid #58595B;
}
.black-color ul.mainNav li {
    border-top: 1px solid #444755;
}
.black-color ul.mainNav li:last-child{
    border-bottom: 1px solid #444755;
}
.blue-color ul.mainNav li{
    border-top: 1px solid #47aac5;
}
.blue-color ul.mainNav li:last-child{
    border-bottom: 1px solid #47aac5;
}
.deep-blue-color ul.mainNav li{
    border-top:1px solid #3D5863;
}
.deep-blue-color ul.mainNav li:last-child{
    border-bottom:1px solid #3D5863;
}
.red-color ul.mainNav li{
    border-top:1px solid #E48080;
}
.red-color ul.mainNav li:last-child{
    border-bottom:1px solid #E48080;
}
.light-green-color ul.mainNav li{
    border-top:1px solid #4FADA8;
}
.light-green-color ul.mainNav li:last-child{
    border-bottom:1px solid #4FADA8;
}
ul.mainNav li a {
    line-height: 13px;
    font-size: 13px;
    padding: 10px 5px 10px 10px;
    display: block;
    text-decoration: none;
    color: #c6c6c6;
    outline: 0;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
ul.mainNav li a.active {
    color: #fff;
    background-color: #7A8B83;
}
.red-color ul.mainNav li a, .blue-color ul.mainNav li a, .light-green-color ul.mainNav li a{
    color: #fff;
}
ul.mainNav li a i{
    margin-right: 5px;
    width: 15px;
    font-size: 14px;
}
ul.mainNav li a b{
    width: 12px;
}
#left-navigation.active ul.mainNav li a i{
    width: 50px;
}
#left-navigation.active ul.mainNav li a b{
    width: 22px;
}
ul.mainNav li a span{
    line-height: 13px;
    font-size: 13px;
}
ul.mainNav li a span.badge{
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    font-size: 10px;
    font-weight: 400;
    line-height: 10px;
    padding: 2px 5px;
    position: absolute;
    right: 30px;
}
#left-navigation.active ul.mainNav li a span.badge{
    right: 25px;
}
ul.mainNav li a span.navTag{
    font-size: 18px;
}
ul.mainNav li a:hover {
    background-color:#7a8b83;
    color:#ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
ul.mainNav ul {
    margin: 0;
    padding: 0;
    display: none;
    list-style: none;
    background: #58595B;
}
ul.mainNav.active ul{
    position: absolute;
    left: 50px;
    width: 200px;
    background: #4C4C4E;
}
ul.mainNav.active li ul.open{
    display: block;
}
ul.mainNav li.active ul{
    display: block;
}
ul.mainNav li.active ul ul{
    display: none;
}
ul.mainNav li.active ul li.active ul{
    display: block;
}
ul.mainNav li.active ul li.active ul li.active{
    display: block;
}
ul.mainNav li.active ul li.active ul li.active ul li.active{
    display: block;
}
ul.mainNav li.active ul li.active ul li.active ul li.active ul li.active{
    display: block;
}
ul.mainNav.active li.active ul{
    display: none;
}
ul.mainNav.active li.active ul.open{
    display: block;
}
ul.mainNav.active li ul.active{
    display: none;
}
ul.mainNav.active li ul.active.open{
    display: block;
}
.blue-color ul.mainNav.active ul, .blue-color ul.mainNav ul{
    background: #53A2B8;
}
.deep-blue-color ul.mainNav.active ul, .deep-blue-color ul.mainNav ul{
    background: #3D5863;
}
.red-color ul.mainNav.active ul, .red-color ul.mainNav ul{
    background: #DD7878;
}
.light-green-color ul.mainNav.active ul, .light-green-color ul.mainNav ul{
    background: #4FADA8;
}
.black-color ul.mainNav.active ul, .black-color ul.mainNav ul{
    background: #444755;
}
ul.mainNav ul li {
    margin: 0;
    padding: 0;
    clear: both;
}
ul.mainNav ul li a {
    padding-left: 30px;
    font-size: 12px;
    font-weight: normal;
    outline:0;
}
#left-navigation.active ul.mainNav ul li a{
    padding-left: 20px;
}
ul.mainNav ul li a:hover {
    background-color:#7a8b83;
    color:#fff;
}
ul.mainNav.active li.active a i{
    color: #fff;
}
ul.mainNav ul li a.active{
    color: #fff;
    background-color:#7a8b83;
}
ul.mainNav ul ul li a {
    color:#c6c6c6;
    padding-left: 30px;
}
ul.mainNav ul ul li a:hover {
    background-color:#7a8b83;
    color: #fff;
}
ul.mainNav b{
    float:right;
    font-size: 14px;
    font-weight: 400;
}
ul.mainNav.active ul{
    display: none;
}
ul.mainNav.active li a i{
    padding-left: 10px;
}
ul.mainNav.active li a b{
    display: none;
}
ul.mainNav.active li:hover, ul.mainNav.check li.check{
    width: 200px;
    background: #49494B;
    z-index: 999;
}
ul.mainNav.active li:hover, ul.mainNav.active li.check{
    background: #555557;
}
.blue-color ul.mainNav.active li:hover,.blue-color  ul.mainNav.active li.check{
    background: #53A2B8;
}
.deep-blue-color ul.mainNav.active li:hover, .deep-blue-color ul.mainNav.active li.check{
    background: #3D5863;
}
.red-color ul.mainNav.active li:hover, .red-color ul.mainNav.active li.check{
    background: #DD7878;
}
.light-green-color ul.mainNav.active li:hover, .light-green-color ul.mainNav.active li.check{
    background: #4FADA8;
}
.black-color ul.mainNav.active li:hover, .black-color ul.mainNav.active li.check{
    background: #444755;
}
ul.mainNav.active > li:hover, ul.mainNav.active > li.check{
    width: 250px;
    z-index: 11;
}
ul.mainNav.active li a span, ul.mainNav.active li a b{
    display: none;
}
ul.mainNav.active li:hover a span, ul.mainNav.active li.check a span, ul.mainNav.active li:hover a b, ul.mainNav.active li.check a b {
    display: inline-block;
}
ul.mainNav.active ul ul, ul.mainNav.active ul ul ul{
    left: 0;
}

/*** For Mobile Mobile ***/


.navigation{
    color: #ffffff;
}
.black-color .navigation{
    background: #3F414D;
}
.blue-color .navigation{
    background: #5EBFD8;
}
.deep-blue-color .navigation{
    background: #3A515A;
}
.red-color .navigation{
    background: #FF7878;
}
.light-green-color .navigation{
    background: #1FB5AD;
}
.navigation a h1{
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    color: #f2f2f2;
    margin: 0;
    padding: 0;
    line-height: 37px;
    text-transform: uppercase;
}
.light-green-color .navigation a h1{
    color: #f2f2f2;
}
.red-color .navigation a h1{
    color: #f2f2f2;
}
.blue-color .navigation a h1{
    color: #FFFFFF;
}
.navigation input.top-search{
    float: left;
}





.phone-nav-box{
    background: #58595B;
    text-align: right;
}
.phone-nav-box .phone-logo{
    text-align: left;
    float: left;
}

.phone-nav-box .phone-logo h1{
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 38px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
.red-color .phone-nav-box .phone-logo h1,
.blue-color .phone-nav-box .phone-logo h1,
.light-green-color .phone-nav-box .phone-logo h1,
.black-color .phone-nav-box .phone-logo h1,
.deep-blue-color .phone-nav-box .phone-logo h1{
    color: #FFFFFF;
}
.red-color .phone-nav-box{
    background: #DD7878;
}
.blue-color .phone-nav-box{
    background: #53A2B8;
}
.light-green-color .phone-nav-box{
    background: #4FADA8;
}
.black-color .phone-nav-box{
    background: #444755;
}
.deep-blue-color .phone-nav-box{
    background: #324E59;
}
.phone-nav-box a{
    font-size: 20px;
    display: inline-block;
    padding: 10px 20px;
    outline: 0;
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    text-align: right;
    line-height: 38px;
}
.red-color .phone-nav-box a, .blue-color .phone-nav-box a, .light-green-color .phone-nav-box a, .black-color .phone-nav-box a, .deep-blue-color .phone-nav-box a{
    color: #ffffff;
}


.phone-nav-box a:hover{
    text-decoration: none;
}
.phone-nav-box a span{

    line-height: 28px;
}

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

/*------------------------------------------------------------------
  -------------------------- BREADCRUMB -------------------------
-------------------------------------------------------------------*/
.ls-breadcrumbs {
    display: inline-block;
    overflow: hidden;
    border-radius: 1px;
}

.ls-breadcrumbs a {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 12px;
    line-height: 36px;
    color: #565656;
    padding: 0 20px 0 30px;
    background: #E3DFD8;
    position: relative;
}

.ls-breadcrumbs a:first-child {
    padding-left: 20px;
    border-radius: 1px;
}
.ls-breadcrumbs a:first-child:before {
    left: 14px;
}
.ls-breadcrumbs a:last-child {
    border-radius: 1px;
    padding-right: 20px;
}

.ls-breadcrumbs a.active, .ls-breadcrumbs a:hover{
    background: #e0e0e0;
}

.ls-breadcrumbs a.active:after, .ls-breadcrumbs a:hover:after {
    background: #e0e0e0;
}

.ls-breadcrumbs a:after {
    content: '';
    position: absolute;
    top: 0;
    right: -18px;
    width: 36px;
    height: 36px;
    transform: scale(0.707) rotate(45deg);
    z-index: 1;
    background: #E3DFD8;
    box-shadow:
    2px -2px 0 2px rgba(0, 0, 0, 0.1),
    3px -3px 0 2px #e0e0e0;
    border-radius: 0 5px 0 50px;
}

.ls-breadcrumbs a:last-child:after {
    content: none;
}

.ls-breadcrumbs a .fa{
    font-size: 14px;
    margin-right: 3px;
    color: #565656;
}
.breadcrumb-box{
    margin-bottom: 20px;
}
.breadcrumb li{
    font-size: 12px;
}
.breadcrumb li a{
    color: #565656;
    font-size: 12px;
    outline: 0;
}
.breadcrumb > li + li:before{
    color: #565656;
}
/**** breadcrumb simple ***/
/****** Breadcrumb ****/
.ls-breadcrumbs-simple {
    display: inline-block;
    overflow: hidden;
    border-radius: 1px;
}

.ls-breadcrumbs-simple a {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 12px;
    color: #565656;
    padding: 0 10px 0 10px;
    position: relative;
}

.ls-breadcrumbs-simple a:first-child {
    padding-left: 0;
    margin-left: 0;
    border-radius: 1px;
}
.ls-breadcrumbs-simple a:first-child:before {
    left: 14px;
}
.ls-breadcrumbs-simple a:last-child {
    border-radius: 1px;
    padding-right: 20px;
}

.ls-breadcrumbs-simple a.active,
.ls-breadcrumbs-simple a.active .fa,
.ls-breadcrumbs-simple a:hover{
    color: #1fb5ad;
}

.ls-breadcrumbs-simple a.active:after,
.ls-breadcrumbs-simple a:hover:after,
.ls-breadcrumbs-simple a:hover .fa{
    color: #1fb5ad;
}

.ls-breadcrumbs-simple a:after {
    content: '';
    position: absolute;
    top: 4px;
    right: 0;
    width: 10px;
    height: 10px;
    transform: scale(0.707) rotate(45deg);
    z-index: 1;
    box-shadow:
    1px -1px 0 1px rgba(0, 0, 0, 0.1),
    1px -1px 0 1px #E3DFD8;
    border-radius: 0 5px 0 50px;
}

.ls-breadcrumbs-simple a:last-child:after {
    content: none;
}

.ls-breadcrumbs-simple a .fa{
    font-size: 14px;
    margin-right: 3px;
    color: #565656;
}
/****/
.breadcrumb{
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    background: #e0e0e0;
    margin-bottom:15px;
}
.breadcrumb.no-background{
    background: none;
}
/*-----------------------------------------------------------------*/

/*------------------------------------------------------------------
   -------------------------MAIN WRAPPER-------------------------
-------------------------------------------------------------------*/
#min-wrapper{
    width: 100%;
    float: left;
    padding-left: 200px;
    background: #58595B;
}
#min-wrapper.active{
    padding-left: 50px;
}
.black-color #min-wrapper{
    background: #3F414D;
}
.deep-blue-color #min-wrapper{
    background: #324E59;
}
.red-color #min-wrapper{
    background: #DD7878;
}
.blue-color #min-wrapper{
    background: #53A2B8;
}
.light-green-color #min-wrapper{
    background: #4FADA8;
}

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



/*------------------------------------------------------------------
   -------------------------RIGHT WRAPPER---------------------------------
-------------------------------------------------------------------*/
#right-wrapper{
    width: 280px;
    height: 100%;
    min-height: 800px;
    background: #303741;
    float: left;
    position: fixed;
    right: -280px;
    z-index: 999;
    top: 0px;
}
#right-wrapper .close-right-wrapper{
    position: absolute;
    right: 10px;
    top: 5px;
}
#right-wrapper .close-right-wrapper a{
    font-size: 16px;
    color: #fff;
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#right-wrapper .close-right-wrapper a:hover{
    color: #ff7878;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#right-wrapper .tab-content{
    background: #303741;
}
#right-wrapper.active{
    right: 0;
}
#right-wrapper .nav-tabs{
    border-bottom: none;
    text-align: center;
}
#right-wrapper .nav-tabs li{
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    margin-bottom: 0;

}
#right-wrapper .nav-tabs li a{
    font-size: 14px;
    padding: 9px 10px;
    margin-right: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    border: none;
    color: #ffffff;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#right-wrapper .nav-tabs li.active a, #right-wrapper .nav-tabs li:hover a{
    border-radius: 0;
    -webkit-border-radius: 0;
    background: #FF7878;
    color: #ffffff;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.chat-group{
    color: #7F8186;
    padding: 10px 0 10px 20px;
}
.chat-group h3{
    margin: 0;
    text-transform: capitalize;
    padding-bottom: 10px;
}
.chat-group a{
    color: #BEC0C2;
    font-style: normal;
    display: block;
    padding-bottom: 10px;
    font-size: 13px;
    outline: none;
}
.chat-group a:hover, .chat-group a.active{
    text-decoration: none;
    color: #ffffff;
    outline: none;
}
#chatTab .badge{ /**** Issue Fixed @new ***/
    font-size: 10px;
    line-height: 1;
    margin-left: 20px;
    min-width: 14px;
    padding:0;
    line-height: 15px;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
.chat-box{
    width: 100%;
    background: #343A45;
}
.chat-box .chat-box-header{
    padding: 3px 0 3px 20px;
    border-bottom: 1px solid #303741;
    color: #BEC0C2;
}
.chat-box .chat-box-header h5{
    font-size: 13px;
}
.chat-box .chat-box-content{
    color: #BEC0C2;
}
.chat-box .chat-box-content ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.chat-box .chat-box-content ul li{
    padding: 10px 0 20px 20px;

    margin-bottom: 0px;
    position: relative;

}
.chat-box .chat-box-content ul li:nth-child(even) {
    background: #303844;
}
.chat-box .chat-box-content ul li:nth-child(odd) {

}
.chat-box .chat-box-content span.user{
    font-size: 13px;
    color: #ffffff;
}
.chat-box .chat-box-content p{
    font-size: 14px;
    margin-bottom: 0;
}
.chat-box .chat-box-content span.time{
    font-size: 10px;
    position: absolute;
    bottom: 10px;
    right: 5px;
    margin-right: 20px;
}
.chat-write{

}
.chat-write textarea{
    border: 1px solid #303741;
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    color: #ffffff;
    background: #303741;
    overflow: hidden;
    word-wrap: break-word;
    resize: horizontal;
    height: 32px;
}
.chat-write textarea:focus, .chat-write textarea:hover{
    border: 1px solid #303741;
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
    -webkit-border-radius: 0;
}
.nano {
    height: 300px;
}

.nano .nano-pane   {
    background: #e0e0e0;
}
.nano .nano-slider {
    background: #3F414D;
}
.nano-chat{
    height: 200px;
}
.nano-progress{
    height: 150px;
}
.progress-content{
    padding-right: 20px;
}
.setting-box{
    color: #7F8186;
    padding: 10px 0 10px 0px;
}
.setting-box h3{
    margin: 0;
    padding-bottom: 10px;
    text-transform: capitalize;
}
.setting-box h5{
    font-size: 12px;
    padding: 0;
    margin: 0 0 5px 0;
    color: #bec0c2;
}

.setting-box-content ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.setting-box-content ul li{
    text-align: right;
    margin-bottom: 10px;
}
.setting-box-content ul li b{
    float: left;
}
.setting-box-content ul li span{
    color: #bec0c2;
}
.setting-box-content ul li span.switchery{
    height: 15px;
    width: 30px;
}
.setting-box-content ul li span.switchery small{
    height: 15px;
    width: 15px;
}
.rotationToClick, .right-sidebar, .right-sidebar-setting{
    display:inline-block;
}

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


/*------------------------------------------------------------------
  -------------------------- DASHBOARD --------------------------
-------------------------------------------------------------------*/
/********** Dashboard css Start **********/
#realTimeChart{
    overflow: hidden;
}
.home-row-top{
    margin-top: 27px;
    margin-bottom: 15px;
}
.current-status-widget ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.current-status-widget ul li {
    margin-bottom: 8px;
    cursor: pointer;
}
.current-status-widget ul li div.status-box{
    height: 100%;
    width: 100%;

}

.current-status-widget ul li div.status-box div.status-box-icon{
    height: 50px;
    width: 50px;
    text-align: center;
    float: left;
}
.current-status-widget ul li div.status-box div.status-box-icon i{
    font-size: 25px;
    line-height: 50px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}

@keyframes changeiconsize {
    0% {
        font-size: 25px;
    }
    25%{
        font-size: 10px;
    }
    50% {
        font-size: 40px;
    }
    75%{
        font-size: 10px;
    }
    100% {
        font-size: 25px;
    }
}
@-webkit-keyframes changeiconsize {
    0% {
        font-size: 25px;
    }
    25%{
        font-size: 10px;
    }
    50% {
        font-size: 40px;
    }
    75%{
        font-size: 10px;
    }
    100% {
        font-size: 25px;
    }
}

#box {

}
.current-status-widget ul li:hover div.status-box div.status-box-icon i{
    -webkit-animation:  changeiconsize 1s infinite;
    animation: changeiconsize 1s infinite;

}
div.status-box-content{
    float: left;
    height: 50px;
    margin-left: 10px;
}
div.status-box-content h5{
    margin-bottom: 3px;
    margin-top: 3px;
    font-size: 15px;
}
div.status-box-content p{
    font-size: 15px;
}
div.status-box-content h5 i{
    font-size: 12px;
}
.pie-widget{
    text-align: center;
    margin: auto;
    border: 1px solid #e0e0e0;
    padding: 20px 0;
}
.pie-widget p{
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}
.pie-widget h5{
    margin: 5px;
    font-size: 15px;
}
.pie-widget canvas{
    left: 0;
    position: absolute;
    top: 0;
}
.chart-pie-widget{
    display: inline-block;
    height: 110px;
    line-height: 110px;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
    width: 110px;
    z-index: 2;
}
.pie-widget-count{
    line-height: 110px;
    text-align: center;
    font-size: 14px;
}
.pie-widget-count:after {
    content: "%";
    font-size: 12px;
    margin-left: 0.1em;
}
.v-map-widget{
    border: 1px solid #e0e0e0;
    height: 340px;
}
.v-map-widget h3{
    padding: 10px 20px;
    margin: 0;
}
.world_map_home_widget{
    height: 302px;
}
.v-map-overlay{
    position: absolute;
    right: 15px;
    top: 38px;
    width: 100px;
    background: rgba(0, 0, 0, 0.50);
    z-index: 1;
}
.v-map-overlay ul{
    list-style: none;
    margin: 0;
    padding: 5px 10px;
}
.v-map-overlay ul li{
    color: #f2f2f2;
}
.world_map_home_widget .jvectormap-zoomin,.world_map_home_widget .jvectormap-zoomout{
    color: #f2f2f2;
    background: rgba(0, 0, 0, 0.50);
}
.table-bordered > thead > tr > th, .table-bordered > thead > tr > td{
    border-bottom-width: 1px;
}

.flotPieChartWidget{
    height: 250px;
    width: 100%;
    margin-top: 15px;
}

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


/*------------------------------------------------------------------
  -------------------------- EMAIL -------------------------------
-------------------------------------------------------------------*/
/*Email top ui start*/
.top-navigation .email-top li a{
    padding: 0;
    display: block;
    color: #6e6e6e;
}
.top-navigation .email-top li a:hover{
    background: none;
}
.email-top {
    list-style: none;
    padding: 0;
    margin: 0;
}
.email-top li {
    border-bottom: 1px dashed #cbc5ba;
    display: inline-block;
    margin-bottom: 0;
    padding: 5px 10px;
    width: 100%;
}
.email-top li a {
    color: dimgrey;
}
.email-top li .email-top-image {
    float: right;
    height: 50px;
    width: 50px;
    overflow: hidden;
}
.email-top li .email-top-image img {
    width: 100%;
    /*border-radius: 50%;*/
}
.email-top li .email-top-content {
    font-size: 14px;
    padding-top: 6px;
    line-height: 18px;

}
.email-top li .email-top-content > div{
    font-size: 13px;
    font-style: italic;
}
.email-top li .email-top-content .badge {
    float: right;
}
.email-top li .email-top-content a {
    color: #1fb5ad;
    font-size: 15px;
}
.email-top li .email-top-content a:after {
    content: "  -  ";
}

/****/
/**** Mail box css start****/
.fieldcontainer {
    display: block;
    margin: 0;
    position: relative;
    width: 100%;
}
.searchfieldjs {
    background-color: #FFFFFF;
    border: 1px solid #CBC5BA;
    border-radius: 1px;
    color: #CCCCCC;
    display: block;
    font-size: 12px;
    padding: 7px 11px;
    width: 100%;
}
#search2btn {
    background: url("../bundles/kanguraerpadministracio/images/search-icon.png") top left no-repeat;
    border: 0 none;
    cursor: pointer;
    height: 32px;
    opacity: 0.65;
    position: absolute;
    right: 0;
    top: 7px;
    width: 25px;
}

.no-default-padding {
    padding: 0;
}

.mail-search-box {
    margin-bottom: 15px;
}

.mail-box {
    width: 100%;
}

.mail-box-navigation {
    height: 100%;
    width: 100%;
    text-align: center;
}
.mail-box-list.home {
    padding-left: 10px;
    width: 100%;
}

.mail-navigation {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mail-navigation li {

    text-align: center;
    background: #e0e0e0;
    width: 100px;
    height: 60px;
    overflow: hidden;
    display: inline-block;
}
.mail-navigation li a {
    display: inline;
    color: #000;
    text-decoration: none;
    outline: 0;
}
.mail-navigation li a:hover{
    text-decoration: none;
}
.mail-navigation li a i.fa {
    font-size: 28px;
    line-height: 60px;
    display: block;
    color: #FF7878;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.mail-navigation li a span {
    color: #565656;
    display: block;
    padding-bottom: 11px;
}
.mail-navigation li a:hover i.fa{
    font-size: 20px;
    line-height: 30px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
    color: #1fb5ad;
}
.mail-navigation li a.active i.fa{
    color: #1fb5ad;
}

.mail-box-list {
    width: 30%;
    float: left;
    overflow: hidden;
}
.mail-list {
    padding: 0;
    margin: 0;
    list-style: none;
    cursor: pointer;
}
.mail-list li {
    padding: 10px;
    border-bottom: 1px solid #cbc5ba;
    border-left: 1px solid #cbc5ba;
    border-right: 1px solid #cbc5ba;
    height: 72px;
    overflow: hidden;
}
.mail-list li.new-mail div.mail-user-image {
    color: #1fb5ad;
    border: 1px solid #1fb5ad;
    -moz-border: 1px solid #1fb5ad;
    -webkit-border: 1px solid #1fb5ad;
}
.mail-list li.new-mail div.mail-user-image i {
    color: #1fb5ad;
}
.mail-list li:first-child {
    border-top: 1px solid #cbc5ba;
}
.mail-list a > i {
    color: #565656;
    width: 20px;
    font-size: 14px;
}
.mail-list div.mail-user-image, .mail-list div.mail-user-mail {
    float: left;
}
.mail-list div.mail-user-image {
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    padding: 10px;
    border: 1px solid #fe6c6c;
}
.mail-list div.mail-user-image i {
    color: #fe6c6c;
    font-size: 25px;
    line-height: 30px;
}
.mail-list div.user-picture {
    padding: 0;
    overflow: hidden;
    height: 50px;
}
.mail-list div.user-picture img {
    height: 100%;
}
.mail-list div.mail-user-mail {
    padding-left: 10px;
}
.mail-list div.mail-user-mail span {
    line-height: 45px;
    transition-delay: 400ms;
    -moz-transition-delay: 400ms;
    -webkit-transition-delay: 400ms;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.mail-list div.mail-user-mail .mail-action {
    opacity: 0;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.mail-list li:hover .mail-user-mail span {
    line-height: 15px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.mail-list li:hover .mail-action {
    transition-delay: 400ms;
    -moz-transition-delay: 400ms;
    -webkit-transition-delay: 400ms;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
    opacity: 1;
}

.mail-header {
    border-top: 1px solid #cbc5ba;
    border-bottom: 1px dashed #cbc5ba;
}

.mail-contact-user-image-box {
    float: right;
    width: 115px;
}
.mail-contact-user-image-box .mail-date {
    float: right;
    width: 115px;
    color: white;
    background: #fe6c6c;
    padding: 5px;
    text-align: center;
}
.mail-contact-user-image-box .mail-date span.date {
    font-weight: bold;
    font-size: 20px;
}
.mail-contact-user-image-box .mail-date span.month {
    text-transform: uppercase;
}

div.mail-contact-user-image {
    border: 1px solid #fe6c6c;
    border-radius: 58px;
    padding: 10px;
    text-align: center;
    width: 115px;
    height: 115px;
    line-height: 115px;
    margin-bottom: 10px;
    float: right;
}

div.user-picture-big {
    padding: 0;
    overflow: hidden;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}
div.user-picture-big img {
    height: 100%;
}

div.mail-contact-user-image i {
    color: #fe6c6c;
    font-size: 50px;
}

.border {
    border: 1px solid #fe6c6c;
}

.mail-body {
    float: left;
    width: 70%;
}
.mail-body.mail-body-inbox{
    padding-left: 20px;
}
.mail-contact {
    width: 100%;
    padding-bottom: 18px;
    border-bottom: 1px dashed #cbc5ba;
}

.mail-contact-address {
    float: left;
    width: 80%;
    font-size: 16px;
    margin-top: 40px;
}
.mail-contact-address .contact-address, .mail-contact-address .mail-subject {
    font-size: 14px;
    padding: 5px 10px;
    width: 100%;
    border-radius: 1px;
    border: 1px solid #cbc5ba;
    background: #e0e0e0;
    margin-bottom: 15px;
}

.compose-mail-box.home .mail-contact-address {
    float: left;
    width: 100%;
}
.compose-mail-box.home .mail-contact-user-image-box {
    display: none;
}

.mail-main-content {
    padding: 10px 0;
}

.mail-action-bar {
    background: white;
    border: 1px solid #cbc5ba;
    margin: 0 auto 15px auto;
    text-align: left;
}
.mail-action-bar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mail-action-bar ul li {
    display: inline-block;
    height: 30px;
    margin-left: 15px;
}
.mail-action-bar ul li a {
    line-height: 30px;
    margin-right: 20px;
    color: dimgrey;
}
.mail-action-bar ul li a i.fa{
    font-size: 14px;
}
.mail-action-bar ul li a.active {
    color: #269abc;
}
div.compose-mail-box {
    width: 100%;
}

div.compose-mail-box.home {
    padding-left: 0;
}

input.bg-white {
    background: white;
}

.addBccView, .addCcView {
    display: none;
    margin-bottom: 10px;
}
.toView{
    margin-bottom: 10px;
}

.compose-mail-box .mail-contact {
    border-bottom: 0;
    -moz-border-bottom: 0;
    -webkit-border-bottom: 0;
}

#compose-popup-view {
    position: fixed;
    right: 0;
    bottom: -500px;
    min-height: 500px;
    width: 50%;
    border: 1px solid #fe6c6c;
    z-index: 100;
    background: white;
}

.mail-box-header {
    background: #ff7878;
    height: 50px;
}
.mail-box-header h4 {
    padding: 0;
    margin: 0;
    color: white;
    width: 100px;
    float: left;
    line-height: 50px;
    padding-left: 15px;
}
.mail-box-header ul.popup-mail-action {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100px;
    float: right;
    text-align: right;
    padding-right: 15px;
}
.mail-box-header ul.popup-mail-action li {
    display: inline-block;
    padding-left: 10px;
}
.mail-box-header ul.popup-mail-action li a i {
    color: white;
    line-height: 50px;
}

.mail-box-content {
    padding: 10px;
}
.mail-box-content #mail_body_content {
    width: 100%;
    height: 300px;
    margin: 5px 0;
}

.mail-send-btn {
    margin-top: 15px;
}
ul.attachments-preview-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.attachments-preview-list li{
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
}
.ls-mail-img{
    position: relative;
    display: inline-block;
}
.ls-mail-img img {

    display: block;
    margin: 0;
    padding: 0;
    max-width: 100%;
    height: auto;
}
.ls-mail-overlay {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.8);
    display: block;
    overflow: hidden;
    position: absolute;
    transition: all 0.5s ease 0s;
    z-index: 20;
    overflow: hidden;
;
}
.ls-mail-overlay{
    bottom: 0;
    height: 0;
    left: 0;
    right: 0;
    width: 100%;
}
.ls-mail-overlay-link{
    display: block;
    line-height: 50px;
    text-align: center;
    position: absolute;
    z-index: 100;
}
.ls-mail-overlay-link a{
    color: #F2F2F2;
    font-size: 24px;
    margin: 0 5px;
    outline: 0 none;
    text-decoration: none;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ls-mail-overlay-link a:hover{
    color: #ff7878;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ls-mail-overlay-link{
    bottom: 50%;
    left: 0;
    margin: 0 auto -30px;
    right: 0;
}
.overlay-hover .ls-mail-overlay{
    height: 100%;
}
/*****/

/*** Chat Page Start ***/
.ls-chat {
    overflow: hidden;
    margin-bottom: 20px;
}

.ls-chat img,
.ls-chat .rounded {
    float: left;
    margin-right: 10px;
    width: 40px;
    height: auto;
}
.ls-chat img {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.ls-chat img.rounded {
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.ls-chat .text {
    margin-left: 45px;
}

.ls-chat .text-right {
    margin: 0 45px 0 0;
}

.ls-chat .status,
.ls-chat .status-alter {
    height: 25px;
    padding: 10px 0 0 10px;
    border-bottom: 1px solid #e8e8e8;
    -webkit-border-top-right-radius: 2px;
    -webkit-border-bottom-right-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 2px;
    -moz-border-radius-topright: 2px;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-topleft: 2px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    font-size: 12px;
    border-right: 1px solid #ebebeb;
    border-left: 1px solid #ebebeb;
    border-top: 1px solid #ebebeb;
}

.ls-chat .status {
    background-color: #f9f9f9;
    background: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#fef9f9));
    background: -webkit-linear-gradient(top, #f9f9f9, #fef9f9);
    background: -moz-linear-gradient(top, #f9f9f9, #fef9f9);
    background: -ms-linear-gradient(top, #f9f9f9, #fef9f9);
    background: -o-linear-gradient(top, #f9f9f9, #fef9f9);
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#feffff', endColorstr='#f9f9f9', GradientType=0);
    /* IE6-9 */
}

.ls-chat .status-alter {
    background-color: #f9f9f9;
    background: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#ffeeee));
    background: -webkit-linear-gradient(top, #f9f9f9, #ffeeee);
    background: -moz-linear-gradient(top, #f9f9f9, #ffeeee);
    background: -ms-linear-gradient(top, #f9f9f9, #ffeeee);
    background: -o-linear-gradient(top, #f9f9f9, #ffeeee);
    filter: progid:dximagetransform.microsoft.gradient(startColorstr='#feffff', endColorstr='#f9f9f9', GradientType=0);
    /* IE6-9 */
}

.status .date {
    margin-right: 10px;
    float: right;
    font-style: italic;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.92);
}

.ls-chat .user {
    font-weight: bold;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.92);
    font-size: 14px;
}

.ls-chat p {
    margin: 0;
    background: #ffffff;
    padding: 2px 10px;
    border-bottom: 1px solid #ebebeb;
    border-left: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
}

.text .msg,
.text .msg-alter {
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    overflow: hidden;
}

.text .date,
.text-right .date {
    display: inline-block;
    font-size: 11px;
    font-style: italic;
    padding: 3px 3px 0;
}

.text .date {
    float: right;
}

.text-right .date {
    float: left;
}

.text .msg {
    background-color: #e0e0e0;
}

.text .msg-alter {
    background-color: #1fb5ad;
    text-align: right;
    color: white;
}

.ls-chat .right {
    float: right;
    margin-right: 0;
}

.ls-chat .triangle,
.ls-chat .triangle-right {
    width: 9px;
    height: 12px;
}

.ls-chat .triangle {
    float: left;
    position: relative;
    position: relative;
    left: 2px;
    top: 5px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #e0e0e0;
}

.ls-chat .triangle-right {
    float: right;
    position: relative;
    position: relative;
    right: 1px;
    top: 5px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #1fb5ad;
}

.input-group-message input {
    height: 34px;
}

.nano.nano-chat-widget{
    height: 340px;
}
.nano .nano-content.nano-chat-box{
    padding: 10px 20px 10px 5px;
}
.nano.nano-recent-activities{
    height: 430px;
}
.nano .nano-content.nano-activities{
    padding: 10px 10px 10px 5px;
}
.nano > .nano-pane{
    width: 10px;
    cursor: pointer;
}

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


/*------------------------------------------------------------------
  -------------------------- CHARTS -------------------------------
-------------------------------------------------------------------*/
.bar_chart_canvas_box, .line-chart-area-box{
    width: 100%;
}
.pie-chart-area-box, .doughnut-chart-area-box, .polar-chart-area-box, .radar-chart-area-box{
    width: 100%;
}
#chartTwoLine svg {
    height: 400px;
    width: 100%;
}
.groupMultiBarView {
    height: 400px;
    width: 100%;
}
canvas#barChartCanvas {
    width: 100% !important;
    height: auto !important;
}
canvas#polarAreaChartCanvas, canvas#radarChartCanvas, canvas#doughnutChartCanvas, canvas#pieChartCanvas, canvas#lineChartCanvas {
    width: 100% !important;
    height: auto !important;
}
.pieChartCanvasDataView, .doughnutChartCanvasDataView, .polarAreaChartCanvasDataView, .radarChartCanvasDataView{
    border-top: 1px solid #e3dfd8;
    margin: 15px -16px 0;
}
.pieChartCanvasDataView ul, .doughnutChartCanvasDataView ul, .polarAreaChartCanvasDataView ul, .radarChartCanvasDataView ul{
    height: 95px;
    list-style: none outside none;
    margin: 20px auto 10px;
    padding: 5px auto;
    width: 175px;
}

.pieChartCanvasDataView ul li span, .doughnutChartCanvasDataView ul li span, .polarAreaChartCanvasDataView ul li span, .radarChartCanvasDataView ul li span{
    border-radius: 8px;
    display: inline-block;
    height: 8px;
    margin-right: 5px;
    transition: all 300ms ease-in-out 0s;
    width: 8px;
}
.sparkBarView, .sparkPieView{
    height: 400px;
}
.sparkPieViewData{
    margin-top: 20px;
}
.sparkPieViewData ul{
    list-style: none;
    margin: 0;
    padding: 5px 10px;
}
.sparkPieViewData ul li{
    margin-bottom: 5px;
    margin-right: 15px;
    display: inline-block;
}
.sparkPieViewData ul li span{
    border-radius: 8px;
    display: inline-block;
    height: 8px;
    margin-right: 5px;
    transition: all 300ms ease-in-out 0s;
    width: 8px;
}
.sparkLine-border{
    border: 1px solid #e3dfd8;
}
span.textColor{
    background: #565656;
}
span.greenActive{
    background: #71AD70;
}
span.redActive{
    background: #FF7878;
}
span.fillColor1{
    background: rgba(220,220,220,0.5);
}
span.fillColor4{
    background: #C2E2C2;
}
span.fillColor5{
    background: rgba(255, 120, 120, 0.76);
}
span.fillColor6{
    background: rgba(91, 194, 222, 0.9);
}
span.fillColor7{
    background: rgba(239, 174, 77, 0.71);
}
span.lightBlueActive{
    background: #269abc;
}
span.brownActive{
    background: #B16666;
}
span.defultColor{
    background: #1fb5ad;
}
span.defultBorder{
    background: #E3DFD8;
}
span.blueActive{
    background: #706AF4;
}
.flotChartRealTime {
    width: 100%;
    height: 350px;
    font-size: 14px;
    line-height: 0.5em;
    padding: 10px;
}
.flotChartRealTime.homeChart {
    height: 280px;
}

.flotPieChart {
    height: 350px;
    width: 100%;
}
.seriesToggle {
    height: 400px;
    width: 100%;
}
#choices {
    margin: 25px auto 0;
    list-style: none;
}
#choices li {
    width: 20%;
    display: inline-block;
}
#choices label.switch-label {
    margin-left: 8px;
    margin-right: 35px;
}
.paiChartAction {
    text-align: center;
}
.paiChartAction button {
    margin-bottom: 10px;
}
.morris-hover {
    position: absolute;
    z-index: 1000;
}

.morris-hover.morris-default-style {
    border-radius: 10px;
    padding: 6px;
    color: #666;
    background: rgba(255, 255, 255, 0.8);
    border: solid 2px rgba(230, 230, 230, 0.8);
    font-family: sans-serif;
    font-size: 12px;
    text-align: center;
}

.morris-hover.morris-default-style .morris-hover-row-label {
    font-weight: bold;
    margin: 0.25em 0;
}

.morris-hover.morris-default-style .morris-hover-point {
    white-space: nowrap;
    margin: 0.1em 0;
}

.sparkline-box {
    text-align: center;
}
.sparkline-box p {
    margin-top: 15px;
}
.sparkline-box div.panel-heading {
    text-align: left;
}

.sparkline {
    width: 250px;
    height: auto;
    margin: auto;
}

.sparklineBadge-box {
    padding: 10px;
    float: right;
    display: inline-block;
}
/*Spark Line tooltip start*/
.jqstooltip {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
/*Spark Line tooltip start*/

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


/*------------------------------------------------------------------
  -------------------------- FORM STAFFS -------------------------
-------------------------------------------------------------------*/
form.ls_form_dashed {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px dashed #cbc5ba;
    box-shadow: none;
}

form.ls_form_dashed input {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px dashed #cbc5ba;
    box-shadow: none;
    border-radius: 0;
}

form.ls_form_dashed input:focus, input.bootbox-input:focus {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #cbc5ba;
    box-shadow: none;
    border-radius: 0;
}

form.ls_form input, form.ls_form select, form.ls_form textarea, input.bootbox-input {
    border-radius: 1px;
    outline: none;
}

form.ls_form input:focus,
form.ls_form input.active,
form.ls_form select:focus,
form.ls_form select.active,
form.ls_form textarea:focus,
form.ls_form textarea.active,
input.bootbox-input:focus {
    box-shadow: 0 2px 2px #F2F2F2 inset, 0 0 2px #98B6CF;
    border-color: #AEAEAE;
    outline: none;
}

form.ls_form input.rounded {
    border-radius: 30px;
}

form.ls_form label.checkbox, form.ls_form label.radio {
    font-weight: 400;
}

div.form_view {
    padding: 0 30px;
}

.form-box {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #cbc5ba;
}

.form-box.last {
    border: 0;
}


/*****/
.form-control{
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
}
.message-form .control-label{
    text-align: right;
}
.has-success .form-control{
    border-color:#6DB46F;
}
.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline{
    color: #6DB46F;
}
.has-success .form-control:focus{
    border-color:#6DB46F;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #A1EAA3;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #A1EAA3;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #A1EAA3;
}
.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline{
    color: #AA8E5E;
}
.has-warning .form-control{
    border-color: #AA8E5E;
}
.has-warning .form-control:focus{
    border-color: #AA8E5E;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #DCC59D;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #DCC59D;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 6px #DCC59D;
}
.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline{
    color: #ff3434;
}
.has-error .form-control{
    border-color: #ff3434;
}
.has-error .form-control:focus{
    border-color: #ff3434;
    box-shadow: 0 1px 1px rgba(254, 158, 158, 0.08) inset, 0 0 6px #B4AEAE;
    -moz-box-shadow: 0 1px 1px rgba(254, 158, 158, 0.08) inset, 0 0 6px #B4AEAE;
    -webkit-box-shadow: 0 1px 1px rgba(254, 158, 158, 0.08) inset, 0 0 6px #B4AEAE;
}
.form-horizontal .has-feedback .form-control-feedback{
    top: 10px;
}
.form-horizontal .has-feedback .radio .form-control-feedback {
    visibility: hidden;
}
.form-horizontal .has-feedback .checkbox .form-control-feedback {
    visibility: hidden;
}

.formError .formErrorContent {
    width: 100%;
    background: #ee0101;
    position:relative;
    color: #fff;
    min-width: 120px;
    font-size: 11px;
    box-shadow: 0 0 6px #000;
    border: none;
    -moz-box-shadow: 0 0 6px #000;
    -webkit-box-shadow: 0 0 6px #000;
    -o-box-shadow: 0 0 6px #000;
    padding: 4px 10px 4px 10px;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    -o-border-radius: 1px;
}
.formError .formErrorArrow div {
    border-left: none;
    border-right: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    font-size: 0px;
    height: 1px;
    background: #ee0101;
    margin: 0 auto;
    line-height: 0;
    font-size: 0;
    display: block;
}

/*****/
#editor {
    width: 100%;
    min-height: 200px;
    background-color: white;
    border: 1px dashed #cbc5ba;
    padding: 15px;
}

.editor-toolbar {
    border: 1px dashed #cbc5ba;
    margin: 0 0 15px 0;
}
.editor-toolbar .btn-group > a.btn {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    padding: 5px 12px;
    color: #235b67;
}
.editor-toolbar .btn-group > a.btn-info {
    color: white;
    background-color: #269abc;
}
.editor-toolbar a {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.radio-button-place {
    line-height: 84px;
}

#voiceBtn {
    display: none;
}

#editor:focus, #editor:active {
    outline: 0;
}

.myEditor.demo-image{
    text-align: center;
}

/***/

.box-switchery input {
    margin-left: 15px;
}

.help_text {
    font-size: 12px;
}

div.ls_divider {
    border-bottom: 1px dashed #cbc5ba;
    margin-top: 15px;
    padding-right: 15px;
}

div.ls_divider.last {
    border: 0;
}

input.ls-group-input, .ls-group-input {
    margin-bottom: 15px;
}

.multiselect-container > li > a {
    padding: 3px 0;
}

.multiselect-container > li > a > label > input {
    left: -9999em;
    position: absolute;
}

.full-width {
    width: 100%;
}

.slider.slider-vertical {
    margin-left: 5px;
}

.datePickerCall, .datePickerCall1 {
    cursor: pointer;
}



form.ls_form input.dial, form.ls_form input.dial:active, form.ls_form input.dial:focus {
    border: none;
    box-shadow: none;
    outline: 0;
}

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


/*------------------------------------------------------------------
  -------------------------- TIME-LINE --------------------------
-------------------------------------------------------------------*/
.ls_tmtimeline {
    margin: 30px 0 0 0;
    padding: 0;
    list-style: none;
    position: relative;
}

/* The line */
.ls_tmtimeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10px;
    background: #dbcdad;
    left: 25%;
    margin-left: -10px;
}

.ls_tmtimeline > li {
    position: relative;
}

.ls_tmtimeline > li .ls-timeline-user {
    position: absolute;
    text-align: center;
    width: 25%;
    padding-right: 60px;
}

.ls-timeline-user .media-heading {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #5c5b56;
    font-size: 15px;
}

.ls_tmtimeline > li .ls-timeline-user img {
    width: 75px;
}

/* The date/time */
.ls_tmtimeline > li .ls_tmtime {
    display: block;
}

.ls_tmtimeline > li .ls_tmtime span {
    display: block;
}

.ls_tmtimeline > li .ls_tmtime span:first-child {
    font-size: 15px;
    color: #706a5c;
}

.ls_tmtimeline > li .ls_tmtime span:last-child {
    font-size: 15px;
    color: #71624e;
    font-weight: bold;
}

.ls_tmtimeline > li:nth-child(odd) .ls_tmtime span:last-child {
    color: #71624e;
}

/* Right content */
.ls_tmtimeline > li .ls_tmlabel {
    margin: 0 0 15px 30%;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    position: relative;
    border-radius: 1px;
}

.ls_tmtimeline > li:nth-child(odd) .ls_tmlabel {
    background: #5c5b56;
    color: #fff;
}

.ls_tmtimeline > li:nth-child(even) .ls_tmlabel {
    background: #CAB38B;
}

.ls_tmtimeline > li:nth-child(odd) .ls_tmlabel p {
    color: #D1D0CE;
}

.ls_tmtimeline > li .ls_tmlabel h2 {
    margin-top: 0px;
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 15px;
}

/* The triangle */
.ls_tmtimeline > li .ls_tmlabel:after {
    right: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-right-color: #CAB38B;
    border-width: 10px;
    top: 20px;
}

.ls_tmtimeline > li:nth-child(odd) .ls_tmlabel:after {
    border-right-color: #5c5b56;
}

.ls_tmlabel ul.task {
    padding: 0;
    margin: 0;
}

.ls_tmlabel ul.task li {
    display: block;
    list-style: none;
    text-align: left;
    color: #D1D0CE;
}

.ls_tmlabel ul.task li a {
    color: #D1D0CE;
}

.ls_tmlabel ul {
    padding: 0;
    margin: 0;
    text-align: center;
}

.ls_tmlabel ul li {
    position: relative;
    display: inline-block;
    list-style: none;
    margin: 3px;
}

.ls_tmlabel ul li img {
    width: 90px;
}

/* The icons */
.ls_tmtimeline > li .ls_tmicon {
    width: 40px;
    height: 40px;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    font-size: 1.4em;
    line-height: 40px;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    color: #806854;
    background: #fff5cf;
    border-radius: 50%;
    box-shadow: 0 0 0 8px #b39c7d;
    text-align: center;
    left: 25%;
    top: 0;
    margin: 7px 0 0 -25px;
}

.ls_tmtimeline > li.month {
    position: relative;
    text-align: center;
    height: 100px;
    margin: 40px 0;
}

.ls_tmtimeline > li.month h4 {
    font-size: 14px;
    line-height: 60px;
    color: timeline-user-time;
}

.ls_tmtimeline > li .ls_tmicon_ls {
    width: 80px;
    height: 80px;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    font-size: 1.4em;
    line-height: 80px;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    color: #806854;
    background: #fff5cf;
    border-radius: 50%;
    box-shadow: 0 0 0 8px #5c5b56;
    text-align: center;
    left: 23%;
    top: 0;
    margin: 0 0 0 -25px;
}

.ls_tmtimeline > li .ls_tmlabel iframe {
    height: 250px;
}

.ls-project{
    position: relative;
}

.ls-project ul{
    padding: 0;
    margin: -7px 0 0;
    text-align: center;
}

.ls-project ul li{
    display: inline-block;
    list-style: none;
    margin: 5px;

}

.ls-project ul li img{
    width: 95px;
    max-width: 100%;
}

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


/*------------------------------------------------------------------
  -------------------------- TABLE -------------------------------
-------------------------------------------------------------------*/
td.ls-table-progress .progress{
    margin-bottom: 0;
    margin-top: 6px;
}

.ls-table .table > thead > tr > th {
    font-family: 'Armata',sans-serif;
    font-weight: normal;
    font-size: 14px;
    border-bottom: medium none;
}

.ls-table-pagination .pagination {
    margin: 0;
}

.table tbody form input{
    width:100% !important;
    height: 100% !important;
}

/** Animated Table **/
.ls-animated-table th div.sortArrow {
    display: inline-block;
    float: right;
    height: 6px;
    margin-left: 5px;
    margin-top: 5px;
    position: relative;
    vertical-align: 2px;
    width: 11px;
}

.ls-animated-table th div.sortArrow div.sortArrowAscending,
.ls-animated-table th div.sortArrow div.sortArrowDescending {
    display: none;
    height: 6px;
    position: absolute;
    width: 11px;
}

.ls-animated-table th div.sortArrow div.sortArrowAscending {
    background: url("../bundles/kanguraerpadministracio/images/arrow_asc.png") repeat scroll 0 0 rgba(0, 0, 0, 0);
}

.ls-animated-table th div.sortArrow div.sortArrowDescending {
    background: url("../bundles/kanguraerpadministracio/images/arrow_desc.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
}

#ls-row tbody tr:hover {
    background: url("../bundles/kanguraerpadministracio/images/icons/glyphicons_move.png") no-repeat scroll right 10px center / 14px 14px rgba(0, 0, 0, 0);
    cursor: move;
}

#ls-column th:hover {
    background: url("../bundles/kanguraerpadministracio/images/icons/glyphicons_move.png") no-repeat scroll right 10px center / 14px 14px rgba(0, 0, 0, 0);
    cursor: move;
}



/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables features
 */
.dataTables_wrapper {
    position: relative;
    min-height: 302px;
    clear: both;
    _height: 302px;
    zoom: 1;
    /* Feeling sorry for IE */
}

.dataTables_processing {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 30px;
    margin-left: -125px;
    margin-top: -15px;
    padding: 14px 0 2px 0;
    border: 1px solid #ddd;
    text-align: center;
    color: #999;
    font-size: 14px;
    background-color: white;
}

.dataTables_length {
    float: left;
    margin-bottom: 10px;
}

.dataTables_length label select {
    width: 100px;
    color: #555555;
    border: 1px solid #cbc5ba;
    border-radius: 1px;
    font-size: 14px;
    height: 30px;
    line-height: 1.42857;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 3px;
    transition-delay: 0s, 0s;
    transition-duration: 0.15s, 0.15s;
    transition-property: border-color, box-shadow;
    transition-timing-function: ease-in-out, ease-in-out;
    background: url("../bundles/kanguraerpadministracio/images/datatable/sort_both.png") no-repeat;
    background-position: center right;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: "";
}

.dataTables_length label select:focus {
    border: 1px solid #cbc5ba;
    background: url("/bundles/kanguraerpadministracio/images/datatable/sort_desc.png") no-repeat;
    background-position: center right;
}

.dataTables_filter {
    width: 50%;
    float: right;
    text-align: right;
    margin-bottom: 10px;
}

.dataTables_filter label input {
    margin-left: 10px;
    border: 1px solid #cbc5ba;
    border-radius: 1px;
    color: #555555;
    font-size: 14px;
    height: 30px;
    line-height: 1.42857;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 6px;
    transition-delay: 0s, 0s;
    transition-duration: 0.15s, 0.15s;
    transition-property: border-color, box-shadow;
    transition-timing-function: ease-in-out, ease-in-out;
}

.dataTables_filter label input:focus {
    border: 1px solid #cbc5ba;
}

.dataTables_info {
    float: left;
    margin-top: 10px;
}

.dataTables_paginate {
    *width: 50px;
    float: right;
    text-align: right;
    margin-top: 10px;
}

/* Pagination nested */
.paginate_disabled_previous, .paginate_enabled_previous, .paginate_disabled_next, .paginate_enabled_next {
    height: 19px;
    width: 19px;
    margin-left: 3px;
    float: left;
}

.paginate_disabled_previous {
    background-image: url("/bundles/kanguraerpadministracio/images/datatable/back_disabled.png");
}

.paginate_enabled_previous {
    background-image: url("/bundles/kanguraerpadministracio/images/datatable/back_enabled.png");
}

.paginate_disabled_next {
    background-image: url("/bundles/kanguraerpadministracio/images/datatable/forward_disabled.png");
}

.paginate_enabled_next {
    background-image: url("/bundles/kanguraerpadministracio/images/datatable/forward_enabled.png");
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * DataTables sorting
 */
.sorting_asc {
    background: url("/bundles/kanguraerpadministracio/images/datatable/sort_asc.png") no-repeat center right;
}

.sorting_desc {
    background: url("/bundles/kanguraerpadministracio/images/datatable/sort_desc.png") no-repeat center right;
}

.sorting {
    background: url("/bundles/kanguraerpadministracio/images/datatable/sort_both.png") no-repeat center right;
}

.sorting_asc_disabled {
    background: url("/bundles/kanguraerpadministracio/images/datatable/sort_asc_disabled.png") no-repeat center right;
}

.sorting_desc_disabled {
    background: url("/bundles/kanguraerpadministracio/images/datatable/sort_desc_disabled.png") no-repeat center right;
}

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Misc
 */
.dataTables_scroll {
    clear: both;
}

.dataTables_scrollBody {
    *margin-top: -1px;
}

.clear {
    clear: both;
}

.dataTables_empty {
    text-align: center;
}

.paging_full_numbers {
    height: 22px;
    line-height: 22px;
}

.paging_full_numbers span.paginate_button,
.paging_full_numbers span.paginate_active {
    padding: 2px 5px;
    margin: 0 3px;
    cursor: pointer;
    *cursor: hand;
}

.paging_full_numbers {
    height: 22px;
    line-height: 22px;
}

.paging_full_numbers a:active {
    outline: none;
}

.paging_full_numbers a:hover {
    text-decoration: none;
}

.paging_full_numbers a.paginate_button,
.paging_full_numbers a.paginate_active {
    padding: 2px 5px;
    margin: 0 3px;
    cursor: pointer;
    *cursor: hand;
    color: #333 !important;
    -webkit-transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -o-transition: all 600ms linear;
    -ms-transition: all 600ms linear;
    transition: all 600ms linear;
}

.paging_full_numbers a.paginate_button:hover {
    border-bottom: 2px solid #cbc5ba;
    padding: 2px 5px;
    margin: 0 3px;
    cursor: pointer;
    text-decoration: none !important;
    -webkit-transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -o-transition: all 600ms linear;
    -ms-transition: all 600ms linear;
    transition: all 600ms linear;
}

.paging_full_numbers a.current {
    font-size: 16px;
    color: dimgray;
    border-bottom: 2px solid dimgray;
}

/*
 * KeyTable
 */
table.KeyTable td {
    border: 3px solid transparent;
}

table.KeyTable td.focus {
    border: 3px solid #cbc5ba;
}

div.box {
    /*height: 100px;*/
/*    padding: 10px;
    overflow: auto;*/
    /*border: 1px solid #cbc5ba;*/
    /*background-color: #cbc5ba;*/
}

/*
 * Sort arrow icon positioning
 */
table#ls-editable-table thead th div.DataTables_sort_wrapper {
    position: relative;
    padding-right: 20px;
}

table#ls-editable-table thead th div.DataTables_sort_wrapper span {
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 0;
}
/*
table#ls-editable-table tbody tr td:hover {
  background: url("../images/icons/glyphicons_pencil.png");
    background-repeat: no-repeat;
    background-position: center right 10px;
    background-size: 12px 12px;
}
*/

table#ls-editable-table tbody tr td input {
    border: 1px solid #cbc5ba;
    border-radius: 1px;
    color: #555555;
    font-size: 14px;
    height: 30px;
    line-height: 1.42857;
    padding-bottom: 6px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 6px;
    transition-delay: 0s, 0s;
    transition-duration: 0.15s, 0.15s;
    transition-property: border-color, box-shadow;
    transition-timing-function: ease-in-out, ease-in-out;
}

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


/*------------------------------------------------------------------
  -------------------------- NOTIFICATION -----------------------
-------------------------------------------------------------------*/
.amaran{
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
}
.amaran-wrapper{
    z-index: 9999;
}
.amaran-wrapper.top{
    top: 22px;
}
.amaran-close i.fa{
    color: #ffffff;
}
.amaran.default, .amaran.user{
    font-family: 'PT Sans', sans-serif;
    background-color: #323232;
    font-size: 14px;
}
.amaran.default p span.light, .amaran.default p span{
    font-size: 13px;
}
.amaran.user{
    color: #F2F2F2;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
}
.amaran.user .info{
    padding-right: 12px;
}

.amaran.user .info b{
    font-size: 16px;
}
.amaran.default.ok .icon{
    background: #5cb85c;
}
.amaran.default.ok p.bold{
    color: #5cb85c;;
}
.amaran.default p{
    color: #F2F2F2;
}
.amaran.default p span.light{
    color: #BBBBBB;
}
.amaran.default.error .icon{
    background-color: #ff7878;
}
.amaran.default.error p.bold{
    color: #ff7878;
}
.amaran.default.warning .icon{
    background-color: #f0ad4e;
}
.amaran.default.warning p.bold{
    color: #f0ad4e;
}
.amaran.default.green .icon, .amaran.user.green{
    background-color: #1fb5ad;
}
.amaran.default.green p.bold{
    color: #1fb5ad;
}
.amaran.user .icon{
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    height: 80px;
    width: 80px;
    margin:10px;
    overflow: hidden;
}

.amaran.user.blue{
    background-color: #5bc0de;
}
.amaran.readmore .content{
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    padding: 20px;
    background: #ffffff;
    color: #222;
    margin: 0;
}
.amaran.readmore .title{
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
}
.amaran.readmore, .amaran.readmore .readmore-user{
    border-color: #323232;
}
.amaran.readmore .title{
    background-color: #323232;
}
.amaran.readmore.success, .amaran.readmore.success .readmore-user{
    border-color: #5cb85c;
}
.amaran.readmore.success .title{
    background-color: #5cb85c;
}
.amaran.readmore.red, .amaran.readmore.red .readmore-user{
    border-color: #ff7878;
}
.amaran.readmore.red .title{
    background-color: #ff7878;
}
.amaran.readmore.warning, .amaran.readmore.warning .readmore-user{
    border-color: #f0ad4e;
}
.amaran.readmore.warning .title{
    background-color: #f0ad4e;
}
.amaran.readmore.info, .amaran.readmore.info .readmore-user{
    border-color: #5bc0de;
}
.amaran.readmore.info .title{
    background-color: #5bc0de;
}
.amaran.readmore.green, .amaran.readmore.green .readmore-user{
    border-color: #1fb5ad;
}
.amaran.readmore.green .title{
    background-color: #1fb5ad;
}

/*****/
.customNotification.alert {
    border-radius: 1px;
    margin-bottom: 10px;
    padding: 10px;
}

.alert{
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
}
.list-group-item:first-child{
    border-top-left-radius: 1px;
    -moz-border-top-left-radius: 1px;
    -webkit-border-top-left-radius: 1px;
    border-top-right-radius: 1px;
    -moz-border-top-right-radius: 1px;
    -webkit-border-top-right-radius: 1px;
}
.list-group-item:last-child{
    border-bottom-left-radius: 1px;
    -moz-border-bottom-left-radius: 1px;
    -webkit-border-bottom-left-radius: 1px;
    border-bottom-right-radius: 1px;
    -moz-border-bottom-right-radius: 1px;
    -webkit-border-bottom-right-radius: 1px;
}

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


/*------------------------------------------------------------------
  -------------------------- TASK & NOTE ------------------------
-------------------------------------------------------------------*/
/**** Note & Task  Start ****/
#slippylist {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#slippylist li {
    border: 1px solid #cbc5ba;
    padding: 10px 0;
    margin-bottom: 10px;
    background: white;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;

    -webkit-transition: all 0.3 fade-in-out;
    -moz-transition: all 0.3s fade-in-out;
    -o-transition: all 0.3s fade-in-out;
    transition: all 0.3s fade-in-out;
}

#slippylist li:hover {
    cursor: move;
}

#slippylist li i {
    margin: 0 0 0 8px;
    width: 15px;
    cursor: pointer;
}
#slippylist li button i{
    margin: 0 3px;
}

#slippylist li i.fa-circle-o {
    color: #507d50;
    line-height: 20px;
}

#slippylist li i.fa-check {
    color: #fe6c6c;
    line-height: 20px;
}

#slippylist li span.doneTask {
    text-decoration: line-through;
}

#slippylist li.strikeout span {
    position: relative;
}

#slippylist li.strikeout span::after {
    border-bottom: 1px solid #fe6c6c;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transition: all 900ms linear;
    -moz-transition: all 900ms linear;
    -o-transition: all 900ms linear;
    -ms-transition: all 900ms linear;
    transition: all 900ms linear;
}
.slip-reordering {
    box-shadow: 0 2px 10px rgba(0,0,0,0.45);
}
.slip-swiping-container {
    overflow-x: hidden;
}

.removeTask {
    float: right;
    padding: 0;
    margin-right: 10px;
}

#newTaskAdd {
    margin-top: 15px;
}

ul.sortable ul {
    list-style: none !important;
}

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

ul.sortable li {
    border: 1px solid #cbc5ba;
    padding: 10px;
    margin-bottom: 15px;
}
ul.sortable li i{
    cursor: pointer;
}

ul.sortable li.dragged {
    position: absolute;
    opacity: 1;
    z-index: 2000;
    padding: 10px;
    height: 40px !important;
    background: #e0e0e0;
}

ul.sortable li.placeholder {
    position: relative;
    padding: 20px;
    background: #e0e0e0;
    /** More li styles **/
}

ul.sortable li.placeholder:before {
    position: absolute;
    /** Define arrowhead **/
}
.nano-task-progress{
    height: 370px;
}
.nano-task-progress .goal-box{
    padding-right: 10px;
}
ul.sortable-box{
    list-style: none;
    margin: 0;
    padding: 0;
}
ul.sortable-box li{
    border: 1px solid #cbc5ba;
    padding: 10px;
    float: left;
    width: 22%;
    margin: 0 5px 15px 5px;
    cursor: move;
}
ul.sortable-box li.dragged {
    position: absolute;
    opacity: 1;
    z-index: 2000;
    padding: 10px;
    height: 40px !important;
    background: #e0e0e0;
}
ul.sortable-box li.placeholder {
    position: relative;
    padding: 18px;
    background: #e0e0e0;
    /** More li styles **/
}

ul.sortable-box li.placeholder:before {
    position: absolute;
    /** Define arrowhead **/
}

/***/
/*Goal ui start*/
.goal-item {
    list-style: none;
    padding: 0;
    margin: 0;
}
.goal-item li {
    border-bottom: 1px dashed #cbc5ba;
    display: inline-block;
    margin-bottom: 0;
    margin-top: 10px;
    padding: 0 10px;
    width: 100%;
}
.goal-item li .goal-user-image {
    float: left;
    height: 45px;
    margin-right: 10px;
    width: 45px;
    margin-top: -5px;
}
.goal-item li .goal-user-image img {
    width: 100%;
    border-radius: 50%;
}
.goal-item li .goal-content {
    font-size: 14px;
}
.goal-item li .goal-content .progress{
    margin-top: 7px;
}
.goal-item li .goal-content a {
    color: #1fb5ad;
    font-size: 15px;
}
.goal-item li .goal-content a:after {
    content: "  -  ";
}

.top-navigation .goal-item li a{
    padding: 0;
    display: block;
    color: #6e6e6e;
    margin-top: 3px;
}
.top-navigation .goal-item li a:hover{
    background: none;
}

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


/*------------------------------------------------------------------
  -------------------------- CALENDER ---------------------------
-------------------------------------------------------------------*/
.progress-bar[aria-valuenow="0"]{

}
button.addEvent{
    width: 100%;
    font-size: 14px;
}
#full-calendar {
    margin-top: 20px;
}

#full-calendar .fc-event{
    font-size: 14px;
}

#full-calendar .fc-grid th{
    font-weight: normal;
    line-height: 40px;
}

#full-calendar .fc-grid .fc-day-number{
    padding: 0 5px;
}

#full-calendar .fc-event-inner{
    text-align: center;
}

#calender-wrap {
    margin: 0 auto;
}

#external-events {
    /*float: left;*/
    position: relative;
    width: 100%;
    padding: 0 10px 10px 10px; /**** Issue Fixed @new ***/
    background: #e0e0e0;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -wibkit-border-radius: 1px;
}

#external-events h4 {
    font-size: 15px;
    margin-top: 0;
    padding-top: 10px; /**** Issue Fixed @new ***/
}

.eventList{
   margin-bottom: 20px;
}

.external-event {
    background: #1fb5ad;
    color: white;
    font-size: 14px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
}

.cal-event-remove{
    margin: 20px 0;
}

#external-events p {
    margin: 1.5em 0;
    font-size: 14px;
    color: #666;
    text-align: center;
}

#external-events p input {
    margin: 0;
    vertical-align: middle;
}

#trash { /**** Issue Fixed @new ***/
    background-color: #E6E6E6;
    border: 1px solid #e3dfd8;
    height: 100px;
    width: 100%;
    line-height: 100px;
    text-align: center;
    font-size: 20px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

#trash:hover {
    font-size: 40px;
    color: #fe6c6c;
}

#trash.active {
    font-size: 40px;
    color: #fe6c6c;
}

#loading {
    position: absolute;
    top: 5px;
    right: 5px;
}
.fc-calendar-container{
    height: 365px;
}
.fc-state-default {
    background-color: #1fb5ad;
    color: white;
    background-image: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.fc-state-default.fc-corner-left{
    border-bottom-left-radius: 1px;
    -moz-border-bottom-left-radius: 1px;
    -webkit-border-bottom-left-radius: 1px;
    border-top-left-radius: 1px;
    -moz-border-top-left-radius: 1px;
    -webkit-border-top-left-radius: 1px;
}
.fc-state-default.fc-corner-right{
    border-bottom-right-radius: 1px;
    -moz-border-bottom-right-radius: 1px;
    -webkit-border-bottom-right-radius: 1px;
    border-top-right-radius: 1px;
    -moz-border-top-right-radius: 1px;
    -webkit-border-top-right-radius: 1px;
}
.fc-text-arrow{
    font-family: 'Armata', sans-serif;
    font-size: 20px;
    line-height: 20px;
    margin: 0;
}
.fc-state-default{
    text-shadow: none;
    -moz-text-shadow: none;
    -webkit-text-shadow: none;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border: none;
}
.fc-button-prev .fc-text-arrow, .fc-button-next .fc-text-arrow{
    font-weight: normal;
}
.fc-state-hover,
.fc-state-down,
.fc-state-active,
.fc-state-disabled {
    color: white;
    background-color: #1fb5ad;
}

.fc-state-hover {
    color: white;
    background: #ff7878;
    text-decoration: none;
    background-position: 0 -15px;
    -webkit-transition: background-position 0.1s linear;
    -moz-transition: background-position 0.1s linear;
    -o-transition: background-position 0.1s linear;
    transition: background-position 0.1s linear;
}

.fc-state-down,
.fc-state-active {
    background-color: #ff7878;
    background-image: none;
    outline: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fc-state-disabled {
    cursor: default;
    background-image: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none;
}
.fc-header .fc-button{
    text-transform: capitalize;
}
.fc-event{
    background-color: #1FB5AD !important;
    border: none;
    color: #FFFFFF !important;
    padding: 4px;
}
.fc-ltr .fc-event-hori.fc-event-end, .fc-rtl .fc-event-hori.fc-event-start{
    border-bottom-right-radius: 1px;
    border-right-width: 1px;
    border-top-right-radius: 1px;
}
.fc-ltr .fc-event-hori.fc-event-start, .fc-rtl .fc-event-hori.fc-event-end{
    border-bottom-left-radius: 1px;
    border-left-width: 1px;
    border-top-left-radius: 1px;

}
.fc-content{
    clear: none;
}
.custom-calendar-wrap{
    margin: 0 auto;
}

.custom-calendar-wrap .custom-header {
    height: 80px;
}

.custom-calendar-wrap .custom-header nav span{
    top: 24px;
}



.fc-calendar .fc-row > div > span.fc-date{
    font-size: 14px;
}

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


/*------------------------------------------------------------------
  -------------------------- MAPS -------------------------------
-------------------------------------------------------------------*/
#direction, #branch, #mapDirections, #findLocation, #addMarkerMap, #groupMarker{
    height:400px;
    width: 100%;
}
.ls-map-locator {
    background: none repeat scroll 0 0 #555557;
    padding: 10px 0;
}
.ls-map-locator ul {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}
.ls-map-locator ul li {
    display: inline-block;
    text-align: center;
    width: 19%;
}
.ls-map-locator ul li a{
    color: #FFFFFF;
    outline: none;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear;
}
.ls-map-locator ul li a:hover, .ls-map-locator ul li a.active{
    outline: none;
    text-decoration: none;
    color: #ff7878;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear;
}
.ls-map-locator ul li a i {
    font-size: 30px;
    line-height: 35px;
}

.ls-map-locator ul li a span {
    display: list-item;
    font-size: 14px;
}

.ls-map-locator ul li a img {
    width: 40px;
}
.mapDirectionsData {
    margin: auto;
    padding: 20px 0;
    text-align: center;
}
/** Vector Map **/
.world_map {
    height: 600px;
    width: 100%;
}

.world_map_home {
    height: 300px;
    width: 100%;
}

#za_mill_en, #au_mill_en, #map_decoration, #uk_mill_en {
    height: 400px;
    width: 100%;
}

.decoration-map p {
    background: #1FB5AD;
    color: #ffffff;
    padding: 10px;
    margin: 0;
}
.jvectormap-zoomin, .jvectormap-zoomout {
    background:  #E3DFD8;
    border-radius: 1px;
    color: #565656;
    cursor: pointer;
    height: 17px;
    left: 20px;
    line-height: 15px;
    padding: 2px;
    position: absolute;
    text-align: center;
    width: 23px;
}
/** Vector Map End**/

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


/*------------------------------------------------------------------
  -------------------------- GALLERY ----------------------------
-------------------------------------------------------------------*/
.ls-gallery-paddingless-wrap{
    padding: 0;
}

.ls-gallery-filter-wrap {
    margin: 10px 0;
}

.ls-gallery-search {
    text-align: right;
}

.ls-gallery-search input {
    border-radius: 0;
    height: 35px;
    padding-left: 5px;
    border: 1px solid #DEDEDE;
}

.ls-gallery-search input:focus,
.ls-gallery-search select {
    border: 1px solid #FF7878;
}

.ls-gallery-search select {
    border-radius: 0;
    border: 1px solid #DEDEDE;
    height: 35px;
    background: #ffffff;
    display: inline-block;
    padding: 3px 3px 3px 5px;
}

.ls-gallery-search select > option {
    border-bottom: 1px solid #DEDEDE;
    height: 35px;
    padding: 6px 3px 3px 5px;
    background: #FFFFFF;
}

.ls-gallery-search select option:hover {
    color: #FFFFFF;
    background-color: #FF7878;
    cursor: pointer;
}

.ls-gallery-filter {
    position: relative;
    margin: 5px 0;
}
.ls-gallery-filter ul {
    padding: 0;
    margin: 0;
    text-align: center;
}
.ls-gallery-filter ul li {
    list-style: none;
    display: inline-block;
    width: 100px;
    padding: 2px 10px;
    background-color: #235b67;
}
.ls-gallery-filter ul li a {
    color: #E3DFD8;
}
.ls-gallery-filter ul :hover {
    color: #ffffff;
}
.ls-gallery-filter ul .active {
    background: #222222;
}

.ls-gallery {
    position: relative;
    margin-top: 20px;
}
.ls-gallery .item {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 192px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(34, 25, 25, 0.4);
    -moz-box-shadow: 0 1px 3px rgba(34, 25, 25, 0.4);
    -webkit-box-shadow: 0 1px 3px rgba(34, 25, 25, 0.4);
    filter: progid:DXImageTransform.Microsoft.Shadow(color = #adacac, direction = 135, strength = 2);
}
.ls-gallery .item img {
    display: block;
}
.ls-gallery .item a {
    text-decoration: none;
    position: absolute;
    padding: 5px 20px;
    bottom: -15px;
    left: 60px;
    background-color: #222222;
    z-index: 20;
    color: #ffffff;
}
.ls-gallery :hover {
    box-shadow: 0 1px 5px rgba(34, 25, 25, 0.8);
    -moz-box-shadow: 0 1px 5px rgba(34, 25, 25, 0.8);
    -webkit-box-shadow: 0 1px 5px rgba(34, 25, 25, 0.8);
    filter: progid:DXImageTransform.Microsoft.Shadow(color = #979797, direction = 135, strength = 3);
}

/******************** Gallery Hover Effect **********/
.ls-hover-block {
    position: relative;
    overflow: hidden;
}

.ls-hover-info {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    text-align: center;
}


.ls-hover-info  div.ls-icons-link,
.ls-hover-info  div.ls-icons-remove,
.ls-hover-info  div.ls-icons-preview{
    position: absolute;
    width: 60px;

}

.ls-two-column-icon div.ls-icons-link,
.ls-two-column-icon div.ls-icons-remove,
.ls-two-column-icon div.ls-icons-preview{
    top: 45%;
}

.ls-three-column-icon div.ls-icons-link,
.ls-three-column-icon div.ls-icons-remove,
.ls-three-column-icon div.ls-icons-preview{
    top: 40%;
}

.ls-four-column-icon div.ls-icons-link,
.ls-four-column-icon div.ls-icons-remove,
.ls-four-column-icon div.ls-icons-preview{
    top: 35%;
}

.ls-hover-info div.ls-icons-link{
    left: -100%;
    transition: left 200ms linear;
    -webkit-transition: left 200ms linear;
    -moz-transition: left 200ms linear;
}


.ls-hover-info div.ls-icons-preview{
    opacity: 0;
    transition: opacity 200ms linear;
    -webkit-transition: opacity 200ms linear;
    -moz-transition: opacity 200ms linear;
}

.ls-hover-info div.ls-icons-remove{
    right: -100%;
    transition: right 200ms linear;
    -webkit-transition: right 200ms linear;
    -moz-transition: right 200ms linear;
}


.ls-hover-info:hover div.ls-icons-link{
    transition-delay: 250ms;
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
}

.ls-hover-info:hover div.ls-icons-preview{
    opacity: 1;
    transition-delay: 450ms;
    -webkit-transition-delay: 450ms;
    -moz-transition-delay: 450ms;
}

.ls-hover-info:hover div.ls-icons-remove{
    transition-delay: 650ms;
    -webkit-transition-delay: 650ms;
    -moz-transition-delay: 650ms;
}

/* Ls Two Column Icon Gap*/
.ls-two-column-icon:hover div.ls-icons-link{
    top: 45%;
    left: 30%;
}

.ls-two-column-icon:hover div.ls-icons-preview{
    top: 45%;
    left: 0;
    right: 0;
    margin: auto;
}

.ls-two-column-icon:hover div.ls-icons-remove{
    top: 45%;
    right: 30%;
}

/* Ls Three Column Icon Gap */
.ls-three-column-icon:hover div.ls-icons-link{
    top: 40%;
    left: 20%;
}

.ls-three-column-icon:hover div.ls-icons-preview{
    top: 40%;
    left: 0;
    right: 0;
    margin: auto;
}

.ls-three-column-icon:hover div.ls-icons-remove{
    top: 40%;
    right: 20%;
}

/* Ls Four Column Icon Gap*/
.ls-four-column-icon:hover div.ls-icons-link{
    top: 35%;
    left: 10%;
}

.ls-four-column-icon:hover div.ls-icons-preview{
    top: 35%;
    left: 0;
    right: 0;
    margin: auto;
}

.ls-four-column-icon:hover div.ls-icons-remove{
    top: 35%;
    right: 10%;
}
/********************************************/


.ls-hover-info h1 {
    font-size: 16px;
    padding: 10px 20px;
    margin: 0;
    background: rgba(255, 120, 120, 0.62);
    color: #E7E7E7;
    position: absolute;
    top: 0;
    left: -100%;
    transition: left 200ms linear;
    -webkit-transition: left 200ms linear;
    -moz-transition: left 200ms linear;
}

.ls-hover-info p {
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    width: 80%;
    margin: auto;
    text-align: center;
    opacity: 0;
    transition: opacity 200ms linear;
    -webkit-transition: opacity 200ms linear;
    -moz-transition: opacity 200ms linear;
}

.ls-hover-info div.ls-icons-link a,
.ls-hover-info div.ls-icons-preview a,
.ls-hover-info div.ls-icons-remove a
{
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #555557;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    font-size: 24px;
    margin: 0 5px;
    color: #ffffff;
    opacity: 0.6;
}

.ls-hover-info:hover h1
{
    left: 0;
    transition-delay: 250ms;
    -webkit-transition-delay: 250ms;
    -moz-transition-delay: 250ms;
}

.ls-hover-info:hover p {
    opacity: 1;
    transition-delay: 600ms;
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
}

.ls-hover-info:hover a {
    right: 0;
    transition: right 200ms linear 700ms, color, background 200ms linear;
    -webkit-transition: right 200ms linear 700ms, color, background 200ms linear;
    -moz-transition: right 200ms linear 700ms, color, background 200ms linear;
}

.ls-hover-info a:hover .fa{
    color: #ff7878;
}

.ls-block-effect .ls-blind {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    transform: scale(0, 1);
    -webkit-transform: scale(0, 1);
}

.ls-block-effect .ls-blind {
    top: 0;
    left: 0;
}

.ls-block-effect:hover .ls-blind {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
}

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


/*------------------------------------------------------------------
  -------------------------- MEDIA ------------------------------
-------------------------------------------------------------------*/
.ls-cropper-wrapper {
    background-color: #f7f7f7;
    border: 1px solid #eee;
    box-shadow: inset 0 0 3px #f7f7f7;
    height: auto;
    width: 100%;
    overflow: hidden;
}

.ls-cropper-wrapper img {
    width: 100%;
}

.ls-cropper-preview {
    margin-bottom: 15px;
}

.preview {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #f7f7f7;
}

.preview-lg {
    width: 290px;
    height: 160px;
    max-width: 100%;
}

.preview-md {
    width: 145px;
    height: 90px;
    max-width: 100%;
}

.preview-sm {
    width: 72.5px;
    height: 45px;
    max-width: 100%;
}

.preview-xs {
    width: 36.25px;
    height: 22.5px;
    max-width: 100%;
}

.ls-cropper-data {
    padding-right: 15px;
}

.ls-cropper-data .input-group {
    width: 100%;
    margin-bottom: 15px;
}

.ls-cropper-data .input-group-addon {
    min-width: 65px;
}

.ls-cropper-button {
    margin-bottom: 15px;
}

.ls-cropper-button > .btn {
    margin-right: 15px;
}

.ls-cropper-input .input-group {
    margin-bottom: 15px;
}

.ls-cropper-input .input-group .btn {
    width: 140px;
}

.cropper-button{
    margin-top: 15px;
}

.media-gap{
    margin-top: 30px;
}

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


/*------------------------------------------------------------------
  -------------------------- PRICING TABLE ----------------------
-------------------------------------------------------------------*/
.ls-pricing-table-wrap {
    margin-top: 40px;
    margin-bottom: 20px;
}

.ls-android-pricing-table-wrap {
    margin-top: 30px;
    margin-bottom: 50px;
}

.basic {
    position: relative;
    box-shadow: 1px 2px 2px #dedede;
    -moz-box-shadow: 1px 2px 2px #dedede;
    -webkit-box-shadow: 1px 2px 2px #dedede;
    -webkit-transform: scale(1, 1);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: scale(1, 1);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
}
.basic ul {
    padding: 0;
    margin: 0;
}
.basic ul li {
    position: relative;
    list-style: none;
    text-align: center;
    height: 70px;
    padding: 10px;
}
.basic ul li h4 {
    font-size: 14px;
    padding: 5px;
    margin: 0;
}
.basic ul li:first-child {
    height: 150px;
    line-height: 150px;
    background-color: #ffffff !important;
    padding: 0;
}
.basic ul li:first-child div.ls-hex-bage {
    width: 100%;
    height: 55px;
    line-height: 55px;
    position: absolute;
    margin: auto;
    top: -150px;
    left: 0;
    bottom: 0;
    right: 0;
    -moz-box-shadow: 0px -2px 2px #ffffff;
    -webkit-box-shadow: 0px -2px 2px #ffffff;
    box-shadow: 0px -2px 2px #ffffff;
}
.basic ul li:first-child div.ls-hex-bage span.ls-pricing {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}
.basic ul li:first-child div.basic-price-simple {
    position: absolute;
    height: 85px;
    width: 100%;
    bottom: 0;
    color: #746566;
}
.basic ul li:first-child div.basic-price-simple h3 {
    font-size: 46px;
    font-weight: bold;
}
.basic ul li:first-child div.basic-price-simple h3 span {
    font-size: 18px;
}
.basic ul li:first-child div.basic-price-simple h3 span.doller {
    font-size: 30px;
    position: relative;
    top: -12px;
}
.basic ul li:first-child div.bage-hide {
    display: none;
}
.basic ul li:first-child div.free-bage {
    background: #beb7a7;
}
.basic ul li:first-child div.basic-bage {
    background: #f2aec1;
}
.basic ul li:first-child div.standard-bage {
    background: #f2809f;
}
.basic ul li:first-child div.premium-bage {
    background: #f2527d;
}
.basic ul li:first-child div.ls-hex-bage:after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: auto;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
}
.basic ul li:first-child div.free-bage:after {
    border-top: 50px solid #beb7a7;
}
.basic ul li:first-child div.basic-bage:after {
    border-top: 50px solid #f2aec1;
}
.basic ul li:first-child div.standard-bage:after {
    border-top: 50px solid #f2809f;
}
.basic ul li:first-child div.premium-bage:after {
    border-top: 50px solid #f2527d;
}
.basic ul li:last-child {
    height: 80px;
    line-height: 80px;
    background-color: #ffffff !important;
    padding: 0;
}
.basic ul li:last-child a.btn {
    width: 50%;
    border: 0;
    color: white;
}
.basic ul li:last-child a.free-btn {
    background: #beb7a7;
}
.basic ul li:last-child a.basic-btn {
    background: #f2aec1;
}
.basic ul li:last-child a.standard-btn {
    background: #f2809f;
}
.basic ul li:last-child a.premium-btn {
    background: #f2527d;
}
.basic ul li:nth-child(odd) {
    background-color: #e0e0e0;
}
.basic ul li:nth-child(even) {
    background-color: #fafafa;
}

.basic:hover {
    -webkit-transform: scale(1.05, 1.07);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: scale(1.05, 1.07);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    position: relative;
    z-index: 99;
}
.basic:hover ul li:first-child div.bage-hide {
    display: block;
}
.basic:hover ul li:last-child a.btn:hover {
    color: white;
    background: #58595B;
}

.free-wrap ul li:first-child {
    border-top: 3px solid #beb7a7;
    border-bottom: 2px solid #beb7a7;
}
.free-wrap ul li:last-child {
    border-top: 2px solid #beb7a7;
}

.basic-wrap ul li:first-child {
    border-top: 3px solid #f2aec1;
    border-bottom: 2px solid #f2aec1;
}
.basic-wrap ul li:last-child {
    border-top: 2px solid #f2aec1;
}

.standard-wrap ul li:first-child {
    border-top: 3px solid #f2809f;
    border-bottom: 2px solid #f2809f;
}
.standard-wrap ul li:last-child {
    border-top: 2px solid #f2809f;
}

.premium-wrap ul li:first-child {
    border-top: 3px solid #f2527d;
    border-bottom: 2px solid #f2527d;
}
.premium-wrap ul li:last-child {
    border-top: 2px solid #f2527d;
}

.basic-active {
    -webkit-transform: scale(1.05, 1.07);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: scale(1.05, 1.07);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    position: relative;
    z-index: 99;
}
.basic-active ul li:first-child div.bage-hide {
    display: block;
    -webkit-transform: scale(1.05, 1.07);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    z-index: 99;
}

/***************************************/
.android {
    position: relative;
    -webkit-transform: scale(1, 1);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: scale(1, 1);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
}
.android ul {
    padding: 0;
    margin: 0;
}
.android ul li {
    display: block;
    list-style: none;
    text-align: center;
    border: 1px solid #e0e0e0;
}
.android ul li h4 {
    font-size: 14px;
}
.android ul li p .fa {
    font-size: 16px;
}
.android ul li p span {
    font-size: 15px;
    margin-left: 10px;
}
.android ul li:first-child {
    height: 270px;
    border: 0;
}
.android ul li:first-child h3 {
    padding-top: 10px;
    color: rgba(0, 0, 0, 0.6);
    font-size: 38px;
    text-shadow: rgba(255, 255, 255, 0.2) 3px 2px 3px;
}
.android ul li:first-child p {
    color: #000;
}
.android ul li:first-child .ls-bubble {
    width: 150px;
    height: 150px;
    line-height: 150px;
    border-radius: 50%;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: -220px;
    -moz-box-shadow: inset -1px -1px 10px #141412;
    -webkit-box-shadow: inset -1px -1px 10px #141412;
    box-shadow: inset -1px -1px 10px #141412;
}
.android ul li:first-child .ls-bubble span.ls-pricing {
    font-size: 30px;
    color: white;
    font-weight: bold;
    text-shadow: #2e2e2e 0px 4px 5px;
}

.android ul li:first-child .ls-bubble span.ls-pricing-m{ /**** Issue Fixed @new ***/
    font-size: 16px;
    font-weight: bold;
    margin-left: 3px;
    color: #fff;

}
.android ul li:last-child {
    height: 80px;
    line-height: 80px;
    padding: 0;
    border: 0;
}
.android ul li:last-child a.btn {
    width: 50%;
    border: 0;
    color: #000000;
}
.android ul li:last-child a.btn:hover {
    color: white;
    background: #58595B;
}

.android-active {
    transform: scale(1.1, 1.14);
    -webkit-transform: scale(1.1, 1.14);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: scale(1.1, 1.14);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    position: relative;
    z-index: 99;
}

.android-basic ul li:first-child {
    background: #aaaa9e;
}
.android-basic ul li:first-child .ls-bubble {
    background: #aaaa9e;
}

.android-basic ul li:last-child {
    background: #aaaa9e;
}
.android-basic ul li:last-child a.btn {
    background-color: white;
}

.android-basic:hover,
.android-pro:hover,
.android-premium:hover {
    transform: scale(1.1, 1.14);
    -webkit-transform: scale(1.1, 1.14);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: scale(1.1, 1.14);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    position: relative;
    z-index: 200;
}

.android-pro ul li:first-child {
    background: #71624e;
}
.android-pro ul li:first-child .ls-bubble {
    background: #71624e;
}
.android-pro ul li:last-child {
    background: #71624e;
}
.android-pro ul li:last-child a.btn {
    background-color: white;
}

.android-premium ul li:first-child {
    background: #5f4f3f;
}
.android-premium ul li:first-child .ls-bubble {
    background: #5f4f3f;
}
.android-premium ul li:last-child {
    background: #5f4f3f;
}
.android-premium ul li:last-child a.btn {
    background-color: white;
}

/**************************************/
.basic-simple {
    position: relative;
    box-shadow: 1px 2px 2px #dedede;
    -moz-box-shadow: 1px 2px 2px #dedede;
    -webkit-box-shadow: 1px 2px 2px #dedede;
    -webkit-transform: scale(1, 1);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: scale(1, 1);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
}
.basic-simple ul {
    padding: 0;
    margin: 0;
}
.basic-simple ul li {
    position: relative;
    list-style: none;
    text-align: center;
    height: 45px;
    padding: 10px;
}
.basic-simple ul li h4 {
    font-size: 14px;
    padding: 5px;
    margin: 0;
}
.basic-simple ul li:first-child {
    height: 150px;
    line-height: 150px;
    padding: 0;
}
.basic-simple ul li:first-child div.ls-hex-bage-simple {
    width: 150px;
    height: 55px;
    line-height: 55px;
    position: absolute;
    margin: auto;
    top: -150px;
    left: 0;
    bottom: 0;
    right: 0;
    -moz-box-shadow: 0px -2px 3px #000000;
    -webkit-box-shadow: 0px -2px 3px #000000;
    box-shadow: 0px -2px 3px #000000;
}
.basic-simple ul li:first-child div.ls-hex-bage-simple span.ls-pricing {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}
.basic-simple ul li:first-child div.basic-price-simple {
    position: absolute;
    height: 85px;
    width: 100%;
    bottom: 0;
    color: #746566;
}
.basic-simple ul li:first-child div.basic-price-simple h3 {
    font-size: 46px;
    font-weight: bold;
    color: white;
}
.basic-simple ul li:first-child div.basic-price-simple h3 span {
    font-size: 18px;
}
.basic-simple ul li:first-child div.basic-price-simple h3 span.doller {
    font-size: 30px;
    position: relative;
    top: -12px;
}
.basic-simple ul li:first-child .basic-simple-package,
.basic-simple ul li:first-child .basic-standard-package,
.basic-simple ul li:first-child .basic-premium-package {
    position: relative;
    padding-top: 2px;
}
.basic-simple ul li:first-child .basic-simple-package h3,
.basic-simple ul li:first-child .basic-standard-package h3,
.basic-simple ul li:first-child .basic-premium-package h3 {
    color: white;
    font-size: 44px;
    text-shadow: #030303 4px 4px 4px;
}
.basic-simple ul li:first-child div.bage-hide {
    visibility: hidden;
    -webkit-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -o-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
    opacity: 0;
}
.basic-simple ul li:first-child div.simple-basic-bage {
    background: white;
}
.basic-simple ul li:first-child div.simple-standard-bage {
    background: white;
}
.basic-simple ul li:first-child div.simple-premium-bage {
    background: white;
}
.basic-simple ul li:first-child div.ls-hex-bage-simple:after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
}
.basic-simple ul li:first-child div.simple-basic-bage:after {
    border-top: 50px solid white;
}
.basic-simple ul li:first-child div.simple-standard-bage:after {
    border-top: 50px solid white;
}
.basic-simple ul li:first-child div.simple-premium-bage:after {
    border-top: 50px solid white;
}
.basic-simple ul li:last-child {
    height: 80px;
    line-height: 80px;
    padding: 0;
}
.basic-simple ul li:last-child a.btn {
    width: 50%;
    border: 0;
    color: black;
}
.basic-simple ul li:last-child a.free-btn {
    background: white;
}
.basic-simple ul li:last-child a.basic-btn {
    background: white;
}
.basic-simple ul li:last-child a.standard-btn {
    background: white;
}
.basic-simple ul li:last-child a.premium-btn {
    background: white;
}
.basic-simple ul li:nth-child(odd) {
    background-color: #e0e0e0;
}
.basic-simple ul li:nth-child(even) {
    background-color: #fafafa;
}

.basic-simple:hover {
    -webkit-transform: scale(1.05, 1.07);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: scale(1.05, 1.07);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    position: relative;
    z-index: 99;
}
.basic-simple:hover ul li:first-child div.bage-hide {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 1s ease-in;
    -moz-transition: opacity 1s ease-in;
    -o-transition: opacity 1s ease-in;
    transition: opacity 1s ease-in;
}
.basic-simple:hover ul li:first-child div.basic-simple-package,
.basic-simple:hover ul li:first-child div.basic-standard-package,
.basic-simple:hover ul li:first-child div.basic-premium-package {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -o-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
}
.basic-simple:hover ul li:last-child a.btn:hover {
    color: white;
    background: #58595B;
}

.simple-basic-wrap ul li:first-child {
    background: #e8b690;
}
.simple-basic-wrap ul li:last-child {
    background: #e8b690;
}

.simple-standard-wrap ul li:first-child {
    background: #e88f6c;
}
.simple-standard-wrap ul li:last-child {
    background: #e88f6c;
}

.simple-premium-wrap ul li:first-child {
    background: #ffa17f;
}
.simple-premium-wrap ul li:last-child {
    background: #ffa17f;
}

.basic-active {
    -webkit-transform: scale(1.05, 1.07);
    -webkit-transition-timing-function: ease-out;
    -webkit-transition-duration: 250ms;
    -moz-transform: scale(1.05, 1.07);
    -moz-transition-timing-function: ease-out;
    -moz-transition-duration: 250ms;
    position: relative;
    z-index: 99;
}
.basic-active ul li:first-child div.bage-hide {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 1s ease-in;
    -moz-transition: opacity 1s ease-in;
    -o-transition: opacity 1s ease-in;
    transition: opacity 1s ease-in;
}
.basic-active ul li:first-child div.basic-simple-package,
.basic-active ul li:first-child div.basic-standard-package,
.basic-active ul li:first-child div.basic-premium-package {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -o-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
}

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


/*------------------------------------------------------------------
  -------------------------- PROFILE ----------------------------
-------------------------------------------------------------------*/
.ls-user-skills {
    position: relative;
}
.ls-user-skills ul {
    padding: 0;
    margin: 0;
}
.ls-user-skills ul li {
    list-style: none;
    display: block;
    border-bottom: 1px solid #cbc5ba;
    padding: 5px 0px;
    height: 40px;
    line-height: 30px;
}
.ls-user-skills ul li div.ls-skill-list {
    position: relative;
}
.ls-user-skills ul li div.ls-skill-list h4 {
    width: 15%;
    float: left;
    font-size: 12px;
}
.ls-user-skills ul li div.ls-skill-list .ls-progress {
    width: 75%;
    float: left;
    margin-top: 13px;
}
.ls-user-skills ul li div.ls-skill-list span {
    padding: 5px 0 5px 15px;
}
.ls-user-skills ul li:last-child {
    border: none;
}
.ls-user-skills .ls-add-skill-wrap {
    border: 1px solid #cbc5ba;
}
.ls-user-skills .ls-add-skill-wrap a {
    width: 100px;
}

.ls-user-details {
    position: relative;
}
.ls-user-details .ls-user-name {
    position: relative;
    margin-top: 10px;
}
.ls-user-details .ls-user-name h1 {
    font-size: 18px;
    padding: 0;
    margin: 0;
}
.ls-user-details .ls-user-name a.user-edit {
    position: absolute;
    top: 1px;
    right: 0;
    border: 5px solid #cbc5ba;
    height: 45px;
    width: 45px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    color: #cbc5ba;
}
.ls-user-details .ls-user-links {
    position: relative;
}
.ls-user-details .ls-user-links ul {
    padding: 0;
    margin: 0;
    text-align: right;
}
.ls-user-details .ls-user-links ul li {
    list-style: none;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 45px;
    border: 1px solid #cbc5ba;
    border-radius: 50%;
    text-align: center;
}
.ls-user-details .ls-user-links ul li .fa {
    font-size: 20px;
    color: #FF7878;
}
.ls-user-details .ls-user-links ul li:hover .fa {
    color: #1FB5AD;
}
.ls-user-details .user-detail {
    margin: 15px 0 0 0;
    padding: 0 10px;
}
.ls-user-details .user-detail .ls-user-position {
    padding: 5px 10px;
    background: #dfdfdf;
    margin-bottom: 15px;
}
.ls-user-details .user-detail .ls-user-position h4 {
    margin-top: 0;
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: normal;
}
.ls-user-details .user-detail .ls-user-position P {
    margin: 0;
}
.ls-user-details .user-detail address {
    background: #1FB5AD;
    padding: 5px 10px;
    color: #FFFFFF;
}
.ls-user-details .user-detail .ls-user-links {
    position: relative;
    margin-top: 50px;
}
.ls-user-details .user-detail .ls-user-links ul {
    padding: 0;
    margin: 0;
}
.ls-user-details .user-detail .ls-user-links ul li {
    list-style: none;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 45px;
    border: 1px solid #cbc5ba;
    border-radius: 50%;
    text-align: center;
}
.ls-user-details .user-detail .ls-user-links ul li .fa {
    font-size: 20px;
}
.ls-user-details .user-detail .user-pic {
    position: absolute;
    top: -35px;
    left: 315px;
    width: 200px;
    height: 200px;
    border: 10px solid #f8f7f7;
    border-radius: 50%;
    z-index: 1;
    overflow: hidden;
}
.ls-user-details .user-detail .user-pic img {
    max-width: 100%;
    width: 180px;
    height: 180px;
    border: 10px solid #dfdfdf;
    border-radius: 50%;
}
.ls-user-details .ls-user-info .ls-user-text {
    color: #FFFFFF;
    background: #1FB5AD;
    text-align: right;
    margin-top: 15px;
    padding: 5px 10px 5px 45px;
}
.ls-user-details .ls-user-info .ls-user-text2 {
    background: #dfdfdf;
    text-align: right;
    margin-top: 15px;
    padding: 5px 10px 5px 45px;
}
.ls-user-details .ls-user-info .ls-user-text2 h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    font-weight: normal;
}

.ls-user-subscriber {
    position: relative;
    margin-top: 15px;
}
.ls-user-subscriber .ls-user-element {
    float: left;
    margin-top: -12px;
}
.ls-user-subscriber .ls-user-element .easyPieChartBlack {
    margin: 0;
    line-height: 100px;
}
.ls-user-subscriber .ls-user-box-content {
    text-align: center;
    float: left;
    margin-left: -45px;
    margin-top: 15px;
}
.ls-user-subscriber .ls-user-box-content .fa {
    font-size: 20px;
    color: #FF7878;
}
.ls-user-subscriber .ls-user-box-content h1 {
    font-size: 18px;
    margin-top: 5px;
}

.ls-user-feature {
    width: 100%;
}
.ls-user-feature ul {
    padding: 0;
    margin: 0;
    text-align: right;
}
.ls-user-feature ul li {
    list-style: none;
    display: inline-block;
}
.ls-user-feature ul li .circliful {
    position: relative;
}
.ls-user-feature ul li .circle-text, .ls-user-feature ul li .circle-info, .ls-user-feature ul li .circle-text-half, .ls-user-feature ul li .circle-info-half {
    width: 100%;
    position: absolute;
    text-align: center;
    display: inline-block;
}
.ls-user-feature ul li .circle-info, .ls-user-feature ul li .circle-info-half {
    color: #999;
}
.ls-user-feature ul li .circliful .fa {
    position: absolute;
    top: 25px;
    font-size: 18px;
    color: #FF7878;
}


.user-profile-tab .user-friend-list{
    position: relative;
}


.user-friend-list ul{
    padding: 0px;
    margin: 0px;
    text-align: center;
}


.user-friend-list ul li{
    position: relative;
    list-style: none;
    display: inline-block;
    margin: 5px;
    outline: none !important;
}

.user-friend-list ul li a{
    outline: none;
}

.user-friend-list ul li a:focus {
    outline: none;
}

.user-friend-list ul li img{
    height: auto;
    width: 70px;
    max-width: 100%;
    border: 2px solid #fff;
    transition: all 300ms ease-in-out 0s;
}

.user-friend-list ul li:hover img{
    border: 2px solid #ff7878;
    transition: all 300ms ease-in-out 0s;
}

span.ls-friend-status{
    border-radius: 8px;
    bottom: -3px;
    display: block;
    height: 10px;
    left: 30px;
    position: absolute;
    width: 10px;
}

.ls-friends-info ul{
    padding: 0;
    margin: 0;
    text-align: left;
}

.ls-friends-info ul li .fa{
    color: #1FB5AD;
}

.ls-friends-info ul li:hover .fa{
    color: #ff7878;
}

.ls-friends-info ul li:first-child{
    margin-left: -1px;
}


.ls-friends-info address .fa{
    color: #1FB5AD;
}

.ls-friends-info-wrap img{
    margin-right: 5px;
}


span.about-me-text{
    margin-bottom: 10px;
}

h3.user-profession-title{
    font-size: 14px;
    margin: 5px 0;
    padding: 0;
}

span.user-company-name{
    color: #1FB5AD ;
}


#ls-downloadLink{
    margin-top: 15px;
}


.user-map-locator{
    width: 100%;
    height: 200px;
    margin-top: 25px;
}


.ls-view {
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
}
.ls-view .ls-mask, .ls-view .content {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
}
.ls-view img {
    display: block;
    position: relative;
}
.ls-view a.info {
    background:url("../bundles/kanguraerpadministracio/images/link.png") center no-repeat;
    display: inline-block;
    text-decoration: none;
    padding:0;
    text-indent:-9999px;
    width:20px;
    height:20px;
}

.ls-view a.ls-timeline-project-info {
    background:url("../bundles/kanguraerpadministracio/images/link.png") center no-repeat;
    display: inline-block;
    text-decoration: none;
    padding:0;
    text-indent:-9999px;
    width:20px;
    height:20px;
}


.ls-hover-effect .ls-mask {
    opacity: 0;
    overflow:visible;
    border:0px solid rgba(0,0,0,0.7);
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.ls-hover-effect a.info {
    position:relative;
    left: -60px;
    top: -67px;
    opacity:0;
    -moz-transform:scale(0,0);
    -webkit-transform:scale(0,0);
    -o-transform:scale(0,0);
    -ms-transform:scale(0,0);
    transform:scale(0,0);
    -webkit-transition: -webkit-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
    -moz-transition: -moz-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
    -o-transition: -o-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
    -ms-transition: -ms-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
    transition: transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
}

.ls-hover-effect a.ls-timeline-project-info {
    position:relative;
    left: -65px;
    top: -70px;
    opacity:0;
    -moz-transform:scale(0,0);
    -webkit-transform:scale(0,0);
    -o-transform:scale(0,0);
    -ms-transform:scale(0,0);
    transform:scale(0,0);
    -webkit-transition: -webkit-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
    -moz-transition: -moz-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
    -o-transition: -o-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
    -ms-transition: -ms-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
    transition: transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
}

.ls-hover-effect:hover .ls-mask {
    opacity: 1;
    border:100px solid rgba(0,0,0,0.7);
}
.ls-hover-effect:hover a.info {
    opacity:1;
    -moz-transform:scale(1,1);
    -webkit-transform:scale(1,1);
    -o-transform:scale(1,1);
    -ms-transform:scale(1,1);
    transform:scale(1,1);
    -moz-transition-delay:0.3s;
    -webkit-transition-delay:0.3s;
    -o-transition-delay:0.3s;
    -ms-transition-delay:0.3s;
    transition-delay:0.3s;
}

.ls-hover-effect:hover a.ls-timeline-project-info {
    opacity:1;
    -moz-transform:scale(1,1);
    -webkit-transform:scale(1,1);
    -o-transform:scale(1,1);
    -ms-transform:scale(1,1);
    transform:scale(1,1);
    -moz-transition-delay:0.3s;
    -webkit-transition-delay:0.3s;
    -o-transition-delay:0.3s;
    -ms-transition-delay:0.3s;
    transition-delay:0.3s;
}
.feed-box-profile{  /**** Issue Fixed @new ***/
    border: 1px solid #cbc5ba;
}

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


/*------------------------------------------------------------------
   ------------------------- LOGIN -----------------------------
-------------------------------------------------------------------*/
body.login-screen{
    background: #252525;
}

.login-content {
    text-align: center;
}
.login-content h3{
    color: #696969;
}

.login-box {
    width: 300px;
    margin: 5% auto;
    padding: 20px;
    background: #444444;
    position: relative;
    color: #999999;
    z-index: 1; /**** Issue Fixed @new ***/
}
.login-box .login-user-icon {
    border: 5px solid #565656;
    border-radius: 75px;
    color: #565656;
    font-size: 70px;
    height: 150px;
    line-height: 160px;
    margin: auto;
    text-align: center;
    width: 150px;
}
.login-box .login-user-icon img {
    width: 75px;
}
.login-box .login-user-icon.user {
    overflow: hidden;
    line-height: 100px;
}
.login-box .login-user-icon.user img {
    width: 100%;
}
.login-box .forgot-pass-box {
    display: none;
}
.login-box .login-form, .login-box .forgot-pass-box {
    padding: 15px 0;
}
.login-box .login-form .bootstrap-switch, .login-box .forgot-pass-box .bootstrap-switch {
    border-color: #565656;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
}
.login-box .login-form .bootstrap-switch-label, .login-box .forgot-pass-box .bootstrap-switch-label {
    background: #565656;
}
.login-box .login-form .bootstrap-switch.bootstrap-switch-focused, .login-box .forgot-pass-box .bootstrap-switch.bootstrap-switch-focused {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.login-box .login-form .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary, .login-box .login-form .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary, .login-box .forgot-pass-box .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary, .login-box .forgot-pass-box .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
    background: #444444;
    color: #269abc;
}
.login-box .login-form .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default, .login-box .login-form .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default, .login-box .forgot-pass-box .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default, .login-box .forgot-pass-box .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
    background: #444444;
    color: #ff7878;
}
.login-box .login-form .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on, .login-box .login-form .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off, .login-box .login-form .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label, .login-box .forgot-pass-box .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on, .login-box .forgot-pass-box .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off, .login-box .forgot-pass-box .bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
    font-size: 14px;
    line-height: 15px;
}
.login-box .login-form input:focus, .login-box .login-form input:active, .login-box .forgot-pass-box input:focus, .login-box .forgot-pass-box input:active {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.login-box .login-form input, .login-box .forgot-pass-box input {
    background: #565656;
    border: 1px solid #565656;
    color: #999999;
}
.login-box .login-form .input-group-addon, .login-box .forgot-pass-box .input-group-addon {
    background: #565656;
    color: #999999;
    border-color: #565656;
}
.login-box .login-form .remember-me, .login-box .forgot-pass-box .remember-me {
    margin-bottom: 15px;
}
.login-box .login-form .login-btn-box, .login-box .forgot-pass-box .login-btn-box {
    text-align: center;
    width: 100%;
    margin: auto;
}
.login-box .login-form .login-btn-box a.login-view:after, .login-box .forgot-pass-box .login-btn-box a.login-view:after {
    color: #999999;
}
.login-box .login-form .login-btn-box a, .login-box .forgot-pass-box .login-btn-box a {
    color: #999999;
}
.login-box .login-form .login-btn-box a:hover, .login-box .forgot-pass-box .login-btn-box a:hover {
    color: #1fb5ad;
}
.login-box .login-form .login-btn-box i, .login-box .forgot-pass-box .login-btn-box i {
    font-size: 20px;
}
.login-box .login-form .login-btn-box button, .login-box .forgot-pass-box .login-btn-box button {
    margin-bottom: 15px;
}
.login-box .login-form input:focus, .login-box .forgot-pass-box input:focus {
    border-color: #565656;
}
.login-box .login-form ::-webkit-input-placeholder, .login-box .forgot-pass-box ::-webkit-input-placeholder {
    color: #999999;
    font-size: 12px;
}
.login-box .login-form :-moz-placeholder, .login-box .forgot-pass-box :-moz-placeholder {
    /* Firefox 18- */
    color: #999999;
    font-size: 12px;
}
.login-box .login-form ::-moz-placeholder, .login-box .forgot-pass-box ::-moz-placeholder {
    /* Firefox 19+ */
    color: #999999;
    font-size: 12px;
}
.login-box .login-form :-ms-input-placeholder, .login-box .forgot-pass-box :-ms-input-placeholder {
    color: #999999;
    font-size: 12px;
}
.login-box .login-user-icon.user img {
    width: 100%;
}

.social-btn-login {
    text-align: center;
    margin-bottom: 10px;
}
.social-btn-login ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.social-btn-login ul li {
    display: inline;
    padding: 0 7px;
}
.social-btn-login ul li a {
    color: #999999;
    font-size: 14px;
    -webkit-transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -o-transition: all 600ms linear;
    -ms-transition: all 600ms linear;
    transition: all 600ms linear;
}
.social-btn-login ul li a:hover {
    color: dimgrey;
    -webkit-transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -o-transition: all 600ms linear;
    -ms-transition: all 600ms linear;
    transition: all 600ms linear;
}

#recover-password-toogle, #recover-password-send{
    cursor: pointer;
}

#recover-password-form{
    display: none;
    margin: 1em 0;
}

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

/*------------------------------------------------------------------
   ------------------------- NOT FOUND -------------------
-------------------------------------------------------------------*/

.not-found{
    color: #FFFFFF;
    margin: 20% auto;
    text-align: center;
}
.not-found h1{
    font-size: 100px;
    line-height: 100px;
}
.not-found p{
    font-size: 15px;
}
.not-found a{
    color: #FFFFFF;
}


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


/*------------------------------------------------------------------
   ------------------------- COMING SOON -------------------
-------------------------------------------------------------------*/

#outer-wrapper {
    height: 100%;
    position: relative;
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
}
.coming-soon{
    color: #FFFFFF;
    margin: 10% auto;
    text-align: center;
}
.coming-soon h1{
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    line-height: 50px;
}
.time_circles > div > span{
    font-weight: normal;
}
.coming-soon .timer {
    margin: auto;
    width: 80%;
}

#main-container.comingSoonBody{
    background: #58595B;
}

.copy-right {
    bottom: 40px;
    font-size: 15px;
    margin: 0;
    padding: 0;
    position: fixed;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}
.copy-right.big-screen{
    font-size: 15px;
    text-align: center;
    color: #696969;
}

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


/*------------------------------------------------------------------
   -------------------------WIDGETS------------------------------
-------------------------------------------------------------------*/

.gaugeBox{
    text-align: center;
}
.gaugeBox canvas{
    margin: auto;
}
.gaugeBox p{
    margin: 0;
    padding: 0;
}
.ls-chart-box {
    cursor: pointer;
    height: 75px;
    box-shadow: 3px 3px 3px #e0e0e0;
    color: white;
    background: #3F414D;
}
.ls-wizard {
    position: relative;
    margin: auto;
    border: 1px solid #cbc5ba;
    height: 75px;
    background: #1fb5ad;
    color: white;
    box-shadow: 3px 3px 3px #e0e0e0;
    cursor: pointer;
}
.ls-wizard h2 {
    font-size: 20px;
    margin: 0;
    padding: 25px 0 0 10px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ls-wizard span {
    padding: 0 0 0 10px;
    opacity: 0;
    font-size: 13px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ls-wizard .icon {
    float: right;
    position: absolute;
    right: 10px;
    top: 18px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ls-wizard .icon i.fa {
    text-align: right;
    font-size: 40px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.ls-wizard.fullWidth {
    width: 100%;
}

.ls-wizard:hover h2, .ls-wizard.active h2 {
    font-size: 15px;
    padding: 5px 0 0 10px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ls-wizard:hover span, .ls-wizard.active span {
    font-size: 25px;
    opacity: 1;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ls-wizard:hover .icon, .ls-wizard.active .icon {
    top: 8px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ls-wizard:hover .icon i.fa, .ls-wizard.active .icon i.fa {
    font-size: 60px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ls-chart-box .chart-box-content {
    float: left;
    display: inline-block;
}
.ls-chart-box .chart-box-content h1 {
    margin: 0;
    padding: 10px 0 0 15px;
    font-size: 20px;
    color: white;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ls-chart-box .chart-box-content p {
    padding: 0px 18px;
    font-size: 18px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ls-chart-box .sparklineBadge-box {
    padding: 10px;
    float: right;
    display: inline-block;
}

.ls-chart-box:hover h1, .ls-chart-box.active h1 {
    font-size: 14px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ls-chart-box:hover p, .ls-chart-box.active p {
    font-size: 22px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.ls-widget-box {
    cursor: pointer;
    position: relative;
    height: 120px;
    box-shadow: 3px 3px 3px #e0e0e0;
    background: #3F414D;
}
.ls-widget-box i {
    position: absolute;
    left: 15px;
    top: 0;
    font-size: 20px;
    line-height: 120px;
    opacity: 0.5;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ls-widget-box .chart-box-content {
    float: left;
    display: inline-block;
    padding-left: 60px;
}
.ls-widget-box .chart-box-content h1 {
    margin: 0;
    padding: 30px 0 0 0;
    font-size: 20px;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.ls-widget-box .chart-box-content p {
    padding: 0px 0;
    font-size: 12px;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.ls-widget-box .box-element {
    margin: 5px 10px 0 0;
    float: right;
    display: inline-block;
}

.ls-widget-box:hover i, .ls-widget-box.active i {
    opacity: 1;
    font-size: 40px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ls-widget-box:hover h1, .ls-widget-box.active h1 {
    font-size: 12px;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.ls-widget-box:hover p, .ls-widget-box.active p {
    font-size: 25px;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.ls-circle-widget {
    cursor: pointer;
    height: 180px;
    width: 180px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    overflow: hidden;
    margin: auto;
    text-align: center;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.ls-circle-widget i {
    font-size: 65px;
    margin: auto;
    line-height: 180px;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.ls-circle-widget h1 {
    font-size: 14px;
    margin: 0;
    padding: 0;
    opacity: 0;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ls-circle-widget:hover, .ls-circle-widget.active {
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.ls-circle-widget.square-hover:hover, .ls-circle-widget.square-hover.active{
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.ls-circle-widget:hover i, .ls-circle-widget.active i {
    font-size: 45px;
    line-height: 65px;
    padding-top: 50px;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.ls-circle-widget:hover h1, .ls-circle-widget.active h1 {
    opacity: 1;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.setting-widget{

    border: 1px solid #E3DFD8;
}
.setting-widget-header{
    padding: 5px 10px;
}
.setting-widget-header i{
    float: right;
}
.setting-widget-box{

}
.setting-widget-box ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.setting-widget-box ul li{
    padding: 10px;
    border-top: 1px solid #e0e0e0;
    background: #f2f2f2;
}
.setting-widget-box ul li div.setting-switch{
    float: right;
}
.change-color-switch{
    text-align: center;
}
.change-color-switch ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.change-color-switch ul li{
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 0 0 5px;
    cursor: pointer;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 1px solid #e0e0e0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.change-color-switch ul li.active{
    border: 1px solid #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.change-color-switch ul li.default{
    background: #49494B;
}
.change-color-switch ul li.red-color{
    background: #FF7878;
}
.change-color-switch ul li.blue-color{
    background: #5EBFD8;
}
.change-color-switch ul li.light-green-color{
    background: #1FB5AD;
}
.change-color-switch ul li.black-color{
    background: #3F414D;
}
.change-color-switch ul li.deep-blue-color{
    background: #3A515A;
}

/****/

.flotChartRealTime.widgetRealTime{
    height: 220px;
}
.memberBox{
    border: 1px solid #E0E0E0;
    padding: 0 10px;
}
.memberBox-header{
    padding: 10px 0;
}
.memberBox-details{
    margin: 0;
    padding: 5px 20px 15px;
    text-align: center;
}
.memberBox-details ul{
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;

}
.memberBox-details ul li{
    display: inline-block;
    padding: 0 9%;
    text-align: center;

}
.widget-memberBox-details ul li {
    padding: 0 4%;
}
.memberBox-details ul li div.memberBox-title{
    text-align: center;
    font-size: 17px;
}

.memberBox-details ul li div.memberBox-title h4{
    margin: 3px 0;
    font-size: 15px;
}

.memberBox-details ul li div.memberBox-value{
    text-align: center;
}
.memberBox-details ul li div.memberBox-value i{
    font-size: 15px;
}
.memberBox-details ul li div.memberBox-value.up{
    color: #1FB5AD;
}
.memberBox-details ul li div.memberBox-value.down{
    color: #269abc;
}
.sale-widget{
    margin-bottom: 20px;
}
.sale-widget ul li a{
    letter-spacing: 1px;
}
.sale-widget .tab-content{
    border-left: 1px #e0e0e0 solid;
    border-bottom: 1px #e0e0e0 solid;
    border-right: 1px #e0e0e0 solid;
    height: 300px;
}
.sale-widget .tab-content p{
    line-height: 14px;
}
.sale-widget label.switch-label{
    margin-top: 5px;
}

/*****/
/*Easy pie ui start */
.easy-pai-box {
    margin: auto;
    text-align: center;
}
.easyPie{
    position: relative;
    display: inline-block;
    width: 110px;
    height: 110px;
    margin-bottom: 15px;
    text-align: center;
    display: inline-block;
    line-height: 110px;
    z-index: 2;
}

.easyPieChart,
.easyPieChartBlue,
.easyPieChartGreen,
.easyPieChartBrown,
.easyPieChartLightGreen,
.easyPieChartBlack {
    position: relative;
    display: inline-block;
    width: 110px;
    height: 110px;
    margin-bottom: 15px;
    text-align: center;
    display: inline-block;
    line-height: 110px;
    z-index: 2;
}
.easyPie canvas{
    position: absolute;
    top: 0;
    left: 0;
}

.easyPieChart canvas,
.easyPieChartBlue canvas,
.easyPieChartGreen canvas,
.easyPieChartBrown canvas,
.easyPieChartLightGreen canvas,
.easyPieChartBlack canvas {
    position: absolute;
    top: 0;
    left: 0;
}

.easyPiePercent:after {
    content: '\0025';
    margin-left: 0.1em;
    font-size: .8em;
}

.easyPieChartBlue:before {
    content: '\0024';
    font-size: .8em;
}

.easyPieChartGreen:before {
    content: '\20AC';
    font-size: .8em;
}

.easyPieChartBrown:before {
    content: "\00a3";
    font-size: .8em;
}

.easyPieChartLightGreenPercent:after {
    content: '\0025';
    margin-left: 0.1em;
    font-size: .8em;
}
.easyPiePercentFacebook:after{
    content: '\0025';
    margin-left: 0.1em;
    font-size: .8em;
}


.easyPieChartBlackPercent:after {
    content: '\0025';
    margin-left: 0.1em;
    font-size: .8em;
}
/*****/
.icon-tab .tab-content {
    border-bottom: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}
.hero-donut-widget{
    height: 200px;
}

.c3-chart-arc text{
    font-size: 12px;
}
.hero-donut-widget svg text, .hero-donut-widget svg text tspan{
    font-family: 'PT Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: normal !important;
}
.hero-donut-box svg text, .hero-donut-box svg text tspan{
    font-family: 'PT Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: normal !important;
}

.sale-widget #product{
    text-align: center;
    height: 300px;
}
.hero-bar-widget{
    height: 300px;
}
.monthlySale{
    height: 200px;
    text-align: center;
}
.progress.vertical{
    margin: 0 10px;
}
.monthlySale ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.monthlySale ul li{
    height: 200px;
    display: inline-block;
    text-align: center;
}
.monthlySale ul li div.progress{
    margin-bottom: 0;
}
.monthlySale ul li div.monthName{
    display:block;
    text-align: center;
}
.monthlySale ul li div.progress.vertical{
    float: none;
}
.monthlySale .progress.vertical{
    width: 50px;
}
.progress.vertical .progress-bar.six-sec-ease-in-out {
    -webkit-transition: height 6s ease-in-out;
    -moz-transition: height 6s ease-in-out;
    -ms-transition: height 6s ease-in-out;
    -o-transition: height 6s ease-in-out;
    transition: height 6s ease-in-out;
}
.progress-bar-danger{
    background: #FF7878;
}
.seriesToggleWidget{
    height: 260px;
    width: 80%;
    float: left;
}
.seriesToggleWidget div.legend table{
    margin-right: 10px;
}
.seriesToggleWidget div.legend table tbody tr td{
    height: 20px;

}
.seriesToggleWidget div.legend table tbody tr td.legendColorBox div{
    margin-right: 10px;
}
.seriesToggleWidget div.legend table tbody tr td.legendColorBox div >div{
    margin-right: 0px;
}
.seriesToggleWidget div.legend table tbody tr td.legendLabel{
    font-size: 13px;
}
#choicesWidget{
    width: 20%;
    list-style: none;
    float: left;
    margin: 5px 0 0 0;
    padding: 0;
}
#choicesWidget li{
    margin-bottom: 10px;
    margin-left: 10px;
}
.skyWeather{
    height: 250px;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
}
.current-weather, .feature-weather{

}
.current-weather{
    width: 100%;
    height: 180px;
}
.current-weather-icon{
    width: 50%;
    margin: auto;
    float: left;
    text-align: center;
    padding-top: 40px;
}
.current-weather-icon canvas{
    margin: auto;
    width: 128px;

}
.current-weather-details{
    float: right;
    width: 50%;
    text-align: center;
    padding-top: 10%;
}
.current-weather-details h2{
    font-size: 45px;
    margin-bottom: 0;
}
.current-weather-details p, .current-weather-details span{
    font-size: 14px;
}

.feature-weather{
    border-top: 1px solid #82CDCA;
}
.feature-weather ul{
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
.feature-weather ul li{
    display: inline-block;
    text-align: center;
    border-right: 1px solid #82CDCA;
    width: 19%;
}

.feature-weather ul li:last-child{
    border: none;
}
.feature-weather ul li a{
    display: block;
    line-height: 14px;
    padding: 10px 0;
    text-align: center;
}
.feature-weather ul li a:hover{
    text-decoration: none;
    color: #f2f2f2;
}
.feature-weather ul li a canvas{

}
.feature-weather ul li a span{
    color: #FFFFFF;
    display: list-item;
    text-transform: uppercase;
}

.social-share-box{
    height: 250px;
}
.social-share{
    height: 50%;
    display: inline-block;
    background: #e0e0e0;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.social-share i{
    font-size: 50px;
    color: #FFFFFF;
    line-height: 125px;
}

.ls-fb-share{
    background: #3B5998;
}
.ls-tw-share{
    background: #55ACEE;
}
.ls-google-plus{
    background: #D44032;
}
.ls-dribble-plus{
    background: #C32361;
}

.share-overlay {
    display: block;
    position: absolute;
    z-index: 20;
    background: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

a.close-overlay {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    width: 45px;
    height: 45px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 45px;
    text-align: center;
    background-color: #000;
    cursor: pointer;
}
a.close-overlay.hidden {
    display: none;
}

a.expand {
    color: #F2F2F2;
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    position: absolute;
    text-align: center;
    z-index: 100;
    outline: 0;
    text-decoration: none;
}
a.expand:hover{
    outline: 0;
    text-decoration: none;
}
.share-overlay {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
}
.share-overlay a.expand {
    bottom: 50%;
    font-size: 38px;
    left: 0;
    letter-spacing: 2px;
    margin: 0 auto -30px;
    right: 0;
    font-weight: bold;
}
.overlay-hover .share-overlay {
    height: 100%;
}

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

/*------------------------------------------------------------------
   ------------------------- PANEL ------------------------------
-------------------------------------------------------------------*/
.form-control {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.panel .form-control {
    background-color: rgba(0, 0, 0, 0);
}

.no-margin {
    margin: 0;
}
.panel-control, .panel-note-control, .note-control{
    list-style: none;
    padding: 0;
    margin:0 ;
    position: absolute;
    right: 25px;
    top: 10px;
}
.panel-control li, .panel-note-control li, .note-control li{
    display: inline-block;
    margin: 0 3px;
}
.panel-control li a, .panel-note-control li a, .note-control li a{
    font-size: 13px;
    color: #FFFFFF;
    outline: 0;
    opacity: 1;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.panel-default .panel-control li a, .panel-default .panel-note-control li a, .panel-default .note-control li a{
    color: #565656;
}
.panel-control li a:hover, .panel-note-control li a:hover, .note-control li a:hover{
    color: #565656;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.panel-default .panel-control li a:hover, .panel-default .panel-note-control li a:hover, .panel-default , .note-control li a:hover{
    color: #565656;
}

.panel, .panel-heading {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.panel-default {
    border-color: #e3dfd8;
}

.panel-default > .panel-heading {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
    color: #515151;
}

.panel-red {
    border-color: #ff7878;
}

.panel-red > .panel-heading {
    background-color: #ff7878;
    border-color: #ff7878;
    color: white;
}

.panel-light-green {
    border-color: #1fb5ad;
}

.panel-light-green > .panel-heading {
    background-color: #1fb5ad;
    border-color: #1fb5ad;
    color: white;
}

.panel-light-blue {
    border-color: #269abc;
}

.panel-light-blue > .panel-heading {
    border: #269abc;
    background: #269abc;
    color: white;
}
.panel-dark {
    border-color: #555557;
}

.panel-dark > .panel-heading {
    border: #555557;
    background: #555557;
    color: white;
}

.panel > .panel-body {
    background-color: #fafafa;
}
.ls-light-green-progress {
    background-color: #269abc;
}
.ls-light-blue-progress {
    background-color: #1fb5ad;
}

.ls-green-progress {
    background-color: #507d50;
}

.ls-yellow-progress {
    background-color: #aaa900;
}

.ls-red-progress {
    background-color: #ff7878;
}
.top-panel {
    margin-top: 20px;
}

/* Modal Start */
.modal-footer {
    padding: 10px 20px;
    margin-top: 0;
}

.modal-header {
    padding: 10px 15px;
}

.panel-less {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
}

.panel-less.panel-default {
    border: none;
    background-color: transparent;
}

.panel-less > .panel-heading {
    background-color: transparent;
    border: 0;
    padding: 15px 0;
}

.panel-less > .panel-body {
    background-color: transparent;
}
h3.panel-title{
    font-size: 15px;
}

.modal-content {
    border-radius: 1px;
}

.grid-panel-body{
    text-align: center;
    line-height: 50px;
}

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


/*------------------------------------------------------------------
   -------------------------ICONS---------------------------------
-------------------------------------------------------------------*/

.icon-tab{

}
.icon-list-padding {
    padding: 0 15px;
}
.icon-view-tab.tab-content{
    border-bottom: 1px solid #e3dfd8;
    border-left: 1px solid #e3dfd8;
    border-right: 1px solid #e3dfd8;
}

div.fontawesome-icon-list div {
    background-color: #F9F9F9;
    border: 1px solid #FFFFFF;
    float: left;
    font-size: 14px;
    height: 100px;
    line-height: 1.4;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}
div.fontawesome-icon-list div i.fa {
    color: #626161;
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 5px;
    -webkit-transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -o-transition: all 600ms linear;
    -ms-transition: all 600ms linear;
    transition: all 600ms linear;
}
div.fontawesome-icon-list div a {
    color: #235b67;
    display: block;
    text-align: center;
    word-wrap: break-word;
}
div.fontawesome-icon-list div:hover i {
    color: #1fb5ad;
    font-size: 35px;
}

.animation-icon-box {
    text-align: center;
    color: #626161;
}

ul.icon-list.middle {
    padding-bottom: 20px;
    padding-top: 20px;
}

ul.icon-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 2px;
    cursor: pointer;
}

ul.icon-list li {
    display: inline-block;
    padding: 0 5px;
}

.animation-icon {
    text-align: center;
    -webkit-transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -o-transition: all 600ms linear;
    -ms-transition: all 600ms linear;
    transition: all 600ms linear;
}

.animation-icon:hover {
    color: #1fb5ad;
    opacity: 1;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(360deg);
}

.ls-glyphicons-list {
    list-style: none outside none;
    padding: 0;
    margin: 0;
}

.ls-glyphicons li {
    background-color: #F9F9F9;
    border: 1px solid #FFFFFF;
    cursor: pointer;
    float: left;
    font-size: 12px;
    height: 100px;
    line-height: 1.4;
    padding: 10px;
    text-align: center;
    width: 20%;
}

.ls-glyphicons .glyphicon {
    color: #626161;
    font-size: 25px;
    margin-bottom: 10px;
    margin-top: 5px;
    -webkit-transition: all 600ms linear;
    -moz-transition: all 600ms linear;
    -o-transition: all 600ms linear;
    -ms-transition: all 600ms linear;
    transition: all 600ms linear;
}

.ls-glyphicons .glyphicon-class {
    display: block;
    text-align: center;
    word-wrap: break-word;
}

.ls-glyphicons li:hover span.glyphicon {
    color: #1fb5ad;
    font-size: 35px;
}

.popupIcon {
    text-align: center;
}

.popupIcon i {
    font-size: 50px;
    color: #1fb5ad;

}
.popupIcon pre{
    margin-top: 20px;
}
.customizationIcon h5{
    margin-bottom: 20px;
}
.customizationIcon ul{
    margin-bottom: 50px;
}

/****/
p.bg-label {
    background-color: #1FB5AD;
    padding: 15px;
}
.red, i.red {
    color: #ff7878;
}

.blue, i.blue {
    color: #6b97f4;
}

.green, i.green {
    color: #507d50;
}

.brown, i.brown {
    color: #763d3d;
}

.white, i.white {
    color: white;
}

.lightGreen, i.lightGreen {
    color: #1fb5ad;
}

.light-blue, i.light-blue {
    color: #269abc;
}

.yellow, i.yellow {
    color: #aaa900;
}

.phast, i.phast {
    color: #70cac8;
}

/*****  Color css end ****/
.spinIn {
    -webkit-animation: spinIn 0.6s 1 linear;
    animation: spinIn 0.6s 1 linear;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
}
@-webkit-keyframes spinIn {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(180deg);
    }
}
@keyframes spinIn {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(180deg);
    }
}
.spinOut {
    -webkit-animation: spinOut 0.6s 1 linear;
    animation: spinOut 0.6s 1 linear;
    -webkit-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
}
@-webkit-keyframes spinOut {
    0% {
        -webkit-transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spinOut {
    0% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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


/*------------------------------------------------------------------
   -------------------------FOOTER------------------------------
-------------------------------------------------------------------*/

/*Footer css start */
#footer{
    background: #ffffff;
    padding: 10px;
    border-top: 1px #CBC5BA dotted;
}
#footer.right{
    text-align: right;
    padding-right: 50px;
}
#footer a{
    color: #565656;
}
#footer a:hover{
    text-decoration: none;
}

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


/*------------------------------------------------------------------
   ------------------------ BLOCKQUOTE --------------------------
-------------------------------------------------------------------*/
blockquote.styles{
    font-family: Georgia, serif;
    font-size: 18px;
    font-style: italic;
    width: 80%;
    margin: auto;
    padding:  50px;
    line-height: 1.45;
    position: relative;
    color: #383838;
    background:#ececec;
}

blockquote.styles:before {
    color: #7a7a7a;
    content: "“";
    display: block;
    font-size: 80px;
    left: 10px;
    position: absolute;
    top: 10px;
}

blockquote.styles cite {
    color: #999999;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

blockquote.styles cite:before {
    content: "\2014 \2009";
}
blockquote.styles footer{
    text-align: right;
}
div.demo-blockquote{
    margin-top: 10%;
}

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


/*------------------------------------------------------------------
   -------------------------SLIDER---------------------------------
-------------------------------------------------------------------*/
/**** Slider ***/

.owl-theme .owl-controls .owl-buttons div.owl-prev{
    position: absolute;
    top: 40%;
    left: 30px;
    background: url('../bundles/kanguraerpadministracio/images/arrows.png') no-repeat;
    background-position: 0 0;
    overflow:hidden;
    font-size: 0;
    padding-top:16px;

}

.owl-theme .owl-controls .owl-buttons div.owl-next{
    position: absolute;
    top: 40%;
    right: 30px;
    background: url('../bundles/kanguraerpadministracio/images/arrows.png') no-repeat;
    background-position: -20px 0;
    overflow:hidden;
    font-size: 0;
    padding-top:16px;

}

.owl-theme .owl-controls .owl-page span{
    background: #ff7878;
}

.owl-caption{
    position: absolute ;
    bottom:0;
    background-color: #fff;
    width:100%;
    opacity: 0.5;
    padding: 10px 10px
}

.owl-caption h3{
    font-size: 16px;
    padding: 0;
    margin: 0;
}



#owl-demo .item img{
    display: block;
    width: 100%;
    height: auto;
}
#bar{
    width: 0%;
    max-width: 100%;
    height: 4px;
    background: #ff7878;
}
#progressBar{
    width: 100%;
    background: #EDEDED;
}


/**********************************/
/*SLIDER*/
#slideShow {
    width:100%;
}

#slideShow img {
    width: 100%;
    height: auto;
}

.ls-slider-content {
    padding:10px;
    margin:15px;
    background-color:#5ebfd8;
    color:#fff;
    text-align: center;
}

.s2 .ls-slider-content {
    background:#58595b;
    text-align:center;
    font-weight:300;
    font-size:16px;
}

.s3 .ls-slider-content {
    background-color:#7a8b83;
    color:#ccc;
}

.ls-slider-title {
    background-color: #ff7878;
    margin: 15px 15px 0;
    height: 60px;
    text-align: center;
}

.ls-slider-title h2,
.ls-slider-title h3 {
    color: #fff;
    font-size: 20px;
    line-height: 3;
}


.ls-slider-right-view{
    margin-left: 67.3333% !important;
}



@media only screen and (min-width: 600px) {
    #slideShow {
        height:350px;
    }

    #slideShow img {
        height:350px;
    }
}

@media only screen and (min-width: 1px) and (max-width: 600px) {
    #slideShow {
        height:150px;
    }

    #slideShow img {
        height:150px;
    }

    .ls-slider-content {
        padding:5px;
        margin:10px;
        font-size:10px;
    }

    .s2 .ls-slider-content {
        font-size:10px;
    }

    .s3 .ls-slider-content, .s1 .ls-slider-content {
        width:150%;
        height: 20px;
        font-size:10px;
    }

    #slideShow .title {
        display: none;
    }
}

ul.slideControl {
    list-style:none;
    text-align: center;
    margin:5px auto;
    overflow:hidden;
    border-top:none;
    opacity:.5;
}

ul.slideControl li {
    display: inline-block;
    padding:5px;
    background:#ccc;
    margin:5px;
    cursor:pointer;
}

ul.slideControl li:hover, ul.slideControl li.current {
    background:#555;
}

div.opt {
    margin:10px;
    background:#eee;
    padding:5px;
}

span.option {
    font-weight:700;
}

span.description {
    margin-left:10px;
}

.ls-slider-2{
    margin-top: 30px;
}

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


/*------------------------------------------------------------------
  -------------------------- UI ELEMENTS ------------------------
-------------------------------------------------------------------*/
/******* Button & Switch *******/
.button-alignment button.btn{
    margin-bottom: 10px;
}
.ls-blue-btn {
    background-color: #6b97f4;
    color: white;
    text-align: center;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.ls-blue-btn:hover, .ls-blue-btn:active, .ls-blue-btn:focus {
    background-color: #269abc;
    color: white;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ls-light-blue-btn {
    background-color: #269abc;
    color: white;
    text-align: center;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ls-light-blue-btn:hover, .ls-light-blue-btn:active, .ls-light-blue-btn:focus {
    background-color: #6b97f4;
    color: white;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ls-green-btn {
    background-color: #507d50;
    color: white;
    text-align: center;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ls-green-btn:hover, .ls-green-btn:active, .ls-green-btn:focus {
    background-color: #47A447;
    color: white;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ls-light-green-btn {
    background-color: #1fb5ad;
    color: white;
    text-align: center;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ls-light-green-btn:hover, .ls-light-green-btn:active, .ls-light-green-btn:focus {
    background-color: #1FD9D0;
    color: white;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ls-red-btn {
    background-color: #ff7878;
    color: white;
    text-align: center;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ls-red-btn:hover, .ls-red-btn:active, .ls-red-btn:focus {
    background-color: #D2322D;
    color: white;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ls-dark-btn {
    background-color: #565656;
    color: #999999;
    text-align: center;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ls-dark-btn:hover, .ls-dark-btn:active, .ls-dark-btn:focus {
    background-color: #626262;
    color: white;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}

.ls-yellow-btn {
    background-color: #aaa900;
    color: white;
    text-align: center;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.ls-yellow-btn:hover, .ls-yellow-btn:active, .ls-yellow-btn:focus {
    background-color: #C6C524;
    color: white;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.ls-brown-btn {
    background-color: #763d3d;
    color: white;
    text-align: center;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.ls-brown-btn:hover, .ls-brown-btn:active, .ls-brown-btn:focus {
    background-color: #AE6A6A;
    color: white;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}

.ls-button-group button {
    margin-right: 10px;
}

.ls-button-group .btn-group {
    margin-right: 10px;
}

.ls-button-group .btn-group button {
    margin: 0;
}

.btn.fa {
    line-height: 1.42857;
}

.btn-ls {
    background-color: #269abc;
    border-color: #269abc;
    color: white;
    border-radius: 1px;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear;
}

.btn-ls:focus, .btn-ls:hover {
    color: #269abc;
    background-color: white;
}

button.fileinput-remove-button {
    background-color: #ff7878;
    border-color: #ff7878;
    color: white;
    border-radius: 1px;
    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear;
}

.fileinput-remove-button:hover, .fileinput-remove-button:focus {
    background-color: white;
    color: #ff7878;
}

.ls-hexagon-lightBlue {
    width: 44px;
    height: 25px;
    background: #269abc;
    position: relative;
    text-align: center;
}
.ls-hexagon-lightBlue:after {
    content: "";
    position: absolute;
    bottom: -12.5px;
    left: 0;
    width: 0;
    height: 0;
    border-left: solid transparent 22px;
    border-right: solid transparent 22px;
    border-top: solid #269abc 12.5px;
}
.ls-hexagon-lightBlue:before {
    content: "";
    position: absolute;
    top: -12.5px;
    left: 0;
    width: 0;
    height: 0;
    border-left: solid transparent 22px;
    border-right: solid transparent 22px;
    border-bottom: solid #269abc 12.5px;
}
.ls-hexagon-lightBlue:hover {
    background-color: #ff7878;
}
.ls-hexagon-lightBlue .fa {
    line-height: 25px;
    font-size: 25px;
    color: white;
}

.ls-hexagon-red {
    width: 34px;
    height: 20px;
    background: #ff7878;
    position: relative;
    text-align: center;
}
.ls-hexagon-red:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 0;
    border-left: solid transparent 17px;
    border-right: solid transparent 17px;
    border-top: solid #ff7878 10px;
}
.ls-hexagon-red:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 0;
    height: 0;
    border-left: solid transparent 17px;
    border-right: solid transparent 17px;
    border-bottom: solid #ff7878 10px;
}
.ls-hexagon-red:hover {
    background-color: #ff7878;
}
.ls-hexagon-red .fa {
    line-height: 20px;
    font-size: 20px;
    color: white;
}

.hex {
    width: 50px;
    height: 50px;
    position: relative;
    overflow: hidden;
    float: left;
    margin-right: -1px;
    -webkit-backface-visibility: hidden;
    /* Smooth out them edges ;) */
    -webkit-transform: rotate(-30deg) skewX(30deg) scaleY(0.866);
    -moz-transform: rotate(-30deg) skewX(30deg) scaleY(0.866);
    -ms-transform: rotate(-30deg) skewX(30deg) scaleY(0.866);
    -o-transform: rotate(-30deg) skewX(30deg) scaleY(0.866);
    transform: rotate(-30deg) skewX(30deg) scaleY(0.866);
}

.hex a {
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    color: #FFF;
    background-color: #e1e1e1;
    position: absolute;
    right: 6.7%;
    left: 6.7%;
    -webkit-transform: scaleY(1.155) skewX(-30deg) rotate(30deg);
    -moz-transform: scaleY(1.155) skewX(-30deg) rotate(30deg);
    -ms-transform: scaleY(1.155) skewX(-30deg) rotate(30deg);
    -o-transform: scaleY(1.155) skewX(-30deg) rotate(30deg);
    transform: scaleY(1.155) skewX(-30deg) rotate(30deg);
    outline: 0;
}

.hex a:hover .overlay {
    top: 0;
    outline: 0;
}
.hex a:focus{
    outline: 0;
}

.hex a i {
    width: 100%;
    z-index: 10;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: -100%;
    left: 0;
    z-index: -1;
    -webkit-transition: top 0.3s ease-in-out;
    -moz-transition: top 0.3s ease-in-out;
    -o-transition: top 0.3s ease-in-out;
    transition: top 0.3s ease-in-out;
}

.facebook .overlay {
    background-color: #269abc;
}

.twitter .overlay {
    background-color: #269abc;
}

.gplus .overlay {
    background-color: #ff7878;
}

.rss .overlay {
    background-color: #aaa900;
}

.email .overlay {
    background-color: #507d50;
}

.linkedin .overlay {
    background-color: #763d3d;
}

.youtube .overlay {
    background-color: #ff7878;
}

.skype .overlay {
    background-color: #269abc;
}

.instagram .overlay {
    background-color: #457299;
}

.pinterest .overlay {
    background-color: #ff7878;
}

.bootstrap-switch.bootstrap-switch-focused{
    border-color:#AEAEAE;
    box-shadow: 0 2px 2px #F2F2F2 inset, 0 0 2px #98B6CF;
    -moz-box-shadow: 0 2px 2px #F2F2F2 inset, 0 0 2px #98B6CF;
    -mwebkit-box-shadow: 0 2px 2px #F2F2F2 inset, 0 0 2px #98B6CF;

}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary, .bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary{
    background: #269ABC;
}
.btn.btn-round {
    border-radius: 18px;
    -moz-border-radius: 18px;
    -webkit-border-radius: 18px;
}


.label {
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    font-weight: 400;

}

.label-Blue, .label-blue {
    background-color: #6b97f4;
}
.label-dark{
    background-color: #58595B;
}

.label-lightBlue {
    background-color: #269abc;
}

.label-yellow {
    background-color: #aaa900;
}

.label-green {
    background-color: #507d50;
}

.label-brown {
    background-color: #763d3d;
}

.label-red {
    background-color: #ff7878;
}

.label-black {
    background-color: #3f414d;
}

.label-light-green {
    background-color: #1fb5ad;
}

.badge-Blue {
    background-color: #6b97f4;
}

.badge-lightBlue {
    background-color: #269abc;
}

.badge-yellow {
    background-color: #aaa900;
}

.badge-green {
    background-color: #507d50;
}

.badge-brown {
    background-color: #763d3d;
}

.badge-red {
    background-color: #ff7878;
}

.red-color .badge-red{
    background-color: #C45C5C;
}

.user-status {
    background: none repeat scroll 0 0 padding-box #575D67;
    border-radius: 8px;
    display: inline-block;
    height: 8px;
    margin-right: 5px;
    transition: all 300ms ease-in-out 0s;
    width: 8px;
}

.is-online{
    background-color:#2ecc71;
}
.is-busy{
    background-color:#ff7878;
}
.is-idle{
    background-color: #F7D227;
}
.is-offline{
    background-color: #A0A0A0;
}


/****/

.ls-pagination {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.ls-pagination > li:first-child > a, .ls-pagination > li:first-child > span, .ls-pagination > li:last-child > a, .ls-pagination > li:last-child > span {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.ls-pagination > li a {
    background-color: #e1e1e1;
    color: dimgrey;
}

p.preview-advance {
    padding: 10px 0;
}
p.preview-advance a {
    font-size: 12px;
    color: dimgrey;
}
p.preview-advance a:hover {
    color: #269abc;
    text-decoration: underline;
}


.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"]{
    margin-top: 5px;
}

.input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] {
    margin-top: 5px;
}


.file-preview{
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
}

.summerNoteToolBox{
    margin: 10px 0;
}
.v-progressbar{
    height: 175px;
    margin: 0 auto;
}
.v-progressbar .progress.vertical{
    width: 50px;
}
.v-progressbar .progress.vertical .progress-bar.six-sec-ease-in-out {
    -webkit-transition: height 6s ease-in-out;
    -moz-transition: height 6s ease-in-out;
    -ms-transition: height 6s ease-in-out;
    -o-transition: height 6s ease-in-out;
    transition: height 6s ease-in-out;
}

.progress {
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    height: 5px;
}

.progress .progress-bar.six-sec-ease-in-out {
    -webkit-transition: width 6s ease-in-out;
    -moz-transition: width 6s ease-in-out;
    -ms-transition: width 6s ease-in-out;
    -o-transition: width 6s ease-in-out;
    transition: width 6s ease-in-out;
}

.ls-light-blue-progress {
    background-color: #269abc;
}

.ls-green-progress {
    background-color: #507d50;
}

.ls-yellow-progress {
    background-color: #aaa900;
}

.ls-red-progress {
    background-color: #ff7878;
}
.ls-header-button{
    font-size: 14px;
}
/*******/

.selectize-input{
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
}
.selectize-input.focus{
    box-shadow: 0 2px 2px #F2F2F2 inset, 0 0 2px #98B6CF;
    border-color: #AEAEAE;
    outline: none;
}
.selectize-input.dropdown-active{
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
}
.selectize-control.multi .selectize-input > div{
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    font-size: 14px;
    padding: 2px 10px
}
.selectize-control.multi .selectize-input > div.active{
    background: #1fb5ad;
}
.selectize-dropdown-content span.label{
    font-size: 13px;
    font-size: 700;
    color: #565656;
}
.selectize-dropdown-content span.caption{
    font-size: 12px;
    font-size: 700;
    color: #565656;
}
.selectize-dropdown, .selectize-dropdown.form-control{
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
}
.minicolors-theme-bootstrap .minicolors-swatch{
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
}
.xdsoft_datetimepicker{
    border-color: #CCCCCC;
}
.xdsoft_datetimepicker .xdsoft_label{
    font-weight: normal;
    color: #565656;
}
.xdsoft_datetimepicker .xdsoft_calendar th{
    font-weight: 400;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, .xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current{
    background: #1FB5AD;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover, .xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover{
    background: #FF7878 !important;
}
.irs-from, .irs-to, .irs-single{
    background:#FF7878;
}
.irs-from:after, .irs-to:after, .irs-single:after{
    border-color: #FF7878 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);

}

.tooltipButton {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tooltipButton li {
    margin-bottom: 15px;
    display: inline-block;
}

.toolButton {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toolButton li {
    margin-right: 10px;
    display: inline-block;
    text-align:center;
}
.ls-settings-button:hover, .ls-settings-button.pressed {
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    opacity: 1;
    z-index: 2;
    text-decoration: none;
}

.ls-settings-button {
    background-color: #E1E1E1;
    border: 1px solid #CCCCCC;
    border-radius: 1px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.26) inset, 0 1px 0 0 rgba(255, 255, 255, 0.15);
    display: block;
    height: 28px;
    margin: 0;
    opacity: 0.9;
    width: 30px;
    z-index: 2;
}

.ls-settings-button i {
    display: block;
    margin: 0 auto;
    line-height: 28px;
    color: dimgrey;
}
.tool-container {
    background-color: #E1E1E1;
    box-shadow: 0 0 3px #898989;
    background-image: none;
}
.tool-item.selected, .tool-item:hover{
    background-color: #CCCCCC;
    box-shadow: 0 0 3px #898989;
    background-image: none;
}
.tool-items a {
    color: #696969;
    line-height: 33px;
}
.tool-top .tool-item, .tool-bottom .tool-item{
    border: none;
}
.tool-left .tool-item, .tool-right .tool-item{
    border: none;
}

.remodal, .remodal *{
    font-family: 'PT Sans', sans-serif;
}
.remodal h1, .remodal h2, .remodal h3, .remodal h4, .remodal h5{
    font-family: 'Armata', sans-serif;
}
.tab-pane{
    padding: 10px;
}

.nav-tabs > li > a{
    border-radius: 1px 1px 0 0;
    -moz-border-radius: 1px 1px 0 0;
    -webkit-border-radius: 1px 1px 0 0;
    color: #555;
    font-size: 15px;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus{
    outline: 0;
    color: #269abc;
}
.nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus{
    border-left: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    border-top: 1px solid #E0E0E0;

}
.nav-tabs.nav-justified > li > a{
    border-radius: 1px 1px 0 0;
    -moz-border-radius: 1px 1px 0 0;
    -webkit-border-radius: 1px 1px 0 0;
}
#qrcodeTable table {
    margin: 30px auto;
}

#qrcodeCanvas > canvas {
    margin: 30px auto;
    display: block;
}

/*** Knobs ***/

.knoob-box {
    text-align: center;
    width: 49%;
    display: inline-block;
}

.knoob-box h4 {
    padding: 0;
    margin: 0;
}

.knoob-box-3 {
    width: 100%;
    display: inline-block;
    text-align: center;
    margin: auto;
}
.knoob-box-4 {
    text-align: center;
    width: 100%;
    display: inline-block;
    margin: 20px 0;
}

.knoob-box-4 h4 {
    padding: 0;
    margin: 0;
}

/****/

.radio-inline {
    padding-left: 10px;
}
.radio-inline label {
    padding-right: 10px;
}

.icheck-radio-inline {
    padding-left: 20px;
}

.input-group-addon {
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
}

/***/
.ui-widget-header{
    background-image: none;
    background-color: #e0e0e0;
}
.selectize-control.multi .selectize-input > div{
    background: #E0E0E0;
    color:#777;
}

/****/
#main-content{
    background: #f9f9f9;
    padding-top: 15px;
    height: 100%;
    min-height: 900px;
}
#change-color{
    position: fixed;
    bottom: 0;
    height: 30px;
    width: 200px;
    right: -200px;
    background: #555557;
    z-index: 990;
}
#change-color-control{
    background: #FF7878;
    bottom: 0;
    left: -30px;
    position: absolute;
    text-align: center;
}
#change-color-control a{
    color: #FFFFFF;
    display: inline-block;
    font-size: 18px;
    line-height: 22px;
    padding: 4px 10px;

}
#change-color-control a:hover, #change-color-control a:focus{
    outline: 0;
}
#change-color .change-color-box{
    text-align: center;
}
#change-color .change-color-box ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
#change-color .change-color-box ul li{
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 5px 0 0 5px;
    cursor: pointer;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border: 1px solid #555557;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#change-color .change-color-box ul li.active{
    border: 1px solid #FFFFFF;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#change-color .change-color-box ul li.default{
    background: #49494B;
}
#change-color .change-color-box ul li.red-color{
    background: #FF7878;
}
#change-color .change-color-box ul li.blue-color{
    background: #5EBFD8;
}
#change-color .change-color-box ul li.light-green-color{
    background: #1FB5AD;
}
#change-color .change-color-box ul li.black-color{
    background: #3F414D;
}
#change-color .change-color-box ul li.deep-blue-color{
    background: #3A515A;
}

/****/

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

.popover {
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    background-color: #fafafa;
}

.btn-default {
    background-color: #e1e1e1;
    color: #565656;
}

.border-bottom {
    border-bottom: #cbc5ba dashed 1px;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.no-border-bottom {
    padding-bottom: 15px;
}

.page-min-height {
    min-height: 750px;
}

.no-padding {
    padding: 0;
}

hr.hr-20 {
    margin: 20px 0;
}

hr.footer-border {
    margin: 0;
    border: none;
}
.progress {
    border-radius: 1px;
    height: 5px;
}


.tab-content{
    background: #ffffff;
}
.tab-border.tab-content{
    border-bottom: 1px solid #e3dfd8;
    border-left: 1px solid #e3dfd8;
    border-right: 1px solid #e3dfd8;
}

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



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

             *********** UPDATE VERSION 1.1 ************

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


/*------------------------------------------------------------------
  -------------------------- MEDIA PLAYER ------------------------
-------------------------------------------------------------------*/

.ls-audio-player-wrap,
.ls-video-player-wrap
{
    position: relative;

}

.ls-audio-player-wrap .jp-audio,
.ls-video-player-wrap .jp-video
{
    width: 100%;
    background-color: transparent;
    border: none;
}

.ls-video-player-wrap div.jp-video-360p,
.ls-video-player-wrap div.jp-video-full{
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
}


.ls-video-player-wrap .jp-jplayer{
    border: 1px solid #E2E2EA;
    background: transparent;
    margin-bottom: -7px;
}

.ls-audio-player {
    position: relative;
    height: 70px;
    background: #58595b;

}

.ls-audio-play {
    height: 40px;
    width: 40px;
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    margin: auto;
    background: #58595b;
    color: #000;
    position: absolute;
    top: 15px;
    left: 10px;
    box-shadow: 0 0 10px #000000 inset;
}

.ls-audio-play:hover {
    cursor: pointer;
    color: #1FB5AD;
}

.ls-audio-play a.jp-pause .fa,
.ls-audio-suffle a.jp-shuffle-off .fa,
.ls-audio-repeat a.jp-repeat-off .fa{
    color: #1FB5AD;
}

.ls-audio-left {
    position: absolute;
    left: 60px;
}

.ls-audio-right {
    position: absolute;
    left: 140px;
}

.ls-audio-stop{
    position: absolute;
    left: 100px;
}

.ls-audio-suffle{
    position: absolute;
    right: 10px;
    top: 20px;
}

.ls-audio-repeat{
    position: absolute;
    right: 38px;
    top: 20px;
}

.ls-audio-list{
    position: absolute;
    right: 65px;
    top: 20px;
}

.ls-video-screen{
    position: absolute;
    right: 90px;
    top: 20px;
}

.ls-audio-left,
.ls-audio-right,
.ls-audio-stop{
    top: 20px;
    color: #ff7878;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #58595b;
    text-align: center;
    box-shadow: 0 0 10px #000000 inset;
}

.ls-audio-play a.jp-play{
    margin-left: 3px;
}

.ls-audio-left a.jp-previous{
    margin-left: -3px;
}

.ls-audio-stop a.jp-stop{
    margin-top: 3px;
    margin-left: 0px;

}

.ls-audio-right a.jp-next{
    margin-left: 3px;
}

.ls-audio-play .fa{
    color: #ff7878;
    font-size: 16px;
}

.ls-audio-left .fa,
.ls-audio-right .fa,
.ls-audio-stop .fa,
.ls-audio-suffle .fa,
.ls-audio-repeat .fa,
.ls-vol-down .fa,
.ls-vol-up .fa,
.ls-audio-list .fa,
.ls-video-screen .fa
{
    color: #ff7878;
    font-size: 12px;
}

.ls-audio-play:hover .fa,
.ls-audio-left:hover .fa,
.ls-audio-right:hover .fa,
.ls-audio-stop:hover .fa,
.ls-audio-suffle:hover .fa,
.ls-audio-repeat:hover .fa,
.ls-vol-down:hover .fa,
.ls-vol-up:hover .fa,
.ls-audio-list:hover .fa,
.ls-video-screen:hover .fa
{
    color: #1FB5AD;
}

.ls-audio-time,
.ls-audio-vol{
    position: absolute;
    right: 10px;
}

.ls-video-player-wrap div.jp-video a.jp-mute,
.ls-video-player-wrap div.jp-video a.jp-unmute,
.ls-video-player-wrap div.jp-video a.jp-volume-max {
    top: 0;
    position: static;
}

.ls-audio-time div.jp-current-time,
.ls-audio-time div.jp-duration{
    float: none;
}

.ls-audio-time div.jp-duration {
    margin-right: 0 !important;
}

.ls-audio-time div.jp-current-time{
    color: #ff7878;
}

.ls-audio-time div.jp-duration{
    color: #969696;
}

.ls-audio-vol{
    top: 15px
}

.ls-vol-down{
    position: absolute;
    top: 25px;
    right: 75px;
}

.ls-vol-up{
    position: absolute;
    top: 25px;
    right: 0;
}

.ls-audio-player .ls-audio-vol div.jp-volume-bar {
    left: -67px;
    top: 39px;
}

.ls-video-player-wrap div.jp-seek-bar{
    background: rgba(255, 120, 120, 0.50);
}

.ls-video-player-wrap div.jp-play-bar {
    background: #ff7878;
}

.ls-audio-player-wrap .ls-player-playlist,
.ls-video-player-wrap .ls-player-playlist{
    position: relative;
    background-color: transparent;
    border-top: none;
}


.ls-audio-player-wrap .ls-player-playlist ul,
.ls-video-player-wrap .ls-player-playlist ul{
    padding: 0;
    margin: 0;
    background-color: #555557;
}

.ls-audio-player-wrap .ls-player-playlist ul li,
.ls-video-player-wrap .ls-player-playlist ul li{
    list-style: none;
    display: block;
    padding: 5px 10px;
    border-bottom: 1px solid #58595b;
}

.ls-audio-player-wrap .ls-player-playlist ul li a,
.ls-video-player-wrap .ls-player-playlist ul li a{
    color: #969696;
}

.ls-video-player-wrap .ls-player-playlist ul li a span{
    color: #ff7878;
}

.ls-audio-player-wrap .ls-player-playlist ul li:hover a,
.ls-video-player-wrap .ls-player-playlist ul li:hover a{
    color: #ff7878;
}

.ls-video-player-wrap .ls-player-playlist ul li:hover a span{
    color: #969696;
}


.ls-audio-player-wrap .ls-player-playlist ul li.jp-playlist-current a,
.ls-video-player-wrap .ls-player-playlist ul li.jp-playlist-current a{
    color:#ff7878;

}

.ls-video-player-wrap .ls-player-playlist ul li.jp-playlist-current a span{
    color:#969696;
}

.ls-audio-player-wrap .ls-player-playlist ul li span.jp-free-media,
.ls-video-player-wrap .ls-player-playlist ul li span.jp-free-media{
    float: right;
}

.ls-audio-player-wrap .ls-player-playlist ul li a.jp-playlist-item-remove,
.ls-video-player-wrap .ls-player-playlist ul li a.jp-playlist-item-remove{
    display: block !important;
    float: right;
    margin-left: 10px;
}

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


/*------------------------------------------------------------------
  -------------------------- TREE VIEW ------------------------
-------------------------------------------------------------------*/
.ls-tree-view{
    background: none;
}

.ls-tree-view > ul{
    padding: 0;
    margin: 0;
}


.ls-tree-view ul li{
    font-size: 14px;
}

.ls-tree-view li:before{
    border: 2px solid #e3dfd8;
}

.ls-tree-view li:after {
    border-top: 1px solid #e3dfd8;
}


.ls-tree-view li:last-child:before {
    height: 25px;
}

.ls-tree-view li > span {
    border: 1px solid #e3dfd8;
    border-radius: 1px;
}


.ls-tree-view ul li span,
.ls-tree-view ul li a{
    color: #333;

}

.ls-tree-view li > span span.glyphicon{
    color: #b4b0a9;
    margin-right: 5px;
}

.ls-tree-view li.parent_li > span > span.glyphicon{
    margin-right: 10px;
}

.ls-tree-view li.parent_li > span:hover,
.ls-tree-view li.parent_li > span:hover + ul li span {
    background: #E0E0E0;
}


.ls-tree-view  .easy-tree-toolbar {
    background-color: inherit;
    position: relative;
}

.ls-tree-view .easy-tree-toolbar > div > button{
    margin: 5px;
}

.ls-tree-view  .easy-tree-toolbar .create{
    float: left;
}

.ls-tree-view  .easy-tree-toolbar .create .btn{
    background-color: #5bc0de;
    border-color: #46b8da;
    color: #fff;
    float: left;
}

.ls-tree-view  .easy-tree-toolbar .edit .btn{
    background-color: #f0ad4e;
    border-color: #eea236;
    color: #fff;
}

.ls-tree-view  .easy-tree-toolbar .remove .btn{
    background-color: #ff7878;
    border-color: #ff7878;
    color: #fff;
}


.ls-tree-view .easy-tree-toolbar .create .input-group{
    top: 0;
}


.ls-tree-view .easy-tree-toolbar .create .input-group-btn{
    width: inherit;
}

.ls-tree-view .easy-tree-toolbar .create .input-group .form-control{
    top: 5px;
    height: 30px;
}

.ls-tree-view .easy-tree-toolbar .create .input-group span.input-group-btn > .btn{
    height: 30px;
    line-height: 15px;
    top: 5px;
}



/*-----MULTI NESTED LIST-------*/
.ls-animated-multi-lists ul {
    padding: 0em;
}

.ls-animated-multi-lists ul li,
.ls-animated-multi-lists ul li ul li {
    position:relative;
    top:0;
    bottom:0;
    padding-bottom: 7px;

}

.ls-animated-multi-lists ul li ul {
    margin-left: 3em;
    position: relative;
}

.ls-animated-multi-lists li {
    list-style-type: none;
}

.ls-animated-multi-lists li a {
    padding:0 0 0 10px;
    position: relative;
    top:1em;
    color: #86827b ;
}

.ls-animated-multi-lists li a:hover {
    text-decoration: none;
}

.ls-animated-multi-lists a.addBorderBefore:before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 28px;
    position: absolute;
    left: -47px;
    top:-16px;
    border-left: 1px solid #e3dfd8;
}

.ls-animated-multi-lists li:before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 0;
    position: relative;
    left: 0em;
    top:11px;
    border-top: 1px solid #e3dfd8;
}

.ls-animated-multi-lists ul li ul li:last-child:after,
.ls-animated-multi-lists ul li:last-child:after {
    content: '';
    display: block;
    position: relative;
}



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


/*------------------------------------------------------------------
  -------------------------- IMAGE FLUID BOX ------------------------
-------------------------------------------------------------------*/
/* Just positioning of images to introduce variety */
.ls-image-fluid-box a[data-fluidbox] {
    background-color: #eee;
    border: none;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    margin-bottom: 1.5rem;
}
.ls-image-fluid-box a.fluidbox-opened {
    cursor: -webkit-zoom-out;
    cursor: -moz-zoom-out;
}
.ls-image-fluid-box a img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    transition: all .25s ease-in-out;
}
.ls-image-fluid-box a[class^='float'] {
    margin: 1rem;
    margin-top: 0;
    width: 33.33333%;
}
.ls-image-fluid-box a.float-left {
    float: left;
    margin-left: 0;
}
.ls-image-fluid-box a.float-right {
    float: right;
    margin-right: 0;
}
.ls-image-fluid-box a.has-border img {
    border: .25em solid #111;
}
.ls-image-fluid-box a.has-padding img {
    padding: .25em;
}
.ls-image-fluid-box .ls-fluid-box-gallery {
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    justify-content: space-between;
}
.ls-image-fluid-box .ls-fluid-box-gallery a {
    margin-bottom: 1rem;
}
.ls-image-fluid-box .ls-fluid-box-gallery a.col-1 { width: 100%; }
.ls-image-fluid-box .ls-fluid-box-gallery a.col-2 { width: 49%; width: calc(50% - .5rem); }
.ls-image-fluid-box .ls-fluid-box-gallery a.col-3 { width: 32%; width: calc(33.33333% - .66667rem); }
.ls-image-fluid-box .box {
    background-color: #eee;
    border: 1px solid rgba(0,0,0,.25);
    box-sizing: border-box;
    padding-bottom: 66.66667%;
    position: relative;
    width: 100%;
}
.ls-image-fluid-box .box img {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 50%;
}

/* Custom overlays */
.overlay-1 .fluidbox-overlay {
    background-color: rgba(153,145,139,.85);
}
.overlay-2 .fluidbox-overlay {
    background-color: transparent;
    background-image: linear-gradient(to top left, rgba(130,168,158,0.85), rgba(134,150,173,.85));
}
.overlay-3 .fluidbox-overlay {
    background-color: #000;
}
.overlay-3 .fluidbox-overlay::before {
    background-image: url('../bundles/kanguraerpadministracio/images/demo/dummy-1280x800.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: .33333;
    -webkit-filter: blur(4px);
}
/*-------------------------------------------------------------*/

/*------------------------------------------------------------------
[Master Responsive Stylesheet]

Project     :	Fickle Responsive Admin Template
Version     :	1.0
Author      : 	AimMateTeam
URL         :   http://aimmate.com
Support     :   aimmateteam@gmail.com
Primary use :	Layout & All Pages

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

/*------------------------------------------------------------------
[Table of contents]

+ MIN-WIDTH : 1400PX & MAX-WIDTH : 7680PX
+ MIN-WIDTH : 0PX & MAX-WIDTH : 1024PX
+ MIN-WIDTH : 768PX & MAX-WIDTH : 1024PX
+ MIN-WIDTH : 0PX & MAX-WIDTH : 995PX
+ MIN-WIDTH : 0PX & MAX-WIDTH : 768PX
+ MIN-WIDTH : 0PX & MAX-WIDTH : 767PX
+ MIN-WIDTH : 0PX & MAX-WIDTH : 650PX
+ MIN-WIDTH : 0PX & MAX-WIDTH : 600PX
+ MIN-WIDTH : 0PX & MAX-WIDTH : 480PX
+ MIN-WIDTH : 0PX & MAX-WIDTH : 479PX
+ MIN-WIDTH : 0PX & MAX-WIDTH : 400PX
+ MIN-WIDTH : 0PX & MAX-WIDTH : 359PX
+ IE10 & IE11 ISSUE FIXED

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


/*------------------------------------------------------------------
   ---------- MIN-WIDTH : 1400PX & MAX-WIDTH : 7680PX -----------
-------------------------------------------------------------------*/
@media all and (min-width: 1400px) and (max-width: 7680px) {

    /*** Profile ***/
    .ls-user-subscriber .ls-user-box-content{
        margin-left: -150px;
    }

    .ls-user-details .user-detail .user-pic{
        left: 450px;
    }
}

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


/*------------------------------------------------------------------
   ---------- MIN-WIDTH : 0PX & MAX-WIDTH : 1024PX -----------
-------------------------------------------------------------------*/
@media all and (min-width: 0px) and (max-width: 1024px) {
    .menu-control{
        display: none;
    }
    .progress.vertical{
        margin: 0 5px;
    }

    /**************** Timeline ***************/
    .ls_tmtimeline > li .ls-timeline-user {
        padding-right: 10px;
        width: 16%;
    }

    .ls_tmtimeline > li .ls-timeline-user .media a {
        float: none !important;
    }

    .ls_tmtimeline > li .ls-timeline-user img {
        margin: 0 auto;
    }

    .ls-timeline-user .media-heading {
        margin-top: 0;
    }

    .ls_tmtimeline > li .ls_tmicon {
        left: 20%;
    }

    .ls_tmtimeline:before {
        left: 20%;
    }

    .ls_tmtimeline > li .ls_tmlabel {
        margin-left: 28%;
        min-height: 160px;
    }

    .ls_tmtimeline > li .ls_tmicon_ls {
        left: 17.5%;
    }

    .ls_tmtimeline > li .ls_tmlabel iframe {
        height: 250px;
    }
    /*****************************************/

    /** Pricing Table **/
    .basic ul li:first-child div.basic-price-simple{
        bottom: -13px;
    }
    .basic ul li:first-child div.basic-price-simple h3 span.doller {
        font-weight: 300;
        font-size: 20px;
        top: 0;
    }
    .basic ul li:first-child div.basic-price-simple h3 {
        font-weight: 300;
        font-size: 20px;
    }
    .basic ul li:first-child div.basic-price-simple h3 span{
        font-weight: 300;
        font-size: 16px;
    }

    /** Profile **/
    .ls-hover-effect a.info {
        left: -67px;
        top: -73px;
    }

    /** slider 2 **/
    .ls-slider-content{
        text-align: center;
    }
}

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


/*------------------------------------------------------------------
   ---------- MIN-WIDTH : 768PX & MAX-WIDTH : 1024PX -----------
-------------------------------------------------------------------*/
@media all  and (min-device-width: 768px) and (max-device-width: 1024px) {
    /****** Index Page  ******/
    .feature-weather ul li a{
        padding: 10px 5px;
    }
    .change-color-switch ul li{
        margin: 0;
    }
    /****** Index Page End ******/

    /* Ls Two Column Icon Gap*/
    .ls-two-column-icon:hover div.ls-icons-link{
        left: 25%;
    }

    .ls-two-column-icon:hover div.ls-icons-remove{
        right: 25%;
    }

    /* Ls Three Column Icon Gap*/
    .ls-three-column-icon:hover div.ls-icons-link{
        left: 12%;
    }

    .ls-three-column-icon:hover div.ls-icons-remove{
        right: 12%;
    }

    /* Ls Four Column Icon Gap*/
    .ls-four-column-icon:hover div.ls-icons-link{
        left: 3%;
    }

    .ls-four-column-icon:hover div.ls-icons-remove{
        right: 3%;
    }

    /** profile **/
    .ls-user-details .user-detail .user-pic{
        left: 235px;
    }

    .ls-user-skills ul li div.ls-skill-list .ls-progress{
        width: 73%;
    }

    .ls-project ul li img{
        width: 85px;
    }

    .ls-user-subscriber .ls-user-box-content{
        margin-left: -30px;
    }

    .ls-user-subscriber .ls-user-box-content h1 {
        font-size: 16px;
    }

    .ls-bottom-gap{
        margin-bottom: 20px;
    }
}

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


/*------------------------------------------------------------------
   ---------- MIN-WIDTH : 0PX & MAX-WIDTH : 995PX -----------
-------------------------------------------------------------------*/
@media all and (min-width: 0px) and (max-width: 995px) {
    /****** Index Page  ******/
    .setting-widget, .skyWeather{
        margin-bottom: 10px;
    }
    .current-status-widget ul{
        margin-top: 15px;
    }
    .current-status-widget ul li{
        width: 50%;
        float: left;
    }
    .social-share-box{
        margin-top: 15px;
    }
    /****** Index Page  end ******/
    /****** mail page Start******/
    .mail-contact-address{
        width: 70%;
    }
    /****** mail page end******/
    .ls-circle-widget{
        height: 150px;
        width: 150px;
    }
    .ls-circle-widget i{
        line-height: 150px;
        font-size: 50px;
    }
    .ls-circle-widget h1{
        font-size: 12px;
    }
    .ls-circle-widget:hover i, .ls-circle-widget.active i{
        padding-top: 30px;
    }

    /** profile **/
    .ls-user-details .ls-user-info .ls-user-text,
    .ls-user-details .ls-user-info .ls-user-text2{
        padding: 5px 5px 5px 116px;
    }

    .ls-user-details .ls-user-info .ls-user-text p{
        margin-bottom: 0;
    }

    .ls-user-details .ls-user-info .ls-user-text2 h4{
        margin-bottom: 0;
    }

    .ls-user-feature ul {
        margin-top: 20px;
        text-align: center;
    }

    .ls-user-feature ul li #ls-user-friends{
        display: block !important;
    }

    .ls-profession {
        border-bottom: 1px solid #ddd;
        margin: 0 14px 20px;
    }

    .ls-user-skills ul li div.ls-skill-list .ls-progress {
        width: 78%;
    }
}

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


/*------------------------------------------------------------------
   ---------- MIN-WIDTH : 0PX & MAX-WIDTH : 768PX -----------
-------------------------------------------------------------------*/
@media all and (min-width: 0px) and (max-width: 768px) {
    /****** Index Page  ******/
    .feature-weather ul li a{
        padding: 10px 10px;
    }
    .change-color-switch ul li{
        margin: 0 0 0 5px;
    }
    .social-share-box{
        height: auto;
    }
    .icon-tab.icon-tab-home li a span{
        display: inline-block;
    }

    /****** Index Page End ******/
    .icon-tab li a span{
        display: none;
    }
    /***** mail page start *****/
    .mail-navigation li{
        width:60px
    }
    .mail-contact-address{
        width: 65%;
    }
    .mail-contact-user-image-box{
        width: 35%;
    }
    .mail-contact-user-image-box{
        width: 20%;
    }

    ul.attachments-preview-list li{
        margin-right: 10px;
    }

    .ls-mail-img img{
        width: 100px;
    }
    /***** mail page End   *****/
    /***** Form page  Start ******/
    .form-horizontal .form-group{
        margin-left: 0;
    }
    .input-group{
        margin-bottom: 15px;
    }
    form.ls_form_horizontal{
        margin: 0 0 0 -15px;
    }

    /***** Form page  end   ******/

    /************************Timeline************************/
    .ls_tmtimeline > li .ls_tmlabel {
        margin-left: 35%;
    }

    .ls_tmtimeline > li .ls_tmlabel iframe {
        height: 250px;
    }

    .ls_tmtimeline > li .ls_tmicon_ls {
        margin-left: 7px;
    }

    .ls_tmlabel ul.task li {
        margin-bottom: 10px;
    }

    /** TimeLine **/
    .ls_tmtimeline > li .ls_tmicon {
        left: 25%;
    }

    .ls_tmtimeline:before{
        margin-left: 25px;
    }

    /**********************************************************/

    .ls-gallery-search {
        text-align: left;
        margin-top: 25px;
    }

    /* Ls Two Column Icon Gap*/
    .ls-two-column-icon:hover div.ls-icons-link{
        left: 20%;
    }

    .ls-two-column-icon:hover div.ls-icons-remove{
        right: 20%;
    }

    /* Ls Three Column Icon Gap*/
    .ls-three-column-icon:hover div.ls-icons-link{
        left: 8%;
    }

    .ls-three-column-icon:hover div.ls-icons-remove{
        right: 8%;
    }

    /** Pricing Table **/
    .basic ul li:first-child div.ls-hex-bage:after{
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
    }

    .android ul li:first-child h3 {
        font-size: 34px;
        padding-top: 18px;
    }

    .android ul li:first-child p{
        margin: -10px 0 20px;
    }

    .basic-simple ul li:first-child .basic-simple-package h3,
    .basic-simple ul li:first-child .basic-standard-package h3,
    .basic-simple ul li:first-child .basic-premium-package h3{
        font-size: 30px;
    }

    .basic-simple ul li:first-child div.basic-price-simple h3{
        font-size: 34px;
    }

    /**profile **/
    .ls-user-skills ul li div.ls-skill-list .ls-progress{
        width: 77%;
    }

    .ls-project ul li img{
        width: 100px;
    }

    .user-profile-tab .icon-tab li a span{
        display: block;
    }

    .ls-user-details .ls-user-info .ls-user-text2{
        padding: 5px 5px 5px 68px;
    }

    .ls-hover-effect a.info {
        left: -60px;
        top: -63px;
    }

    /* Slider */
    .ls-slider-title{
        height: 45px;
        margin: 0px 15px 0;
    }

    .ls-slider-title h2{
        font-size: 17px;
    }

    .ls-slider-content{
        text-align: center;
    }
}

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


/*------------------------------------------------------------------
   ---------- MIN-WIDTH : 0PX & MAX-WIDTH : 767PX -----------
-------------------------------------------------------------------*/
@media all and (min-width: 0px) and (max-width: 767px) {
    .search-box{
        display: none;
    }
    /****** Index Page  ******/
    .menu-control{
        display: block;
    }
    .pie-widget{
        margin-bottom: 15px;
    }
    .monthlySale .progress.vertical{
        width:30px;
    }
    .progress.vertical{
        margin: 0 5px;
    }
    .seriesToggleWidget{
        width:100%;
        height: 210px;
    }
    #choicesWidget{
        width: 100%;
        text-align: center;
    }
    #choicesWidget li{
        display: inline-block;
        margin-bottom:0;
        margin-top: 15px;
    }
    .current-weather{
        margin-top: 15px;
    }
    .current-weather-icon{
        padding-top:7%
    }
    .feature-weather ul li a{
        padding: 10px 35%;
    }

    /****** Index Page End ******/
    .nav.icon-tab  > li > a{
        padding: 5px 10px;
    }
    .icon-tab.nav-tabs.nav-justified{
        border-bottom:1px solid #e0e0e0;
    }
    .icon-tab.nav-tabs.nav-justified > li{
        float: left;
    }
    .icon-tab.nav-tabs.nav-justified > li > a{
        border-radius: 1px;
        -moz-border-radius: 1px;
        -webkit-border-radius: 1px;
        margin-right:0;
        margin-bottom:0;
    }
    .icon-tab.nav-tabs.nav-justified > .active > a,
    .icon-tab.nav-tabs.nav-justified > .active > a:hover,
    .icon-tab.nav-tabs.nav-justified > .active > a:focus{
        border-bottom:1px solid #fff;
    }
    .icon-list li i{
        font-size: 20px;
    }
    /****** Ui Element page start ******/
    .demo-btn .btn, .demo-btn .btn-group,  .demo-btn .switchery, .demo-btn .bootstrap-switch{
        margin-bottom: 15px;
    }
    /****** Ui Element page End   ******/

    /** Slider 2 **/
    .ls-slider-content,
    .ls-slider-title{
        display: none;
    }
}

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


/*------------------------------------------------------------------
   ---------- MIN-WIDTH : 0PX & MAX-WIDTH : 650PX -----------
-------------------------------------------------------------------*/
@media all and (min-width: 0px) and (max-width: 650px) {
    /*Layout element start*/
    #left-navigation .user-image, #left-navigation .social-icon{
        display: none;
    }
    .ls-glyphicons li{
        width: 50%;
    }
    .phone-nav-box{
        display: none !important;
    }
    /***** mail page start *****/
    .mail-box-list{
        width: 100%;
    }
    .mail-body{
        width: 100%;
        padding-left: 0;
        margin-top: 15px;
    }
    .memberBox-details ul li{
        padding: 0 8%;
    }

    .mail-body.mail-body-inbox{
        padding-left: 0px;
    }

    .ls-mail-img img {
        width: 125px;
    }
    /***** mail page End   *****/

    /***** Map page Start   *****/
    .ls-map-locator ul li a i.fa{
        font-size: 20px;
    }
    .ls-map-locator ul li a img{
        width: 30px;
    }
    /***** Map page end     *****/
    /***** Widget page Start *****/
    .ls-circle-widget{
        height: 100px;
        width: 100px;
        margin-bottom: 15px;
    }
    .ls-circle-widget h1{
        font-size: 11px;
    }
    .ls-circle-widget i{
        line-height: 100px;
        font-size: 30px;
    }
    .ls-circle-widget:hover i, .ls-circle-widget.active i{
        font-size:20px;
        line-height: 40px;
        padding-top: 20px;
    }
    .ls-wizard, .weatherFeed, .simpleWeather, .ls-widget-box{
        margin-bottom: 15px;
    }
    /***** Widget page End   *****/

    /* Ls Two Column Icon Gap*/
    .ls-two-column-icon:hover div.ls-icons-link{
        left: 30%;
    }

    .ls-two-column-icon:hover div.ls-icons-remove{
        right: 30%;
    }

    /* Ls Three Column Icon Gap*/
    .ls-three-column-icon:hover div.ls-icons-link{
        left: 30%;
    }

    .ls-three-column-icon:hover div.ls-icons-remove{
        right: 30%;
    }

    /* Ls Four Column Icon Gap*/
    .ls-four-column-icon:hover div.ls-icons-link{
        left: 30%;
    }

    .ls-four-column-icon:hover div.ls-icons-remove{
        right: 30%;
    }

    /** Timeline **/
    .ls_tmtimeline:before{
        margin-left: 18px;
    }
    .ls_tmtimeline > li .ls_tmicon_ls {
        margin-left: -3px;
    }

    .ls_tmtimeline > li .ls-timeline-user {
        padding-right: 10px;
        width: 20%;
    }
    /** Pricing table **/
    .basic,
    .android,
    .basic-simple{
        margin: 0 10% 10%;
    }

    /*** Profile ***/
    .ls-user-details .ls-user-links ul{
        text-align: left;
        margin-top: 15px;
    }

    .ls-user-details .user-detail .user-pic{
        left: 380px;
        top: -45px;
    }

    .ls-user-details .user-detail .ls-user-position,
    .ls-user-details .user-detail address{
        width: 75%;
    }

    .ls-user-feature ul li #ls-user-friends {
        display: none !important;
    }

    .ls-user-skills ul li div.ls-skill-list .ls-progress {
        width: 75%;
    }

    .ls-project ul li img {
        width: 125px;
    }

    .ls-bottom-gap{
        margin-bottom: 20px;
    }

    .ls-hover-effect a.info {
        left: -45px;
        top: -55px;
    }

    /*** Tables ***/

    .dataTables_wrapper {
        margin: 10px;
    }

    .dataTables_length{
        float: none;
        width: 40%;
    }

    .dataTables_filter{
        margin-top: -45px;
        width: 60%;
    }
    /***** UI Element *****/
    .easy-pai-box button {
        margin-bottom: 20px;
    }


    /*** Form ***/
    .ls_form .form-group label.checkbox,
    .ls_form .form-group label.checkbox-inline{
        padding-top: 0;
    }

    .ls_form .form-group label.checkbox{
        margin-left: 20px;
    }

    .ls_form .form-group  label.radio,
    .ls_form .form-group  label.radio-inline{
        padding-top: 0;
    }

    /** Checkbox **/
    .icheck-radio-inline {
        padding-left: 0;
    }
    
    /** Calender **/
    button.addEvent{
        width: 50%;
    }

    .eventList{
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
    }

    .external-event{
        display: inline-block;
        width: 48%;
        margin: 4px;
        padding: 0;
    }

    .cal-event-remove{
        text-align: center;
        position: relative;
        margin: 20px 0;
    }
}

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


/*------------------------------------------------------------------
   ---------- MIN-WIDTH : 0PX & MAX-WIDTH : 600PX -----------
-------------------------------------------------------------------*/
@media all and (min-width: 0px) and (max-width: 600px) {
    /** Profile **/
    .ls-user-details .user-detail .user-pic {
        left: 345px;
    }

    .ls-project ul li img {
        width: 160px;
    }

    /** Timeline **/

    .ls_tmtimeline > li .ls_tmicon {
        left: 26%;
    }

    .ls_tmtimeline:before {
        left: 21%;
    }

    .ls_tmtimeline > li .ls-timeline-user {
        padding-right: 25px;
        width: 25%;
    }
}

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


/*------------------------------------------------------------------
   ---------- MIN-WIDTH : 0PX & MAX-WIDTH : 480PX -----------
-------------------------------------------------------------------*/
@media all and (min-width: 0px) and (max-width: 480px) {
    /*Layout Start*/
    .phone-nav-box{
        display: block!important;
    }
    .top-navigation{
        float: none;
        text-align: center;
    }
    .top-navigation ul{
        float: none;
    }
    .top-navigation ul li{
        text-align: left;
    }
    .navigation a h1{
        line-height: 45px;
        font-size: 35px;
    }

    .top-navigation .dropdown-menu.right.email-notification {
        left: -125px;
    }
    .top-navigation .dropdown-menu.right{
        left: -67px;
    }

    .top-navigation .dropdown-menu.right.top-dropDown-1{
        left: -25px;
    }
    .header-logo{
        display: none;
    }
    /*Layout End */

    .header-logo{
        float: none;
        width: 100%;
    }

    .top-navigation ul li.only-phone{
        display: inline;
    }
    ul.mainNav{
        display: none;
    }

    #left-navigation{
        position: relative;
        width: 100%;
    }
    #min-wrapper{
        padding-left: 0;
    }
    /********* Layout end *********/
    /****** Index Page  ******/
    .memberBox-details ul li{
        padding: 0 4%;
    }
    /****** Index Page  End******/
    /***** mail page start *****/
    .mail-contact-user-image-box{
        display: none;
    }
    .mail-contact-address{
        width: 100%;
    }
    .mail-action-bar ul li a{
        margin: 0 5px;
    }

    .ls-mail-img img {
        width: 98px;
    }

    .mail-contact-address{
        margin-top: 0px;
    }
    /***** mail page End   *****/
    /*Calender page start */
    span.fc-header-title h2{
        font-size: 16px;
    }
    .fc .fc-header-space{
        padding-left: 5px;
    }
    .fc-button{
        padding: 0 4px;
    }

    .external-event{
        width: 47%;
    }
    /*Calender page end   */

    /***** Map page Start   *****/
    .world_map{
        height: 300px;
    }
    #map_decoration{
        height: 300px;
    }
    /***** Map page End   *****/


    /*****  Coming soon page Start  *****/
    .coming-soon h1{
        font-size: 32px;
    }
    /*****  Coming soon page End    *****/

    /* Ls Four Column Icon Gap*/
    .ls-four-column-icon:hover div.ls-icons-link{
        left: 25%;
    }

    .ls-four-column-icon:hover div.ls-icons-remove{
        right: 25%;
    }

    /** Timeline **/
    .ls_tmtimeline > li .ls_tmlabel {
        margin-left: 42%;
    }

    .ls_tmtimeline > li .ls-timeline-user {
        width: 30%;
    }

    .ls_tmtimeline > li .ls_tmicon {
        left: 32%;
    }

    .ls_tmtimeline:before {
        margin-left: 40px;
    }

    .ls_tmtimeline > li .ls_tmicon_ls {
        margin-left: 10px;
    }

    /** Pricing table **/
    .android-active,
    .basic-active{
        transform: none;
    }

    .basic, .android, .basic-simple {
        margin: 0 10% 15%;
    }

    /** Profile **/
    .ls-user-details .user-detail .user-pic {
        left: 275px;
    }

    .ls-user-details .ls-user-links ul li{
        height: 30px;
        width: 30px;
        line-height: 33px;
    }

    .ls-user-skills ul li div.ls-skill-list .ls-progress {
        width: 73%;
    }

    .ls-project ul li img {
        width: 137px;
    }

    .ls-hover-effect a.info {
        left: -40px;
        top: -50px;
    }

    .ls-user-details .ls-user-info .ls-user-text,
    .ls-user-details .ls-user-info .ls-user-text2{
        padding: 5px;
    }

    /*** TABLE ***/
    .dataTables_length{
        width: 100%;
    }

    .dataTables_filter{
        margin-top: 0;
        float: left;
        width: 100%;
        text-align: left;
    }

    .dataTables_paginate {
        float: left;
        margin-bottom: 30px;
        margin-top: 10px;
        text-align: left;
    }

    .dataTables_filter label input{
        width: 70%;
    }


    /*---------------UPDATE VERSTION v1.1 ADDITIONAL-----------------*/
    /*----Tree View-----*/
    .ls-tree-view .easy-tree-toolbar .create {
        float: right;
        width: 76%;
    }
}

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


/*------------------------------------------------------------------
   ---------- MIN-WIDTH : 0PX & MAX-WIDTH : 479PX -----------
-------------------------------------------------------------------*/
@media all and (min-width: 0px) and (max-width: 479px) {
    /****** Index Page  ******/
    .memberBox-details ul li{
        padding: 0 4%;
    }
    .current-status-widget ul li{
        float: none;
        width: 100%;
    }
    .feature-weather ul li a{
        padding: 10px 15%;
    }
    /****** Index Page  End******/

    /***** mail page start *****/
    .mail-action-bar ul li a{
        margin: 0 5px;
    }
    /***** mail page End   *****/
    /***** Form page  Start ******/
    .swMainVertical ul.anchor{
        width: 100%;
    }
    .swMainVertical ul.anchor li{
        float: none;
        display: inline-block;
    }
    /***** Form page  End ******/
    /*Element page start*/
    .demo-badge >span.badge{
        margin-bottom: 15px;
    }
    /*Element page End  */

    /*****  Chart Page page Start    *****/
    #choices li{
        display: list-item;
    }
    /*****  Chart Page page End    *****/

    /***********************Timeline**************************/
    .ls_tmtimeline > li .ls-timeline-user {
        /*position: absolute;*/
        width: 100%;
        height: 100%;
        z-index: 999;
    }

    .ls-timeline-user .media-heading {
        color: #FFFFFF;
        position: absolute;
        left: 95px;
        top: 20px;
        z-index: 999;
    }

    .ls_tmtimeline > li .ls_tmtime span:first-child {
        position: absolute;
        left: 95px;
        top: 45px;
        font-size: 13px;
        color: #252525 !important;
    }

    .ls_tmtimeline > li .ls_tmtime span:last-child {
        position: absolute;
        left: 95px;
        top: 55px;
        margin-top: 10px;
        font-size: 17px;
        color: #353535 !important;
    }

    .ls_tmtimeline > li .ls-timeline-user img {
        float: right;
        margin-top: 10px;
    }

    .ls_tmtimeline > li .ls-timeline-user .media-body {
        width: 100%;
    }

    .ls_tmtimeline > li .ls_tmlabel h2 {
        margin-top: 90px;
    }

    .ls_tmtimeline > li .ls_tmicon {
        left: 10%;
    }

    .ls_tmtimeline > li .ls_tmlabel {
        margin-left: 23%;
    }

    .ls_tmtimeline:before {
        margin-left: -13%;
    }

    .ls_tmtimeline > li .ls_tmicon_ls {
        margin-left: -17px;
    }

    .ls_tmlabel ul li {
        z-index: 9999;
    }
}

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


/*------------------------------------------------------------------
   ---------- MIN-WIDTH : 0PX & MAX-WIDTH : 400PX -----------
-------------------------------------------------------------------*/
@media all and (min-width: 0px) and (max-width: 400px) {
    /*Layout element end*/
    /*Element Page Start*/
    .element-progress.v-progressbar .progress.vertical{
        width: 40px;
    }
    /*Element Page End*/
    /***** Map page Start   *****/
    .ls-map-locator ul li a span{
        font-size: 10px;
    }
    .ls-map-locator ul li a i.fa{
        font-size: 20px;
    }
    .ls-map-locator ul li a img{
        width: 25px;
    }
    /***** Map page end  *****/
    /***** Chart page Start *****/
    .d3-round-pic{
        height: 250px;
    }
    #choices li{
        width: 100%;
    }
    /***** Chart page end *****/
    /***** Form page Start *****/
    .swMain .buttonFinish, .swMain .buttonNext, .swMain .buttonPrevious,
    .swMainVertical .buttonFinish, .swMainVertical .buttonNext, .swMainVertical .buttonPrevious{
        width: 75px;
    }
    .radio-inline, .checkbox-inline{
        padding-left: 0;
    }

    .ls_form .form-group  label.radio-inline,
    .ls_form .form-group  label.checkbox-inline{
        padding-left: 20px;
    }
    .popoverBox, .modal-preview button.btn{
        margin-bottom: 10px;
    }
    /***** Form page End *****/

    /* Ls Two Column Icon Gap*/
    .ls-two-column-icon:hover div.ls-icons-link{
        left: 20%;
    }

    .ls-two-column-icon:hover div.ls-icons-remove{
        right: 20%;
    }

    /* Ls Three Column Icon Gap*/
    .ls-three-column-icon:hover div.ls-icons-link{
        left: 20%;
    }

    .ls-three-column-icon:hover div.ls-icons-remove{
        right: 20%;
    }

    /* Ls Four Column Icon Gap*/
    .ls-four-column-icon:hover div.ls-icons-link{
        left: 20%;
    }

    .ls-four-column-icon:hover div.ls-icons-remove{
        right: 20%;
    }

    /* Pricing Table */
    .basic-simple {
        margin: 0 10% 20%;
    }

    /** Profile **/
    .ls-user-details .ls-user-name,
    .ls-user-details .ls-user-links ul{
        text-align: center;
    }

    .ls-user-details .user-detail{
        margin-top: 160px;
    }

    .ls-user-details .user-detail .user-pic{
        left: 105px;
        top: -150px;
        height: 150px;
        width: 150px;
    }

    .ls-user-details .user-detail .user-pic img{
        height: 130px;
        width: 130px;
    }

    .ls-user-details .user-detail .ls-user-position,
    .ls-user-details .user-detail address {
        width: 100%;
    }

    .ls-user-details .ls-user-info .ls-user-text,
    .ls-user-details .ls-user-info .ls-user-text2 {
        padding: 5px;
        margin: 10px -5px;
        text-align: left;
    }

    .ls-user-details .ls-user-info .ls-user-text2 h4 {
        padding-bottom: 10px;
    }

    .ls-friends-info-wrap img {
        margin-right: 5px;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        border-radius: 50%;
        top: 45px;
    }

    .ls-friends-info h4{
        text-align: center;
    }

    .ls-friends-info ul {
        text-align: center;
        margin-top: 130px;
        margin-bottom: 15px;
    }

    .ls-friends-info address{
        text-align: center;
    }

    .ls-friends-about h3{
        text-align: center;
        margin-top: 0;
    }

    /** mail **/
    .ls-mail-img img {
        width: 153px;
    }

    /** Calender **/
    .fc-header-title{
        position: absolute;
        left: 0;
        right: 0;
    }

    .fc-header-center{
        height: 77px;
    }

    .fc-header-left,
    .fc-header-right{
        position: absolute;
        top: 50px;
    }

    .fc-header-left{
        text-align: left;
        left: 20%;
    }

    .fc-header-right{
        text-align: right;
        right: 29%;
    }

    button.addEvent {
        width: 96%;
    }

    .external-event {
        width: 96%;
    }
    /***** Widgets Page ****/
    .feed-box ul.ls-feed li{
        font-size: 12px;
    }
    .feed-box ul.ls-feed li span.date {
        font-size: 10px;
        padding-right: 7px;
    }

    /*---------------UPDATE VERSTION v1.1 ADDITIONAL-----------------*/
    /*----Tree View-----*/
    .ls-tree-view .easy-tree-toolbar .create {
        float: right;
        width: 68%;
    }

    .ls-tree-view .easy-tree-toolbar .create .input-group{
        left: -96px;
        margin-bottom: 25px;
        position: relative;
        top: 5px;
        width: 144%;
        z-index: 999999;
    }

}

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


/*------------------------------------------------------------------
   ---------- MIN-WIDTH : 0PX & MAX-WIDTH : 359PX -----------
-------------------------------------------------------------------*/
@media all and (min-width: 0px) and (max-width: 359px) {
    /******* Index page start ******/
    .memberBox-details ul li{
        margin-bottom: 20px;
    }
    /******* Index page end ******/
    /******* Calender page Start ******/
    .fc-header-left{
        text-align: left;
        left: 16%;
    }

    .fc-border-separate tr.fc-last th, .fc-border-separate tr.fc-last td{
        font-weight: normal;
        font-size: 12px;
    }
    /******* Calender page End ******/
    /******* Map page Start ******/
    .ls-map-locator ul li{
        width: 18%;
    }
    /******* Map page End ******/

    /*************** TimeLine ******************/
    .ls-timeline-user .media-heading {
        left: 80px;
    }

    .ls_tmtimeline > li .ls_tmtime span:first-child,
    .ls_tmtimeline > li .ls_tmtime span:last-child{
        left: 80px;
    }

    .ls_tmlabel ul li img {
        width: 88px;
    }

    .ls_tmtimeline > li .ls_tmicon_ls {
        margin-left: -13px;
    }

    .ls_tmtimeline > li .ls_tmlabel iframe {
        height: 200px;
    }

    /** Pricing table **/
    .basic,
    .basic-simple{
        margin: 0 10% 20%;
    }

    /** Profile **/
    .ls-user-details .user-detail .user-pic {
        left: 85px;
    }

    .ls-user-skills ul li div.ls-skill-list .ls-progress {
        width: 67%;
    }

    .ls-project ul li img {
        width: 132px;
    }

    .ls-user-details .ls-user-info .ls-user-text, .ls-user-details .ls-user-info .ls-user-text2{
        padding: 5px 5px 5px 5px;
    }

    .ls-hover-effect a.info {
        left: -45px;
        top: -50px;
    }

    /*** Mail ***/
    .ls-mail-img img {
        width: 132px;
    }


    /*---------------UPDATE VERSTION v1.1 ADDITIONAL-----------------*/
    /*----Tree View-----*/
    .ls-tree-view .easy-tree-toolbar .create {
        width: 63%;
    }

    .ls-tree-view .easy-tree-toolbar .create .input-group {
        width: 155%;
    }
}

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


/*------------------------------------------------------------------
   ----------------- IE10 & IE11 ISSUE FIXED --------------------
-------------------------------------------------------------------*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    /* IE10+ specific styles go here */
    _:-ms-fullscreen, :root #grid .col-md-3,
    _:-ms-fullscreen, :root #grid .col-md-4,
    _:-ms-fullscreen, :root #grid .col-md-6,
    _:-ms-fullscreen, :root #grid .col-sm-6,
    _:-ms-fullscreen, :root #grid .col-sm-3,
    _:-ms-fullscreen, :root #grid .col-sm-4,
    _:-ms-fullscreen, :root #grid .col-sm-6,
    _:-ms-fullscreen, :root #grid .col-sm-12,
    _:-ms-fullscreen, :root #grid .col-xs-12{
        padding: 0;
        margin: 0;
    }
    _:-ms-fullscreen, :root .m-row [class*="m-col-md"] {
        float: left;
        margin-left: 2% !important;
    }
    _:-ms-fullscreen, :root .m-row [class*="m-col-md"]:first-child {
        margin-left: 0;
    }

    _:-ms-fullscreen, :root .m-row .m-col-md-3 {
        width: 22.7777%;
    }
    _:-ms-fullscreen, :root .m-row .m-col-md-4 {
        width: 32%;
    }

    _:-ms-fullscreen, :root .m-row .m-col-md-6 {
        width: 49%;
    }
}

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

/*!
 *  Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../bundles/kanguraerpadministracio/css/font-awesome/fonts/fontawesome-webfont.eot?v=4.1.0');src:url('../bundles/kanguraerpadministracio/css/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'),url('../bundles/kanguraerpadministracio/css/font-awesome/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'),url('../bundles/kanguraerpadministracio/css/font-awesome/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'),url('../bundles/kanguraerpadministracio/css/font-awesome/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-square:before,.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}