
/*	-------------------------------------------------------------------------- */
/*	Mobile  
/*	-------------------------------------------------------------------------- */
	@media screen and (max-width: 440px) {

		.Container > .PageTitle {
			display: none !important;
		}
		.Container > .RolliInfo {
			width: 70%;
		    display: none;
		    align-items: center;
		    justify-content: center;
		    background: var(--Palette1);
		    border-radius: 0.5rem;
		    margin-bottom: 2.3rem;
		    margin-top: 0.5rem;
		    box-shadow: 5px 5px 23px rgba(0.4, 9.8, 9.2, 1.5) !important;
		    padding: 0.1rem 1rem;
		    cursor: default;
		    flex-direction: column;
		}
		.Container > .RolliInfo > i {
			color: var(--Palette3);
		    font-size: 1.8rem;
		    margin-top: 0.5rem;
		    display: none;
		}
		.Container > .RolliInfo > p {
			color: var(--Palette3);
		    font-family: var(--Font_Condensed);
		    font-size: 3.72vw;
		    text-transform: uppercase;
		    text-align: center;
		    margin: 0.7rem;
		}

	}

/*	-------------------------------------------------------------------------- */
/*	Desktop  
/*	-------------------------------------------------------------------------- */
	@media screen and (min-width: 441px) {

		.Container > .PageTitle {
			margin-bottom: 1rem !important;
		}
		.Container > .RolliInfo {
			width: auto;
			display: none;
			align-items: center;
    		justify-content: space-between;
			background: var(--Palette1);
			border-radius: 0.5rem;
			margin-bottom: 3rem;
		    margin-top: 1.5rem;
		    box-shadow: 5px 5px 23px rgba(0.4, 9.8, 9.2, 1.5) !important;
		    padding: 0.1rem 2rem;
		    cursor: default;
		}
		.Container > .RolliInfo > i {
			color: var(--Palette3);
		    margin-right: 1rem;
		    font-size: 1.8rem;
		}
		.Container > .RolliInfo > p {
			color: var(--Palette3);
		    font-family: var(--Font_Condensed);
		    font-size: 0.92vw;
		    text-transform: uppercase;
		}

	}