/*
Theme Name: Trastis
Theme URI: https://estudi1073.com
Author: Eloi Estruga
Author URI: https://estudi1073.com
Description: WordPress block theme created for Full Site Editing.
Requires at least: 6.0
Tested up to: 6.0
Requires PHP: 5.6
*/


/* Defaults
---------------------------------------------------------------------------- */

* {
	margin: 0;
	box-sizing: border-box;
}

body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

a,
button,
input:focus,
input[type="button"],
input[type="submit"],
textarea:focus,
.wp-block-button__link {
	transition: all 0.2s ease-in-out;
}

a {
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25ch;
	text-decoration-style: dashed;
	text-decoration: none;
	color: var(--wp--preset--color--primary);

}

a:hover,
a:focus {
	text-decoration-style: dashed;
	color: var(--wp--preset--color--contrast);
}

.site-footer a:hover,
.site-footer a:focus,
.wp-block-cover a:hover,
.wp-block-cover a:focus {
	text-decoration-style: dashed;
	color: var(--wp--preset--color--base);
}


a:active {
	text-decoration: none;
}

a[href^="tel"] {
  color: inherit; 
  text-decoration: none; 
}

.has-no-text-decoration a {
	text-decoration: none;
}

b,
strong {
	font-weight: var(--wp--custom--font-weight--medium);
}

blockquote {
	margin: 0;
}

ol,
ul {
	margin: 0;
	padding: 0;
}

ul {
	list-style-type: disc;
}


img {
	max-width: 100%;
	height: auto;
}

p {
	margin-bottom: 1rem;
}

/*
 * Alignment styles.
 * These rules are temporary, and should not be relied on or
 * modified too heavily by themes or plugins that build on
 * Twenty Twenty-Two. These are meant to be a precursor to
 * a global solution provided by the Block Editor.
 *
 * Relevant issues:
 * https://github.com/WordPress/gutenberg/issues/35607
 * https://github.com/WordPress/gutenberg/issues/35884
 */

.wp-site-blocks,
body > .is-root-container,
.edit-post-visual-editor__post-title-wrapper,
.wp-block-group.alignfull,
.wp-block-group.has-background,
.wp-block-cover.alignfull,
.is-root-container .wp-block[data-align="full"] > .wp-block-group,
.is-root-container .wp-block[data-align="full"] > .wp-block-cover {
	padding-left: var(--wp--custom--spacing--outer);
	padding-right: var(--wp--custom--spacing--outer);
}

.wp-site-blocks .alignfull,
.wp-site-blocks > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-cover,
.wp-site-blocks > .wp-block-template-part > .wp-block-group.has-background,
.wp-site-blocks > .wp-block-template-part > .wp-block-cover,
body > .is-root-container > .wp-block-cover,
body > .is-root-container > .wp-block-template-part > .wp-block-group.has-background,
body > .is-root-container > .wp-block-template-part > .wp-block-cover,
.is-root-container .wp-block[data-align="full"] {
	margin-left: calc(-1 * var(--wp--custom--spacing--outer)) !important;
	margin-right: calc(-1 * var(--wp--custom--spacing--outer)) !important;
	width: unset;
}

/* Blocks inside columns don't have negative margins. */
.wp-site-blocks .wp-block-columns .wp-block-column .alignfull,
.is-root-container .wp-block-columns .wp-block-column .wp-block[data-align="full"],
/* We also want to avoid stacking negative margins. */
.wp-site-blocks .alignfull:not(.wp-block-group) .alignfull,
.is-root-container .wp-block[data-align="full"] > *:not(.wp-block-group) .wp-block[data-align="full"] {
	margin-left: auto !important;
	margin-right: auto !important;
	width: inherit;
}


/* Blocks
---------------------------------------------------------------------------- */

/* Button - Outline
--------------------------------------------- */

.wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent;
	border: 1px solid currentColor;
	color: var(--wp--preset--color--contrast);
	padding: 14px 29px;
}

.wp-block-button.is-style-outline .wp-block-button__link:focus,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background-color: var(--wp--preset--color--contrast);
	border-color: var(--wp--preset--color--contrast);
	color: var(--wp--preset--color--base);
}

/* Code
--------------------------------------------- */

.wp-block-code code {
	overflow-wrap: normal;
	overflow-x: scroll;
	padding: 30px;
	tab-size: 4;
	white-space: pre !important;
}

*:not(.wp-block-code) > code {
	background-color: #eee;
	font-size: var(--wp--preset--font-size--small);
	padding: 5px 8px;
}

/* Comments
--------------------------------------------- */

.wp-block-comment-template li {
	margin-left: 0;
}

.wp-block-post-comments-form input:not([type=submit]):not([type=checkbox]),
.wp-block-post-comments-form textarea {
	font-weight: var(--wp--custom--font-weight--light);
	padding: 20px;
}

.wp-block-post-comments-form input:not([type=submit]),
.wp-block-post-comments-form textarea {
	border-color: var(--wp--preset--color--contrast);
}

.wp-block-post-comments-form input[type=submit] {
	border: 1px solid var(--wp--preset--color--contrast);
	width: auto;
}

.wp-block-post-comments-form .form-submit {
	margin-bottom: 0;
}

.wp-block-post-comments-form .comment-form-cookies-consent label {
	font-size: var(--wp--preset--font-size--x-small);
}

/* Group
--------------------------------------------- */

.wp-block-group.is-style-pull {
	margin-top: -200px;
	position: relative;
	z-index: 999;
}

/* List
--------------------------------------------- */

ol li:where(:not([class*='block'])),
ol li:where(.wp-block-list),
ul li:where(:not([class*='block'])),
ul li:where(.wp-block-list) {
	margin-left: 30px;
}

/* Navigation
--------------------------------------------- */

.wp-block-navigation__responsive-container.is-menu-open {
	font-size: var(--wp--preset--font-size--max-48);
	padding: 40px var(--wp--custom--spacing--outer);
}

.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-open {
	border: 1px solid var(--wp--preset--color--contrast);
	padding: 2px;
	
	
}

.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {

}

@media (max-width: 600px) {
	.wp-block-navigation__responsive-container .wp-block-navigation-link a {
		color: var(--wp--preset--color--primary) !important;
	}
}

/* Navigation Submenu
--------------------------------------------- */

.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
	padding: 0;
	min-width: 240px !important;
	left: -10px !important;
	right: auto !important;
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container .wp-block-navigation__submenu-container {
	left: auto !important;
	right: -100% !important;
}


.wp-block-navigation :where(.wp-block-navigation__submenu-container) .wp-block-navigation-item__content {
	color: var(--wp--preset--color--primary);
	padding: 4px 10px;
	font-size: var(--wp--preset--font-size--small); 
}

.wp-block-navigation :where(.wp-block-navigation__submenu-container) .wp-block-navigation-item__content:hover {
	color: var(--wp--preset--color--contrast);

}

.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
	background-color: var(--wp--preset--color--base);
	border-color: transparent;
	
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
	padding-left: 10px !important;
	padding-right: 10px !important;
	padding-top: 5px !important;
}



/* Pagination
--------------------------------------------- */

.wp-block-query-pagination {
	margin-top: 40px !important;
}

/* Post
--------------------------------------------- */

.wp-block-post:not(:last-of-type) {
	margin-bottom: 60px;
}

/* Post Author
--------------------------------------------- */

.wp-block-post-author__name {
	margin-bottom: 0;
}

/* Preformatted
--------------------------------------------- */

.wp-block-preformatted {
	overflow-wrap: normal;
	overflow-x: scroll;
	white-space: pre;
}

/* Pullquote
--------------------------------------------- */

.wp-block-pullquote p:last-of-type {
	margin-bottom: 0;
}

.wp-block-pullquote cite {
	display: block;
	font-size: var(--wp--preset--font-size--x-small);
	font-style: inherit;
	margin-top: 10px;
}

/* Query
--------------------------------------------- */

.wp-block-post-template.is-flex-container,
.wp-block-query-loop.is-flex-container {
    gap: 40px;
}

.wp-block-post-template a {
	text-decoration: none;
}

/* Quote
--------------------------------------------- */

.wp-block-quote p:last-of-type {
	margin-bottom: 0;
}

.wp-block-quote cite {
	display: block;
	font-size: var(--wp--preset--font-size--x-small);
	font-style: inherit;
	margin-top: 10px;
}

/* Search
--------------------------------------------- */

.wp-block-search__button {
	margin-left: 0;
}

/* Separator
--------------------------------------------- */

.wp-block-separator.is-style-dots:before {
	font-family: inherit;
	font-size: var(--wp--preset--font-size--large);
	letter-spacing: 10px;
	padding-left: 10px;
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots):not(.is-style-mini) {
	width: 100px;
}

.wp-block-separator.is-style-mini {
	width: 60px;
}

.wp-block-separator:not(.is-style-dots),
.wp-block-separator.has-background:not(.is-style-dots) {
	border-bottom: 1px solid currentColor;
	border-top: none;
	height: 1px;
}

/* Table
--------------------------------------------- */

.wp-block-table.is-style-stripes {
	border-bottom: none;
}

.wp-block-table table {
	border-collapse: collapse;
}

.wp-block-table thead {
	border-bottom: 3px solid var(--wp--preset--color--contrast);
}

.wp-block-table tfoot {
	border-top: 3px solid var(--wp--preset--color--contrast);
}

.wp-block-table td,
.wp-block-table th,
.wp-block-table tr,
.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th,
.wp-block-table.is-style-stripes tr {
	border: 1px solid var(--wp--preset--color--contrast);
}

.wp-block-table th {
	font-weight: var(--wp--custom--font-weight--medium);
}

.wp-block-table td,
.wp-block-table th {
	padding: 5px;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background-color: #eee;
}

/* Theme
---------------------------------------------------------------------------- */

/* Forms
--------------------------------------------- */

input,
select,
textarea,
.wp-block-search__input {
	background-color: var(--wp--preset--color--base);
	border: 1px solid var(--wp--preset--color--contrast);
	border-radius: 0;
	color: var(--wp--preset--color--contrast);
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--medium);
	font-weight: var(--wp--custom--font-weight--regular);
	line-height: var(--wp--custom--line-height--body);
	padding: 10px 20px;
	width: 100%;
}

.wp-block-search__input {
	border-right: none;
}

input:focus,
textarea:focus {
	background-color: #eee;
	outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

input[type="button"],
input[type="email"],
input[type="search"],
input[type="submit"],
input[type="text"],
textarea {
	-webkit-appearance: none;
}

::placeholder {
	color: var(--wp--preset--color--contrast);
	font-size: var(--wp--preset--font-size--small);
	font-weight: var(--wp--custom--font-weight--light);
	opacity: 0.5;
}

input[type="button"],
input[type="submit"],
.wp-block-search__button {
	background-color: transparent;
	border: 1px solid var(--wp--preset--color--contrast);
	border-radius: 0;
	color: var(--wp--preset--color--contrast);
	cursor: pointer;
	font-family: var(--wp--preset--font-family--base);
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--regular);
	padding: 15px 30px;
	text-decoration: none;
	text-transform: uppercase;
	white-space: normal;
	width: auto;
}

input[type="button"]:focus,
input[type="button"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.wp-block-search__button:focus,
.wp-block-search__button:hover {
	background-color: var(--wp--preset--color--contrast);
	border: 1px solid var(--wp--preset--color--contrast);
	color: var(--wp--preset--color--base);
	text-decoration: none;
}

.nf-field-container {
	margin-bottom: 10px;
}

/* Experimental Styles
--------------------------------------------- */

.is-root-container h1 + *,
.is-root-container h2 + *,
.is-root-container h3 + *,
.is-root-container h4 + *,
.is-root-container h5 + *,
.is-root-container h6 + *,
.wp-block-post-content h1 + *,
.wp-block-post-content h2 + *,
.wp-block-post-content h3 + *,
.wp-block-post-content h4 + *,
.wp-block-post-content h5 + *,
.wp-block-post-content h6 + *,
.wp-block-query-title + * {
	margin-top: 20px;
}

.wp-block-spacer + * {
	margin-top: 0 !important;
}

/* Custom */
.wp-block-navigation__responsive-container-close, 
.wp-block-navigation__responsive-container-open {
	border: none;
}

.wp-block-navigation__responsive-container-close svg, 
.wp-block-navigation__responsive-container-open svg {
	    width: 32px;
    height: 32px;
}


.wp-site-blocks > * + * {
  margin-top: 0;
}

.mt-0 {
	margin-top: 0 !important;
}

.w-100 {
	width: 100% !important;
}
.icon-home {
	color: var(--wp--preset--color--primary);
	font-size: 3.7rem;
	line-height: 1;
	text-align: center;
}


.numero {
	width: 90px;
    height: 90px;
    margin: 30px auto !important;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;

}

.trasteros {
	gap: var( --wp--style--block-gap, 2em );
	justify-content: center;
}


.trastero-image {
	width: 100%;
	height: 0;
	padding-bottom: 56%;
	background-size: cover;
	background-position: center center;
	background-color: #eee;
	margin: 0 auto 1.5rem 0;
}

.trastero {
	padding-bottom: 20px;
	text-align: center;
	max-width: 320px;
	display: flex;
	flex-direction: column;
}
.trastero p, .trastero h3 {
	margin: 0 0 20px 0;
	line-height: 1.3;
}


.wp-block-button__link {
	font-weight: 700;
}


.wp-block-table td, .wp-block-table th, .wp-block-table tr, .wp-block-table.is-style-stripes td, .wp-block-table.is-style-stripes th, .wp-block-table.is-style-stripes tr {
	border: 0;
}
/* script formulario */
.templateWidth {
	padding: 30px 0 !important;
}

#crmWebToEntityForm {
    max-width: 100% !important;
    padding:  0 !important;
	
}

#crmWebToEntityForm .zcwf_title{
    padding: 1rem 0;
    max-width: 100%;
    font-size: 1.35rem;
    font-weight: 500;

}

#crmWebToEntityForm.zcwf_lblRight .zcwf_col_lab {
    text-align: left;
  
}

#crmWebToEntityForm.zcwf_lblRight .zcwf_col_fld input[type=text],
#crmWebToEntityForm.zcwf_lblRight .zcwf_col_fld select,
#crmWebToEntityForm.crmWebToEntityForm .zcwf_col_fld input[type=text],
#crmWebToEntityForm.crmWebToEntityForm .zcwf_col_fld select
 {
    height: calc(1em + 1rem + 2px);
    padding: .375rem 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    width: 100%;
    border-radius: 0;
}

#crmWebToEntityForm.zcwf_lblRight .zcwf_col_fld #LEADCF7 {
    height: auto;
}



#crmWebToEntityForm.crmWebToEntityForm .zcwf_col_fld textarea {
    min-height: 200px;
    padding: .375rem 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    width: 100%;
    border-radius: 0;
}

#crmWebToEntityForm.zcwf_lblRight .zcwf_col_help {
    max-width: 100%;
    margin: 1rem 0 0 0;
    width: 100%;
}

/*
#crmWebToEntityForm.zcwf_lblRight .zcwf_button,
#crmWebToEntityForm.crmWebToEntityForm .zcwf_button {
    font-weight: bold;
    padding: 1rem 2rem;
    border-radius: 0;
    font-family: Arial;
    font-weight: bold;
    min-width: 150px;
    float: left;
    display: inline-block;
}

#crmWebToEntityForm.zcwf_lblRight .zcwf_button.formsubmit,
#crmWebToEntityForm.crmWebToEntityForm .zcwf_button.formsubmit
 {
    border-color: var(--wp--preset--color--primary);
    background-color: var(--wp--preset--color--primary);
    color: #fff;
}
*/


#crmWebToEntityForm .zcwf_privacy {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	
}
#crmWebToEntityForm .zcwf_privacy .dIB.vat {
	width: 30px;
}
#crmWebToEntityForm .zcwf_privacy .zcwf_privacy_txt {
	
	padding: 5px 0 !important;
	width: calc(100% - 30px) !important;
	margin: 0 !important;
}

#crmWebToEntityForm .zcwf_col_fld {
	display: flex;
	flex-wrap: wrap;
	
}

#crmWebToEntityForm .zcwf_col_fld .zcwf_button {
    padding: 7px 10px !important;
    border-radius: 0 !important;
    font-family: 'TT Norms', sans-serif;
    min-width: 140px;
	max-width: 140px !important;
	font-size: 12px;
    float: left;
    display: inline-block !important;
	font-weight: 700 !important;
	-webkit-appearance: none;
}
@media (min-width: 600px) {
	#crmWebToEntityForm .zcwf_col_fld .zcwf_button {
		min-width: 150px;
		max-width: 150px !important;
		padding: 15px 20px !important;
		font-size: 16px;
	}
}

#crmWebToEntityForm .zcwf_col_fld .formsubmit.zcwf_button {
	border-color: var(--wp--preset--color--primary);
    background-color: var(--wp--preset--color--primary);
    color: var(--wp--preset--color--base);
}
#crmWebToEntityForm .zcwf_col_fld .formsubmit.zcwf_button:hover,
#crmWebToEntityForm .zcwf_col_fld .formsubmit.zcwf_button:focus {
	border-color: var(--wp--preset--color--primary);
    background-color: var(--wp--preset--color--base);
    color: var(--wp--preset--color--primary);
}


#crmWebToEntityForm .zcwf_col_fld .zcwf_button {
	border-color: var(--wp--preset--color--contrast);
    background-color: var(--wp--preset--color--base);
    color: var(--wp--preset--color--contrast);
}
#crmWebToEntityForm .zcwf_col_fld .zcwf_button:hover,
#crmWebToEntityForm .zcwf_col_fld .zcwf_button:focus {
	border-color: var(--wp--preset--color--contrast);
    background-color: var(--wp--preset--color--contrast);
    color: var(--wp--preset--color--base);
}

@media (max-width: 600px) {
	.gb-button-- {
		font-size: 12px !important;
		padding: 7px 10px !important;
		font-weight: 700 !important;
	}
}

/* mapa */
#mapa {
	width: 100%;
	height: 400px;
	margin-bottom: 30px;
	background-color: #eee;
}


.info_content {
	padding: 0 10px;
}

.info_content h3 {
	font-size: 1.2rem;
	font-weight: bold;
	margin: 0;
	margin-top: 10px;
}

.info_content p {
	font-size: 16px;
	margin: 20px 0 10px 0;
}

.info_content p a {
	display: inline-block;
	background-color: var(--wp--preset--color--primary);
	color: #fff;
	padding: 15px 30px;
	text-decoration: none;
	font-weight: 600;
}


.icones {
	flex-wrap: wrap !important;
	justify-content: center !important;
}

.icones.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column { 
	flex-basis: unset!important; 
   	width: 150px;
	max-width: 150px;
}

@media (max-width: 781px) {
	.icones.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
		 flex-basis: unset!important; 
   		 width: 150px;
	}
}

@media (max-width: 400px) {
	.icones.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
		 flex-basis: unset!important; 
   		 width: 140px;
	}
}



.custom_lang {
	text-transform: uppercase;
	
}

.custom_lang li {
	margin: 0;
}

.custom_lang a {
	text-decoration: none;
}
.custom_lang li.active a {
	color: #ccc;
}





.wp-block-navigation__responsive-container-close, .wp-block-navigation__responsive-container-open {
	border-color: #fff;
}


/* Media Queries
---------------------------------------------------------------------------- */

@media (min-width: 600px) {
	
	.wp-block-post-template.is-flex-container.is-flex-container.columns-3>li,
	.wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li {
	    width: calc(33.33333% - calc(80px / 3));
	}

}

@media only screen and (min-width: 800px) {

	/* Pullquote
	--------------------------------------------- */

	.wp-block-pullquote.alignleft,
	.wp-block-pullquote.alignright {
		max-width: 300px;
	}

	.wp-block-pullquote.alignleft {
		margin-right: 30px;
	}

	.wp-block-pullquote.alignright {
		margin-left: 30px;
	}

}



.button-secondary {
	background-color: #4acb59;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 0;
    margin: 0;
    border-style: solid;
    border-width: 0;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
	justify-content: center;
    text-align: center;
    text-decoration: none;
}

.button-secondary .gb-icon {
    font-size: 18px;
    padding-right: 0.5em;
}


/* chat form */

.zsiq_floatmain {
    bottom: 60px!important;
}


.zsiq_theme1 div.zsiq_cnt {
	display: none !important;
}

.fixed-buttons {
	position: fixed;
	bottom: 10px;
	left: 0;
	right: 0;
	z-index: 99;
	
}

.fixed-buttons .gb-button-wrapper a.gb-button {
	font-size: 10px;
	padding: 7px 10px;
}

@media only screen and (min-width: 600px) {
	.fixed-buttons {
		display: none;
	}
	.editor-styles-wrapper .fixed-buttons,
	.edit-post-layout .fixed-buttons,
	.block-editor .fixed-buttons {
		display: block !important;
		position: relative !important;
	}
	.gb-grid-wrapper-d20ec313 .gb-grid-column {
		min-width: 425px;
	}
	.nodesktop{
		display: none !important;
	}

}


@media only screen and (max-width: 600px) {
	.wp-block-media-text__media {
		margin-bottom: 30px !important;
	}
	.mobile-none {
		display: none !important;
	}
}

