/* ///////////////////////////////////////////////////////////////////////
/// GENERAL 
/////////////////////////////////////////////////////////////////////// */

/* helpers for Bootstrap */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4em;
    color: #444;
    text-align: left;
    background-color: #f1f1f1;
}

.gplugin a.link-theme {
    color: #4336ff;
}
.gplugin a.link-theme:hover {
    color: #4336ff;
    text-decoration: underline;
}
.gplugin a.text-underline {
    text-decoration: underline;
}

/* Remove the Gutter Padding from Columns */
.gplugin .no-gutter {
    margin-right: 0;
    margin-left: 0;
}
.gplugin .no-gutter > [class*='col-'] {
    padding-right: 0;
    padding-left: 0;
}
.gplugin .half-gutter {
    margin-right: -7.5px;
    margin-left: -7.5px;
}
.gplugin .half-gutter > [class*='col-'] {
    padding-right: 7.5px;
    padding-left: 7.5px;
}

/* borders */
.gplugin .bordered {border: 1px solid #ccc;}
.gplugin .bordered-theme {border: 1px solid #4336ff;}
.gplugin .dotted {border: 2px dotted #ccc;}

/* margins */
.gplugin .no-margin {
    margin: 0;
}
.gplugin .mb10 {
    margin-bottom: 10px !important;
}
.gplugin .mb15 {
    margin-bottom: 15px !important;
}
.gplugin .mb20 {
    margin-bottom: 20px !important;
}
.gplugin .mt10 {
    margin-top: 10px !important;
}
.gplugin .mt15 {
    margin-top: 15px !important;
}
.gplugin .mt20 {
    margin-top: 20px !important;
}
/* paddings */
.gplugin .padded {padding: 15px;}
.gplugin .padded20 {padding: 20px;}
.gplugin .padded25 {padding: 25px;}
.gplugin .padded30 {padding: 30px;}

/* table */
.gplugin .table-hidden,
.gplugin .table-hidden th,
.gplugin .table-hidden td {
    border: 0 none;
    padding: 0;
}
/* centered grid */
.gplugin .centered-grid {
    display: grid;
    width: 100%;
    height: 100%;
    align-content: center;
    justify-content: center;
    text-align: center;
}

/* text sizes */
.gplugin .text-lg {font-size: 21px;}
.gplugin .text-md {font-size: 16px;}
.gplugin .text-sm {font-size: 13px;}
.gplugin .text-xs {font-size: 11px;}


/* form elements */
.gplugin .form-control {
    padding: 2px 6px;
    border: 1px solid #ddd;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.07);
    background-color: #fff;
    color: #32373c;
    transition: 50ms border-color ease-in-out;
    border-radius: 0;
}
.gplugin .form-control:focus {
    border-color: #4336ff;
    box-shadow: 0 0 2px rgba(30,140,190,.8);
    outline: 2px solid transparent;
}
.gplugin .form-control-sm {
    font-size: 0.78rem;
}
.gplugin .form-control.no-resize {
    resize: none;
}
.gplugin .form-group label {
    font-weight: 600;
}
.gplugin .form-group label span.help {
    font-weight: 400;
    color: #999;
    font-size: 12px;
    font-style: italic;
    margin-left: 5px;
}
.gplugin textarea.form-control {
    min-height: 100px;
}

/* background colors */
.gplugin .bg-theme {
    background-color: #4336ff;
}
.gplugin .bg-white {
    background-color: #ffffff;
}
.gplugin .bg-gray {
    background-color: #f1f1f1;
}
.gplugin .bg-light-gray {
    background-color: #f9f9f9;
}
.gplugin .bg-dark-gray {
    background-color: #23282d;
}

/* text colors */
.gplugin .text-theme {
    color: #4336ff;
}
.gplugin .text-white {
    color: #ffffff;
}
.gplugin .text-gray {
    color: #777;
}
.gplugin .text-light-gray {
    color: #cccccc;
}
.gplugin .text-dark-gray {
    color: #23282d;
}

/* buttons */
.gplugin .btn {
    border-radius: 3px;
    display: inline-block;
    width: -moz-max-content;
    width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: -webkit-max-content;
    min-width: 110px;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
    padding: 0.25rem 0.8rem
}
.gplugin .btn:hover {
    box-shadow: 4px 4px 4px 2px rgba(0,0,0,0.2);
}
.gplugin .btn-block {
    width: 100%;
    max-width: 100%;
}


.gplugin .btn-theme {
    background: #4336ff;
    border-color: #4336ff;
    color: #fff;
}
.gplugin .btn-theme:hover {
    background: #4438ec;
    border-color: #4438ec;
    color: #fff;
}


.gplugin .strong,
.gplugin .text-strong {
    font-weight: 600;
}

/* badges */
.gplugin .badge {
    line-height: 1;
    padding: 2px 6px 3px;
    font-size: 85%;
    border-radius: 3px;
    position: relative;
    top: -1px;
}
.gplugin .badge-light-gray {
    border: 1px solid #ddd;
    background-color: #fff;
    color: #999;
}
.gplugin .badge-theme {
    border: 1px solid #4336ff;
    background-color: #4336ff;
    color: #fff;
}
.gplugin .badge-light-theme {
    border: 1px solid #4336ff;
    background-color: #fff;
    color: #4336ff;
}

/* ///////////////////////////////////////////////////////////////////////
/// STYLES
/////////////////////////////////////////////////////////////////////// */


/* content */
.gplugin .gp-admin-content {
    padding-right: 20px;
}

/* card */
.gplugin .card {
    width: 100%;
    max-width: unset;
    border-radius: 0;
    padding: 20px;
    margin-top: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.gplugin .card-title {
    font-size: 18px;
    box-sizing: border-box;
    width: 100%;
    font-weight: 600;
    margin: 0 0 20px;
}

.gplugin .card-toggle {
    padding-bottom: 0;
}
.gplugin .card-toggle a.toggle-btn,
.gplugin .card-toggle a.toggle-btn:active,
.gplugin .card-toggle a.toggle-btn:focus {
    color: #444;
    outline: none;
    text-decoration: none;
    box-shadow: none;
}
.gplugin .card-toggle a.toggle-btn:hover {
	color: #4336ff;
}
.gplugin .card-toggle .collapse.show {
    margin-bottom: 20px;
}
.gplugin .card-toggle .card-title .dashicons {
    position: relative;
    top: 2px;
}
.gplugin .card-toggle .card-title .toggle-btn[aria-expanded=true] .dashicons:before {
    content: "\f343";
}

.gplugin .shadow-min {
   box-shadow: 0 0.3rem 0.5rem rgba(0,0,0,0.15) !important;
}

.gplugin .postbox .inside h2, 
.gplugin.wrap [class$="icon32"] + h2, 
.gplugin.wrap h1, 
.gplugin.wrap > h2:first-child,
.gplugin #gp-admin-title {
    font-size: 23px;
    font-weight: 400;
    margin: 0;
    padding: 9px 0 9px 0;
    line-height: 29px;
}

.gplugin #gp-admin-title span {
    font-weight: 300;
    color: #777;
}
.campstat table thead {
    font-weight: 600; padding-bottom: 15px;
}
.last-upd { padding-left: 14px; color: #AAAAAA; font-weight: 300; font-size: 12px; }

/* sidebar */
.gplugin .gp-admin-sidebar {}
.gplugin .gp-admin-sidebar-title {
    font-size: 16px;
    box-sizing: border-box;
    width: 100%;
    margin: 5px 0 15px;
    padding: 10px 0;
    border-bottom: 1px solid #4336ff;
}
.gplugin .gp-admin-sidebar-section {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.gplugin .gp-admin-sidebar-section.card {
    border-bottom: 0 none;
    padding: 15px;
    margin-bottom: 10px;
    margin-top: 20px;
}
.gplugin .gp-admin-sidebar-section-title {
    font-size: 18px;
    box-sizing: border-box;
    width: 100%;
    font-weight: 600;
}
.gplugin .gp-admin-sidebar-section ul {
    margin-bottom: 0;
}

.gplugin .gp-admin-sidebar-article {
    display: table;
}
.gplugin .gp-admin-sidebar-article-img {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    width: 30px;
    height: 30px;
    overflow: hidden;
}
.gplugin .gp-admin-sidebar-article-img img {
    transform: scale(1.4);
    border: 1px solid #ddd;
}
.gplugin .gp-admin-sidebar-article-title {
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
    line-height: 1.2;
    position: relative;
    top: -2px;
    text-decoration: underline;
}

/* sidebar profile */
.gplugin .gp-admin-profile {
    display: table;
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}   
.gplugin .gp-admin-profile .avatar-img {
    display: table-cell;
    width: 20%;
    overflow: hidden;
    vertical-align: middle;
}
.gplugin .gp-admin-profile .avatar-img img {
    transform: scale(1.2);
}
.gplugin .gp-admin-profile .profile-data {
    display: table-cell;
    width: auto;
    padding-left: 10px;
    vertical-align: middle;
}
.gplugin .gp-admin-profile .profile-data .profile-name {
    margin: 0;
    font-weight: 600;
}
.gplugin .gp-admin-profile .profile-data .profile-meta {
    margin: 0;
    color: #999;
    font-size: 11px;
}

.gplugin .gp-admin-profile-stats .table td {
    padding-bottom: 5px;
}

.gplugin .gp-admin-profile-status {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* progressbar */
.gplugin .gp-admin-progressbar {
  margin: 15px 0 0;
  padding: 0;
  counter-reset: step;
  position: relative;
  z-index: 1;
}
.gplugin .gp-admin-progressbar li {
  list-style-type: none;
  width: calc(100% / 3);
  float: left;
  font-size: 11px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #ccc;

}
.gplugin .gp-admin-progressbar li:before {
  width: 25px;
  height: 25px;
  content: counter(step);
  counter-increment: step;
  line-height: 21px;
  border: 2px solid #ccc;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: #fff;

}
.gplugin .gp-admin-progressbar li:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #ccc;
  top: 12px;
  left: -50%;
  z-index: -1;
}
.gplugin .gp-admin-progressbar li:first-child:after {
  content: none;
}
.gplugin .gp-admin-progressbar li.active {
  color: #28a745;
}
.gplugin .gp-admin-progressbar li.active:before {
  border-color: #28a745;
}
.gplugin .gp-admin-progressbar li.active + li:after {
  background-color: #28a745;
}

.gplugin .gp-admin-progressbar li:first-child {
    text-align: left;
}
.gplugin .gp-admin-progressbar li:last-child {
    text-align: right;
}
.gplugin .gp-admin-progressbar li:first-child:before {
    margin: 0 auto 10px 0;
}
.gplugin .gp-admin-progressbar li:last-child:before {
    margin: 0 0 10px auto;
}


/* tabs */
.gplugin .gp-admin-tabs {
    margin-top: 9px;
    border-bottom: 1px solid #ccc;
}
.gplugin .gp-admin-tabs .nav-item {
    margin: 0 8px -1px 0;
}
.gplugin .gp-admin-tabs .nav-link {
    border-radius: 0;
    background-color: #e5e5e5;
    color: #555;
    border-color: #ccc;
    font-size: 14px;
    font-weight: 600;
}
.gplugin .gp-admin-tabs .nav-link:hover {
    background-color: #fff;
    color: #555;
    border-color: #ccc;
}
.gplugin .gp-admin-tabs .nav-link:focus {
    box-shadow: none;
    outline: none;
}
.gplugin .gp-admin-tabs .nav-item.show .nav-link, 
.gplugin .gp-admin-tabs .nav-link.active {
    color: #000;
    background-color: #f1f1f1;
    border-color: #ccc #ccc #f1f1f1;

}
.gplugin .gp-admin-tab-content {
    margin-top: 20px;
}


/* gp-admin-status */
.gplugin .gp-admin-status td {
    padding-bottom: 5px;
}
.gplugin .gp-admin-status-msg {
    border-left: 1px solid #ccc;
}

/* dashicon sizes */
.gplugin .dashicons {line-height: 20px;}
.gplugin .dashicons.md14 {font-size: 14px;}
.gplugin .dashicons.md15 {font-size: 15px;}
.gplugin .dashicons.md16 {font-size: 16px;}
.gplugin .dashicons.md17 {font-size: 17px;}
.gplugin .dashicons.md18 {font-size: 18px;}
.gplugin .dashicons.md19 {font-size: 19px;}
.gplugin .dashicons.md20 {font-size: 20px;}
.gplugin .dashicons.md25 {font-size: 25px;}
.gplugin .dashicons.md30 {font-size: 30px;}

.gplugin .dashicons-bull:before {
    content: '\2219';
    font-size: 1.3rem;
    position: relative;
    left: -5px;
    top: -5px;
    line-height: 19px;
}

.gplugin .btn .dashicons {
    position: relative;
    top: 3px;
}


/* alerts */
.gplugin .alert-danger {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
}
.gplugin .alert-warning {
    background-color: #e67e22;
    border-color: #e67e22;
    color: #fff;
}
.gplugin .alert-info {
    background-color: #3498db;
    border-color: #3498db;
    color: #fff;
}
.gplugin .alert-success {
    background-color: #1abc9c;
    border-color: #1abc9c;
    color: #fff;
}
.gplugin .alert-gray {
    background-color: #d3dbe2;
    border-color: #d3dbe2;
    color: #72879a;
    font-size: 16px;
}

/* alert sizes */
.gplugin .alert-md {
    padding: 8px 14px;
}
.gplugin .alert-sm {
    padding: 5px 10px;
    font-size: 13px;
}
.gplugin .alert-xs {
    padding: 4px 5px 3px;
    font-size: 11px;
    border-radius: 3px;
    line-height: 11px;
}

/* alert text */
.gplugin .text-danger {
    color: #e74c3c;
}
.gplugin .text-warning {
    color: #e67e22;
}
.gplugin .text-info {
    color: #3498db;
}
.gplugin .text-success {
    color: #1abc9c;
}

/* list display */
.gplugin ul.list-display {
    display: block;
    list-style-type: disc;
    padding-inline-start: 25px;
    margin-left: 0;
}
.gplugin ol.list-display {
    display: block;
    list-style-type: decimal;
    padding-inline-start: 25px;
    margin-left: 0;
}
.gplugin ul.list-display li,
.gplugin ol.list-display li {
    padding-inline-start: 5px;
}

/* blockquote */
.gplugin blockquote  {
    border-left: 4px solid #ccc;
    padding-left: 10px;
    color: #999;
    line-height: 1.5;
    font-style: italic;
}

/* flat alert */
.gplugin .alert {border-radius:0;}


/* extensions field box */
.gplugin .gp-admin-extensions-field-box {
    position: relative;
}
.gplugin .gp-admin-extensions-field-box .remove {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 0px 2px 6px;
    color: #999;
    font-size: 28px;
    line-height: 0.6;
    background: transparent;
    border: 0 none;
    cursor: pointer;
    outline: 0;
}
.gplugin .gp-admin-extensions-field-box .remove:hover {
    color: #333;
}
.gplugin .gp-admin-extensions-field-box.add-new {
   cursor: pointer;
   color: #999;
   padding: 30px;
   transition-property: border,background,color;
   transition-duration: .05s;
   transition-timing-function: ease-in-out;
}
.gplugin .gp-admin-extensions-field-box.add-new:hover {
    color: #4336ff;
    border-color: #4336ff;
}
.gplugin .gp-admin-extensions-field-box.add-new .dashicons {
    margin: 0 auto 5px;
    color: #bbb;
}
.gplugin .gp-admin-extensions-field-box.add-new:hover .dashicons {
    color: #4336ff;
}


/* creative logo */
.gplugin .gp-admin-creative-logo img {
	border: 1px solid #ddd !important;
}


/* input group */
.gplugin .input-group-text {
    background: transparent;
    border-color: transparent;
}
.gplugin .input-group .input-group-prepend:first-child .input-group-text {
    padding-left: 0;
    padding-right: 15px;
}
.gplugin .input-group .form-control {
    border-radius: 0;
}

/* btn light */
.gplugin .btn-light {
    box-shadow: none;
    background-color: #fff;
    border-color: #ccc;
    color: #777;
}
.gplugin .btn-light:hover {
    box-shadow: none;
    background-color: #fff;
    border-color: #4336ff;
    color: #4336ff;
}
.gplugin .btn-light:not(:disabled):not(.disabled):active, 
.gplugin .btn-light:not(:disabled):not(.disabled).active, 
.show > .gplugin .btn-light.dropdown-toggle,
.gplugin .btn-light.active {
    background-color: #fff;
    border-color: #4336ff;
    color: #4336ff;
}

/* btn group separate */
.gplugin .btn-group-separate .btn {
    min-width: auto;
}

/* table hover */
.gplugin .table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.025);
}

/* total result */
.gplugin .total-result-data {
    font-size: 14px;
    color: #333;
    margin: 0;
}
.gplugin .total-result-data .amount {
    display: block;
    margin-top: 10px;
    font-size: 24px;
    font-weight: 600;
}
.gplugin .total-result-data .amount i {
    font-size: 19px;
    color: #999;
    font-style: normal;
    font-weight: 400;
}


/* ///////////////////////////////////////////////////////////////////////
/// DEVICES
/////////////////////////////////////////////////////////////////////// */


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
    .campstat {
        border-left: 1px solid #ccc;
    }
    
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}



/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

}

