/*
Theme Name: Age srl
Template: twentytwentyfive
Parent Theme : Twenty Twenty-Five
Tags: full-site-editing
*/


/*------------*/
/* TASTODESTRO */

/* VIEW TRANSITIONAL API */
@view-transition {
  navigation: auto;
}


html {
 scroll-behavior: smooth;
 overflow-x: hidden!important;
  width: 100%;
  height: 100%;
  margin-left: 0px!important;
  margin-right: 0px!important;
  padding: 0px;
}

/*-- Scrollbar --*/
html::-webkit-scrollbar { 
	width: 12px;
	background-color: var(--wp--preset--color--accent-7); /* or add it to the track */
	border:1px solid var(--wp--preset--color--contrast);
}

/* Add a thumb */
html::-webkit-scrollbar-thumb {
  background-color: var(--wp--preset--color--contrast);
  border-radius: 0;
}

html::-webkit-scrollbar-thumb:hover {
    background-color: var(--wp--preset--color--accent-4);
}

html::-webkit-scrollbar-button,
html::-webkit-scrollbar-button:single-button {
	background-color: var(--wp--preset--color--contrast);
}

html::-webkit-scrollbar-button:hover {
	background-color: var(--wp--preset--color--accent-4);
}

/* Up arrow*/
html::-webkit-scrollbar-button:single-button:vertical:decrement {
	
}

/* Down arrow*/
html::-webkit-scrollbar-button:single-button:vertical:increment{
	
}



/*-- Body --*/

body {
	overflow-x: hidden!important;
	overflow-x: clip !important;
	margin-left: 0px!important;
	margin-right: 0px!important;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}



/*-- CLIP PATH --*/
.obliqueSX {
	clip-path: polygon(0% 2rem, 100% 0%, 100% 100%, 0% 100%);
}

.obliqueDX {
	clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 2rem), 0% 100%);
}



/*-- HEADER --*/
header.wp-block-template-part {
	position: sticky;
	top: calc(0px + var(--wp-admin--admin-bar--position-offset, 0px));
	position: sticky;
	z-index: 100;
	background-color:#DAD6DE;
}



.page-template-page-no-title header,
.single-post header
 {
	background-color:transparent;
}



header.is-super-sticky {
	background-color:transparent;
}

header.is-super-sticky .wp-block-site-logo a img {
	height: 55px;
	width: auto;
}

.headerTopObliqueDX {
	clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 2rem), 0% 100%);
	z-index: 101;
}

.headerBottomObliqueDX {
	clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 2rem), 0% 100%);
	z-index: 100;
}

/*-- Memu --*/

.wp-block-navigation .has-child .wp-block-navigation__submenu-container {
	z-index: 102;
}


/*-- . entry-content --*/
.entry-content {
	margin-top:0;
}
:root :where(.is-layout-constrained) > .entry-content {
    margin-block-start: 0;
}

/*-- Colonne inverso ordine mobile --*/
.age-mob-flex-direction-column-reverse {
    flex-direction:column-reverse;
 }

@media (min-width: 782px) {
  .age-mob-flex-direction-column-reverse {
     flex-direction:row;
  }
}

/*-- NEWS --*/
    .age-blog-content {
        display: grid;
        grid-template-columns:repeat(1,1fr);
        column-gap: 3rem;
        row-gap: 2rem;
        margin-top: 3rem;
    }

    @media (min-width: 781px) {
        .age-blog-content {
                grid-template-columns:repeat(2, minmax(0, 1fr))!important;
        }
    }
    
    @media (min-width: 1024px) {
        .age-blog-content {
                grid-template-columns:repeat(3, minmax(0, 1fr))!important;
        }
    }

    @media (min-width: 2048px) {
        .age-blog-content {
                grid-template-columns:repeat(4, minmax(0, 1fr))!important;
        }
    }


    .age-blog-content article {
        text-align: center;
        /*border: 1px solid var(--wp--preset--color--contrast);*/
        border:none;
        padding-bottom: 2rem;

    }


    .age-blog-content article figure.post-thumbnail {
        position: relative;
        margin-bottom: 1rem;
        background-color: var(--wp--preset--color--secondary);
        overflow: hidden;
        border:2px solid var(--wp--preset--color--accent-4);
        border-radius: 0;
        border-bottom-left-radius:0; 
        box-sizing:border-box;
        width: 100%;
			/*height: 180px;*/
        aspect-ratio: 1 / 1;
        -webkit-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;

        -webkit-transition: border .1s linear;
        -o-transition: border .1s linear;
        transition: border .1s linear;        
    }

    .age-blog-content article:hover figure.post-thumbnail,
    .age-blog-content article:focus figure.post-thumbnail {
        border-radius: 0;
        border-top-right-radius:0; 
        border:4px solid var(--wp--preset--color--accent-1);
    }

    .age-blog-content article figure.post-thumbnail img {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        -webkit-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .age-blog-content article:hover figure.post-thumbnail img {
        transform: scale(1.4) rotate(10deg);
    }

    .age-blog-content article figure.post-thumbnail .categories-container {
        position: absolute;
        top: 0.4rem;
        right: 0.8rem;
    }
    
    .age-blog-content article figure.post-thumbnail .categories-container a { 
   	display:inline-block;
   	font-size:var(--wp--preset--font-size--small);
   	padding:0.2rem 0.6rem;
   	margin-left: 0.4rem;
   	background-color:var(--wp--preset--color--accent-3); 
   	color: var(--wp--preset--color--contrast);
   	text-decoration: none;
   	-webkit-transition: all .4s ease-in-out;
       -o-transition: all .4s ease-in-out;
       transition: all .4s ease-in-out;
 	}   

    .age-blog-content article figure.post-thumbnail .categories-container a:hover,
    .age-blog-content article figure.post-thumbnail .categories-container a:focus { 
   	background-color:var(--wp--preset--color--accent-4); 
 	} 
 	
    .age-blog-content article .entry-title {
    	  position: relative;
        text-align: center;
        font-size: calc(var(--wp--preset--font-size--medium) + 0.4rem);
        line-height: 1.1;
        font-weight: 600;
        margin-block-start: 0.5rem;
        margin-block-end:  0.5rem;
        padding: 0 1rem;
        color: var(--wp--preset--color--contrast);
    }

    .age-blog-content article .entry-title a,
    .age-blog-content article .entry-title a:visited {
        color: var(--wp--preset--color--contrast);
        text-decoration: none;
    }

    .age-blog-content article .entry-title a:hover,
    .age-blog-content article .entry-title a:focus {
        color: var(--wp--preset--color--accent-1);
    }


    .age-blog-content article .entry-content {
        text-align: center;
        font-size: var(--wp--preset--font-size--medium);
        line-height: 1.2;
        font-weight: 300;
        margin-block-start: 1.2rem;
        margin-block-end:  1.2rem;
        padding: 0;
    }

    .age-blog-content article .post-button,
    .age-blog-content article .post-button:visited {
        display: inline-block;
        background-color: var(--wp--preset--color--accent-1);
        color: var(--wp--preset--color--accent-6);
        font-size: clamp(0.8rem, 0.5636rem + 0.4364vw, 1rem);
        font-weight: 500;
        text-transform: uppercase;
        text-decoration: none;
        /*border-radius: 1.2rem;*/
        border-radius: 0;
        padding-top: 0.8rem;
        padding-right: 1.6rem;
        padding-bottom: 0.8rem;
        padding-left: 1.6rem;
        box-shadow: none;
        /*border-color: var(--wp--preset--color--transparent);*/
        /*border-width: 4px;*/
        border-width: 0;
        border-style: solid;
        margin-top: 0;
        transition: all 0.4s ease-out;
    }

    .age-blog-content article:hover .post-button,
    .age-blog-content article:focus .post-button:focus {
         background-color: var(--wp--preset--color--accent-4);
         color: var(--wp--preset--color--contrast);
         transform:rotate(-7deg);
    }

    .age-blog-content article .post-button-invert,
    .age-blog-content article .post-button-invert:visited {
        display: inline-block;
        background-color: var(--wp--preset--color--secondary);
        color: #ffffff;
        font-weight: 500;
        border-radius: 1.2rem;
        padding-top: 6px;
        padding-right: 38px;
        padding-bottom: 6px;
        padding-left: 38px;
        box-shadow: none;
        border-color: var(--wp--preset--color--transparent);
        border-width: 4px;
        border-style: solid;
        margin-top: 1.5rem;
        transition: all 0.4s ease-out;
    }

    .age-blog-content article .post-button-invert:hover,
    .age-blog-content article .post-button-invert:focus {
        border-color: var(--wp--preset--color--primary);
    }
    
    
    
    /* PAGINATION WP-NAVI*/
    .age_pagination {
        width: 100%;
        padding: 2rem 0;
        margin-top: 1rem;
        
    }

    .age_pagination .wp-pagenavi {
        display: flex;
        justify-content:center;
        align-items:center;
        align-content:center;
        column-gap: 1rem;
        flex-wrap:wrap;
        margin: 0 auto;
    }

    .age_pagination .wp-pagenavi .pages {
        display: none;
    }


    .age_pagination .wp-pagenavi a, .wp-pagenavi span {
    		font-size: 1.4rem;
    		line-height: 1;
    		text-align: center;
    		font-weight: 500;
        text-decoration: none;
        border: 0 solid #BFBFBF!important;
        margin: 2px;
        transition: all 0.4s ease-out;
    }
    
	@media (max-width: 781px) {
		.age_pagination .wp-pagenavi a, .wp-pagenavi span {
    		font-size: 1rem;	
    	}	
	}
    
    .age_pagination .wp-pagenavi a:not(.first, .previouspostslink, .nextpostslink,.last), .wp-pagenavi span {
			
    }

    .biolaser_pagination .wp-pagenavi a:hover {
        /*transform: scale(1.6);*/
    }

    .age_pagination .wp-pagenavi span.current {
		display: inline-block;
		width: 3rem;
		height: 3rem;
		line-height: 3rem;
		color: #fff;
		font-weight: 500;
		background-color: var(--wp--preset--color--accent-1);
		border-radius:0;
		border-bottom-left-radius:0; 
    }
    
	@media (max-width: 781px) {
    .age_pagination .wp-pagenavi span.current {
		display: inline-block;
		width: 2.4rem;
		height: 2.4rem;
		line-height: 2.4rem;
		color: #fff;
		font-weight: 500;
		background-color: var(--wp--preset--color--accent-1);
		border-radius: 18%;
		border-bottom-left-radius:0; 
    }
	}
    
/*-- NEWS Related --*/
    .age-blog-related-content {
        display: grid;
        grid-template-columns:repeat(1,1fr);
        column-gap: 3rem;
        row-gap: 2rem;
        margin-top: 3rem;
    }

    @media (min-width: 781px) {
        .age-blog-related-content {
                grid-template-columns:repeat(2, minmax(0, 1fr))!important;
        }
    }
    
    @media (min-width: 1024px) {
        .age-blog-related-content {
                grid-template-columns:repeat(3, minmax(0, 1fr))!important;
        }
    }

    @media (min-width: 2048px) {
        .age-blog-related-content {
                grid-template-columns:repeat(4, minmax(0, 1fr))!important;
        }
    }


    .age-blog-related-content article {
        text-align: center;
        /*border: 1px solid var(--wp--preset--color--contrast);*/
        border:none;
        padding-bottom: 2rem;

    }


    .age-blog-related-content article figure.post-thumbnail {
        position: relative;
        margin-bottom: 1rem;
        background-color: var(--wp--preset--color--secondary);
        overflow: hidden;
        border:2px solid var(--wp--preset--color--accent-4);
        border-radius: 0;
        border-bottom-left-radius:0; 
        box-sizing:border-box;
        width: 100%;
			/*height: 180px;*/
        aspect-ratio: 1 / 1;
        -webkit-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
        
        -webkit-transition: border .1s linear;
        -o-transition: border .1s linear;
        transition: border .1s linear;
        
    }

    .age-blog-related-content article:hover figure.post-thumbnail,
    .age-blog-related-content article:focus figure.post-thumbnail {
        border-radius: 0;
        border-top-right-radius:0; 
        border:4px solid var(--wp--preset--color--accent-1);
    }

    .age-blog-related-content article figure.post-thumbnail img {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        -webkit-transition: all .4s ease-in-out;
        -o-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
    }

    .age-blog-related-content article:hover figure.post-thumbnail img {
        transform: scale(1.4) rotate(10deg);
    }
    
    .age-blog-related-content article figure.post-thumbnail .categories-container {
        position: absolute;
        top: 0.4rem;
        right: 0.8rem;
    }
    
    .age-blog-related-content article figure.post-thumbnail .categories-container a { 
   	display:inline-block;
   	font-size:var(--wp--preset--font-size--small);
   	padding:0.2rem 0.6rem;
   	margin-left: 0.4rem;
   	background-color:var(--wp--preset--color--accent-3); 
   	color: var(--wp--preset--color--contrast);
   	text-decoration: none;
   	-webkit-transition: all .4s ease-in-out;
       -o-transition: all .4s ease-in-out;
       transition: all .4s ease-in-out;
 	}   

    .age-blog-related-content article figure.post-thumbnail .categories-container a:hover,
    .age-blog-related-content article figure.post-thumbnail .categories-container a:focus { 
   	background-color:var(--wp--preset--color--accent-4); 
 	}       

    .age-blog-related-content article .entry-title {
        text-align: center;
        font-size: calc(var(--wp--preset--font-size--medium) + 0.4rem);
        line-height: 1.1;
        font-weight: 600;
        margin-block-start: 0.5rem;
        margin-block-end:  0.5rem;
        padding: 0 1rem;
        color: var(--wp--preset--color--contrast);
    }

    .age-blog-related-content article .entry-title a,
    .age-blog-related-content article .entry-title a:visited {
        color: var(--wp--preset--color--contrast);
        text-decoration: none;
    }

    .age-blog-related-content article .entry-title a:hover,
    .age-blog-related-content article .entry-title a:focus {
        color: var(--wp--preset--color--accent-1);
    }


    .age-blog-related-content article .entry-content {
        text-align: center;
        font-size: var(--wp--preset--font-size--medium);
        line-height: 1.2;
        font-weight: 300;
        margin-block-start: 1.2rem;
        margin-block-end:  1.2rem;
        padding: 0;
    }

    .age-blog-related-content article .post-button,
    .age-blog-related-content article .post-button:visited {
        display: inline-block;
        background-color: var(--wp--preset--color--accent-1);
        color: var(--wp--preset--color--accent-6);
        font-size: clamp(0.8rem, 0.5636rem + 0.4364vw, 1rem);
        font-weight: 500;
        text-transform: uppercase;
        text-decoration: none;
        /*border-radius: 1.2rem;*/
        border-radius: 0;
        padding-top: 0.8rem;
        padding-right: 1.6rem;
        padding-bottom: 0.8rem;
        padding-left: 1.6rem;
        box-shadow: none;
        /*border-color: var(--wp--preset--color--transparent);*/
        /*border-width: 4px;*/
        border-width: 0;
        border-style: solid;
        margin-top: 0;
        transition: all 0.4s ease-out;
    }

    .age-blog-related-content article:hover .post-button,
    .age-blog-related-content article:focus .post-button:focus {
         background-color: var(--wp--preset--color--accent-4);
         color: var(--wp--preset--color--contrast);
         transform:rotate(-7deg);
    }

    .age-blog-related-content article .post-button-invert,
    .age-blog-related-content article .post-button-invert:visited {
        display: inline-block;
        background-color: var(--wp--preset--color--secondary);
        color: #ffffff;
        font-weight: 500;
        border-radius: 1.2rem;
        padding-top: 6px;
        padding-right: 38px;
        padding-bottom: 6px;
        padding-left: 38px;
        box-shadow: none;
        border-color: var(--wp--preset--color--transparent);
        border-width: 4px;
        border-style: solid;
        margin-top: 1.5rem;
        transition: all 0.4s ease-out;
    }

    .age-blog-related-content article .post-button-invert:hover,
    .age-blog-related-content article .post-button-invert:focus {
        border-color: var(--wp--preset--color--primary);
    }
    
/*-- CF7 GENERICO --*/    

.wpcf7-form p {
    margin-top:0;
    margin-bottom:0;
}
.wpcf7-form .wpcf7-form-control-wrap input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
	font-family:var(--wp--preset--font-family--manrope);
	font-size:1rem;
	font-weight: 600;
	color:var(--wp--preset--color--contrast);
	width: 100%;
	height: 40px;
	margin: 0 0 7px;
	padding: 5px 10px;
	border: 1px solid var(--wp--preset--color--accent-7);
	box-sizing: border-box;
}
.wpcf7-form .wpcf7-form-control-wrap textarea {
	width: 100%;
	padding: 5px 10px;
	font-family: var(--wp--preset--font-family--manrope);
	font-size:1rem;
	font-weight: 600;
	color:var(--wp--preset--color--contrast);
	border: 1px solid var(--wp--preset--color--accent-7);
	height: 180px;
	box-sizing: border-box;
}

.wpcf7-form .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item {
	margin:0;
	margin-right: 1rem;
}

.wpcf7-form .wpcf7-form-control-wrap input[type="checkbox"] {
	flex-shrink:0;
	display:inline-block;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	background-color: var(--wp--preset--color--accent-6);
	border: 1px solid var(--wp--preset--color--accent-7);
	/*transform: translateY(4px);*/
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: all 250ms cubic-bezier(1,0,.37,.91);
	box-sizing:border-box;
}

	.wpcf7-form .wpcf7-form-control-wrap input[type="checkbox"]:checked {
		background-color:#0E71B4;
		border:1px solid #0E71B4;
		color:#ffffff;
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.wpcf7-form .wpcf7-form-control-wrap input[type="checkbox"] + span {
	display: inline;
	color:var(--wp--preset--color--accent-6);
	font-size: 0.9rem;
	line-height: 1.2;
}

.wpcf7-form .wpcf7-form-control-wrap input[type="checkbox"] + span a {
	font-size:1rem;
	color:var(--wp--preset--color--accent-6);
	font-weight:900;
	text-decoration:none;
	padding-left: 0.2rem;
}



/*-- FOOTER MODULO CONTATTI--*/

.footer-modulo-contatti {
	background: linear-gradient(to right,#4b80A7,#4b80A720);
	/*background: linear-gradient(to right,#CBB643,#CBB64320);*/
}



/*-- FORM CONTATTI FOOOTER --*/
.formrow {
	display: flex;
}

@media (max-width: 999px) {
    .formrow {
        display: block !important;
    }
}
.formcol {
	flex: 1;
	padding-right: 1rem;
}
.formcol:last-child {
	text-align: left;
}

.formcol .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
	margin-bottom:1rem;
}
.formcol .wpcf7-form-control-wrap[data-name="acceptance-privacy"] {
	margin-top:-0.4rem;
	margin-bottom:0.5rem;
}
@media ( max-width: 999px ) { 
	.formcol .wpcf7-form-control-wrap[data-name="acceptance-privacy"] {
		margin-bottom:1rem;
	}
}
.formcol .wpcf7-form-control-wrap br {
    display: none;
}

.formcol .wpcf7-form-control-wrap input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
	font-family:var(--wp--preset--font-family--manrope);
	font-size:1rem;
	font-weight: 600;
	color:var(--wp--preset--color--contrast);
	width: 100%;
	height: 40px;
	margin: 0 0 7px;
	padding: 5px 10px;
	border: none;
	box-sizing: border-box;
}
.formcol .wpcf7-form-control-wrap textarea {
	width: 100%;
	padding: 5px 10px;
	font-family: var(--wp--preset--font-family--manrope);
	font-size:1rem;
	font-weight: 600;
	color:var(--wp--preset--color--contrast);
	border: none;
	height: 104px;
	box-sizing: border-box;
}

.formcol .wpcf7-form-control-wrap input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::placeholder,
.formcol .wpcf7-form-control-wrap textarea::placeholder {
	color:var(--wp--preset--color--accent-7);
}

.formcol .mandatory-field-note,
.formcol .mandatory-field-note-mobile {
	display:inline-block;
	width:100%;
	background-color:var(--wp--preset--color--contrast);
	color:var(--wp--preset--color--accent-6);
	font-size: 0.9rem;
	text-align:left;
	margin-top:0;
	padding: 0 0.4rem;
	box-sizing: border-box;
}

@media (max-width: 999px) {
    .formcol .mandatory-field-note {
        display: none !important;
    }
}

@media (min-width: 1000px) {
    .formcol .mandatory-field-note-mobile {
        display: none !important;
    }
}

.formcol .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item {
	margin:0;
}
.formcol .wpcf7-form-control-wrap .wpcf7-acceptance .wpcf7-list-item label {
	display: flex;
	flex-wrap: nowrap;
	justify-content:flex-start;
	align-items: flex-start;
	align-content:flex-start;
	gap:0.6rem;
	font-size: 1rem;
	line-height: 1.2rem;
}



.formcol .wpcf7-form-control-wrap input[type="checkbox"] {
	flex-shrink:0;
	display:inline-block;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	background-color: var(--wp--preset--color--accent-6);
	border: 1px solid var(--wp--preset--color--accent-6);
	transform: translateY(4px);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: all 250ms cubic-bezier(1,0,.37,.91);
	box-sizing:border-box;
}

	.formcol .wpcf7-form-control-wrap input[type="checkbox"]:checked {
		background-color:#0E71B4;
		border:1px solid #0E71B4;
		color:#ffffff;
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.formcol .wpcf7-form-control-wrap input[type="checkbox"] + span {
	display: inline;
	color:var(--wp--preset--color--accent-6);
	font-size: 0.9rem;
	line-height: 1.2;
}

.formcol .wpcf7-form-control-wrap input[type="checkbox"] + span a {
	font-size:1rem;
	color:var(--wp--preset--color--accent-6);
	font-weight:900;
	text-decoration:none;
	padding-left: 0.2rem;
}

input.wpcf7-form-control.wpcf7-submit {
    display: inline-block;
    background: var(--wp--preset--color--accent-1);
    color: var(--wp--preset--color--accent-6);
    border: none;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 1rem;
    margin-top: 1.4rem;
}

.wpcf7 form .wpcf7-response-output {
margin-top:1rem!important;}


.formcol .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
	font-size: 0.9rem;
}

/*-- Footer --*/

footer.wp-block-template-part {
	position: relative;
	margin-top: -3.6rem;
}

/*-- Slider Video --*/
.wp-block-cb-carousel.home-banner-slider .wp-block-cb-slide.slick-slide {
    padding-left: 0;
    padding-right: 0;
    border: 0px solid transparent;
    border-right-color: #253740;
}

.video-slide {
	display: flex;
	width: 100%;
	height: 380px;
	position: relative;
  	text-align: center;
  	align-items: center;
  justify-content: center;
	overflow:hidden;
}
.video-slide video {
	position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100vw;
  height: 380px;
  z-index: 0;
}

.wp-block-cb-carousel.home-banner-slider .slick-next:before, 
.wp-block-cb-carousel.home-banner-slider .slick-prev:before {

}


.wp-block-cb-carousel.home-banner-slider .slick-prev.slick-arrow {
	left: 10px;
	z-index: 3;
}

@media screen and (min-width:1058px) {
 .wp-block-cb-carousel.home-banner-slider .slick-prev.slick-arrow {
	left: 80px;
	}
}


.wp-block-cb-carousel.home-banner-slider .slick-prev:before {
    font-size: 30px;
    line-height: 1;
    opacity: .75;
	content: url('/wp-content/themes/slverniciatura/assets/images/slide-arrow-prev.svg');
}

.wp-block-cb-carousel.home-banner-slider .slick-next.slick-arrow {
	right: 10px;
	z-index: 3;
}

@media screen and (min-width:1058px) {
 .wp-block-cb-carousel.home-banner-slider .slick-next.slick-arrow {
	right: 80px;
	}
}

.wp-block-cb-carousel.home-banner-slider .slick-next:before {
    font-size: 30px;
    line-height: 1;
    opacity: .75;
    color: #000;
	content: url('/wp-content/themes/slverniciatura/assets/images/slide-arrow-next.svg');
}

.wp-block-cb-carousel.home-banner-slider .slick-arrow.slick-disabled {
	display: none!important;
}

.wp-block-cb-carousel.home-banner-slider .slick-arrow:hover:before {
	opacity: 1;
}

