/*
 Theme Name:   LethalPanda Refreshed
 Theme URI:    https://lethalpanda.com
 Description:  Twenty Twelve Child Theme
 Author:       Cancellation
 Author URI:   https://lethalpanda.com
 Template:     twentytwelve
 Version:      1.0.9.644
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  twentytwelvechild
*/
:root {
    --panda-primary: #003871;
    --success: #60c060;
    /* etc. 
	background: var(--panda-primary); */
}
/* ===============================================
Snippet: TablePress Central.
 Source: Self.
================================================== */
.entry-content img, .comment-content img, .widget img, img.header-image, .author-avatar img, img.wp-post-image {
	border-radius: 0;
	box-shadow: none;
}
/* Give the icon column enough fixed space */
.tablepress-id-10 .column-1 {
	min-width: 180px !important; /* Room for 165px icon + padding */
	width: 180px !important;
	text-align: center !important;
	vertical-align: middle !important;
}
/* Override the core responsive rule just for icons in this column */
.tablepress-id-10 .column-1 img {
	max-width: none !important;
	width: 165px !important;
	height: 24px !important;
	box-shadow: none; /* Already have this, but keeps it explicit */
}
/* ===============================================
Snippet: Using border-bottom (Better for design consistency)
 Source: Self
================================================== */
.entry-header .entry-title {
    font-size: 20px;
    font-size: 1.428571429rem;
    line-height: 1.2;
    font-weight: normal;
    border-bottom: 2px solid #333; /* Solid line with dark color */
    padding-bottom: 5px; /* Add some space between title and line */
}

.entry-header .entry-title a {
    text-decoration: none; /* Ensure the link doesn't have the default underline */
}
/* ===============================================
Snippet: Override Knowledge Base base CSS
 Source: Self
================================================== */
.wzkb-section-name-level-1 { 
    border-bottom: 2px solid #003871; /* Use the deep blue for the borders */
    border-top: 2px solid #003871;
    padding: 10px 20px; /* Slightly adjusted padding for balance */
    background-color: #f4f7fb; /* Light background color for contrast */
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1rem; /* Slightly smaller font size for a cleaner look */
    font-weight: bold;
    color: #003871; /* Match the text color to the deep blue */
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Keep the subtle shadow */
    border-radius: 5px;
}
.wzkb-section-name-level-1:hover {
    background-color: #e2f0d9; /* Light greenish hover effect (contrast with blue) */
    cursor: pointer;
}
.wzkb-section-count {
    display: inline-flex; /* Changed to inline-flex for better centering */
    justify-content: center; /* Centering the text horizontally */
    align-items: center; /* Centering the text vertically */
    margin: 0;
    padding: 5px 10px; /* Adjusted padding */
    background-color: #003871; /* Deep blue background */
    color: white !important; /* White text */
    border-radius: 10%; /* Fully round */
    text-align: center;
    font-size: 1rem; /* Font size */
    min-width: 36px; /* Minimum width for consistency */
    height: 36px; /* Ensuring it's a perfect circle */
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
.wzkb-section-count:hover {
    background-color: #00285d; /* Darker blue on hover */
    cursor: pointer;
}
/* Style the breadcrumb container with a grey background */
.wzkb-breadcrumb-list {
    list-style: none; /* Remove default list styling */
    padding: 10px 20px; /* Add padding around the breadcrumb */
    margin: 0;
    display: flex; /* Flex layout for horizontal alignment */
    align-items: center; /* Vertically center the items */
    font-size: 1rem; /* Set the font size */
    color: #333; /* Dark text color */
    background-color: #f5f5f5; /* Light grey background */
    border-radius: 5px; /* Optional rounded corners */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

/* Style each breadcrumb item */
.wzkb-breadcrumb-item {
    display: flex; /* Flex layout for the item */
    align-items: center; /* Vertically center the text */
    margin-right: 10px; /* Space between items */
}

.wzkb-breadcrumb-item:last-child {
    color: #003871; /* Highlight the last item with the deep blue color */
}

/* Style the separator (the " | " between items) */
.wzkb-breadcrumb-item[data-separator] {
    color: #666; /* Lighter color for the separator */
    margin: 0 10px;
}

/* Make the links stand out */
.wzkb-breadcrumb-item a {
    text-decoration: none; /* Remove underline */
    color: #003871; /* Match the deep blue color */
    font-weight: 600; /* Make the text slightly bold */
}

/* Change link color on hover */
.wzkb-breadcrumb-item a:hover {
    color: #0056b3; /* Slightly lighter blue on hover */
}

/* Optional: style for the current page */
.wzkb-breadcrumb-item span {
    color: #003871; /* Keep the current page title in deep blue */
    font-weight: 600;
}

/* ===============================================
Snippet: Override Posts Like Dislike By Happy Coders
 Source: Self
================================================== */
/* Full-width background behind the thumbs up/down section */
.pld-like-dislike-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    background: #f0f0f0; /* Light grey background */
    padding: 20px 0; /* Add padding around */
    border-radius: 8px; /* Optional: rounded corners */
    width: 100%;
}

/* Adding the "Was this helpful?" text */
.pld-like-dislike-wrap::before {
    content: "Was this helpful?";
    font-size: 18px;
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 20px; /* Increased margin for more space */
    margin-top: 5px; /* Added space on top to lower it a bit */
    text-align: center;
}

/* Adjust button spacing */
.pld-common-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Styling the thumbs-up and thumbs-down buttons */
.pld-like-dislike-trigger {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #444;
    transition: all 0.2s ease;
    text-decoration: none;
}

/* Hover effect */
.pld-like-trigger:hover {
    background: #e6f4ea;
    border-color: #a7d7b5;
    color: #2e7d32;
}

.pld-dislike-trigger:hover {
    background: #fdeeee;
    border-color: #e3b1b1;
    color: #c62828;
}

/* Active state (when clicked) */
.pld-like-dislike-trigger.pld-already-liked {
    background: #e6f4ea;
    border-color: #9cccaa;
    color: #2e7d32;
    pointer-events: none;
}

/* Adjusting count styling */
.pld-count-wrap {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    min-width: 20px;
    text-align: center;
}

/* Mobile / Tablet adjustments */
@media (max-width: 768px) {
    /* Adjust button sizes for smaller screens */
    .pld-like-dislike-trigger {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .pld-like-dislike-wrap {
        padding: 16px 0; /* Add a little padding for mobile view */
    }
}

/* ===============================================
Snippet: Icon Colours.
 Source: https://fontawesome.com
================================================== */
.fa-circle-xmark {
    color: #FF0000;
}
.fa-circle-check {
    color: #008000;
}
.fa-circle-exclamation {
    color: #FFA500;
}
/* ===============================================
Snippet: Tablepress overrides
 Source: https://wordpress.org/plugins/tablepress
================================================== */
.tablepress, .tablepress table {
    font-size:14px !important;
}
.tablepress tfoot th, .tablepress thead th {
    background-color: #003871 !important;
    color: #FFFFF0;
}
#panda-boxes .close {
	float: right;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: .2
}
#panda-boxes .close:hover, #panda-boxes .close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	opacity: .5
}
#panda-boxes button.close {
	padding: 0;
	cursor: pointer;
	background: transparent;
	border: 0;
}
#panda-boxes .alert {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px
}
#panda-boxes .alert .align-left {
    text-align: left !important;
}
#panda-boxes .alert .align-center {
    text-align: center !important;
}
#panda-boxes .alert .align-right {
    text-align: right !important;
}
#panda-boxes .alert h4 {
	margin-top: 0;
	color: inherit
}
#panda-boxes .alert .alert-link {
	font-weight: 700
}
#panda-boxes .alert>p, #panda-boxes .alert>ul {
	margin-bottom: 0
}
#panda-boxes .alert>p+p {
	margin-top: 5px
}
#panda-boxes .alert-dismissable {
	padding-right: 35px
}
#panda-boxes .alert-dismissable .close {
	position: relative;
	top: -2px;
	right: -21px;
	color: inherit
}
#panda-boxes .alert-success {
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: #3c763d
}
#panda-boxes .alert-success hr {
	border-top-color: #c9e2b3
}
#panda-boxes .alert-success .alert-link {
	color: #2b542c
}
#panda-boxes .alert-info {
	background-color: #d9edf7;
	border-color: #bce8f1;
	color: #31708f
}
#panda-boxes .alert-info hr {
	border-top-color: #a6e1ec
}
#panda-boxes .alert-info .alert-link {
	color: #245269
}

#panda-boxes .alert-general .alert-link {
	color: #393939;
}

#panda-boxes .alert-warning {
	background-color: #fcf8e3;
	border-color: #faebcc;
	color: #8a6d3b
}
#panda-boxes .alert-warning hr {
	border-top-color: #f7e1b5
}
#panda-boxes .alert-warning .alert-link {
	color: #66512c
}
#panda-boxes .alert-danger {
	background-color: #f2dede;
	border-color: #ebccd1;
	color: #a94442
}
#panda-boxes .alert-danger hr {
	border-top-color: #e4b9c0
}
#panda-boxes .alert-danger .alert-link {
	color: #843534
}
#panda-boxes .alert {
	border-radius: 0;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .11)
}
#panda-boxes .alert .sign {
	font-size: 20px;
	vertical-align: middle;
	margin-right: 5px;
	text-align: center;
	width: 25px;
	display: inline-block
}
#panda-boxes .alert-success {
	background-color: #dbf6d3;
	border-color: #aed4a5;
	color: #569745
}
#panda-boxes .alert-info {
	background-color: #d9edf7;
	border-color: #98cce6;
	color: #3a87ad
}
#panda-boxes .alert-warning {
	background-color: #fcf8e3;
	border-color: #f1daab;
	color: #c09853
}
#panda-boxes .alert-danger {
	background-color: #f2dede;
	border-color: #e0b1b8;
	color: #b94a48
}
#panda-boxes .alert-white {
	background-image: linear-gradient(to bottom, #FFFFFF, #F9F9F9);
	border-top-color: #d8d8d8;
	border-bottom-color: #bdbdbd;
	border-left-color: #cacaca;
	border-right-color: #cacaca;
	color: #404040;
	padding-left: 61px;
	position: relative
}
#panda-boxes .alert-white .icon {
	text-align: center;
	width: 45px;
	height: 100%;
	position: absolute;
	top: -1px;
	left: -1px;
	border: 1px solid #bdbdbd
}
#panda-boxes .alert-white .icon:after {
	transform: rotate(45deg); /* Modern syntax */
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	border: 1px solid #bdbdbd;
	position: absolute;
	border-left: 0;
	border-bottom: 0;
	top: 50%;
	right: -6px;
	margin-top: -5px;
	background: #fff
}
#panda-boxes .alert-white.rounded {
	border-radius: 3px;
	-webkit-border-radius: 3px
}
#panda-boxes .alert-white.rounded .icon {
	border-radius: 3px 0 0 3px;
	-webkit-border-radius: 3px 0 0 3px
}
#panda-boxes .alert-white .icon i {
	font-size: 20px;
	color: #FFF;
	left: 12px;
	margin-top: -10px;
	position: absolute;
	top: 50%
}
#panda-boxes .alert-white.alert-danger .icon, #panda-boxes .alert-white.alert-danger .icon:after {
	border-color: #ca452e;
	background: #da4932
}
#panda-boxes .alert-white.alert-info .icon, #panda-boxes .alert-white.alert-info .icon:after {
	border-color: #3a8ace;
	background: #4d90fd
}
#panda-boxes .alert-white.alert-warning .icon, #panda-boxes .alert-white.alert-warning .icon:after {
	border-color: #d68000;
	background: #fc9700
}
#panda-boxes .alert-white.alert-success .icon, #panda-boxes .alert-white.alert-success .icon:after {
	border-color: #54a754;
	background: #60c060
}
#panda-boxes .alert-white.alert-general .icon, #panda-boxes .alert-white.alert-general .icon:after {
	border-color: #003871;
	background: #003871;
}

a {
    text-decoration: none;
}

legend {
 padding-bottom: 9px;
 margin: 40px 0 20px;
 border-bottom: 1px solid #eee;
 font-size: 25px;
 margin-top: 0;
 font-family: inherit;
 font-weight: 500;
 line-height: 1.1;
 color: inherit;
 width: 100%;
}

/* http://bootsnipp.com/snippets/d0VDj */
.error-notice {
margin-bottom: 10px;
}

.oaerror {
/* width: 100%; */
 margin: 5px;
 background-color: #FFFFFF;
 padding: 20px;
 border: 1px solid #eee;
 border-left-width: 5px;
 border-radius: 3px;
 font-family: 'Open Sans', sans-serif;
 font-size: 16px;
 margin-bottom: 40px;
}

.danger {
border-left-color: #d9534f; /* Left side border color */
background-color: rgba(217,83,79,0.1); /* Same color as the left border with reduced alpha to 0.1 */
}

.danger strong {
 color: #d9534f;
}


.warning {
 border-left-color: #f0ad4e;
 background-color: rgba(240,173,78,0.1);
}

.warning strong {
 color: #f0ad4e;
}

.info {
 border-left-color: #5bc0de;
 background-color: rgba(91,192,222,0.1);
}

.info strong {
 color: #5bc0de;
}

.success {
 border-left-color: #2b542c;
 background-color: rgba(43,84,44,0.1);
}
.success strong {
 color: #2b542c;
}

.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;
}

/* http://bootsnipp.com/snippets/M2Rxl */

.snippet {
 background: #fefefe;
 color: #666666;
 font-size: small;
 padding: 12px;
 padding-left: 16px;
 border-top: solid 3px #CCCCCC;
 border-radius: 5px;
 margin-bottom: 10px;
 -webkit-box-shadow: 0 10px 10px -5px rgba(0,0,0,.08);
 -moz-box-shadow: 0 10px 10px -5px rgba(0,0,0,.08);
 box-shadow: 0 10px 10px -5px rgba(0,0,0,.08);
}

.snippet a {
 text-decoration: none;
}
.snippet a:hover {
 color: #1fa67a;
 text-decoration: none;
}

.snippet-clear {
 border-color: #fefefe;
 -webkit-box-shadow: 0 7px 10px -5px rgba(0,0,0,.15);
 -moz-box-shadow: 0 7px 10px -5px rgba(0,0,0,.15);
 box-shadow: 0 7px 10px -5px rgba(0,0,0,.15);
}

.snippet-align {
 text-align: center;
}
.snippet-info {
 border-color: #b8dbf2;
}
.snippet-success {
 border-color: #1fa67a;
}
.snippet-warning {
 border-color: rgba(255,165,0,.5);
}
.snippet-danger {
 border-color: #ec8282;
}
.snippet-primary {
 border-color: #9ca6f1;
}
.snippet-magick {
 border-color: #e0b8f2;
}
.snippet-info-text {
 color: #39b3d7;
}
.snippet-success-text {
 color: #80d651;
}
.snippet-warning-text {
 color: #db9e34;
}
.snippet-danger-text {
 color: #c9302c;
}
.snippet-primary-text {
 color: rgba(47,106,215,.9);
}
.snippet-magick-text {
 color: #bb39d7;
}

/** The Magic **/

.wzkb_breadcrumb {
 padding: 15px;
 margin-bottom: 20px;
 list-style: none;
 background-color: #f5f5f5;
 border-radius: 4px;
 max-width: 98%;
}
.wzkb_breadcrumb > li {
 display: inline-block;
}

.wzkb_breadcrumb > li + li:before {
 padding: 0 5px;
 color: #ccc;
 content: "/\00a0";
}
.wzkb_breadcrumb > .active {
 color: #777;
}

/** Snip Notices (Thanks Fortael - http://bootsnipp.com/snippets/qAdNQ) **/
.snip-notice {
 padding: 15px;
 background-color: #fafafa;
 border-left: 5px solid #7f7f84;
 border-right: 5px solid #7f7f84;
 margin-bottom: 10px;
 -webkit-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
 -moz-box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
 box-shadow: 0 5px 8px -6px rgba(0,0,0,.2);
}

.snip-notice-sm {
 padding: 10px;
 font-size: 80%;
}
.snip-notice-lg {
 padding: 35px;
 font-size: large;
}
.snip-notice-success {
 border-color: #80D651;
}
.snip-notice-success>strong {
 color: #80D651;
}
.snip-notice-info {
 border-color: #45ABCD;
}

.snip-notice-info>strong {
 color: #45ABCD;
}
.snip-notice-warning {
 border-color: #FEAF20;
}
.snip-notice-warning>strong {
 color: #FEAF20;
}
.snip-notice-danger {
 border-color: #d73814;
}

.snip-notice-danger>strong {
 color: #d73814;
}

/** SNIP OVERRIDE (GREEN) **/
.snip-override {
background-color: #4caf50;
border: none;
color:#fff;
border-radius: 4px;
 text-align: center;
}

/** PLAN BTNS **/
.plan-btn {
 display: inline-block;
 padding: 6px 12px;
 margin-bottom: 0;
 font-size: 14px;
 font-weight: normal;
 line-height: 1.42857143;
 text-align: center;
 white-space: nowrap;
 vertical-align: middle;
 cursor: pointer;
 background-image: none;
 border: 1px solid transparent;
 border-radius: 4px;
}

.plan-btn:focus, .plan-btn:active:focus, .plan-btn.active:focus, .plan-btn.focus, .plan-btn:active.focus, .plan-btn.active.focus {
 outline: thin dotted;
 outline: 5px auto -webkit-focus-ring-color;
 outline-offset: -2px;
}

.plan-btn:hover, .plan-btn:focus, .plan-btn.focus{
 color: #333;
 text-decoration: none;
}
.plan-btn:focus, .plan-btn:active:focus {
    outline: 3px solid #ff9800;
    outline-offset: 2px;
}

.plan-btn:active, .plan-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);
}

.plan-btn.disabled, .plan-btn[disabled], fieldset[disabled] .plan-btn {
 cursor: not-allowed;
 filter: alpha(opacity=65);
 -webkit-box-shadow: none;
 box-shadow: none;
 opacity: .65;
}

a.plan-btn.disabled, fieldset[disabled] a.btn {
 pointer-events: none;
}

.plan-btn-default { 
 color: #333;
 background-color: #fff;
 border-color: #ccc;
}

.plan-btn-default:focus, .plan-btn-default.focus {
 color: #333;
 background-color: #e6e6e6;
 border-color: #8c8c8c;
}

.plan-btn-default:hover {
 color: #333;
 background-color: #e6e6e6;
 border-color: #adadad;
}


.plan-btn-default:active, .plan-btn-default.active, .open > .dropdown-toggle.plan-btn-default {
 color: #333;
 background-color: #e6e6e6;
 border-color: #adadad;
}

.plan-btn-default:active:hover, .plan-btn-default.active:hover, .open > .dropdown-toggle.plan-btn-default:hover, .plan-btn-default:active:focus, .plan-btn-default.active:focus, .open > .dropdown-toggle.plan-btn-default:focus, .plan-btn-default:active.focus, .plan-btn-default.active.focus, .open > .dropdown-toggle.plan-btn-default.focus {
 color: #333;
 background-color: #d4d4d4;
 border-color: #8c8c8c;
}

.plan-btn-default:active, .plan-btn-default.active, .open > .dropdown-toggle.plan-btn-default {
 background-image: none;
}


.plan-btn-default.disabled:hover, .plan-btn-default[disabled]:hover, fieldset[disabled] .plan-btn-default:hover, .plan-btn-default.disabled:focus, .plan-btn-default[disabled]:focus, fieldset[disabled] .plan-btn-default:focus,.plan-btn-default.disabled.focus, .plan-btn-default[disabled].focus, fieldset[disabled] .plan-btn-default.focus {
 background-color: #f5f5f5;
 border-color: #ccc;
}


.plan-btn-default .badge {
 color: #fff;
 background-color: #333;
}

/** getbootstrap.com **/
.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;
}
.legalstuff {
  text-transform: uppercase;
}
.legalstuff a {
    color: #003871 !important;  /* Default color */
    transition: color 0.3s ease; /* Smooth transition */
}
.legalstuff a:hover {
    color: #21759b;
}