@charset "utf-8";
/* Style Sheet for Accounts */
/* Built by South Coast Web Design Ltd */

@import url('https://fonts.googleapis.com/css?family=Questrial');

/*********************************/
/* Default Styles
/*********************************/

* {
    margin:0;padding:0;outline:none;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    min-height:100%;
    font-size:1em;
    -webkit-font-smoothing: antialiased;
    outline:none;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}
/* Change This to change Main Background Colour or Image */
body {
    background:url(../images/layout/body-bg.png) rgb(255,255,255);
}
/* Change this to change whole page width */
.container-fluid {
    max-width:100%;
}
.btn-sm { margin-left:2px; }
/*********************************/
/*  All ways include with standard Layouts
/*********************************/

.resp_align_left { text-align:left; }
.resp_align_right { text-align:right; }
.align_center { text-align: center; }
.align_justify  { text-align:justify; }
.float_left { float:left; }
.float_right { float:right; }
.pad_left { padding-left: 8px;}
.pad_right { padding-right: 8px;}
.padit {padding-left: 8px; padding-right: 8px;}
.clear { clear:both; display:block; overflow:hidden; visibility:hidden; height:0px;}
.clear-left, .clear_left { clear:left; } .clear-right, .clear_right { clear:right; }
.hide  { display:none;  }
.block {display:block !important;}
.inline {display:inline !important;}

.bold {font-weight:600;}
.italic {font-style:italic;}
.white { color:#fff;}

a { color:#000;text-decoration:none;outline:none; }
a:hover, a:focus { color:#444;text-decoration:none;outline:none;}
a:active, a:visited { outline:none; }
h4.panel-title a { color: #fff; }
h4.panel-title a:hover { color: #eee; }

ul,li { list-style: none; margin:0px; padding:0px;}

/* ** ** Header Styles ** ** */
h1, h2, h3, h4, h5 {margin:0 0 0.5em; line-height:1.1em;font-weight: normal;}
h1 {    font-size:1.8em;}
h2 {    font-size:1.2em;}
h5 {    font-size:1.0em;}
h4 {    font-size:1.1em;}
h3 {    font-size:1.1em;}
h6 {    font-size:1.0em;}

strong          {   font-weight:600;}
em, dfn         {   font-style:italic;}
dfn             {   font-weight:600;}
sup, sub        {   line-height:0;}
abbr, acronym   {   border-bottom:1px dashed #ccc;}
address         {   margin:0 0 1.5em;font-style:italic;}
del             {   color:#666;}
pre, code, tt   {   font:1em 'andale mono', 'lucida console', monospace;line-height:1.5; display:block;}
code            {   background-color:#eee; display:inline; padding:0px 2px 1px 2px; line-height:1.1em;}
pre             {   margin:1.5em 0;white-space:pre;}

.nopadding { padding:0px;}
.nomargin { margin:0px;}

.img-thumbnail {
    width:auto !important;
    height:auto !important;
    max-height:160px;
    max-width:225px;
}

img { max-width:95%; margin:0px auto; }
li { margin:0px; padding:0px;}

.d-flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.align-items-center {
    -ms-align-items: center;
    align-items: center;
}
#logo {
    height: auto;
    max-width: 400px;
}

textarea {
  min-height:500px;
}
.transform {
  -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

/* Sticky Footer */
#wrapper {
    min-height: 100%;
    margin: 0 auto -155px; /* the bottom margin is the negative value of the footer's height */
}
#footer, .#push { height: 155px; /* '.push' must be the same height as 'footer' */ }
#wrapper {
    margin:auto;
    width:960px;
}.clear { clear: both; }

/* back to top */
#backTop {
    color: #fff;
    font-size: 20px;
    position: fixed;
    z-index: 99999;
    right: 1%;
    bottom: 1%;
    background: #000;
    width: 45px;
    height: 45px;
    text-align: center;
    padding-top: 5px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#backTop:hover {
    cursor: pointer;
    color: #2A7ADE;
}

/* messages */
#errorMsg {
    width:90%;
    margin:10px auto;
    border:1px solid rgba(255,0,0,1);
    padding:10px;
    font-size:0.8em;
    background:rgba(255,0,0,0.2);
}
#successMsg {
    width:90%;
    margin:10px auto;
    border:1px solid rgba(0,255,0,1);
    padding:10px;
    font-size:0.8em;
    background:rgba(0,255,0,0.2);
}

/* ajax submit message */
#infoHold {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0,0,0,0.5);
    display: none;
}
#infoMessage {
    max-width: 400px;
    height: auto;
    position: relative;
    z-index:1000;
    top: 50%;
    transform: translateY(-50%);
    padding:20px 35px;
    font-size:20px;
    color:#fff;
    background:rgba(0,0,0,0.8);
    margin:0px auto;
    border:3px solid rgba(255,255,255,1);
    border-radius:4px;
    text-align: center;
}

/* some jquery ui changes */
.ui-autocomplete {
    font-size:14px;
    max-height: 150px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
}
select.ui-datepicker-month,select.ui-datepicker-year {
    color:#000;
    font-weight:400;
}
.ui-widget-header { background: #3D86C5;border:1px solid #3D86C5;}
.ui-datepicker {
    padding:0px;
    font-size:12px;
}
select.ui-datepicker-month,select.ui-datepicker-year {
    color:#000;
    font-weight:400;
}
.ui-widget-header { background: #3D86C5;border:1px solid #3D86C5;}
.bootstrap-select.btn-group .dropdown-menu li > a {
    font-size:14px;
}
/* ============================== */
/* Image List Area
/* ============================== */

#imagesList {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.sortable-li-highlight {
    height:150px;
    width:200px;
    background:rgba(157,30,33,0.6);
    margin:5px;
    float:left;
}
.sortable-li {
    position:relative;
    z-index:10;
    width:200px;
    height:150px;
    margin:8px;
    float:left;
    text-align:center;
}
.sortable-li img{
    max-width:200px;
    max-height:150px;
    height:auto;
    width:auto;
    padding:4px;
    border:1px solid rgba(0,0,0,0.4);
    margin:3px;
}
.removeImage {
    position:absolute;
    z-index:20;
    top:-8px;
    right: -8px;
}

/*********************************/
/*  Header
/*********************************/
header {
    height:78px;
    padding:0px 0px;
    background:#fff;
    text-align:center;
    position:relative;
    z-index:999;
}
#navy-switch {
    position: fixed;
    top: -50px;
}
#sidemenu ul li ul li a i {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#sidemenu ul li ul li a i.fa-angle-right:before {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#sidemenu ul li ul li a:hover i {
    margin-right: 8px;
}
#sidemenu ul li ul li a:hover i.fa-angle-right:before {
    content:"\f101"
}
#sidemenu ul li ul li a.selectedMenu i.fa-angle-right:before {
    content:"\f101"
}

.breadcrumb {
    background: #eee;
    padding: 10px 20px;
    border-radius: 5px;
}
.pageTitle {
    background: #fff;
    padding: 10px 12px;
    margin-bottom: 10px;
}
.pageTitle h1 {
    display: inline;
}

/*********************************/
/* NAVBAR is within Themes area  */
/*********************************/

/*********************************/
/*  Pages
/*********************************/
#mainPage {
    position:relative;
    z-index:0;
    margin-left:290px;
    right:20px;
    top:15px;
}

/* =============================== */
/* Dashboard                       */
/* =============================== */

.panelWidget {
    padding:0px;
    border-radius: 2px;
    color: rgba(10,10,10,0.9) !important;
}
.panelWidget small {
  font-size: 12px;
}
.panelWidget .panel-footer {
  text-align: center;
  border: none;
  font-size: 13px;
}
.panel-footer a, .panel-footer i {
  color: #fff !important;
}
.green .panel-footer {
  background: #177B62;
}
.green { background:rgba(55,188,155,1); }
.green i, .green {
  color: #177B62;
}
.blue { background:rgba(93,156,236,1); }
.blue i, .blue {
  color: #305380;
}
.blue .panel-footer {
  background: #305380;
}
.red { background: #F46853; }
.red i, .red {
  color: #C35140;
}
.red .panel-footer {
  background: #C35140;
}
.purple { background: rgba(255,234,136,1);}
.yellow { background: rgba(255,234,136,1);}
.yellow i, .yellow {
  color: #A2903B;
}
.yellow .panel-footer {
  background: #A2903B;
}
.orange { background:rgba(255,129,83,1);}
.orange i, .orange {
  color: #AC5231;
}
.orange .panel-footer {
  background: #AC5231;
}

.results {
    font-size:2em;
    font-weight: bold;

}
.import-row {
  background: grey;
}

/* =============================== */
/* Accounts                        */
/* =============================== */
.panel-heading a {
  color:#fff;
}
.panel-heading a:hover {
  color:#ddd;
}
/* =============================== */
/* Pages                           */
/* =============================== */


/* =============================== */
/* Options                         */
/* =============================== */



/* =============================== */
/* Quick Add                       */
/* =============================== */



/* =============================== */
/* Catalogue                       */
/* =============================== */
/* Media Library */

/* Media Library */
.imageFolder {
    cursor: pointer;
}
.mediaHolder {
  position:relative;
  border:1px solid rgba(0,0,0,0.1);
  margin:2px 0px;
  padding:5px 0px;
  border-radius: 0px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  overflow:hidden;
}
.mediaHolder:hover {
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}
#mediaLibrary {
  overflow:auto;
}
.mediaButton .btn {
  width:110px;
}
.mediaItem img {
  max-height:150px;
}
.mediaItem {
  height : 170px;
}
.mediaItem .thumbnail {
  border-radius:0;
}
.mediaTitle {
  position:absolute;
  display:block;
  z-index:10;
  width:100%;
  padding:5px 10px !important;
  background:rgba(0,0,0,0.7);
  color:#fff;
  top:-100px;
  left:0;
  font-size:0.8em;
  text-align:center;
  line-height:1.1em;
}

.mediaHolder:hover > .mediaTitle {
  top:0;
}

#mediaLibrary {
  position:fixed;
  z-index:99999999999 !important;
  top:90px;
  bottom:10px;
  left:10px;
  right:10px;
  background:rgba(255,255,255,0.95);
  display:none;
  border:3px solid rgba(0,0,0,0.5);
}
#closeMedia {
  cursor:pointer;
  float:right;
  margin:5px;
  padding:5px;
  color:rgba(255,255,255,0.7);
  background:rgba(0,0,0,0.7);
  border-radius:25px;
  width:35px;
  height:35px;
  text-align:center;
  -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#closeMedia:hover {
  color:rgba(255,255,255,1);
  background:rgba(0,0,0,1);
}
.panel legend {
  font-size: 1.2em;
  margin-top:10px;
  margin-bottom:4px;
  font-weight: 600;
}
.panel label {
  margin-top:5px;
}
.appended .panel:hover {
  background: rgba(150,150,150,0.1)
}
.optionImageHolder {
  height:160px;
}
.colorpick {
  width:100% !important;
}
/* =============================== */
/* Reports                         */
/* =============================== */


/* =============================== */
/* Config                          */
/* =============================== */
/*
Back Up Feature Box
*/
.featurebox {
    padding: 9px 12px;
    margin: 8px auto !important;

    height: auto;
    max-width: 85%;

    box-shadow: 0 0.5px 0 0 #ffffff inset, 0 1px 2px 0 #B3B3B3;

    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.featurebox .btn {
    margin-bottom: 15px;
}
.featurebox:hover {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.46);
}
/* =============================== */
/* Logs                            */
/* =============================== */
.logwindow {
  font-size:12px;
  max-height:600px;
  overflow-y:auto;
  overflow-x:none;
}

/* =============================== */
/* Footer                          */
/* =============================== */

#copyright {
    font-size:0.7em;
    padding:4px 0px;
}

/* =============================== */
/* Plugins                         */
/* =============================== */

/* CSS Switch */
.container > .switch {
  display: block;
  margin: 12px auto;
}

.switch {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 56px;
  height: 20px;
  padding: 3px;
  background-color: white;
  border-radius: 18px;
  box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #eeeeee, white 25px);
  background-image: -moz-linear-gradient(top, #eeeeee, white 25px);
  background-image: -o-linear-gradient(top, #eeeeee, white 25px);
  background-image: linear-gradient(to bottom, #eeeeee, white 25px);
}

.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 10px;
  text-transform: uppercase;
  background: #eceeef;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transition-property: opacity background;
  -moz-transition-property: opacity background;
  -o-transition-property: opacity background;
  transition-property: opacity background;
}
.switch-label:before, .switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}
.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #aaa;
  text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}
.switch-label:after {
  content: attr(data-on);
  left: 11px;
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}
.switch-input:checked ~ .switch-label {
  background: #47a8d8;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
  opacity: 1;
}

.switch-handle {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  background-image: -webkit-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -moz-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -o-linear-gradient(top, white 40%, #f0f0f0);
  background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}
.switch-handle:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  background: #f9f9f9;
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
  background-image: -webkit-linear-gradient(top, #eeeeee, white);
  background-image: -moz-linear-gradient(top, #eeeeee, white);
  background-image: -o-linear-gradient(top, #eeeeee, white);
  background-image: linear-gradient(to bottom, #eeeeee, white);
}
.switch-input:checked ~ .switch-handle {
  left: 40px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

.switch-green > .switch-input:checked ~ .switch-label {
  background: #4fb845;
}

.blogSide {
  background:rgba(245,245,245,0.8);
  padding:10px 10px;
  margin:8px 0px;
  border-radius: 4px;
  border:1px solid rgb(200,200,200);
}
.blogSide legend {
  margin-bottom:10px;
}
/* =============================== */
/* Ajax Upload Plugin              */
/* =============================== */

.ajax-upload-dragdrop, .ajax-file-upload-statusbar {
    width: 100% !important;
}
.ajax-upload-dragdrop {
    margin-bottom: 24px;
}
.ajax-file-upload-statusbar {
    position: relative;
    left: -5px;
}
#status {
    margin-top: 24px;
}
.ajax-file-upload {
    background: #37BC9B !important;
    border-color: #34AE90 !important;
    padding: 8px 12px !important;
    width: 100% !important;
    max-width: 100px;
    height: auto !important;
}
.ajax-file-upload:hover {
    background: #23B591 !important;
}
.ajax-file-upload, .ajax-file-upload:after {
    display: inline-block !important;
}
.ajax-file-upload:after {
    display: inline-block !important;
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f055";
    float: right;
    margin-top: -17px !important;
}

.thumbnail_list {
    width:auto;
    height:auto;
    max-width:80px;
    max-height:80px;
    border:1px solid rgba(0,0,0,0.2);
    padding:2px;
}

/* =============================== */
/* Slider Page
/* =============================== */
.slideRow {
  border:1px solid grey;
  padding:5px;
  background:rgba(0,0,0,0.1);
  margin-bottom:3px;
}
.sortable-li-highlight-slide {
  width:100%;
  height:200px;
  background:rgba(157,30,33,0.6);
}
.slideLink {
  position:relative;
  z-index:999;
}

/* =============================== */
/* Site Styles Only                */
/* =============================== */

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

.modal-backdrop {
    display:none;
}
.modal {
    z-index:10;
    background:rgba(0,0,0,0.3);
}
.modal-content {
    top:100px;
}
/* =============================== */
/* Responsive Stuff                */
/* =============================== */

@media (max-width: 1200px){
    body,html {
      font-size:0.9em;
    }
    #navbar-sidebar {
        position:fixed;
        z-index:999;
        left:-270px;
    }
    #navy-switch {
        position:fixed;
        top:15px;
        right:10px;
        z-index:9999;
    }
    #detailsmenu {
      display:none;
    }
    #mainPage {
        position:relative;
        z-index:1;
        margin-left:40px;
    }

}

@media (max-width: 951px){
    #navy-switch {
        position:fixed;
        top:15px;
        right:10px;
        z-index:9999;
    }
    /* SUpport System */
    .support-admin-right,.support-left {
        border-radius: 10px 10px 0px 0px;
    }
    .support-right {
        border-radius: 0px 0px 10px 10px;
        border: 1px solid rgba(205,205,207,0.7);
    }
    .support-admin-left {
        border-radius: 0px 0px 10px 10px;
        border: 1px solid rgba(157,30,33,0.4);
    }
}

@media (max-width: 801px){
    body,html {
        font-size:0.9em;
    }
    .mainWidget {
        text-align:center;
    }
    .mainWidget,.leftWidget,.rightWidget {
        height:60px;
    }

}

@media (max-width: 550px) {

}

@media (max-width: 350px){
    #logo {
        max-width:150px;
        margin-top:-10px;
    }
    #pushdown {
        height:25px;
    }
    #navbar {
        height:70px;
    }
    #navy-switch {
        position:fixed;
        top:30px;
        right:10px;
        z-index:9999;
    }
}


