/*

Theme Name: X &ndash; Child Theme
Theme URI: http://theme.co/x/
Author: Themeco
Author URI: http://theme.co/
Description: Make all of your modifications to X in this child theme.
Version: 1.0.0
Template: x

*/

.grid-2-1{
    display: grid;
	grid-template-columns: 2fr 1fr;
	grid-gap: 10px;
}
.grid-1-4{
	 display: grid;
	grid-template-columns: 1fr 4fr;
	grid-gap: 0px;
}
.grid-2{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
}
.note{
	color: #339900;
	margin-bottom: 20px;
}
.margin-top-50{
	margin-top: 50px;
}
.margin-bottom-50{
	margin-bottom: 50px;
}
.important_note{
	margin-bottom: 20px;
}
.tick_note{
	margin-bottom: 50px;
}
label{
	display: inline-block;
}
.form-control{
	display: inline-block;
}
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input{
	border: 1px solid rgba(0, 0, 0, 0.17);
}
@media only screen and (max-width: 767px) {
	.grid-2, .grid-2-1{
		grid-template-columns: 1fr;
	}
	.grid-1-4{
    	grid-template-columns: 1fr;
	}
	.form_div{
		    padding: 40px 0 !important;
    		box-shadow: none !important;
	}
}

/*  ei jaiga off chilo*/
/*
.tooltiptext {
  visibility: hidden;
    max-width: 420px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 110%;
    left: 20%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
}
.tooltip2 {
  position: relative;
  display: inline-block;
    opacity: 1;
}

.tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip2:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
*/

/* Data Recovery */


body.x-sidebar-content-active, 
body[class*="page-template-template-blank"].x-sidebar-content-active.x-blank-template-sidebar-active{
	padding-left:0 !important;
}


body.x-sidebar-content-active .x-widgetbar, 
body.x-sidebar-content-active .x-navbar-fixed-top, 
body[class*="page-template-template-blank"].x-sidebar-content-active.x-blank-template-sidebar-active .x-widgetbar, 
body[class*="page-template-template-blank"].x-sidebar-content-active.x-blank-template-sidebar-active .x-navbar-fixed-top{
	left:0 !important;
}


.tooltip {
    display:inline-block;
    position:relative;
    text-align:left;
}
.tooltip .top {
    min-width:100px;
	max-width:350px;
    top:-20px;
    left:23%;
    transform:translate(-50%, -100%);
    padding:10px 20px;
    color:#000000;
    background-color:#99FF00;
	font-weight:bold;
    font-size:15px;
    border-radius:7px;
    position:absolute;
    z-index:99999999;
    box-sizing:border-box;
    box-shadow:13px 11px 32px 7px rgba(0,0,0,0.65);
    display:none;
}

.tooltip:hover .top {
    display:block;
}

.tooltip .top i {
    position:absolute;
    top:100%;
    left:50%;
    margin-left:-12px;
    width:24px;
    height:12px;
    overflow:hidden;
}

.tooltip .top i::after {
    content:'';
    position:absolute;
    width:12px;
    height:12px;
    left:50%;
    transform:translate(-50%,-50%) rotate(45deg);
    background-color:#99FF00;
    box-shadow:0 1px 8px rgba(0,0,0,0.5);
}




.address_holder {
	width: 250px; 
	padding: 50px 150px 0px 143px;
}


@media only screen and (max-width: 480px) {

    .address_holder {
	width: auto; 
	padding: 50px 0 0 0;
    }
	
	.envelope_bg{
		height:auto;
		width:auto;
	}
	
	.shading_bg {
		border-width:10px;
		width:auto;
	}
	
	.envelope_content{
		margin-top:0 !important;
		width:auto;
	}
	
}

/* Added Stuff Below on 6-7-25 from Cursor Directive */

/* Basic styling for the smartphone page content */

/* General content container padding (adjust as needed based on your theme's layout) */
.entry-content {
    padding: 20px;
}

/* Headings */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #333; /* Darker color for headings */
    font-family: sans-serif; /* Example font */
}

/* Tables */
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5em;
    font-family: sans-serif; /* Example font */
}

.entry-content th,
.entry-content td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

.entry-content th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #555;
}

.entry-content tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Images within tables (icons) */
.entry-content table img {
    max-width: 50px; /* Adjust for icon size */
    height: auto;
    display: block; /* Ensures no extra space below image */
    margin: 0 auto; /* Center small icons */
    border: none; /* Remove any default image borders */
}

/* All other images (general styling) */
.entry-content img:not(table img) {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #eee; /* Light border for general images */
    padding: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

/* Lists */
.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5em;
    padding-left: 20px;
}

.entry-content li {
    margin-bottom: 0.5em;
    line-height: 1.6;
}

/* Links */
.entry-content a {
    color: #0073aa; /* WordPress default blue link color */
    text-decoration: none;
}

.entry-content a:hover {
    text-decoration: underline;
}