/* /Pages/Login.razor.rz.scp.css */
/* oslat style
.customLoginDiv {
    background-color: white;
    width: 450px;
    border: none;
    padding: 40px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.customLoginButton {
    height: 30px;
}
*/

/* BASIC */
html[b-v60omu7uyg] {
    background-color: #56baed;
}

body[b-v60omu7uyg] {
    font-family: "Poppins", sans-serif;
    height: 100vh;
}

/*a {
		color: #92badd;
		display:inline-block;
		text-decoration: none;
		font-weight: 400;
	}*/

h2[b-v60omu7uyg] {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}

/* STRUCTURE */
.wrapper[b-v60omu7uyg] {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
    margin: 5% auto 0;
}

#formContent[b-v60omu7uyg] {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
}

/*#formFooter {
		background-color: #f6f6f6;
		border-top: 1px solid #dce8f1;
		padding: 25px;
		text-align: center;
		-webkit-border-radius: 0 0 10px 10px;
		border-radius: 0 0 10px 10px;
	}*/

/* TABS */
h2.inactive[b-v60omu7uyg] {
    color: #cccccc;
}

h2.active[b-v60omu7uyg] {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}

/* FORM TYPOGRAPHY*/
/*input[type=button], input[type=submit], input[type=reset]  {
		background-color: #56baed;
		border: none;
		color: white;
		padding: 15px 80px;
		text-align: center;
		text-decoration: none;
		display: inline-block;
		text-transform: uppercase;
		font-size: 13px;
		-webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
		box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
		-webkit-border-radius: 5px 5px 5px 5px;
		border-radius: 5px 5px 5px 5px;
		margin: 5px 20px 40px 20px;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}

	input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
		background-color: #39ace7;
	}

	input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
		-moz-transform: scale(0.95);
		-webkit-transform: scale(0.95);
		-o-transform: scale(0.95);
		-ms-transform: scale(0.95);
		transform: scale(0.95);
	}*/

/*input[type=text] {
		background-color: #f6f6f6;
		border: none;
		color: #0d0d0d;
		padding: 15px 32px;
		text-align: center;
		text-decoration: none;
		display: inline-block;
		font-size: 16px;
		margin: 5px;
		width: 85%;
		border: 2px solid #f6f6f6;
		-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
		-webkit-border-radius: 5px 5px 5px 5px;
		border-radius: 5px 5px 5px 5px;
	}*/

input[type=text]:focus[b-v60omu7uyg] {
    background-color: #fff;
    border-bottom: 2px solid #5fbae9;
}

input[type=text]:placeholder[b-v60omu7uyg] {
    color: #cccccc;
}

/* ANIMATIONS */
/* Simple CSS3 Fade-in-down Animation */
.fadeInDown[b-v60omu7uyg] {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@@-webkit-keyframes fadeInDown {
    0%[b-v60omu7uyg] {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100%[b-v60omu7uyg] {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@@keyframes fadeInDown {
    0%[b-v60omu7uyg] {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100%[b-v60omu7uyg] {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Simple CSS3 Fade-in Animation */
@@-webkit-keyframes fadeIn {
    from[b-v60omu7uyg] {
        opacity: 0;
    }

    to[b-v60omu7uyg] {
        opacity: 1;
    }
}

@@-moz-keyframes fadeIn {
    from[b-v60omu7uyg] {
        opacity: 0;
    }

    to[b-v60omu7uyg] {
        opacity: 1;
    }
}

@@keyframes fadeIn {
    from[b-v60omu7uyg] {
        opacity: 0;
    }

    to[b-v60omu7uyg] {
        opacity: 1;
    }
}

.fadeIn[b-v60omu7uyg] {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

    .fadeIn.first[b-v60omu7uyg] {
        -webkit-animation-delay: 0.4s;
        -moz-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .fadeIn.second[b-v60omu7uyg] {
        -webkit-animation-delay: 0.6s;
        -moz-animation-delay: 0.6s;
        animation-delay: 0.6s;
    }

    .fadeIn.third[b-v60omu7uyg] {
        -webkit-animation-delay: 0.8s;
        -moz-animation-delay: 0.8s;
        animation-delay: 0.8s;
    }

    .fadeIn.fourth[b-v60omu7uyg] {
        -webkit-animation-delay: 1s;
        -moz-animation-delay: 1s;
        animation-delay: 1s;
    }

/* Simple CSS3 Fade-in Animation */
.underlineHover[b-v60omu7uyg]:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover[b-v60omu7uyg] {
    color: #0d0d0d;
}

    .underlineHover:hover[b-v60omu7uyg]:after {
        width: 100%;
    }

h3[b-v60omu7uyg] {
    color: #3678c9;
    font-size: 18pt;
    font-weight: 600;
}

/* OTHERS */
*:focus[b-v60omu7uyg] {
    outline: none;
}

#icon[b-v60omu7uyg] {
    width: 30%;
}

.input-group-addon[b-v60omu7uyg] {
    background-color: #3678c9;
    border-color: #3678c9;
    color: white;
    padding: 8px 14px;
    border-radius: 4px;
}

.btn1[b-v60omu7uyg] {
    background-color: #3678c9;
    color: white;
    transition: all 0.5s;
    max-width: 110px;
    height: 45px;
    font-size: 16pt;
}

.textBoxOrdinato[b-v60omu7uyg] {
    padding: 0;
    margin: 0;
}
/* /Pages/Profilo/ProfiloLoggato.razor.rz.scp.css */
html[b-ej60uox5ve], body[b-ej60uox5ve],
[b-ej60uox5ve] html, body[b-ej60uox5ve]{
	background-color: #F2F2F2 !important;
}

.boxBianco[b-ej60uox5ve],
[b-ej60uox5ve] .boxBianco {
	background-color: white;
	color: #005890;
	-webkit-box-shadow: 0 20px 60px 0 rgba(0,0,0,0.3);
	box-shadow: 0 20px 60px 0 rgba(0,0,0,0.3);
	font-size: 10pt;
	padding: 15px;
}

.labelBlocco[b-ej60uox5ve] {
	font-size: 15px;
	padding: 0px 0px 0px 12px;
	margin: 0px;
}

.bg-gray[b-ej60uox5ve] {
	/*--bs-bg-opacity: 1;
	--bs-blue-rgb: #005890;
	background-color: rgba(var(--bs-blue-rgb),var(--bs-bg-opacity)) !important;*/
	background-color: #CED3DB !important;
}

.width230[b-ej60uox5ve],
[b-ej60uox5ve] .width230 {
	width: 230px;
}
/* /Shared/LoginDisplay.razor.rz.scp.css */

.loginContent[b-a144ijxdgu] {
    /*display: flex;*/
    /*flex-direction: column;*/
    /*flex-direction: row-reverse;*/
    height: 100%;
}

.linkLogin[b-a144ijxdgu] {
    color: white;
    font-size: 25px;
    padding-right: 16px;
}

.changeMouse[b-a144ijxdgu] {
    cursor: pointer;
}

.btn:focus[b-a144ijxdgu] {
    outline: 0;
    box-shadow: 0 0 0 0;
}

.boxLogout[b-a144ijxdgu] {
    position: relative;
    background-color: #005890;
    color: white;
    text-align: center;
    font-size: 20px;
    padding: 8px;
    border: none;
    border-color: #004f80;
}
/*.boxLogout:hover {
        background-color: #004f80;
        border-color: #003f66;
    }*/

.newoi[b-a144ijxdgu] {
    width: 40px !important;
    height: 40px !important;
    vertical-align: sub;
    font-size: 30px;
}

.boxAccount[b-a144ijxdgu] {
    color: white;
    text-align: center;
    font-size: 13px;
}

div.k-window.profilo-utente .k-window-content[b-a144ijxdgu] {
    background: #005890 !important;
    color: white !important;
}

.bg-blue[b-a144ijxdgu] {
    /*--bs-bg-opacity: 1;
	--bs-blue-rgb: #005890;
	background-color: rgba(var(--bs-blue-rgb),var(--bs-bg-opacity)) !important;*/
    background-color: #CED3DB !important;
}

.labelBox[b-a144ijxdgu] {
    font-size: 13px;
    padding: 0px;
    margin: 0px;
}

.labelBoxScelte[b-a144ijxdgu] {
    font-size: 14px;
    padding: 0px;
    margin: 0px;
}
/* /Shared/MainLayout.razor.rz.scp.css */

.navbarContent[b-vspf745m3c] {
    background-color: #006baf;
    height: 100%;
    display: flex;
}

.btn:focus[b-vspf745m3c] {
    outline: 0;
    box-shadow: 0 0 0 0;
}

.customNavbarDivButton[b-vspf745m3c] {
    color: white;
    font-size: 25px;
    display: flex;
    align-items: center;
    height: 100%;
}

/* DESKTOP */

.myPage[b-vspf745m3c] {
    background-color: transparent;
    height: 100%;
    display: flex;
    flex-flow: column;
}

.myNavbar[b-vspf745m3c] {
    background-color: transparent;
    height: 56px;
    margin-bottom: 2px;
}

.myContainer[b-vspf745m3c] {
    background-color: transparent;
    display: flex;
    flex: 1;
}

.mySidebar[b-vspf745m3c] {
    background-color: transparent;
    transition: 0.5s;
    /*width: 260px;*/
}

.mySidebarCollapsed[b-vspf745m3c] {
    margin-left: -300px;
}

.mySidebarHiddenOnSmallScreen[b-vspf745m3c] {
    background-color: transparent;
    transition: 0.5s;
    width: 300px;
}

.mySidebarHiddenOnSmallScreenCollapsed[b-vspf745m3c] {
    margin-left: -300px;
}

.myContent[b-vspf745m3c] {
    background-color: transparent;
    flex: 1;
    padding: 20px;
}

.myFooter[b-vspf745m3c] {
    background-color: transparent;
    height: 30px;
    padding-right: 40px;
}

.buttonSidebar[b-vspf745m3c] {
    display: block;
}

.buttonSidebarSmallScreen[b-vspf745m3c] {
    display: none;
}


/* TABLET - SMARTPHONE (?) */
@media screen and (min-width: 375px) and (max-width: 1023px) {

    .myNavbar[b-vspf745m3c] {
        background-color: transparent;
        height: 56px;
        margin-bottom: 2px;
    }

    .myContainer[b-vspf745m3c] {
        background-color: transparent;
    }

    .mySidebar[b-vspf745m3c] {
        background-color: transparent;
        position: absolute;
        width: 100%;
        height: 50px;
        z-index: 999;
    }

    .mySidebarCollapsed[b-vspf745m3c] {
        margin-left: 0px;
    }

    .mySidebarHiddenOnSmallScreen[b-vspf745m3c] {
        display: none;
    }

    .mySidebarHiddenOnSmallScreenCollapsed[b-vspf745m3c] {
        margin-left: 0px;
    }

    .myContent[b-vspf745m3c] {
        background-color: transparent;
        width: 100%;
        padding: 20px;
    }

    .myFooter[b-vspf745m3c] {
        background-color: transparent;
        height: 30px;
        padding-right: 40px;
    }

    .buttonSidebar[b-vspf745m3c] {
        display: none;
    }

    .buttonSidebarSmallScreen[b-vspf745m3c] {
        display: block;
    }
}
/* /Shared/SideBar.razor.rz.scp.css */


/* /Shared/TelerikLayout.razor.rz.scp.css */
