/*`xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {
	:root{
	    --px-content: 3%;
	    --py-content: 36px;
	}
}

@media (max-width: 1299.98px) {
	:root{
	    --px-content: 2%;
	    --py-content: 36px;
	}
}

/*`xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) { ... }

/*lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
	:root{
	    --px-content: 3%;
	    --py-content: 36px;
	}

	.navbar-nav .nav-item .nav-link.active:before{
		content: unset;
	}

	.dropdown-item{
		white-space: normal;
	}

}
/*`md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
	:root{
	    --px-content: 1%;
	    --py-content: 24px;
	}

	body{
	  	font-size: 14px;
	}

	.button-contact-fixed{
		transform: scale(0.8);
		bottom: 10%;
	}
	/**/

	.navbar-main .offcanvas-header {
	    margin-top: 10%;
	}
	
	.btn-prev-post svg,
	.btn-next-post svg{
		width: 16px;
	}

	.btn-sort-post svg{
		width: 24px;
	}

}
/*`sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {

}

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {  }
/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {  }
/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
	.content-right-contact{
	    overflow-x: hidden;
	    overflow-y: scroll;
	    height: 100%;
	    padding: 0 1rem;
	}

	.content-right-contact::-webkit-scrollbar {
	    width: 1px;
	    background-color: #F5F5F5;
	}

	.content-right-contact::-webkit-scrollbar-thumb {
	    background-color: #000000;
	}

	.content-right-contact::-webkit-scrollbar-track {
	    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	    background-color: #F5F5F5;
	}
}
/* X-Large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {  }
/* XX-Large devices (larger desktops, 1400px and up)*/
@media (min-width: 1400px) {  }