/*
Theme Name: Twenty Twenty-Five
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}

/* Custom style here */
/* list */

.recent-agent-clients, .agent-form-entries {
	padding-left: 5px;
}

ul.recent-agent-clients li, ul.recent-agent-clients li a {
  list-style: none;
	text-decoration: none;
	padding-bottom: .5em;
	font-size: 14px;
}

ul.recent-agent-clients span, .agent-form-entries span{
    font-size: small;
}

ul.recent-agent-clients li:hover {
    list-style: circle;
}


.agent-form-entries li {
    list-style: circle;
    font-size: medium;
}

.inline-flex .frm_fields_container {
    display: inline-flex;
    align-items: self-end;
}

.agent-entries {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

.agent-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.agent-entry .entry-time {
  flex: 0 0 auto;
  color: #666;
  font-size: 0.9em;
  margin-right: 1rem;
}

.agent-entry .entry-text {
  flex: 1;
  font-weight: 500;
}


.agent-clients-container {
  display: grid;
  /* change 180px to whatever your folder-box width should be */
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
}

.agent-client-box {
  position: relative;
}

.agent-client-box h4 {
  position: absolute;
    bottom: 60px;
    left: 20px;
  margin: 0;
  color: #fff;
  font-size: 16px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.client-select {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.client-select input {
  display: none;
}

.client-select span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 3px;
  background: rgba(255,255,255,0);
  transition: background .2s;
}

.client-select input:checked + span {
  background: rgba(255,255,255,0.6);
}

.client-media-gallery {
    display: inline-flex;
    flex-direction: row;
}

.media-container {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px;
}

.client-forms-container {
  display: grid;
}


.client-forms-container a.button {
    background: #4165c2;
    padding: 10px 15px;
    color: #fff;
    border-radius: 10px;
    font-weight: bold;
}

.client-forms-container a.button:hover {
    background: #32509c;
}

/* 1) Make the HTML field container inline and kill its P tagsâ€™ margins */
.frm_html {
  display: inline-block !important;
  vertical-align: middle;
  margin: 0 !important;
}
.frm_html p {
  display: inline !important;
  margin: 0 !important;
}

/* 2) Make our â€œblankâ€ fields inline too */
.frm_form_field.inline-blank {
  display: inline-block;
  vertical-align: middle;
  margin: 0 .25em;
}

/* 3) Style the inputs as underlines */
.frm_form_field.inline-blank input[type="text"],
.frm_form_field.inline-blank input[type="number"] {
  border: none;
  border-bottom: 1px solid #333;
  background: transparent;
  padding: 2px 4px;
  width: 4ch; /* tweak per-field */
}

/* 4) Hide the now-unneeded labels */
.frm_form_field.inline-blank .frm_primary_label {
  display: none;
}
.inline-blank {
  display: ruby;
}
.inline-blank p{
  display: inline;
}

div.inline-blank input {
    margin: 10px;
    max-width: 100px !important;
}

/* Target only our wide-modal popups */
.wide-modal .fancybox-content {
  width: 90%    !important;   /* make it 90% of the viewport */
  max-width: 1000px !important; /* but no wider than 1000px */
  box-sizing: border-box;
}


.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container {
    grid-template-columns: 400px auto;
}


h1.wp-block-post-title, h2.wp-block-post-title {
    display: none;
}

.modal-content {
    padding: 20px;
}

.wp-block-frm-modal-content .modal-header {
    /* display: none; */
    display: none;
}

.smg-fixed-thumb {
  width: 200px !important;
  height: 150px !important;
  object-fit: contain;
  display: block;
  padding: 20px;
}
